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

37229 строки
936 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. "stegosaurus": {
  1588. name: "Stegosaurus",
  1589. parents: ["dinosaur"]
  1590. },
  1591. "computer-virus": {
  1592. name: "Computer Virus",
  1593. parents: ["program"]
  1594. },
  1595. "program": {
  1596. name: "Program",
  1597. parents: ["construct"]
  1598. },
  1599. "space-springhare": {
  1600. name: "Space Springhare",
  1601. parents: ["rabbit"]
  1602. },
  1603. "river-drake": {
  1604. name: "River Drake",
  1605. parents: ["dragon"]
  1606. },
  1607. }
  1608. //species
  1609. function getSpeciesInfo(speciesList) {
  1610. let result = new Set();
  1611. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1612. result.add(entry)
  1613. });
  1614. return Array.from(result);
  1615. };
  1616. function getSpeciesInfoHelper(species) {
  1617. if (!speciesData[species]) {
  1618. console.warn(species + " doesn't exist");
  1619. return [];
  1620. }
  1621. if (speciesData[species].parents) {
  1622. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1623. } else {
  1624. return [species];
  1625. }
  1626. }
  1627. characterMakers.push(() => makeCharacter(
  1628. {
  1629. name: "Fen",
  1630. species: ["crux"],
  1631. description: {
  1632. title: "Bio",
  1633. text: "Very furry. Sheds on everything."
  1634. },
  1635. tags: [
  1636. "anthro",
  1637. "goo"
  1638. ]
  1639. },
  1640. {
  1641. back: {
  1642. height: math.unit(2.2428, "meter"),
  1643. weight: math.unit(124.738, "kg"),
  1644. name: "Back",
  1645. image: {
  1646. source: "./media/characters/fen/back.svg",
  1647. extra: 2024 / 1867,
  1648. bottom: 13 / 2037
  1649. },
  1650. info: {
  1651. description: {
  1652. mode: "append",
  1653. text: "\n\nHe is not currently looking at you."
  1654. }
  1655. }
  1656. },
  1657. full: {
  1658. height: math.unit(1.34, "meter"),
  1659. weight: math.unit(225, "kg"),
  1660. name: "Full",
  1661. image: {
  1662. source: "./media/characters/fen/full.svg"
  1663. },
  1664. info: {
  1665. description: {
  1666. mode: "append",
  1667. text: "\n\nMunch."
  1668. }
  1669. }
  1670. },
  1671. kneeling: {
  1672. height: math.unit(5.4, "feet"),
  1673. weight: math.unit(124.738, "kg"),
  1674. name: "Kneeling",
  1675. image: {
  1676. source: "./media/characters/fen/kneeling.svg",
  1677. extra: 563 / 507
  1678. }
  1679. },
  1680. goo: {
  1681. height: math.unit(2.8, "feet"),
  1682. weight: math.unit(125, "kg"),
  1683. capacity: math.unit(1, "people"),
  1684. name: "Goo",
  1685. image: {
  1686. source: "./media/characters/fen/goo.svg",
  1687. bottom: 116 / 613
  1688. }
  1689. },
  1690. lounging: {
  1691. height: math.unit(6.5, "feet"),
  1692. weight: math.unit(125, "kg"),
  1693. name: "Lounging",
  1694. image: {
  1695. source: "./media/characters/fen/lounging.svg"
  1696. }
  1697. },
  1698. },
  1699. [
  1700. {
  1701. name: "Normal",
  1702. height: math.unit(2.2428, "meter")
  1703. },
  1704. {
  1705. name: "Big",
  1706. height: math.unit(12, "feet")
  1707. },
  1708. {
  1709. name: "Minimacro",
  1710. height: math.unit(40, "feet"),
  1711. default: true,
  1712. info: {
  1713. description: {
  1714. mode: "append",
  1715. text: "\n\nTOO DAMN BIG"
  1716. }
  1717. }
  1718. },
  1719. {
  1720. name: "Macro",
  1721. height: math.unit(100, "feet"),
  1722. info: {
  1723. description: {
  1724. mode: "append",
  1725. text: "\n\nTOO DAMN BIG"
  1726. }
  1727. }
  1728. },
  1729. {
  1730. name: "Macro+",
  1731. height: math.unit(300, "feet")
  1732. },
  1733. {
  1734. name: "Megamacro",
  1735. height: math.unit(2, "miles")
  1736. }
  1737. ]
  1738. ))
  1739. characterMakers.push(() => makeCharacter(
  1740. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1741. {
  1742. front: {
  1743. height: math.unit(183, "cm"),
  1744. weight: math.unit(80, "kg"),
  1745. name: "Front",
  1746. image: {
  1747. source: "./media/characters/sofia-fluttertail/front.svg",
  1748. bottom: 0.01,
  1749. extra: 2154 / 2081
  1750. }
  1751. },
  1752. frontAlt: {
  1753. height: math.unit(183, "cm"),
  1754. weight: math.unit(80, "kg"),
  1755. name: "Front (alt)",
  1756. image: {
  1757. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1758. }
  1759. },
  1760. back: {
  1761. height: math.unit(183, "cm"),
  1762. weight: math.unit(80, "kg"),
  1763. name: "Back",
  1764. image: {
  1765. source: "./media/characters/sofia-fluttertail/back.svg"
  1766. }
  1767. },
  1768. kneeling: {
  1769. height: math.unit(125, "cm"),
  1770. weight: math.unit(80, "kg"),
  1771. name: "Kneeling",
  1772. image: {
  1773. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1774. extra: 1033 / 977,
  1775. bottom: 23.7 / 1057
  1776. }
  1777. },
  1778. maw: {
  1779. height: math.unit(183 / 5, "cm"),
  1780. name: "Maw",
  1781. image: {
  1782. source: "./media/characters/sofia-fluttertail/maw.svg"
  1783. }
  1784. },
  1785. mawcloseup: {
  1786. height: math.unit(183 / 5 * 0.41, "cm"),
  1787. name: "Maw (Closeup)",
  1788. image: {
  1789. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1790. }
  1791. },
  1792. paws: {
  1793. height: math.unit(1.17, "feet"),
  1794. name: "Paws",
  1795. image: {
  1796. source: "./media/characters/sofia-fluttertail/paws.svg",
  1797. extra: 851 / 851,
  1798. bottom: 17 / 868
  1799. }
  1800. },
  1801. },
  1802. [
  1803. {
  1804. name: "Normal",
  1805. height: math.unit(1.83, "meter")
  1806. },
  1807. {
  1808. name: "Size Thief",
  1809. height: math.unit(18, "feet")
  1810. },
  1811. {
  1812. name: "50 Foot Collie",
  1813. height: math.unit(50, "feet")
  1814. },
  1815. {
  1816. name: "Macro",
  1817. height: math.unit(96, "feet"),
  1818. default: true
  1819. },
  1820. {
  1821. name: "Megamerger",
  1822. height: math.unit(650, "feet")
  1823. },
  1824. ]
  1825. ))
  1826. characterMakers.push(() => makeCharacter(
  1827. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1828. {
  1829. front: {
  1830. height: math.unit(7, "feet"),
  1831. weight: math.unit(100, "kg"),
  1832. name: "Front",
  1833. image: {
  1834. source: "./media/characters/march/front.svg",
  1835. extra: 1,
  1836. bottom: 0.015
  1837. }
  1838. },
  1839. foot: {
  1840. height: math.unit(0.9, "feet"),
  1841. name: "Foot",
  1842. image: {
  1843. source: "./media/characters/march/foot.svg"
  1844. }
  1845. },
  1846. },
  1847. [
  1848. {
  1849. name: "Normal",
  1850. height: math.unit(7.9, "feet")
  1851. },
  1852. {
  1853. name: "Macro",
  1854. height: math.unit(220, "meters")
  1855. },
  1856. {
  1857. name: "Megamacro",
  1858. height: math.unit(2.98, "km"),
  1859. default: true
  1860. },
  1861. {
  1862. name: "Gigamacro",
  1863. height: math.unit(15963, "km")
  1864. },
  1865. {
  1866. name: "Teramacro",
  1867. height: math.unit(2980000000, "km")
  1868. },
  1869. {
  1870. name: "Examacro",
  1871. height: math.unit(250, "parsecs")
  1872. },
  1873. ]
  1874. ))
  1875. characterMakers.push(() => makeCharacter(
  1876. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1877. {
  1878. front: {
  1879. height: math.unit(6, "feet"),
  1880. weight: math.unit(60, "kg"),
  1881. name: "Front",
  1882. image: {
  1883. source: "./media/characters/noir/front.svg",
  1884. extra: 1,
  1885. bottom: 0.032
  1886. }
  1887. },
  1888. },
  1889. [
  1890. {
  1891. name: "Normal",
  1892. height: math.unit(6.6, "feet")
  1893. },
  1894. {
  1895. name: "Macro",
  1896. height: math.unit(500, "feet")
  1897. },
  1898. {
  1899. name: "Megamacro",
  1900. height: math.unit(2.5, "km"),
  1901. default: true
  1902. },
  1903. {
  1904. name: "Gigamacro",
  1905. height: math.unit(22500, "km")
  1906. },
  1907. {
  1908. name: "Teramacro",
  1909. height: math.unit(2500000000, "km")
  1910. },
  1911. {
  1912. name: "Examacro",
  1913. height: math.unit(200, "parsecs")
  1914. },
  1915. ]
  1916. ))
  1917. characterMakers.push(() => makeCharacter(
  1918. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1919. {
  1920. front: {
  1921. height: math.unit(7, "feet"),
  1922. weight: math.unit(100, "kg"),
  1923. name: "Front",
  1924. image: {
  1925. source: "./media/characters/okuri/front.svg",
  1926. extra: 1,
  1927. bottom: 0.037
  1928. }
  1929. },
  1930. back: {
  1931. height: math.unit(7, "feet"),
  1932. weight: math.unit(100, "kg"),
  1933. name: "Back",
  1934. image: {
  1935. source: "./media/characters/okuri/back.svg",
  1936. extra: 1,
  1937. bottom: 0.007
  1938. }
  1939. },
  1940. },
  1941. [
  1942. {
  1943. name: "Megamacro",
  1944. height: math.unit(100, "miles"),
  1945. default: true
  1946. },
  1947. ]
  1948. ))
  1949. characterMakers.push(() => makeCharacter(
  1950. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1951. {
  1952. front: {
  1953. height: math.unit(7, "feet"),
  1954. weight: math.unit(100, "kg"),
  1955. name: "Front",
  1956. image: {
  1957. source: "./media/characters/manny/front.svg",
  1958. extra: 1,
  1959. bottom: 0.06
  1960. }
  1961. },
  1962. back: {
  1963. height: math.unit(7, "feet"),
  1964. weight: math.unit(100, "kg"),
  1965. name: "Back",
  1966. image: {
  1967. source: "./media/characters/manny/back.svg",
  1968. extra: 1,
  1969. bottom: 0.014
  1970. }
  1971. },
  1972. },
  1973. [
  1974. {
  1975. name: "Normal",
  1976. height: math.unit(7, "feet"),
  1977. },
  1978. {
  1979. name: "Macro",
  1980. height: math.unit(78, "feet"),
  1981. default: true
  1982. },
  1983. {
  1984. name: "Macro+",
  1985. height: math.unit(300, "meters")
  1986. },
  1987. {
  1988. name: "Macro++",
  1989. height: math.unit(2400, "meters")
  1990. },
  1991. {
  1992. name: "Megamacro",
  1993. height: math.unit(5167, "meters")
  1994. },
  1995. {
  1996. name: "Gigamacro",
  1997. height: math.unit(41769, "miles")
  1998. },
  1999. ]
  2000. ))
  2001. characterMakers.push(() => makeCharacter(
  2002. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2003. {
  2004. front: {
  2005. height: math.unit(7, "feet"),
  2006. weight: math.unit(100, "kg"),
  2007. name: "Front",
  2008. image: {
  2009. source: "./media/characters/adake/front-1.svg"
  2010. }
  2011. },
  2012. frontAlt: {
  2013. height: math.unit(7, "feet"),
  2014. weight: math.unit(100, "kg"),
  2015. name: "Front (Alt)",
  2016. image: {
  2017. source: "./media/characters/adake/front-2.svg",
  2018. extra: 1,
  2019. bottom: 0.01
  2020. }
  2021. },
  2022. back: {
  2023. height: math.unit(7, "feet"),
  2024. weight: math.unit(100, "kg"),
  2025. name: "Back",
  2026. image: {
  2027. source: "./media/characters/adake/back.svg",
  2028. }
  2029. },
  2030. kneel: {
  2031. height: math.unit(5.385, "feet"),
  2032. weight: math.unit(100, "kg"),
  2033. name: "Kneeling",
  2034. image: {
  2035. source: "./media/characters/adake/kneel.svg",
  2036. bottom: 0.052
  2037. }
  2038. },
  2039. },
  2040. [
  2041. {
  2042. name: "Normal",
  2043. height: math.unit(7, "feet"),
  2044. },
  2045. {
  2046. name: "Macro",
  2047. height: math.unit(78, "feet"),
  2048. default: true
  2049. },
  2050. {
  2051. name: "Macro+",
  2052. height: math.unit(300, "meters")
  2053. },
  2054. {
  2055. name: "Macro++",
  2056. height: math.unit(2400, "meters")
  2057. },
  2058. {
  2059. name: "Megamacro",
  2060. height: math.unit(5167, "meters")
  2061. },
  2062. {
  2063. name: "Gigamacro",
  2064. height: math.unit(41769, "miles")
  2065. },
  2066. ]
  2067. ))
  2068. characterMakers.push(() => makeCharacter(
  2069. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2070. {
  2071. front: {
  2072. height: math.unit(1.65, "meters"),
  2073. weight: math.unit(50, "kg"),
  2074. name: "Front",
  2075. image: {
  2076. source: "./media/characters/elijah/front.svg",
  2077. extra: 858 / 830,
  2078. bottom: 95.5 / 953.8559
  2079. }
  2080. },
  2081. back: {
  2082. height: math.unit(1.65, "meters"),
  2083. weight: math.unit(50, "kg"),
  2084. name: "Back",
  2085. image: {
  2086. source: "./media/characters/elijah/back.svg",
  2087. extra: 895 / 850,
  2088. bottom: 5.3 / 897.956
  2089. }
  2090. },
  2091. frontNsfw: {
  2092. height: math.unit(1.65, "meters"),
  2093. weight: math.unit(50, "kg"),
  2094. name: "Front (NSFW)",
  2095. image: {
  2096. source: "./media/characters/elijah/front-nsfw.svg",
  2097. extra: 858 / 830,
  2098. bottom: 95.5 / 953.8559
  2099. }
  2100. },
  2101. backNsfw: {
  2102. height: math.unit(1.65, "meters"),
  2103. weight: math.unit(50, "kg"),
  2104. name: "Back (NSFW)",
  2105. image: {
  2106. source: "./media/characters/elijah/back-nsfw.svg",
  2107. extra: 895 / 850,
  2108. bottom: 5.3 / 897.956
  2109. }
  2110. },
  2111. dick: {
  2112. height: math.unit(1, "feet"),
  2113. name: "Dick",
  2114. image: {
  2115. source: "./media/characters/elijah/dick.svg"
  2116. }
  2117. },
  2118. beakOpen: {
  2119. height: math.unit(1.25, "feet"),
  2120. name: "Beak (Open)",
  2121. image: {
  2122. source: "./media/characters/elijah/beak-open.svg"
  2123. }
  2124. },
  2125. beakShut: {
  2126. height: math.unit(1.25, "feet"),
  2127. name: "Beak (Shut)",
  2128. image: {
  2129. source: "./media/characters/elijah/beak-shut.svg"
  2130. }
  2131. },
  2132. footFlexing: {
  2133. height: math.unit(1.61, "feet"),
  2134. name: "Foot (Flexing)",
  2135. image: {
  2136. source: "./media/characters/elijah/foot-flexing.svg"
  2137. }
  2138. },
  2139. footStepping: {
  2140. height: math.unit(1.44, "feet"),
  2141. name: "Foot (Stepping)",
  2142. image: {
  2143. source: "./media/characters/elijah/foot-stepping.svg"
  2144. }
  2145. },
  2146. plantigradeLeg: {
  2147. height: math.unit(2.34, "feet"),
  2148. name: "Plantigrade Leg",
  2149. image: {
  2150. source: "./media/characters/elijah/plantigrade-leg.svg"
  2151. }
  2152. },
  2153. plantigradeFootLeft: {
  2154. height: math.unit(0.9, "feet"),
  2155. name: "Plantigrade Foot (Left)",
  2156. image: {
  2157. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2158. }
  2159. },
  2160. plantigradeFootRight: {
  2161. height: math.unit(0.9, "feet"),
  2162. name: "Plantigrade Foot (Right)",
  2163. image: {
  2164. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2165. }
  2166. },
  2167. },
  2168. [
  2169. {
  2170. name: "Normal",
  2171. height: math.unit(1.65, "meters")
  2172. },
  2173. {
  2174. name: "Macro",
  2175. height: math.unit(55, "meters"),
  2176. default: true
  2177. },
  2178. {
  2179. name: "Macro+",
  2180. height: math.unit(105, "meters")
  2181. },
  2182. ]
  2183. ))
  2184. characterMakers.push(() => makeCharacter(
  2185. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2186. {
  2187. front: {
  2188. height: math.unit(11, "feet"),
  2189. weight: math.unit(320, "kg"),
  2190. name: "Front",
  2191. image: {
  2192. source: "./media/characters/rai/front.svg",
  2193. extra: 1802/1696,
  2194. bottom: 68/1870
  2195. }
  2196. },
  2197. frontDressed: {
  2198. height: math.unit(11, "feet"),
  2199. weight: math.unit(320, "kg"),
  2200. name: "Front (Dressed)",
  2201. image: {
  2202. source: "./media/characters/rai/front-dressed.svg",
  2203. extra: 1802/1696,
  2204. bottom: 68/1870
  2205. }
  2206. },
  2207. side: {
  2208. height: math.unit(11, "feet"),
  2209. weight: math.unit(320, "kg"),
  2210. name: "Side",
  2211. image: {
  2212. source: "./media/characters/rai/side.svg",
  2213. extra: 1789/1710,
  2214. bottom: 115/1904
  2215. }
  2216. },
  2217. back: {
  2218. height: math.unit(11, "feet"),
  2219. weight: math.unit(320, "kg"),
  2220. name: "Back",
  2221. image: {
  2222. source: "./media/characters/rai/back.svg",
  2223. extra: 1770/1707,
  2224. bottom: 28/1798
  2225. }
  2226. },
  2227. feral: {
  2228. height: math.unit(11, "feet"),
  2229. weight: math.unit(640, "kg"),
  2230. name: "Feral",
  2231. image: {
  2232. source: "./media/characters/rai/feral.svg",
  2233. extra: 1035/642,
  2234. bottom: 86/1121
  2235. }
  2236. },
  2237. dragon: {
  2238. height: math.unit(23, "feet"),
  2239. weight: math.unit(50000, "lb"),
  2240. name: "Dragon",
  2241. image: {
  2242. source: "./media/characters/rai/dragon.svg",
  2243. extra: 2498 / 2030,
  2244. bottom: 85.2 / 2584
  2245. }
  2246. },
  2247. maw: {
  2248. height: math.unit(6 / 3.81416, "feet"),
  2249. name: "Maw",
  2250. image: {
  2251. source: "./media/characters/rai/maw.svg"
  2252. }
  2253. },
  2254. },
  2255. [
  2256. {
  2257. name: "Normal",
  2258. height: math.unit(11, "feet")
  2259. },
  2260. {
  2261. name: "Macro",
  2262. height: math.unit(302, "feet"),
  2263. default: true
  2264. },
  2265. ]
  2266. ))
  2267. characterMakers.push(() => makeCharacter(
  2268. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2269. {
  2270. frontDressed: {
  2271. height: math.unit(216, "feet"),
  2272. weight: math.unit(7000000, "lb"),
  2273. name: "Front (Dressed)",
  2274. image: {
  2275. source: "./media/characters/jazzy/front-dressed.svg",
  2276. extra: 2738 / 2651,
  2277. bottom: 41.8 / 2786
  2278. }
  2279. },
  2280. backDressed: {
  2281. height: math.unit(216, "feet"),
  2282. weight: math.unit(7000000, "lb"),
  2283. name: "Back (Dressed)",
  2284. image: {
  2285. source: "./media/characters/jazzy/back-dressed.svg",
  2286. extra: 2775 / 2673,
  2287. bottom: 36.8 / 2817
  2288. }
  2289. },
  2290. front: {
  2291. height: math.unit(216, "feet"),
  2292. weight: math.unit(7000000, "lb"),
  2293. name: "Front",
  2294. image: {
  2295. source: "./media/characters/jazzy/front.svg",
  2296. extra: 2738 / 2651,
  2297. bottom: 41.8 / 2786
  2298. }
  2299. },
  2300. back: {
  2301. height: math.unit(216, "feet"),
  2302. weight: math.unit(7000000, "lb"),
  2303. name: "Back",
  2304. image: {
  2305. source: "./media/characters/jazzy/back.svg",
  2306. extra: 2775 / 2673,
  2307. bottom: 36.8 / 2817
  2308. }
  2309. },
  2310. maw: {
  2311. height: math.unit(20, "feet"),
  2312. name: "Maw",
  2313. image: {
  2314. source: "./media/characters/jazzy/maw.svg"
  2315. }
  2316. },
  2317. paws: {
  2318. height: math.unit(27.5, "feet"),
  2319. name: "Paws",
  2320. image: {
  2321. source: "./media/characters/jazzy/paws.svg"
  2322. }
  2323. },
  2324. eye: {
  2325. height: math.unit(4.4, "feet"),
  2326. name: "Eye",
  2327. image: {
  2328. source: "./media/characters/jazzy/eye.svg"
  2329. }
  2330. },
  2331. droneOffense: {
  2332. height: math.unit(9.5, "inches"),
  2333. name: "Drone (Offense)",
  2334. image: {
  2335. source: "./media/characters/jazzy/drone-offense.svg"
  2336. }
  2337. },
  2338. droneRecon: {
  2339. height: math.unit(9.5, "inches"),
  2340. name: "Drone (Recon)",
  2341. image: {
  2342. source: "./media/characters/jazzy/drone-recon.svg"
  2343. }
  2344. },
  2345. droneDefense: {
  2346. height: math.unit(9.5, "inches"),
  2347. name: "Drone (Defense)",
  2348. image: {
  2349. source: "./media/characters/jazzy/drone-defense.svg"
  2350. }
  2351. },
  2352. },
  2353. [
  2354. {
  2355. name: "Macro",
  2356. height: math.unit(216, "feet"),
  2357. default: true
  2358. },
  2359. ]
  2360. ))
  2361. characterMakers.push(() => makeCharacter(
  2362. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2363. {
  2364. front: {
  2365. height: math.unit(9 + 6/12, "feet"),
  2366. weight: math.unit(700, "lb"),
  2367. name: "Front",
  2368. image: {
  2369. source: "./media/characters/flamm/front.svg",
  2370. extra: 1751/1632,
  2371. bottom: 46/1797
  2372. }
  2373. },
  2374. buff: {
  2375. height: math.unit(9 + 6/12, "feet"),
  2376. weight: math.unit(950, "lb"),
  2377. name: "Buff",
  2378. image: {
  2379. source: "./media/characters/flamm/buff.svg",
  2380. extra: 3018/2874,
  2381. bottom: 221/3239
  2382. }
  2383. },
  2384. },
  2385. [
  2386. {
  2387. name: "Normal",
  2388. height: math.unit(9.5, "feet")
  2389. },
  2390. {
  2391. name: "Macro",
  2392. height: math.unit(200, "feet"),
  2393. default: true
  2394. },
  2395. ]
  2396. ))
  2397. characterMakers.push(() => makeCharacter(
  2398. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2399. {
  2400. front: {
  2401. height: math.unit(5 + 3/12, "feet"),
  2402. weight: math.unit(60, "kg"),
  2403. name: "Front",
  2404. image: {
  2405. source: "./media/characters/zephiro/front.svg",
  2406. extra: 2309 / 2162,
  2407. bottom: 0.069
  2408. }
  2409. },
  2410. side: {
  2411. height: math.unit(5 + 3/12, "feet"),
  2412. weight: math.unit(60, "kg"),
  2413. name: "Side",
  2414. image: {
  2415. source: "./media/characters/zephiro/side.svg",
  2416. extra: 2403 / 2279,
  2417. bottom: 0.015
  2418. }
  2419. },
  2420. back: {
  2421. height: math.unit(5 + 3/12, "feet"),
  2422. weight: math.unit(60, "kg"),
  2423. name: "Back",
  2424. image: {
  2425. source: "./media/characters/zephiro/back.svg",
  2426. extra: 2373 / 2244,
  2427. bottom: 0.013
  2428. }
  2429. },
  2430. hand: {
  2431. height: math.unit(0.68, "feet"),
  2432. name: "Hand",
  2433. image: {
  2434. source: "./media/characters/zephiro/hand.svg"
  2435. }
  2436. },
  2437. paw: {
  2438. height: math.unit(1, "feet"),
  2439. name: "Paw",
  2440. image: {
  2441. source: "./media/characters/zephiro/paw.svg"
  2442. }
  2443. },
  2444. beans: {
  2445. height: math.unit(0.93, "feet"),
  2446. name: "Beans",
  2447. image: {
  2448. source: "./media/characters/zephiro/beans.svg"
  2449. }
  2450. },
  2451. },
  2452. [
  2453. {
  2454. name: "Micro",
  2455. height: math.unit(3, "inches")
  2456. },
  2457. {
  2458. name: "Normal",
  2459. height: math.unit(5 + 3 / 12, "feet"),
  2460. default: true
  2461. },
  2462. {
  2463. name: "Macro",
  2464. height: math.unit(118, "feet")
  2465. },
  2466. ]
  2467. ))
  2468. characterMakers.push(() => makeCharacter(
  2469. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2470. {
  2471. front: {
  2472. height: math.unit(5, "feet"),
  2473. weight: math.unit(90, "kg"),
  2474. name: "Front",
  2475. image: {
  2476. source: "./media/characters/fory/front.svg",
  2477. extra: 2862 / 2674,
  2478. bottom: 180 / 3043.8
  2479. }
  2480. },
  2481. back: {
  2482. height: math.unit(5, "feet"),
  2483. weight: math.unit(90, "kg"),
  2484. name: "Back",
  2485. image: {
  2486. source: "./media/characters/fory/back.svg",
  2487. extra: 2962 / 2791,
  2488. bottom: 106 / 3071.8
  2489. }
  2490. },
  2491. foot: {
  2492. height: math.unit(2.14, "feet"),
  2493. name: "Foot",
  2494. image: {
  2495. source: "./media/characters/fory/foot.svg"
  2496. }
  2497. },
  2498. },
  2499. [
  2500. {
  2501. name: "Normal",
  2502. height: math.unit(5, "feet")
  2503. },
  2504. {
  2505. name: "Macro",
  2506. height: math.unit(50, "feet"),
  2507. default: true
  2508. },
  2509. {
  2510. name: "Megamacro",
  2511. height: math.unit(10, "miles")
  2512. },
  2513. {
  2514. name: "Gigamacro",
  2515. height: math.unit(5, "earths")
  2516. },
  2517. ]
  2518. ))
  2519. characterMakers.push(() => makeCharacter(
  2520. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2521. {
  2522. front: {
  2523. height: math.unit(7, "feet"),
  2524. weight: math.unit(90, "kg"),
  2525. name: "Front",
  2526. image: {
  2527. source: "./media/characters/kurrikage/front.svg",
  2528. extra: 1,
  2529. bottom: 0.035
  2530. }
  2531. },
  2532. back: {
  2533. height: math.unit(7, "feet"),
  2534. weight: math.unit(90, "lb"),
  2535. name: "Back",
  2536. image: {
  2537. source: "./media/characters/kurrikage/back.svg"
  2538. }
  2539. },
  2540. paw: {
  2541. height: math.unit(1.5, "feet"),
  2542. name: "Paw",
  2543. image: {
  2544. source: "./media/characters/kurrikage/paw.svg"
  2545. }
  2546. },
  2547. staff: {
  2548. height: math.unit(6.7, "feet"),
  2549. name: "Staff",
  2550. image: {
  2551. source: "./media/characters/kurrikage/staff.svg"
  2552. }
  2553. },
  2554. peek: {
  2555. height: math.unit(1.05, "feet"),
  2556. name: "Peeking",
  2557. image: {
  2558. source: "./media/characters/kurrikage/peek.svg",
  2559. bottom: 0.08
  2560. }
  2561. },
  2562. },
  2563. [
  2564. {
  2565. name: "Normal",
  2566. height: math.unit(12, "feet"),
  2567. default: true
  2568. },
  2569. {
  2570. name: "Big",
  2571. height: math.unit(20, "feet")
  2572. },
  2573. {
  2574. name: "Macro",
  2575. height: math.unit(500, "feet")
  2576. },
  2577. {
  2578. name: "Megamacro",
  2579. height: math.unit(20, "miles")
  2580. },
  2581. ]
  2582. ))
  2583. characterMakers.push(() => makeCharacter(
  2584. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2585. {
  2586. front: {
  2587. height: math.unit(6, "feet"),
  2588. weight: math.unit(75, "kg"),
  2589. name: "Front",
  2590. image: {
  2591. source: "./media/characters/shingo/front.svg",
  2592. extra: 706/681,
  2593. bottom: 11/717
  2594. }
  2595. },
  2596. frontAlt: {
  2597. height: math.unit(6, "feet"),
  2598. weight: math.unit(75, "kg"),
  2599. name: "Front (Alt)",
  2600. image: {
  2601. source: "./media/characters/shingo/front-alt.svg",
  2602. extra: 3511 / 3338,
  2603. bottom: 0.005
  2604. }
  2605. },
  2606. paw: {
  2607. height: math.unit(1, "feet"),
  2608. name: "Paw",
  2609. image: {
  2610. source: "./media/characters/shingo/paw.svg"
  2611. }
  2612. },
  2613. },
  2614. [
  2615. {
  2616. name: "Micro",
  2617. height: math.unit(4, "inches")
  2618. },
  2619. {
  2620. name: "Normal",
  2621. height: math.unit(6, "feet"),
  2622. default: true
  2623. },
  2624. {
  2625. name: "Macro",
  2626. height: math.unit(108, "feet")
  2627. },
  2628. {
  2629. name: "Macro+",
  2630. height: math.unit(1500, "feet")
  2631. },
  2632. ]
  2633. ))
  2634. characterMakers.push(() => makeCharacter(
  2635. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2636. {
  2637. side: {
  2638. height: math.unit(6, "feet"),
  2639. weight: math.unit(75, "kg"),
  2640. name: "Side",
  2641. image: {
  2642. source: "./media/characters/aigey/side.svg"
  2643. }
  2644. },
  2645. },
  2646. [
  2647. {
  2648. name: "Macro",
  2649. height: math.unit(200, "feet"),
  2650. default: true
  2651. },
  2652. {
  2653. name: "Megamacro",
  2654. height: math.unit(100, "miles")
  2655. },
  2656. ]
  2657. )
  2658. )
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2661. {
  2662. front: {
  2663. height: math.unit(5 + 5 / 12, "feet"),
  2664. weight: math.unit(75, "kg"),
  2665. name: "Front",
  2666. image: {
  2667. source: "./media/characters/natasha/front.svg",
  2668. extra: 859 / 824,
  2669. bottom: 23 / 879.6
  2670. }
  2671. },
  2672. frontNsfw: {
  2673. height: math.unit(5 + 5 / 12, "feet"),
  2674. weight: math.unit(75, "kg"),
  2675. name: "Front (NSFW)",
  2676. image: {
  2677. source: "./media/characters/natasha/front-nsfw.svg",
  2678. extra: 859 / 824,
  2679. bottom: 23 / 879.6
  2680. }
  2681. },
  2682. frontErect: {
  2683. height: math.unit(5 + 5 / 12, "feet"),
  2684. weight: math.unit(75, "kg"),
  2685. name: "Front (Erect)",
  2686. image: {
  2687. source: "./media/characters/natasha/front-erect.svg",
  2688. extra: 859 / 824,
  2689. bottom: 23 / 879.6
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(5 + 5 / 12, "feet"),
  2694. weight: math.unit(75, "kg"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/natasha/back.svg",
  2698. extra: 887.9 / 852.6,
  2699. bottom: 9.7 / 896.4
  2700. }
  2701. },
  2702. backAlt: {
  2703. height: math.unit(5 + 5 / 12, "feet"),
  2704. weight: math.unit(75, "kg"),
  2705. name: "Back (Alt)",
  2706. image: {
  2707. source: "./media/characters/natasha/back-alt.svg",
  2708. extra: 1236.7 / 1192,
  2709. bottom: 22.3 / 1258.2
  2710. }
  2711. },
  2712. dick: {
  2713. height: math.unit(1.772, "feet"),
  2714. name: "Dick",
  2715. image: {
  2716. source: "./media/characters/natasha/dick.svg"
  2717. }
  2718. },
  2719. paw: {
  2720. height: math.unit(0.250, "meters"),
  2721. name: "Paw",
  2722. image: {
  2723. source: "./media/characters/natasha/paw.svg"
  2724. }
  2725. },
  2726. },
  2727. [
  2728. {
  2729. name: "Normal",
  2730. height: math.unit(5 + 5 / 12, "feet")
  2731. },
  2732. {
  2733. name: "Large",
  2734. height: math.unit(12, "feet")
  2735. },
  2736. {
  2737. name: "Macro",
  2738. height: math.unit(100, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Macro+",
  2743. height: math.unit(260, "feet")
  2744. },
  2745. {
  2746. name: "Macro++",
  2747. height: math.unit(1, "mile")
  2748. },
  2749. ]
  2750. ))
  2751. characterMakers.push(() => makeCharacter(
  2752. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2753. {
  2754. front: {
  2755. height: math.unit(6, "feet"),
  2756. weight: math.unit(75, "kg"),
  2757. name: "Front",
  2758. image: {
  2759. source: "./media/characters/malik/front.svg"
  2760. }
  2761. },
  2762. side: {
  2763. height: math.unit(6, "feet"),
  2764. weight: math.unit(75, "kg"),
  2765. name: "Side",
  2766. image: {
  2767. source: "./media/characters/malik/side.svg",
  2768. extra: 1.1539
  2769. }
  2770. },
  2771. back: {
  2772. height: math.unit(6, "feet"),
  2773. weight: math.unit(75, "kg"),
  2774. name: "Back",
  2775. image: {
  2776. source: "./media/characters/malik/back.svg"
  2777. }
  2778. },
  2779. },
  2780. [
  2781. {
  2782. name: "Macro",
  2783. height: math.unit(156, "feet"),
  2784. default: true
  2785. },
  2786. {
  2787. name: "Macro+",
  2788. height: math.unit(1188, "feet")
  2789. },
  2790. ]
  2791. ))
  2792. characterMakers.push(() => makeCharacter(
  2793. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2794. {
  2795. front: {
  2796. height: math.unit(6, "feet"),
  2797. weight: math.unit(75, "kg"),
  2798. name: "Front",
  2799. image: {
  2800. source: "./media/characters/sefer/front.svg",
  2801. extra: 848 / 659,
  2802. bottom: 28.3 / 876.442
  2803. }
  2804. },
  2805. back: {
  2806. height: math.unit(6, "feet"),
  2807. weight: math.unit(75, "kg"),
  2808. name: "Back",
  2809. image: {
  2810. source: "./media/characters/sefer/back.svg",
  2811. extra: 864 / 695,
  2812. bottom: 10 / 871
  2813. }
  2814. },
  2815. frontDressed: {
  2816. height: math.unit(6, "feet"),
  2817. weight: math.unit(75, "kg"),
  2818. name: "Front (Dressed)",
  2819. image: {
  2820. source: "./media/characters/sefer/front-dressed.svg",
  2821. extra: 839 / 653,
  2822. bottom: 37.6 / 878
  2823. }
  2824. },
  2825. },
  2826. [
  2827. {
  2828. name: "Normal",
  2829. height: math.unit(6, "feet"),
  2830. default: true
  2831. },
  2832. ]
  2833. ))
  2834. characterMakers.push(() => makeCharacter(
  2835. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2836. {
  2837. body: {
  2838. height: math.unit(2.2428, "meter"),
  2839. weight: math.unit(124.738, "kg"),
  2840. name: "Body",
  2841. image: {
  2842. extra: 1225 / 1050,
  2843. source: "./media/characters/north/front.svg"
  2844. }
  2845. }
  2846. },
  2847. [
  2848. {
  2849. name: "Micro",
  2850. height: math.unit(4, "inches")
  2851. },
  2852. {
  2853. name: "Macro",
  2854. height: math.unit(63, "meters")
  2855. },
  2856. {
  2857. name: "Megamacro",
  2858. height: math.unit(101, "miles"),
  2859. default: true
  2860. }
  2861. ]
  2862. ))
  2863. characterMakers.push(() => makeCharacter(
  2864. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2865. {
  2866. angled: {
  2867. height: math.unit(4, "meter"),
  2868. weight: math.unit(150, "kg"),
  2869. name: "Angled",
  2870. image: {
  2871. source: "./media/characters/talan/angled-sfw.svg",
  2872. bottom: 29 / 3734
  2873. }
  2874. },
  2875. angledNsfw: {
  2876. height: math.unit(4, "meter"),
  2877. weight: math.unit(150, "kg"),
  2878. name: "Angled (NSFW)",
  2879. image: {
  2880. source: "./media/characters/talan/angled-nsfw.svg",
  2881. bottom: 29 / 3734
  2882. }
  2883. },
  2884. frontNsfw: {
  2885. height: math.unit(4, "meter"),
  2886. weight: math.unit(150, "kg"),
  2887. name: "Front (NSFW)",
  2888. image: {
  2889. source: "./media/characters/talan/front-nsfw.svg",
  2890. bottom: 29 / 3734
  2891. }
  2892. },
  2893. sideNsfw: {
  2894. height: math.unit(4, "meter"),
  2895. weight: math.unit(150, "kg"),
  2896. name: "Side (NSFW)",
  2897. image: {
  2898. source: "./media/characters/talan/side-nsfw.svg",
  2899. bottom: 29 / 3734
  2900. }
  2901. },
  2902. back: {
  2903. height: math.unit(4, "meter"),
  2904. weight: math.unit(150, "kg"),
  2905. name: "Back",
  2906. image: {
  2907. source: "./media/characters/talan/back.svg"
  2908. }
  2909. },
  2910. dickBottom: {
  2911. height: math.unit(0.621, "meter"),
  2912. name: "Dick (Bottom)",
  2913. image: {
  2914. source: "./media/characters/talan/dick-bottom.svg"
  2915. }
  2916. },
  2917. dickTop: {
  2918. height: math.unit(0.621, "meter"),
  2919. name: "Dick (Top)",
  2920. image: {
  2921. source: "./media/characters/talan/dick-top.svg"
  2922. }
  2923. },
  2924. dickSide: {
  2925. height: math.unit(0.305, "meter"),
  2926. name: "Dick (Side)",
  2927. image: {
  2928. source: "./media/characters/talan/dick-side.svg"
  2929. }
  2930. },
  2931. dickFront: {
  2932. height: math.unit(0.305, "meter"),
  2933. name: "Dick (Front)",
  2934. image: {
  2935. source: "./media/characters/talan/dick-front.svg"
  2936. }
  2937. },
  2938. },
  2939. [
  2940. {
  2941. name: "Normal",
  2942. height: math.unit(4, "meters")
  2943. },
  2944. {
  2945. name: "Macro",
  2946. height: math.unit(100, "meters")
  2947. },
  2948. {
  2949. name: "Megamacro",
  2950. height: math.unit(2, "miles"),
  2951. default: true
  2952. },
  2953. {
  2954. name: "Gigamacro",
  2955. height: math.unit(5000, "miles")
  2956. },
  2957. {
  2958. name: "Teramacro",
  2959. height: math.unit(100, "parsecs")
  2960. }
  2961. ]
  2962. ))
  2963. characterMakers.push(() => makeCharacter(
  2964. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2965. {
  2966. front: {
  2967. height: math.unit(2, "meter"),
  2968. weight: math.unit(90, "kg"),
  2969. name: "Front",
  2970. image: {
  2971. source: "./media/characters/gael'rathus/front.svg"
  2972. }
  2973. },
  2974. frontAlt: {
  2975. height: math.unit(2, "meter"),
  2976. weight: math.unit(90, "kg"),
  2977. name: "Front (alt)",
  2978. image: {
  2979. source: "./media/characters/gael'rathus/front-alt.svg"
  2980. }
  2981. },
  2982. frontAlt2: {
  2983. height: math.unit(2, "meter"),
  2984. weight: math.unit(90, "kg"),
  2985. name: "Front (alt 2)",
  2986. image: {
  2987. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2988. }
  2989. }
  2990. },
  2991. [
  2992. {
  2993. name: "Normal",
  2994. height: math.unit(9, "feet"),
  2995. default: true
  2996. },
  2997. {
  2998. name: "Large",
  2999. height: math.unit(25, "feet")
  3000. },
  3001. {
  3002. name: "Macro",
  3003. height: math.unit(0.25, "miles")
  3004. },
  3005. {
  3006. name: "Megamacro",
  3007. height: math.unit(10, "miles")
  3008. }
  3009. ]
  3010. ))
  3011. characterMakers.push(() => makeCharacter(
  3012. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3013. {
  3014. side: {
  3015. height: math.unit(2, "meter"),
  3016. weight: math.unit(140, "kg"),
  3017. name: "Side",
  3018. image: {
  3019. source: "./media/characters/sosha/side.svg",
  3020. bottom: 0.042
  3021. }
  3022. },
  3023. },
  3024. [
  3025. {
  3026. name: "Normal",
  3027. height: math.unit(12, "feet"),
  3028. default: true
  3029. }
  3030. ]
  3031. ))
  3032. characterMakers.push(() => makeCharacter(
  3033. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3034. {
  3035. side: {
  3036. height: math.unit(5 + 5 / 12, "feet"),
  3037. weight: math.unit(170, "kg"),
  3038. name: "Side",
  3039. image: {
  3040. source: "./media/characters/runnola/side.svg",
  3041. extra: 741 / 448,
  3042. bottom: 0.05
  3043. }
  3044. },
  3045. },
  3046. [
  3047. {
  3048. name: "Small",
  3049. height: math.unit(3, "feet")
  3050. },
  3051. {
  3052. name: "Normal",
  3053. height: math.unit(5 + 5 / 12, "feet"),
  3054. default: true
  3055. },
  3056. {
  3057. name: "Big",
  3058. height: math.unit(10, "feet")
  3059. },
  3060. ]
  3061. ))
  3062. characterMakers.push(() => makeCharacter(
  3063. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3064. {
  3065. front: {
  3066. height: math.unit(2, "meter"),
  3067. weight: math.unit(50, "kg"),
  3068. name: "Front",
  3069. image: {
  3070. source: "./media/characters/kurribird/front.svg",
  3071. bottom: 0.015
  3072. }
  3073. },
  3074. frontAlt: {
  3075. height: math.unit(1.5, "meter"),
  3076. weight: math.unit(50, "kg"),
  3077. name: "Front (Alt)",
  3078. image: {
  3079. source: "./media/characters/kurribird/front-alt.svg",
  3080. extra: 1.45
  3081. }
  3082. },
  3083. },
  3084. [
  3085. {
  3086. name: "Normal",
  3087. height: math.unit(7, "feet")
  3088. },
  3089. {
  3090. name: "Big",
  3091. height: math.unit(12, "feet"),
  3092. default: true
  3093. },
  3094. {
  3095. name: "Macro",
  3096. height: math.unit(1500, "feet")
  3097. },
  3098. {
  3099. name: "Megamacro",
  3100. height: math.unit(2, "miles")
  3101. }
  3102. ]
  3103. ))
  3104. characterMakers.push(() => makeCharacter(
  3105. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3106. {
  3107. front: {
  3108. height: math.unit(2, "meter"),
  3109. weight: math.unit(80, "kg"),
  3110. name: "Front",
  3111. image: {
  3112. source: "./media/characters/elbial/front.svg",
  3113. extra: 1643 / 1556,
  3114. bottom: 60.2 / 1696
  3115. }
  3116. },
  3117. side: {
  3118. height: math.unit(2, "meter"),
  3119. weight: math.unit(80, "kg"),
  3120. name: "Side",
  3121. image: {
  3122. source: "./media/characters/elbial/side.svg",
  3123. extra: 1630 / 1565,
  3124. bottom: 71.5 / 1697
  3125. }
  3126. },
  3127. back: {
  3128. height: math.unit(2, "meter"),
  3129. weight: math.unit(80, "kg"),
  3130. name: "Back",
  3131. image: {
  3132. source: "./media/characters/elbial/back.svg",
  3133. extra: 1668 / 1595,
  3134. bottom: 5.6 / 1672
  3135. }
  3136. },
  3137. frontDressed: {
  3138. height: math.unit(2, "meter"),
  3139. weight: math.unit(80, "kg"),
  3140. name: "Front (Dressed)",
  3141. image: {
  3142. source: "./media/characters/elbial/front-dressed.svg",
  3143. extra: 1653 / 1584,
  3144. bottom: 57 / 1708
  3145. }
  3146. },
  3147. genitals: {
  3148. height: math.unit(2 / 3.367, "meter"),
  3149. name: "Genitals",
  3150. image: {
  3151. source: "./media/characters/elbial/genitals.svg"
  3152. }
  3153. },
  3154. },
  3155. [
  3156. {
  3157. name: "Large",
  3158. height: math.unit(100, "feet")
  3159. },
  3160. {
  3161. name: "Macro",
  3162. height: math.unit(500, "feet"),
  3163. default: true
  3164. },
  3165. {
  3166. name: "Megamacro",
  3167. height: math.unit(10, "miles")
  3168. },
  3169. {
  3170. name: "Gigamacro",
  3171. height: math.unit(25000, "miles")
  3172. },
  3173. {
  3174. name: "Full-Size",
  3175. height: math.unit(8000000, "gigaparsecs")
  3176. }
  3177. ]
  3178. ))
  3179. characterMakers.push(() => makeCharacter(
  3180. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3181. {
  3182. front: {
  3183. height: math.unit(2, "meter"),
  3184. weight: math.unit(60, "kg"),
  3185. name: "Front",
  3186. image: {
  3187. source: "./media/characters/noah/front.svg"
  3188. }
  3189. },
  3190. talons: {
  3191. height: math.unit(0.315, "meter"),
  3192. name: "Talons",
  3193. image: {
  3194. source: "./media/characters/noah/talons.svg"
  3195. }
  3196. }
  3197. },
  3198. [
  3199. {
  3200. name: "Large",
  3201. height: math.unit(50, "feet")
  3202. },
  3203. {
  3204. name: "Macro",
  3205. height: math.unit(750, "feet"),
  3206. default: true
  3207. },
  3208. {
  3209. name: "Megamacro",
  3210. height: math.unit(50, "miles")
  3211. },
  3212. {
  3213. name: "Gigamacro",
  3214. height: math.unit(100000, "miles")
  3215. },
  3216. {
  3217. name: "Full-Size",
  3218. height: math.unit(3000000000, "miles")
  3219. }
  3220. ]
  3221. ))
  3222. characterMakers.push(() => makeCharacter(
  3223. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3224. {
  3225. front: {
  3226. height: math.unit(2, "meter"),
  3227. weight: math.unit(80, "kg"),
  3228. name: "Front",
  3229. image: {
  3230. source: "./media/characters/natalya/front.svg"
  3231. }
  3232. },
  3233. back: {
  3234. height: math.unit(2, "meter"),
  3235. weight: math.unit(80, "kg"),
  3236. name: "Back",
  3237. image: {
  3238. source: "./media/characters/natalya/back.svg"
  3239. }
  3240. }
  3241. },
  3242. [
  3243. {
  3244. name: "Normal",
  3245. height: math.unit(150, "feet"),
  3246. default: true
  3247. },
  3248. {
  3249. name: "Megamacro",
  3250. height: math.unit(5, "miles")
  3251. },
  3252. {
  3253. name: "Full-Size",
  3254. height: math.unit(600, "kiloparsecs")
  3255. }
  3256. ]
  3257. ))
  3258. characterMakers.push(() => makeCharacter(
  3259. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3260. {
  3261. front: {
  3262. height: math.unit(2, "meter"),
  3263. weight: math.unit(50, "kg"),
  3264. name: "Front",
  3265. image: {
  3266. source: "./media/characters/erestrebah/front.svg",
  3267. extra: 208 / 193,
  3268. bottom: 0.055
  3269. }
  3270. },
  3271. back: {
  3272. height: math.unit(2, "meter"),
  3273. weight: math.unit(50, "kg"),
  3274. name: "Back",
  3275. image: {
  3276. source: "./media/characters/erestrebah/back.svg",
  3277. extra: 1.3
  3278. }
  3279. }
  3280. },
  3281. [
  3282. {
  3283. name: "Normal",
  3284. height: math.unit(10, "feet")
  3285. },
  3286. {
  3287. name: "Large",
  3288. height: math.unit(50, "feet"),
  3289. default: true
  3290. },
  3291. {
  3292. name: "Macro",
  3293. height: math.unit(300, "feet")
  3294. },
  3295. {
  3296. name: "Macro+",
  3297. height: math.unit(750, "feet")
  3298. },
  3299. {
  3300. name: "Megamacro",
  3301. height: math.unit(3, "miles")
  3302. }
  3303. ]
  3304. ))
  3305. characterMakers.push(() => makeCharacter(
  3306. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3307. {
  3308. front: {
  3309. height: math.unit(2, "meter"),
  3310. weight: math.unit(80, "kg"),
  3311. name: "Front",
  3312. image: {
  3313. source: "./media/characters/jennifer/front.svg",
  3314. bottom: 0.11,
  3315. extra: 1.16
  3316. }
  3317. },
  3318. frontAlt: {
  3319. height: math.unit(2, "meter"),
  3320. weight: math.unit(80, "kg"),
  3321. name: "Front (Alt)",
  3322. image: {
  3323. source: "./media/characters/jennifer/front-alt.svg"
  3324. }
  3325. }
  3326. },
  3327. [
  3328. {
  3329. name: "Canon Height",
  3330. height: math.unit(120, "feet"),
  3331. default: true
  3332. },
  3333. {
  3334. name: "Macro+",
  3335. height: math.unit(300, "feet")
  3336. },
  3337. {
  3338. name: "Megamacro",
  3339. height: math.unit(20000, "feet")
  3340. }
  3341. ]
  3342. ))
  3343. characterMakers.push(() => makeCharacter(
  3344. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3345. {
  3346. front: {
  3347. height: math.unit(2, "meter"),
  3348. weight: math.unit(50, "kg"),
  3349. name: "Front",
  3350. image: {
  3351. source: "./media/characters/kalista/front.svg",
  3352. extra: 1947 / 1700,
  3353. bottom: 76.6 / 1412.98
  3354. }
  3355. },
  3356. back: {
  3357. height: math.unit(2, "meter"),
  3358. weight: math.unit(50, "kg"),
  3359. name: "Back",
  3360. image: {
  3361. source: "./media/characters/kalista/back.svg",
  3362. extra: 1366 / 1156,
  3363. bottom: 33.9 / 1362.78
  3364. }
  3365. }
  3366. },
  3367. [
  3368. {
  3369. name: "Uncomfortably Small",
  3370. height: math.unit(10, "feet")
  3371. },
  3372. {
  3373. name: "Small",
  3374. height: math.unit(30, "feet")
  3375. },
  3376. {
  3377. name: "Macro",
  3378. height: math.unit(100, "feet"),
  3379. default: true
  3380. },
  3381. {
  3382. name: "Macro+",
  3383. height: math.unit(2000, "feet")
  3384. },
  3385. {
  3386. name: "True Form",
  3387. height: math.unit(8924, "miles")
  3388. }
  3389. ]
  3390. ))
  3391. characterMakers.push(() => makeCharacter(
  3392. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3393. {
  3394. front: {
  3395. height: math.unit(2, "meter"),
  3396. weight: math.unit(120, "kg"),
  3397. name: "Front",
  3398. image: {
  3399. source: "./media/characters/ggv/front.svg"
  3400. }
  3401. },
  3402. side: {
  3403. height: math.unit(2, "meter"),
  3404. weight: math.unit(120, "kg"),
  3405. name: "Side",
  3406. image: {
  3407. source: "./media/characters/ggv/side.svg"
  3408. }
  3409. }
  3410. },
  3411. [
  3412. {
  3413. name: "Extremely Puny",
  3414. height: math.unit(9 + 5 / 12, "feet")
  3415. },
  3416. {
  3417. name: "Horribly Small",
  3418. height: math.unit(47.7, "miles"),
  3419. default: true
  3420. },
  3421. {
  3422. name: "Reasonably Sized",
  3423. height: math.unit(25000, "parsecs")
  3424. },
  3425. {
  3426. name: "Slightly Uncompressed",
  3427. height: math.unit(7.77e31, "parsecs")
  3428. },
  3429. {
  3430. name: "Omniversal",
  3431. height: math.unit(1e300, "meters")
  3432. },
  3433. ]
  3434. ))
  3435. characterMakers.push(() => makeCharacter(
  3436. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3437. {
  3438. front: {
  3439. height: math.unit(2, "meter"),
  3440. weight: math.unit(75, "lb"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/napalm/front.svg"
  3444. }
  3445. },
  3446. back: {
  3447. height: math.unit(2, "meter"),
  3448. weight: math.unit(75, "lb"),
  3449. name: "Back",
  3450. image: {
  3451. source: "./media/characters/napalm/back.svg"
  3452. }
  3453. }
  3454. },
  3455. [
  3456. {
  3457. name: "Standard",
  3458. height: math.unit(55, "feet"),
  3459. default: true
  3460. }
  3461. ]
  3462. ))
  3463. characterMakers.push(() => makeCharacter(
  3464. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3465. {
  3466. front: {
  3467. height: math.unit(7 + 5 / 6, "feet"),
  3468. weight: math.unit(325, "lb"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/asana/front.svg",
  3472. extra: 1133 / 1060,
  3473. bottom: 15.2 / 1148.6
  3474. }
  3475. },
  3476. back: {
  3477. height: math.unit(7 + 5 / 6, "feet"),
  3478. weight: math.unit(325, "lb"),
  3479. name: "Back",
  3480. image: {
  3481. source: "./media/characters/asana/back.svg",
  3482. extra: 1114 / 1043,
  3483. bottom: 5 / 1120
  3484. }
  3485. },
  3486. dressedDark: {
  3487. height: math.unit(7 + 5 / 6, "feet"),
  3488. weight: math.unit(325, "lb"),
  3489. name: "Dressed (Dark)",
  3490. image: {
  3491. source: "./media/characters/asana/dressed-dark.svg",
  3492. extra: 1133 / 1060,
  3493. bottom: 15.2 / 1148.6
  3494. }
  3495. },
  3496. dressedLight: {
  3497. height: math.unit(7 + 5 / 6, "feet"),
  3498. weight: math.unit(325, "lb"),
  3499. name: "Dressed (Light)",
  3500. image: {
  3501. source: "./media/characters/asana/dressed-light.svg",
  3502. extra: 1133 / 1060,
  3503. bottom: 15.2 / 1148.6
  3504. }
  3505. },
  3506. },
  3507. [
  3508. {
  3509. name: "Standard",
  3510. height: math.unit(7 + 5 / 6, "feet"),
  3511. default: true
  3512. },
  3513. {
  3514. name: "Large",
  3515. height: math.unit(10, "meters")
  3516. },
  3517. {
  3518. name: "Macro",
  3519. height: math.unit(2500, "meters")
  3520. },
  3521. {
  3522. name: "Megamacro",
  3523. height: math.unit(5e6, "meters")
  3524. },
  3525. {
  3526. name: "Examacro",
  3527. height: math.unit(5e12, "lightyears")
  3528. },
  3529. {
  3530. name: "Max Size",
  3531. height: math.unit(1e31, "lightyears")
  3532. }
  3533. ]
  3534. ))
  3535. characterMakers.push(() => makeCharacter(
  3536. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3537. {
  3538. front: {
  3539. height: math.unit(2, "meter"),
  3540. weight: math.unit(60, "kg"),
  3541. name: "Front",
  3542. image: {
  3543. source: "./media/characters/ebony/front.svg",
  3544. bottom: 0.03,
  3545. extra: 1045 / 810 + 0.03
  3546. }
  3547. },
  3548. side: {
  3549. height: math.unit(2, "meter"),
  3550. weight: math.unit(60, "kg"),
  3551. name: "Side",
  3552. image: {
  3553. source: "./media/characters/ebony/side.svg",
  3554. bottom: 0.03,
  3555. extra: 1045 / 810 + 0.03
  3556. }
  3557. },
  3558. back: {
  3559. height: math.unit(2, "meter"),
  3560. weight: math.unit(60, "kg"),
  3561. name: "Back",
  3562. image: {
  3563. source: "./media/characters/ebony/back.svg",
  3564. bottom: 0.01,
  3565. extra: 1045 / 810 + 0.01
  3566. }
  3567. },
  3568. },
  3569. [
  3570. // TODO check why I did this lol
  3571. {
  3572. name: "Standard",
  3573. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3574. default: true
  3575. },
  3576. {
  3577. name: "Macro",
  3578. height: math.unit(200, "feet")
  3579. },
  3580. {
  3581. name: "Gigamacro",
  3582. height: math.unit(13000, "km")
  3583. }
  3584. ]
  3585. ))
  3586. characterMakers.push(() => makeCharacter(
  3587. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3588. {
  3589. front: {
  3590. height: math.unit(6, "feet"),
  3591. weight: math.unit(175, "lb"),
  3592. name: "Front",
  3593. image: {
  3594. source: "./media/characters/mountain/front.svg",
  3595. extra: 972 / 955,
  3596. bottom: 64 / 1036.6
  3597. }
  3598. },
  3599. back: {
  3600. height: math.unit(6, "feet"),
  3601. weight: math.unit(175, "lb"),
  3602. name: "Back",
  3603. image: {
  3604. source: "./media/characters/mountain/back.svg",
  3605. extra: 970 / 950,
  3606. bottom: 28.25 / 999
  3607. }
  3608. },
  3609. },
  3610. [
  3611. {
  3612. name: "Large",
  3613. height: math.unit(20, "meters")
  3614. },
  3615. {
  3616. name: "Macro",
  3617. height: math.unit(300, "meters")
  3618. },
  3619. {
  3620. name: "Gigamacro",
  3621. height: math.unit(10000, "km"),
  3622. default: true
  3623. },
  3624. {
  3625. name: "Examacro",
  3626. height: math.unit(10e9, "lightyears")
  3627. }
  3628. ]
  3629. ))
  3630. characterMakers.push(() => makeCharacter(
  3631. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3632. {
  3633. front: {
  3634. height: math.unit(8, "feet"),
  3635. weight: math.unit(500, "lb"),
  3636. name: "Front",
  3637. image: {
  3638. source: "./media/characters/rick/front.svg"
  3639. }
  3640. }
  3641. },
  3642. [
  3643. {
  3644. name: "Normal",
  3645. height: math.unit(8, "feet"),
  3646. default: true
  3647. },
  3648. {
  3649. name: "Macro",
  3650. height: math.unit(5, "km")
  3651. }
  3652. ]
  3653. ))
  3654. characterMakers.push(() => makeCharacter(
  3655. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3656. {
  3657. front: {
  3658. height: math.unit(8, "feet"),
  3659. weight: math.unit(120, "lb"),
  3660. name: "Front",
  3661. image: {
  3662. source: "./media/characters/ona/front.svg"
  3663. }
  3664. },
  3665. frontAlt: {
  3666. height: math.unit(8, "feet"),
  3667. weight: math.unit(120, "lb"),
  3668. name: "Front (Alt)",
  3669. image: {
  3670. source: "./media/characters/ona/front-alt.svg"
  3671. }
  3672. },
  3673. back: {
  3674. height: math.unit(8, "feet"),
  3675. weight: math.unit(120, "lb"),
  3676. name: "Back",
  3677. image: {
  3678. source: "./media/characters/ona/back.svg"
  3679. }
  3680. },
  3681. foot: {
  3682. height: math.unit(1.1, "feet"),
  3683. name: "Foot",
  3684. image: {
  3685. source: "./media/characters/ona/foot.svg"
  3686. }
  3687. }
  3688. },
  3689. [
  3690. {
  3691. name: "Megamacro",
  3692. height: math.unit(70, "km"),
  3693. default: true
  3694. },
  3695. {
  3696. name: "Gigamacro",
  3697. height: math.unit(681818, "miles")
  3698. },
  3699. {
  3700. name: "Examacro",
  3701. height: math.unit(3800000, "lightyears")
  3702. },
  3703. ]
  3704. ))
  3705. characterMakers.push(() => makeCharacter(
  3706. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3707. {
  3708. front: {
  3709. height: math.unit(12, "feet"),
  3710. weight: math.unit(3000, "lb"),
  3711. name: "Front",
  3712. image: {
  3713. source: "./media/characters/mech/front.svg",
  3714. extra: 2900 / 2770,
  3715. bottom: 110 / 3010
  3716. }
  3717. },
  3718. back: {
  3719. height: math.unit(12, "feet"),
  3720. weight: math.unit(3000, "lb"),
  3721. name: "Back",
  3722. image: {
  3723. source: "./media/characters/mech/back.svg",
  3724. extra: 3011 / 2890,
  3725. bottom: 94 / 3105
  3726. }
  3727. },
  3728. maw: {
  3729. height: math.unit(3.07, "feet"),
  3730. name: "Maw",
  3731. image: {
  3732. source: "./media/characters/mech/maw.svg"
  3733. }
  3734. },
  3735. head: {
  3736. height: math.unit(2.82, "feet"),
  3737. name: "Head",
  3738. image: {
  3739. source: "./media/characters/mech/head.svg"
  3740. }
  3741. },
  3742. dick: {
  3743. height: math.unit(1.43, "feet"),
  3744. name: "Dick",
  3745. image: {
  3746. source: "./media/characters/mech/dick.svg"
  3747. }
  3748. },
  3749. },
  3750. [
  3751. {
  3752. name: "Normal",
  3753. height: math.unit(12, "feet")
  3754. },
  3755. {
  3756. name: "Macro",
  3757. height: math.unit(300, "feet"),
  3758. default: true
  3759. },
  3760. {
  3761. name: "Macro+",
  3762. height: math.unit(1500, "feet")
  3763. },
  3764. ]
  3765. ))
  3766. characterMakers.push(() => makeCharacter(
  3767. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3768. {
  3769. front: {
  3770. height: math.unit(1.3, "meter"),
  3771. weight: math.unit(30, "kg"),
  3772. name: "Front",
  3773. image: {
  3774. source: "./media/characters/gregory/front.svg",
  3775. }
  3776. }
  3777. },
  3778. [
  3779. {
  3780. name: "Normal",
  3781. height: math.unit(1.3, "meter"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Macro",
  3786. height: math.unit(20, "meter")
  3787. }
  3788. ]
  3789. ))
  3790. characterMakers.push(() => makeCharacter(
  3791. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3792. {
  3793. front: {
  3794. height: math.unit(2.8, "meter"),
  3795. weight: math.unit(200, "kg"),
  3796. name: "Front",
  3797. image: {
  3798. source: "./media/characters/elory/front.svg",
  3799. }
  3800. }
  3801. },
  3802. [
  3803. {
  3804. name: "Normal",
  3805. height: math.unit(2.8, "meter"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "Macro",
  3810. height: math.unit(38, "meter")
  3811. }
  3812. ]
  3813. ))
  3814. characterMakers.push(() => makeCharacter(
  3815. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3816. {
  3817. front: {
  3818. height: math.unit(470, "feet"),
  3819. weight: math.unit(924, "tons"),
  3820. name: "Front",
  3821. image: {
  3822. source: "./media/characters/angelpatamon/front.svg",
  3823. }
  3824. }
  3825. },
  3826. [
  3827. {
  3828. name: "Normal",
  3829. height: math.unit(470, "feet"),
  3830. default: true
  3831. },
  3832. {
  3833. name: "Deity Size I",
  3834. height: math.unit(28651.2, "km")
  3835. },
  3836. {
  3837. name: "Deity Size II",
  3838. height: math.unit(171907.2, "km")
  3839. }
  3840. ]
  3841. ))
  3842. characterMakers.push(() => makeCharacter(
  3843. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3844. {
  3845. side: {
  3846. height: math.unit(7.2, "meter"),
  3847. weight: math.unit(8.2, "tons"),
  3848. name: "Side",
  3849. image: {
  3850. source: "./media/characters/cryae/side.svg",
  3851. extra: 3500 / 1500
  3852. }
  3853. }
  3854. },
  3855. [
  3856. {
  3857. name: "Normal",
  3858. height: math.unit(7.2, "meter"),
  3859. default: true
  3860. }
  3861. ]
  3862. ))
  3863. characterMakers.push(() => makeCharacter(
  3864. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3865. {
  3866. front: {
  3867. height: math.unit(6, "feet"),
  3868. weight: math.unit(175, "lb"),
  3869. name: "Front",
  3870. image: {
  3871. source: "./media/characters/xera/front.svg",
  3872. extra: 2377 / 1972,
  3873. bottom: 75.5 / 2452
  3874. }
  3875. },
  3876. side: {
  3877. height: math.unit(6, "feet"),
  3878. weight: math.unit(175, "lb"),
  3879. name: "Side",
  3880. image: {
  3881. source: "./media/characters/xera/side.svg",
  3882. extra: 2345 / 2019,
  3883. bottom: 39.7 / 2384
  3884. }
  3885. },
  3886. back: {
  3887. height: math.unit(6, "feet"),
  3888. weight: math.unit(175, "lb"),
  3889. name: "Back",
  3890. image: {
  3891. source: "./media/characters/xera/back.svg",
  3892. extra: 2095 / 1984,
  3893. bottom: 67 / 2166
  3894. }
  3895. },
  3896. },
  3897. [
  3898. {
  3899. name: "Small",
  3900. height: math.unit(10, "feet")
  3901. },
  3902. {
  3903. name: "Macro",
  3904. height: math.unit(500, "meters"),
  3905. default: true
  3906. },
  3907. {
  3908. name: "Macro+",
  3909. height: math.unit(10, "km")
  3910. },
  3911. {
  3912. name: "Gigamacro",
  3913. height: math.unit(25000, "km")
  3914. },
  3915. {
  3916. name: "Teramacro",
  3917. height: math.unit(3e6, "km")
  3918. }
  3919. ]
  3920. ))
  3921. characterMakers.push(() => makeCharacter(
  3922. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3923. {
  3924. front: {
  3925. height: math.unit(6, "feet"),
  3926. weight: math.unit(175, "lb"),
  3927. name: "Front",
  3928. image: {
  3929. source: "./media/characters/nebula/front.svg",
  3930. extra: 2566 / 2362,
  3931. bottom: 81 / 2644
  3932. }
  3933. }
  3934. },
  3935. [
  3936. {
  3937. name: "Small",
  3938. height: math.unit(4.5, "meters")
  3939. },
  3940. {
  3941. name: "Macro",
  3942. height: math.unit(1500, "meters"),
  3943. default: true
  3944. },
  3945. {
  3946. name: "Megamacro",
  3947. height: math.unit(150, "km")
  3948. },
  3949. {
  3950. name: "Gigamacro",
  3951. height: math.unit(27000, "km")
  3952. }
  3953. ]
  3954. ))
  3955. characterMakers.push(() => makeCharacter(
  3956. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3957. {
  3958. front: {
  3959. height: math.unit(6, "feet"),
  3960. weight: math.unit(225, "lb"),
  3961. name: "Front",
  3962. image: {
  3963. source: "./media/characters/abysgar/front.svg"
  3964. }
  3965. }
  3966. },
  3967. [
  3968. {
  3969. name: "Small",
  3970. height: math.unit(4.5, "meters")
  3971. },
  3972. {
  3973. name: "Macro",
  3974. height: math.unit(1250, "meters"),
  3975. default: true
  3976. },
  3977. {
  3978. name: "Megamacro",
  3979. height: math.unit(125, "km")
  3980. },
  3981. {
  3982. name: "Gigamacro",
  3983. height: math.unit(26000, "km")
  3984. }
  3985. ]
  3986. ))
  3987. characterMakers.push(() => makeCharacter(
  3988. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3989. {
  3990. front: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(180, "lb"),
  3993. name: "Front",
  3994. image: {
  3995. source: "./media/characters/yakuz/front.svg"
  3996. }
  3997. }
  3998. },
  3999. [
  4000. {
  4001. name: "Small",
  4002. height: math.unit(5, "meters")
  4003. },
  4004. {
  4005. name: "Macro",
  4006. height: math.unit(1500, "meters"),
  4007. default: true
  4008. },
  4009. {
  4010. name: "Megamacro",
  4011. height: math.unit(200, "km")
  4012. },
  4013. {
  4014. name: "Gigamacro",
  4015. height: math.unit(100000, "km")
  4016. }
  4017. ]
  4018. ))
  4019. characterMakers.push(() => makeCharacter(
  4020. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4021. {
  4022. front: {
  4023. height: math.unit(6, "feet"),
  4024. weight: math.unit(175, "lb"),
  4025. name: "Front",
  4026. image: {
  4027. source: "./media/characters/mirova/front.svg",
  4028. extra: 3334 / 3071,
  4029. bottom: 42 / 3375.6
  4030. }
  4031. }
  4032. },
  4033. [
  4034. {
  4035. name: "Small",
  4036. height: math.unit(5, "meters")
  4037. },
  4038. {
  4039. name: "Macro",
  4040. height: math.unit(900, "meters"),
  4041. default: true
  4042. },
  4043. {
  4044. name: "Megamacro",
  4045. height: math.unit(135, "km")
  4046. },
  4047. {
  4048. name: "Gigamacro",
  4049. height: math.unit(20000, "km")
  4050. }
  4051. ]
  4052. ))
  4053. characterMakers.push(() => makeCharacter(
  4054. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4055. {
  4056. side: {
  4057. height: math.unit(28.35, "feet"),
  4058. weight: math.unit(99.75, "tons"),
  4059. name: "Side",
  4060. image: {
  4061. source: "./media/characters/asana-mech/side.svg",
  4062. extra: 923 / 699,
  4063. bottom: 50 / 975
  4064. }
  4065. },
  4066. chaingun: {
  4067. height: math.unit(7, "feet"),
  4068. weight: math.unit(2400, "lb"),
  4069. name: "Chaingun",
  4070. image: {
  4071. source: "./media/characters/asana-mech/chaingun.svg"
  4072. }
  4073. },
  4074. laser: {
  4075. height: math.unit(7.12, "feet"),
  4076. weight: math.unit(2000, "lb"),
  4077. name: "Laser",
  4078. image: {
  4079. source: "./media/characters/asana-mech/laser.svg"
  4080. }
  4081. },
  4082. },
  4083. [
  4084. {
  4085. name: "Normal",
  4086. height: math.unit(28.35, "feet"),
  4087. default: true
  4088. },
  4089. {
  4090. name: "Macro",
  4091. height: math.unit(2500, "feet")
  4092. },
  4093. {
  4094. name: "Megamacro",
  4095. height: math.unit(25, "miles")
  4096. },
  4097. {
  4098. name: "Examacro",
  4099. height: math.unit(6e8, "lightyears")
  4100. },
  4101. ]
  4102. ))
  4103. characterMakers.push(() => makeCharacter(
  4104. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4105. {
  4106. front: {
  4107. height: math.unit(5, "meters"),
  4108. weight: math.unit(1000, "kg"),
  4109. name: "Front",
  4110. image: {
  4111. source: "./media/characters/asche/front.svg",
  4112. extra: 1258 / 1190,
  4113. bottom: 47 / 1305
  4114. }
  4115. },
  4116. frontUnderwear: {
  4117. height: math.unit(5, "meters"),
  4118. weight: math.unit(1000, "kg"),
  4119. name: "Front (Underwear)",
  4120. image: {
  4121. source: "./media/characters/asche/front-underwear.svg",
  4122. extra: 1258 / 1190,
  4123. bottom: 47 / 1305
  4124. }
  4125. },
  4126. frontDressed: {
  4127. height: math.unit(5, "meters"),
  4128. weight: math.unit(1000, "kg"),
  4129. name: "Front (Dressed)",
  4130. image: {
  4131. source: "./media/characters/asche/front-dressed.svg",
  4132. extra: 1258 / 1190,
  4133. bottom: 47 / 1305
  4134. }
  4135. },
  4136. frontArmor: {
  4137. height: math.unit(5, "meters"),
  4138. weight: math.unit(1000, "kg"),
  4139. name: "Front (Armored)",
  4140. image: {
  4141. source: "./media/characters/asche/front-armored.svg",
  4142. extra: 1374 / 1308,
  4143. bottom: 23 / 1397
  4144. }
  4145. },
  4146. mp724: {
  4147. height: math.unit(0.96, "meters"),
  4148. weight: math.unit(38, "kg"),
  4149. name: "H&K MP724",
  4150. image: {
  4151. source: "./media/characters/asche/h&k-mp724.svg"
  4152. }
  4153. },
  4154. side: {
  4155. height: math.unit(5, "meters"),
  4156. weight: math.unit(1000, "kg"),
  4157. name: "Side",
  4158. image: {
  4159. source: "./media/characters/asche/side.svg",
  4160. extra: 1717 / 1609,
  4161. bottom: 0.005
  4162. }
  4163. },
  4164. back: {
  4165. height: math.unit(5, "meters"),
  4166. weight: math.unit(1000, "kg"),
  4167. name: "Back",
  4168. image: {
  4169. source: "./media/characters/asche/back.svg",
  4170. extra: 1570 / 1501
  4171. }
  4172. },
  4173. },
  4174. [
  4175. {
  4176. name: "DEFCON 5",
  4177. height: math.unit(5, "meters")
  4178. },
  4179. {
  4180. name: "DEFCON 4",
  4181. height: math.unit(500, "meters"),
  4182. default: true
  4183. },
  4184. {
  4185. name: "DEFCON 3",
  4186. height: math.unit(5, "km")
  4187. },
  4188. {
  4189. name: "DEFCON 2",
  4190. height: math.unit(500, "km")
  4191. },
  4192. {
  4193. name: "DEFCON 1",
  4194. height: math.unit(500000, "km")
  4195. },
  4196. {
  4197. name: "DEFCON 0",
  4198. height: math.unit(3, "gigaparsecs")
  4199. },
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4204. {
  4205. front: {
  4206. height: math.unit(2, "meters"),
  4207. weight: math.unit(76, "kg"),
  4208. name: "Front",
  4209. image: {
  4210. source: "./media/characters/gale/front.svg"
  4211. }
  4212. },
  4213. frontAlt1: {
  4214. height: math.unit(2, "meters"),
  4215. weight: math.unit(76, "kg"),
  4216. name: "Front (Alt 1)",
  4217. image: {
  4218. source: "./media/characters/gale/front-alt-1.svg"
  4219. }
  4220. },
  4221. frontAlt2: {
  4222. height: math.unit(2, "meters"),
  4223. weight: math.unit(76, "kg"),
  4224. name: "Front (Alt 2)",
  4225. image: {
  4226. source: "./media/characters/gale/front-alt-2.svg"
  4227. }
  4228. },
  4229. },
  4230. [
  4231. {
  4232. name: "Normal",
  4233. height: math.unit(7, "feet")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(150, "feet"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Macro+",
  4242. height: math.unit(300, "feet")
  4243. },
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4248. {
  4249. front: {
  4250. height: math.unit(2, "meters"),
  4251. weight: math.unit(76, "kg"),
  4252. name: "Front",
  4253. image: {
  4254. source: "./media/characters/draylen/front.svg"
  4255. }
  4256. }
  4257. },
  4258. [
  4259. {
  4260. name: "Macro",
  4261. height: math.unit(150, "feet"),
  4262. default: true
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(7 + 9 / 12, "feet"),
  4271. weight: math.unit(379, "lbs"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/chez/front.svg"
  4275. }
  4276. },
  4277. side: {
  4278. height: math.unit(7 + 9 / 12, "feet"),
  4279. weight: math.unit(379, "lbs"),
  4280. name: "Side",
  4281. image: {
  4282. source: "./media/characters/chez/side.svg"
  4283. }
  4284. }
  4285. },
  4286. [
  4287. {
  4288. name: "Normal",
  4289. height: math.unit(7 + 9 / 12, "feet"),
  4290. default: true
  4291. },
  4292. {
  4293. name: "God King",
  4294. height: math.unit(9750000, "meters")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4300. {
  4301. front: {
  4302. height: math.unit(6, "feet"),
  4303. weight: math.unit(275, "lbs"),
  4304. name: "Front",
  4305. image: {
  4306. source: "./media/characters/kaylum/front.svg",
  4307. bottom: 0.01,
  4308. extra: 1166 / 1031
  4309. }
  4310. },
  4311. frontWingless: {
  4312. height: math.unit(6, "feet"),
  4313. weight: math.unit(275, "lbs"),
  4314. name: "Front (Wingless)",
  4315. image: {
  4316. source: "./media/characters/kaylum/front-wingless.svg",
  4317. bottom: 0.01,
  4318. extra: 1117 / 1031
  4319. }
  4320. }
  4321. },
  4322. [
  4323. {
  4324. name: "Normal",
  4325. height: math.unit(3.05, "meters")
  4326. },
  4327. {
  4328. name: "Master",
  4329. height: math.unit(5.5, "meters")
  4330. },
  4331. {
  4332. name: "Rampage",
  4333. height: math.unit(19, "meters")
  4334. },
  4335. {
  4336. name: "Macro Lite",
  4337. height: math.unit(37, "meters")
  4338. },
  4339. {
  4340. name: "Hyper Predator",
  4341. height: math.unit(61, "meters")
  4342. },
  4343. {
  4344. name: "Macro",
  4345. height: math.unit(138, "meters"),
  4346. default: true
  4347. }
  4348. ]
  4349. ))
  4350. characterMakers.push(() => makeCharacter(
  4351. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4352. {
  4353. front: {
  4354. height: math.unit(6, "feet"),
  4355. weight: math.unit(150, "lbs"),
  4356. name: "Front",
  4357. image: {
  4358. source: "./media/characters/geta/front.svg"
  4359. }
  4360. }
  4361. },
  4362. [
  4363. {
  4364. name: "Micro",
  4365. height: math.unit(3, "inches"),
  4366. default: true
  4367. },
  4368. {
  4369. name: "Normal",
  4370. height: math.unit(5 + 5 / 12, "feet")
  4371. }
  4372. ]
  4373. ))
  4374. characterMakers.push(() => makeCharacter(
  4375. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4376. {
  4377. front: {
  4378. height: math.unit(6, "feet"),
  4379. weight: math.unit(300, "lbs"),
  4380. name: "Front",
  4381. image: {
  4382. source: "./media/characters/tyrnn/front.svg"
  4383. }
  4384. }
  4385. },
  4386. [
  4387. {
  4388. name: "Main Height",
  4389. height: math.unit(355, "feet"),
  4390. default: true
  4391. },
  4392. {
  4393. name: "Fave. Height",
  4394. height: math.unit(2400, "feet")
  4395. }
  4396. ]
  4397. ))
  4398. characterMakers.push(() => makeCharacter(
  4399. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4400. {
  4401. front: {
  4402. height: math.unit(6, "feet"),
  4403. weight: math.unit(300, "lbs"),
  4404. name: "Front",
  4405. image: {
  4406. source: "./media/characters/appledectomy/front.svg"
  4407. }
  4408. }
  4409. },
  4410. [
  4411. {
  4412. name: "Macro",
  4413. height: math.unit(2500, "feet")
  4414. },
  4415. {
  4416. name: "Megamacro",
  4417. height: math.unit(50, "miles"),
  4418. default: true
  4419. },
  4420. {
  4421. name: "Gigamacro",
  4422. height: math.unit(5000, "miles")
  4423. },
  4424. {
  4425. name: "Teramacro",
  4426. height: math.unit(250000, "miles")
  4427. },
  4428. ]
  4429. ))
  4430. characterMakers.push(() => makeCharacter(
  4431. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4432. {
  4433. front: {
  4434. height: math.unit(6, "feet"),
  4435. weight: math.unit(200, "lbs"),
  4436. name: "Front",
  4437. image: {
  4438. source: "./media/characters/vulpes/front.svg",
  4439. extra: 573 / 543,
  4440. bottom: 0.033
  4441. }
  4442. },
  4443. side: {
  4444. height: math.unit(6, "feet"),
  4445. weight: math.unit(200, "lbs"),
  4446. name: "Side",
  4447. image: {
  4448. source: "./media/characters/vulpes/side.svg",
  4449. extra: 577 / 549,
  4450. bottom: 11 / 588
  4451. }
  4452. },
  4453. back: {
  4454. height: math.unit(6, "feet"),
  4455. weight: math.unit(200, "lbs"),
  4456. name: "Back",
  4457. image: {
  4458. source: "./media/characters/vulpes/back.svg",
  4459. extra: 573 / 549,
  4460. bottom: 20 / 593
  4461. }
  4462. },
  4463. feet: {
  4464. height: math.unit(1.276, "feet"),
  4465. name: "Feet",
  4466. image: {
  4467. source: "./media/characters/vulpes/feet.svg"
  4468. }
  4469. },
  4470. maw: {
  4471. height: math.unit(1.18, "feet"),
  4472. name: "Maw",
  4473. image: {
  4474. source: "./media/characters/vulpes/maw.svg"
  4475. }
  4476. },
  4477. },
  4478. [
  4479. {
  4480. name: "Micro",
  4481. height: math.unit(2, "inches")
  4482. },
  4483. {
  4484. name: "Normal",
  4485. height: math.unit(6.3, "feet")
  4486. },
  4487. {
  4488. name: "Macro",
  4489. height: math.unit(850, "feet")
  4490. },
  4491. {
  4492. name: "Megamacro",
  4493. height: math.unit(7500, "feet"),
  4494. default: true
  4495. },
  4496. {
  4497. name: "Gigamacro",
  4498. height: math.unit(570000, "miles")
  4499. }
  4500. ]
  4501. ))
  4502. characterMakers.push(() => makeCharacter(
  4503. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4504. {
  4505. front: {
  4506. height: math.unit(6, "feet"),
  4507. weight: math.unit(210, "lbs"),
  4508. name: "Front",
  4509. image: {
  4510. source: "./media/characters/rain-fallen/front.svg"
  4511. }
  4512. },
  4513. side: {
  4514. height: math.unit(6, "feet"),
  4515. weight: math.unit(210, "lbs"),
  4516. name: "Side",
  4517. image: {
  4518. source: "./media/characters/rain-fallen/side.svg"
  4519. }
  4520. },
  4521. back: {
  4522. height: math.unit(6, "feet"),
  4523. weight: math.unit(210, "lbs"),
  4524. name: "Back",
  4525. image: {
  4526. source: "./media/characters/rain-fallen/back.svg"
  4527. }
  4528. },
  4529. feral: {
  4530. height: math.unit(9, "feet"),
  4531. weight: math.unit(700, "lbs"),
  4532. name: "Feral",
  4533. image: {
  4534. source: "./media/characters/rain-fallen/feral.svg"
  4535. }
  4536. },
  4537. },
  4538. [
  4539. {
  4540. name: "Meddling with Mortals",
  4541. height: math.unit(8 + 8/12, "feet")
  4542. },
  4543. {
  4544. name: "Normal",
  4545. height: math.unit(5, "meter")
  4546. },
  4547. {
  4548. name: "Macro",
  4549. height: math.unit(150, "meter"),
  4550. default: true
  4551. },
  4552. {
  4553. name: "Megamacro",
  4554. height: math.unit(278e6, "meter")
  4555. },
  4556. {
  4557. name: "Gigamacro",
  4558. height: math.unit(2e9, "meter")
  4559. },
  4560. {
  4561. name: "Teramacro",
  4562. height: math.unit(8e12, "meter")
  4563. },
  4564. {
  4565. name: "Devourer",
  4566. height: math.unit(14, "zettameters")
  4567. },
  4568. {
  4569. name: "Scarlet King",
  4570. height: math.unit(18, "yottameters")
  4571. },
  4572. {
  4573. name: "Void",
  4574. height: math.unit(1e88, "yottameters")
  4575. }
  4576. ]
  4577. ))
  4578. characterMakers.push(() => makeCharacter(
  4579. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4580. {
  4581. standing: {
  4582. height: math.unit(6, "feet"),
  4583. weight: math.unit(180, "lbs"),
  4584. name: "Standing",
  4585. image: {
  4586. source: "./media/characters/zaakira/standing.svg",
  4587. extra: 1599/1504,
  4588. bottom: 39/1638
  4589. }
  4590. },
  4591. laying: {
  4592. height: math.unit(3, "feet"),
  4593. weight: math.unit(180, "lbs"),
  4594. name: "Laying",
  4595. image: {
  4596. source: "./media/characters/zaakira/laying.svg"
  4597. }
  4598. },
  4599. },
  4600. [
  4601. {
  4602. name: "Normal",
  4603. height: math.unit(12, "feet")
  4604. },
  4605. {
  4606. name: "Macro",
  4607. height: math.unit(279, "feet"),
  4608. default: true
  4609. }
  4610. ]
  4611. ))
  4612. characterMakers.push(() => makeCharacter(
  4613. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4614. {
  4615. femSfw: {
  4616. height: math.unit(8, "feet"),
  4617. weight: math.unit(350, "lb"),
  4618. name: "Fem",
  4619. image: {
  4620. source: "./media/characters/sigvald/fem-sfw.svg",
  4621. extra: 182 / 164,
  4622. bottom: 8.7 / 190.5
  4623. }
  4624. },
  4625. femNsfw: {
  4626. height: math.unit(8, "feet"),
  4627. weight: math.unit(350, "lb"),
  4628. name: "Fem (NSFW)",
  4629. image: {
  4630. source: "./media/characters/sigvald/fem-nsfw.svg",
  4631. extra: 182 / 164,
  4632. bottom: 8.7 / 190.5
  4633. }
  4634. },
  4635. maleNsfw: {
  4636. height: math.unit(8, "feet"),
  4637. weight: math.unit(350, "lb"),
  4638. name: "Male (NSFW)",
  4639. image: {
  4640. source: "./media/characters/sigvald/male-nsfw.svg",
  4641. extra: 182 / 164,
  4642. bottom: 8.7 / 190.5
  4643. }
  4644. },
  4645. hermNsfw: {
  4646. height: math.unit(8, "feet"),
  4647. weight: math.unit(350, "lb"),
  4648. name: "Herm (NSFW)",
  4649. image: {
  4650. source: "./media/characters/sigvald/herm-nsfw.svg",
  4651. extra: 182 / 164,
  4652. bottom: 8.7 / 190.5
  4653. }
  4654. },
  4655. dick: {
  4656. height: math.unit(2.36, "feet"),
  4657. name: "Dick",
  4658. image: {
  4659. source: "./media/characters/sigvald/dick.svg"
  4660. }
  4661. },
  4662. eye: {
  4663. height: math.unit(0.31, "feet"),
  4664. name: "Eye",
  4665. image: {
  4666. source: "./media/characters/sigvald/eye.svg"
  4667. }
  4668. },
  4669. mouth: {
  4670. height: math.unit(0.92, "feet"),
  4671. name: "Mouth",
  4672. image: {
  4673. source: "./media/characters/sigvald/mouth.svg"
  4674. }
  4675. },
  4676. paws: {
  4677. height: math.unit(2.2, "feet"),
  4678. name: "Paws",
  4679. image: {
  4680. source: "./media/characters/sigvald/paws.svg"
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Normal",
  4687. height: math.unit(8, "feet")
  4688. },
  4689. {
  4690. name: "Large",
  4691. height: math.unit(12, "feet")
  4692. },
  4693. {
  4694. name: "Larger",
  4695. height: math.unit(20, "feet")
  4696. },
  4697. {
  4698. name: "Macro",
  4699. height: math.unit(150, "feet")
  4700. },
  4701. {
  4702. name: "Macro+",
  4703. height: math.unit(200, "feet"),
  4704. default: true
  4705. },
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4710. {
  4711. side: {
  4712. height: math.unit(12, "feet"),
  4713. weight: math.unit(2000, "kg"),
  4714. name: "Side",
  4715. image: {
  4716. source: "./media/characters/scott/side.svg",
  4717. extra: 754 / 724,
  4718. bottom: 0.069
  4719. }
  4720. },
  4721. upright: {
  4722. height: math.unit(12, "feet"),
  4723. weight: math.unit(2000, "kg"),
  4724. name: "Upright",
  4725. image: {
  4726. source: "./media/characters/scott/upright.svg",
  4727. extra: 3881 / 3722,
  4728. bottom: 0.05
  4729. }
  4730. },
  4731. },
  4732. [
  4733. {
  4734. name: "Normal",
  4735. height: math.unit(12, "feet"),
  4736. default: true
  4737. },
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4742. {
  4743. side: {
  4744. height: math.unit(8, "meters"),
  4745. weight: math.unit(84755, "lbs"),
  4746. name: "Side",
  4747. image: {
  4748. source: "./media/characters/tobias/side.svg",
  4749. extra: 1474 / 1096,
  4750. bottom: 38.9 / 1513.1235
  4751. }
  4752. },
  4753. },
  4754. [
  4755. {
  4756. name: "Normal",
  4757. height: math.unit(8, "meters"),
  4758. default: true
  4759. },
  4760. ]
  4761. ))
  4762. characterMakers.push(() => makeCharacter(
  4763. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4764. {
  4765. front: {
  4766. height: math.unit(5.5, "feet"),
  4767. weight: math.unit(400, "lbs"),
  4768. name: "Front",
  4769. image: {
  4770. source: "./media/characters/kieran/front.svg",
  4771. extra: 2694 / 2364,
  4772. bottom: 217 / 2908
  4773. }
  4774. },
  4775. side: {
  4776. height: math.unit(5.5, "feet"),
  4777. weight: math.unit(400, "lbs"),
  4778. name: "Side",
  4779. image: {
  4780. source: "./media/characters/kieran/side.svg",
  4781. extra: 875 / 777,
  4782. bottom: 84.6 / 959
  4783. }
  4784. },
  4785. },
  4786. [
  4787. {
  4788. name: "Normal",
  4789. height: math.unit(5.5, "feet"),
  4790. default: true
  4791. },
  4792. ]
  4793. ))
  4794. characterMakers.push(() => makeCharacter(
  4795. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4796. {
  4797. side: {
  4798. height: math.unit(2, "meters"),
  4799. weight: math.unit(70, "kg"),
  4800. name: "Side",
  4801. image: {
  4802. source: "./media/characters/sanya/side.svg",
  4803. bottom: 0.02,
  4804. extra: 1.02
  4805. }
  4806. },
  4807. },
  4808. [
  4809. {
  4810. name: "Small",
  4811. height: math.unit(2, "meters")
  4812. },
  4813. {
  4814. name: "Normal",
  4815. height: math.unit(3, "meters")
  4816. },
  4817. {
  4818. name: "Macro",
  4819. height: math.unit(16, "meters"),
  4820. default: true
  4821. },
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(2, "meters"),
  4829. weight: math.unit(120, "kg"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/miranda/front.svg",
  4833. extra: 195 / 185,
  4834. bottom: 10.9 / 206.5
  4835. }
  4836. },
  4837. back: {
  4838. height: math.unit(2, "meters"),
  4839. weight: math.unit(120, "kg"),
  4840. name: "Back",
  4841. image: {
  4842. source: "./media/characters/miranda/back.svg",
  4843. extra: 201 / 193,
  4844. bottom: 2.3 / 203.7
  4845. }
  4846. },
  4847. },
  4848. [
  4849. {
  4850. name: "Normal",
  4851. height: math.unit(10, "feet"),
  4852. default: true
  4853. }
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "James", species: ["deer"], tags: ["anthro"] },
  4858. {
  4859. side: {
  4860. height: math.unit(2, "meters"),
  4861. weight: math.unit(100, "kg"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/james/front.svg",
  4865. extra: 10 / 8.5
  4866. }
  4867. },
  4868. },
  4869. [
  4870. {
  4871. name: "Normal",
  4872. height: math.unit(8.5, "feet"),
  4873. default: true
  4874. }
  4875. ]
  4876. ))
  4877. characterMakers.push(() => makeCharacter(
  4878. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4879. {
  4880. side: {
  4881. height: math.unit(9.5, "feet"),
  4882. weight: math.unit(2500, "lbs"),
  4883. name: "Side",
  4884. image: {
  4885. source: "./media/characters/heather/side.svg"
  4886. }
  4887. },
  4888. },
  4889. [
  4890. {
  4891. name: "Normal",
  4892. height: math.unit(9.5, "feet"),
  4893. default: true
  4894. }
  4895. ]
  4896. ))
  4897. characterMakers.push(() => makeCharacter(
  4898. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4899. {
  4900. side: {
  4901. height: math.unit(6.5, "feet"),
  4902. weight: math.unit(400, "lbs"),
  4903. name: "Side",
  4904. image: {
  4905. source: "./media/characters/lukas/side.svg",
  4906. extra: 7.25 / 6.5
  4907. }
  4908. },
  4909. },
  4910. [
  4911. {
  4912. name: "Normal",
  4913. height: math.unit(6.5, "feet"),
  4914. default: true
  4915. }
  4916. ]
  4917. ))
  4918. characterMakers.push(() => makeCharacter(
  4919. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4920. {
  4921. side: {
  4922. height: math.unit(5, "feet"),
  4923. weight: math.unit(3000, "lbs"),
  4924. name: "Side",
  4925. image: {
  4926. source: "./media/characters/louise/side.svg"
  4927. }
  4928. },
  4929. },
  4930. [
  4931. {
  4932. name: "Normal",
  4933. height: math.unit(5, "feet"),
  4934. default: true
  4935. }
  4936. ]
  4937. ))
  4938. characterMakers.push(() => makeCharacter(
  4939. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4940. {
  4941. side: {
  4942. height: math.unit(6, "feet"),
  4943. weight: math.unit(150, "lbs"),
  4944. name: "Side",
  4945. image: {
  4946. source: "./media/characters/ramona/side.svg"
  4947. }
  4948. },
  4949. },
  4950. [
  4951. {
  4952. name: "Normal",
  4953. height: math.unit(5.3, "meters"),
  4954. default: true
  4955. },
  4956. {
  4957. name: "Macro",
  4958. height: math.unit(20, "stories")
  4959. },
  4960. {
  4961. name: "Macro+",
  4962. height: math.unit(50, "stories")
  4963. },
  4964. ]
  4965. ))
  4966. characterMakers.push(() => makeCharacter(
  4967. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4968. {
  4969. standing: {
  4970. height: math.unit(5.75, "feet"),
  4971. weight: math.unit(160, "lbs"),
  4972. name: "Standing",
  4973. image: {
  4974. source: "./media/characters/deerpuff/standing.svg",
  4975. extra: 682 / 624
  4976. }
  4977. },
  4978. sitting: {
  4979. height: math.unit(5.75 / 1.79, "feet"),
  4980. weight: math.unit(160, "lbs"),
  4981. name: "Sitting",
  4982. image: {
  4983. source: "./media/characters/deerpuff/sitting.svg",
  4984. bottom: 44 / 400,
  4985. extra: 1
  4986. }
  4987. },
  4988. taurLaying: {
  4989. height: math.unit(6, "feet"),
  4990. weight: math.unit(400, "lbs"),
  4991. name: "Taur (Laying)",
  4992. image: {
  4993. source: "./media/characters/deerpuff/taur-laying.svg"
  4994. }
  4995. },
  4996. },
  4997. [
  4998. {
  4999. name: "Puffball",
  5000. height: math.unit(6, "inches")
  5001. },
  5002. {
  5003. name: "Normalpuff",
  5004. height: math.unit(5.75, "feet")
  5005. },
  5006. {
  5007. name: "Macropuff",
  5008. height: math.unit(1500, "feet"),
  5009. default: true
  5010. },
  5011. {
  5012. name: "Megapuff",
  5013. height: math.unit(500, "miles")
  5014. },
  5015. {
  5016. name: "Gigapuff",
  5017. height: math.unit(250000, "miles")
  5018. },
  5019. {
  5020. name: "Omegapuff",
  5021. height: math.unit(1000, "lightyears")
  5022. },
  5023. ]
  5024. ))
  5025. characterMakers.push(() => makeCharacter(
  5026. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5027. {
  5028. stomping: {
  5029. height: math.unit(6, "feet"),
  5030. weight: math.unit(170, "lbs"),
  5031. name: "Stomping",
  5032. image: {
  5033. source: "./media/characters/vivian/stomping.svg"
  5034. }
  5035. },
  5036. sitting: {
  5037. height: math.unit(6 / 1.75, "feet"),
  5038. weight: math.unit(170, "lbs"),
  5039. name: "Sitting",
  5040. image: {
  5041. source: "./media/characters/vivian/sitting.svg",
  5042. bottom: 1 / 6.4,
  5043. extra: 1,
  5044. }
  5045. },
  5046. },
  5047. [
  5048. {
  5049. name: "Normal",
  5050. height: math.unit(7, "feet"),
  5051. default: true
  5052. },
  5053. {
  5054. name: "Macro",
  5055. height: math.unit(10, "stories")
  5056. },
  5057. {
  5058. name: "Macro+",
  5059. height: math.unit(30, "stories")
  5060. },
  5061. {
  5062. name: "Megamacro",
  5063. height: math.unit(10, "miles")
  5064. },
  5065. {
  5066. name: "Megamacro+",
  5067. height: math.unit(2750000, "meters")
  5068. },
  5069. ]
  5070. ))
  5071. characterMakers.push(() => makeCharacter(
  5072. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5073. {
  5074. front: {
  5075. height: math.unit(6, "feet"),
  5076. weight: math.unit(160, "lbs"),
  5077. name: "Front",
  5078. image: {
  5079. source: "./media/characters/prince/front.svg",
  5080. extra: 3400 / 3000
  5081. }
  5082. },
  5083. jumping: {
  5084. height: math.unit(6, "feet"),
  5085. weight: math.unit(160, "lbs"),
  5086. name: "Jumping",
  5087. image: {
  5088. source: "./media/characters/prince/jump.svg",
  5089. extra: 2555 / 2134
  5090. }
  5091. },
  5092. },
  5093. [
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(7.75, "feet"),
  5097. default: true
  5098. },
  5099. {
  5100. name: "Not cute",
  5101. height: math.unit(17, "feet")
  5102. },
  5103. {
  5104. name: "I said NOT",
  5105. height: math.unit(91, "feet")
  5106. },
  5107. {
  5108. name: "Please stop",
  5109. height: math.unit(560, "feet")
  5110. },
  5111. {
  5112. name: "What have you done",
  5113. height: math.unit(2200, "feet")
  5114. },
  5115. {
  5116. name: "Deer God",
  5117. height: math.unit(3.6, "miles")
  5118. },
  5119. ]
  5120. ))
  5121. characterMakers.push(() => makeCharacter(
  5122. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5123. {
  5124. standing: {
  5125. height: math.unit(6, "feet"),
  5126. weight: math.unit(300, "lbs"),
  5127. name: "Standing",
  5128. image: {
  5129. source: "./media/characters/psymon/standing.svg",
  5130. extra: 1888 / 1810,
  5131. bottom: 0.05
  5132. }
  5133. },
  5134. slithering: {
  5135. height: math.unit(6, "feet"),
  5136. weight: math.unit(300, "lbs"),
  5137. name: "Slithering",
  5138. image: {
  5139. source: "./media/characters/psymon/slithering.svg",
  5140. extra: 1330 / 1224
  5141. }
  5142. },
  5143. slitheringAlt: {
  5144. height: math.unit(6, "feet"),
  5145. weight: math.unit(300, "lbs"),
  5146. name: "Slithering (Alt)",
  5147. image: {
  5148. source: "./media/characters/psymon/slithering-alt.svg",
  5149. extra: 1330 / 1224
  5150. }
  5151. },
  5152. },
  5153. [
  5154. {
  5155. name: "Normal",
  5156. height: math.unit(11.25, "feet"),
  5157. default: true
  5158. },
  5159. {
  5160. name: "Large",
  5161. height: math.unit(27, "feet")
  5162. },
  5163. {
  5164. name: "Giant",
  5165. height: math.unit(87, "feet")
  5166. },
  5167. {
  5168. name: "Macro",
  5169. height: math.unit(365, "feet")
  5170. },
  5171. {
  5172. name: "Megamacro",
  5173. height: math.unit(3, "miles")
  5174. },
  5175. {
  5176. name: "World Serpent",
  5177. height: math.unit(8000, "miles")
  5178. },
  5179. ]
  5180. ))
  5181. characterMakers.push(() => makeCharacter(
  5182. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5183. {
  5184. front: {
  5185. height: math.unit(6, "feet"),
  5186. weight: math.unit(180, "lbs"),
  5187. name: "Front",
  5188. image: {
  5189. source: "./media/characters/daimos/front.svg",
  5190. extra: 4160 / 3897,
  5191. bottom: 0.021
  5192. }
  5193. }
  5194. },
  5195. [
  5196. {
  5197. name: "Normal",
  5198. height: math.unit(8, "feet"),
  5199. default: true
  5200. },
  5201. {
  5202. name: "Big Dog",
  5203. height: math.unit(22, "feet")
  5204. },
  5205. {
  5206. name: "Macro",
  5207. height: math.unit(127, "feet")
  5208. },
  5209. {
  5210. name: "Megamacro",
  5211. height: math.unit(3600, "feet")
  5212. },
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5217. {
  5218. side: {
  5219. height: math.unit(6, "feet"),
  5220. weight: math.unit(180, "lbs"),
  5221. name: "Side",
  5222. image: {
  5223. source: "./media/characters/blake/side.svg",
  5224. extra: 1212 / 1120,
  5225. bottom: 0.05
  5226. }
  5227. },
  5228. crouched: {
  5229. height: math.unit(6 * 0.57, "feet"),
  5230. weight: math.unit(180, "lbs"),
  5231. name: "Crouched",
  5232. image: {
  5233. source: "./media/characters/blake/crouched.svg",
  5234. extra: 840 / 587,
  5235. bottom: 0.04
  5236. }
  5237. },
  5238. bent: {
  5239. height: math.unit(6 * 0.75, "feet"),
  5240. weight: math.unit(180, "lbs"),
  5241. name: "Bent",
  5242. image: {
  5243. source: "./media/characters/blake/bent.svg",
  5244. extra: 592 / 544,
  5245. bottom: 0.035
  5246. }
  5247. },
  5248. },
  5249. [
  5250. {
  5251. name: "Normal",
  5252. height: math.unit(8 + 1 / 6, "feet"),
  5253. default: true
  5254. },
  5255. {
  5256. name: "Big Backside",
  5257. height: math.unit(37, "feet")
  5258. },
  5259. {
  5260. name: "Subway Shredder",
  5261. height: math.unit(72, "feet")
  5262. },
  5263. {
  5264. name: "City Carver",
  5265. height: math.unit(1675, "feet")
  5266. },
  5267. {
  5268. name: "Tectonic Tweaker",
  5269. height: math.unit(2300, "miles")
  5270. },
  5271. ]
  5272. ))
  5273. characterMakers.push(() => makeCharacter(
  5274. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5275. {
  5276. front: {
  5277. height: math.unit(6, "feet"),
  5278. weight: math.unit(180, "lbs"),
  5279. name: "Front",
  5280. image: {
  5281. source: "./media/characters/guisetto/front.svg",
  5282. extra: 856 / 817,
  5283. bottom: 0.06
  5284. }
  5285. },
  5286. airborne: {
  5287. height: math.unit(6, "feet"),
  5288. weight: math.unit(180, "lbs"),
  5289. name: "Airborne",
  5290. image: {
  5291. source: "./media/characters/guisetto/airborne.svg",
  5292. extra: 584 / 525
  5293. }
  5294. },
  5295. },
  5296. [
  5297. {
  5298. name: "Normal",
  5299. height: math.unit(10 + 11 / 12, "feet"),
  5300. default: true
  5301. },
  5302. {
  5303. name: "Large",
  5304. height: math.unit(35, "feet")
  5305. },
  5306. {
  5307. name: "Macro",
  5308. height: math.unit(475, "feet")
  5309. },
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5314. {
  5315. front: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(180, "lbs"),
  5318. name: "Front",
  5319. image: {
  5320. source: "./media/characters/luxor/front.svg",
  5321. extra: 2940 / 2152
  5322. }
  5323. },
  5324. back: {
  5325. height: math.unit(6, "feet"),
  5326. weight: math.unit(180, "lbs"),
  5327. name: "Back",
  5328. image: {
  5329. source: "./media/characters/luxor/back.svg",
  5330. extra: 1083 / 960
  5331. }
  5332. },
  5333. },
  5334. [
  5335. {
  5336. name: "Normal",
  5337. height: math.unit(5 + 5 / 6, "feet"),
  5338. default: true
  5339. },
  5340. {
  5341. name: "Lamp",
  5342. height: math.unit(50, "feet")
  5343. },
  5344. {
  5345. name: "Lämp",
  5346. height: math.unit(300, "feet")
  5347. },
  5348. {
  5349. name: "The sun is a lamp",
  5350. height: math.unit(250000, "miles")
  5351. },
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5356. {
  5357. front: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(50, "lbs"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/huoyan/front.svg"
  5363. }
  5364. },
  5365. side: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(180, "lbs"),
  5368. name: "Side",
  5369. image: {
  5370. source: "./media/characters/huoyan/side.svg"
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "Chef",
  5377. height: math.unit(9, "feet")
  5378. },
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(65, "feet"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "Macro",
  5386. height: math.unit(780, "feet")
  5387. },
  5388. {
  5389. name: "Flaming Mountain",
  5390. height: math.unit(4.8, "miles")
  5391. },
  5392. {
  5393. name: "Celestial",
  5394. height: math.unit(765000, "miles")
  5395. },
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5400. {
  5401. front: {
  5402. height: math.unit(5 + 3 / 4, "feet"),
  5403. weight: math.unit(120, "lbs"),
  5404. name: "Front",
  5405. image: {
  5406. source: "./media/characters/tails/front.svg"
  5407. }
  5408. }
  5409. },
  5410. [
  5411. {
  5412. name: "Normal",
  5413. height: math.unit(5 + 3 / 4, "feet"),
  5414. default: true
  5415. }
  5416. ]
  5417. ))
  5418. characterMakers.push(() => makeCharacter(
  5419. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5420. {
  5421. front: {
  5422. height: math.unit(4, "feet"),
  5423. weight: math.unit(50, "lbs"),
  5424. name: "Front",
  5425. image: {
  5426. source: "./media/characters/rainy/front.svg"
  5427. }
  5428. }
  5429. },
  5430. [
  5431. {
  5432. name: "Macro",
  5433. height: math.unit(800, "feet"),
  5434. default: true
  5435. }
  5436. ]
  5437. ))
  5438. characterMakers.push(() => makeCharacter(
  5439. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5440. {
  5441. front: {
  5442. height: math.unit(6, "feet"),
  5443. weight: math.unit(150, "lbs"),
  5444. name: "Front",
  5445. image: {
  5446. source: "./media/characters/rainier/front.svg"
  5447. }
  5448. }
  5449. },
  5450. [
  5451. {
  5452. name: "Micro",
  5453. height: math.unit(2, "mm"),
  5454. default: true
  5455. }
  5456. ]
  5457. ))
  5458. characterMakers.push(() => makeCharacter(
  5459. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5460. {
  5461. front: {
  5462. height: math.unit(6, "feet"),
  5463. weight: math.unit(180, "lbs"),
  5464. name: "Front",
  5465. image: {
  5466. source: "./media/characters/andy/front.svg"
  5467. }
  5468. }
  5469. },
  5470. [
  5471. {
  5472. name: "Normal",
  5473. height: math.unit(8, "feet"),
  5474. default: true
  5475. },
  5476. {
  5477. name: "Macro",
  5478. height: math.unit(1000, "feet")
  5479. },
  5480. {
  5481. name: "Megamacro",
  5482. height: math.unit(5, "miles")
  5483. },
  5484. {
  5485. name: "Gigamacro",
  5486. height: math.unit(5000, "miles")
  5487. },
  5488. ]
  5489. ))
  5490. characterMakers.push(() => makeCharacter(
  5491. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5492. {
  5493. front: {
  5494. height: math.unit(6, "feet"),
  5495. weight: math.unit(210, "lbs"),
  5496. name: "Front",
  5497. image: {
  5498. source: "./media/characters/cimmaron/front-sfw.svg",
  5499. extra: 701 / 676,
  5500. bottom: 0.046
  5501. }
  5502. },
  5503. back: {
  5504. height: math.unit(6, "feet"),
  5505. weight: math.unit(210, "lbs"),
  5506. name: "Back",
  5507. image: {
  5508. source: "./media/characters/cimmaron/back-sfw.svg",
  5509. extra: 701 / 676,
  5510. bottom: 0.046
  5511. }
  5512. },
  5513. frontNsfw: {
  5514. height: math.unit(6, "feet"),
  5515. weight: math.unit(210, "lbs"),
  5516. name: "Front (NSFW)",
  5517. image: {
  5518. source: "./media/characters/cimmaron/front-nsfw.svg",
  5519. extra: 701 / 676,
  5520. bottom: 0.046
  5521. }
  5522. },
  5523. backNsfw: {
  5524. height: math.unit(6, "feet"),
  5525. weight: math.unit(210, "lbs"),
  5526. name: "Back (NSFW)",
  5527. image: {
  5528. source: "./media/characters/cimmaron/back-nsfw.svg",
  5529. extra: 701 / 676,
  5530. bottom: 0.046
  5531. }
  5532. },
  5533. dick: {
  5534. height: math.unit(1.714, "feet"),
  5535. name: "Dick",
  5536. image: {
  5537. source: "./media/characters/cimmaron/dick.svg"
  5538. }
  5539. },
  5540. },
  5541. [
  5542. {
  5543. name: "Normal",
  5544. height: math.unit(6, "feet"),
  5545. default: true
  5546. },
  5547. {
  5548. name: "Macro Mayor",
  5549. height: math.unit(350, "meters")
  5550. },
  5551. ]
  5552. ))
  5553. characterMakers.push(() => makeCharacter(
  5554. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5555. {
  5556. front: {
  5557. height: math.unit(6, "feet"),
  5558. weight: math.unit(200, "lbs"),
  5559. name: "Front",
  5560. image: {
  5561. source: "./media/characters/akari/front.svg",
  5562. extra: 962 / 901,
  5563. bottom: 0.04
  5564. }
  5565. }
  5566. },
  5567. [
  5568. {
  5569. name: "Micro",
  5570. height: math.unit(5, "inches"),
  5571. default: true
  5572. },
  5573. {
  5574. name: "Normal",
  5575. height: math.unit(7, "feet")
  5576. },
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5581. {
  5582. front: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(140, "lbs"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/cynosura/front.svg",
  5588. extra: 896 / 847
  5589. }
  5590. },
  5591. back: {
  5592. height: math.unit(6, "feet"),
  5593. weight: math.unit(140, "lbs"),
  5594. name: "Back",
  5595. image: {
  5596. source: "./media/characters/cynosura/back.svg",
  5597. extra: 1365 / 1250
  5598. }
  5599. },
  5600. },
  5601. [
  5602. {
  5603. name: "Micro",
  5604. height: math.unit(4, "inches")
  5605. },
  5606. {
  5607. name: "Normal",
  5608. height: math.unit(5.75, "feet"),
  5609. default: true
  5610. },
  5611. {
  5612. name: "Tall",
  5613. height: math.unit(10, "feet")
  5614. },
  5615. {
  5616. name: "Big",
  5617. height: math.unit(20, "feet")
  5618. },
  5619. {
  5620. name: "Macro",
  5621. height: math.unit(50, "feet")
  5622. },
  5623. ]
  5624. ))
  5625. characterMakers.push(() => makeCharacter(
  5626. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5627. {
  5628. front: {
  5629. height: math.unit(13 + 2/12, "feet"),
  5630. weight: math.unit(800, "kg"),
  5631. name: "Front",
  5632. image: {
  5633. source: "./media/characters/gin/front.svg",
  5634. extra: 1312/1191,
  5635. bottom: 45/1357
  5636. }
  5637. },
  5638. mouth: {
  5639. height: math.unit(2.39 * 1.8, "feet"),
  5640. name: "Mouth",
  5641. image: {
  5642. source: "./media/characters/gin/mouth.svg"
  5643. }
  5644. },
  5645. hand: {
  5646. height: math.unit(1.57 * 2.19, "feet"),
  5647. name: "Hand",
  5648. image: {
  5649. source: "./media/characters/gin/hand.svg"
  5650. }
  5651. },
  5652. foot: {
  5653. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5654. name: "Foot",
  5655. image: {
  5656. source: "./media/characters/gin/foot.svg"
  5657. }
  5658. },
  5659. sole: {
  5660. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5661. name: "Sole",
  5662. image: {
  5663. source: "./media/characters/gin/sole.svg"
  5664. }
  5665. },
  5666. },
  5667. [
  5668. {
  5669. name: "Very Small",
  5670. height: math.unit(13 + 2 / 12, "feet")
  5671. },
  5672. {
  5673. name: "Micro",
  5674. height: math.unit(600, "miles")
  5675. },
  5676. {
  5677. name: "Regular",
  5678. height: math.unit(20, "earths"),
  5679. default: true
  5680. },
  5681. {
  5682. name: "Macro",
  5683. height: math.unit(2.2, "solarradii")
  5684. },
  5685. {
  5686. name: "Teramacro",
  5687. height: math.unit(1.2, "galaxies")
  5688. },
  5689. {
  5690. name: "Omegamacro",
  5691. height: math.unit(200, "universes")
  5692. },
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5697. {
  5698. front: {
  5699. height: math.unit(6 + 1 / 6, "feet"),
  5700. weight: math.unit(178, "lbs"),
  5701. name: "Front",
  5702. image: {
  5703. source: "./media/characters/guy/front.svg"
  5704. }
  5705. }
  5706. },
  5707. [
  5708. {
  5709. name: "Normal",
  5710. height: math.unit(6 + 1 / 6, "feet"),
  5711. default: true
  5712. },
  5713. {
  5714. name: "Large",
  5715. height: math.unit(25 + 7 / 12, "feet")
  5716. },
  5717. {
  5718. name: "Macro",
  5719. height: math.unit(60 + 9 / 12, "feet")
  5720. },
  5721. {
  5722. name: "Macro+",
  5723. height: math.unit(246, "feet")
  5724. },
  5725. {
  5726. name: "Macro++",
  5727. height: math.unit(878, "feet")
  5728. }
  5729. ]
  5730. ))
  5731. characterMakers.push(() => makeCharacter(
  5732. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5733. {
  5734. front: {
  5735. height: math.unit(9, "feet"),
  5736. weight: math.unit(800, "lbs"),
  5737. name: "Front",
  5738. image: {
  5739. source: "./media/characters/tiberius/front.svg",
  5740. extra: 2295 / 2071
  5741. }
  5742. },
  5743. back: {
  5744. height: math.unit(9, "feet"),
  5745. weight: math.unit(800, "lbs"),
  5746. name: "Back",
  5747. image: {
  5748. source: "./media/characters/tiberius/back.svg",
  5749. extra: 2373 / 2160
  5750. }
  5751. },
  5752. },
  5753. [
  5754. {
  5755. name: "Normal",
  5756. height: math.unit(9, "feet"),
  5757. default: true
  5758. }
  5759. ]
  5760. ))
  5761. characterMakers.push(() => makeCharacter(
  5762. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5763. {
  5764. front: {
  5765. height: math.unit(6, "feet"),
  5766. weight: math.unit(600, "lbs"),
  5767. name: "Front",
  5768. image: {
  5769. source: "./media/characters/surgo/front.svg",
  5770. extra: 3591 / 2227
  5771. }
  5772. },
  5773. back: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(600, "lbs"),
  5776. name: "Back",
  5777. image: {
  5778. source: "./media/characters/surgo/back.svg",
  5779. extra: 3557 / 2228
  5780. }
  5781. },
  5782. laying: {
  5783. height: math.unit(6 * 0.85, "feet"),
  5784. weight: math.unit(600, "lbs"),
  5785. name: "Laying",
  5786. image: {
  5787. source: "./media/characters/surgo/laying.svg"
  5788. }
  5789. },
  5790. },
  5791. [
  5792. {
  5793. name: "Normal",
  5794. height: math.unit(6, "feet"),
  5795. default: true
  5796. }
  5797. ]
  5798. ))
  5799. characterMakers.push(() => makeCharacter(
  5800. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5801. {
  5802. side: {
  5803. height: math.unit(6, "feet"),
  5804. weight: math.unit(150, "lbs"),
  5805. name: "Side",
  5806. image: {
  5807. source: "./media/characters/cibus/side.svg",
  5808. extra: 800 / 400
  5809. }
  5810. },
  5811. },
  5812. [
  5813. {
  5814. name: "Normal",
  5815. height: math.unit(6, "feet"),
  5816. default: true
  5817. }
  5818. ]
  5819. ))
  5820. characterMakers.push(() => makeCharacter(
  5821. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5822. {
  5823. front: {
  5824. height: math.unit(6, "feet"),
  5825. weight: math.unit(240, "lbs"),
  5826. name: "Front",
  5827. image: {
  5828. source: "./media/characters/nibbles/front.svg"
  5829. }
  5830. },
  5831. side: {
  5832. height: math.unit(6, "feet"),
  5833. weight: math.unit(240, "lbs"),
  5834. name: "Side",
  5835. image: {
  5836. source: "./media/characters/nibbles/side.svg"
  5837. }
  5838. },
  5839. },
  5840. [
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(9, "feet"),
  5844. default: true
  5845. }
  5846. ]
  5847. ))
  5848. characterMakers.push(() => makeCharacter(
  5849. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5850. {
  5851. side: {
  5852. height: math.unit(5 + 1 / 6, "feet"),
  5853. weight: math.unit(130, "lbs"),
  5854. name: "Side",
  5855. image: {
  5856. source: "./media/characters/rikky/side.svg",
  5857. extra: 851 / 801
  5858. }
  5859. },
  5860. },
  5861. [
  5862. {
  5863. name: "Normal",
  5864. height: math.unit(5 + 1 / 6, "feet")
  5865. },
  5866. {
  5867. name: "Macro",
  5868. height: math.unit(152, "feet"),
  5869. default: true
  5870. },
  5871. {
  5872. name: "Megamacro",
  5873. height: math.unit(7, "miles")
  5874. }
  5875. ]
  5876. ))
  5877. characterMakers.push(() => makeCharacter(
  5878. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5879. {
  5880. side: {
  5881. height: math.unit(370, "cm"),
  5882. weight: math.unit(350, "lbs"),
  5883. name: "Side",
  5884. image: {
  5885. source: "./media/characters/malfressa/side.svg"
  5886. }
  5887. },
  5888. walking: {
  5889. height: math.unit(370, "cm"),
  5890. weight: math.unit(350, "lbs"),
  5891. name: "Walking",
  5892. image: {
  5893. source: "./media/characters/malfressa/walking.svg"
  5894. }
  5895. },
  5896. feral: {
  5897. height: math.unit(2500, "cm"),
  5898. weight: math.unit(100000, "lbs"),
  5899. name: "Feral",
  5900. image: {
  5901. source: "./media/characters/malfressa/feral.svg",
  5902. extra: 2108 / 837,
  5903. bottom: 0.02
  5904. }
  5905. },
  5906. },
  5907. [
  5908. {
  5909. name: "Normal",
  5910. height: math.unit(370, "cm")
  5911. },
  5912. {
  5913. name: "Macro",
  5914. height: math.unit(300, "meters"),
  5915. default: true
  5916. }
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(60, "kg"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/jaro/front.svg"
  5928. }
  5929. },
  5930. back: {
  5931. height: math.unit(6, "feet"),
  5932. weight: math.unit(60, "kg"),
  5933. name: "Back",
  5934. image: {
  5935. source: "./media/characters/jaro/back.svg"
  5936. }
  5937. },
  5938. },
  5939. [
  5940. {
  5941. name: "Micro",
  5942. height: math.unit(7, "inches")
  5943. },
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(5.5, "feet"),
  5947. default: true
  5948. },
  5949. {
  5950. name: "Minimacro",
  5951. height: math.unit(20, "feet")
  5952. },
  5953. {
  5954. name: "Macro",
  5955. height: math.unit(200, "meters")
  5956. }
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5961. {
  5962. front: {
  5963. height: math.unit(6, "feet"),
  5964. weight: math.unit(195, "lb"),
  5965. name: "Front",
  5966. image: {
  5967. source: "./media/characters/rogue/front.svg"
  5968. }
  5969. },
  5970. },
  5971. [
  5972. {
  5973. name: "Macro",
  5974. height: math.unit(90, "feet"),
  5975. default: true
  5976. },
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5981. {
  5982. front: {
  5983. height: math.unit(5 + 8 / 12, "feet"),
  5984. weight: math.unit(140, "lb"),
  5985. name: "Front",
  5986. image: {
  5987. source: "./media/characters/piper/front.svg",
  5988. extra: 3948/3655,
  5989. bottom: 0/3948
  5990. }
  5991. },
  5992. },
  5993. [
  5994. {
  5995. name: "Micro",
  5996. height: math.unit(2, "inches")
  5997. },
  5998. {
  5999. name: "Normal",
  6000. height: math.unit(5 + 8 / 12, "feet")
  6001. },
  6002. {
  6003. name: "Macro",
  6004. height: math.unit(250, "feet"),
  6005. default: true
  6006. },
  6007. {
  6008. name: "Megamacro",
  6009. height: math.unit(7, "miles")
  6010. },
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6015. {
  6016. front: {
  6017. height: math.unit(6, "feet"),
  6018. weight: math.unit(220, "lb"),
  6019. name: "Front",
  6020. image: {
  6021. source: "./media/characters/gemini/front.svg"
  6022. }
  6023. },
  6024. back: {
  6025. height: math.unit(6, "feet"),
  6026. weight: math.unit(220, "lb"),
  6027. name: "Back",
  6028. image: {
  6029. source: "./media/characters/gemini/back.svg"
  6030. }
  6031. },
  6032. kneeling: {
  6033. height: math.unit(6 / 1.5, "feet"),
  6034. weight: math.unit(220, "lb"),
  6035. name: "Kneeling",
  6036. image: {
  6037. source: "./media/characters/gemini/kneeling.svg",
  6038. bottom: 0.02
  6039. }
  6040. },
  6041. },
  6042. [
  6043. {
  6044. name: "Macro",
  6045. height: math.unit(300, "meters"),
  6046. default: true
  6047. },
  6048. {
  6049. name: "Megamacro",
  6050. height: math.unit(6900, "meters")
  6051. },
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6056. {
  6057. anthro: {
  6058. height: math.unit(2.35, "meters"),
  6059. weight: math.unit(73, "kg"),
  6060. name: "Anthro",
  6061. image: {
  6062. source: "./media/characters/alicia/anthro.svg",
  6063. extra: 2571 / 2385,
  6064. bottom: 75 / 2648
  6065. }
  6066. },
  6067. paw: {
  6068. height: math.unit(1.32, "feet"),
  6069. name: "Paw",
  6070. image: {
  6071. source: "./media/characters/alicia/paw.svg"
  6072. }
  6073. },
  6074. feral: {
  6075. height: math.unit(1.69, "meters"),
  6076. weight: math.unit(73, "kg"),
  6077. name: "Feral",
  6078. image: {
  6079. source: "./media/characters/alicia/feral.svg",
  6080. extra: 2123 / 1715,
  6081. bottom: 222 / 2349
  6082. }
  6083. },
  6084. },
  6085. [
  6086. {
  6087. name: "Normal",
  6088. height: math.unit(2.35, "meters")
  6089. },
  6090. {
  6091. name: "Macro",
  6092. height: math.unit(60, "meters"),
  6093. default: true
  6094. },
  6095. {
  6096. name: "Megamacro",
  6097. height: math.unit(10000, "kilometers")
  6098. },
  6099. ]
  6100. ))
  6101. characterMakers.push(() => makeCharacter(
  6102. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6103. {
  6104. front: {
  6105. height: math.unit(7, "feet"),
  6106. weight: math.unit(250, "lbs"),
  6107. name: "Front",
  6108. image: {
  6109. source: "./media/characters/archy/front.svg"
  6110. }
  6111. }
  6112. },
  6113. [
  6114. {
  6115. name: "Micro",
  6116. height: math.unit(1, "inch")
  6117. },
  6118. {
  6119. name: "Shorty",
  6120. height: math.unit(5, "feet")
  6121. },
  6122. {
  6123. name: "Normal",
  6124. height: math.unit(7, "feet")
  6125. },
  6126. {
  6127. name: "Macro",
  6128. height: math.unit(600, "meters"),
  6129. default: true
  6130. },
  6131. {
  6132. name: "Megamacro",
  6133. height: math.unit(1, "mile")
  6134. },
  6135. ]
  6136. ))
  6137. characterMakers.push(() => makeCharacter(
  6138. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6139. {
  6140. front: {
  6141. height: math.unit(1.65, "meters"),
  6142. weight: math.unit(74, "kg"),
  6143. name: "Front",
  6144. image: {
  6145. source: "./media/characters/berri/front.svg",
  6146. extra: 857 / 837,
  6147. bottom: 18 / 877
  6148. }
  6149. },
  6150. bum: {
  6151. height: math.unit(1.46, "feet"),
  6152. name: "Bum",
  6153. image: {
  6154. source: "./media/characters/berri/bum.svg"
  6155. }
  6156. },
  6157. mouth: {
  6158. height: math.unit(0.44, "feet"),
  6159. name: "Mouth",
  6160. image: {
  6161. source: "./media/characters/berri/mouth.svg"
  6162. }
  6163. },
  6164. paw: {
  6165. height: math.unit(0.826, "feet"),
  6166. name: "Paw",
  6167. image: {
  6168. source: "./media/characters/berri/paw.svg"
  6169. }
  6170. },
  6171. },
  6172. [
  6173. {
  6174. name: "Normal",
  6175. height: math.unit(1.65, "meters")
  6176. },
  6177. {
  6178. name: "Macro",
  6179. height: math.unit(60, "m"),
  6180. default: true
  6181. },
  6182. {
  6183. name: "Megamacro",
  6184. height: math.unit(9.213, "km")
  6185. },
  6186. {
  6187. name: "Planet Eater",
  6188. height: math.unit(489, "megameters")
  6189. },
  6190. {
  6191. name: "Teramacro",
  6192. height: math.unit(2471635000000, "meters")
  6193. },
  6194. {
  6195. name: "Examacro",
  6196. height: math.unit(8.0624e+26, "meters")
  6197. }
  6198. ]
  6199. ))
  6200. characterMakers.push(() => makeCharacter(
  6201. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6202. {
  6203. front: {
  6204. height: math.unit(1.72, "meters"),
  6205. weight: math.unit(68, "kg"),
  6206. name: "Front",
  6207. image: {
  6208. source: "./media/characters/lexi/front.svg"
  6209. }
  6210. }
  6211. },
  6212. [
  6213. {
  6214. name: "Very Smol",
  6215. height: math.unit(10, "mm")
  6216. },
  6217. {
  6218. name: "Micro",
  6219. height: math.unit(6.8, "cm"),
  6220. default: true
  6221. },
  6222. {
  6223. name: "Normal",
  6224. height: math.unit(1.72, "m")
  6225. }
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(1.69, "meters"),
  6233. weight: math.unit(68, "kg"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/martin/front.svg",
  6237. extra: 596 / 581
  6238. }
  6239. }
  6240. },
  6241. [
  6242. {
  6243. name: "Micro",
  6244. height: math.unit(6.85, "cm"),
  6245. default: true
  6246. },
  6247. {
  6248. name: "Normal",
  6249. height: math.unit(1.69, "m")
  6250. }
  6251. ]
  6252. ))
  6253. characterMakers.push(() => makeCharacter(
  6254. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6255. {
  6256. front: {
  6257. height: math.unit(1.69, "meters"),
  6258. weight: math.unit(68, "kg"),
  6259. name: "Front",
  6260. image: {
  6261. source: "./media/characters/juno/front.svg"
  6262. }
  6263. }
  6264. },
  6265. [
  6266. {
  6267. name: "Micro",
  6268. height: math.unit(7, "cm")
  6269. },
  6270. {
  6271. name: "Normal",
  6272. height: math.unit(1.89, "m")
  6273. },
  6274. {
  6275. name: "Macro",
  6276. height: math.unit(353, "meters"),
  6277. default: true
  6278. }
  6279. ]
  6280. ))
  6281. characterMakers.push(() => makeCharacter(
  6282. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6283. {
  6284. front: {
  6285. height: math.unit(1.93, "meters"),
  6286. weight: math.unit(83, "kg"),
  6287. name: "Front",
  6288. image: {
  6289. source: "./media/characters/samantha/front.svg"
  6290. }
  6291. },
  6292. frontClothed: {
  6293. height: math.unit(1.93, "meters"),
  6294. weight: math.unit(83, "kg"),
  6295. name: "Front (Clothed)",
  6296. image: {
  6297. source: "./media/characters/samantha/front-clothed.svg"
  6298. }
  6299. },
  6300. back: {
  6301. height: math.unit(1.93, "meters"),
  6302. weight: math.unit(83, "kg"),
  6303. name: "Back",
  6304. image: {
  6305. source: "./media/characters/samantha/back.svg"
  6306. }
  6307. },
  6308. },
  6309. [
  6310. {
  6311. name: "Normal",
  6312. height: math.unit(1.93, "m")
  6313. },
  6314. {
  6315. name: "Macro",
  6316. height: math.unit(74, "meters"),
  6317. default: true
  6318. },
  6319. {
  6320. name: "Macro+",
  6321. height: math.unit(223, "meters"),
  6322. },
  6323. {
  6324. name: "Megamacro",
  6325. height: math.unit(8381, "meters"),
  6326. },
  6327. {
  6328. name: "Megamacro+",
  6329. height: math.unit(12000, "kilometers")
  6330. },
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6335. {
  6336. front: {
  6337. height: math.unit(1.92, "meters"),
  6338. weight: math.unit(80, "kg"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/dr-clay/front.svg"
  6342. }
  6343. },
  6344. frontClothed: {
  6345. height: math.unit(1.92, "meters"),
  6346. weight: math.unit(80, "kg"),
  6347. name: "Front (Clothed)",
  6348. image: {
  6349. source: "./media/characters/dr-clay/front-clothed.svg"
  6350. }
  6351. }
  6352. },
  6353. [
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(1.92, "m")
  6357. },
  6358. {
  6359. name: "Macro",
  6360. height: math.unit(214, "meters"),
  6361. default: true
  6362. },
  6363. {
  6364. name: "Macro+",
  6365. height: math.unit(12.237, "meters"),
  6366. },
  6367. {
  6368. name: "Megamacro",
  6369. height: math.unit(557, "megameters"),
  6370. },
  6371. {
  6372. name: "Unimaginable",
  6373. height: math.unit(120e9, "lightyears")
  6374. },
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6379. {
  6380. front: {
  6381. height: math.unit(2, "meters"),
  6382. weight: math.unit(80, "kg"),
  6383. name: "Front",
  6384. image: {
  6385. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6386. }
  6387. }
  6388. },
  6389. [
  6390. {
  6391. name: "Teramacro",
  6392. height: math.unit(500000, "lightyears"),
  6393. default: true
  6394. },
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6399. {
  6400. front: {
  6401. height: math.unit(2, "meters"),
  6402. weight: math.unit(150, "kg"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/vemus/front.svg",
  6406. extra: 1074/936,
  6407. bottom: 23/1097
  6408. }
  6409. }
  6410. },
  6411. [
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(3.75, "meters"),
  6415. default: true
  6416. },
  6417. {
  6418. name: "Big",
  6419. height: math.unit(8, "meters")
  6420. },
  6421. {
  6422. name: "Macro",
  6423. height: math.unit(100, "meters")
  6424. },
  6425. {
  6426. name: "Macro+",
  6427. height: math.unit(1500, "meters")
  6428. },
  6429. {
  6430. name: "Stellar",
  6431. height: math.unit(14e8, "meters")
  6432. },
  6433. ]
  6434. ))
  6435. characterMakers.push(() => makeCharacter(
  6436. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6437. {
  6438. front: {
  6439. height: math.unit(2, "meters"),
  6440. weight: math.unit(70, "kg"),
  6441. name: "Front",
  6442. image: {
  6443. source: "./media/characters/beherit/front.svg",
  6444. extra: 1408 / 1242
  6445. }
  6446. }
  6447. },
  6448. [
  6449. {
  6450. name: "Normal",
  6451. height: math.unit(6, "feet")
  6452. },
  6453. {
  6454. name: "Lorg",
  6455. height: math.unit(25, "feet"),
  6456. default: true
  6457. },
  6458. {
  6459. name: "Lorger",
  6460. height: math.unit(75, "feet")
  6461. },
  6462. {
  6463. name: "Macro",
  6464. height: math.unit(200, "meters")
  6465. },
  6466. ]
  6467. ))
  6468. characterMakers.push(() => makeCharacter(
  6469. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6470. {
  6471. front: {
  6472. height: math.unit(2, "meters"),
  6473. weight: math.unit(150, "kg"),
  6474. name: "Front",
  6475. image: {
  6476. source: "./media/characters/everett/front.svg",
  6477. extra: 2038 / 1737,
  6478. bottom: 0.03
  6479. }
  6480. },
  6481. paw: {
  6482. height: math.unit(2 / 3.6, "meters"),
  6483. name: "Paw",
  6484. image: {
  6485. source: "./media/characters/everett/paw.svg"
  6486. }
  6487. },
  6488. },
  6489. [
  6490. {
  6491. name: "Normal",
  6492. height: math.unit(15, "feet"),
  6493. default: true
  6494. },
  6495. {
  6496. name: "Lorg",
  6497. height: math.unit(70, "feet"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Lorger",
  6502. height: math.unit(250, "feet")
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(500, "meters")
  6507. },
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6512. {
  6513. front: {
  6514. height: math.unit(2, "meters"),
  6515. weight: math.unit(86, "kg"),
  6516. name: "Front",
  6517. image: {
  6518. source: "./media/characters/rose/front.svg",
  6519. extra: 1785/1636,
  6520. bottom: 30/1815
  6521. }
  6522. },
  6523. frontSporty: {
  6524. height: math.unit(2, "meters"),
  6525. weight: math.unit(86, "kg"),
  6526. name: "Front (Sporty)",
  6527. image: {
  6528. source: "./media/characters/rose/front-sporty.svg",
  6529. extra: 350/335,
  6530. bottom: 10/360
  6531. }
  6532. },
  6533. frontAlt: {
  6534. height: math.unit(1.6, "meters"),
  6535. weight: math.unit(86, "kg"),
  6536. name: "Front (Alt)",
  6537. image: {
  6538. source: "./media/characters/rose/front-alt.svg",
  6539. extra: 299/283,
  6540. bottom: 3/302
  6541. }
  6542. },
  6543. plush: {
  6544. height: math.unit(2, "meters"),
  6545. weight: math.unit(86/3, "kg"),
  6546. name: "Plush",
  6547. image: {
  6548. source: "./media/characters/rose/plush.svg",
  6549. extra: 361/337,
  6550. bottom: 11/372
  6551. }
  6552. },
  6553. },
  6554. [
  6555. {
  6556. name: "True Micro",
  6557. height: math.unit(9, "cm")
  6558. },
  6559. {
  6560. name: "Micro",
  6561. height: math.unit(16, "cm")
  6562. },
  6563. {
  6564. name: "Normal",
  6565. height: math.unit(1.85, "meters"),
  6566. default: true
  6567. },
  6568. {
  6569. name: "Mini-Macro",
  6570. height: math.unit(5, "meters")
  6571. },
  6572. {
  6573. name: "Macro",
  6574. height: math.unit(15, "meters")
  6575. },
  6576. {
  6577. name: "True Macro",
  6578. height: math.unit(40, "meters")
  6579. },
  6580. {
  6581. name: "City Scale",
  6582. height: math.unit(1, "km")
  6583. },
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6588. {
  6589. front: {
  6590. height: math.unit(2, "meters"),
  6591. weight: math.unit(350, "lbs"),
  6592. name: "Front",
  6593. image: {
  6594. source: "./media/characters/regal/front.svg"
  6595. }
  6596. },
  6597. back: {
  6598. height: math.unit(2, "meters"),
  6599. weight: math.unit(350, "lbs"),
  6600. name: "Back",
  6601. image: {
  6602. source: "./media/characters/regal/back.svg"
  6603. }
  6604. },
  6605. },
  6606. [
  6607. {
  6608. name: "Macro",
  6609. height: math.unit(350, "feet"),
  6610. default: true
  6611. }
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6616. {
  6617. front: {
  6618. height: math.unit(4 + 11 / 12, "feet"),
  6619. weight: math.unit(100, "lbs"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/opal/front.svg"
  6623. }
  6624. },
  6625. frontAlt: {
  6626. height: math.unit(4 + 11 / 12, "feet"),
  6627. weight: math.unit(100, "lbs"),
  6628. name: "Front (Alt)",
  6629. image: {
  6630. source: "./media/characters/opal/front-alt.svg"
  6631. }
  6632. },
  6633. },
  6634. [
  6635. {
  6636. name: "Small",
  6637. height: math.unit(4 + 11 / 12, "feet")
  6638. },
  6639. {
  6640. name: "Normal",
  6641. height: math.unit(20, "feet"),
  6642. default: true
  6643. },
  6644. {
  6645. name: "Macro",
  6646. height: math.unit(120, "feet")
  6647. },
  6648. {
  6649. name: "Megamacro",
  6650. height: math.unit(80, "miles")
  6651. },
  6652. {
  6653. name: "True Size",
  6654. height: math.unit(100000, "lightyears")
  6655. },
  6656. ]
  6657. ))
  6658. characterMakers.push(() => makeCharacter(
  6659. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6660. {
  6661. front: {
  6662. height: math.unit(6, "feet"),
  6663. weight: math.unit(200, "lbs"),
  6664. name: "Front",
  6665. image: {
  6666. source: "./media/characters/vector-wuff/front.svg"
  6667. }
  6668. }
  6669. },
  6670. [
  6671. {
  6672. name: "Normal",
  6673. height: math.unit(2.8, "meters")
  6674. },
  6675. {
  6676. name: "Macro",
  6677. height: math.unit(450, "meters"),
  6678. default: true
  6679. },
  6680. {
  6681. name: "Megamacro",
  6682. height: math.unit(15, "kilometers")
  6683. }
  6684. ]
  6685. ))
  6686. characterMakers.push(() => makeCharacter(
  6687. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6688. {
  6689. front: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(256, "lbs"),
  6692. name: "Front",
  6693. image: {
  6694. source: "./media/characters/dannik/front.svg"
  6695. }
  6696. }
  6697. },
  6698. [
  6699. {
  6700. name: "Macro",
  6701. height: math.unit(69.57, "meters"),
  6702. default: true
  6703. },
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(6, "feet"),
  6711. weight: math.unit(120, "lbs"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/azura-saharah/front.svg"
  6715. }
  6716. },
  6717. back: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(120, "lbs"),
  6720. name: "Back",
  6721. image: {
  6722. source: "./media/characters/azura-saharah/back.svg"
  6723. }
  6724. },
  6725. },
  6726. [
  6727. {
  6728. name: "Macro",
  6729. height: math.unit(100, "feet"),
  6730. default: true
  6731. },
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6736. {
  6737. side: {
  6738. height: math.unit(5 + 4 / 12, "feet"),
  6739. weight: math.unit(163, "lbs"),
  6740. name: "Side",
  6741. image: {
  6742. source: "./media/characters/kennedy/side.svg"
  6743. }
  6744. }
  6745. },
  6746. [
  6747. {
  6748. name: "Standard Doggo",
  6749. height: math.unit(5 + 4 / 12, "feet")
  6750. },
  6751. {
  6752. name: "Big Doggo",
  6753. height: math.unit(25 + 3 / 12, "feet"),
  6754. default: true
  6755. },
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6760. {
  6761. front: {
  6762. height: math.unit(6, "feet"),
  6763. weight: math.unit(90, "lbs"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/odi-lunar/front.svg"
  6767. }
  6768. }
  6769. },
  6770. [
  6771. {
  6772. name: "Micro",
  6773. height: math.unit(3, "inches"),
  6774. default: true
  6775. },
  6776. {
  6777. name: "Normal",
  6778. height: math.unit(5.5, "feet")
  6779. }
  6780. ]
  6781. ))
  6782. characterMakers.push(() => makeCharacter(
  6783. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6784. {
  6785. back: {
  6786. height: math.unit(6, "feet"),
  6787. weight: math.unit(220, "lbs"),
  6788. name: "Back",
  6789. image: {
  6790. source: "./media/characters/mandake/back.svg"
  6791. }
  6792. }
  6793. },
  6794. [
  6795. {
  6796. name: "Normal",
  6797. height: math.unit(7, "feet"),
  6798. default: true
  6799. },
  6800. {
  6801. name: "Macro",
  6802. height: math.unit(78, "feet")
  6803. },
  6804. {
  6805. name: "Macro+",
  6806. height: math.unit(300, "meters")
  6807. },
  6808. {
  6809. name: "Macro++",
  6810. height: math.unit(2400, "feet")
  6811. },
  6812. {
  6813. name: "Megamacro",
  6814. height: math.unit(5167, "meters")
  6815. },
  6816. {
  6817. name: "Gigamacro",
  6818. height: math.unit(41769, "miles")
  6819. },
  6820. ]
  6821. ))
  6822. characterMakers.push(() => makeCharacter(
  6823. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6824. {
  6825. front: {
  6826. height: math.unit(6, "feet"),
  6827. weight: math.unit(120, "lbs"),
  6828. name: "Front",
  6829. image: {
  6830. source: "./media/characters/yozey/front.svg"
  6831. }
  6832. },
  6833. frontAlt: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(120, "lbs"),
  6836. name: "Front (Alt)",
  6837. image: {
  6838. source: "./media/characters/yozey/front-alt.svg"
  6839. }
  6840. },
  6841. side: {
  6842. height: math.unit(6, "feet"),
  6843. weight: math.unit(120, "lbs"),
  6844. name: "Side",
  6845. image: {
  6846. source: "./media/characters/yozey/side.svg"
  6847. }
  6848. },
  6849. },
  6850. [
  6851. {
  6852. name: "Micro",
  6853. height: math.unit(3, "inches"),
  6854. default: true
  6855. },
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(6, "feet")
  6859. }
  6860. ]
  6861. ))
  6862. characterMakers.push(() => makeCharacter(
  6863. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6864. {
  6865. front: {
  6866. height: math.unit(6, "feet"),
  6867. weight: math.unit(103, "lbs"),
  6868. name: "Front",
  6869. image: {
  6870. source: "./media/characters/valeska-voss/front.svg"
  6871. }
  6872. }
  6873. },
  6874. [
  6875. {
  6876. name: "Mini-Sized Sub",
  6877. height: math.unit(3.1, "inches")
  6878. },
  6879. {
  6880. name: "Mid-Sized Sub",
  6881. height: math.unit(6.2, "inches")
  6882. },
  6883. {
  6884. name: "Full-Sized Sub",
  6885. height: math.unit(9.3, "inches")
  6886. },
  6887. {
  6888. name: "Normal",
  6889. height: math.unit(5 + 2 / 12, "foot"),
  6890. default: true
  6891. },
  6892. ]
  6893. ))
  6894. characterMakers.push(() => makeCharacter(
  6895. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6896. {
  6897. front: {
  6898. height: math.unit(6, "feet"),
  6899. weight: math.unit(160, "lbs"),
  6900. name: "Front",
  6901. image: {
  6902. source: "./media/characters/gene-zeta/front.svg",
  6903. extra: 3006 / 2826,
  6904. bottom: 182 / 3188
  6905. }
  6906. }
  6907. },
  6908. [
  6909. {
  6910. name: "Micro",
  6911. height: math.unit(6, "inches")
  6912. },
  6913. {
  6914. name: "Normal",
  6915. height: math.unit(5 + 11 / 12, "foot"),
  6916. default: true
  6917. },
  6918. {
  6919. name: "Macro",
  6920. height: math.unit(140, "feet")
  6921. },
  6922. {
  6923. name: "Supercharged",
  6924. height: math.unit(2500, "feet")
  6925. },
  6926. ]
  6927. ))
  6928. characterMakers.push(() => makeCharacter(
  6929. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6930. {
  6931. front: {
  6932. height: math.unit(6, "feet"),
  6933. weight: math.unit(350, "lbs"),
  6934. name: "Front",
  6935. image: {
  6936. source: "./media/characters/razinox/front.svg",
  6937. extra: 1686 / 1548,
  6938. bottom: 28.2 / 1868
  6939. }
  6940. },
  6941. back: {
  6942. height: math.unit(6, "feet"),
  6943. weight: math.unit(350, "lbs"),
  6944. name: "Back",
  6945. image: {
  6946. source: "./media/characters/razinox/back.svg",
  6947. extra: 1660 / 1590,
  6948. bottom: 15 / 1665
  6949. }
  6950. },
  6951. },
  6952. [
  6953. {
  6954. name: "Normal",
  6955. height: math.unit(10 + 8 / 12, "foot")
  6956. },
  6957. {
  6958. name: "Minimacro",
  6959. height: math.unit(15, "foot")
  6960. },
  6961. {
  6962. name: "Macro",
  6963. height: math.unit(60, "foot"),
  6964. default: true
  6965. },
  6966. {
  6967. name: "Megamacro",
  6968. height: math.unit(5, "miles")
  6969. },
  6970. {
  6971. name: "Gigamacro",
  6972. height: math.unit(6000, "miles")
  6973. },
  6974. ]
  6975. ))
  6976. characterMakers.push(() => makeCharacter(
  6977. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6978. {
  6979. front: {
  6980. height: math.unit(6, "feet"),
  6981. weight: math.unit(150, "lbs"),
  6982. name: "Front",
  6983. image: {
  6984. source: "./media/characters/cobalt/front.svg"
  6985. }
  6986. }
  6987. },
  6988. [
  6989. {
  6990. name: "Normal",
  6991. height: math.unit(8 + 1 / 12, "foot")
  6992. },
  6993. {
  6994. name: "Macro",
  6995. height: math.unit(111, "foot"),
  6996. default: true
  6997. },
  6998. {
  6999. name: "Supracosmic",
  7000. height: math.unit(1e42, "feet")
  7001. },
  7002. ]
  7003. ))
  7004. characterMakers.push(() => makeCharacter(
  7005. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7006. {
  7007. front: {
  7008. height: math.unit(6, "feet"),
  7009. weight: math.unit(140, "lbs"),
  7010. name: "Front",
  7011. image: {
  7012. source: "./media/characters/amanda/front.svg"
  7013. }
  7014. }
  7015. },
  7016. [
  7017. {
  7018. name: "Micro",
  7019. height: math.unit(5, "inches"),
  7020. default: true
  7021. },
  7022. ]
  7023. ))
  7024. characterMakers.push(() => makeCharacter(
  7025. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7026. {
  7027. front: {
  7028. height: math.unit(2.75, "meters"),
  7029. weight: math.unit(1200, "lb"),
  7030. name: "Front",
  7031. image: {
  7032. source: "./media/characters/teal/front.svg",
  7033. extra: 2463 / 2320,
  7034. bottom: 166 / 2629
  7035. }
  7036. },
  7037. back: {
  7038. height: math.unit(2.75, "meters"),
  7039. weight: math.unit(1200, "lb"),
  7040. name: "Back",
  7041. image: {
  7042. source: "./media/characters/teal/back.svg",
  7043. extra: 2580 / 2489,
  7044. bottom: 151 / 2731
  7045. }
  7046. },
  7047. sitting: {
  7048. height: math.unit(1.9, "meters"),
  7049. weight: math.unit(1200, "lb"),
  7050. name: "Sitting",
  7051. image: {
  7052. source: "./media/characters/teal/sitting.svg",
  7053. extra: 623 / 590,
  7054. bottom: 121 / 744
  7055. }
  7056. },
  7057. standing: {
  7058. height: math.unit(2.75, "meters"),
  7059. weight: math.unit(1200, "lb"),
  7060. name: "Standing",
  7061. image: {
  7062. source: "./media/characters/teal/standing.svg",
  7063. extra: 923 / 893,
  7064. bottom: 60 / 983
  7065. }
  7066. },
  7067. stretching: {
  7068. height: math.unit(3.65, "meters"),
  7069. weight: math.unit(1200, "lb"),
  7070. name: "Stretching",
  7071. image: {
  7072. source: "./media/characters/teal/stretching.svg",
  7073. extra: 1276 / 1244,
  7074. bottom: 0 / 1276
  7075. }
  7076. },
  7077. legged: {
  7078. height: math.unit(1.3, "meters"),
  7079. weight: math.unit(100, "lb"),
  7080. name: "Legged",
  7081. image: {
  7082. source: "./media/characters/teal/legged.svg",
  7083. extra: 462 / 437,
  7084. bottom: 24 / 486
  7085. }
  7086. },
  7087. naga: {
  7088. height: math.unit(5.4, "meters"),
  7089. weight: math.unit(4000, "lb"),
  7090. name: "Naga",
  7091. image: {
  7092. source: "./media/characters/teal/naga.svg",
  7093. extra: 1902 / 1858,
  7094. bottom: 0 / 1902
  7095. }
  7096. },
  7097. hand: {
  7098. height: math.unit(0.52, "meters"),
  7099. name: "Hand",
  7100. image: {
  7101. source: "./media/characters/teal/hand.svg"
  7102. }
  7103. },
  7104. maw: {
  7105. height: math.unit(0.43, "meters"),
  7106. name: "Maw",
  7107. image: {
  7108. source: "./media/characters/teal/maw.svg"
  7109. }
  7110. },
  7111. slit: {
  7112. height: math.unit(0.25, "meters"),
  7113. name: "Slit",
  7114. image: {
  7115. source: "./media/characters/teal/slit.svg"
  7116. }
  7117. },
  7118. },
  7119. [
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(2.75, "meters"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Macro",
  7127. height: math.unit(300, "feet")
  7128. },
  7129. {
  7130. name: "Macro+",
  7131. height: math.unit(2000, "feet")
  7132. },
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7137. {
  7138. frontCat: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(180, "lbs"),
  7141. name: "Front (Cat)",
  7142. image: {
  7143. source: "./media/characters/ravin-amulet/front-cat.svg"
  7144. }
  7145. },
  7146. frontCatAlt: {
  7147. height: math.unit(6, "feet"),
  7148. weight: math.unit(180, "lbs"),
  7149. name: "Front (Alt, Cat)",
  7150. image: {
  7151. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7152. }
  7153. },
  7154. frontWerewolf: {
  7155. height: math.unit(6 * 1.2, "feet"),
  7156. weight: math.unit(225, "lbs"),
  7157. name: "Front (Werewolf)",
  7158. image: {
  7159. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7160. }
  7161. },
  7162. backWerewolf: {
  7163. height: math.unit(6 * 1.2, "feet"),
  7164. weight: math.unit(225, "lbs"),
  7165. name: "Back (Werewolf)",
  7166. image: {
  7167. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Nano",
  7174. height: math.unit(1, "micrometer")
  7175. },
  7176. {
  7177. name: "Micro",
  7178. height: math.unit(1, "inch")
  7179. },
  7180. {
  7181. name: "Normal",
  7182. height: math.unit(6, "feet"),
  7183. default: true
  7184. },
  7185. {
  7186. name: "Macro",
  7187. height: math.unit(60, "feet")
  7188. }
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(165, "lbs"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/fluoresce/front.svg"
  7200. }
  7201. }
  7202. },
  7203. [
  7204. {
  7205. name: "Micro",
  7206. height: math.unit(6, "cm")
  7207. },
  7208. {
  7209. name: "Normal",
  7210. height: math.unit(5 + 7 / 12, "feet"),
  7211. default: true
  7212. },
  7213. {
  7214. name: "Macro",
  7215. height: math.unit(56, "feet")
  7216. },
  7217. {
  7218. name: "Megamacro",
  7219. height: math.unit(1.9, "miles")
  7220. },
  7221. ]
  7222. ))
  7223. characterMakers.push(() => makeCharacter(
  7224. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7225. {
  7226. front: {
  7227. height: math.unit(9 + 6 / 12, "feet"),
  7228. weight: math.unit(523, "lbs"),
  7229. name: "Side",
  7230. image: {
  7231. source: "./media/characters/aurora/side.svg"
  7232. }
  7233. }
  7234. },
  7235. [
  7236. {
  7237. name: "Normal",
  7238. height: math.unit(9 + 6 / 12, "feet")
  7239. },
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(96, "feet"),
  7243. default: true
  7244. },
  7245. {
  7246. name: "Macro+",
  7247. height: math.unit(243, "feet")
  7248. },
  7249. ]
  7250. ))
  7251. characterMakers.push(() => makeCharacter(
  7252. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7253. {
  7254. front: {
  7255. height: math.unit(194, "cm"),
  7256. weight: math.unit(90, "kg"),
  7257. name: "Front",
  7258. image: {
  7259. source: "./media/characters/ranek/front.svg"
  7260. }
  7261. },
  7262. side: {
  7263. height: math.unit(194, "cm"),
  7264. weight: math.unit(90, "kg"),
  7265. name: "Side",
  7266. image: {
  7267. source: "./media/characters/ranek/side.svg"
  7268. }
  7269. },
  7270. back: {
  7271. height: math.unit(194, "cm"),
  7272. weight: math.unit(90, "kg"),
  7273. name: "Back",
  7274. image: {
  7275. source: "./media/characters/ranek/back.svg"
  7276. }
  7277. },
  7278. feral: {
  7279. height: math.unit(30, "cm"),
  7280. weight: math.unit(1.6, "lbs"),
  7281. name: "Feral",
  7282. image: {
  7283. source: "./media/characters/ranek/feral.svg"
  7284. }
  7285. },
  7286. },
  7287. [
  7288. {
  7289. name: "Normal",
  7290. height: math.unit(194, "cm"),
  7291. default: true
  7292. },
  7293. {
  7294. name: "Macro",
  7295. height: math.unit(100, "meters")
  7296. },
  7297. ]
  7298. ))
  7299. characterMakers.push(() => makeCharacter(
  7300. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7301. {
  7302. front: {
  7303. height: math.unit(5 + 6 / 12, "feet"),
  7304. weight: math.unit(153, "lbs"),
  7305. name: "Front",
  7306. image: {
  7307. source: "./media/characters/andrew-cooper/front.svg"
  7308. }
  7309. },
  7310. },
  7311. [
  7312. {
  7313. name: "Nano",
  7314. height: math.unit(1, "mm")
  7315. },
  7316. {
  7317. name: "Micro",
  7318. height: math.unit(2, "inches")
  7319. },
  7320. {
  7321. name: "Normal",
  7322. height: math.unit(5 + 6 / 12, "feet"),
  7323. default: true
  7324. }
  7325. ]
  7326. ))
  7327. characterMakers.push(() => makeCharacter(
  7328. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7329. {
  7330. front: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(180, "lbs"),
  7333. name: "Front",
  7334. image: {
  7335. source: "./media/characters/akane-sato/front.svg",
  7336. extra: 1219 / 1140
  7337. }
  7338. },
  7339. back: {
  7340. height: math.unit(6, "feet"),
  7341. weight: math.unit(180, "lbs"),
  7342. name: "Back",
  7343. image: {
  7344. source: "./media/characters/akane-sato/back.svg",
  7345. extra: 1219 / 1170
  7346. }
  7347. },
  7348. },
  7349. [
  7350. {
  7351. name: "Normal",
  7352. height: math.unit(2.5, "meters")
  7353. },
  7354. {
  7355. name: "Macro",
  7356. height: math.unit(250, "meters"),
  7357. default: true
  7358. },
  7359. {
  7360. name: "Megamacro",
  7361. height: math.unit(25, "km")
  7362. },
  7363. ]
  7364. ))
  7365. characterMakers.push(() => makeCharacter(
  7366. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7367. {
  7368. front: {
  7369. height: math.unit(6, "feet"),
  7370. weight: math.unit(65, "kg"),
  7371. name: "Front",
  7372. image: {
  7373. source: "./media/characters/rook/front.svg",
  7374. extra: 960 / 950
  7375. }
  7376. }
  7377. },
  7378. [
  7379. {
  7380. name: "Normal",
  7381. height: math.unit(8.8, "feet")
  7382. },
  7383. {
  7384. name: "Macro",
  7385. height: math.unit(88, "feet"),
  7386. default: true
  7387. },
  7388. {
  7389. name: "Megamacro",
  7390. height: math.unit(8, "miles")
  7391. },
  7392. ]
  7393. ))
  7394. characterMakers.push(() => makeCharacter(
  7395. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7396. {
  7397. front: {
  7398. height: math.unit(12 + 2 / 12, "feet"),
  7399. weight: math.unit(808, "lbs"),
  7400. name: "Front",
  7401. image: {
  7402. source: "./media/characters/prodigy/front.svg"
  7403. }
  7404. }
  7405. },
  7406. [
  7407. {
  7408. name: "Normal",
  7409. height: math.unit(12 + 2 / 12, "feet"),
  7410. default: true
  7411. },
  7412. {
  7413. name: "Macro",
  7414. height: math.unit(143, "feet")
  7415. },
  7416. {
  7417. name: "Macro+",
  7418. height: math.unit(400, "feet")
  7419. },
  7420. ]
  7421. ))
  7422. characterMakers.push(() => makeCharacter(
  7423. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7424. {
  7425. front: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(225, "lbs"),
  7428. name: "Front",
  7429. image: {
  7430. source: "./media/characters/daniel/front.svg"
  7431. }
  7432. },
  7433. leaning: {
  7434. height: math.unit(6, "feet"),
  7435. weight: math.unit(225, "lbs"),
  7436. name: "Leaning",
  7437. image: {
  7438. source: "./media/characters/daniel/leaning.svg"
  7439. }
  7440. },
  7441. },
  7442. [
  7443. {
  7444. name: "Macro",
  7445. height: math.unit(1000, "feet"),
  7446. default: true
  7447. },
  7448. ]
  7449. ))
  7450. characterMakers.push(() => makeCharacter(
  7451. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7452. {
  7453. front: {
  7454. height: math.unit(6, "feet"),
  7455. weight: math.unit(88, "lbs"),
  7456. name: "Front",
  7457. image: {
  7458. source: "./media/characters/chiros/front.svg",
  7459. extra: 306 / 226
  7460. }
  7461. },
  7462. side: {
  7463. height: math.unit(6, "feet"),
  7464. weight: math.unit(88, "lbs"),
  7465. name: "Side",
  7466. image: {
  7467. source: "./media/characters/chiros/side.svg",
  7468. extra: 306 / 226
  7469. }
  7470. },
  7471. },
  7472. [
  7473. {
  7474. name: "Normal",
  7475. height: math.unit(6, "cm"),
  7476. default: true
  7477. },
  7478. ]
  7479. ))
  7480. characterMakers.push(() => makeCharacter(
  7481. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7482. {
  7483. front: {
  7484. height: math.unit(6, "feet"),
  7485. weight: math.unit(100, "lbs"),
  7486. name: "Front",
  7487. image: {
  7488. source: "./media/characters/selka/front.svg",
  7489. extra: 947 / 887
  7490. }
  7491. }
  7492. },
  7493. [
  7494. {
  7495. name: "Normal",
  7496. height: math.unit(5, "cm"),
  7497. default: true
  7498. },
  7499. ]
  7500. ))
  7501. characterMakers.push(() => makeCharacter(
  7502. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7503. {
  7504. front: {
  7505. height: math.unit(8 + 3 / 12, "feet"),
  7506. weight: math.unit(424, "lbs"),
  7507. name: "Front",
  7508. image: {
  7509. source: "./media/characters/verin/front.svg",
  7510. extra: 1845 / 1550
  7511. }
  7512. },
  7513. frontArmored: {
  7514. height: math.unit(8 + 3 / 12, "feet"),
  7515. weight: math.unit(424, "lbs"),
  7516. name: "Front (Armored)",
  7517. image: {
  7518. source: "./media/characters/verin/front-armor.svg",
  7519. extra: 1845 / 1550,
  7520. bottom: 0.01
  7521. }
  7522. },
  7523. back: {
  7524. height: math.unit(8 + 3 / 12, "feet"),
  7525. weight: math.unit(424, "lbs"),
  7526. name: "Back",
  7527. image: {
  7528. source: "./media/characters/verin/back.svg",
  7529. bottom: 0.1,
  7530. extra: 1
  7531. }
  7532. },
  7533. foot: {
  7534. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7535. name: "Foot",
  7536. image: {
  7537. source: "./media/characters/verin/foot.svg"
  7538. }
  7539. },
  7540. },
  7541. [
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(8 + 3 / 12, "feet")
  7545. },
  7546. {
  7547. name: "Minimacro",
  7548. height: math.unit(21, "feet"),
  7549. default: true
  7550. },
  7551. {
  7552. name: "Macro",
  7553. height: math.unit(626, "feet")
  7554. },
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(2.718, "meters"),
  7562. weight: math.unit(150, "lbs"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/sovrim-terraquian/front.svg"
  7566. }
  7567. },
  7568. back: {
  7569. height: math.unit(2.718, "meters"),
  7570. weight: math.unit(150, "lbs"),
  7571. name: "Back",
  7572. image: {
  7573. source: "./media/characters/sovrim-terraquian/back.svg"
  7574. }
  7575. }
  7576. },
  7577. [
  7578. {
  7579. name: "Micro",
  7580. height: math.unit(2, "inches")
  7581. },
  7582. {
  7583. name: "Small",
  7584. height: math.unit(1, "meter")
  7585. },
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(Math.E, "meters"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(20, "meters")
  7594. },
  7595. {
  7596. name: "Macro+",
  7597. height: math.unit(400, "meters")
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(7, "feet"),
  7606. weight: math.unit(489, "lbs"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/reece-silvermane/front.svg",
  7610. bottom: 0.02,
  7611. extra: 1
  7612. }
  7613. },
  7614. },
  7615. [
  7616. {
  7617. name: "Macro",
  7618. height: math.unit(1.5, "miles"),
  7619. default: true
  7620. },
  7621. ]
  7622. ))
  7623. characterMakers.push(() => makeCharacter(
  7624. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7625. {
  7626. front: {
  7627. height: math.unit(6, "feet"),
  7628. weight: math.unit(78, "kg"),
  7629. name: "Front",
  7630. image: {
  7631. source: "./media/characters/kane/front.svg",
  7632. extra: 978 / 899
  7633. }
  7634. },
  7635. },
  7636. [
  7637. {
  7638. name: "Normal",
  7639. height: math.unit(2.1, "m"),
  7640. },
  7641. {
  7642. name: "Macro",
  7643. height: math.unit(1, "km"),
  7644. default: true
  7645. },
  7646. ]
  7647. ))
  7648. characterMakers.push(() => makeCharacter(
  7649. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7650. {
  7651. front: {
  7652. height: math.unit(6, "feet"),
  7653. weight: math.unit(200, "kg"),
  7654. name: "Front",
  7655. image: {
  7656. source: "./media/characters/tegon/front.svg",
  7657. bottom: 0.01,
  7658. extra: 1
  7659. }
  7660. },
  7661. },
  7662. [
  7663. {
  7664. name: "Micro",
  7665. height: math.unit(1, "inch")
  7666. },
  7667. {
  7668. name: "Normal",
  7669. height: math.unit(6 + 3 / 12, "feet"),
  7670. default: true
  7671. },
  7672. {
  7673. name: "Macro",
  7674. height: math.unit(300, "feet")
  7675. },
  7676. {
  7677. name: "Megamacro",
  7678. height: math.unit(69, "miles")
  7679. },
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7684. {
  7685. side: {
  7686. height: math.unit(6, "feet"),
  7687. weight: math.unit(2304, "lbs"),
  7688. name: "Side",
  7689. image: {
  7690. source: "./media/characters/arcturax/side.svg",
  7691. extra: 790 / 376,
  7692. bottom: 0.01
  7693. }
  7694. },
  7695. },
  7696. [
  7697. {
  7698. name: "Micro",
  7699. height: math.unit(2, "inch")
  7700. },
  7701. {
  7702. name: "Normal",
  7703. height: math.unit(6, "feet")
  7704. },
  7705. {
  7706. name: "Macro",
  7707. height: math.unit(39, "feet"),
  7708. default: true
  7709. },
  7710. {
  7711. name: "Megamacro",
  7712. height: math.unit(7, "miles")
  7713. },
  7714. ]
  7715. ))
  7716. characterMakers.push(() => makeCharacter(
  7717. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7718. {
  7719. front: {
  7720. height: math.unit(6, "feet"),
  7721. weight: math.unit(50, "lbs"),
  7722. name: "Front",
  7723. image: {
  7724. source: "./media/characters/sentri/front.svg",
  7725. extra: 1750 / 1570,
  7726. bottom: 0.025
  7727. }
  7728. },
  7729. frontAlt: {
  7730. height: math.unit(6, "feet"),
  7731. weight: math.unit(50, "lbs"),
  7732. name: "Front (Alt)",
  7733. image: {
  7734. source: "./media/characters/sentri/front-alt.svg",
  7735. extra: 1750 / 1570,
  7736. bottom: 0.025
  7737. }
  7738. },
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(15, "feet"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Macro",
  7748. height: math.unit(2500, "feet")
  7749. }
  7750. ]
  7751. ))
  7752. characterMakers.push(() => makeCharacter(
  7753. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7754. {
  7755. front: {
  7756. height: math.unit(5 + 8 / 12, "feet"),
  7757. weight: math.unit(130, "lbs"),
  7758. name: "Front",
  7759. image: {
  7760. source: "./media/characters/corvin/front.svg",
  7761. extra: 1803 / 1629
  7762. }
  7763. },
  7764. frontShirt: {
  7765. height: math.unit(5 + 8 / 12, "feet"),
  7766. weight: math.unit(130, "lbs"),
  7767. name: "Front (Shirt)",
  7768. image: {
  7769. source: "./media/characters/corvin/front-shirt.svg",
  7770. extra: 1803 / 1629
  7771. }
  7772. },
  7773. frontPoncho: {
  7774. height: math.unit(5 + 8 / 12, "feet"),
  7775. weight: math.unit(130, "lbs"),
  7776. name: "Front (Poncho)",
  7777. image: {
  7778. source: "./media/characters/corvin/front-poncho.svg",
  7779. extra: 1803 / 1629
  7780. }
  7781. },
  7782. side: {
  7783. height: math.unit(5 + 8 / 12, "feet"),
  7784. weight: math.unit(130, "lbs"),
  7785. name: "Side",
  7786. image: {
  7787. source: "./media/characters/corvin/side.svg",
  7788. extra: 1012 / 945
  7789. }
  7790. },
  7791. back: {
  7792. height: math.unit(5 + 8 / 12, "feet"),
  7793. weight: math.unit(130, "lbs"),
  7794. name: "Back",
  7795. image: {
  7796. source: "./media/characters/corvin/back.svg",
  7797. extra: 1803 / 1629
  7798. }
  7799. },
  7800. },
  7801. [
  7802. {
  7803. name: "Micro",
  7804. height: math.unit(3, "inches")
  7805. },
  7806. {
  7807. name: "Normal",
  7808. height: math.unit(5 + 8 / 12, "feet")
  7809. },
  7810. {
  7811. name: "Macro",
  7812. height: math.unit(300, "feet"),
  7813. default: true
  7814. },
  7815. {
  7816. name: "Megamacro",
  7817. height: math.unit(500, "miles")
  7818. }
  7819. ]
  7820. ))
  7821. characterMakers.push(() => makeCharacter(
  7822. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7823. {
  7824. front: {
  7825. height: math.unit(6, "feet"),
  7826. weight: math.unit(135, "lbs"),
  7827. name: "Front",
  7828. image: {
  7829. source: "./media/characters/q/front.svg",
  7830. extra: 854 / 752,
  7831. bottom: 0.005
  7832. }
  7833. },
  7834. back: {
  7835. height: math.unit(6, "feet"),
  7836. weight: math.unit(130, "lbs"),
  7837. name: "Back",
  7838. image: {
  7839. source: "./media/characters/q/back.svg",
  7840. extra: 854 / 752
  7841. }
  7842. },
  7843. },
  7844. [
  7845. {
  7846. name: "Macro",
  7847. height: math.unit(90, "feet"),
  7848. default: true
  7849. },
  7850. {
  7851. name: "Extra Macro",
  7852. height: math.unit(300, "feet"),
  7853. },
  7854. {
  7855. name: "BIG WALF",
  7856. height: math.unit(750, "feet"),
  7857. },
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7862. {
  7863. front: {
  7864. height: math.unit(6, "feet"),
  7865. weight: math.unit(150, "lbs"),
  7866. name: "Front",
  7867. image: {
  7868. source: "./media/characters/carley/front.svg",
  7869. extra: 3927 / 3540,
  7870. bottom: 29.2 / 735
  7871. }
  7872. }
  7873. },
  7874. [
  7875. {
  7876. name: "Normal",
  7877. height: math.unit(6 + 3 / 12, "feet")
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(185, "feet"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Megamacro",
  7886. height: math.unit(8, "miles"),
  7887. },
  7888. ]
  7889. ))
  7890. characterMakers.push(() => makeCharacter(
  7891. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7892. {
  7893. front: {
  7894. height: math.unit(3, "feet"),
  7895. weight: math.unit(28, "lbs"),
  7896. name: "Front",
  7897. image: {
  7898. source: "./media/characters/citrine/front.svg"
  7899. }
  7900. }
  7901. },
  7902. [
  7903. {
  7904. name: "Normal",
  7905. height: math.unit(3, "feet"),
  7906. default: true
  7907. }
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7912. {
  7913. front: {
  7914. height: math.unit(14, "feet"),
  7915. weight: math.unit(1450, "kg"),
  7916. capacity: math.unit(15, "people"),
  7917. name: "Front",
  7918. image: {
  7919. source: "./media/characters/aura-starwind/front.svg",
  7920. extra: 1455 / 1335
  7921. }
  7922. },
  7923. side: {
  7924. height: math.unit(14, "feet"),
  7925. weight: math.unit(1450, "kg"),
  7926. capacity: math.unit(15, "people"),
  7927. name: "Side",
  7928. image: {
  7929. source: "./media/characters/aura-starwind/side.svg",
  7930. extra: 1654 / 1497
  7931. }
  7932. },
  7933. taur: {
  7934. height: math.unit(18, "feet"),
  7935. weight: math.unit(5500, "kg"),
  7936. capacity: math.unit(50, "people"),
  7937. name: "Taur",
  7938. image: {
  7939. source: "./media/characters/aura-starwind/taur.svg",
  7940. extra: 1760 / 1650
  7941. }
  7942. },
  7943. feral: {
  7944. height: math.unit(46, "feet"),
  7945. weight: math.unit(25000, "kg"),
  7946. capacity: math.unit(120, "people"),
  7947. name: "Feral",
  7948. image: {
  7949. source: "./media/characters/aura-starwind/feral.svg"
  7950. }
  7951. },
  7952. },
  7953. [
  7954. {
  7955. name: "Normal",
  7956. height: math.unit(14, "feet"),
  7957. default: true
  7958. },
  7959. {
  7960. name: "Macro",
  7961. height: math.unit(50, "meters")
  7962. },
  7963. {
  7964. name: "Megamacro",
  7965. height: math.unit(5000, "meters")
  7966. },
  7967. {
  7968. name: "Gigamacro",
  7969. height: math.unit(100000, "kilometers")
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7975. {
  7976. front: {
  7977. height: math.unit(2 + 7 / 12, "feet"),
  7978. weight: math.unit(32, "lbs"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/rivet/front.svg",
  7982. extra: 1716 / 1658,
  7983. bottom: 0.03
  7984. }
  7985. },
  7986. foot: {
  7987. height: math.unit(0.551, "feet"),
  7988. name: "Rivet's Foot",
  7989. image: {
  7990. source: "./media/characters/rivet/foot.svg"
  7991. },
  7992. rename: true
  7993. }
  7994. },
  7995. [
  7996. {
  7997. name: "Micro",
  7998. height: math.unit(1.5, "inches"),
  7999. },
  8000. {
  8001. name: "Normal",
  8002. height: math.unit(2 + 7 / 12, "feet"),
  8003. default: true
  8004. },
  8005. {
  8006. name: "Macro",
  8007. height: math.unit(85, "feet")
  8008. },
  8009. {
  8010. name: "Megamacro",
  8011. height: math.unit(2.2, "km")
  8012. }
  8013. ]
  8014. ))
  8015. characterMakers.push(() => makeCharacter(
  8016. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8017. {
  8018. front: {
  8019. height: math.unit(5 + 9 / 12, "feet"),
  8020. weight: math.unit(150, "lbs"),
  8021. name: "Front",
  8022. image: {
  8023. source: "./media/characters/coffee/front.svg",
  8024. extra: 3666 / 3032,
  8025. bottom: 0.04
  8026. }
  8027. },
  8028. foot: {
  8029. height: math.unit(1.29, "feet"),
  8030. name: "Foot",
  8031. image: {
  8032. source: "./media/characters/coffee/foot.svg"
  8033. }
  8034. },
  8035. },
  8036. [
  8037. {
  8038. name: "Micro",
  8039. height: math.unit(2, "inches"),
  8040. },
  8041. {
  8042. name: "Normal",
  8043. height: math.unit(5 + 9 / 12, "feet"),
  8044. default: true
  8045. },
  8046. {
  8047. name: "Macro",
  8048. height: math.unit(800, "feet")
  8049. },
  8050. {
  8051. name: "Megamacro",
  8052. height: math.unit(25, "miles")
  8053. }
  8054. ]
  8055. ))
  8056. characterMakers.push(() => makeCharacter(
  8057. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8058. {
  8059. front: {
  8060. height: math.unit(6, "feet"),
  8061. weight: math.unit(200, "lbs"),
  8062. name: "Front",
  8063. image: {
  8064. source: "./media/characters/chari-gal/front.svg",
  8065. extra: 1568 / 1385,
  8066. bottom: 0.047
  8067. }
  8068. },
  8069. gigantamax: {
  8070. height: math.unit(6 * 16, "feet"),
  8071. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8072. name: "Gigantamax",
  8073. image: {
  8074. source: "./media/characters/chari-gal/gigantamax.svg",
  8075. extra: 1124 / 888,
  8076. bottom: 0.03
  8077. }
  8078. },
  8079. },
  8080. [
  8081. {
  8082. name: "Normal",
  8083. height: math.unit(5 + 7 / 12, "feet")
  8084. },
  8085. {
  8086. name: "Macro",
  8087. height: math.unit(200, "feet"),
  8088. default: true
  8089. }
  8090. ]
  8091. ))
  8092. characterMakers.push(() => makeCharacter(
  8093. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8094. {
  8095. front: {
  8096. height: math.unit(6, "feet"),
  8097. weight: math.unit(150, "lbs"),
  8098. name: "Front",
  8099. image: {
  8100. source: "./media/characters/nova/front.svg",
  8101. extra: 5000 / 4722,
  8102. bottom: 0.02
  8103. }
  8104. }
  8105. },
  8106. [
  8107. {
  8108. name: "Micro-",
  8109. height: math.unit(0.8, "inches")
  8110. },
  8111. {
  8112. name: "Micro",
  8113. height: math.unit(2, "inches"),
  8114. default: true
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8120. {
  8121. front: {
  8122. height: math.unit(3 + 1 / 12, "feet"),
  8123. weight: math.unit(21.7, "lbs"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/argent/front.svg",
  8127. extra: 1471 / 1331,
  8128. bottom: 100.8 / 1575.5
  8129. }
  8130. }
  8131. },
  8132. [
  8133. {
  8134. name: "Micro",
  8135. height: math.unit(2, "inches")
  8136. },
  8137. {
  8138. name: "Normal",
  8139. height: math.unit(3 + 1 / 12, "feet"),
  8140. default: true
  8141. },
  8142. {
  8143. name: "Macro",
  8144. height: math.unit(120, "feet")
  8145. },
  8146. ]
  8147. ))
  8148. characterMakers.push(() => makeCharacter(
  8149. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8150. {
  8151. lamp: {
  8152. height: math.unit(7 * 1559 / 989, "feet"),
  8153. name: "Magic Lamp",
  8154. image: {
  8155. source: "./media/characters/mira-al-cul/lamp.svg",
  8156. extra: 1617 / 1559
  8157. }
  8158. },
  8159. front: {
  8160. height: math.unit(7, "feet"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/mira-al-cul/front.svg",
  8164. extra: 1044 / 990
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Heavily Restricted",
  8171. height: math.unit(7 * 1559 / 989, "feet")
  8172. },
  8173. {
  8174. name: "Freshly Freed",
  8175. height: math.unit(50 * 1559 / 989, "feet")
  8176. },
  8177. {
  8178. name: "World Encompassing",
  8179. height: math.unit(10000 * 1559 / 989, "miles")
  8180. },
  8181. {
  8182. name: "Galactic",
  8183. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8184. },
  8185. {
  8186. name: "Palmed Universe",
  8187. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8188. default: true
  8189. },
  8190. {
  8191. name: "Multiversal Matriarch",
  8192. height: math.unit(8.87e10, "yottameters")
  8193. },
  8194. {
  8195. name: "Void Mother",
  8196. height: math.unit(3.14e110, "yottaparsecs")
  8197. },
  8198. {
  8199. name: "Toying with Transcendence",
  8200. height: math.unit(1e307, "meters")
  8201. },
  8202. ]
  8203. ))
  8204. characterMakers.push(() => makeCharacter(
  8205. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8206. {
  8207. front: {
  8208. height: math.unit(17 + 1 / 12, "feet"),
  8209. weight: math.unit(476.2 * 5, "lbs"),
  8210. name: "Front",
  8211. image: {
  8212. source: "./media/characters/kuro-shi-uchū/front.svg",
  8213. extra: 2329 / 1835,
  8214. bottom: 0.02
  8215. }
  8216. },
  8217. },
  8218. [
  8219. {
  8220. name: "Micro",
  8221. height: math.unit(2, "inches")
  8222. },
  8223. {
  8224. name: "Normal",
  8225. height: math.unit(12, "meters")
  8226. },
  8227. {
  8228. name: "Planetary",
  8229. height: math.unit(0.00929, "AU"),
  8230. default: true
  8231. },
  8232. {
  8233. name: "Universal",
  8234. height: math.unit(20, "gigaparsecs")
  8235. },
  8236. ]
  8237. ))
  8238. characterMakers.push(() => makeCharacter(
  8239. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8240. {
  8241. front: {
  8242. height: math.unit(5 + 2 / 12, "feet"),
  8243. weight: math.unit(120, "lbs"),
  8244. name: "Front",
  8245. image: {
  8246. source: "./media/characters/katherine/front.svg",
  8247. extra: 2075 / 1969
  8248. }
  8249. },
  8250. dress: {
  8251. height: math.unit(5 + 2 / 12, "feet"),
  8252. weight: math.unit(120, "lbs"),
  8253. name: "Dress",
  8254. image: {
  8255. source: "./media/characters/katherine/dress.svg",
  8256. extra: 2258 / 2064
  8257. }
  8258. },
  8259. },
  8260. [
  8261. {
  8262. name: "Micro",
  8263. height: math.unit(1, "inches"),
  8264. default: true
  8265. },
  8266. {
  8267. name: "Normal",
  8268. height: math.unit(5 + 2 / 12, "feet")
  8269. },
  8270. {
  8271. name: "Macro",
  8272. height: math.unit(100, "meters")
  8273. },
  8274. {
  8275. name: "Megamacro",
  8276. height: math.unit(80, "miles")
  8277. },
  8278. ]
  8279. ))
  8280. characterMakers.push(() => makeCharacter(
  8281. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8282. {
  8283. front: {
  8284. height: math.unit(7 + 8 / 12, "feet"),
  8285. weight: math.unit(250, "lbs"),
  8286. name: "Front",
  8287. image: {
  8288. source: "./media/characters/yevis/front.svg",
  8289. extra: 1938 / 1755
  8290. }
  8291. }
  8292. },
  8293. [
  8294. {
  8295. name: "Mortal",
  8296. height: math.unit(7 + 8 / 12, "feet")
  8297. },
  8298. {
  8299. name: "Battle",
  8300. height: math.unit(25 + 11 / 12, "feet")
  8301. },
  8302. {
  8303. name: "Wrath",
  8304. height: math.unit(1654 + 11 / 12, "feet")
  8305. },
  8306. {
  8307. name: "Planet Destroyer",
  8308. height: math.unit(12000, "miles")
  8309. },
  8310. {
  8311. name: "Galaxy Conqueror",
  8312. height: math.unit(1.45, "zettameters"),
  8313. default: true
  8314. },
  8315. {
  8316. name: "Universal War",
  8317. height: math.unit(184, "gigaparsecs")
  8318. },
  8319. {
  8320. name: "Eternity War",
  8321. height: math.unit(1.98e55, "yottaparsecs")
  8322. },
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8327. {
  8328. front: {
  8329. height: math.unit(5 + 8 / 12, "feet"),
  8330. weight: math.unit(63, "kg"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/xavier/front.svg",
  8334. extra: 944 / 883
  8335. }
  8336. },
  8337. frontStretch: {
  8338. height: math.unit(5 + 8 / 12, "feet"),
  8339. weight: math.unit(63, "kg"),
  8340. name: "Stretching",
  8341. image: {
  8342. source: "./media/characters/xavier/front-stretch.svg",
  8343. extra: 962 / 820
  8344. }
  8345. },
  8346. },
  8347. [
  8348. {
  8349. name: "Normal",
  8350. height: math.unit(5 + 8 / 12, "feet")
  8351. },
  8352. {
  8353. name: "Macro",
  8354. height: math.unit(100, "meters"),
  8355. default: true
  8356. },
  8357. {
  8358. name: "McLargeHuge",
  8359. height: math.unit(10, "miles")
  8360. },
  8361. ]
  8362. ))
  8363. characterMakers.push(() => makeCharacter(
  8364. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8365. {
  8366. front: {
  8367. height: math.unit(5 + 5 / 12, "feet"),
  8368. weight: math.unit(150, "lb"),
  8369. name: "Front",
  8370. image: {
  8371. source: "./media/characters/joshii/front.svg",
  8372. extra: 765 / 653,
  8373. bottom: 51 / 816
  8374. }
  8375. },
  8376. foot: {
  8377. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8378. name: "Foot",
  8379. image: {
  8380. source: "./media/characters/joshii/foot.svg"
  8381. }
  8382. },
  8383. },
  8384. [
  8385. {
  8386. name: "Micro",
  8387. height: math.unit(2, "inches"),
  8388. default: true
  8389. },
  8390. {
  8391. name: "Normal",
  8392. height: math.unit(5 + 5 / 12, "feet")
  8393. },
  8394. {
  8395. name: "Macro",
  8396. height: math.unit(785, "feet")
  8397. },
  8398. {
  8399. name: "Megamacro",
  8400. height: math.unit(24.5, "miles")
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8406. {
  8407. front: {
  8408. height: math.unit(6, "feet"),
  8409. weight: math.unit(150, "lb"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/goddess-elizabeth/front.svg",
  8413. extra: 1800 / 1525,
  8414. bottom: 0.005
  8415. }
  8416. },
  8417. foot: {
  8418. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8419. name: "Foot",
  8420. image: {
  8421. source: "./media/characters/goddess-elizabeth/foot.svg"
  8422. }
  8423. },
  8424. mouth: {
  8425. height: math.unit(6, "feet"),
  8426. name: "Mouth",
  8427. image: {
  8428. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8429. }
  8430. },
  8431. },
  8432. [
  8433. {
  8434. name: "Micro",
  8435. height: math.unit(12, "feet")
  8436. },
  8437. {
  8438. name: "Normal",
  8439. height: math.unit(80, "miles"),
  8440. default: true
  8441. },
  8442. {
  8443. name: "Macro",
  8444. height: math.unit(15000, "parsecs")
  8445. },
  8446. ]
  8447. ))
  8448. characterMakers.push(() => makeCharacter(
  8449. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8450. {
  8451. front: {
  8452. height: math.unit(5 + 9 / 12, "feet"),
  8453. weight: math.unit(144, "lb"),
  8454. name: "Front",
  8455. image: {
  8456. source: "./media/characters/kara/front.svg"
  8457. }
  8458. },
  8459. feet: {
  8460. height: math.unit(6 / 6.765, "feet"),
  8461. name: "Kara's Feet",
  8462. rename: true,
  8463. image: {
  8464. source: "./media/characters/kara/feet.svg"
  8465. }
  8466. },
  8467. },
  8468. [
  8469. {
  8470. name: "Normal",
  8471. height: math.unit(5 + 9 / 12, "feet")
  8472. },
  8473. {
  8474. name: "Macro",
  8475. height: math.unit(174, "feet"),
  8476. default: true
  8477. },
  8478. ]
  8479. ))
  8480. characterMakers.push(() => makeCharacter(
  8481. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8482. {
  8483. front: {
  8484. height: math.unit(18, "feet"),
  8485. weight: math.unit(4050, "lb"),
  8486. name: "Front",
  8487. image: {
  8488. source: "./media/characters/tyrone/front.svg",
  8489. extra: 2405 / 2270,
  8490. bottom: 182 / 2587
  8491. }
  8492. },
  8493. },
  8494. [
  8495. {
  8496. name: "Normal",
  8497. height: math.unit(18, "feet"),
  8498. default: true
  8499. },
  8500. {
  8501. name: "Macro",
  8502. height: math.unit(300, "feet")
  8503. },
  8504. {
  8505. name: "Megamacro",
  8506. height: math.unit(15, "km")
  8507. },
  8508. {
  8509. name: "Gigamacro",
  8510. height: math.unit(500, "km")
  8511. },
  8512. {
  8513. name: "Teramacro",
  8514. height: math.unit(0.5, "gigameters")
  8515. },
  8516. {
  8517. name: "Omnimacro",
  8518. height: math.unit(1e252, "yottauniverse")
  8519. },
  8520. ]
  8521. ))
  8522. characterMakers.push(() => makeCharacter(
  8523. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8524. {
  8525. front: {
  8526. height: math.unit(7 + 8 / 12, "feet"),
  8527. weight: math.unit(120, "lb"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/danny/front.svg",
  8531. extra: 1490 / 1350
  8532. }
  8533. },
  8534. back: {
  8535. height: math.unit(7 + 8 / 12, "feet"),
  8536. weight: math.unit(120, "lb"),
  8537. name: "Back",
  8538. image: {
  8539. source: "./media/characters/danny/back.svg",
  8540. extra: 1490 / 1350
  8541. }
  8542. },
  8543. },
  8544. [
  8545. {
  8546. name: "Normal",
  8547. height: math.unit(7 + 8 / 12, "feet"),
  8548. default: true
  8549. },
  8550. ]
  8551. ))
  8552. characterMakers.push(() => makeCharacter(
  8553. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8554. {
  8555. front: {
  8556. height: math.unit(3.5, "inches"),
  8557. weight: math.unit(19, "grams"),
  8558. name: "Front",
  8559. image: {
  8560. source: "./media/characters/mallow/front.svg",
  8561. extra: 471 / 431
  8562. }
  8563. },
  8564. back: {
  8565. height: math.unit(3.5, "inches"),
  8566. weight: math.unit(19, "grams"),
  8567. name: "Back",
  8568. image: {
  8569. source: "./media/characters/mallow/back.svg",
  8570. extra: 471 / 431
  8571. }
  8572. },
  8573. },
  8574. [
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(3.5, "inches"),
  8578. default: true
  8579. },
  8580. ]
  8581. ))
  8582. characterMakers.push(() => makeCharacter(
  8583. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8584. {
  8585. front: {
  8586. height: math.unit(9, "feet"),
  8587. weight: math.unit(230, "kg"),
  8588. name: "Front",
  8589. image: {
  8590. source: "./media/characters/starry-aqua/front.svg"
  8591. }
  8592. },
  8593. back: {
  8594. height: math.unit(9, "feet"),
  8595. weight: math.unit(230, "kg"),
  8596. name: "Back",
  8597. image: {
  8598. source: "./media/characters/starry-aqua/back.svg"
  8599. }
  8600. },
  8601. hand: {
  8602. height: math.unit(9 * 0.1168, "feet"),
  8603. name: "Hand",
  8604. image: {
  8605. source: "./media/characters/starry-aqua/hand.svg"
  8606. }
  8607. },
  8608. foot: {
  8609. height: math.unit(9 * 0.18, "feet"),
  8610. name: "Foot",
  8611. image: {
  8612. source: "./media/characters/starry-aqua/foot.svg"
  8613. }
  8614. }
  8615. },
  8616. [
  8617. {
  8618. name: "Micro",
  8619. height: math.unit(3, "inches")
  8620. },
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(9, "feet")
  8624. },
  8625. {
  8626. name: "Macro",
  8627. height: math.unit(300, "feet"),
  8628. default: true
  8629. },
  8630. {
  8631. name: "Megamacro",
  8632. height: math.unit(3200, "feet")
  8633. }
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8638. {
  8639. front: {
  8640. height: math.unit(6, "feet"),
  8641. weight: math.unit(230, "lb"),
  8642. name: "Front",
  8643. image: {
  8644. source: "./media/characters/luka/front.svg",
  8645. extra: 1,
  8646. bottom: 0.025
  8647. }
  8648. },
  8649. },
  8650. [
  8651. {
  8652. name: "Normal",
  8653. height: math.unit(12 + 8 / 12, "feet"),
  8654. default: true
  8655. },
  8656. {
  8657. name: "Minimacro",
  8658. height: math.unit(20, "feet")
  8659. },
  8660. {
  8661. name: "Macro",
  8662. height: math.unit(250, "feet")
  8663. },
  8664. {
  8665. name: "Megamacro",
  8666. height: math.unit(5, "miles")
  8667. },
  8668. {
  8669. name: "Gigamacro",
  8670. height: math.unit(8000, "miles")
  8671. },
  8672. ]
  8673. ))
  8674. characterMakers.push(() => makeCharacter(
  8675. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8676. {
  8677. front: {
  8678. height: math.unit(6, "feet"),
  8679. weight: math.unit(150, "lb"),
  8680. name: "Front",
  8681. image: {
  8682. source: "./media/characters/natalie-nightring/front.svg",
  8683. extra: 1,
  8684. bottom: 0.06
  8685. }
  8686. },
  8687. },
  8688. [
  8689. {
  8690. name: "Uh Oh",
  8691. height: math.unit(0.1, "mm")
  8692. },
  8693. {
  8694. name: "Small",
  8695. height: math.unit(3, "inches")
  8696. },
  8697. {
  8698. name: "Human Scale",
  8699. height: math.unit(6, "feet")
  8700. },
  8701. {
  8702. name: "Librarian",
  8703. height: math.unit(50, "feet"),
  8704. default: true
  8705. },
  8706. {
  8707. name: "Immense",
  8708. height: math.unit(200, "miles")
  8709. },
  8710. ]
  8711. ))
  8712. characterMakers.push(() => makeCharacter(
  8713. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8714. {
  8715. front: {
  8716. height: math.unit(6, "feet"),
  8717. weight: math.unit(180, "lbs"),
  8718. name: "Front",
  8719. image: {
  8720. source: "./media/characters/danni-rosie/front.svg",
  8721. extra: 1260 / 1128,
  8722. bottom: 0.022
  8723. }
  8724. },
  8725. },
  8726. [
  8727. {
  8728. name: "Micro",
  8729. height: math.unit(2, "inches"),
  8730. default: true
  8731. },
  8732. ]
  8733. ))
  8734. characterMakers.push(() => makeCharacter(
  8735. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8736. {
  8737. front: {
  8738. height: math.unit(5 + 9 / 12, "feet"),
  8739. weight: math.unit(220, "lb"),
  8740. name: "Front",
  8741. image: {
  8742. source: "./media/characters/samantha-kruse/front.svg",
  8743. extra: (985 / 935),
  8744. bottom: 0.03
  8745. }
  8746. },
  8747. frontUndressed: {
  8748. height: math.unit(5 + 9 / 12, "feet"),
  8749. weight: math.unit(220, "lb"),
  8750. name: "Front (Undressed)",
  8751. image: {
  8752. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8753. extra: (973 / 923),
  8754. bottom: 0.025
  8755. }
  8756. },
  8757. fat: {
  8758. height: math.unit(5 + 9 / 12, "feet"),
  8759. weight: math.unit(900, "lb"),
  8760. name: "Front (Fat)",
  8761. image: {
  8762. source: "./media/characters/samantha-kruse/fat.svg",
  8763. extra: 2688 / 2561
  8764. }
  8765. },
  8766. },
  8767. [
  8768. {
  8769. name: "Normal",
  8770. height: math.unit(5 + 9 / 12, "feet"),
  8771. default: true
  8772. }
  8773. ]
  8774. ))
  8775. characterMakers.push(() => makeCharacter(
  8776. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8777. {
  8778. back: {
  8779. height: math.unit(5 + 4 / 12, "feet"),
  8780. weight: math.unit(4963, "lb"),
  8781. name: "Back",
  8782. image: {
  8783. source: "./media/characters/amelia-rosie/back.svg",
  8784. extra: 1113 / 963,
  8785. bottom: 0.01
  8786. }
  8787. },
  8788. },
  8789. [
  8790. {
  8791. name: "Level 0",
  8792. height: math.unit(5 + 4 / 12, "feet")
  8793. },
  8794. {
  8795. name: "Level 1",
  8796. height: math.unit(164597, "feet"),
  8797. default: true
  8798. },
  8799. {
  8800. name: "Level 2",
  8801. height: math.unit(956243, "miles")
  8802. },
  8803. {
  8804. name: "Level 3",
  8805. height: math.unit(29421709423, "miles")
  8806. },
  8807. {
  8808. name: "Level 4",
  8809. height: math.unit(154, "lightyears")
  8810. },
  8811. {
  8812. name: "Level 5",
  8813. height: math.unit(4738272, "lightyears")
  8814. },
  8815. {
  8816. name: "Level 6",
  8817. height: math.unit(145787152896, "lightyears")
  8818. },
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8823. {
  8824. front: {
  8825. height: math.unit(5 + 11 / 12, "feet"),
  8826. weight: math.unit(65, "kg"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/rook-kitara/front.svg",
  8830. extra: 1347 / 1274,
  8831. bottom: 0.005
  8832. }
  8833. },
  8834. },
  8835. [
  8836. {
  8837. name: "Totally Unfair",
  8838. height: math.unit(1.8, "mm")
  8839. },
  8840. {
  8841. name: "Lap Rookie",
  8842. height: math.unit(1.4, "feet")
  8843. },
  8844. {
  8845. name: "Normal",
  8846. height: math.unit(5 + 11 / 12, "feet"),
  8847. default: true
  8848. },
  8849. {
  8850. name: "How Did This Happen",
  8851. height: math.unit(80, "miles")
  8852. }
  8853. ]
  8854. ))
  8855. characterMakers.push(() => makeCharacter(
  8856. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8857. {
  8858. front: {
  8859. height: math.unit(7, "feet"),
  8860. weight: math.unit(300, "lb"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/pisces/front.svg",
  8864. extra: 2255 / 2115,
  8865. bottom: 0.03
  8866. }
  8867. },
  8868. back: {
  8869. height: math.unit(7, "feet"),
  8870. weight: math.unit(300, "lb"),
  8871. name: "Back",
  8872. image: {
  8873. source: "./media/characters/pisces/back.svg",
  8874. extra: 2146 / 2055,
  8875. bottom: 0.04
  8876. }
  8877. },
  8878. },
  8879. [
  8880. {
  8881. name: "Normal",
  8882. height: math.unit(7, "feet"),
  8883. default: true
  8884. },
  8885. {
  8886. name: "Swimming Pool",
  8887. height: math.unit(12.2, "meters")
  8888. },
  8889. {
  8890. name: "Olympic Swimming Pool",
  8891. height: math.unit(56.3, "meters")
  8892. },
  8893. {
  8894. name: "Lake Superior",
  8895. height: math.unit(93900, "meters")
  8896. },
  8897. {
  8898. name: "Mediterranean Sea",
  8899. height: math.unit(644457, "meters")
  8900. },
  8901. {
  8902. name: "World's Oceans",
  8903. height: math.unit(4567491, "meters")
  8904. },
  8905. ]
  8906. ))
  8907. characterMakers.push(() => makeCharacter(
  8908. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8909. {
  8910. front: {
  8911. height: math.unit(2.3, "meters"),
  8912. weight: math.unit(120, "kg"),
  8913. name: "Front",
  8914. image: {
  8915. source: "./media/characters/zelas/front.svg"
  8916. }
  8917. },
  8918. side: {
  8919. height: math.unit(2.3, "meters"),
  8920. weight: math.unit(120, "kg"),
  8921. name: "Side",
  8922. image: {
  8923. source: "./media/characters/zelas/side.svg"
  8924. }
  8925. },
  8926. back: {
  8927. height: math.unit(2.3, "meters"),
  8928. weight: math.unit(120, "kg"),
  8929. name: "Back",
  8930. image: {
  8931. source: "./media/characters/zelas/back.svg"
  8932. }
  8933. },
  8934. foot: {
  8935. height: math.unit(1.116, "feet"),
  8936. name: "Foot",
  8937. image: {
  8938. source: "./media/characters/zelas/foot.svg"
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Normal",
  8945. height: math.unit(2.3, "meters")
  8946. },
  8947. {
  8948. name: "Macro",
  8949. height: math.unit(30, "meters"),
  8950. default: true
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(1, "inch"),
  8959. weight: math.unit(0.21, "grams"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/talbot/front.svg",
  8963. extra: 594 / 544
  8964. }
  8965. },
  8966. },
  8967. [
  8968. {
  8969. name: "Micro",
  8970. height: math.unit(1, "inch"),
  8971. default: true
  8972. },
  8973. ]
  8974. ))
  8975. characterMakers.push(() => makeCharacter(
  8976. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8977. {
  8978. front: {
  8979. height: math.unit(3 + 3 / 12, "feet"),
  8980. weight: math.unit(51.8, "lb"),
  8981. name: "Front",
  8982. image: {
  8983. source: "./media/characters/fliss/front.svg",
  8984. extra: 840 / 640
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Teeny Tiny",
  8991. height: math.unit(1, "mm")
  8992. },
  8993. {
  8994. name: "Small",
  8995. height: math.unit(1, "inch"),
  8996. default: true
  8997. },
  8998. {
  8999. name: "Standard Sylveon",
  9000. height: math.unit(3 + 3 / 12, "feet")
  9001. },
  9002. {
  9003. name: "Large Nuisance",
  9004. height: math.unit(33, "feet")
  9005. },
  9006. {
  9007. name: "City Filler",
  9008. height: math.unit(3000, "feet")
  9009. },
  9010. {
  9011. name: "New Horizon",
  9012. height: math.unit(6000, "miles")
  9013. },
  9014. ]
  9015. ))
  9016. characterMakers.push(() => makeCharacter(
  9017. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9018. {
  9019. front: {
  9020. height: math.unit(5, "cm"),
  9021. weight: math.unit(1.94, "g"),
  9022. name: "Front",
  9023. image: {
  9024. source: "./media/characters/fleta/front.svg",
  9025. extra: 835 / 803
  9026. }
  9027. },
  9028. back: {
  9029. height: math.unit(5, "cm"),
  9030. weight: math.unit(1.94, "g"),
  9031. name: "Back",
  9032. image: {
  9033. source: "./media/characters/fleta/back.svg",
  9034. extra: 835 / 803
  9035. }
  9036. },
  9037. },
  9038. [
  9039. {
  9040. name: "Micro",
  9041. height: math.unit(5, "cm"),
  9042. default: true
  9043. },
  9044. ]
  9045. ))
  9046. characterMakers.push(() => makeCharacter(
  9047. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9048. {
  9049. front: {
  9050. height: math.unit(6, "feet"),
  9051. weight: math.unit(225, "lb"),
  9052. name: "Front",
  9053. image: {
  9054. source: "./media/characters/dominic/front.svg",
  9055. extra: 1770 / 1620,
  9056. bottom: 0.025
  9057. }
  9058. },
  9059. back: {
  9060. height: math.unit(6, "feet"),
  9061. weight: math.unit(225, "lb"),
  9062. name: "Back",
  9063. image: {
  9064. source: "./media/characters/dominic/back.svg",
  9065. extra: 1745 / 1620,
  9066. bottom: 0.065
  9067. }
  9068. },
  9069. },
  9070. [
  9071. {
  9072. name: "Nano",
  9073. height: math.unit(0.1, "mm")
  9074. },
  9075. {
  9076. name: "Micro-",
  9077. height: math.unit(1, "mm")
  9078. },
  9079. {
  9080. name: "Micro",
  9081. height: math.unit(4, "inches")
  9082. },
  9083. {
  9084. name: "Normal",
  9085. height: math.unit(6 + 4 / 12, "feet"),
  9086. default: true
  9087. },
  9088. {
  9089. name: "Macro",
  9090. height: math.unit(115, "feet")
  9091. },
  9092. {
  9093. name: "Macro+",
  9094. height: math.unit(955, "feet")
  9095. },
  9096. {
  9097. name: "Megamacro",
  9098. height: math.unit(8990, "feet")
  9099. },
  9100. {
  9101. name: "Gigmacro",
  9102. height: math.unit(9310, "miles")
  9103. },
  9104. {
  9105. name: "Teramacro",
  9106. height: math.unit(1567005010, "miles")
  9107. },
  9108. {
  9109. name: "Examacro",
  9110. height: math.unit(1425, "parsecs")
  9111. },
  9112. ]
  9113. ))
  9114. characterMakers.push(() => makeCharacter(
  9115. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9116. {
  9117. front: {
  9118. height: math.unit(400, "feet"),
  9119. weight: math.unit(44444444, "lb"),
  9120. name: "Front",
  9121. image: {
  9122. source: "./media/characters/major-colonel/front.svg"
  9123. }
  9124. },
  9125. back: {
  9126. height: math.unit(400, "feet"),
  9127. weight: math.unit(44444444, "lb"),
  9128. name: "Back",
  9129. image: {
  9130. source: "./media/characters/major-colonel/back.svg"
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Macro",
  9137. height: math.unit(400, "feet"),
  9138. default: true
  9139. },
  9140. ]
  9141. ))
  9142. characterMakers.push(() => makeCharacter(
  9143. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9144. {
  9145. catFront: {
  9146. height: math.unit(6, "feet"),
  9147. weight: math.unit(120, "lb"),
  9148. name: "Front (Cat Side)",
  9149. image: {
  9150. source: "./media/characters/axel-lycan/cat-front.svg",
  9151. extra: 430 / 402,
  9152. bottom: 43 / 472.35
  9153. }
  9154. },
  9155. catBack: {
  9156. height: math.unit(6, "feet"),
  9157. weight: math.unit(120, "lb"),
  9158. name: "Back (Cat Side)",
  9159. image: {
  9160. source: "./media/characters/axel-lycan/cat-back.svg",
  9161. extra: 447 / 419,
  9162. bottom: 23.3 / 469
  9163. }
  9164. },
  9165. wolfFront: {
  9166. height: math.unit(6, "feet"),
  9167. weight: math.unit(120, "lb"),
  9168. name: "Front (Wolf Side)",
  9169. image: {
  9170. source: "./media/characters/axel-lycan/wolf-front.svg",
  9171. extra: 485 / 456,
  9172. bottom: 19 / 504
  9173. }
  9174. },
  9175. wolfBack: {
  9176. height: math.unit(6, "feet"),
  9177. weight: math.unit(120, "lb"),
  9178. name: "Back (Wolf Side)",
  9179. image: {
  9180. source: "./media/characters/axel-lycan/wolf-back.svg",
  9181. extra: 475 / 438,
  9182. bottom: 39.2 / 514
  9183. }
  9184. },
  9185. },
  9186. [
  9187. {
  9188. name: "Macro",
  9189. height: math.unit(1, "km"),
  9190. default: true
  9191. },
  9192. ]
  9193. ))
  9194. characterMakers.push(() => makeCharacter(
  9195. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9196. {
  9197. front: {
  9198. height: math.unit(5 + 9 / 12, "feet"),
  9199. weight: math.unit(175, "lb"),
  9200. name: "Front",
  9201. image: {
  9202. source: "./media/characters/vanrel-hyena/front.svg",
  9203. extra: 1086 / 1010,
  9204. bottom: 0.04
  9205. }
  9206. },
  9207. },
  9208. [
  9209. {
  9210. name: "Normal",
  9211. height: math.unit(5 + 9 / 12, "feet"),
  9212. default: true
  9213. },
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9218. {
  9219. front: {
  9220. height: math.unit(6, "feet"),
  9221. weight: math.unit(103, "lb"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/abbott-absol/front.svg",
  9225. extra: 2010 / 1842
  9226. }
  9227. },
  9228. },
  9229. [
  9230. {
  9231. name: "Megamicro",
  9232. height: math.unit(0.1, "mm")
  9233. },
  9234. {
  9235. name: "Micro",
  9236. height: math.unit(1, "inch")
  9237. },
  9238. {
  9239. name: "Normal",
  9240. height: math.unit(6, "feet"),
  9241. default: true
  9242. },
  9243. ]
  9244. ))
  9245. characterMakers.push(() => makeCharacter(
  9246. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9247. {
  9248. front: {
  9249. height: math.unit(6, "feet"),
  9250. weight: math.unit(264, "lb"),
  9251. name: "Front",
  9252. image: {
  9253. source: "./media/characters/hector/front.svg",
  9254. extra: 2280 / 2130,
  9255. bottom: 0.07
  9256. }
  9257. },
  9258. },
  9259. [
  9260. {
  9261. name: "Normal",
  9262. height: math.unit(12.25, "foot"),
  9263. default: true
  9264. },
  9265. {
  9266. name: "Macro",
  9267. height: math.unit(160, "feet")
  9268. },
  9269. ]
  9270. ))
  9271. characterMakers.push(() => makeCharacter(
  9272. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9273. {
  9274. front: {
  9275. height: math.unit(6, "feet"),
  9276. weight: math.unit(150, "lb"),
  9277. name: "Front",
  9278. image: {
  9279. source: "./media/characters/sal/front.svg",
  9280. extra: 1846 / 1699,
  9281. bottom: 0.04
  9282. }
  9283. },
  9284. },
  9285. [
  9286. {
  9287. name: "Megamacro",
  9288. height: math.unit(10, "miles"),
  9289. default: true
  9290. },
  9291. ]
  9292. ))
  9293. characterMakers.push(() => makeCharacter(
  9294. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9295. {
  9296. front: {
  9297. height: math.unit(3, "meters"),
  9298. weight: math.unit(450, "kg"),
  9299. name: "front",
  9300. image: {
  9301. source: "./media/characters/ranger/front.svg",
  9302. extra: 2401 / 2243,
  9303. bottom: 0.05
  9304. }
  9305. },
  9306. },
  9307. [
  9308. {
  9309. name: "Normal",
  9310. height: math.unit(3, "meters"),
  9311. default: true
  9312. },
  9313. ]
  9314. ))
  9315. characterMakers.push(() => makeCharacter(
  9316. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9317. {
  9318. front: {
  9319. height: math.unit(14, "feet"),
  9320. weight: math.unit(800, "kg"),
  9321. name: "Front",
  9322. image: {
  9323. source: "./media/characters/theresa/front.svg",
  9324. extra: 3575 / 3346,
  9325. bottom: 0.03
  9326. }
  9327. },
  9328. },
  9329. [
  9330. {
  9331. name: "Normal",
  9332. height: math.unit(14, "feet"),
  9333. default: true
  9334. },
  9335. ]
  9336. ))
  9337. characterMakers.push(() => makeCharacter(
  9338. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9339. {
  9340. front: {
  9341. height: math.unit(6, "feet"),
  9342. weight: math.unit(3, "kg"),
  9343. name: "Front",
  9344. image: {
  9345. source: "./media/characters/ine/front.svg",
  9346. extra: 678 / 539,
  9347. bottom: 0.023
  9348. }
  9349. },
  9350. },
  9351. [
  9352. {
  9353. name: "Normal",
  9354. height: math.unit(2.265, "feet"),
  9355. default: true
  9356. },
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(5, "feet"),
  9364. weight: math.unit(30, "kg"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/vial/front.svg",
  9368. extra: 1365 / 1277,
  9369. bottom: 0.04
  9370. }
  9371. },
  9372. },
  9373. [
  9374. {
  9375. name: "Normal",
  9376. height: math.unit(5, "feet"),
  9377. default: true
  9378. },
  9379. ]
  9380. ))
  9381. characterMakers.push(() => makeCharacter(
  9382. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9383. {
  9384. side: {
  9385. height: math.unit(3.4, "meters"),
  9386. weight: math.unit(1000, "lb"),
  9387. name: "Side",
  9388. image: {
  9389. source: "./media/characters/rovoska/side.svg",
  9390. extra: 4403 / 1515
  9391. }
  9392. },
  9393. },
  9394. [
  9395. {
  9396. name: "Normal",
  9397. height: math.unit(3.4, "meters"),
  9398. default: true
  9399. },
  9400. ]
  9401. ))
  9402. characterMakers.push(() => makeCharacter(
  9403. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9404. {
  9405. front: {
  9406. height: math.unit(8, "feet"),
  9407. weight: math.unit(315, "lb"),
  9408. name: "Front",
  9409. image: {
  9410. source: "./media/characters/gunner-rotthbauer/front.svg"
  9411. }
  9412. },
  9413. back: {
  9414. height: math.unit(8, "feet"),
  9415. weight: math.unit(315, "lb"),
  9416. name: "Back",
  9417. image: {
  9418. source: "./media/characters/gunner-rotthbauer/back.svg"
  9419. }
  9420. },
  9421. },
  9422. [
  9423. {
  9424. name: "Micro",
  9425. height: math.unit(3.5, "inches")
  9426. },
  9427. {
  9428. name: "Normal",
  9429. height: math.unit(8, "feet"),
  9430. default: true
  9431. },
  9432. {
  9433. name: "Macro",
  9434. height: math.unit(250, "feet")
  9435. },
  9436. {
  9437. name: "Megamacro",
  9438. height: math.unit(1, "AU")
  9439. },
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9444. {
  9445. front: {
  9446. height: math.unit(5 + 5 / 12, "feet"),
  9447. weight: math.unit(140, "lb"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/allatia/front.svg",
  9451. extra: 1227 / 1180,
  9452. bottom: 0.027
  9453. }
  9454. },
  9455. },
  9456. [
  9457. {
  9458. name: "Normal",
  9459. height: math.unit(5 + 5 / 12, "feet")
  9460. },
  9461. {
  9462. name: "Macro",
  9463. height: math.unit(250, "feet"),
  9464. default: true
  9465. },
  9466. {
  9467. name: "Megamacro",
  9468. height: math.unit(8, "miles")
  9469. }
  9470. ]
  9471. ))
  9472. characterMakers.push(() => makeCharacter(
  9473. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9474. {
  9475. front: {
  9476. height: math.unit(6, "feet"),
  9477. weight: math.unit(120, "lb"),
  9478. name: "Front",
  9479. image: {
  9480. source: "./media/characters/tene/front.svg",
  9481. extra: 1728 / 1578,
  9482. bottom: 0.022
  9483. }
  9484. },
  9485. stomping: {
  9486. height: math.unit(2.025, "meters"),
  9487. weight: math.unit(120, "lb"),
  9488. name: "Stomping",
  9489. image: {
  9490. source: "./media/characters/tene/stomping.svg",
  9491. extra: 938 / 873,
  9492. bottom: 0.01
  9493. }
  9494. },
  9495. sitting: {
  9496. height: math.unit(1, "meter"),
  9497. weight: math.unit(120, "lb"),
  9498. name: "Sitting",
  9499. image: {
  9500. source: "./media/characters/tene/sitting.svg",
  9501. extra: 437 / 415,
  9502. bottom: 0.1
  9503. }
  9504. },
  9505. feral: {
  9506. height: math.unit(3.9, "feet"),
  9507. weight: math.unit(250, "lb"),
  9508. name: "Feral",
  9509. image: {
  9510. source: "./media/characters/tene/feral.svg",
  9511. extra: 717 / 458,
  9512. bottom: 0.179
  9513. }
  9514. },
  9515. },
  9516. [
  9517. {
  9518. name: "Normal",
  9519. height: math.unit(6, "feet")
  9520. },
  9521. {
  9522. name: "Macro",
  9523. height: math.unit(300, "feet"),
  9524. default: true
  9525. },
  9526. {
  9527. name: "Megamacro",
  9528. height: math.unit(5, "miles")
  9529. },
  9530. ]
  9531. ))
  9532. characterMakers.push(() => makeCharacter(
  9533. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9534. {
  9535. side: {
  9536. height: math.unit(6, "feet"),
  9537. name: "Side",
  9538. image: {
  9539. source: "./media/characters/evander/side.svg",
  9540. extra: 877 / 477
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Normal",
  9547. height: math.unit(0.83, "meters"),
  9548. default: true
  9549. },
  9550. ]
  9551. ))
  9552. characterMakers.push(() => makeCharacter(
  9553. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9554. {
  9555. front: {
  9556. height: math.unit(12, "feet"),
  9557. weight: math.unit(1000, "lb"),
  9558. name: "Front",
  9559. image: {
  9560. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9561. extra: 1762 / 1611
  9562. }
  9563. },
  9564. back: {
  9565. height: math.unit(12, "feet"),
  9566. weight: math.unit(1000, "lb"),
  9567. name: "Back",
  9568. image: {
  9569. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9570. extra: 1762 / 1611
  9571. }
  9572. },
  9573. },
  9574. [
  9575. {
  9576. name: "Normal",
  9577. height: math.unit(12, "feet"),
  9578. default: true
  9579. },
  9580. {
  9581. name: "Kaiju",
  9582. height: math.unit(150, "feet")
  9583. },
  9584. ]
  9585. ))
  9586. characterMakers.push(() => makeCharacter(
  9587. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9588. {
  9589. front: {
  9590. height: math.unit(6, "feet"),
  9591. weight: math.unit(150, "lb"),
  9592. name: "Front",
  9593. image: {
  9594. source: "./media/characters/zero-alurus/front.svg"
  9595. }
  9596. },
  9597. back: {
  9598. height: math.unit(6, "feet"),
  9599. weight: math.unit(150, "lb"),
  9600. name: "Back",
  9601. image: {
  9602. source: "./media/characters/zero-alurus/back.svg"
  9603. }
  9604. },
  9605. },
  9606. [
  9607. {
  9608. name: "Normal",
  9609. height: math.unit(5 + 10 / 12, "feet")
  9610. },
  9611. {
  9612. name: "Macro",
  9613. height: math.unit(60, "feet"),
  9614. default: true
  9615. },
  9616. {
  9617. name: "Macro+",
  9618. height: math.unit(450, "feet")
  9619. },
  9620. ]
  9621. ))
  9622. characterMakers.push(() => makeCharacter(
  9623. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9624. {
  9625. front: {
  9626. height: math.unit(6, "feet"),
  9627. weight: math.unit(200, "lb"),
  9628. name: "Front",
  9629. image: {
  9630. source: "./media/characters/mega-shi/front.svg",
  9631. extra: 1279 / 1250,
  9632. bottom: 0.02
  9633. }
  9634. },
  9635. back: {
  9636. height: math.unit(6, "feet"),
  9637. weight: math.unit(200, "lb"),
  9638. name: "Back",
  9639. image: {
  9640. source: "./media/characters/mega-shi/back.svg",
  9641. extra: 1279 / 1250,
  9642. bottom: 0.02
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Micro",
  9649. height: math.unit(16 + 6 / 12, "feet")
  9650. },
  9651. {
  9652. name: "Third Dimension",
  9653. height: math.unit(40, "meters")
  9654. },
  9655. {
  9656. name: "Normal",
  9657. height: math.unit(660, "feet"),
  9658. default: true
  9659. },
  9660. {
  9661. name: "Megamacro",
  9662. height: math.unit(10, "miles")
  9663. },
  9664. {
  9665. name: "Planetary Launch",
  9666. height: math.unit(500, "miles")
  9667. },
  9668. {
  9669. name: "Interstellar",
  9670. height: math.unit(1e9, "miles")
  9671. },
  9672. {
  9673. name: "Leaving the Universe",
  9674. height: math.unit(1, "gigaparsec")
  9675. },
  9676. {
  9677. name: "Travelling Universes",
  9678. height: math.unit(30e15, "parsecs")
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(6, "feet"),
  9687. weight: math.unit(150, "lb"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/odyssey/front.svg",
  9691. extra: 1782 / 1582,
  9692. bottom: 0.01
  9693. }
  9694. },
  9695. side: {
  9696. height: math.unit(5.7, "feet"),
  9697. weight: math.unit(140, "lb"),
  9698. name: "Side",
  9699. image: {
  9700. source: "./media/characters/odyssey/side.svg",
  9701. extra: 6462 / 5700
  9702. }
  9703. },
  9704. },
  9705. [
  9706. {
  9707. name: "Normal",
  9708. height: math.unit(5 + 4 / 12, "feet")
  9709. },
  9710. {
  9711. name: "Macro",
  9712. height: math.unit(1, "km")
  9713. },
  9714. {
  9715. name: "Megamacro",
  9716. height: math.unit(3000, "km")
  9717. },
  9718. {
  9719. name: "Gigamacro",
  9720. height: math.unit(1, "AU"),
  9721. default: true
  9722. },
  9723. {
  9724. name: "Omniversal",
  9725. height: math.unit(100e14, "lightyears")
  9726. },
  9727. ]
  9728. ))
  9729. characterMakers.push(() => makeCharacter(
  9730. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9731. {
  9732. front: {
  9733. height: math.unit(6, "feet"),
  9734. weight: math.unit(300, "lb"),
  9735. name: "Front",
  9736. image: {
  9737. source: "./media/characters/mekuto/front.svg",
  9738. extra: 921 / 832,
  9739. bottom: 0.03
  9740. }
  9741. },
  9742. hand: {
  9743. height: math.unit(6 / 10.24, "feet"),
  9744. name: "Hand",
  9745. image: {
  9746. source: "./media/characters/mekuto/hand.svg"
  9747. }
  9748. },
  9749. foot: {
  9750. height: math.unit(6 / 5.05, "feet"),
  9751. name: "Foot",
  9752. image: {
  9753. source: "./media/characters/mekuto/foot.svg"
  9754. }
  9755. },
  9756. },
  9757. [
  9758. {
  9759. name: "Minimicro",
  9760. height: math.unit(0.2, "inches")
  9761. },
  9762. {
  9763. name: "Micro",
  9764. height: math.unit(1.5, "inches")
  9765. },
  9766. {
  9767. name: "Normal",
  9768. height: math.unit(5 + 11 / 12, "feet"),
  9769. default: true
  9770. },
  9771. {
  9772. name: "Minimacro",
  9773. height: math.unit(17 + 9 / 12, "feet")
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(177.5, "feet")
  9778. },
  9779. {
  9780. name: "Megamacro",
  9781. height: math.unit(152, "miles")
  9782. },
  9783. ]
  9784. ))
  9785. characterMakers.push(() => makeCharacter(
  9786. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9787. {
  9788. front: {
  9789. height: math.unit(6.5, "inches"),
  9790. weight: math.unit(13, "oz"),
  9791. name: "Front",
  9792. image: {
  9793. source: "./media/characters/dafydd-tomos/front.svg",
  9794. extra: 2990 / 2603,
  9795. bottom: 0.03
  9796. }
  9797. },
  9798. },
  9799. [
  9800. {
  9801. name: "Micro",
  9802. height: math.unit(6.5, "inches"),
  9803. default: true
  9804. },
  9805. ]
  9806. ))
  9807. characterMakers.push(() => makeCharacter(
  9808. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9809. {
  9810. front: {
  9811. height: math.unit(6, "feet"),
  9812. weight: math.unit(150, "lb"),
  9813. name: "Front",
  9814. image: {
  9815. source: "./media/characters/splinter/front.svg",
  9816. extra: 2990 / 2882,
  9817. bottom: 0.04
  9818. }
  9819. },
  9820. back: {
  9821. height: math.unit(6, "feet"),
  9822. weight: math.unit(150, "lb"),
  9823. name: "Back",
  9824. image: {
  9825. source: "./media/characters/splinter/back.svg",
  9826. extra: 2990 / 2882,
  9827. bottom: 0.04
  9828. }
  9829. },
  9830. },
  9831. [
  9832. {
  9833. name: "Normal",
  9834. height: math.unit(6, "feet")
  9835. },
  9836. {
  9837. name: "Macro",
  9838. height: math.unit(230, "meters"),
  9839. default: true
  9840. },
  9841. ]
  9842. ))
  9843. characterMakers.push(() => makeCharacter(
  9844. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9845. {
  9846. front: {
  9847. height: math.unit(4 + 10 / 12, "feet"),
  9848. weight: math.unit(480, "lb"),
  9849. name: "Front",
  9850. image: {
  9851. source: "./media/characters/snow-gabumon/front.svg",
  9852. extra: 1140 / 963,
  9853. bottom: 0.058
  9854. }
  9855. },
  9856. back: {
  9857. height: math.unit(4 + 10 / 12, "feet"),
  9858. weight: math.unit(480, "lb"),
  9859. name: "Back",
  9860. image: {
  9861. source: "./media/characters/snow-gabumon/back.svg",
  9862. extra: 1115 / 962,
  9863. bottom: 0.041
  9864. }
  9865. },
  9866. frontUndresed: {
  9867. height: math.unit(4 + 10 / 12, "feet"),
  9868. weight: math.unit(480, "lb"),
  9869. name: "Front (Undressed)",
  9870. image: {
  9871. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9872. extra: 1061 / 960,
  9873. bottom: 0.045
  9874. }
  9875. },
  9876. },
  9877. [
  9878. {
  9879. name: "Micro",
  9880. height: math.unit(1, "inch")
  9881. },
  9882. {
  9883. name: "Normal",
  9884. height: math.unit(4 + 10 / 12, "feet"),
  9885. default: true
  9886. },
  9887. {
  9888. name: "Macro",
  9889. height: math.unit(200, "feet")
  9890. },
  9891. {
  9892. name: "Megamacro",
  9893. height: math.unit(120, "miles")
  9894. },
  9895. {
  9896. name: "Gigamacro",
  9897. height: math.unit(9800, "miles")
  9898. },
  9899. ]
  9900. ))
  9901. characterMakers.push(() => makeCharacter(
  9902. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9903. {
  9904. front: {
  9905. height: math.unit(1.7, "meters"),
  9906. weight: math.unit(140, "lb"),
  9907. name: "Front",
  9908. image: {
  9909. source: "./media/characters/moody/front.svg",
  9910. extra: 3226 / 3007,
  9911. bottom: 0.087
  9912. }
  9913. },
  9914. },
  9915. [
  9916. {
  9917. name: "Micro",
  9918. height: math.unit(1, "mm")
  9919. },
  9920. {
  9921. name: "Normal",
  9922. height: math.unit(1.7, "meters"),
  9923. default: true
  9924. },
  9925. {
  9926. name: "Macro",
  9927. height: math.unit(80, "meters")
  9928. },
  9929. {
  9930. name: "Macro+",
  9931. height: math.unit(500, "meters")
  9932. },
  9933. ]
  9934. ))
  9935. characterMakers.push(() => makeCharacter(
  9936. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9937. {
  9938. front: {
  9939. height: math.unit(6, "feet"),
  9940. weight: math.unit(150, "lb"),
  9941. name: "Front",
  9942. image: {
  9943. source: "./media/characters/zyas/front.svg",
  9944. extra: 1180 / 1120,
  9945. bottom: 0.045
  9946. }
  9947. },
  9948. },
  9949. [
  9950. {
  9951. name: "Normal",
  9952. height: math.unit(10, "feet"),
  9953. default: true
  9954. },
  9955. {
  9956. name: "Macro",
  9957. height: math.unit(500, "feet")
  9958. },
  9959. {
  9960. name: "Megamacro",
  9961. height: math.unit(5, "miles")
  9962. },
  9963. {
  9964. name: "Teramacro",
  9965. height: math.unit(150000, "miles")
  9966. },
  9967. ]
  9968. ))
  9969. characterMakers.push(() => makeCharacter(
  9970. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9971. {
  9972. front: {
  9973. height: math.unit(6, "feet"),
  9974. weight: math.unit(150, "lb"),
  9975. name: "Front",
  9976. image: {
  9977. source: "./media/characters/cuon/front.svg",
  9978. extra: 1390 / 1320,
  9979. bottom: 0.008
  9980. }
  9981. },
  9982. },
  9983. [
  9984. {
  9985. name: "Micro",
  9986. height: math.unit(3, "inches")
  9987. },
  9988. {
  9989. name: "Normal",
  9990. height: math.unit(18 + 9 / 12, "feet"),
  9991. default: true
  9992. },
  9993. {
  9994. name: "Macro",
  9995. height: math.unit(360, "feet")
  9996. },
  9997. {
  9998. name: "Megamacro",
  9999. height: math.unit(360, "miles")
  10000. },
  10001. ]
  10002. ))
  10003. characterMakers.push(() => makeCharacter(
  10004. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10005. {
  10006. front: {
  10007. height: math.unit(2.4, "meters"),
  10008. weight: math.unit(70, "kg"),
  10009. name: "Front",
  10010. image: {
  10011. source: "./media/characters/nyanuxk/front.svg",
  10012. extra: 1172 / 1084,
  10013. bottom: 0.065
  10014. }
  10015. },
  10016. side: {
  10017. height: math.unit(2.4, "meters"),
  10018. weight: math.unit(70, "kg"),
  10019. name: "Side",
  10020. image: {
  10021. source: "./media/characters/nyanuxk/side.svg",
  10022. extra: 1190 / 1132,
  10023. bottom: 0.007
  10024. }
  10025. },
  10026. back: {
  10027. height: math.unit(2.4, "meters"),
  10028. weight: math.unit(70, "kg"),
  10029. name: "Back",
  10030. image: {
  10031. source: "./media/characters/nyanuxk/back.svg",
  10032. extra: 1200 / 1141,
  10033. bottom: 0.015
  10034. }
  10035. },
  10036. foot: {
  10037. height: math.unit(0.52, "meters"),
  10038. name: "Foot",
  10039. image: {
  10040. source: "./media/characters/nyanuxk/foot.svg"
  10041. }
  10042. },
  10043. },
  10044. [
  10045. {
  10046. name: "Micro",
  10047. height: math.unit(2, "cm")
  10048. },
  10049. {
  10050. name: "Normal",
  10051. height: math.unit(2.4, "meters"),
  10052. default: true
  10053. },
  10054. {
  10055. name: "Smaller Macro",
  10056. height: math.unit(120, "meters")
  10057. },
  10058. {
  10059. name: "Bigger Macro",
  10060. height: math.unit(1.2, "km")
  10061. },
  10062. {
  10063. name: "Megamacro",
  10064. height: math.unit(15, "kilometers")
  10065. },
  10066. {
  10067. name: "Gigamacro",
  10068. height: math.unit(2000, "km")
  10069. },
  10070. {
  10071. name: "Teramacro",
  10072. height: math.unit(500000, "km")
  10073. },
  10074. ]
  10075. ))
  10076. characterMakers.push(() => makeCharacter(
  10077. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10078. {
  10079. side: {
  10080. height: math.unit(6, "feet"),
  10081. name: "Side",
  10082. image: {
  10083. source: "./media/characters/ailbhe/side.svg",
  10084. extra: 757 / 464,
  10085. bottom: 0.041
  10086. }
  10087. },
  10088. },
  10089. [
  10090. {
  10091. name: "Normal",
  10092. height: math.unit(1.07, "meters"),
  10093. default: true
  10094. },
  10095. ]
  10096. ))
  10097. characterMakers.push(() => makeCharacter(
  10098. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10099. {
  10100. front: {
  10101. height: math.unit(6, "feet"),
  10102. weight: math.unit(120, "kg"),
  10103. name: "Front",
  10104. image: {
  10105. source: "./media/characters/zevulfius/front.svg",
  10106. extra: 965 / 903
  10107. }
  10108. },
  10109. side: {
  10110. height: math.unit(6, "feet"),
  10111. weight: math.unit(120, "kg"),
  10112. name: "Side",
  10113. image: {
  10114. source: "./media/characters/zevulfius/side.svg",
  10115. extra: 939 / 900
  10116. }
  10117. },
  10118. back: {
  10119. height: math.unit(6, "feet"),
  10120. weight: math.unit(120, "kg"),
  10121. name: "Back",
  10122. image: {
  10123. source: "./media/characters/zevulfius/back.svg",
  10124. extra: 918 / 854,
  10125. bottom: 0.005
  10126. }
  10127. },
  10128. foot: {
  10129. height: math.unit(6 / 3.72, "feet"),
  10130. name: "Foot",
  10131. image: {
  10132. source: "./media/characters/zevulfius/foot.svg"
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Macro",
  10139. height: math.unit(750, "meters")
  10140. },
  10141. {
  10142. name: "Megamacro",
  10143. height: math.unit(20, "km"),
  10144. default: true
  10145. },
  10146. {
  10147. name: "Gigamacro",
  10148. height: math.unit(2000, "km")
  10149. },
  10150. {
  10151. name: "Teramacro",
  10152. height: math.unit(250000, "km")
  10153. },
  10154. ]
  10155. ))
  10156. characterMakers.push(() => makeCharacter(
  10157. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10158. {
  10159. front: {
  10160. height: math.unit(100, "feet"),
  10161. weight: math.unit(350, "kg"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/rikes/front.svg",
  10165. extra: 1565 / 1483,
  10166. bottom: 0.017
  10167. }
  10168. },
  10169. },
  10170. [
  10171. {
  10172. name: "Macro",
  10173. height: math.unit(100, "feet"),
  10174. default: true
  10175. },
  10176. ]
  10177. ))
  10178. characterMakers.push(() => makeCharacter(
  10179. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10180. {
  10181. anthro: {
  10182. height: math.unit(8, "feet"),
  10183. weight: math.unit(120, "kg"),
  10184. name: "Anthro",
  10185. image: {
  10186. source: "./media/characters/adam-silver-mane/anthro.svg",
  10187. extra: 5743 / 5339,
  10188. bottom: 0.07
  10189. }
  10190. },
  10191. taur: {
  10192. height: math.unit(16, "feet"),
  10193. weight: math.unit(1500, "kg"),
  10194. name: "Taur",
  10195. image: {
  10196. source: "./media/characters/adam-silver-mane/taur.svg",
  10197. extra: 1713 / 1571,
  10198. bottom: 0.01
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Normal",
  10205. height: math.unit(8, "feet")
  10206. },
  10207. {
  10208. name: "Minimacro",
  10209. height: math.unit(80, "feet")
  10210. },
  10211. {
  10212. name: "Macro",
  10213. height: math.unit(800, "feet"),
  10214. default: true
  10215. },
  10216. {
  10217. name: "Megamacro",
  10218. height: math.unit(8000, "feet")
  10219. },
  10220. {
  10221. name: "Gigamacro",
  10222. height: math.unit(800, "miles")
  10223. },
  10224. {
  10225. name: "Teramacro",
  10226. height: math.unit(80000, "miles")
  10227. },
  10228. {
  10229. name: "Celestial",
  10230. height: math.unit(8e6, "miles")
  10231. },
  10232. {
  10233. name: "Star Dragon",
  10234. height: math.unit(800000, "parsecs")
  10235. },
  10236. {
  10237. name: "Godly",
  10238. height: math.unit(800, "teraparsecs")
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(6, "feet"),
  10247. weight: math.unit(150, "lb"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/ky'owin/front.svg",
  10251. extra: 3888 / 3068,
  10252. bottom: 0.015
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Normal",
  10259. height: math.unit(6 + 8 / 12, "feet")
  10260. },
  10261. {
  10262. name: "Large",
  10263. height: math.unit(68, "feet")
  10264. },
  10265. {
  10266. name: "Macro",
  10267. height: math.unit(132, "feet")
  10268. },
  10269. {
  10270. name: "Macro+",
  10271. height: math.unit(340, "feet")
  10272. },
  10273. {
  10274. name: "Macro++",
  10275. height: math.unit(680, "feet"),
  10276. default: true
  10277. },
  10278. {
  10279. name: "Megamacro",
  10280. height: math.unit(1, "mile")
  10281. },
  10282. {
  10283. name: "Megamacro+",
  10284. height: math.unit(10, "miles")
  10285. },
  10286. ]
  10287. ))
  10288. characterMakers.push(() => makeCharacter(
  10289. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10290. {
  10291. front: {
  10292. height: math.unit(4, "feet"),
  10293. weight: math.unit(50, "lb"),
  10294. name: "Front",
  10295. image: {
  10296. source: "./media/characters/mal/front.svg",
  10297. extra: 785 / 724,
  10298. bottom: 0.07
  10299. }
  10300. },
  10301. },
  10302. [
  10303. {
  10304. name: "Micro",
  10305. height: math.unit(4, "inches")
  10306. },
  10307. {
  10308. name: "Normal",
  10309. height: math.unit(4, "feet"),
  10310. default: true
  10311. },
  10312. {
  10313. name: "Macro",
  10314. height: math.unit(200, "feet")
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10320. {
  10321. front: {
  10322. height: math.unit(6, "feet"),
  10323. weight: math.unit(150, "lb"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/jordan-deware/front.svg",
  10327. extra: 1191 / 1012
  10328. }
  10329. },
  10330. },
  10331. [
  10332. {
  10333. name: "Nano",
  10334. height: math.unit(0.01, "mm")
  10335. },
  10336. {
  10337. name: "Minimicro",
  10338. height: math.unit(1, "mm")
  10339. },
  10340. {
  10341. name: "Micro",
  10342. height: math.unit(0.5, "inches")
  10343. },
  10344. {
  10345. name: "Normal",
  10346. height: math.unit(4, "feet"),
  10347. default: true
  10348. },
  10349. {
  10350. name: "Minimacro",
  10351. height: math.unit(40, "meters")
  10352. },
  10353. {
  10354. name: "Small Macro",
  10355. height: math.unit(400, "meters")
  10356. },
  10357. {
  10358. name: "Macro",
  10359. height: math.unit(4, "miles")
  10360. },
  10361. {
  10362. name: "Megamacro",
  10363. height: math.unit(40, "miles")
  10364. },
  10365. {
  10366. name: "Megamacro+",
  10367. height: math.unit(400, "miles")
  10368. },
  10369. {
  10370. name: "Gigamacro",
  10371. height: math.unit(400000, "miles")
  10372. },
  10373. ]
  10374. ))
  10375. characterMakers.push(() => makeCharacter(
  10376. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10377. {
  10378. side: {
  10379. height: math.unit(6, "feet"),
  10380. weight: math.unit(150, "lb"),
  10381. name: "Side",
  10382. image: {
  10383. source: "./media/characters/kimiko/side.svg",
  10384. extra: 600 / 358
  10385. }
  10386. },
  10387. },
  10388. [
  10389. {
  10390. name: "Normal",
  10391. height: math.unit(15, "feet"),
  10392. default: true
  10393. },
  10394. {
  10395. name: "Macro",
  10396. height: math.unit(220, "feet")
  10397. },
  10398. {
  10399. name: "Macro+",
  10400. height: math.unit(1450, "feet")
  10401. },
  10402. {
  10403. name: "Megamacro",
  10404. height: math.unit(11500, "feet")
  10405. },
  10406. {
  10407. name: "Gigamacro",
  10408. height: math.unit(9500, "miles")
  10409. },
  10410. {
  10411. name: "Teramacro",
  10412. height: math.unit(2208005005, "miles")
  10413. },
  10414. {
  10415. name: "Examacro",
  10416. height: math.unit(2750, "parsecs")
  10417. },
  10418. {
  10419. name: "Zettamacro",
  10420. height: math.unit(101500, "parsecs")
  10421. },
  10422. ]
  10423. ))
  10424. characterMakers.push(() => makeCharacter(
  10425. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10426. {
  10427. front: {
  10428. height: math.unit(6, "feet"),
  10429. weight: math.unit(70, "kg"),
  10430. name: "Front",
  10431. image: {
  10432. source: "./media/characters/andrew-sleepy/front.svg"
  10433. }
  10434. },
  10435. side: {
  10436. height: math.unit(6, "feet"),
  10437. weight: math.unit(70, "kg"),
  10438. name: "Side",
  10439. image: {
  10440. source: "./media/characters/andrew-sleepy/side.svg"
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Micro",
  10447. height: math.unit(1, "mm"),
  10448. default: true
  10449. },
  10450. ]
  10451. ))
  10452. characterMakers.push(() => makeCharacter(
  10453. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10454. {
  10455. front: {
  10456. height: math.unit(6, "feet"),
  10457. weight: math.unit(150, "lb"),
  10458. name: "Front",
  10459. image: {
  10460. source: "./media/characters/judio/front.svg",
  10461. extra: 1258 / 1110
  10462. }
  10463. },
  10464. },
  10465. [
  10466. {
  10467. name: "Normal",
  10468. height: math.unit(5 + 6 / 12, "feet")
  10469. },
  10470. {
  10471. name: "Macro",
  10472. height: math.unit(1000, "feet"),
  10473. default: true
  10474. },
  10475. {
  10476. name: "Megamacro",
  10477. height: math.unit(10, "miles")
  10478. },
  10479. ]
  10480. ))
  10481. characterMakers.push(() => makeCharacter(
  10482. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10483. {
  10484. front: {
  10485. height: math.unit(6, "feet"),
  10486. weight: math.unit(68, "kg"),
  10487. name: "Front",
  10488. image: {
  10489. source: "./media/characters/nomaxice/front.svg",
  10490. extra: 1498 / 1073,
  10491. bottom: 0.075
  10492. }
  10493. },
  10494. foot: {
  10495. height: math.unit(1.1, "feet"),
  10496. name: "Foot",
  10497. image: {
  10498. source: "./media/characters/nomaxice/foot.svg"
  10499. }
  10500. },
  10501. },
  10502. [
  10503. {
  10504. name: "Micro",
  10505. height: math.unit(8, "cm")
  10506. },
  10507. {
  10508. name: "Norm",
  10509. height: math.unit(1.82, "m")
  10510. },
  10511. {
  10512. name: "Norm+",
  10513. height: math.unit(8.8, "feet")
  10514. },
  10515. {
  10516. name: "Big",
  10517. height: math.unit(8, "meters"),
  10518. default: true
  10519. },
  10520. {
  10521. name: "Macro",
  10522. height: math.unit(18, "meters")
  10523. },
  10524. {
  10525. name: "Macro+",
  10526. height: math.unit(88, "meters")
  10527. },
  10528. ]
  10529. ))
  10530. characterMakers.push(() => makeCharacter(
  10531. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10532. {
  10533. front: {
  10534. height: math.unit(12, "feet"),
  10535. weight: math.unit(1.5, "tons"),
  10536. name: "Front",
  10537. image: {
  10538. source: "./media/characters/dydros/front.svg",
  10539. extra: 863 / 800,
  10540. bottom: 0.015
  10541. }
  10542. },
  10543. back: {
  10544. height: math.unit(12, "feet"),
  10545. weight: math.unit(1.5, "tons"),
  10546. name: "Back",
  10547. image: {
  10548. source: "./media/characters/dydros/back.svg",
  10549. extra: 900 / 843,
  10550. bottom: 0.005
  10551. }
  10552. },
  10553. },
  10554. [
  10555. {
  10556. name: "Normal",
  10557. height: math.unit(12, "feet"),
  10558. default: true
  10559. },
  10560. ]
  10561. ))
  10562. characterMakers.push(() => makeCharacter(
  10563. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10564. {
  10565. front: {
  10566. height: math.unit(6, "feet"),
  10567. weight: math.unit(100, "kg"),
  10568. name: "Front",
  10569. image: {
  10570. source: "./media/characters/riggi/front.svg",
  10571. extra: 5787 / 5303
  10572. }
  10573. },
  10574. hyper: {
  10575. height: math.unit(6 * 5 / 3, "feet"),
  10576. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10577. name: "Hyper",
  10578. image: {
  10579. source: "./media/characters/riggi/hyper.svg",
  10580. extra: 3595 / 3485
  10581. }
  10582. },
  10583. },
  10584. [
  10585. {
  10586. name: "Small Macro",
  10587. height: math.unit(50, "feet")
  10588. },
  10589. {
  10590. name: "Default",
  10591. height: math.unit(200, "feet"),
  10592. default: true
  10593. },
  10594. {
  10595. name: "Loom",
  10596. height: math.unit(10000, "feet")
  10597. },
  10598. {
  10599. name: "Cruising Altitude",
  10600. height: math.unit(30000, "feet")
  10601. },
  10602. {
  10603. name: "Megamacro",
  10604. height: math.unit(100, "miles")
  10605. },
  10606. {
  10607. name: "Continent Sized",
  10608. height: math.unit(2800, "miles")
  10609. },
  10610. {
  10611. name: "Earth Sized",
  10612. height: math.unit(8000, "miles")
  10613. },
  10614. ]
  10615. ))
  10616. characterMakers.push(() => makeCharacter(
  10617. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10618. {
  10619. front: {
  10620. height: math.unit(6, "feet"),
  10621. weight: math.unit(250, "lb"),
  10622. name: "Front",
  10623. image: {
  10624. source: "./media/characters/alexi/front.svg",
  10625. extra: 3483 / 3291,
  10626. bottom: 0.04
  10627. }
  10628. },
  10629. back: {
  10630. height: math.unit(6, "feet"),
  10631. weight: math.unit(250, "lb"),
  10632. name: "Back",
  10633. image: {
  10634. source: "./media/characters/alexi/back.svg",
  10635. extra: 3533 / 3356,
  10636. bottom: 0.021
  10637. }
  10638. },
  10639. frontTransforming: {
  10640. height: math.unit(8.58, "feet"),
  10641. weight: math.unit(1300, "lb"),
  10642. name: "Transforming",
  10643. image: {
  10644. source: "./media/characters/alexi/front-transforming.svg",
  10645. extra: 437 / 409,
  10646. bottom: 19 / 458.66
  10647. }
  10648. },
  10649. frontTransformed: {
  10650. height: math.unit(12.5, "feet"),
  10651. weight: math.unit(4000, "lb"),
  10652. name: "Transformed",
  10653. image: {
  10654. source: "./media/characters/alexi/front-transformed.svg",
  10655. extra: 639 / 614,
  10656. bottom: 30.55 / 671
  10657. }
  10658. },
  10659. },
  10660. [
  10661. {
  10662. name: "Normal",
  10663. height: math.unit(14, "feet"),
  10664. default: true
  10665. },
  10666. {
  10667. name: "Minimacro",
  10668. height: math.unit(30, "meters")
  10669. },
  10670. {
  10671. name: "Macro",
  10672. height: math.unit(500, "meters")
  10673. },
  10674. {
  10675. name: "Megamacro",
  10676. height: math.unit(9000, "km")
  10677. },
  10678. {
  10679. name: "Teramacro",
  10680. height: math.unit(384000, "km")
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(6, "feet"),
  10689. weight: math.unit(150, "lb"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/kayroo/front.svg",
  10693. extra: 1153 / 1038,
  10694. bottom: 0.06
  10695. }
  10696. },
  10697. foot: {
  10698. height: math.unit(6, "feet"),
  10699. weight: math.unit(150, "lb"),
  10700. name: "Foot",
  10701. image: {
  10702. source: "./media/characters/kayroo/foot.svg"
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(8, "feet"),
  10710. default: true
  10711. },
  10712. {
  10713. name: "Minimacro",
  10714. height: math.unit(250, "feet")
  10715. },
  10716. {
  10717. name: "Macro",
  10718. height: math.unit(2800, "feet")
  10719. },
  10720. {
  10721. name: "Megamacro",
  10722. height: math.unit(5200, "feet")
  10723. },
  10724. {
  10725. name: "Gigamacro",
  10726. height: math.unit(27000, "feet")
  10727. },
  10728. {
  10729. name: "Omega",
  10730. height: math.unit(45000, "feet")
  10731. },
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10736. {
  10737. front: {
  10738. height: math.unit(18, "feet"),
  10739. weight: math.unit(5800, "lb"),
  10740. name: "Front",
  10741. image: {
  10742. source: "./media/characters/rhys/front.svg",
  10743. extra: 3386 / 3090,
  10744. bottom: 0.07
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Normal",
  10751. height: math.unit(18, "feet"),
  10752. default: true
  10753. },
  10754. {
  10755. name: "Working Size",
  10756. height: math.unit(200, "feet")
  10757. },
  10758. {
  10759. name: "Demolition Size",
  10760. height: math.unit(2000, "feet")
  10761. },
  10762. {
  10763. name: "Maximum Licensed Size",
  10764. height: math.unit(5, "miles")
  10765. },
  10766. {
  10767. name: "Maximum Observed Size",
  10768. height: math.unit(10, "yottameters")
  10769. },
  10770. ]
  10771. ))
  10772. characterMakers.push(() => makeCharacter(
  10773. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10774. {
  10775. front: {
  10776. height: math.unit(6, "feet"),
  10777. weight: math.unit(250, "lb"),
  10778. name: "Front",
  10779. image: {
  10780. source: "./media/characters/toto/front.svg",
  10781. extra: 527 / 479,
  10782. bottom: 0.05
  10783. }
  10784. },
  10785. },
  10786. [
  10787. {
  10788. name: "Micro",
  10789. height: math.unit(3, "feet")
  10790. },
  10791. {
  10792. name: "Normal",
  10793. height: math.unit(10, "feet")
  10794. },
  10795. {
  10796. name: "Macro",
  10797. height: math.unit(150, "feet"),
  10798. default: true
  10799. },
  10800. {
  10801. name: "Megamacro",
  10802. height: math.unit(1200, "feet")
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "King", species: ["lion"], tags: ["anthro"] },
  10808. {
  10809. back: {
  10810. height: math.unit(6, "feet"),
  10811. weight: math.unit(150, "lb"),
  10812. name: "Back",
  10813. image: {
  10814. source: "./media/characters/king/back.svg"
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Micro",
  10821. height: math.unit(2, "inches")
  10822. },
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(8, "feet")
  10826. },
  10827. {
  10828. name: "Macro",
  10829. height: math.unit(200, "feet"),
  10830. default: true
  10831. },
  10832. {
  10833. name: "Megamacro",
  10834. height: math.unit(50, "miles")
  10835. },
  10836. ]
  10837. ))
  10838. characterMakers.push(() => makeCharacter(
  10839. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10840. {
  10841. anthro: {
  10842. height: math.unit(6 + 5 / 12, "feet"),
  10843. weight: math.unit(280, "lb"),
  10844. name: "Anthro",
  10845. image: {
  10846. source: "./media/characters/cordite/anthro.svg",
  10847. extra: 1986 / 1905,
  10848. bottom: 0.025
  10849. }
  10850. },
  10851. feral: {
  10852. height: math.unit(2, "feet"),
  10853. weight: math.unit(90, "lb"),
  10854. name: "Feral",
  10855. image: {
  10856. source: "./media/characters/cordite/feral.svg",
  10857. extra: 1260 / 755,
  10858. bottom: 0.05
  10859. }
  10860. },
  10861. },
  10862. [
  10863. {
  10864. name: "Normal",
  10865. height: math.unit(6 + 5 / 12, "feet"),
  10866. default: true
  10867. },
  10868. ]
  10869. ))
  10870. characterMakers.push(() => makeCharacter(
  10871. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10872. {
  10873. front: {
  10874. height: math.unit(6, "feet"),
  10875. weight: math.unit(150, "lb"),
  10876. name: "Front",
  10877. image: {
  10878. source: "./media/characters/pianostrong/front.svg",
  10879. extra: 6577 / 6254,
  10880. bottom: 0.02
  10881. }
  10882. },
  10883. side: {
  10884. height: math.unit(6, "feet"),
  10885. weight: math.unit(150, "lb"),
  10886. name: "Side",
  10887. image: {
  10888. source: "./media/characters/pianostrong/side.svg",
  10889. extra: 6106 / 5730
  10890. }
  10891. },
  10892. back: {
  10893. height: math.unit(6, "feet"),
  10894. weight: math.unit(150, "lb"),
  10895. name: "Back",
  10896. image: {
  10897. source: "./media/characters/pianostrong/back.svg",
  10898. extra: 6085 / 5733,
  10899. bottom: 0.01
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Macro",
  10906. height: math.unit(100, "feet")
  10907. },
  10908. {
  10909. name: "Macro+",
  10910. height: math.unit(300, "feet"),
  10911. default: true
  10912. },
  10913. {
  10914. name: "Macro++",
  10915. height: math.unit(1000, "feet")
  10916. },
  10917. ]
  10918. ))
  10919. characterMakers.push(() => makeCharacter(
  10920. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10921. {
  10922. front: {
  10923. height: math.unit(6, "feet"),
  10924. weight: math.unit(150, "lb"),
  10925. name: "Front",
  10926. image: {
  10927. source: "./media/characters/kona/front.svg",
  10928. extra: 2960 / 2629,
  10929. bottom: 0.005
  10930. }
  10931. },
  10932. },
  10933. [
  10934. {
  10935. name: "Normal",
  10936. height: math.unit(11 + 8 / 12, "feet")
  10937. },
  10938. {
  10939. name: "Macro",
  10940. height: math.unit(850, "feet"),
  10941. default: true
  10942. },
  10943. {
  10944. name: "Macro+",
  10945. height: math.unit(1.5, "km"),
  10946. default: true
  10947. },
  10948. {
  10949. name: "Megamacro",
  10950. height: math.unit(80, "miles")
  10951. },
  10952. {
  10953. name: "Gigamacro",
  10954. height: math.unit(3500, "miles")
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10960. {
  10961. side: {
  10962. height: math.unit(1.9, "meters"),
  10963. weight: math.unit(326, "kg"),
  10964. name: "Side",
  10965. image: {
  10966. source: "./media/characters/levi/side.svg",
  10967. extra: 1704 / 1334,
  10968. bottom: 0.02
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Normal",
  10975. height: math.unit(1.9, "meters"),
  10976. default: true
  10977. },
  10978. {
  10979. name: "Macro",
  10980. height: math.unit(20, "meters")
  10981. },
  10982. {
  10983. name: "Macro+",
  10984. height: math.unit(200, "meters")
  10985. },
  10986. {
  10987. name: "Megamacro",
  10988. height: math.unit(2, "km")
  10989. },
  10990. {
  10991. name: "Megamacro+",
  10992. height: math.unit(20, "km")
  10993. },
  10994. {
  10995. name: "Gigamacro",
  10996. height: math.unit(2500, "km")
  10997. },
  10998. {
  10999. name: "Gigamacro+",
  11000. height: math.unit(120000, "km")
  11001. },
  11002. {
  11003. name: "Teramacro",
  11004. height: math.unit(7.77e6, "km")
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(6 + 4 / 12, "feet"),
  11013. weight: math.unit(188, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/bmc/front.svg",
  11017. extra: 1067 / 1022,
  11018. bottom: 0.047
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Human-sized",
  11025. height: math.unit(6 + 4 / 12, "feet")
  11026. },
  11027. {
  11028. name: "Small",
  11029. height: math.unit(250, "feet")
  11030. },
  11031. {
  11032. name: "Normal",
  11033. height: math.unit(1250, "feet"),
  11034. default: true
  11035. },
  11036. {
  11037. name: "Good Day",
  11038. height: math.unit(88, "miles")
  11039. },
  11040. {
  11041. name: "Largest Measured Size",
  11042. height: math.unit(11.2e6, "lightyears")
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11048. {
  11049. front: {
  11050. height: math.unit(20, "feet"),
  11051. weight: math.unit(2016, "kg"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/sven-the-kaiju/front.svg",
  11055. extra: 1479 / 1449,
  11056. bottom: 0.05
  11057. }
  11058. },
  11059. },
  11060. [
  11061. {
  11062. name: "Fairy",
  11063. height: math.unit(6, "inches")
  11064. },
  11065. {
  11066. name: "Normal",
  11067. height: math.unit(20, "feet"),
  11068. default: true
  11069. },
  11070. {
  11071. name: "Rampage",
  11072. height: math.unit(200, "feet")
  11073. },
  11074. {
  11075. name: "Archfey Forest Guardian",
  11076. height: math.unit(1, "mile")
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(4, "meters"),
  11085. weight: math.unit(2, "tons"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/marik/front.svg",
  11089. extra: 1057 / 1003,
  11090. bottom: 0.08
  11091. }
  11092. },
  11093. },
  11094. [
  11095. {
  11096. name: "Normal",
  11097. height: math.unit(4, "meters"),
  11098. default: true
  11099. },
  11100. {
  11101. name: "Macro",
  11102. height: math.unit(20, "meters")
  11103. },
  11104. {
  11105. name: "Megamacro",
  11106. height: math.unit(50, "km")
  11107. },
  11108. {
  11109. name: "Gigamacro",
  11110. height: math.unit(100, "km")
  11111. },
  11112. {
  11113. name: "Alpha Macro",
  11114. height: math.unit(7.88e7, "yottameters")
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11120. {
  11121. front: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(110, "lb"),
  11124. name: "Front",
  11125. image: {
  11126. source: "./media/characters/mel/front.svg",
  11127. extra: 736 / 617,
  11128. bottom: 0.017
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Pico",
  11135. height: math.unit(3, "pm")
  11136. },
  11137. {
  11138. name: "Nano",
  11139. height: math.unit(3, "nm")
  11140. },
  11141. {
  11142. name: "Micro",
  11143. height: math.unit(0.3, "mm"),
  11144. default: true
  11145. },
  11146. {
  11147. name: "Micro+",
  11148. height: math.unit(3, "mm")
  11149. },
  11150. {
  11151. name: "Normal",
  11152. height: math.unit(5 + 10.5 / 12, "feet")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11158. {
  11159. kaiju: {
  11160. height: math.unit(1.75, "meters"),
  11161. weight: math.unit(55, "kg"),
  11162. name: "Kaiju",
  11163. image: {
  11164. source: "./media/characters/lykonous/kaiju.svg",
  11165. extra: 1055 / 946,
  11166. bottom: 0.135
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(2.5, "meters"),
  11174. default: true
  11175. },
  11176. {
  11177. name: "Kaiju Dragon",
  11178. height: math.unit(60, "meters")
  11179. },
  11180. {
  11181. name: "Mega Kaiju",
  11182. height: math.unit(120, "km")
  11183. },
  11184. {
  11185. name: "Giga Kaiju",
  11186. height: math.unit(200, "megameters")
  11187. },
  11188. {
  11189. name: "Terra Kaiju",
  11190. height: math.unit(400, "gigameters")
  11191. },
  11192. {
  11193. name: "Kaiju Dragon God",
  11194. height: math.unit(13000, "exaparsecs")
  11195. },
  11196. ]
  11197. ))
  11198. characterMakers.push(() => makeCharacter(
  11199. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11200. {
  11201. front: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(150, "lb"),
  11204. name: "Front",
  11205. image: {
  11206. source: "./media/characters/blü/front.svg",
  11207. extra: 1883 / 1564,
  11208. bottom: 0.031
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(13, "feet"),
  11216. default: true
  11217. },
  11218. {
  11219. name: "Big Boi",
  11220. height: math.unit(150, "meters")
  11221. },
  11222. {
  11223. name: "Mini Stomper",
  11224. height: math.unit(300, "meters")
  11225. },
  11226. {
  11227. name: "Macro",
  11228. height: math.unit(1000, "meters")
  11229. },
  11230. {
  11231. name: "Megamacro",
  11232. height: math.unit(11000, "meters")
  11233. },
  11234. {
  11235. name: "Gigamacro",
  11236. height: math.unit(11000, "km")
  11237. },
  11238. {
  11239. name: "Teramacro",
  11240. height: math.unit(420000, "km")
  11241. },
  11242. {
  11243. name: "Examacro",
  11244. height: math.unit(120, "parsecs")
  11245. },
  11246. {
  11247. name: "God Tho",
  11248. height: math.unit(98000000000, "parsecs")
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11254. {
  11255. taurFront: {
  11256. height: math.unit(6, "feet"),
  11257. weight: math.unit(200, "lb"),
  11258. name: "Taur (Front)",
  11259. image: {
  11260. source: "./media/characters/scales/taur-front.svg",
  11261. extra: 1,
  11262. bottom: 0.05
  11263. }
  11264. },
  11265. taurBack: {
  11266. height: math.unit(6, "feet"),
  11267. weight: math.unit(200, "lb"),
  11268. name: "Taur (Back)",
  11269. image: {
  11270. source: "./media/characters/scales/taur-back.svg",
  11271. extra: 1,
  11272. bottom: 0.08
  11273. }
  11274. },
  11275. anthro: {
  11276. height: math.unit(6 * 7 / 12, "feet"),
  11277. weight: math.unit(100, "lb"),
  11278. name: "Anthro",
  11279. image: {
  11280. source: "./media/characters/scales/anthro.svg",
  11281. extra: 1,
  11282. bottom: 0.06
  11283. }
  11284. },
  11285. },
  11286. [
  11287. {
  11288. name: "Normal",
  11289. height: math.unit(12, "feet"),
  11290. default: true
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(6, "feet"),
  11299. weight: math.unit(150, "lb"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/koragos/front.svg",
  11303. extra: 841 / 794,
  11304. bottom: 0.035
  11305. }
  11306. },
  11307. back: {
  11308. height: math.unit(6, "feet"),
  11309. weight: math.unit(150, "lb"),
  11310. name: "Back",
  11311. image: {
  11312. source: "./media/characters/koragos/back.svg",
  11313. extra: 841 / 810,
  11314. bottom: 0.022
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(6 + 11 / 12, "feet"),
  11322. default: true
  11323. },
  11324. {
  11325. name: "Macro",
  11326. height: math.unit(490, "feet")
  11327. },
  11328. {
  11329. name: "Megamacro",
  11330. height: math.unit(10, "miles")
  11331. },
  11332. {
  11333. name: "Gigamacro",
  11334. height: math.unit(50, "miles")
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11340. {
  11341. front: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(250, "lb"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/xylrem/front.svg",
  11347. extra: 3323 / 3050,
  11348. bottom: 0.065
  11349. }
  11350. },
  11351. },
  11352. [
  11353. {
  11354. name: "Micro",
  11355. height: math.unit(4, "feet")
  11356. },
  11357. {
  11358. name: "Normal",
  11359. height: math.unit(16, "feet"),
  11360. default: true
  11361. },
  11362. {
  11363. name: "Macro",
  11364. height: math.unit(2720, "feet")
  11365. },
  11366. {
  11367. name: "Megamacro",
  11368. height: math.unit(25000, "miles")
  11369. },
  11370. ]
  11371. ))
  11372. characterMakers.push(() => makeCharacter(
  11373. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11374. {
  11375. front: {
  11376. height: math.unit(8, "feet"),
  11377. weight: math.unit(250, "kg"),
  11378. name: "Front",
  11379. image: {
  11380. source: "./media/characters/ikideru/front.svg",
  11381. extra: 930 / 870,
  11382. bottom: 0.087
  11383. }
  11384. },
  11385. back: {
  11386. height: math.unit(8, "feet"),
  11387. weight: math.unit(250, "kg"),
  11388. name: "Back",
  11389. image: {
  11390. source: "./media/characters/ikideru/back.svg",
  11391. extra: 919 / 852,
  11392. bottom: 0.055
  11393. }
  11394. },
  11395. },
  11396. [
  11397. {
  11398. name: "Rare",
  11399. height: math.unit(8, "feet"),
  11400. default: true
  11401. },
  11402. {
  11403. name: "Playful Loom",
  11404. height: math.unit(80, "feet")
  11405. },
  11406. {
  11407. name: "City Leaner",
  11408. height: math.unit(230, "feet")
  11409. },
  11410. {
  11411. name: "Megamacro",
  11412. height: math.unit(2500, "feet")
  11413. },
  11414. {
  11415. name: "Gigamacro",
  11416. height: math.unit(26400, "feet")
  11417. },
  11418. {
  11419. name: "Tectonic Shifter",
  11420. height: math.unit(1.7, "megameters")
  11421. },
  11422. {
  11423. name: "Planet Carer",
  11424. height: math.unit(21, "megameters")
  11425. },
  11426. {
  11427. name: "God",
  11428. height: math.unit(11157.22, "parsecs")
  11429. },
  11430. ]
  11431. ))
  11432. characterMakers.push(() => makeCharacter(
  11433. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11434. {
  11435. front: {
  11436. height: math.unit(6, "feet"),
  11437. weight: math.unit(120, "lb"),
  11438. name: "Front",
  11439. image: {
  11440. source: "./media/characters/neo/front.svg"
  11441. }
  11442. },
  11443. },
  11444. [
  11445. {
  11446. name: "Micro",
  11447. height: math.unit(2, "inches"),
  11448. default: true
  11449. },
  11450. {
  11451. name: "Human Size",
  11452. height: math.unit(5 + 8 / 12, "feet")
  11453. },
  11454. ]
  11455. ))
  11456. characterMakers.push(() => makeCharacter(
  11457. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11458. {
  11459. front: {
  11460. height: math.unit(13 + 10 / 12, "feet"),
  11461. weight: math.unit(5320, "lb"),
  11462. name: "Front",
  11463. image: {
  11464. source: "./media/characters/chauncey-chantz/front.svg",
  11465. extra: 1587 / 1435,
  11466. bottom: 0.02
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(13 + 10 / 12, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(45, "feet")
  11479. },
  11480. {
  11481. name: "Megamacro",
  11482. height: math.unit(250, "miles")
  11483. },
  11484. {
  11485. name: "Planetary",
  11486. height: math.unit(10000, "miles")
  11487. },
  11488. {
  11489. name: "Galactic",
  11490. height: math.unit(40000, "parsecs")
  11491. },
  11492. {
  11493. name: "Universal",
  11494. height: math.unit(1, "yottameter")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11500. {
  11501. front: {
  11502. height: math.unit(6, "feet"),
  11503. weight: math.unit(150, "lb"),
  11504. name: "Front",
  11505. image: {
  11506. source: "./media/characters/epifox/front.svg",
  11507. extra: 1,
  11508. bottom: 0.075
  11509. }
  11510. },
  11511. },
  11512. [
  11513. {
  11514. name: "Micro",
  11515. height: math.unit(6, "inches")
  11516. },
  11517. {
  11518. name: "Normal",
  11519. height: math.unit(12, "feet"),
  11520. default: true
  11521. },
  11522. {
  11523. name: "Macro",
  11524. height: math.unit(3810, "feet")
  11525. },
  11526. {
  11527. name: "Megamacro",
  11528. height: math.unit(500, "miles")
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11534. {
  11535. front: {
  11536. height: math.unit(1.8796, "m"),
  11537. weight: math.unit(230, "lb"),
  11538. name: "Front",
  11539. image: {
  11540. source: "./media/characters/colin-t/front.svg",
  11541. extra: 1272 / 1193,
  11542. bottom: 0.07
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Micro",
  11549. height: math.unit(0.571, "meters")
  11550. },
  11551. {
  11552. name: "Normal",
  11553. height: math.unit(1.8796, "meters"),
  11554. default: true
  11555. },
  11556. {
  11557. name: "Tall",
  11558. height: math.unit(4, "meters")
  11559. },
  11560. {
  11561. name: "Macro",
  11562. height: math.unit(67.241, "meters")
  11563. },
  11564. {
  11565. name: "Megamacro",
  11566. height: math.unit(371.856, "meters")
  11567. },
  11568. {
  11569. name: "Planetary",
  11570. height: math.unit(12631.5689, "km")
  11571. },
  11572. ]
  11573. ))
  11574. characterMakers.push(() => makeCharacter(
  11575. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11576. {
  11577. front: {
  11578. height: math.unit(1.85, "meters"),
  11579. weight: math.unit(80, "kg"),
  11580. name: "Front",
  11581. image: {
  11582. source: "./media/characters/matvei/front.svg",
  11583. extra: 614 / 594,
  11584. bottom: 0.01
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Normal",
  11591. height: math.unit(1.85, "meters"),
  11592. default: true
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(5 + 9 / 12, "feet"),
  11601. weight: math.unit(70, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/quincy/front.svg",
  11605. extra: 3041 / 2751
  11606. }
  11607. },
  11608. back: {
  11609. height: math.unit(5 + 9 / 12, "feet"),
  11610. weight: math.unit(70, "lb"),
  11611. name: "Back",
  11612. image: {
  11613. source: "./media/characters/quincy/back.svg",
  11614. extra: 3041 / 2751
  11615. }
  11616. },
  11617. flying: {
  11618. height: math.unit(5 + 4 / 12, "feet"),
  11619. weight: math.unit(70, "lb"),
  11620. name: "Flying",
  11621. image: {
  11622. source: "./media/characters/quincy/flying.svg",
  11623. extra: 1044 / 930
  11624. }
  11625. },
  11626. },
  11627. [
  11628. {
  11629. name: "Micro",
  11630. height: math.unit(3, "cm")
  11631. },
  11632. {
  11633. name: "Normal",
  11634. height: math.unit(5 + 9 / 12, "feet")
  11635. },
  11636. {
  11637. name: "Macro",
  11638. height: math.unit(200, "meters"),
  11639. default: true
  11640. },
  11641. {
  11642. name: "Megamacro",
  11643. height: math.unit(1000, "meters")
  11644. },
  11645. ]
  11646. ))
  11647. characterMakers.push(() => makeCharacter(
  11648. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11649. {
  11650. front: {
  11651. height: math.unit(4 + 7 / 12, "feet"),
  11652. weight: math.unit(50, "lb"),
  11653. name: "Front",
  11654. image: {
  11655. source: "./media/characters/vanrel/front.svg",
  11656. extra: 1,
  11657. bottom: 0.02
  11658. }
  11659. },
  11660. frontAlt: {
  11661. height: math.unit(4 + 7 / 12, "feet"),
  11662. weight: math.unit(50, "lb"),
  11663. name: "Front-alt",
  11664. image: {
  11665. source: "./media/characters/vanrel/front-alt.svg",
  11666. extra: 1,
  11667. bottom: 15 / 1511
  11668. }
  11669. },
  11670. elemental: {
  11671. height: math.unit(3, "feet"),
  11672. weight: math.unit(50, "lb"),
  11673. name: "Elemental",
  11674. image: {
  11675. source: "./media/characters/vanrel/elemental.svg",
  11676. extra: 192.3 / 162.8,
  11677. bottom: 1.79 / 194.17
  11678. }
  11679. },
  11680. side: {
  11681. height: math.unit(4 + 7 / 12, "feet"),
  11682. weight: math.unit(50, "lb"),
  11683. name: "Side",
  11684. image: {
  11685. source: "./media/characters/vanrel/side.svg",
  11686. extra: 1,
  11687. bottom: 0.025
  11688. }
  11689. },
  11690. tome: {
  11691. height: math.unit(1.35, "feet"),
  11692. weight: math.unit(10, "lb"),
  11693. name: "Vanrel's Tome",
  11694. rename: true,
  11695. image: {
  11696. source: "./media/characters/vanrel/tome.svg"
  11697. }
  11698. },
  11699. beans: {
  11700. height: math.unit(0.89, "feet"),
  11701. name: "Beans",
  11702. image: {
  11703. source: "./media/characters/vanrel/beans.svg"
  11704. }
  11705. },
  11706. },
  11707. [
  11708. {
  11709. name: "Normal",
  11710. height: math.unit(4 + 7 / 12, "feet"),
  11711. default: true
  11712. },
  11713. ]
  11714. ))
  11715. characterMakers.push(() => makeCharacter(
  11716. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11717. {
  11718. front: {
  11719. height: math.unit(7 + 5 / 12, "feet"),
  11720. weight: math.unit(150, "lb"),
  11721. name: "Front",
  11722. image: {
  11723. source: "./media/characters/kuiper-vanrel/front.svg",
  11724. extra: 1118 / 1068,
  11725. bottom: 0.09
  11726. }
  11727. },
  11728. foot: {
  11729. height: math.unit(0.55, "meters"),
  11730. name: "Foot",
  11731. image: {
  11732. source: "./media/characters/kuiper-vanrel/foot.svg",
  11733. }
  11734. },
  11735. battle: {
  11736. height: math.unit(6.824, "feet"),
  11737. weight: math.unit(150, "lb"),
  11738. name: "Battle",
  11739. image: {
  11740. source: "./media/characters/kuiper-vanrel/battle.svg",
  11741. extra: 1466 / 1327,
  11742. bottom: 29 / 1492.5
  11743. }
  11744. },
  11745. battleAlt: {
  11746. height: math.unit(6.824, "feet"),
  11747. weight: math.unit(150, "lb"),
  11748. name: "Battle (Alt)",
  11749. image: {
  11750. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11751. extra: 2081 / 1965,
  11752. bottom: 40 / 2121
  11753. }
  11754. },
  11755. },
  11756. [
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(7 + 5 / 12, "feet"),
  11760. default: true
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(8 + 5 / 12, "feet"),
  11769. weight: math.unit(150, "lb"),
  11770. name: "Front",
  11771. image: {
  11772. source: "./media/characters/keset-vanrel/front.svg",
  11773. extra: 1150 / 1084,
  11774. bottom: 0.05
  11775. }
  11776. },
  11777. hand: {
  11778. height: math.unit(0.6, "meters"),
  11779. name: "Hand",
  11780. image: {
  11781. source: "./media/characters/keset-vanrel/hand.svg"
  11782. }
  11783. },
  11784. foot: {
  11785. height: math.unit(0.94978, "meters"),
  11786. name: "Foot",
  11787. image: {
  11788. source: "./media/characters/keset-vanrel/foot.svg"
  11789. }
  11790. },
  11791. battle: {
  11792. height: math.unit(7.408, "feet"),
  11793. weight: math.unit(150, "lb"),
  11794. name: "Battle",
  11795. image: {
  11796. source: "./media/characters/keset-vanrel/battle.svg",
  11797. extra: 1890 / 1386,
  11798. bottom: 73.28 / 1970
  11799. }
  11800. },
  11801. },
  11802. [
  11803. {
  11804. name: "Normal",
  11805. height: math.unit(8 + 5 / 12, "feet"),
  11806. default: true
  11807. },
  11808. ]
  11809. ))
  11810. characterMakers.push(() => makeCharacter(
  11811. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11812. {
  11813. front: {
  11814. height: math.unit(6, "feet"),
  11815. weight: math.unit(150, "lb"),
  11816. name: "Front",
  11817. image: {
  11818. source: "./media/characters/neos/front.svg",
  11819. extra: 1696 / 992,
  11820. bottom: 0.14
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Normal",
  11827. height: math.unit(54, "cm"),
  11828. default: true
  11829. },
  11830. {
  11831. name: "Macro",
  11832. height: math.unit(100, "m")
  11833. },
  11834. {
  11835. name: "Megamacro",
  11836. height: math.unit(10, "km")
  11837. },
  11838. {
  11839. name: "Megamacro+",
  11840. height: math.unit(100, "km")
  11841. },
  11842. {
  11843. name: "Gigamacro",
  11844. height: math.unit(100, "Mm")
  11845. },
  11846. {
  11847. name: "Teramacro",
  11848. height: math.unit(100, "Gm")
  11849. },
  11850. {
  11851. name: "Examacro",
  11852. height: math.unit(100, "Em")
  11853. },
  11854. {
  11855. name: "Godly",
  11856. height: math.unit(10000, "Ym")
  11857. },
  11858. {
  11859. name: "Beyond Godly",
  11860. height: math.unit(25, "multiverses")
  11861. },
  11862. ]
  11863. ))
  11864. characterMakers.push(() => makeCharacter(
  11865. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11866. {
  11867. feminine: {
  11868. height: math.unit(5, "feet"),
  11869. weight: math.unit(100, "lb"),
  11870. name: "Feminine",
  11871. image: {
  11872. source: "./media/characters/sammy-mouse/feminine.svg",
  11873. extra: 2526 / 2425,
  11874. bottom: 0.123
  11875. }
  11876. },
  11877. masculine: {
  11878. height: math.unit(5, "feet"),
  11879. weight: math.unit(100, "lb"),
  11880. name: "Masculine",
  11881. image: {
  11882. source: "./media/characters/sammy-mouse/masculine.svg",
  11883. extra: 2526 / 2425,
  11884. bottom: 0.123
  11885. }
  11886. },
  11887. },
  11888. [
  11889. {
  11890. name: "Micro",
  11891. height: math.unit(5, "inches")
  11892. },
  11893. {
  11894. name: "Normal",
  11895. height: math.unit(5, "feet"),
  11896. default: true
  11897. },
  11898. {
  11899. name: "Macro",
  11900. height: math.unit(60, "feet")
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11906. {
  11907. front: {
  11908. height: math.unit(4, "feet"),
  11909. weight: math.unit(50, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/kole/front.svg",
  11913. extra: 1423 / 1303,
  11914. bottom: 0.025
  11915. }
  11916. },
  11917. back: {
  11918. height: math.unit(4, "feet"),
  11919. weight: math.unit(50, "lb"),
  11920. name: "Back",
  11921. image: {
  11922. source: "./media/characters/kole/back.svg",
  11923. extra: 1426 / 1280,
  11924. bottom: 0.02
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Normal",
  11931. height: math.unit(4, "feet"),
  11932. default: true
  11933. },
  11934. ]
  11935. ))
  11936. characterMakers.push(() => makeCharacter(
  11937. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11938. {
  11939. front: {
  11940. height: math.unit(2 + 6 / 12, "feet"),
  11941. weight: math.unit(20, "lb"),
  11942. name: "Front",
  11943. image: {
  11944. source: "./media/characters/rufran/front.svg",
  11945. extra: 2041 / 1839,
  11946. bottom: 0.055
  11947. }
  11948. },
  11949. back: {
  11950. height: math.unit(2 + 6 / 12, "feet"),
  11951. weight: math.unit(20, "lb"),
  11952. name: "Back",
  11953. image: {
  11954. source: "./media/characters/rufran/back.svg",
  11955. extra: 2054 / 1839,
  11956. bottom: 0.01
  11957. }
  11958. },
  11959. hand: {
  11960. height: math.unit(0.2166, "meters"),
  11961. name: "Hand",
  11962. image: {
  11963. source: "./media/characters/rufran/hand.svg"
  11964. }
  11965. },
  11966. foot: {
  11967. height: math.unit(0.185, "meters"),
  11968. name: "Foot",
  11969. image: {
  11970. source: "./media/characters/rufran/foot.svg"
  11971. }
  11972. },
  11973. },
  11974. [
  11975. {
  11976. name: "Micro",
  11977. height: math.unit(1, "inch")
  11978. },
  11979. {
  11980. name: "Normal",
  11981. height: math.unit(2 + 6 / 12, "feet"),
  11982. default: true
  11983. },
  11984. {
  11985. name: "Big",
  11986. height: math.unit(60, "feet")
  11987. },
  11988. {
  11989. name: "Macro",
  11990. height: math.unit(325, "feet")
  11991. },
  11992. ]
  11993. ))
  11994. characterMakers.push(() => makeCharacter(
  11995. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11996. {
  11997. front: {
  11998. height: math.unit(0.3, "meters"),
  11999. weight: math.unit(3.5, "kg"),
  12000. name: "Front",
  12001. image: {
  12002. source: "./media/characters/chip/front.svg",
  12003. extra: 748 / 674
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Micro",
  12010. height: math.unit(1, "inch"),
  12011. default: true
  12012. },
  12013. ]
  12014. ))
  12015. characterMakers.push(() => makeCharacter(
  12016. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12017. {
  12018. side: {
  12019. height: math.unit(2.3, "meters"),
  12020. weight: math.unit(3500, "lb"),
  12021. name: "Side",
  12022. image: {
  12023. source: "./media/characters/torvid/side.svg",
  12024. extra: 1972 / 722,
  12025. bottom: 0.035
  12026. }
  12027. },
  12028. },
  12029. [
  12030. {
  12031. name: "Normal",
  12032. height: math.unit(2.3, "meters"),
  12033. default: true
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12039. {
  12040. front: {
  12041. height: math.unit(2, "meters"),
  12042. weight: math.unit(150.5, "kg"),
  12043. name: "Front",
  12044. image: {
  12045. source: "./media/characters/susan/front.svg",
  12046. extra: 693 / 635,
  12047. bottom: 0.05
  12048. }
  12049. },
  12050. },
  12051. [
  12052. {
  12053. name: "Megamacro",
  12054. height: math.unit(505, "miles"),
  12055. default: true
  12056. },
  12057. ]
  12058. ))
  12059. characterMakers.push(() => makeCharacter(
  12060. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12061. {
  12062. front: {
  12063. height: math.unit(6, "feet"),
  12064. weight: math.unit(150, "lb"),
  12065. name: "Front",
  12066. image: {
  12067. source: "./media/characters/raindrops/front.svg",
  12068. extra: 2655 / 2461,
  12069. bottom: 49 / 2705
  12070. }
  12071. },
  12072. back: {
  12073. height: math.unit(6, "feet"),
  12074. weight: math.unit(150, "lb"),
  12075. name: "Back",
  12076. image: {
  12077. source: "./media/characters/raindrops/back.svg",
  12078. extra: 2574 / 2400,
  12079. bottom: 65 / 2634
  12080. }
  12081. },
  12082. },
  12083. [
  12084. {
  12085. name: "Micro",
  12086. height: math.unit(6, "inches")
  12087. },
  12088. {
  12089. name: "Normal",
  12090. height: math.unit(6 + 2 / 12, "feet")
  12091. },
  12092. {
  12093. name: "Macro",
  12094. height: math.unit(131, "feet"),
  12095. default: true
  12096. },
  12097. {
  12098. name: "Megamacro",
  12099. height: math.unit(15, "miles")
  12100. },
  12101. {
  12102. name: "Gigamacro",
  12103. height: math.unit(4000, "miles")
  12104. },
  12105. {
  12106. name: "Teramacro",
  12107. height: math.unit(315000, "miles")
  12108. },
  12109. ]
  12110. ))
  12111. characterMakers.push(() => makeCharacter(
  12112. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12113. {
  12114. front: {
  12115. height: math.unit(2.794, "meters"),
  12116. weight: math.unit(325, "kg"),
  12117. name: "Front",
  12118. image: {
  12119. source: "./media/characters/tezwa/front.svg",
  12120. extra: 2083 / 1906,
  12121. bottom: 0.031
  12122. }
  12123. },
  12124. foot: {
  12125. height: math.unit(0.687, "meters"),
  12126. name: "Foot",
  12127. image: {
  12128. source: "./media/characters/tezwa/foot.svg"
  12129. }
  12130. },
  12131. },
  12132. [
  12133. {
  12134. name: "Normal",
  12135. height: math.unit(9 + 2 / 12, "feet"),
  12136. default: true
  12137. },
  12138. ]
  12139. ))
  12140. characterMakers.push(() => makeCharacter(
  12141. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12142. {
  12143. front: {
  12144. height: math.unit(58, "feet"),
  12145. weight: math.unit(89000, "lb"),
  12146. name: "Front",
  12147. image: {
  12148. source: "./media/characters/typhus/front.svg",
  12149. extra: 816 / 800,
  12150. bottom: 0.065
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Macro",
  12157. height: math.unit(58, "feet"),
  12158. default: true
  12159. },
  12160. ]
  12161. ))
  12162. characterMakers.push(() => makeCharacter(
  12163. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12164. {
  12165. front: {
  12166. height: math.unit(12, "feet"),
  12167. weight: math.unit(6, "tonnes"),
  12168. name: "Front",
  12169. image: {
  12170. source: "./media/characters/lyra-von-wulf/front.svg",
  12171. extra: 1,
  12172. bottom: 0.10
  12173. }
  12174. },
  12175. frontMecha: {
  12176. height: math.unit(12, "feet"),
  12177. weight: math.unit(12, "tonnes"),
  12178. name: "Front (Mecha)",
  12179. image: {
  12180. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12181. extra: 1,
  12182. bottom: 0.042
  12183. }
  12184. },
  12185. maw: {
  12186. height: math.unit(2.2, "feet"),
  12187. name: "Maw",
  12188. image: {
  12189. source: "./media/characters/lyra-von-wulf/maw.svg"
  12190. }
  12191. },
  12192. },
  12193. [
  12194. {
  12195. name: "Normal",
  12196. height: math.unit(12, "feet"),
  12197. default: true
  12198. },
  12199. {
  12200. name: "Classic",
  12201. height: math.unit(50, "feet")
  12202. },
  12203. {
  12204. name: "Macro",
  12205. height: math.unit(500, "feet")
  12206. },
  12207. {
  12208. name: "Megamacro",
  12209. height: math.unit(1, "mile")
  12210. },
  12211. {
  12212. name: "Gigamacro",
  12213. height: math.unit(400, "miles")
  12214. },
  12215. {
  12216. name: "Teramacro",
  12217. height: math.unit(22000, "miles")
  12218. },
  12219. {
  12220. name: "Solarmacro",
  12221. height: math.unit(8600000, "miles")
  12222. },
  12223. {
  12224. name: "Galactic",
  12225. height: math.unit(1057000, "lightyears")
  12226. },
  12227. ]
  12228. ))
  12229. characterMakers.push(() => makeCharacter(
  12230. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12231. {
  12232. front: {
  12233. height: math.unit(6 + 10 / 12, "feet"),
  12234. weight: math.unit(150, "lb"),
  12235. name: "Front",
  12236. image: {
  12237. source: "./media/characters/dixon/front.svg",
  12238. extra: 3361 / 3209,
  12239. bottom: 0.01
  12240. }
  12241. },
  12242. },
  12243. [
  12244. {
  12245. name: "Normal",
  12246. height: math.unit(6 + 10 / 12, "feet"),
  12247. default: true
  12248. },
  12249. {
  12250. name: "Big",
  12251. height: math.unit(12, "meters")
  12252. },
  12253. {
  12254. name: "Macro",
  12255. height: math.unit(500, "meters")
  12256. },
  12257. {
  12258. name: "Megamacro",
  12259. height: math.unit(2, "km")
  12260. },
  12261. ]
  12262. ))
  12263. characterMakers.push(() => makeCharacter(
  12264. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12265. {
  12266. front: {
  12267. height: math.unit(185, "cm"),
  12268. weight: math.unit(68, "kg"),
  12269. name: "Front",
  12270. image: {
  12271. source: "./media/characters/kauko/front.svg",
  12272. extra: 1455 / 1421,
  12273. bottom: 0.03
  12274. }
  12275. },
  12276. back: {
  12277. height: math.unit(185, "cm"),
  12278. weight: math.unit(68, "kg"),
  12279. name: "Back",
  12280. image: {
  12281. source: "./media/characters/kauko/back.svg",
  12282. extra: 1455 / 1421,
  12283. bottom: 0.004
  12284. }
  12285. },
  12286. },
  12287. [
  12288. {
  12289. name: "Normal",
  12290. height: math.unit(185, "cm"),
  12291. default: true
  12292. },
  12293. ]
  12294. ))
  12295. characterMakers.push(() => makeCharacter(
  12296. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12297. {
  12298. front: {
  12299. height: math.unit(6, "feet"),
  12300. weight: math.unit(150, "kg"),
  12301. name: "Front",
  12302. image: {
  12303. source: "./media/characters/varg/front.svg",
  12304. extra: 1108 / 1018,
  12305. bottom: 0.0375
  12306. }
  12307. },
  12308. },
  12309. [
  12310. {
  12311. name: "Normal",
  12312. height: math.unit(5, "meters")
  12313. },
  12314. {
  12315. name: "Macro",
  12316. height: math.unit(200, "meters")
  12317. },
  12318. {
  12319. name: "Megamacro",
  12320. height: math.unit(20, "kilometers")
  12321. },
  12322. {
  12323. name: "True Size",
  12324. height: math.unit(211, "km"),
  12325. default: true
  12326. },
  12327. {
  12328. name: "Gigamacro",
  12329. height: math.unit(1000, "km")
  12330. },
  12331. {
  12332. name: "Gigamacro+",
  12333. height: math.unit(8000, "km")
  12334. },
  12335. {
  12336. name: "Teramacro",
  12337. height: math.unit(1000000, "km")
  12338. },
  12339. ]
  12340. ))
  12341. characterMakers.push(() => makeCharacter(
  12342. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12343. {
  12344. front: {
  12345. height: math.unit(7 + 7 / 12, "feet"),
  12346. weight: math.unit(267, "lb"),
  12347. name: "Front",
  12348. image: {
  12349. source: "./media/characters/dayza/front.svg",
  12350. extra: 1262 / 1200,
  12351. bottom: 0.035
  12352. }
  12353. },
  12354. side: {
  12355. height: math.unit(7 + 7 / 12, "feet"),
  12356. weight: math.unit(267, "lb"),
  12357. name: "Side",
  12358. image: {
  12359. source: "./media/characters/dayza/side.svg",
  12360. extra: 1295 / 1245,
  12361. bottom: 0.05
  12362. }
  12363. },
  12364. back: {
  12365. height: math.unit(7 + 7 / 12, "feet"),
  12366. weight: math.unit(267, "lb"),
  12367. name: "Back",
  12368. image: {
  12369. source: "./media/characters/dayza/back.svg",
  12370. extra: 1241 / 1170
  12371. }
  12372. },
  12373. },
  12374. [
  12375. {
  12376. name: "Normal",
  12377. height: math.unit(7 + 7 / 12, "feet"),
  12378. default: true
  12379. },
  12380. {
  12381. name: "Macro",
  12382. height: math.unit(155, "feet")
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12388. {
  12389. front: {
  12390. height: math.unit(6 + 5 / 12, "feet"),
  12391. weight: math.unit(160, "lb"),
  12392. name: "Front",
  12393. image: {
  12394. source: "./media/characters/xanthos/front.svg",
  12395. extra: 1,
  12396. bottom: 0.04
  12397. }
  12398. },
  12399. back: {
  12400. height: math.unit(6 + 5 / 12, "feet"),
  12401. weight: math.unit(160, "lb"),
  12402. name: "Back",
  12403. image: {
  12404. source: "./media/characters/xanthos/back.svg",
  12405. extra: 1,
  12406. bottom: 0.03
  12407. }
  12408. },
  12409. hand: {
  12410. height: math.unit(0.928, "feet"),
  12411. name: "Hand",
  12412. image: {
  12413. source: "./media/characters/xanthos/hand.svg"
  12414. }
  12415. },
  12416. foot: {
  12417. height: math.unit(1.286, "feet"),
  12418. name: "Foot",
  12419. image: {
  12420. source: "./media/characters/xanthos/foot.svg"
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(6 + 5 / 12, "feet"),
  12428. default: true
  12429. },
  12430. {
  12431. name: "Normal+",
  12432. height: math.unit(6, "meters")
  12433. },
  12434. {
  12435. name: "Macro",
  12436. height: math.unit(40, "feet")
  12437. },
  12438. {
  12439. name: "Macro+",
  12440. height: math.unit(200, "meters")
  12441. },
  12442. {
  12443. name: "Megamacro",
  12444. height: math.unit(20, "km")
  12445. },
  12446. {
  12447. name: "Megamacro+",
  12448. height: math.unit(100, "km")
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12454. {
  12455. front: {
  12456. height: math.unit(6 + 3 / 12, "feet"),
  12457. weight: math.unit(215, "lb"),
  12458. name: "Front",
  12459. image: {
  12460. source: "./media/characters/grynn/front.svg",
  12461. extra: 4627 / 4209,
  12462. bottom: 0.047
  12463. }
  12464. },
  12465. },
  12466. [
  12467. {
  12468. name: "Micro",
  12469. height: math.unit(6, "inches")
  12470. },
  12471. {
  12472. name: "Normal",
  12473. height: math.unit(6 + 3 / 12, "feet"),
  12474. default: true
  12475. },
  12476. {
  12477. name: "Big",
  12478. height: math.unit(104, "feet")
  12479. },
  12480. {
  12481. name: "Macro",
  12482. height: math.unit(944, "feet")
  12483. },
  12484. {
  12485. name: "Macro+",
  12486. height: math.unit(9480, "feet")
  12487. },
  12488. {
  12489. name: "Megamacro",
  12490. height: math.unit(78752, "feet")
  12491. },
  12492. {
  12493. name: "Megamacro+",
  12494. height: math.unit(630128, "feet")
  12495. },
  12496. {
  12497. name: "Megamacro++",
  12498. height: math.unit(3150695, "feet")
  12499. },
  12500. ]
  12501. ))
  12502. characterMakers.push(() => makeCharacter(
  12503. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12504. {
  12505. front: {
  12506. height: math.unit(7 + 5 / 12, "feet"),
  12507. weight: math.unit(450, "lb"),
  12508. name: "Front",
  12509. image: {
  12510. source: "./media/characters/mocha-aura/front.svg",
  12511. extra: 1907 / 1817,
  12512. bottom: 0.04
  12513. }
  12514. },
  12515. back: {
  12516. height: math.unit(7 + 5 / 12, "feet"),
  12517. weight: math.unit(450, "lb"),
  12518. name: "Back",
  12519. image: {
  12520. source: "./media/characters/mocha-aura/back.svg",
  12521. extra: 1900 / 1825,
  12522. bottom: 0.045
  12523. }
  12524. },
  12525. },
  12526. [
  12527. {
  12528. name: "Nano",
  12529. height: math.unit(1, "nm")
  12530. },
  12531. {
  12532. name: "Megamicro",
  12533. height: math.unit(1, "mm")
  12534. },
  12535. {
  12536. name: "Micro",
  12537. height: math.unit(3, "inches")
  12538. },
  12539. {
  12540. name: "Normal",
  12541. height: math.unit(7 + 5 / 12, "feet"),
  12542. default: true
  12543. },
  12544. {
  12545. name: "Macro",
  12546. height: math.unit(30, "feet")
  12547. },
  12548. {
  12549. name: "Megamacro",
  12550. height: math.unit(3500, "feet")
  12551. },
  12552. {
  12553. name: "Teramacro",
  12554. height: math.unit(500000, "miles")
  12555. },
  12556. {
  12557. name: "Petamacro",
  12558. height: math.unit(50000000000000000, "parsecs")
  12559. },
  12560. ]
  12561. ))
  12562. characterMakers.push(() => makeCharacter(
  12563. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12564. {
  12565. front: {
  12566. height: math.unit(6, "feet"),
  12567. weight: math.unit(150, "lb"),
  12568. name: "Front",
  12569. image: {
  12570. source: "./media/characters/ilisha-devya/front.svg",
  12571. extra: 1,
  12572. bottom: 0.175
  12573. }
  12574. },
  12575. back: {
  12576. height: math.unit(6, "feet"),
  12577. weight: math.unit(150, "lb"),
  12578. name: "Back",
  12579. image: {
  12580. source: "./media/characters/ilisha-devya/back.svg",
  12581. extra: 1,
  12582. bottom: 0.015
  12583. }
  12584. },
  12585. },
  12586. [
  12587. {
  12588. name: "Macro",
  12589. height: math.unit(500, "feet"),
  12590. default: true
  12591. },
  12592. {
  12593. name: "Megamacro",
  12594. height: math.unit(10, "miles")
  12595. },
  12596. {
  12597. name: "Gigamacro",
  12598. height: math.unit(100000, "miles")
  12599. },
  12600. {
  12601. name: "Examacro",
  12602. height: math.unit(1e9, "lightyears")
  12603. },
  12604. {
  12605. name: "Omniversal",
  12606. height: math.unit(1e33, "lightyears")
  12607. },
  12608. {
  12609. name: "Beyond Infinite",
  12610. height: math.unit(1e100, "lightyears")
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12616. {
  12617. Side: {
  12618. height: math.unit(6, "feet"),
  12619. weight: math.unit(150, "lb"),
  12620. name: "Side",
  12621. image: {
  12622. source: "./media/characters/mira/side.svg",
  12623. extra: 900 / 799,
  12624. bottom: 0.02
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Human Size",
  12631. height: math.unit(6, "feet")
  12632. },
  12633. {
  12634. name: "Macro",
  12635. height: math.unit(100, "feet"),
  12636. default: true
  12637. },
  12638. {
  12639. name: "Megamacro",
  12640. height: math.unit(10, "miles")
  12641. },
  12642. {
  12643. name: "Gigamacro",
  12644. height: math.unit(25000, "miles")
  12645. },
  12646. {
  12647. name: "Teramacro",
  12648. height: math.unit(300, "AU")
  12649. },
  12650. {
  12651. name: "Full Size",
  12652. height: math.unit(4.5e10, "lightyears")
  12653. },
  12654. ]
  12655. ))
  12656. characterMakers.push(() => makeCharacter(
  12657. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12658. {
  12659. front: {
  12660. height: math.unit(6, "feet"),
  12661. weight: math.unit(150, "lb"),
  12662. name: "Front",
  12663. image: {
  12664. source: "./media/characters/holly/front.svg",
  12665. extra: 639 / 606
  12666. }
  12667. },
  12668. back: {
  12669. height: math.unit(6, "feet"),
  12670. weight: math.unit(150, "lb"),
  12671. name: "Back",
  12672. image: {
  12673. source: "./media/characters/holly/back.svg",
  12674. extra: 623 / 598
  12675. }
  12676. },
  12677. frontWorking: {
  12678. height: math.unit(6, "feet"),
  12679. weight: math.unit(150, "lb"),
  12680. name: "Front (Working)",
  12681. image: {
  12682. source: "./media/characters/holly/front-working.svg",
  12683. extra: 607 / 577,
  12684. bottom: 0.048
  12685. }
  12686. },
  12687. },
  12688. [
  12689. {
  12690. name: "Normal",
  12691. height: math.unit(12 + 3 / 12, "feet"),
  12692. default: true
  12693. },
  12694. ]
  12695. ))
  12696. characterMakers.push(() => makeCharacter(
  12697. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12698. {
  12699. front: {
  12700. height: math.unit(6, "feet"),
  12701. weight: math.unit(150, "lb"),
  12702. name: "Front",
  12703. image: {
  12704. source: "./media/characters/porter/front.svg",
  12705. extra: 1,
  12706. bottom: 0.01
  12707. }
  12708. },
  12709. frontRobes: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(150, "lb"),
  12712. name: "Front (Robes)",
  12713. image: {
  12714. source: "./media/characters/porter/front-robes.svg",
  12715. extra: 1.01,
  12716. bottom: 0.01
  12717. }
  12718. },
  12719. },
  12720. [
  12721. {
  12722. name: "Normal",
  12723. height: math.unit(11 + 9 / 12, "feet"),
  12724. default: true
  12725. },
  12726. ]
  12727. ))
  12728. characterMakers.push(() => makeCharacter(
  12729. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12730. {
  12731. legendary: {
  12732. height: math.unit(6, "feet"),
  12733. weight: math.unit(150, "lb"),
  12734. name: "Legendary",
  12735. image: {
  12736. source: "./media/characters/lucy/legendary.svg",
  12737. extra: 1355 / 1100,
  12738. bottom: 0.045
  12739. }
  12740. },
  12741. },
  12742. [
  12743. {
  12744. name: "Legendary",
  12745. height: math.unit(86882 * 2, "miles"),
  12746. default: true
  12747. },
  12748. ]
  12749. ))
  12750. characterMakers.push(() => makeCharacter(
  12751. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12752. {
  12753. front: {
  12754. height: math.unit(6, "feet"),
  12755. weight: math.unit(150, "lb"),
  12756. name: "Front",
  12757. image: {
  12758. source: "./media/characters/drusilla/front.svg",
  12759. extra: 678 / 635,
  12760. bottom: 0.03
  12761. }
  12762. },
  12763. back: {
  12764. height: math.unit(6, "feet"),
  12765. weight: math.unit(150, "lb"),
  12766. name: "Back",
  12767. image: {
  12768. source: "./media/characters/drusilla/back.svg",
  12769. extra: 678 / 635,
  12770. bottom: 0.005
  12771. }
  12772. },
  12773. },
  12774. [
  12775. {
  12776. name: "Macro",
  12777. height: math.unit(100, "feet")
  12778. },
  12779. {
  12780. name: "Canon Height",
  12781. height: math.unit(2000, "feet"),
  12782. default: true
  12783. },
  12784. ]
  12785. ))
  12786. characterMakers.push(() => makeCharacter(
  12787. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12788. {
  12789. front: {
  12790. height: math.unit(6, "feet"),
  12791. weight: math.unit(180, "lb"),
  12792. name: "Front",
  12793. image: {
  12794. source: "./media/characters/renard-thatch/front.svg",
  12795. extra: 2411 / 2275,
  12796. bottom: 0.01
  12797. }
  12798. },
  12799. frontPosing: {
  12800. height: math.unit(6, "feet"),
  12801. weight: math.unit(180, "lb"),
  12802. name: "Front (Posing)",
  12803. image: {
  12804. source: "./media/characters/renard-thatch/front-posing.svg",
  12805. extra: 2381 / 2261,
  12806. bottom: 0.01
  12807. }
  12808. },
  12809. back: {
  12810. height: math.unit(6, "feet"),
  12811. weight: math.unit(180, "lb"),
  12812. name: "Back",
  12813. image: {
  12814. source: "./media/characters/renard-thatch/back.svg",
  12815. extra: 2428 / 2288
  12816. }
  12817. },
  12818. },
  12819. [
  12820. {
  12821. name: "Micro",
  12822. height: math.unit(3, "inches")
  12823. },
  12824. {
  12825. name: "Default",
  12826. height: math.unit(6, "feet"),
  12827. default: true
  12828. },
  12829. {
  12830. name: "Macro",
  12831. height: math.unit(75, "feet")
  12832. },
  12833. ]
  12834. ))
  12835. characterMakers.push(() => makeCharacter(
  12836. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12837. {
  12838. front: {
  12839. height: math.unit(1450, "feet"),
  12840. weight: math.unit(1.21e6, "tons"),
  12841. name: "Front",
  12842. image: {
  12843. source: "./media/characters/sekvra/front.svg",
  12844. extra: 1,
  12845. bottom: 0.03
  12846. }
  12847. },
  12848. frontClothed: {
  12849. height: math.unit(1450, "feet"),
  12850. weight: math.unit(1.21e6, "tons"),
  12851. name: "Front (Clothed)",
  12852. image: {
  12853. source: "./media/characters/sekvra/front-clothed.svg",
  12854. extra: 1,
  12855. bottom: 0.03
  12856. }
  12857. },
  12858. side: {
  12859. height: math.unit(1450, "feet"),
  12860. weight: math.unit(1.21e6, "tons"),
  12861. name: "Side",
  12862. image: {
  12863. source: "./media/characters/sekvra/side.svg",
  12864. extra: 1,
  12865. bottom: 0.025
  12866. }
  12867. },
  12868. back: {
  12869. height: math.unit(1450, "feet"),
  12870. weight: math.unit(1.21e6, "tons"),
  12871. name: "Back",
  12872. image: {
  12873. source: "./media/characters/sekvra/back.svg",
  12874. extra: 1,
  12875. bottom: 0.005
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Macro",
  12882. height: math.unit(1450, "feet"),
  12883. default: true
  12884. },
  12885. {
  12886. name: "Megamacro",
  12887. height: math.unit(15000, "feet")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(6, "feet"),
  12896. weight: math.unit(150, "lb"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/carmine/front.svg",
  12900. extra: 1,
  12901. bottom: 0.035
  12902. }
  12903. },
  12904. frontArmor: {
  12905. height: math.unit(6, "feet"),
  12906. weight: math.unit(150, "lb"),
  12907. name: "Front (Armor)",
  12908. image: {
  12909. source: "./media/characters/carmine/front-armor.svg",
  12910. extra: 1,
  12911. bottom: 0.035
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Large",
  12918. height: math.unit(1, "mile")
  12919. },
  12920. {
  12921. name: "Huge",
  12922. height: math.unit(40, "miles"),
  12923. default: true
  12924. },
  12925. {
  12926. name: "Colossal",
  12927. height: math.unit(2500, "miles")
  12928. },
  12929. ]
  12930. ))
  12931. characterMakers.push(() => makeCharacter(
  12932. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12933. {
  12934. front: {
  12935. height: math.unit(6, "feet"),
  12936. weight: math.unit(150, "lb"),
  12937. name: "Front",
  12938. image: {
  12939. source: "./media/characters/elyssia/front.svg",
  12940. extra: 2201 / 2035,
  12941. bottom: 0.05
  12942. }
  12943. },
  12944. frontClothed: {
  12945. height: math.unit(6, "feet"),
  12946. weight: math.unit(150, "lb"),
  12947. name: "Front (Clothed)",
  12948. image: {
  12949. source: "./media/characters/elyssia/front-clothed.svg",
  12950. extra: 2201 / 2035,
  12951. bottom: 0.05
  12952. }
  12953. },
  12954. back: {
  12955. height: math.unit(6, "feet"),
  12956. weight: math.unit(150, "lb"),
  12957. name: "Back",
  12958. image: {
  12959. source: "./media/characters/elyssia/back.svg",
  12960. extra: 2201 / 2035,
  12961. bottom: 0.013
  12962. }
  12963. },
  12964. },
  12965. [
  12966. {
  12967. name: "Smaller",
  12968. height: math.unit(150, "feet")
  12969. },
  12970. {
  12971. name: "Standard",
  12972. height: math.unit(1400, "feet"),
  12973. default: true
  12974. },
  12975. {
  12976. name: "Distracted",
  12977. height: math.unit(15000, "feet")
  12978. },
  12979. ]
  12980. ))
  12981. characterMakers.push(() => makeCharacter(
  12982. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12983. {
  12984. front: {
  12985. height: math.unit(7 + 4 / 12, "feet"),
  12986. weight: math.unit(500, "lb"),
  12987. name: "Front",
  12988. image: {
  12989. source: "./media/characters/geno-maxwell/front.svg",
  12990. extra: 2207 / 2040,
  12991. bottom: 0.015
  12992. }
  12993. },
  12994. },
  12995. [
  12996. {
  12997. name: "Micro",
  12998. height: math.unit(3, "inches")
  12999. },
  13000. {
  13001. name: "Normal",
  13002. height: math.unit(7 + 4 / 12, "feet"),
  13003. default: true
  13004. },
  13005. {
  13006. name: "Macro",
  13007. height: math.unit(220, "feet")
  13008. },
  13009. {
  13010. name: "Megamacro",
  13011. height: math.unit(11, "miles")
  13012. },
  13013. ]
  13014. ))
  13015. characterMakers.push(() => makeCharacter(
  13016. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13017. {
  13018. front: {
  13019. height: math.unit(7 + 4 / 12, "feet"),
  13020. weight: math.unit(500, "lb"),
  13021. name: "Front",
  13022. image: {
  13023. source: "./media/characters/regena-maxwell/front.svg",
  13024. extra: 3115 / 2770,
  13025. bottom: 0.02
  13026. }
  13027. },
  13028. },
  13029. [
  13030. {
  13031. name: "Normal",
  13032. height: math.unit(7 + 4 / 12, "feet"),
  13033. default: true
  13034. },
  13035. {
  13036. name: "Macro",
  13037. height: math.unit(220, "feet")
  13038. },
  13039. {
  13040. name: "Megamacro",
  13041. height: math.unit(11, "miles")
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13047. {
  13048. front: {
  13049. height: math.unit(6, "feet"),
  13050. weight: math.unit(150, "lb"),
  13051. name: "Front",
  13052. image: {
  13053. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13054. extra: 860 / 690,
  13055. bottom: 0.03
  13056. }
  13057. },
  13058. },
  13059. [
  13060. {
  13061. name: "Normal",
  13062. height: math.unit(1.7, "meters"),
  13063. default: true
  13064. },
  13065. ]
  13066. ))
  13067. characterMakers.push(() => makeCharacter(
  13068. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13069. {
  13070. front: {
  13071. height: math.unit(6, "feet"),
  13072. weight: math.unit(150, "lb"),
  13073. name: "Front",
  13074. image: {
  13075. source: "./media/characters/quilly/front.svg",
  13076. extra: 890 / 776
  13077. }
  13078. },
  13079. },
  13080. [
  13081. {
  13082. name: "Gigamacro",
  13083. height: math.unit(404090, "miles"),
  13084. default: true
  13085. },
  13086. ]
  13087. ))
  13088. characterMakers.push(() => makeCharacter(
  13089. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13090. {
  13091. front: {
  13092. height: math.unit(7 + 8 / 12, "feet"),
  13093. weight: math.unit(350, "lb"),
  13094. name: "Front",
  13095. image: {
  13096. source: "./media/characters/tempest/front.svg",
  13097. extra: 1175 / 1086,
  13098. bottom: 0.02
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Normal",
  13105. height: math.unit(7 + 8 / 12, "feet"),
  13106. default: true
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13112. {
  13113. side: {
  13114. height: math.unit(4 + 5 / 12, "feet"),
  13115. weight: math.unit(80, "lb"),
  13116. name: "Side",
  13117. image: {
  13118. source: "./media/characters/rodger/side.svg",
  13119. extra: 1235 / 1118
  13120. }
  13121. },
  13122. },
  13123. [
  13124. {
  13125. name: "Micro",
  13126. height: math.unit(1, "inch")
  13127. },
  13128. {
  13129. name: "Normal",
  13130. height: math.unit(4 + 5 / 12, "feet"),
  13131. default: true
  13132. },
  13133. {
  13134. name: "Macro",
  13135. height: math.unit(120, "feet")
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13141. {
  13142. front: {
  13143. height: math.unit(6, "feet"),
  13144. weight: math.unit(150, "lb"),
  13145. name: "Front",
  13146. image: {
  13147. source: "./media/characters/danyel/front.svg",
  13148. extra: 1185 / 1123,
  13149. bottom: 0.05
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Shrunken",
  13156. height: math.unit(0.5, "mm")
  13157. },
  13158. {
  13159. name: "Micro",
  13160. height: math.unit(1, "mm"),
  13161. default: true
  13162. },
  13163. {
  13164. name: "Upsized",
  13165. height: math.unit(5 + 5 / 12, "feet")
  13166. },
  13167. ]
  13168. ))
  13169. characterMakers.push(() => makeCharacter(
  13170. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13171. {
  13172. front: {
  13173. height: math.unit(5 + 6 / 12, "feet"),
  13174. weight: math.unit(200, "lb"),
  13175. name: "Front",
  13176. image: {
  13177. source: "./media/characters/vivian-bijoux/front.svg",
  13178. extra: 1,
  13179. bottom: 0.072
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Normal",
  13186. height: math.unit(5 + 6 / 12, "feet"),
  13187. default: true
  13188. },
  13189. {
  13190. name: "Bad Dream",
  13191. height: math.unit(500, "feet")
  13192. },
  13193. {
  13194. name: "Nightmare",
  13195. height: math.unit(500, "miles")
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(6 + 1 / 12, "feet"),
  13204. weight: math.unit(260, "lb"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/zeta/front.svg",
  13208. extra: 1968 / 1889,
  13209. bottom: 0.06
  13210. }
  13211. },
  13212. back: {
  13213. height: math.unit(6 + 1 / 12, "feet"),
  13214. weight: math.unit(260, "lb"),
  13215. name: "Back",
  13216. image: {
  13217. source: "./media/characters/zeta/back.svg",
  13218. extra: 1944 / 1858,
  13219. bottom: 0.03
  13220. }
  13221. },
  13222. hand: {
  13223. height: math.unit(1.112, "feet"),
  13224. name: "Hand",
  13225. image: {
  13226. source: "./media/characters/zeta/hand.svg"
  13227. }
  13228. },
  13229. foot: {
  13230. height: math.unit(1.48, "feet"),
  13231. name: "Foot",
  13232. image: {
  13233. source: "./media/characters/zeta/foot.svg"
  13234. }
  13235. },
  13236. },
  13237. [
  13238. {
  13239. name: "Micro",
  13240. height: math.unit(6, "inches")
  13241. },
  13242. {
  13243. name: "Normal",
  13244. height: math.unit(6 + 1 / 12, "feet"),
  13245. default: true
  13246. },
  13247. {
  13248. name: "Macro",
  13249. height: math.unit(20, "feet")
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13255. {
  13256. front: {
  13257. height: math.unit(6, "feet"),
  13258. weight: math.unit(150, "lb"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/jamie-larsen/front.svg",
  13262. extra: 962 / 933,
  13263. bottom: 0.02
  13264. }
  13265. },
  13266. back: {
  13267. height: math.unit(6, "feet"),
  13268. weight: math.unit(150, "lb"),
  13269. name: "Back",
  13270. image: {
  13271. source: "./media/characters/jamie-larsen/back.svg",
  13272. extra: 997 / 946
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Macro",
  13279. height: math.unit(28 + 7 / 12, "feet"),
  13280. default: true
  13281. },
  13282. {
  13283. name: "Macro+",
  13284. height: math.unit(180, "feet")
  13285. },
  13286. {
  13287. name: "Megamacro",
  13288. height: math.unit(10, "miles")
  13289. },
  13290. {
  13291. name: "Gigamacro",
  13292. height: math.unit(200000, "miles")
  13293. },
  13294. ]
  13295. ))
  13296. characterMakers.push(() => makeCharacter(
  13297. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13298. {
  13299. front: {
  13300. height: math.unit(6, "feet"),
  13301. weight: math.unit(120, "lb"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/vance/front.svg",
  13305. extra: 1980 / 1890,
  13306. bottom: 0.09
  13307. }
  13308. },
  13309. back: {
  13310. height: math.unit(6, "feet"),
  13311. weight: math.unit(120, "lb"),
  13312. name: "Back",
  13313. image: {
  13314. source: "./media/characters/vance/back.svg",
  13315. extra: 2081 / 1994,
  13316. bottom: 0.014
  13317. }
  13318. },
  13319. hand: {
  13320. height: math.unit(0.88, "feet"),
  13321. name: "Hand",
  13322. image: {
  13323. source: "./media/characters/vance/hand.svg"
  13324. }
  13325. },
  13326. foot: {
  13327. height: math.unit(0.64, "feet"),
  13328. name: "Foot",
  13329. image: {
  13330. source: "./media/characters/vance/foot.svg"
  13331. }
  13332. },
  13333. },
  13334. [
  13335. {
  13336. name: "Small",
  13337. height: math.unit(90, "feet"),
  13338. default: true
  13339. },
  13340. {
  13341. name: "Macro",
  13342. height: math.unit(100, "meters")
  13343. },
  13344. {
  13345. name: "Megamacro",
  13346. height: math.unit(15, "miles")
  13347. },
  13348. ]
  13349. ))
  13350. characterMakers.push(() => makeCharacter(
  13351. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13352. {
  13353. front: {
  13354. height: math.unit(6, "feet"),
  13355. weight: math.unit(180, "lb"),
  13356. name: "Front",
  13357. image: {
  13358. source: "./media/characters/xochitl/front.svg",
  13359. extra: 2297 / 2261,
  13360. bottom: 0.065
  13361. }
  13362. },
  13363. back: {
  13364. height: math.unit(6, "feet"),
  13365. weight: math.unit(180, "lb"),
  13366. name: "Back",
  13367. image: {
  13368. source: "./media/characters/xochitl/back.svg",
  13369. extra: 2386 / 2354,
  13370. bottom: 0.01
  13371. }
  13372. },
  13373. foot: {
  13374. height: math.unit(6 / 5 * 1.15, "feet"),
  13375. weight: math.unit(150, "lb"),
  13376. name: "Foot",
  13377. image: {
  13378. source: "./media/characters/xochitl/foot.svg"
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Macro",
  13385. height: math.unit(80, "feet")
  13386. },
  13387. {
  13388. name: "Macro+",
  13389. height: math.unit(400, "feet"),
  13390. default: true
  13391. },
  13392. {
  13393. name: "Gigamacro",
  13394. height: math.unit(80000, "miles")
  13395. },
  13396. {
  13397. name: "Gigamacro+",
  13398. height: math.unit(400000, "miles")
  13399. },
  13400. {
  13401. name: "Teramacro",
  13402. height: math.unit(300, "AU")
  13403. },
  13404. ]
  13405. ))
  13406. characterMakers.push(() => makeCharacter(
  13407. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13408. {
  13409. front: {
  13410. height: math.unit(6, "feet"),
  13411. weight: math.unit(150, "lb"),
  13412. name: "Front",
  13413. image: {
  13414. source: "./media/characters/vincent/front.svg",
  13415. extra: 1130 / 1080,
  13416. bottom: 0.055
  13417. }
  13418. },
  13419. beak: {
  13420. height: math.unit(6 * 0.1, "feet"),
  13421. name: "Beak",
  13422. image: {
  13423. source: "./media/characters/vincent/beak.svg"
  13424. }
  13425. },
  13426. hand: {
  13427. height: math.unit(6 * 0.85, "feet"),
  13428. weight: math.unit(150, "lb"),
  13429. name: "Hand",
  13430. image: {
  13431. source: "./media/characters/vincent/hand.svg"
  13432. }
  13433. },
  13434. foot: {
  13435. height: math.unit(6 * 0.19, "feet"),
  13436. weight: math.unit(150, "lb"),
  13437. name: "Foot",
  13438. image: {
  13439. source: "./media/characters/vincent/foot.svg"
  13440. }
  13441. },
  13442. },
  13443. [
  13444. {
  13445. name: "Base",
  13446. height: math.unit(6 + 5 / 12, "feet"),
  13447. default: true
  13448. },
  13449. {
  13450. name: "Macro",
  13451. height: math.unit(300, "feet")
  13452. },
  13453. {
  13454. name: "Megamacro",
  13455. height: math.unit(2, "miles")
  13456. },
  13457. {
  13458. name: "Gigamacro",
  13459. height: math.unit(1000, "miles")
  13460. },
  13461. ]
  13462. ))
  13463. characterMakers.push(() => makeCharacter(
  13464. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13465. {
  13466. front: {
  13467. height: math.unit(2, "meters"),
  13468. weight: math.unit(500, "kg"),
  13469. name: "Front",
  13470. image: {
  13471. source: "./media/characters/coatl/front.svg",
  13472. extra: 3948 / 3500,
  13473. bottom: 0.082
  13474. }
  13475. },
  13476. },
  13477. [
  13478. {
  13479. name: "Normal",
  13480. height: math.unit(4, "meters")
  13481. },
  13482. {
  13483. name: "Macro",
  13484. height: math.unit(100, "meters"),
  13485. default: true
  13486. },
  13487. {
  13488. name: "Macro+",
  13489. height: math.unit(300, "meters")
  13490. },
  13491. {
  13492. name: "Megamacro",
  13493. height: math.unit(3, "gigameters")
  13494. },
  13495. {
  13496. name: "Megamacro+",
  13497. height: math.unit(300, "terameters")
  13498. },
  13499. {
  13500. name: "Megamacro++",
  13501. height: math.unit(3, "lightyears")
  13502. },
  13503. ]
  13504. ))
  13505. characterMakers.push(() => makeCharacter(
  13506. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13507. {
  13508. front: {
  13509. height: math.unit(6, "feet"),
  13510. weight: math.unit(50, "kg"),
  13511. name: "front",
  13512. image: {
  13513. source: "./media/characters/shiroryu/front.svg",
  13514. extra: 1990 / 1935
  13515. }
  13516. },
  13517. },
  13518. [
  13519. {
  13520. name: "Mortal Mingling",
  13521. height: math.unit(3, "meters")
  13522. },
  13523. {
  13524. name: "Kaiju-ish",
  13525. height: math.unit(250, "meters")
  13526. },
  13527. {
  13528. name: "Somewhat Godly",
  13529. height: math.unit(400, "km"),
  13530. default: true
  13531. },
  13532. {
  13533. name: "Planetary",
  13534. height: math.unit(300, "megameters")
  13535. },
  13536. {
  13537. name: "Galaxy-dwarfing",
  13538. height: math.unit(450, "kiloparsecs")
  13539. },
  13540. {
  13541. name: "Universe Eater",
  13542. height: math.unit(150, "gigaparsecs")
  13543. },
  13544. {
  13545. name: "Almost Immeasurable",
  13546. height: math.unit(1.3e266, "yottaparsecs")
  13547. },
  13548. ]
  13549. ))
  13550. characterMakers.push(() => makeCharacter(
  13551. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13552. {
  13553. front: {
  13554. height: math.unit(6, "feet"),
  13555. weight: math.unit(150, "lb"),
  13556. name: "Front",
  13557. image: {
  13558. source: "./media/characters/umeko/front.svg",
  13559. extra: 1,
  13560. bottom: 0.019
  13561. }
  13562. },
  13563. frontArmored: {
  13564. height: math.unit(6, "feet"),
  13565. weight: math.unit(150, "lb"),
  13566. name: "Front (Armored)",
  13567. image: {
  13568. source: "./media/characters/umeko/front-armored.svg",
  13569. extra: 1,
  13570. bottom: 0.021
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Macro",
  13577. height: math.unit(220, "feet"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Guardian Dragon",
  13582. height: math.unit(50, "miles")
  13583. },
  13584. {
  13585. name: "Cosmic",
  13586. height: math.unit(800000, "miles")
  13587. },
  13588. ]
  13589. ))
  13590. characterMakers.push(() => makeCharacter(
  13591. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13592. {
  13593. front: {
  13594. height: math.unit(6, "feet"),
  13595. weight: math.unit(150, "lb"),
  13596. name: "Front",
  13597. image: {
  13598. source: "./media/characters/cassidy/front.svg",
  13599. extra: 1,
  13600. bottom: 0.043
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Canon Height",
  13607. height: math.unit(120, "feet"),
  13608. default: true
  13609. },
  13610. {
  13611. name: "Macro+",
  13612. height: math.unit(400, "feet")
  13613. },
  13614. {
  13615. name: "Macro++",
  13616. height: math.unit(4000, "feet")
  13617. },
  13618. {
  13619. name: "Megamacro",
  13620. height: math.unit(3, "miles")
  13621. },
  13622. ]
  13623. ))
  13624. characterMakers.push(() => makeCharacter(
  13625. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13626. {
  13627. front: {
  13628. height: math.unit(6, "feet"),
  13629. weight: math.unit(150, "lb"),
  13630. name: "Front",
  13631. image: {
  13632. source: "./media/characters/isaac/front.svg",
  13633. extra: 896 / 815,
  13634. bottom: 0.11
  13635. }
  13636. },
  13637. },
  13638. [
  13639. {
  13640. name: "Human Size",
  13641. height: math.unit(8, "feet"),
  13642. default: true
  13643. },
  13644. {
  13645. name: "Macro",
  13646. height: math.unit(400, "feet")
  13647. },
  13648. {
  13649. name: "Megamacro",
  13650. height: math.unit(50, "miles")
  13651. },
  13652. {
  13653. name: "Canon Height",
  13654. height: math.unit(200, "AU")
  13655. },
  13656. ]
  13657. ))
  13658. characterMakers.push(() => makeCharacter(
  13659. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13660. {
  13661. front: {
  13662. height: math.unit(6, "feet"),
  13663. weight: math.unit(72, "kg"),
  13664. name: "Front",
  13665. image: {
  13666. source: "./media/characters/sleekit/front.svg",
  13667. extra: 4693 / 4487,
  13668. bottom: 0.012
  13669. }
  13670. },
  13671. },
  13672. [
  13673. {
  13674. name: "Minimum Height",
  13675. height: math.unit(10, "meters")
  13676. },
  13677. {
  13678. name: "Smaller",
  13679. height: math.unit(25, "meters")
  13680. },
  13681. {
  13682. name: "Larger",
  13683. height: math.unit(38, "meters"),
  13684. default: true
  13685. },
  13686. {
  13687. name: "Maximum height",
  13688. height: math.unit(100, "meters")
  13689. },
  13690. ]
  13691. ))
  13692. characterMakers.push(() => makeCharacter(
  13693. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13694. {
  13695. front: {
  13696. height: math.unit(6, "feet"),
  13697. weight: math.unit(150, "lb"),
  13698. name: "Front",
  13699. image: {
  13700. source: "./media/characters/nillia/front.svg",
  13701. extra: 2195 / 2037,
  13702. bottom: 0.005
  13703. }
  13704. },
  13705. back: {
  13706. height: math.unit(6, "feet"),
  13707. weight: math.unit(150, "lb"),
  13708. name: "Back",
  13709. image: {
  13710. source: "./media/characters/nillia/back.svg",
  13711. extra: 2195 / 2037,
  13712. bottom: 0.005
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Canon Height",
  13719. height: math.unit(489, "feet"),
  13720. default: true
  13721. }
  13722. ]
  13723. ))
  13724. characterMakers.push(() => makeCharacter(
  13725. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13726. {
  13727. front: {
  13728. height: math.unit(6, "feet"),
  13729. weight: math.unit(150, "lb"),
  13730. name: "Front",
  13731. image: {
  13732. source: "./media/characters/mesmyriza/front.svg",
  13733. extra: 2067 / 1784,
  13734. bottom: 0.035
  13735. }
  13736. },
  13737. foot: {
  13738. height: math.unit(6 / (250 / 35), "feet"),
  13739. name: "Foot",
  13740. image: {
  13741. source: "./media/characters/mesmyriza/foot.svg"
  13742. }
  13743. },
  13744. },
  13745. [
  13746. {
  13747. name: "Macro",
  13748. height: math.unit(457, "meters"),
  13749. default: true
  13750. },
  13751. {
  13752. name: "Megamacro",
  13753. height: math.unit(8, "megameters")
  13754. },
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13759. {
  13760. front: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(250, "lb"),
  13763. name: "Front",
  13764. image: {
  13765. source: "./media/characters/saudade/front.svg",
  13766. extra: 1172 / 1139,
  13767. bottom: 0.035
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Micro",
  13774. height: math.unit(3, "inches")
  13775. },
  13776. {
  13777. name: "Normal",
  13778. height: math.unit(6, "feet"),
  13779. default: true
  13780. },
  13781. {
  13782. name: "Macro",
  13783. height: math.unit(50, "feet")
  13784. },
  13785. {
  13786. name: "Megamacro",
  13787. height: math.unit(2800, "feet")
  13788. },
  13789. ]
  13790. ))
  13791. characterMakers.push(() => makeCharacter(
  13792. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13793. {
  13794. front: {
  13795. height: math.unit(5 + 4 / 12, "feet"),
  13796. weight: math.unit(100, "lb"),
  13797. name: "Front",
  13798. image: {
  13799. source: "./media/characters/keireer/front.svg",
  13800. extra: 716 / 666,
  13801. bottom: 0.05
  13802. }
  13803. },
  13804. },
  13805. [
  13806. {
  13807. name: "Normal",
  13808. height: math.unit(5 + 4 / 12, "feet"),
  13809. default: true
  13810. },
  13811. ]
  13812. ))
  13813. characterMakers.push(() => makeCharacter(
  13814. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13815. {
  13816. front: {
  13817. height: math.unit(6, "feet"),
  13818. weight: math.unit(90, "kg"),
  13819. name: "Front",
  13820. image: {
  13821. source: "./media/characters/mirja/front.svg",
  13822. extra: 1789 / 1683,
  13823. bottom: 0.05
  13824. }
  13825. },
  13826. frontDressed: {
  13827. height: math.unit(6, "feet"),
  13828. weight: math.unit(90, "lb"),
  13829. name: "Front (Dressed)",
  13830. image: {
  13831. source: "./media/characters/mirja/front-dressed.svg",
  13832. extra: 1789 / 1683,
  13833. bottom: 0.05
  13834. }
  13835. },
  13836. back: {
  13837. height: math.unit(6, "feet"),
  13838. weight: math.unit(90, "lb"),
  13839. name: "Back",
  13840. image: {
  13841. source: "./media/characters/mirja/back.svg",
  13842. extra: 953 / 917,
  13843. bottom: 0.017
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "\"Incognito\"",
  13850. height: math.unit(3, "meters")
  13851. },
  13852. {
  13853. name: "Strolling Size",
  13854. height: math.unit(15, "km")
  13855. },
  13856. {
  13857. name: "Larger Strolling Size",
  13858. height: math.unit(400, "km")
  13859. },
  13860. {
  13861. name: "Preferred Size",
  13862. height: math.unit(5000, "km")
  13863. },
  13864. {
  13865. name: "True Size",
  13866. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13867. default: true
  13868. },
  13869. ]
  13870. ))
  13871. characterMakers.push(() => makeCharacter(
  13872. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13873. {
  13874. front: {
  13875. height: math.unit(15, "feet"),
  13876. weight: math.unit(880, "kg"),
  13877. name: "Front",
  13878. image: {
  13879. source: "./media/characters/nightraver/front.svg",
  13880. extra: 2444 / 2160,
  13881. bottom: 0.027
  13882. }
  13883. },
  13884. back: {
  13885. height: math.unit(15, "feet"),
  13886. weight: math.unit(880, "kg"),
  13887. name: "Back",
  13888. image: {
  13889. source: "./media/characters/nightraver/back.svg",
  13890. extra: 2309 / 2180,
  13891. bottom: 0.005
  13892. }
  13893. },
  13894. sole: {
  13895. height: math.unit(2.878, "feet"),
  13896. name: "Sole",
  13897. image: {
  13898. source: "./media/characters/nightraver/sole.svg"
  13899. }
  13900. },
  13901. foot: {
  13902. height: math.unit(2.285, "feet"),
  13903. name: "Foot",
  13904. image: {
  13905. source: "./media/characters/nightraver/foot.svg"
  13906. }
  13907. },
  13908. maw: {
  13909. height: math.unit(2.67, "feet"),
  13910. name: "Maw",
  13911. image: {
  13912. source: "./media/characters/nightraver/maw.svg"
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Micro",
  13919. height: math.unit(1, "cm")
  13920. },
  13921. {
  13922. name: "Normal",
  13923. height: math.unit(15, "feet"),
  13924. default: true
  13925. },
  13926. {
  13927. name: "Macro",
  13928. height: math.unit(300, "feet")
  13929. },
  13930. {
  13931. name: "Megamacro",
  13932. height: math.unit(300, "miles")
  13933. },
  13934. {
  13935. name: "Gigamacro",
  13936. height: math.unit(10000, "miles")
  13937. },
  13938. ]
  13939. ))
  13940. characterMakers.push(() => makeCharacter(
  13941. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13942. {
  13943. side: {
  13944. height: math.unit(2, "inches"),
  13945. weight: math.unit(5, "grams"),
  13946. name: "Side",
  13947. image: {
  13948. source: "./media/characters/arc/side.svg"
  13949. }
  13950. },
  13951. },
  13952. [
  13953. {
  13954. name: "Micro",
  13955. height: math.unit(2, "inches"),
  13956. default: true
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13962. {
  13963. front: {
  13964. height: math.unit(1.1938, "meters"),
  13965. weight: math.unit(54, "kg"),
  13966. name: "Front",
  13967. image: {
  13968. source: "./media/characters/nebula-shahar/front.svg",
  13969. extra: 1642 / 1436,
  13970. bottom: 0.06
  13971. }
  13972. },
  13973. },
  13974. [
  13975. {
  13976. name: "Megamicro",
  13977. height: math.unit(0.3, "mm")
  13978. },
  13979. {
  13980. name: "Micro",
  13981. height: math.unit(3, "cm")
  13982. },
  13983. {
  13984. name: "Normal",
  13985. height: math.unit(138, "cm"),
  13986. default: true
  13987. },
  13988. {
  13989. name: "Macro",
  13990. height: math.unit(30, "m")
  13991. },
  13992. ]
  13993. ))
  13994. characterMakers.push(() => makeCharacter(
  13995. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13996. {
  13997. front: {
  13998. height: math.unit(5.24, "feet"),
  13999. weight: math.unit(150, "lb"),
  14000. name: "Front",
  14001. image: {
  14002. source: "./media/characters/shayla/front.svg",
  14003. extra: 1512 / 1414,
  14004. bottom: 0.01
  14005. }
  14006. },
  14007. back: {
  14008. height: math.unit(5.24, "feet"),
  14009. weight: math.unit(150, "lb"),
  14010. name: "Back",
  14011. image: {
  14012. source: "./media/characters/shayla/back.svg",
  14013. extra: 1512 / 1414
  14014. }
  14015. },
  14016. hand: {
  14017. height: math.unit(0.7781496062992126, "feet"),
  14018. name: "Hand",
  14019. image: {
  14020. source: "./media/characters/shayla/hand.svg"
  14021. }
  14022. },
  14023. foot: {
  14024. height: math.unit(1.4206036745406823, "feet"),
  14025. name: "Foot",
  14026. image: {
  14027. source: "./media/characters/shayla/foot.svg"
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Micro",
  14034. height: math.unit(0.32, "feet")
  14035. },
  14036. {
  14037. name: "Normal",
  14038. height: math.unit(5.24, "feet"),
  14039. default: true
  14040. },
  14041. {
  14042. name: "Macro",
  14043. height: math.unit(492.12, "feet")
  14044. },
  14045. {
  14046. name: "Megamacro",
  14047. height: math.unit(186.41, "miles")
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14053. {
  14054. front: {
  14055. height: math.unit(2.2, "m"),
  14056. weight: math.unit(120, "kg"),
  14057. name: "Front",
  14058. image: {
  14059. source: "./media/characters/pia-jr/front.svg",
  14060. extra: 1000 / 970,
  14061. bottom: 0.035
  14062. }
  14063. },
  14064. hand: {
  14065. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14066. name: "Hand",
  14067. image: {
  14068. source: "./media/characters/pia-jr/hand.svg"
  14069. }
  14070. },
  14071. paw: {
  14072. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14073. name: "Paw",
  14074. image: {
  14075. source: "./media/characters/pia-jr/paw.svg"
  14076. }
  14077. },
  14078. },
  14079. [
  14080. {
  14081. name: "Micro",
  14082. height: math.unit(1.2, "cm")
  14083. },
  14084. {
  14085. name: "Normal",
  14086. height: math.unit(2.2, "m"),
  14087. default: true
  14088. },
  14089. {
  14090. name: "Macro",
  14091. height: math.unit(180, "m")
  14092. },
  14093. {
  14094. name: "Megamacro",
  14095. height: math.unit(420, "km")
  14096. },
  14097. ]
  14098. ))
  14099. characterMakers.push(() => makeCharacter(
  14100. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14101. {
  14102. front: {
  14103. height: math.unit(2, "m"),
  14104. weight: math.unit(115, "kg"),
  14105. name: "Front",
  14106. image: {
  14107. source: "./media/characters/pia-sr/front.svg",
  14108. extra: 760 / 730,
  14109. bottom: 0.015
  14110. }
  14111. },
  14112. back: {
  14113. height: math.unit(2, "m"),
  14114. weight: math.unit(115, "kg"),
  14115. name: "Back",
  14116. image: {
  14117. source: "./media/characters/pia-sr/back.svg",
  14118. extra: 760 / 730,
  14119. bottom: 0.01
  14120. }
  14121. },
  14122. hand: {
  14123. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14124. name: "Hand",
  14125. image: {
  14126. source: "./media/characters/pia-sr/hand.svg"
  14127. }
  14128. },
  14129. foot: {
  14130. height: math.unit(1.83, "feet"),
  14131. name: "Foot",
  14132. image: {
  14133. source: "./media/characters/pia-sr/foot.svg"
  14134. }
  14135. },
  14136. },
  14137. [
  14138. {
  14139. name: "Micro",
  14140. height: math.unit(88, "mm")
  14141. },
  14142. {
  14143. name: "Normal",
  14144. height: math.unit(2, "m"),
  14145. default: true
  14146. },
  14147. {
  14148. name: "Macro",
  14149. height: math.unit(200, "m")
  14150. },
  14151. {
  14152. name: "Megamacro",
  14153. height: math.unit(420, "km")
  14154. },
  14155. ]
  14156. ))
  14157. characterMakers.push(() => makeCharacter(
  14158. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14159. {
  14160. front: {
  14161. height: math.unit(8 + 2 / 12, "feet"),
  14162. weight: math.unit(300, "lb"),
  14163. name: "Front",
  14164. image: {
  14165. source: "./media/characters/kibibyte/front.svg",
  14166. extra: 2221 / 2098,
  14167. bottom: 0.04
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Normal",
  14174. height: math.unit(8 + 2 / 12, "feet"),
  14175. default: true
  14176. },
  14177. {
  14178. name: "Socialable Macro",
  14179. height: math.unit(50, "feet")
  14180. },
  14181. {
  14182. name: "Macro",
  14183. height: math.unit(300, "feet")
  14184. },
  14185. {
  14186. name: "Megamacro",
  14187. height: math.unit(500, "miles")
  14188. },
  14189. ]
  14190. ))
  14191. characterMakers.push(() => makeCharacter(
  14192. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14193. {
  14194. front: {
  14195. height: math.unit(6, "feet"),
  14196. weight: math.unit(150, "lb"),
  14197. name: "Front",
  14198. image: {
  14199. source: "./media/characters/felix/front.svg",
  14200. extra: 762 / 722,
  14201. bottom: 0.02
  14202. }
  14203. },
  14204. frontClothed: {
  14205. height: math.unit(6, "feet"),
  14206. weight: math.unit(150, "lb"),
  14207. name: "Front (Clothed)",
  14208. image: {
  14209. source: "./media/characters/felix/front-clothed.svg",
  14210. extra: 762 / 722,
  14211. bottom: 0.02
  14212. }
  14213. },
  14214. },
  14215. [
  14216. {
  14217. name: "Normal",
  14218. height: math.unit(6 + 8 / 12, "feet"),
  14219. default: true
  14220. },
  14221. {
  14222. name: "Macro",
  14223. height: math.unit(2600, "feet")
  14224. },
  14225. {
  14226. name: "Megamacro",
  14227. height: math.unit(450, "miles")
  14228. },
  14229. ]
  14230. ))
  14231. characterMakers.push(() => makeCharacter(
  14232. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14233. {
  14234. front: {
  14235. height: math.unit(6 + 1 / 12, "feet"),
  14236. weight: math.unit(250, "lb"),
  14237. name: "Front",
  14238. image: {
  14239. source: "./media/characters/tobo/front.svg",
  14240. extra: 608 / 586,
  14241. bottom: 0.023
  14242. }
  14243. },
  14244. back: {
  14245. height: math.unit(6 + 1 / 12, "feet"),
  14246. weight: math.unit(250, "lb"),
  14247. name: "Back",
  14248. image: {
  14249. source: "./media/characters/tobo/back.svg",
  14250. extra: 608 / 586
  14251. }
  14252. },
  14253. },
  14254. [
  14255. {
  14256. name: "Nano",
  14257. height: math.unit(2, "nm")
  14258. },
  14259. {
  14260. name: "Megamicro",
  14261. height: math.unit(0.1, "mm")
  14262. },
  14263. {
  14264. name: "Micro",
  14265. height: math.unit(1, "inch"),
  14266. default: true
  14267. },
  14268. {
  14269. name: "Human-sized",
  14270. height: math.unit(6 + 1 / 12, "feet")
  14271. },
  14272. {
  14273. name: "Macro",
  14274. height: math.unit(250, "feet")
  14275. },
  14276. {
  14277. name: "Megamacro",
  14278. height: math.unit(75, "miles")
  14279. },
  14280. {
  14281. name: "Texas-sized",
  14282. height: math.unit(750, "miles")
  14283. },
  14284. {
  14285. name: "Teramacro",
  14286. height: math.unit(50000, "miles")
  14287. },
  14288. ]
  14289. ))
  14290. characterMakers.push(() => makeCharacter(
  14291. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14292. {
  14293. front: {
  14294. height: math.unit(6, "feet"),
  14295. weight: math.unit(269, "lb"),
  14296. name: "Front",
  14297. image: {
  14298. source: "./media/characters/danny-kapowsky/front.svg",
  14299. extra: 766 / 736,
  14300. bottom: 0.044
  14301. }
  14302. },
  14303. back: {
  14304. height: math.unit(6, "feet"),
  14305. weight: math.unit(269, "lb"),
  14306. name: "Back",
  14307. image: {
  14308. source: "./media/characters/danny-kapowsky/back.svg",
  14309. extra: 797 / 760,
  14310. bottom: 0.025
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Macro",
  14317. height: math.unit(150, "feet"),
  14318. default: true
  14319. },
  14320. {
  14321. name: "Macro+",
  14322. height: math.unit(200, "feet")
  14323. },
  14324. {
  14325. name: "Macro++",
  14326. height: math.unit(300, "feet")
  14327. },
  14328. {
  14329. name: "Macro+++",
  14330. height: math.unit(400, "feet")
  14331. },
  14332. ]
  14333. ))
  14334. characterMakers.push(() => makeCharacter(
  14335. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14336. {
  14337. side: {
  14338. height: math.unit(6, "feet"),
  14339. weight: math.unit(170, "lb"),
  14340. name: "Side",
  14341. image: {
  14342. source: "./media/characters/finn/side.svg",
  14343. extra: 1953 / 1807,
  14344. bottom: 0.057
  14345. }
  14346. },
  14347. },
  14348. [
  14349. {
  14350. name: "Megamacro",
  14351. height: math.unit(14445, "feet"),
  14352. default: true
  14353. },
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14358. {
  14359. front: {
  14360. height: math.unit(5 + 6 / 12, "feet"),
  14361. weight: math.unit(125, "lb"),
  14362. name: "Front",
  14363. image: {
  14364. source: "./media/characters/roy/front.svg",
  14365. extra: 1,
  14366. bottom: 0.11
  14367. }
  14368. },
  14369. },
  14370. [
  14371. {
  14372. name: "Micro",
  14373. height: math.unit(3, "inches"),
  14374. default: true
  14375. },
  14376. {
  14377. name: "Normal",
  14378. height: math.unit(5 + 6 / 12, "feet")
  14379. },
  14380. {
  14381. name: "Lesser Macro",
  14382. height: math.unit(60, "feet")
  14383. },
  14384. {
  14385. name: "Greater Macro",
  14386. height: math.unit(120, "feet")
  14387. },
  14388. ]
  14389. ))
  14390. characterMakers.push(() => makeCharacter(
  14391. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14392. {
  14393. front: {
  14394. height: math.unit(6, "feet"),
  14395. weight: math.unit(100, "lb"),
  14396. name: "Front",
  14397. image: {
  14398. source: "./media/characters/aevsivs/front.svg",
  14399. extra: 1,
  14400. bottom: 0.03
  14401. }
  14402. },
  14403. back: {
  14404. height: math.unit(6, "feet"),
  14405. weight: math.unit(100, "lb"),
  14406. name: "Back",
  14407. image: {
  14408. source: "./media/characters/aevsivs/back.svg"
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Micro",
  14415. height: math.unit(2, "inches"),
  14416. default: true
  14417. },
  14418. {
  14419. name: "Normal",
  14420. height: math.unit(5, "feet")
  14421. },
  14422. ]
  14423. ))
  14424. characterMakers.push(() => makeCharacter(
  14425. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14426. {
  14427. front: {
  14428. height: math.unit(5 + 7 / 12, "feet"),
  14429. weight: math.unit(159, "lb"),
  14430. name: "Front",
  14431. image: {
  14432. source: "./media/characters/hildegard/front.svg",
  14433. extra: 289 / 269,
  14434. bottom: 7.63 / 297.8
  14435. }
  14436. },
  14437. back: {
  14438. height: math.unit(5 + 7 / 12, "feet"),
  14439. weight: math.unit(159, "lb"),
  14440. name: "Back",
  14441. image: {
  14442. source: "./media/characters/hildegard/back.svg",
  14443. extra: 280 / 260,
  14444. bottom: 2.3 / 282
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Normal",
  14451. height: math.unit(5 + 7 / 12, "feet"),
  14452. default: true
  14453. },
  14454. ]
  14455. ))
  14456. characterMakers.push(() => makeCharacter(
  14457. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14458. {
  14459. bernard: {
  14460. height: math.unit(2 + 7 / 12, "feet"),
  14461. weight: math.unit(66, "lb"),
  14462. name: "Bernard",
  14463. rename: true,
  14464. image: {
  14465. source: "./media/characters/bernard-wilder/bernard.svg",
  14466. extra: 192 / 128,
  14467. bottom: 0.05
  14468. }
  14469. },
  14470. wilder: {
  14471. height: math.unit(5 + 8 / 12, "feet"),
  14472. weight: math.unit(143, "lb"),
  14473. name: "Wilder",
  14474. rename: true,
  14475. image: {
  14476. source: "./media/characters/bernard-wilder/wilder.svg",
  14477. extra: 361 / 312,
  14478. bottom: 0.02
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(2 + 7 / 12, "feet"),
  14486. default: true
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14492. {
  14493. anthro: {
  14494. height: math.unit(6 + 1 / 12, "feet"),
  14495. weight: math.unit(155, "lb"),
  14496. name: "Anthro",
  14497. image: {
  14498. source: "./media/characters/hearth/anthro.svg",
  14499. extra: 260 / 250,
  14500. bottom: 0.02
  14501. }
  14502. },
  14503. feral: {
  14504. height: math.unit(3.78, "feet"),
  14505. weight: math.unit(35, "kg"),
  14506. name: "Feral",
  14507. image: {
  14508. source: "./media/characters/hearth/feral.svg",
  14509. extra: 153 / 135,
  14510. bottom: 0.03
  14511. }
  14512. },
  14513. },
  14514. [
  14515. {
  14516. name: "Normal",
  14517. height: math.unit(6 + 1 / 12, "feet"),
  14518. default: true
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14524. {
  14525. front: {
  14526. height: math.unit(6, "feet"),
  14527. weight: math.unit(182, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/ingrid/front.svg",
  14531. extra: 294 / 268,
  14532. bottom: 0.027
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Normal",
  14539. height: math.unit(6, "feet"),
  14540. default: true
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14546. {
  14547. eevee: {
  14548. height: math.unit(2 + 10 / 12, "feet"),
  14549. weight: math.unit(86, "lb"),
  14550. name: "Malgam",
  14551. image: {
  14552. source: "./media/characters/malgam/eevee.svg",
  14553. extra: 218 / 180,
  14554. bottom: 0.2
  14555. }
  14556. },
  14557. sylveon: {
  14558. height: math.unit(4, "feet"),
  14559. weight: math.unit(101, "lb"),
  14560. name: "Future Malgam",
  14561. rename: true,
  14562. image: {
  14563. source: "./media/characters/malgam/sylveon.svg",
  14564. extra: 371 / 325,
  14565. bottom: 0.015
  14566. }
  14567. },
  14568. gigantamax: {
  14569. height: math.unit(50, "feet"),
  14570. name: "Gigantamax Malgam",
  14571. rename: true,
  14572. image: {
  14573. source: "./media/characters/malgam/gigantamax.svg"
  14574. }
  14575. },
  14576. },
  14577. [
  14578. {
  14579. name: "Normal",
  14580. height: math.unit(2 + 10 / 12, "feet"),
  14581. default: true
  14582. },
  14583. ]
  14584. ))
  14585. characterMakers.push(() => makeCharacter(
  14586. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14587. {
  14588. front: {
  14589. height: math.unit(5 + 11 / 12, "feet"),
  14590. weight: math.unit(188, "lb"),
  14591. name: "Front",
  14592. image: {
  14593. source: "./media/characters/fleur/front.svg",
  14594. extra: 309 / 283,
  14595. bottom: 0.007
  14596. }
  14597. },
  14598. },
  14599. [
  14600. {
  14601. name: "Normal",
  14602. height: math.unit(5 + 11 / 12, "feet"),
  14603. default: true
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14609. {
  14610. front: {
  14611. height: math.unit(5 + 4 / 12, "feet"),
  14612. weight: math.unit(122, "lb"),
  14613. name: "Front",
  14614. image: {
  14615. source: "./media/characters/jude/front.svg",
  14616. extra: 288 / 273,
  14617. bottom: 0.03
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Normal",
  14624. height: math.unit(5 + 4 / 12, "feet"),
  14625. default: true
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14631. {
  14632. front: {
  14633. height: math.unit(5 + 11 / 12, "feet"),
  14634. weight: math.unit(190, "lb"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/seara/front.svg",
  14638. extra: 1,
  14639. bottom: 0.05
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Normal",
  14646. height: math.unit(5 + 11 / 12, "feet"),
  14647. default: true
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14653. {
  14654. front: {
  14655. height: math.unit(16 + 5 / 12, "feet"),
  14656. weight: math.unit(524, "lb"),
  14657. name: "Front",
  14658. image: {
  14659. source: "./media/characters/caspian/front.svg",
  14660. extra: 1,
  14661. bottom: 0.04
  14662. }
  14663. },
  14664. },
  14665. [
  14666. {
  14667. name: "Normal",
  14668. height: math.unit(16 + 5 / 12, "feet"),
  14669. default: true
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14675. {
  14676. front: {
  14677. height: math.unit(5 + 7 / 12, "feet"),
  14678. weight: math.unit(170, "lb"),
  14679. name: "Front",
  14680. image: {
  14681. source: "./media/characters/mika/front.svg",
  14682. extra: 1,
  14683. bottom: 0.016
  14684. }
  14685. },
  14686. },
  14687. [
  14688. {
  14689. name: "Normal",
  14690. height: math.unit(5 + 7 / 12, "feet"),
  14691. default: true
  14692. },
  14693. ]
  14694. ))
  14695. characterMakers.push(() => makeCharacter(
  14696. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14697. {
  14698. front: {
  14699. height: math.unit(6 + 2 / 12, "feet"),
  14700. weight: math.unit(268, "lb"),
  14701. name: "Front",
  14702. image: {
  14703. source: "./media/characters/sol/front.svg",
  14704. extra: 247 / 231,
  14705. bottom: 0.05
  14706. }
  14707. },
  14708. },
  14709. [
  14710. {
  14711. name: "Normal",
  14712. height: math.unit(6 + 2 / 12, "feet"),
  14713. default: true
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14719. {
  14720. buizel: {
  14721. height: math.unit(2 + 5 / 12, "feet"),
  14722. weight: math.unit(87, "lb"),
  14723. name: "Buizel",
  14724. image: {
  14725. source: "./media/characters/umiko/buizel.svg",
  14726. extra: 172 / 157,
  14727. bottom: 0.01
  14728. }
  14729. },
  14730. floatzel: {
  14731. height: math.unit(5 + 9 / 12, "feet"),
  14732. weight: math.unit(250, "lb"),
  14733. name: "Floatzel",
  14734. image: {
  14735. source: "./media/characters/umiko/floatzel.svg",
  14736. extra: 262 / 248
  14737. }
  14738. },
  14739. },
  14740. [
  14741. {
  14742. name: "Normal",
  14743. height: math.unit(2 + 5 / 12, "feet"),
  14744. default: true
  14745. },
  14746. ]
  14747. ))
  14748. characterMakers.push(() => makeCharacter(
  14749. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14750. {
  14751. front: {
  14752. height: math.unit(6 + 2 / 12, "feet"),
  14753. weight: math.unit(146, "lb"),
  14754. name: "Front",
  14755. image: {
  14756. source: "./media/characters/iliac/front.svg",
  14757. extra: 389 / 365,
  14758. bottom: 0.035
  14759. }
  14760. },
  14761. },
  14762. [
  14763. {
  14764. name: "Normal",
  14765. height: math.unit(6 + 2 / 12, "feet"),
  14766. default: true
  14767. },
  14768. ]
  14769. ))
  14770. characterMakers.push(() => makeCharacter(
  14771. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14772. {
  14773. front: {
  14774. height: math.unit(6, "feet"),
  14775. weight: math.unit(170, "lb"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/topaz/front.svg",
  14779. extra: 317 / 303,
  14780. bottom: 0.055
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Normal",
  14787. height: math.unit(6, "feet"),
  14788. default: true
  14789. },
  14790. ]
  14791. ))
  14792. characterMakers.push(() => makeCharacter(
  14793. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14794. {
  14795. front: {
  14796. height: math.unit(5 + 11 / 12, "feet"),
  14797. weight: math.unit(144, "lb"),
  14798. name: "Front",
  14799. image: {
  14800. source: "./media/characters/gabriel/front.svg",
  14801. extra: 285 / 262,
  14802. bottom: 0.004
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Normal",
  14809. height: math.unit(5 + 11 / 12, "feet"),
  14810. default: true
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14816. {
  14817. side: {
  14818. height: math.unit(6 + 5 / 12, "feet"),
  14819. weight: math.unit(300, "lb"),
  14820. name: "Side",
  14821. image: {
  14822. source: "./media/characters/tempest-suicune/side.svg",
  14823. extra: 195 / 154,
  14824. bottom: 0.04
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Normal",
  14831. height: math.unit(6 + 5 / 12, "feet"),
  14832. default: true
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(7 + 2 / 12, "feet"),
  14841. weight: math.unit(322, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/vulcan/front.svg",
  14845. extra: 154 / 147,
  14846. bottom: 0.04
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Normal",
  14853. height: math.unit(7 + 2 / 12, "feet"),
  14854. default: true
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14860. {
  14861. front: {
  14862. height: math.unit(5 + 10 / 12, "feet"),
  14863. weight: math.unit(264, "lb"),
  14864. name: "Front",
  14865. image: {
  14866. source: "./media/characters/gault/front.svg",
  14867. extra: 161 / 140,
  14868. bottom: 0.028
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(5 + 10 / 12, "feet"),
  14876. default: true
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(6, "feet"),
  14885. weight: math.unit(150, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/shard/front.svg",
  14889. extra: 273 / 238,
  14890. bottom: 0.02
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(3 + 6 / 12, "feet"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(5 + 11 / 12, "feet"),
  14907. weight: math.unit(146, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/ashe/front.svg",
  14911. extra: 400 / 373,
  14912. bottom: 0.01
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(5 + 11 / 12, "feet"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14926. {
  14927. front: {
  14928. height: math.unit(5 + 5 / 12, "feet"),
  14929. weight: math.unit(135, "lb"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/beatrix/front.svg",
  14933. extra: 392 / 379,
  14934. bottom: 0.01
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(6, "feet"),
  14942. default: true
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14948. {
  14949. front: {
  14950. height: math.unit(6, "feet"),
  14951. weight: math.unit(150, "lb"),
  14952. name: "Front",
  14953. image: {
  14954. source: "./media/characters/ignatius/front.svg",
  14955. extra: 245 / 222,
  14956. bottom: 0.01
  14957. }
  14958. },
  14959. },
  14960. [
  14961. {
  14962. name: "Normal",
  14963. height: math.unit(5 + 5 / 12, "feet"),
  14964. default: true
  14965. },
  14966. ]
  14967. ))
  14968. characterMakers.push(() => makeCharacter(
  14969. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14970. {
  14971. front: {
  14972. height: math.unit(6 + 2 / 12, "feet"),
  14973. weight: math.unit(138, "lb"),
  14974. name: "Front",
  14975. image: {
  14976. source: "./media/characters/mei-li/front.svg",
  14977. extra: 237 / 229,
  14978. bottom: 0.03
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(6 + 2 / 12, "feet"),
  14986. default: true
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14992. {
  14993. front: {
  14994. height: math.unit(2 + 4 / 12, "feet"),
  14995. weight: math.unit(62, "lb"),
  14996. name: "Front",
  14997. image: {
  14998. source: "./media/characters/puru/front.svg",
  14999. extra: 206 / 149,
  15000. bottom: 0.06
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(2 + 4 / 12, "feet"),
  15008. default: true
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15014. {
  15015. anthro: {
  15016. height: math.unit(5 + 8/12, "feet"),
  15017. weight: math.unit(200, "lb"),
  15018. energyNeed: math.unit(2000, "kcal"),
  15019. name: "Anthro",
  15020. image: {
  15021. source: "./media/characters/kee/anthro.svg",
  15022. extra: 3251/3184,
  15023. bottom: 250/3501
  15024. }
  15025. },
  15026. taur: {
  15027. height: math.unit(11, "feet"),
  15028. weight: math.unit(500, "lb"),
  15029. energyNeed: math.unit(5000, "kcal"),
  15030. name: "Taur",
  15031. image: {
  15032. source: "./media/characters/kee/taur.svg",
  15033. extra: 1362/1320,
  15034. bottom: 83/1445
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(5 + 8/12, "feet"),
  15042. default: true
  15043. },
  15044. {
  15045. name: "Macro",
  15046. height: math.unit(35, "feet")
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15052. {
  15053. anthro: {
  15054. height: math.unit(7, "feet"),
  15055. weight: math.unit(190, "lb"),
  15056. name: "Anthro",
  15057. image: {
  15058. source: "./media/characters/cobalt-dracha/anthro.svg",
  15059. extra: 231 / 225,
  15060. bottom: 0.04
  15061. }
  15062. },
  15063. feral: {
  15064. height: math.unit(9 + 7 / 12, "feet"),
  15065. weight: math.unit(294, "lb"),
  15066. name: "Feral",
  15067. image: {
  15068. source: "./media/characters/cobalt-dracha/feral.svg",
  15069. extra: 692 / 633,
  15070. bottom: 0.05
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(7, "feet"),
  15078. default: true
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15084. {
  15085. fallen: {
  15086. height: math.unit(11 + 8 / 12, "feet"),
  15087. weight: math.unit(485, "lb"),
  15088. name: "Java (Fallen)",
  15089. rename: true,
  15090. image: {
  15091. source: "./media/characters/java/fallen.svg",
  15092. extra: 226 / 208,
  15093. bottom: 0.005
  15094. }
  15095. },
  15096. godkin: {
  15097. height: math.unit(10 + 6 / 12, "feet"),
  15098. weight: math.unit(328, "lb"),
  15099. name: "Java (Godkin)",
  15100. rename: true,
  15101. image: {
  15102. source: "./media/characters/java/godkin.svg",
  15103. extra: 270 / 262,
  15104. bottom: 0.02
  15105. }
  15106. },
  15107. },
  15108. [
  15109. {
  15110. name: "Normal",
  15111. height: math.unit(11 + 8 / 12, "feet"),
  15112. default: true
  15113. },
  15114. ]
  15115. ))
  15116. characterMakers.push(() => makeCharacter(
  15117. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15118. {
  15119. front: {
  15120. height: math.unit(7 + 8 / 12, "feet"),
  15121. weight: math.unit(320, "lb"),
  15122. name: "Front",
  15123. image: {
  15124. source: "./media/characters/skoll/front.svg",
  15125. extra: 232 / 220,
  15126. bottom: 0.02
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(7 + 8 / 12, "feet"),
  15134. default: true
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15140. {
  15141. front: {
  15142. height: math.unit(5 + 9 / 12, "feet"),
  15143. weight: math.unit(170, "lb"),
  15144. name: "Front",
  15145. image: {
  15146. source: "./media/characters/purna/front.svg",
  15147. extra: 239 / 229,
  15148. bottom: 0.01
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(5 + 9 / 12, "feet"),
  15156. default: true
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15162. {
  15163. front: {
  15164. height: math.unit(5 + 9 / 12, "feet"),
  15165. weight: math.unit(142, "lb"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/kuva/front.svg",
  15169. extra: 281 / 271,
  15170. bottom: 0.006
  15171. }
  15172. },
  15173. },
  15174. [
  15175. {
  15176. name: "Normal",
  15177. height: math.unit(5 + 9 / 12, "feet"),
  15178. default: true
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15184. {
  15185. anthro: {
  15186. height: math.unit(9 + 2 / 12, "feet"),
  15187. weight: math.unit(270, "lb"),
  15188. name: "Anthro",
  15189. image: {
  15190. source: "./media/characters/embra/anthro.svg",
  15191. extra: 200 / 187,
  15192. bottom: 0.02
  15193. }
  15194. },
  15195. feral: {
  15196. height: math.unit(18 + 8 / 12, "feet"),
  15197. weight: math.unit(576, "lb"),
  15198. name: "Feral",
  15199. image: {
  15200. source: "./media/characters/embra/feral.svg",
  15201. extra: 152 / 137,
  15202. bottom: 0.037
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(9 + 2 / 12, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15216. {
  15217. anthro: {
  15218. height: math.unit(10 + 9 / 12, "feet"),
  15219. weight: math.unit(224, "lb"),
  15220. name: "Anthro",
  15221. image: {
  15222. source: "./media/characters/grottos/anthro.svg",
  15223. extra: 350 / 332,
  15224. bottom: 0.045
  15225. }
  15226. },
  15227. feral: {
  15228. height: math.unit(20 + 7 / 12, "feet"),
  15229. weight: math.unit(629, "lb"),
  15230. name: "Feral",
  15231. image: {
  15232. source: "./media/characters/grottos/feral.svg",
  15233. extra: 207 / 190,
  15234. bottom: 0.05
  15235. }
  15236. },
  15237. },
  15238. [
  15239. {
  15240. name: "Normal",
  15241. height: math.unit(10 + 9 / 12, "feet"),
  15242. default: true
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15248. {
  15249. anthro: {
  15250. height: math.unit(9 + 6 / 12, "feet"),
  15251. weight: math.unit(298, "lb"),
  15252. name: "Anthro",
  15253. image: {
  15254. source: "./media/characters/frifna/anthro.svg",
  15255. extra: 282 / 269,
  15256. bottom: 0.015
  15257. }
  15258. },
  15259. feral: {
  15260. height: math.unit(16 + 2 / 12, "feet"),
  15261. weight: math.unit(624, "lb"),
  15262. name: "Feral",
  15263. image: {
  15264. source: "./media/characters/frifna/feral.svg"
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "Normal",
  15271. height: math.unit(9 + 6 / 12, "feet"),
  15272. default: true
  15273. },
  15274. ]
  15275. ))
  15276. characterMakers.push(() => makeCharacter(
  15277. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15278. {
  15279. front: {
  15280. height: math.unit(6 + 2 / 12, "feet"),
  15281. weight: math.unit(168, "lb"),
  15282. name: "Front",
  15283. image: {
  15284. source: "./media/characters/elise/front.svg",
  15285. extra: 276 / 271
  15286. }
  15287. },
  15288. },
  15289. [
  15290. {
  15291. name: "Normal",
  15292. height: math.unit(6 + 2 / 12, "feet"),
  15293. default: true
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15299. {
  15300. front: {
  15301. height: math.unit(5 + 10 / 12, "feet"),
  15302. weight: math.unit(210, "lb"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/glade/front.svg",
  15306. extra: 258 / 247,
  15307. bottom: 0.008
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(5 + 10 / 12, "feet"),
  15315. default: true
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(5 + 10 / 12, "feet"),
  15324. weight: math.unit(129, "lb"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/rina/front.svg",
  15328. extra: 266 / 255,
  15329. bottom: 0.005
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Normal",
  15336. height: math.unit(5 + 10 / 12, "feet"),
  15337. default: true
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15343. {
  15344. front: {
  15345. height: math.unit(6 + 1 / 12, "feet"),
  15346. weight: math.unit(192, "lb"),
  15347. name: "Front",
  15348. image: {
  15349. source: "./media/characters/veronica/front.svg",
  15350. extra: 319 / 309,
  15351. bottom: 0.005
  15352. }
  15353. },
  15354. },
  15355. [
  15356. {
  15357. name: "Normal",
  15358. height: math.unit(6 + 1 / 12, "feet"),
  15359. default: true
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(9 + 3 / 12, "feet"),
  15368. weight: math.unit(1100, "lb"),
  15369. name: "Front",
  15370. image: {
  15371. source: "./media/characters/braxton/front.svg",
  15372. extra: 1057 / 984,
  15373. bottom: 0.05
  15374. }
  15375. },
  15376. },
  15377. [
  15378. {
  15379. name: "Normal",
  15380. height: math.unit(9 + 3 / 12, "feet")
  15381. },
  15382. {
  15383. name: "Giant",
  15384. height: math.unit(300, "feet"),
  15385. default: true
  15386. },
  15387. {
  15388. name: "Macro",
  15389. height: math.unit(700, "feet")
  15390. },
  15391. {
  15392. name: "Megamacro",
  15393. height: math.unit(6000, "feet")
  15394. },
  15395. ]
  15396. ))
  15397. characterMakers.push(() => makeCharacter(
  15398. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15399. {
  15400. front: {
  15401. height: math.unit(6 + 7 / 12, "feet"),
  15402. weight: math.unit(150, "lb"),
  15403. name: "Front",
  15404. image: {
  15405. source: "./media/characters/blue-feyonics/front.svg",
  15406. extra: 1403 / 1306,
  15407. bottom: 0.047
  15408. }
  15409. },
  15410. },
  15411. [
  15412. {
  15413. name: "Normal",
  15414. height: math.unit(6 + 7 / 12, "feet"),
  15415. default: true
  15416. },
  15417. ]
  15418. ))
  15419. characterMakers.push(() => makeCharacter(
  15420. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15421. {
  15422. front: {
  15423. height: math.unit(1.8, "meters"),
  15424. weight: math.unit(60, "kg"),
  15425. name: "Front",
  15426. image: {
  15427. source: "./media/characters/maxwell/front.svg",
  15428. extra: 2060 / 1873
  15429. }
  15430. },
  15431. },
  15432. [
  15433. {
  15434. name: "Micro",
  15435. height: math.unit(1, "mm")
  15436. },
  15437. {
  15438. name: "Normal",
  15439. height: math.unit(1.8, "meter"),
  15440. default: true
  15441. },
  15442. {
  15443. name: "Macro",
  15444. height: math.unit(30, "meters")
  15445. },
  15446. {
  15447. name: "Megamacro",
  15448. height: math.unit(10, "km")
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(6, "feet"),
  15457. weight: math.unit(150, "lb"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/jack/front.svg",
  15461. extra: 1754 / 1640,
  15462. bottom: 0.01
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Normal",
  15469. height: math.unit(80000, "feet"),
  15470. default: true
  15471. },
  15472. {
  15473. name: "Max size",
  15474. height: math.unit(10, "lightyears")
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15480. {
  15481. upright: {
  15482. height: math.unit(7, "feet"),
  15483. weight: math.unit(170, "lb"),
  15484. name: "Upright",
  15485. image: {
  15486. source: "./media/characters/cafat/upright.svg",
  15487. bottom: 0.01
  15488. }
  15489. },
  15490. uprightFull: {
  15491. height: math.unit(7, "feet"),
  15492. weight: math.unit(170, "lb"),
  15493. name: "Upright (Full)",
  15494. image: {
  15495. source: "./media/characters/cafat/upright-full.svg",
  15496. bottom: 0.01
  15497. }
  15498. },
  15499. side: {
  15500. height: math.unit(5, "feet"),
  15501. weight: math.unit(150, "lb"),
  15502. name: "Side",
  15503. image: {
  15504. source: "./media/characters/cafat/side.svg"
  15505. }
  15506. },
  15507. },
  15508. [
  15509. {
  15510. name: "Small",
  15511. height: math.unit(7, "feet"),
  15512. default: true
  15513. },
  15514. {
  15515. name: "Large",
  15516. height: math.unit(15.5, "feet")
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(150, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/verin-raharra/front.svg",
  15529. extra: 5019 / 4835,
  15530. bottom: 0.023
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(7 + 5 / 12, "feet"),
  15538. default: true
  15539. },
  15540. {
  15541. name: "Upsized",
  15542. height: math.unit(20, "feet")
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15548. {
  15549. front: {
  15550. height: math.unit(7, "feet"),
  15551. weight: math.unit(230, "lb"),
  15552. name: "Front",
  15553. image: {
  15554. source: "./media/characters/nakata/front.svg",
  15555. extra: 1.005,
  15556. bottom: 0.01
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Normal",
  15563. height: math.unit(7, "feet"),
  15564. default: true
  15565. },
  15566. {
  15567. name: "Big",
  15568. height: math.unit(14, "feet")
  15569. },
  15570. {
  15571. name: "Macro",
  15572. height: math.unit(400, "feet")
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15578. {
  15579. front: {
  15580. height: math.unit(4.91, "feet"),
  15581. weight: math.unit(100, "lb"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/lily/front.svg",
  15585. extra: 1585 / 1415,
  15586. bottom: 0.02
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Normal",
  15593. height: math.unit(4.91, "feet"),
  15594. default: true
  15595. },
  15596. ]
  15597. ))
  15598. characterMakers.push(() => makeCharacter(
  15599. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15600. {
  15601. laying: {
  15602. height: math.unit(4 + 4 / 12, "feet"),
  15603. weight: math.unit(600, "lb"),
  15604. name: "Laying",
  15605. image: {
  15606. source: "./media/characters/sheila/laying.svg",
  15607. extra: 1333 / 1265,
  15608. bottom: 0.16
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(4 + 4 / 12, "feet"),
  15616. default: true
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15622. {
  15623. front: {
  15624. height: math.unit(6, "feet"),
  15625. weight: math.unit(190, "lb"),
  15626. name: "Front",
  15627. image: {
  15628. source: "./media/characters/sax/front.svg",
  15629. extra: 1187 / 973,
  15630. bottom: 0.042
  15631. }
  15632. },
  15633. },
  15634. [
  15635. {
  15636. name: "Micro",
  15637. height: math.unit(4, "inches"),
  15638. default: true
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(6, "feet"),
  15647. weight: math.unit(150, "lb"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/pandora/front.svg",
  15651. extra: 2720 / 2556,
  15652. bottom: 0.015
  15653. }
  15654. },
  15655. back: {
  15656. height: math.unit(6, "feet"),
  15657. weight: math.unit(150, "lb"),
  15658. name: "Back",
  15659. image: {
  15660. source: "./media/characters/pandora/back.svg",
  15661. extra: 2720 / 2556,
  15662. bottom: 0.01
  15663. }
  15664. },
  15665. beans: {
  15666. height: math.unit(6 / 8, "feet"),
  15667. name: "Beans",
  15668. image: {
  15669. source: "./media/characters/pandora/beans.svg"
  15670. }
  15671. },
  15672. skirt: {
  15673. height: math.unit(6, "feet"),
  15674. weight: math.unit(150, "lb"),
  15675. name: "Skirt",
  15676. image: {
  15677. source: "./media/characters/pandora/skirt.svg",
  15678. extra: 1622 / 1525,
  15679. bottom: 0.015
  15680. }
  15681. },
  15682. hoodie: {
  15683. height: math.unit(6, "feet"),
  15684. weight: math.unit(150, "lb"),
  15685. name: "Hoodie",
  15686. image: {
  15687. source: "./media/characters/pandora/hoodie.svg",
  15688. extra: 1622 / 1525,
  15689. bottom: 0.015
  15690. }
  15691. },
  15692. casual: {
  15693. height: math.unit(6, "feet"),
  15694. weight: math.unit(150, "lb"),
  15695. name: "Casual",
  15696. image: {
  15697. source: "./media/characters/pandora/casual.svg",
  15698. extra: 1622 / 1525,
  15699. bottom: 0.015
  15700. }
  15701. },
  15702. },
  15703. [
  15704. {
  15705. name: "Normal",
  15706. height: math.unit(6, "feet")
  15707. },
  15708. {
  15709. name: "Big Steppy",
  15710. height: math.unit(1, "km"),
  15711. default: true
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15717. {
  15718. side: {
  15719. height: math.unit(10, "feet"),
  15720. weight: math.unit(800, "kg"),
  15721. name: "Side",
  15722. image: {
  15723. source: "./media/characters/venio-darcony/side.svg",
  15724. extra: 1373 / 1003,
  15725. bottom: 0.037
  15726. }
  15727. },
  15728. front: {
  15729. height: math.unit(19, "feet"),
  15730. weight: math.unit(800, "kg"),
  15731. name: "Front",
  15732. image: {
  15733. source: "./media/characters/venio-darcony/front.svg"
  15734. }
  15735. },
  15736. back: {
  15737. height: math.unit(19, "feet"),
  15738. weight: math.unit(800, "kg"),
  15739. name: "Back",
  15740. image: {
  15741. source: "./media/characters/venio-darcony/back.svg"
  15742. }
  15743. },
  15744. sideNsfw: {
  15745. height: math.unit(10, "feet"),
  15746. weight: math.unit(800, "kg"),
  15747. name: "Side (NSFW)",
  15748. image: {
  15749. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15750. extra: 1373 / 1003,
  15751. bottom: 0.037
  15752. }
  15753. },
  15754. frontNsfw: {
  15755. height: math.unit(19, "feet"),
  15756. weight: math.unit(800, "kg"),
  15757. name: "Front (NSFW)",
  15758. image: {
  15759. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15760. }
  15761. },
  15762. backNsfw: {
  15763. height: math.unit(19, "feet"),
  15764. weight: math.unit(800, "kg"),
  15765. name: "Back (NSFW)",
  15766. image: {
  15767. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15768. }
  15769. },
  15770. sideArmored: {
  15771. height: math.unit(10, "feet"),
  15772. weight: math.unit(800, "kg"),
  15773. name: "Side (Armored)",
  15774. image: {
  15775. source: "./media/characters/venio-darcony/side-armored.svg",
  15776. extra: 1373 / 1003,
  15777. bottom: 0.037
  15778. }
  15779. },
  15780. frontArmored: {
  15781. height: math.unit(19, "feet"),
  15782. weight: math.unit(900, "kg"),
  15783. name: "Front (Armored)",
  15784. image: {
  15785. source: "./media/characters/venio-darcony/front-armored.svg"
  15786. }
  15787. },
  15788. backArmored: {
  15789. height: math.unit(19, "feet"),
  15790. weight: math.unit(900, "kg"),
  15791. name: "Back (Armored)",
  15792. image: {
  15793. source: "./media/characters/venio-darcony/back-armored.svg"
  15794. }
  15795. },
  15796. sword: {
  15797. height: math.unit(10, "feet"),
  15798. weight: math.unit(50, "lb"),
  15799. name: "Sword",
  15800. image: {
  15801. source: "./media/characters/venio-darcony/sword.svg"
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Normal",
  15808. height: math.unit(10, "feet")
  15809. },
  15810. {
  15811. name: "Macro",
  15812. height: math.unit(130, "feet"),
  15813. default: true
  15814. },
  15815. {
  15816. name: "Macro+",
  15817. height: math.unit(240, "feet")
  15818. },
  15819. ]
  15820. ))
  15821. characterMakers.push(() => makeCharacter(
  15822. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15823. {
  15824. front: {
  15825. height: math.unit(6, "feet"),
  15826. weight: math.unit(150, "lb"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/veski/front.svg",
  15830. extra: 1299 / 1225,
  15831. bottom: 0.04
  15832. }
  15833. },
  15834. back: {
  15835. height: math.unit(6, "feet"),
  15836. weight: math.unit(150, "lb"),
  15837. name: "Back",
  15838. image: {
  15839. source: "./media/characters/veski/back.svg",
  15840. extra: 1299 / 1225,
  15841. bottom: 0.008
  15842. }
  15843. },
  15844. maw: {
  15845. height: math.unit(1.5 * 1.21, "feet"),
  15846. name: "Maw",
  15847. image: {
  15848. source: "./media/characters/veski/maw.svg"
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Macro",
  15855. height: math.unit(2, "km"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15862. {
  15863. front: {
  15864. height: math.unit(5 + 7 / 12, "feet"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/isabelle/front.svg",
  15868. extra: 2130 / 1976,
  15869. bottom: 0.05
  15870. }
  15871. },
  15872. },
  15873. [
  15874. {
  15875. name: "Supermicro",
  15876. height: math.unit(10, "micrometers")
  15877. },
  15878. {
  15879. name: "Micro",
  15880. height: math.unit(1, "inch")
  15881. },
  15882. {
  15883. name: "Tiny",
  15884. height: math.unit(5, "inches")
  15885. },
  15886. {
  15887. name: "Standard",
  15888. height: math.unit(5 + 7 / 12, "inches")
  15889. },
  15890. {
  15891. name: "Macro",
  15892. height: math.unit(80, "meters"),
  15893. default: true
  15894. },
  15895. {
  15896. name: "Megamacro",
  15897. height: math.unit(250, "meters")
  15898. },
  15899. {
  15900. name: "Gigamacro",
  15901. height: math.unit(5, "km")
  15902. },
  15903. {
  15904. name: "Cosmic",
  15905. height: math.unit(2.5e6, "miles")
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15911. {
  15912. front: {
  15913. height: math.unit(6, "feet"),
  15914. weight: math.unit(150, "lb"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/hanzo/front.svg",
  15918. extra: 374 / 344,
  15919. bottom: 0.02
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Normal",
  15926. height: math.unit(8, "feet"),
  15927. default: true
  15928. },
  15929. ]
  15930. ))
  15931. characterMakers.push(() => makeCharacter(
  15932. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15933. {
  15934. front: {
  15935. height: math.unit(7, "feet"),
  15936. weight: math.unit(130, "lb"),
  15937. name: "Front",
  15938. image: {
  15939. source: "./media/characters/anna/front.svg",
  15940. extra: 169 / 145,
  15941. bottom: 0.06
  15942. }
  15943. },
  15944. full: {
  15945. height: math.unit(4.96, "feet"),
  15946. weight: math.unit(220, "lb"),
  15947. name: "Full",
  15948. image: {
  15949. source: "./media/characters/anna/full.svg",
  15950. extra: 138 / 114,
  15951. bottom: 0.15
  15952. }
  15953. },
  15954. tongue: {
  15955. height: math.unit(2.53, "feet"),
  15956. name: "Tongue",
  15957. image: {
  15958. source: "./media/characters/anna/tongue.svg"
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Normal",
  15965. height: math.unit(7, "feet"),
  15966. default: true
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15972. {
  15973. front: {
  15974. height: math.unit(7, "feet"),
  15975. weight: math.unit(150, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/ian-corvid/front.svg",
  15979. extra: 150 / 142,
  15980. bottom: 0.02
  15981. }
  15982. },
  15983. back: {
  15984. height: math.unit(7, "feet"),
  15985. weight: math.unit(150, "lb"),
  15986. name: "Back",
  15987. image: {
  15988. source: "./media/characters/ian-corvid/back.svg",
  15989. extra: 150 / 143,
  15990. bottom: 0.01
  15991. }
  15992. },
  15993. stomping: {
  15994. height: math.unit(7, "feet"),
  15995. weight: math.unit(150, "lb"),
  15996. name: "Stomping",
  15997. image: {
  15998. source: "./media/characters/ian-corvid/stomping.svg",
  15999. extra: 76 / 72
  16000. }
  16001. },
  16002. sitting: {
  16003. height: math.unit(7 / 1.8, "feet"),
  16004. weight: math.unit(150, "lb"),
  16005. name: "Sitting",
  16006. image: {
  16007. source: "./media/characters/ian-corvid/sitting.svg",
  16008. extra: 1400 / 1269,
  16009. bottom: 0.15
  16010. }
  16011. },
  16012. },
  16013. [
  16014. {
  16015. name: "Tiny Microw",
  16016. height: math.unit(1, "inch")
  16017. },
  16018. {
  16019. name: "Microw",
  16020. height: math.unit(6, "inches")
  16021. },
  16022. {
  16023. name: "Crow",
  16024. height: math.unit(7 + 1 / 12, "feet"),
  16025. default: true
  16026. },
  16027. {
  16028. name: "Macrow",
  16029. height: math.unit(176, "feet")
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16035. {
  16036. front: {
  16037. height: math.unit(5 + 7 / 12, "feet"),
  16038. weight: math.unit(147, "lb"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/natalie-kellon/front.svg",
  16042. extra: 1214 / 1141,
  16043. bottom: 0.02
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Micro",
  16050. height: math.unit(1 / 16, "inch")
  16051. },
  16052. {
  16053. name: "Tiny",
  16054. height: math.unit(4, "inches")
  16055. },
  16056. {
  16057. name: "Normal",
  16058. height: math.unit(5 + 7 / 12, "feet"),
  16059. default: true
  16060. },
  16061. {
  16062. name: "Amazon",
  16063. height: math.unit(12, "feet")
  16064. },
  16065. {
  16066. name: "Giantess",
  16067. height: math.unit(160, "meters")
  16068. },
  16069. {
  16070. name: "Titaness",
  16071. height: math.unit(800, "meters")
  16072. },
  16073. ]
  16074. ))
  16075. characterMakers.push(() => makeCharacter(
  16076. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16077. {
  16078. front: {
  16079. height: math.unit(6, "feet"),
  16080. weight: math.unit(150, "lb"),
  16081. name: "Front",
  16082. image: {
  16083. source: "./media/characters/alluria/front.svg",
  16084. extra: 806 / 738,
  16085. bottom: 0.01
  16086. }
  16087. },
  16088. side: {
  16089. height: math.unit(6, "feet"),
  16090. weight: math.unit(150, "lb"),
  16091. name: "Side",
  16092. image: {
  16093. source: "./media/characters/alluria/side.svg",
  16094. extra: 800 / 750,
  16095. }
  16096. },
  16097. back: {
  16098. height: math.unit(6, "feet"),
  16099. weight: math.unit(150, "lb"),
  16100. name: "Back",
  16101. image: {
  16102. source: "./media/characters/alluria/back.svg",
  16103. extra: 806 / 738,
  16104. }
  16105. },
  16106. frontMaid: {
  16107. height: math.unit(6, "feet"),
  16108. weight: math.unit(150, "lb"),
  16109. name: "Front (Maid)",
  16110. image: {
  16111. source: "./media/characters/alluria/front-maid.svg",
  16112. extra: 806 / 738,
  16113. bottom: 0.01
  16114. }
  16115. },
  16116. sideMaid: {
  16117. height: math.unit(6, "feet"),
  16118. weight: math.unit(150, "lb"),
  16119. name: "Side (Maid)",
  16120. image: {
  16121. source: "./media/characters/alluria/side-maid.svg",
  16122. extra: 800 / 750,
  16123. bottom: 0.005
  16124. }
  16125. },
  16126. backMaid: {
  16127. height: math.unit(6, "feet"),
  16128. weight: math.unit(150, "lb"),
  16129. name: "Back (Maid)",
  16130. image: {
  16131. source: "./media/characters/alluria/back-maid.svg",
  16132. extra: 806 / 738,
  16133. }
  16134. },
  16135. },
  16136. [
  16137. {
  16138. name: "Micro",
  16139. height: math.unit(6, "inches"),
  16140. default: true
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16146. {
  16147. front: {
  16148. height: math.unit(6, "feet"),
  16149. weight: math.unit(150, "lb"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/kyle/front.svg",
  16153. extra: 1069 / 962,
  16154. bottom: 77.228 / 1727.45
  16155. }
  16156. },
  16157. },
  16158. [
  16159. {
  16160. name: "Macro",
  16161. height: math.unit(150, "feet"),
  16162. default: true
  16163. },
  16164. ]
  16165. ))
  16166. characterMakers.push(() => makeCharacter(
  16167. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16168. {
  16169. front: {
  16170. height: math.unit(6, "feet"),
  16171. weight: math.unit(300, "lb"),
  16172. name: "Front",
  16173. image: {
  16174. source: "./media/characters/duncan/front.svg",
  16175. extra: 1650 / 1482,
  16176. bottom: 0.05
  16177. }
  16178. },
  16179. },
  16180. [
  16181. {
  16182. name: "Macro",
  16183. height: math.unit(100, "feet"),
  16184. default: true
  16185. },
  16186. ]
  16187. ))
  16188. characterMakers.push(() => makeCharacter(
  16189. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16190. {
  16191. front: {
  16192. height: math.unit(5 + 4 / 12, "feet"),
  16193. weight: math.unit(220, "lb"),
  16194. name: "Front",
  16195. image: {
  16196. source: "./media/characters/memory/front.svg",
  16197. extra: 3641 / 3545,
  16198. bottom: 0.03
  16199. }
  16200. },
  16201. back: {
  16202. height: math.unit(5 + 4 / 12, "feet"),
  16203. weight: math.unit(220, "lb"),
  16204. name: "Back",
  16205. image: {
  16206. source: "./media/characters/memory/back.svg",
  16207. extra: 3641 / 3545,
  16208. bottom: 0.025
  16209. }
  16210. },
  16211. frontSkirt: {
  16212. height: math.unit(5 + 4 / 12, "feet"),
  16213. weight: math.unit(220, "lb"),
  16214. name: "Front (Skirt)",
  16215. image: {
  16216. source: "./media/characters/memory/front-skirt.svg",
  16217. extra: 3641 / 3545,
  16218. bottom: 0.03
  16219. }
  16220. },
  16221. frontDress: {
  16222. height: math.unit(5 + 4 / 12, "feet"),
  16223. weight: math.unit(220, "lb"),
  16224. name: "Front (Dress)",
  16225. image: {
  16226. source: "./media/characters/memory/front-dress.svg",
  16227. extra: 3641 / 3545,
  16228. bottom: 0.03
  16229. }
  16230. },
  16231. },
  16232. [
  16233. {
  16234. name: "Micro",
  16235. height: math.unit(6, "inches"),
  16236. default: true
  16237. },
  16238. {
  16239. name: "Normal",
  16240. height: math.unit(5 + 4 / 12, "feet")
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16246. {
  16247. front: {
  16248. height: math.unit(4 + 11 / 12, "feet"),
  16249. weight: math.unit(100, "lb"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/luno/front.svg",
  16253. extra: 1535 / 1487,
  16254. bottom: 0.03
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Micro",
  16261. height: math.unit(3, "inches")
  16262. },
  16263. {
  16264. name: "Normal",
  16265. height: math.unit(4 + 11 / 12, "feet"),
  16266. default: true
  16267. },
  16268. {
  16269. name: "Macro",
  16270. height: math.unit(300, "feet")
  16271. },
  16272. {
  16273. name: "Megamacro",
  16274. height: math.unit(700, "miles")
  16275. },
  16276. ]
  16277. ))
  16278. characterMakers.push(() => makeCharacter(
  16279. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16280. {
  16281. front: {
  16282. height: math.unit(6 + 2 / 12, "feet"),
  16283. weight: math.unit(170, "lb"),
  16284. name: "Front",
  16285. image: {
  16286. source: "./media/characters/jamesy/front.svg",
  16287. extra: 440 / 382,
  16288. bottom: 0.005
  16289. }
  16290. },
  16291. },
  16292. [
  16293. {
  16294. name: "Micro",
  16295. height: math.unit(3, "inches")
  16296. },
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(6 + 2 / 12, "feet"),
  16300. default: true
  16301. },
  16302. {
  16303. name: "Macro",
  16304. height: math.unit(300, "feet")
  16305. },
  16306. {
  16307. name: "Megamacro",
  16308. height: math.unit(700, "miles")
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16314. {
  16315. front: {
  16316. height: math.unit(6, "feet"),
  16317. weight: math.unit(160, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/mark/front.svg",
  16321. extra: 3300 / 3100,
  16322. bottom: 136.42 / 3440.47
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Macro",
  16329. height: math.unit(120, "meters")
  16330. },
  16331. {
  16332. name: "Bigger Macro",
  16333. height: math.unit(350, "meters")
  16334. },
  16335. {
  16336. name: "Megamacro",
  16337. height: math.unit(8, "km"),
  16338. default: true
  16339. },
  16340. {
  16341. name: "Continental",
  16342. height: math.unit(4550, "km")
  16343. },
  16344. {
  16345. name: "Planetary",
  16346. height: math.unit(65000, "km")
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(6, "feet"),
  16355. weight: math.unit(400, "lb"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/mac/front.svg",
  16359. extra: 1048 / 987.7,
  16360. bottom: 60 / 1107.6,
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Macro",
  16367. height: math.unit(500, "feet"),
  16368. default: true
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16374. {
  16375. front: {
  16376. height: math.unit(5 + 2 / 12, "feet"),
  16377. weight: math.unit(190, "lb"),
  16378. name: "Front",
  16379. image: {
  16380. source: "./media/characters/bari/front.svg",
  16381. extra: 3156 / 2880,
  16382. bottom: 0.03
  16383. }
  16384. },
  16385. back: {
  16386. height: math.unit(5 + 2 / 12, "feet"),
  16387. weight: math.unit(190, "lb"),
  16388. name: "Back",
  16389. image: {
  16390. source: "./media/characters/bari/back.svg",
  16391. extra: 3260 / 2834,
  16392. bottom: 0.025
  16393. }
  16394. },
  16395. frontPlush: {
  16396. height: math.unit(5 + 2 / 12, "feet"),
  16397. weight: math.unit(190, "lb"),
  16398. name: "Front (Plush)",
  16399. image: {
  16400. source: "./media/characters/bari/front-plush.svg",
  16401. extra: 1112 / 1061,
  16402. bottom: 0.002
  16403. }
  16404. },
  16405. },
  16406. [
  16407. {
  16408. name: "Micro",
  16409. height: math.unit(3, "inches")
  16410. },
  16411. {
  16412. name: "Normal",
  16413. height: math.unit(5 + 2 / 12, "feet"),
  16414. default: true
  16415. },
  16416. {
  16417. name: "Macro",
  16418. height: math.unit(20, "feet")
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16424. {
  16425. front: {
  16426. height: math.unit(6 + 1 / 12, "feet"),
  16427. weight: math.unit(275, "lb"),
  16428. name: "Front",
  16429. image: {
  16430. source: "./media/characters/hunter-misha-raven/front.svg"
  16431. }
  16432. },
  16433. },
  16434. [
  16435. {
  16436. name: "Mortal",
  16437. height: math.unit(6 + 1 / 12, "feet")
  16438. },
  16439. {
  16440. name: "Divine",
  16441. height: math.unit(1.12134e34, "parsecs"),
  16442. default: true
  16443. },
  16444. ]
  16445. ))
  16446. characterMakers.push(() => makeCharacter(
  16447. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16448. {
  16449. front: {
  16450. height: math.unit(6 + 3 / 12, "feet"),
  16451. weight: math.unit(220, "lb"),
  16452. name: "Front",
  16453. image: {
  16454. source: "./media/characters/max-calore/front.svg",
  16455. extra: 1700 / 1648,
  16456. bottom: 0.01
  16457. }
  16458. },
  16459. back: {
  16460. height: math.unit(6 + 3 / 12, "feet"),
  16461. weight: math.unit(220, "lb"),
  16462. name: "Back",
  16463. image: {
  16464. source: "./media/characters/max-calore/back.svg",
  16465. extra: 1700 / 1648,
  16466. bottom: 0.01
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Normal",
  16473. height: math.unit(6 + 3 / 12, "feet"),
  16474. default: true
  16475. },
  16476. ]
  16477. ))
  16478. characterMakers.push(() => makeCharacter(
  16479. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16480. {
  16481. side: {
  16482. height: math.unit(2 + 8 / 12, "feet"),
  16483. weight: math.unit(99, "lb"),
  16484. name: "Side",
  16485. image: {
  16486. source: "./media/characters/aspen/side.svg",
  16487. extra: 152 / 138,
  16488. bottom: 0.032
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(2 + 8 / 12, "feet"),
  16496. default: true
  16497. },
  16498. ]
  16499. ))
  16500. characterMakers.push(() => makeCharacter(
  16501. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16502. {
  16503. side: {
  16504. height: math.unit(3 + 2 / 12, "feet"),
  16505. weight: math.unit(224, "lb"),
  16506. name: "Side",
  16507. image: {
  16508. source: "./media/characters/sheila-feral-wolf/side.svg",
  16509. extra: 179 / 166,
  16510. bottom: 0.03
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(3 + 2 / 12, "feet"),
  16518. default: true
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16524. {
  16525. side: {
  16526. height: math.unit(1 + 9 / 12, "feet"),
  16527. weight: math.unit(38, "lb"),
  16528. name: "Side",
  16529. image: {
  16530. source: "./media/characters/michelle/side.svg",
  16531. extra: 147 / 136.7,
  16532. bottom: 0.03
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Normal",
  16539. height: math.unit(1 + 9 / 12, "feet"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(1 + 1 / 12, "feet"),
  16549. weight: math.unit(18, "lb"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/nino/front.svg"
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(1 + 1 / 12, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16566. {
  16567. front: {
  16568. height: math.unit(1, "feet"),
  16569. weight: math.unit(16, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/viola/front.svg"
  16573. }
  16574. },
  16575. },
  16576. [
  16577. {
  16578. name: "Normal",
  16579. height: math.unit(1, "feet"),
  16580. default: true
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16586. {
  16587. front: {
  16588. height: math.unit(6 + 5 / 12, "feet"),
  16589. weight: math.unit(580, "lb"),
  16590. name: "Front",
  16591. image: {
  16592. source: "./media/characters/atlas/front.svg",
  16593. extra: 298.5 / 290,
  16594. bottom: 0.015
  16595. }
  16596. },
  16597. },
  16598. [
  16599. {
  16600. name: "Normal",
  16601. height: math.unit(6 + 5 / 12, "feet"),
  16602. default: true
  16603. },
  16604. ]
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16608. {
  16609. side: {
  16610. height: math.unit(1 + 10 / 12, "feet"),
  16611. weight: math.unit(25, "lb"),
  16612. name: "Side",
  16613. image: {
  16614. source: "./media/characters/davy/side.svg",
  16615. extra: 200 / 170,
  16616. bottom: 0.01
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(1 + 10 / 12, "feet"),
  16624. default: true
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16630. {
  16631. side: {
  16632. height: math.unit(4 + 8 / 12, "feet"),
  16633. weight: math.unit(166, "lb"),
  16634. name: "Side",
  16635. image: {
  16636. source: "./media/characters/fiona/side.svg",
  16637. extra: 232 / 220,
  16638. bottom: 0.03
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Normal",
  16645. height: math.unit(4 + 8 / 12, "feet"),
  16646. default: true
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16652. {
  16653. front: {
  16654. height: math.unit(2, "feet"),
  16655. weight: math.unit(62, "lb"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/lyla/front.svg",
  16659. bottom: 0.1
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Normal",
  16666. height: math.unit(2, "feet"),
  16667. default: true
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16673. {
  16674. side: {
  16675. height: math.unit(1.8, "feet"),
  16676. weight: math.unit(44, "lb"),
  16677. name: "Side",
  16678. image: {
  16679. source: "./media/characters/perseus/side.svg",
  16680. bottom: 0.21
  16681. }
  16682. },
  16683. },
  16684. [
  16685. {
  16686. name: "Normal",
  16687. height: math.unit(1.8, "feet"),
  16688. default: true
  16689. },
  16690. ]
  16691. ))
  16692. characterMakers.push(() => makeCharacter(
  16693. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16694. {
  16695. side: {
  16696. height: math.unit(4 + 2 / 12, "feet"),
  16697. weight: math.unit(20, "lb"),
  16698. name: "Side",
  16699. image: {
  16700. source: "./media/characters/remus/side.svg"
  16701. }
  16702. },
  16703. },
  16704. [
  16705. {
  16706. name: "Normal",
  16707. height: math.unit(4 + 2 / 12, "feet"),
  16708. default: true
  16709. },
  16710. ]
  16711. ))
  16712. characterMakers.push(() => makeCharacter(
  16713. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16714. {
  16715. front: {
  16716. height: math.unit(4 + 11 / 12, "feet"),
  16717. weight: math.unit(114, "lb"),
  16718. name: "Front",
  16719. image: {
  16720. source: "./media/characters/raf/front.svg",
  16721. bottom: 20.5 / 1863
  16722. }
  16723. },
  16724. side: {
  16725. height: math.unit(4 + 11 / 12, "feet"),
  16726. weight: math.unit(114, "lb"),
  16727. name: "Side",
  16728. image: {
  16729. source: "./media/characters/raf/side.svg",
  16730. bottom: 22 / 1822
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Micro",
  16737. height: math.unit(2, "inches")
  16738. },
  16739. {
  16740. name: "Normal",
  16741. height: math.unit(4 + 11 / 12, "feet"),
  16742. default: true
  16743. },
  16744. {
  16745. name: "Macro",
  16746. height: math.unit(70, "feet")
  16747. },
  16748. ]
  16749. ))
  16750. characterMakers.push(() => makeCharacter(
  16751. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16752. {
  16753. front: {
  16754. height: math.unit(1.5, "meters"),
  16755. weight: math.unit(68, "kg"),
  16756. name: "Front",
  16757. image: {
  16758. source: "./media/characters/liam-einarr/front.svg",
  16759. extra: 2822 / 2666
  16760. }
  16761. },
  16762. back: {
  16763. height: math.unit(1.5, "meters"),
  16764. weight: math.unit(68, "kg"),
  16765. name: "Back",
  16766. image: {
  16767. source: "./media/characters/liam-einarr/back.svg",
  16768. extra: 2822 / 2666,
  16769. bottom: 0.015
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(1.5, "meters"),
  16777. default: true
  16778. },
  16779. {
  16780. name: "Macro",
  16781. height: math.unit(150, "meters")
  16782. },
  16783. {
  16784. name: "Megamacro",
  16785. height: math.unit(35, "km")
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(6, "feet"),
  16794. weight: math.unit(75, "kg"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/linda/front.svg",
  16798. extra: 930 / 874,
  16799. bottom: 0.004
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(6, "feet"),
  16807. default: true
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(6 + 8 / 12, "feet"),
  16816. weight: math.unit(220, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/caylex/front.svg",
  16820. extra: 821 / 772,
  16821. bottom: 0.07
  16822. }
  16823. },
  16824. back: {
  16825. height: math.unit(6 + 8 / 12, "feet"),
  16826. weight: math.unit(220, "lb"),
  16827. name: "Back",
  16828. image: {
  16829. source: "./media/characters/caylex/back.svg",
  16830. extra: 821 / 772,
  16831. bottom: 0.022
  16832. }
  16833. },
  16834. hand: {
  16835. height: math.unit(1.25, "feet"),
  16836. name: "Hand",
  16837. image: {
  16838. source: "./media/characters/caylex/hand.svg"
  16839. }
  16840. },
  16841. foot: {
  16842. height: math.unit(1.6, "feet"),
  16843. name: "Foot",
  16844. image: {
  16845. source: "./media/characters/caylex/foot.svg"
  16846. }
  16847. },
  16848. armored: {
  16849. height: math.unit(6 + 8 / 12, "feet"),
  16850. weight: math.unit(250, "lb"),
  16851. name: "Armored",
  16852. image: {
  16853. source: "./media/characters/caylex/armored.svg",
  16854. extra: 1420 / 1310,
  16855. bottom: 0.045
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(6 + 8 / 12, "feet"),
  16863. default: true
  16864. },
  16865. {
  16866. name: "Normal+",
  16867. height: math.unit(12, "feet")
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(7 + 6 / 12, "feet"),
  16876. weight: math.unit(288, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/alana/front.svg",
  16880. extra: 679 / 653,
  16881. bottom: 22.5 / 701
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(7 + 6 / 12, "feet")
  16889. },
  16890. {
  16891. name: "Large",
  16892. height: math.unit(50, "feet")
  16893. },
  16894. {
  16895. name: "Macro",
  16896. height: math.unit(100, "feet"),
  16897. default: true
  16898. },
  16899. {
  16900. name: "Macro+",
  16901. height: math.unit(200, "feet")
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16907. {
  16908. front: {
  16909. height: math.unit(6 + 1 / 12, "feet"),
  16910. weight: math.unit(210, "lb"),
  16911. name: "Front",
  16912. image: {
  16913. source: "./media/characters/hasani/front.svg",
  16914. extra: 244 / 232,
  16915. bottom: 0.01
  16916. }
  16917. },
  16918. back: {
  16919. height: math.unit(6 + 1 / 12, "feet"),
  16920. weight: math.unit(210, "lb"),
  16921. name: "Back",
  16922. image: {
  16923. source: "./media/characters/hasani/back.svg",
  16924. extra: 244 / 232,
  16925. bottom: 0.01
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Normal",
  16932. height: math.unit(6 + 1 / 12, "feet")
  16933. },
  16934. {
  16935. name: "Macro",
  16936. height: math.unit(175, "feet"),
  16937. default: true
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16943. {
  16944. front: {
  16945. height: math.unit(1.82, "meters"),
  16946. weight: math.unit(140, "lb"),
  16947. name: "Front",
  16948. image: {
  16949. source: "./media/characters/nita/front.svg",
  16950. extra: 2473 / 2363,
  16951. bottom: 0.01
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Normal",
  16958. height: math.unit(1.82, "m")
  16959. },
  16960. {
  16961. name: "Macro",
  16962. height: math.unit(300, "m")
  16963. },
  16964. {
  16965. name: "Mistake Canon",
  16966. height: math.unit(0.5, "miles"),
  16967. default: true
  16968. },
  16969. {
  16970. name: "Big Mistake",
  16971. height: math.unit(13, "miles")
  16972. },
  16973. {
  16974. name: "Playing God",
  16975. height: math.unit(2450, "miles")
  16976. },
  16977. ]
  16978. ))
  16979. characterMakers.push(() => makeCharacter(
  16980. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16981. {
  16982. front: {
  16983. height: math.unit(4, "feet"),
  16984. weight: math.unit(120, "lb"),
  16985. name: "Front",
  16986. image: {
  16987. source: "./media/characters/shiriko/front.svg",
  16988. extra: 195 / 188
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(4, "feet"),
  16996. default: true
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17002. {
  17003. front: {
  17004. height: math.unit(6, "feet"),
  17005. name: "front",
  17006. image: {
  17007. source: "./media/characters/deja/front.svg",
  17008. extra: 926 / 840,
  17009. bottom: 0.07
  17010. }
  17011. },
  17012. },
  17013. [
  17014. {
  17015. name: "Planck Length",
  17016. height: math.unit(1.6e-35, "meters")
  17017. },
  17018. {
  17019. name: "Normal",
  17020. height: math.unit(30.48, "meters"),
  17021. default: true
  17022. },
  17023. {
  17024. name: "Universal",
  17025. height: math.unit(8.8e26, "meters")
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17031. {
  17032. side: {
  17033. height: math.unit(8, "feet"),
  17034. weight: math.unit(6300, "lb"),
  17035. name: "Side",
  17036. image: {
  17037. source: "./media/characters/anima/side.svg",
  17038. bottom: 0.035
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(8, "feet"),
  17046. default: true
  17047. },
  17048. ]
  17049. ))
  17050. characterMakers.push(() => makeCharacter(
  17051. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17052. {
  17053. front: {
  17054. height: math.unit(8, "feet"),
  17055. weight: math.unit(350, "lb"),
  17056. name: "Front",
  17057. image: {
  17058. source: "./media/characters/bianca/front.svg",
  17059. extra: 234 / 225,
  17060. bottom: 0.03
  17061. }
  17062. },
  17063. },
  17064. [
  17065. {
  17066. name: "Normal",
  17067. height: math.unit(8, "feet"),
  17068. default: true
  17069. },
  17070. ]
  17071. ))
  17072. characterMakers.push(() => makeCharacter(
  17073. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17074. {
  17075. front: {
  17076. height: math.unit(6, "feet"),
  17077. weight: math.unit(150, "lb"),
  17078. name: "Front",
  17079. image: {
  17080. source: "./media/characters/adinia/front.svg",
  17081. extra: 1845 / 1672,
  17082. bottom: 0.02
  17083. }
  17084. },
  17085. back: {
  17086. height: math.unit(6, "feet"),
  17087. weight: math.unit(150, "lb"),
  17088. name: "Back",
  17089. image: {
  17090. source: "./media/characters/adinia/back.svg",
  17091. extra: 1845 / 1672,
  17092. bottom: 0.002
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(11 + 5 / 12, "feet"),
  17100. default: true
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17106. {
  17107. front: {
  17108. height: math.unit(3, "meters"),
  17109. weight: math.unit(200, "kg"),
  17110. name: "Front",
  17111. image: {
  17112. source: "./media/characters/lykasa/front.svg",
  17113. extra: 1076 / 976,
  17114. bottom: 0.06
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Normal",
  17121. height: math.unit(3, "meters")
  17122. },
  17123. {
  17124. name: "Kaiju",
  17125. height: math.unit(120, "meters"),
  17126. default: true
  17127. },
  17128. {
  17129. name: "Mega Kaiju",
  17130. height: math.unit(240, "km")
  17131. },
  17132. {
  17133. name: "Giga Kaiju",
  17134. height: math.unit(400, "megameters")
  17135. },
  17136. {
  17137. name: "Tera Kaiju",
  17138. height: math.unit(800, "gigameters")
  17139. },
  17140. {
  17141. name: "Kaiju Dragon Goddess",
  17142. height: math.unit(26, "zettaparsecs")
  17143. },
  17144. ]
  17145. ))
  17146. characterMakers.push(() => makeCharacter(
  17147. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17148. {
  17149. side: {
  17150. height: math.unit(283 / 124 * 6, "feet"),
  17151. weight: math.unit(35000, "lb"),
  17152. name: "Side",
  17153. image: {
  17154. source: "./media/characters/malfaren/side.svg",
  17155. extra: 2500 / 1010,
  17156. bottom: 0.01
  17157. }
  17158. },
  17159. front: {
  17160. height: math.unit(22.36, "feet"),
  17161. weight: math.unit(35000, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/malfaren/front.svg",
  17165. extra: 1631 / 1476,
  17166. bottom: 0.01
  17167. }
  17168. },
  17169. maw: {
  17170. height: math.unit(6.9, "feet"),
  17171. name: "Maw",
  17172. image: {
  17173. source: "./media/characters/malfaren/maw.svg"
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Big",
  17180. height: math.unit(283 / 162 * 6, "feet"),
  17181. },
  17182. {
  17183. name: "Bigger",
  17184. height: math.unit(283 / 124 * 6, "feet")
  17185. },
  17186. {
  17187. name: "Massive",
  17188. height: math.unit(283 / 92 * 6, "feet"),
  17189. default: true
  17190. },
  17191. {
  17192. name: "👀💦",
  17193. height: math.unit(283 / 73 * 6, "feet"),
  17194. },
  17195. ]
  17196. ))
  17197. characterMakers.push(() => makeCharacter(
  17198. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17199. {
  17200. front: {
  17201. height: math.unit(1.7, "m"),
  17202. weight: math.unit(70, "kg"),
  17203. name: "Front",
  17204. image: {
  17205. source: "./media/characters/kernel/front.svg",
  17206. extra: 222 / 210,
  17207. bottom: 0.007
  17208. }
  17209. },
  17210. },
  17211. [
  17212. {
  17213. name: "Nano",
  17214. height: math.unit(17, "micrometers")
  17215. },
  17216. {
  17217. name: "Micro",
  17218. height: math.unit(1.7, "mm")
  17219. },
  17220. {
  17221. name: "Small",
  17222. height: math.unit(1.7, "cm")
  17223. },
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(1.7, "m"),
  17227. default: true
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17233. {
  17234. front: {
  17235. height: math.unit(1.75, "meters"),
  17236. weight: math.unit(65, "kg"),
  17237. name: "Front",
  17238. image: {
  17239. source: "./media/characters/jayne-folest/front.svg",
  17240. extra: 2115 / 2007,
  17241. bottom: 0.02
  17242. }
  17243. },
  17244. back: {
  17245. height: math.unit(1.75, "meters"),
  17246. weight: math.unit(65, "kg"),
  17247. name: "Back",
  17248. image: {
  17249. source: "./media/characters/jayne-folest/back.svg",
  17250. extra: 2115 / 2007,
  17251. bottom: 0.005
  17252. }
  17253. },
  17254. frontClothed: {
  17255. height: math.unit(1.75, "meters"),
  17256. weight: math.unit(65, "kg"),
  17257. name: "Front (Clothed)",
  17258. image: {
  17259. source: "./media/characters/jayne-folest/front-clothed.svg",
  17260. extra: 2115 / 2007,
  17261. bottom: 0.035
  17262. }
  17263. },
  17264. hand: {
  17265. height: math.unit(1 / 1.260, "feet"),
  17266. name: "Hand",
  17267. image: {
  17268. source: "./media/characters/jayne-folest/hand.svg"
  17269. }
  17270. },
  17271. foot: {
  17272. height: math.unit(1 / 0.918, "feet"),
  17273. name: "Foot",
  17274. image: {
  17275. source: "./media/characters/jayne-folest/foot.svg"
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Micro",
  17282. height: math.unit(4, "cm")
  17283. },
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(1.75, "meters")
  17287. },
  17288. {
  17289. name: "Macro",
  17290. height: math.unit(47.5, "meters"),
  17291. default: true
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(180, "cm"),
  17300. weight: math.unit(70, "kg"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/algier/front.svg",
  17304. extra: 596 / 572,
  17305. bottom: 0.04
  17306. }
  17307. },
  17308. back: {
  17309. height: math.unit(180, "cm"),
  17310. weight: math.unit(70, "kg"),
  17311. name: "Back",
  17312. image: {
  17313. source: "./media/characters/algier/back.svg",
  17314. extra: 596 / 572,
  17315. bottom: 0.025
  17316. }
  17317. },
  17318. frontdressed: {
  17319. height: math.unit(180, "cm"),
  17320. weight: math.unit(150, "kg"),
  17321. name: "Front-dressed",
  17322. image: {
  17323. source: "./media/characters/algier/front-dressed.svg",
  17324. extra: 596 / 572,
  17325. bottom: 0.038
  17326. }
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Micro",
  17332. height: math.unit(5, "cm")
  17333. },
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(180, "cm"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Macro",
  17341. height: math.unit(64, "m")
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17347. {
  17348. upright: {
  17349. height: math.unit(7, "feet"),
  17350. weight: math.unit(300, "lb"),
  17351. name: "Upright",
  17352. image: {
  17353. source: "./media/characters/pretzel/upright.svg",
  17354. extra: 534 / 522,
  17355. bottom: 0.065
  17356. }
  17357. },
  17358. sprawling: {
  17359. height: math.unit(3.75, "feet"),
  17360. weight: math.unit(300, "lb"),
  17361. name: "Sprawling",
  17362. image: {
  17363. source: "./media/characters/pretzel/sprawling.svg",
  17364. extra: 314 / 281,
  17365. bottom: 0.1
  17366. }
  17367. },
  17368. tongue: {
  17369. height: math.unit(2, "feet"),
  17370. name: "Tongue",
  17371. image: {
  17372. source: "./media/characters/pretzel/tongue.svg"
  17373. }
  17374. },
  17375. },
  17376. [
  17377. {
  17378. name: "Normal",
  17379. height: math.unit(7, "feet"),
  17380. default: true
  17381. },
  17382. {
  17383. name: "Oversized",
  17384. height: math.unit(15, "feet")
  17385. },
  17386. {
  17387. name: "Huge",
  17388. height: math.unit(30, "feet")
  17389. },
  17390. {
  17391. name: "Macro",
  17392. height: math.unit(250, "feet")
  17393. },
  17394. ]
  17395. ))
  17396. characterMakers.push(() => makeCharacter(
  17397. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17398. {
  17399. sideFront: {
  17400. height: math.unit(5 + 2 / 12, "feet"),
  17401. weight: math.unit(120, "lb"),
  17402. name: "Front Side",
  17403. image: {
  17404. source: "./media/characters/roxi/side-front.svg",
  17405. extra: 2924 / 2717,
  17406. bottom: 0.08
  17407. }
  17408. },
  17409. sideBack: {
  17410. height: math.unit(5 + 2 / 12, "feet"),
  17411. weight: math.unit(120, "lb"),
  17412. name: "Back Side",
  17413. image: {
  17414. source: "./media/characters/roxi/side-back.svg",
  17415. extra: 2904 / 2693,
  17416. bottom: 0.06
  17417. }
  17418. },
  17419. front: {
  17420. height: math.unit(5 + 2 / 12, "feet"),
  17421. weight: math.unit(120, "lb"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/roxi/front.svg",
  17425. extra: 2028 / 1907,
  17426. bottom: 0.01
  17427. }
  17428. },
  17429. frontAlt: {
  17430. height: math.unit(5 + 2 / 12, "feet"),
  17431. weight: math.unit(120, "lb"),
  17432. name: "Front (Alt)",
  17433. image: {
  17434. source: "./media/characters/roxi/front-alt.svg",
  17435. extra: 1828 / 1798,
  17436. bottom: 0.01
  17437. }
  17438. },
  17439. sitting: {
  17440. height: math.unit(2.8, "feet"),
  17441. weight: math.unit(120, "lb"),
  17442. name: "Sitting",
  17443. image: {
  17444. source: "./media/characters/roxi/sitting.svg",
  17445. extra: 2660 / 2462,
  17446. bottom: 0.1
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(5 + 2 / 12, "feet"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17460. {
  17461. side: {
  17462. height: math.unit(55, "feet"),
  17463. weight: math.unit(153, "tons"),
  17464. name: "Side",
  17465. image: {
  17466. source: "./media/characters/shadow/side.svg",
  17467. extra: 701 / 628,
  17468. bottom: 0.02
  17469. }
  17470. },
  17471. flying: {
  17472. height: math.unit(145, "feet"),
  17473. weight: math.unit(153, "tons"),
  17474. name: "Flying",
  17475. image: {
  17476. source: "./media/characters/shadow/flying.svg"
  17477. }
  17478. },
  17479. },
  17480. [
  17481. {
  17482. name: "Normal",
  17483. height: math.unit(55, "feet"),
  17484. default: true
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17490. {
  17491. front: {
  17492. height: math.unit(6, "feet"),
  17493. weight: math.unit(200, "lb"),
  17494. name: "Front",
  17495. image: {
  17496. source: "./media/characters/marcie/front.svg",
  17497. extra: 960 / 876,
  17498. bottom: 58 / 1017.87
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Macro",
  17505. height: math.unit(1, "mile"),
  17506. default: true
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(7, "feet"),
  17515. weight: math.unit(200, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/kachina/front.svg",
  17519. extra: 1290.68 / 1119,
  17520. bottom: 36.5 / 1327.18
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Normal",
  17527. height: math.unit(7, "feet"),
  17528. default: true
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17534. {
  17535. looking: {
  17536. height: math.unit(2, "meters"),
  17537. weight: math.unit(300, "kg"),
  17538. name: "Looking",
  17539. image: {
  17540. source: "./media/characters/kash/looking.svg",
  17541. extra: 474 / 344,
  17542. bottom: 0.03
  17543. }
  17544. },
  17545. side: {
  17546. height: math.unit(2, "meters"),
  17547. weight: math.unit(300, "kg"),
  17548. name: "Side",
  17549. image: {
  17550. source: "./media/characters/kash/side.svg",
  17551. extra: 302 / 251,
  17552. bottom: 0.03
  17553. }
  17554. },
  17555. front: {
  17556. height: math.unit(2, "meters"),
  17557. weight: math.unit(300, "kg"),
  17558. name: "Front",
  17559. image: {
  17560. source: "./media/characters/kash/front.svg",
  17561. extra: 495 / 360,
  17562. bottom: 0.015
  17563. }
  17564. },
  17565. },
  17566. [
  17567. {
  17568. name: "Normal",
  17569. height: math.unit(2, "meters"),
  17570. default: true
  17571. },
  17572. {
  17573. name: "Big",
  17574. height: math.unit(3, "meters")
  17575. },
  17576. {
  17577. name: "Large",
  17578. height: math.unit(5, "meters")
  17579. },
  17580. ]
  17581. ))
  17582. characterMakers.push(() => makeCharacter(
  17583. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17584. {
  17585. feeding: {
  17586. height: math.unit(6.7, "feet"),
  17587. weight: math.unit(350, "lb"),
  17588. name: "Feeding",
  17589. image: {
  17590. source: "./media/characters/lalim/feeding.svg",
  17591. }
  17592. },
  17593. },
  17594. [
  17595. {
  17596. name: "Normal",
  17597. height: math.unit(6.7, "feet"),
  17598. default: true
  17599. },
  17600. ]
  17601. ))
  17602. characterMakers.push(() => makeCharacter(
  17603. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17604. {
  17605. front: {
  17606. height: math.unit(9.5, "feet"),
  17607. weight: math.unit(600, "lb"),
  17608. name: "Front",
  17609. image: {
  17610. source: "./media/characters/de'vout/front.svg",
  17611. extra: 1443 / 1328,
  17612. bottom: 0.025
  17613. }
  17614. },
  17615. back: {
  17616. height: math.unit(9.5, "feet"),
  17617. weight: math.unit(600, "lb"),
  17618. name: "Back",
  17619. image: {
  17620. source: "./media/characters/de'vout/back.svg",
  17621. extra: 1443 / 1328
  17622. }
  17623. },
  17624. frontDressed: {
  17625. height: math.unit(9.5, "feet"),
  17626. weight: math.unit(600, "lb"),
  17627. name: "Front (Dressed",
  17628. image: {
  17629. source: "./media/characters/de'vout/front-dressed.svg",
  17630. extra: 1443 / 1328,
  17631. bottom: 0.025
  17632. }
  17633. },
  17634. backDressed: {
  17635. height: math.unit(9.5, "feet"),
  17636. weight: math.unit(600, "lb"),
  17637. name: "Back (Dressed",
  17638. image: {
  17639. source: "./media/characters/de'vout/back-dressed.svg",
  17640. extra: 1443 / 1328
  17641. }
  17642. },
  17643. },
  17644. [
  17645. {
  17646. name: "Normal",
  17647. height: math.unit(9.5, "feet"),
  17648. default: true
  17649. },
  17650. ]
  17651. ))
  17652. characterMakers.push(() => makeCharacter(
  17653. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17654. {
  17655. front: {
  17656. height: math.unit(8, "feet"),
  17657. weight: math.unit(225, "lb"),
  17658. name: "Front",
  17659. image: {
  17660. source: "./media/characters/talana/front.svg",
  17661. extra: 1410 / 1300,
  17662. bottom: 0.015
  17663. }
  17664. },
  17665. frontDressed: {
  17666. height: math.unit(8, "feet"),
  17667. weight: math.unit(225, "lb"),
  17668. name: "Front (Dressed",
  17669. image: {
  17670. source: "./media/characters/talana/front-dressed.svg",
  17671. extra: 1410 / 1300,
  17672. bottom: 0.015
  17673. }
  17674. },
  17675. },
  17676. [
  17677. {
  17678. name: "Normal",
  17679. height: math.unit(8, "feet"),
  17680. default: true
  17681. },
  17682. ]
  17683. ))
  17684. characterMakers.push(() => makeCharacter(
  17685. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17686. {
  17687. side: {
  17688. height: math.unit(7.2, "feet"),
  17689. weight: math.unit(150, "lb"),
  17690. name: "Side",
  17691. image: {
  17692. source: "./media/characters/xeauvok/side.svg",
  17693. extra: 1975 / 1523,
  17694. bottom: 0.07
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(7.2, "feet"),
  17702. default: true
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17708. {
  17709. side: {
  17710. height: math.unit(10, "feet"),
  17711. weight: math.unit(900, "kg"),
  17712. name: "Side",
  17713. image: {
  17714. source: "./media/characters/zara/side.svg",
  17715. extra: 504 / 498
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Normal",
  17722. height: math.unit(10, "feet"),
  17723. default: true
  17724. },
  17725. ]
  17726. ))
  17727. characterMakers.push(() => makeCharacter(
  17728. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17729. {
  17730. side: {
  17731. height: math.unit(6, "feet"),
  17732. weight: math.unit(150, "lb"),
  17733. name: "Side",
  17734. image: {
  17735. source: "./media/characters/richard-dragon/side.svg",
  17736. extra: 845 / 340,
  17737. bottom: 0.017
  17738. }
  17739. },
  17740. maw: {
  17741. height: math.unit(2.97, "feet"),
  17742. name: "Maw",
  17743. image: {
  17744. source: "./media/characters/richard-dragon/maw.svg"
  17745. }
  17746. },
  17747. },
  17748. [
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17753. {
  17754. front: {
  17755. height: math.unit(4, "feet"),
  17756. weight: math.unit(100, "lb"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/richard-smeargle/front.svg",
  17760. extra: 2952 / 2820,
  17761. bottom: 0.028
  17762. }
  17763. },
  17764. },
  17765. [
  17766. {
  17767. name: "Normal",
  17768. height: math.unit(4, "feet"),
  17769. default: true
  17770. },
  17771. {
  17772. name: "Dynamax",
  17773. height: math.unit(20, "meters")
  17774. },
  17775. ]
  17776. ))
  17777. characterMakers.push(() => makeCharacter(
  17778. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17779. {
  17780. front: {
  17781. height: math.unit(6, "feet"),
  17782. weight: math.unit(110, "lb"),
  17783. name: "Front",
  17784. image: {
  17785. source: "./media/characters/klay/front.svg",
  17786. extra: 962 / 883,
  17787. bottom: 0.04
  17788. }
  17789. },
  17790. back: {
  17791. height: math.unit(6, "feet"),
  17792. weight: math.unit(110, "lb"),
  17793. name: "Back",
  17794. image: {
  17795. source: "./media/characters/klay/back.svg",
  17796. extra: 962 / 883
  17797. }
  17798. },
  17799. beans: {
  17800. height: math.unit(1.15, "feet"),
  17801. name: "Beans",
  17802. image: {
  17803. source: "./media/characters/klay/beans.svg"
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Micro",
  17810. height: math.unit(6, "inches")
  17811. },
  17812. {
  17813. name: "Mini",
  17814. height: math.unit(3, "feet")
  17815. },
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(6, "feet"),
  17819. default: true
  17820. },
  17821. {
  17822. name: "Big",
  17823. height: math.unit(25, "feet")
  17824. },
  17825. {
  17826. name: "Macro",
  17827. height: math.unit(100, "feet")
  17828. },
  17829. {
  17830. name: "Megamacro",
  17831. height: math.unit(400, "feet")
  17832. },
  17833. ]
  17834. ))
  17835. characterMakers.push(() => makeCharacter(
  17836. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17837. {
  17838. front: {
  17839. height: math.unit(6, "feet"),
  17840. weight: math.unit(160, "lb"),
  17841. name: "Front",
  17842. image: {
  17843. source: "./media/characters/marcus/front.svg",
  17844. extra: 734 / 676,
  17845. bottom: 0.03
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Little",
  17852. height: math.unit(6, "feet")
  17853. },
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(110, "feet"),
  17857. default: true
  17858. },
  17859. {
  17860. name: "Macro",
  17861. height: math.unit(250, "feet")
  17862. },
  17863. {
  17864. name: "Megamacro",
  17865. height: math.unit(1000, "feet")
  17866. },
  17867. ]
  17868. ))
  17869. characterMakers.push(() => makeCharacter(
  17870. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17871. {
  17872. front: {
  17873. height: math.unit(7, "feet"),
  17874. weight: math.unit(275, "lb"),
  17875. name: "Front",
  17876. image: {
  17877. source: "./media/characters/claude-delroute/front.svg",
  17878. extra: 230 / 214,
  17879. bottom: 0.007
  17880. }
  17881. },
  17882. side: {
  17883. height: math.unit(7, "feet"),
  17884. weight: math.unit(275, "lb"),
  17885. name: "Side",
  17886. image: {
  17887. source: "./media/characters/claude-delroute/side.svg",
  17888. extra: 222 / 214,
  17889. bottom: 0.01
  17890. }
  17891. },
  17892. back: {
  17893. height: math.unit(7, "feet"),
  17894. weight: math.unit(275, "lb"),
  17895. name: "Back",
  17896. image: {
  17897. source: "./media/characters/claude-delroute/back.svg",
  17898. extra: 230 / 214,
  17899. bottom: 0.015
  17900. }
  17901. },
  17902. maw: {
  17903. height: math.unit(0.6407, "meters"),
  17904. name: "Maw",
  17905. image: {
  17906. source: "./media/characters/claude-delroute/maw.svg"
  17907. }
  17908. },
  17909. },
  17910. [
  17911. {
  17912. name: "Normal",
  17913. height: math.unit(7, "feet"),
  17914. default: true
  17915. },
  17916. {
  17917. name: "Lorge",
  17918. height: math.unit(20, "feet")
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17924. {
  17925. front: {
  17926. height: math.unit(8 + 4 / 12, "feet"),
  17927. weight: math.unit(600, "lb"),
  17928. name: "Front",
  17929. image: {
  17930. source: "./media/characters/dragonien/front.svg",
  17931. extra: 100 / 94,
  17932. bottom: 3.3 / 103.3445
  17933. }
  17934. },
  17935. back: {
  17936. height: math.unit(8 + 4 / 12, "feet"),
  17937. weight: math.unit(600, "lb"),
  17938. name: "Back",
  17939. image: {
  17940. source: "./media/characters/dragonien/back.svg",
  17941. extra: 776 / 746,
  17942. bottom: 6.4 / 782.0616
  17943. }
  17944. },
  17945. foot: {
  17946. height: math.unit(1.54, "feet"),
  17947. name: "Foot",
  17948. image: {
  17949. source: "./media/characters/dragonien/foot.svg",
  17950. }
  17951. },
  17952. },
  17953. [
  17954. {
  17955. name: "Normal",
  17956. height: math.unit(8 + 4 / 12, "feet"),
  17957. default: true
  17958. },
  17959. {
  17960. name: "Macro",
  17961. height: math.unit(200, "feet")
  17962. },
  17963. {
  17964. name: "Megamacro",
  17965. height: math.unit(1, "mile")
  17966. },
  17967. {
  17968. name: "Gigamacro",
  17969. height: math.unit(1000, "miles")
  17970. },
  17971. ]
  17972. ))
  17973. characterMakers.push(() => makeCharacter(
  17974. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17975. {
  17976. front: {
  17977. height: math.unit(5 + 2 / 12, "feet"),
  17978. weight: math.unit(110, "lb"),
  17979. name: "Front",
  17980. image: {
  17981. source: "./media/characters/desta/front.svg",
  17982. extra: 767 / 726,
  17983. bottom: 11.7 / 779
  17984. }
  17985. },
  17986. back: {
  17987. height: math.unit(5 + 2 / 12, "feet"),
  17988. weight: math.unit(110, "lb"),
  17989. name: "Back",
  17990. image: {
  17991. source: "./media/characters/desta/back.svg",
  17992. extra: 777 / 728,
  17993. bottom: 6 / 784
  17994. }
  17995. },
  17996. frontAlt: {
  17997. height: math.unit(5 + 2 / 12, "feet"),
  17998. weight: math.unit(110, "lb"),
  17999. name: "Front",
  18000. image: {
  18001. source: "./media/characters/desta/front-alt.svg",
  18002. extra: 1482 / 1417
  18003. }
  18004. },
  18005. side: {
  18006. height: math.unit(5 + 2 / 12, "feet"),
  18007. weight: math.unit(110, "lb"),
  18008. name: "Side",
  18009. image: {
  18010. source: "./media/characters/desta/side.svg",
  18011. extra: 2579 / 2491,
  18012. bottom: 0.053
  18013. }
  18014. },
  18015. },
  18016. [
  18017. {
  18018. name: "Micro",
  18019. height: math.unit(6, "inches")
  18020. },
  18021. {
  18022. name: "Normal",
  18023. height: math.unit(5 + 2 / 12, "feet"),
  18024. default: true
  18025. },
  18026. {
  18027. name: "Macro",
  18028. height: math.unit(62, "feet")
  18029. },
  18030. {
  18031. name: "Megamacro",
  18032. height: math.unit(1800, "feet")
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18038. {
  18039. front: {
  18040. height: math.unit(10, "feet"),
  18041. weight: math.unit(700, "lb"),
  18042. name: "Front",
  18043. image: {
  18044. source: "./media/characters/storm-alystar/front.svg",
  18045. extra: 2112 / 1898,
  18046. bottom: 0.034
  18047. }
  18048. },
  18049. },
  18050. [
  18051. {
  18052. name: "Micro",
  18053. height: math.unit(3.5, "inches")
  18054. },
  18055. {
  18056. name: "Normal",
  18057. height: math.unit(10, "feet"),
  18058. default: true
  18059. },
  18060. {
  18061. name: "Macro",
  18062. height: math.unit(400, "feet")
  18063. },
  18064. {
  18065. name: "Deific",
  18066. height: math.unit(60, "miles")
  18067. },
  18068. ]
  18069. ))
  18070. characterMakers.push(() => makeCharacter(
  18071. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18072. {
  18073. front: {
  18074. height: math.unit(2.35, "meters"),
  18075. weight: math.unit(119, "kg"),
  18076. name: "Front",
  18077. image: {
  18078. source: "./media/characters/ilia/front.svg",
  18079. extra: 1285 / 1255,
  18080. bottom: 0.06
  18081. }
  18082. },
  18083. },
  18084. [
  18085. {
  18086. name: "Normal",
  18087. height: math.unit(2.35, "meters")
  18088. },
  18089. {
  18090. name: "Macro",
  18091. height: math.unit(140, "meters"),
  18092. default: true
  18093. },
  18094. {
  18095. name: "Megamacro",
  18096. height: math.unit(100, "miles")
  18097. },
  18098. ]
  18099. ))
  18100. characterMakers.push(() => makeCharacter(
  18101. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18102. {
  18103. front: {
  18104. height: math.unit(6 + 5 / 12, "feet"),
  18105. weight: math.unit(190, "lb"),
  18106. name: "Front",
  18107. image: {
  18108. source: "./media/characters/kingdead/front.svg",
  18109. extra: 1228 / 1177
  18110. }
  18111. },
  18112. },
  18113. [
  18114. {
  18115. name: "Micro",
  18116. height: math.unit(7, "inches")
  18117. },
  18118. {
  18119. name: "Normal",
  18120. height: math.unit(6 + 5 / 12, "feet")
  18121. },
  18122. {
  18123. name: "Macro",
  18124. height: math.unit(150, "feet"),
  18125. default: true
  18126. },
  18127. {
  18128. name: "Megamacro",
  18129. height: math.unit(200, "miles")
  18130. },
  18131. ]
  18132. ))
  18133. characterMakers.push(() => makeCharacter(
  18134. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18135. {
  18136. front: {
  18137. height: math.unit(8, "feet"),
  18138. weight: math.unit(600, "lb"),
  18139. name: "Front",
  18140. image: {
  18141. source: "./media/characters/kyrehx/front.svg",
  18142. extra: 1195 / 1095,
  18143. bottom: 0.034
  18144. }
  18145. },
  18146. },
  18147. [
  18148. {
  18149. name: "Micro",
  18150. height: math.unit(2, "inches")
  18151. },
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(8, "feet"),
  18155. default: true
  18156. },
  18157. {
  18158. name: "Macro",
  18159. height: math.unit(255, "feet")
  18160. },
  18161. ]
  18162. ))
  18163. characterMakers.push(() => makeCharacter(
  18164. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18165. {
  18166. front: {
  18167. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18168. weight: math.unit(184, "lb"),
  18169. name: "Front",
  18170. image: {
  18171. source: "./media/characters/xang/front.svg",
  18172. extra: 845 / 755
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18180. default: true
  18181. },
  18182. {
  18183. name: "Macro",
  18184. height: math.unit(0.935 * 146, "feet")
  18185. },
  18186. {
  18187. name: "Megamacro",
  18188. height: math.unit(0.935 * 3, "miles")
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18194. {
  18195. frontDressed: {
  18196. height: math.unit(5 + 7 / 12, "feet"),
  18197. weight: math.unit(140, "lb"),
  18198. name: "Front (Dressed)",
  18199. image: {
  18200. source: "./media/characters/doc-weardno/front-dressed.svg",
  18201. extra: 263 / 234
  18202. }
  18203. },
  18204. backDressed: {
  18205. height: math.unit(5 + 7 / 12, "feet"),
  18206. weight: math.unit(140, "lb"),
  18207. name: "Back (Dressed)",
  18208. image: {
  18209. source: "./media/characters/doc-weardno/back-dressed.svg",
  18210. extra: 266 / 238
  18211. }
  18212. },
  18213. front: {
  18214. height: math.unit(5 + 7 / 12, "feet"),
  18215. weight: math.unit(140, "lb"),
  18216. name: "Front",
  18217. image: {
  18218. source: "./media/characters/doc-weardno/front.svg",
  18219. extra: 254 / 233
  18220. }
  18221. },
  18222. },
  18223. [
  18224. {
  18225. name: "Micro",
  18226. height: math.unit(3, "inches")
  18227. },
  18228. {
  18229. name: "Normal",
  18230. height: math.unit(5 + 7 / 12, "feet"),
  18231. default: true
  18232. },
  18233. {
  18234. name: "Macro",
  18235. height: math.unit(25, "feet")
  18236. },
  18237. {
  18238. name: "Megamacro",
  18239. height: math.unit(2, "miles")
  18240. },
  18241. ]
  18242. ))
  18243. characterMakers.push(() => makeCharacter(
  18244. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18245. {
  18246. front: {
  18247. height: math.unit(6 + 2 / 12, "feet"),
  18248. weight: math.unit(153, "lb"),
  18249. name: "Front",
  18250. image: {
  18251. source: "./media/characters/seth-whilst/front.svg",
  18252. bottom: 0.07
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Micro",
  18259. height: math.unit(5, "inches")
  18260. },
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(6 + 2 / 12, "feet"),
  18264. default: true
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(3, "inches"),
  18273. weight: math.unit(8, "grams"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/pocket-jabari/front.svg",
  18277. extra: 1024 / 974,
  18278. bottom: 0.039
  18279. }
  18280. },
  18281. },
  18282. [
  18283. {
  18284. name: "Minimicro",
  18285. height: math.unit(8, "mm")
  18286. },
  18287. {
  18288. name: "Micro",
  18289. height: math.unit(3, "inches"),
  18290. default: true
  18291. },
  18292. {
  18293. name: "Normal",
  18294. height: math.unit(3, "feet")
  18295. },
  18296. ]
  18297. ))
  18298. characterMakers.push(() => makeCharacter(
  18299. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18300. {
  18301. front: {
  18302. height: math.unit(15, "feet"),
  18303. weight: math.unit(3280, "lb"),
  18304. name: "Front",
  18305. image: {
  18306. source: "./media/characters/sapphy/front.svg",
  18307. extra: 671 / 577,
  18308. bottom: 0.085
  18309. }
  18310. },
  18311. back: {
  18312. height: math.unit(15, "feet"),
  18313. weight: math.unit(3280, "lb"),
  18314. name: "Back",
  18315. image: {
  18316. source: "./media/characters/sapphy/back.svg",
  18317. extra: 631 / 607,
  18318. bottom: 0.045
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Normal",
  18325. height: math.unit(15, "feet")
  18326. },
  18327. {
  18328. name: "Casual Macro",
  18329. height: math.unit(120, "feet")
  18330. },
  18331. {
  18332. name: "Macro",
  18333. height: math.unit(2150, "feet"),
  18334. default: true
  18335. },
  18336. {
  18337. name: "Megamacro",
  18338. height: math.unit(8, "miles")
  18339. },
  18340. {
  18341. name: "Galaxy Mom",
  18342. height: math.unit(6, "megalightyears")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(6, "feet"),
  18351. weight: math.unit(170, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/kiro/front.svg",
  18355. extra: 1064 / 1012,
  18356. bottom: 0.052
  18357. }
  18358. },
  18359. },
  18360. [
  18361. {
  18362. name: "Micro",
  18363. height: math.unit(6, "inches")
  18364. },
  18365. {
  18366. name: "Normal",
  18367. height: math.unit(6, "feet"),
  18368. default: true
  18369. },
  18370. {
  18371. name: "Macro",
  18372. height: math.unit(72, "feet")
  18373. },
  18374. ]
  18375. ))
  18376. characterMakers.push(() => makeCharacter(
  18377. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18378. {
  18379. front: {
  18380. height: math.unit(5 + 9 / 12, "feet"),
  18381. weight: math.unit(175, "lb"),
  18382. name: "Front",
  18383. image: {
  18384. source: "./media/characters/irishfox/front.svg",
  18385. extra: 1912 / 1680,
  18386. bottom: 0.02
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Nano",
  18393. height: math.unit(1, "mm")
  18394. },
  18395. {
  18396. name: "Micro",
  18397. height: math.unit(2, "inches")
  18398. },
  18399. {
  18400. name: "Normal",
  18401. height: math.unit(5 + 9 / 12, "feet"),
  18402. default: true
  18403. },
  18404. {
  18405. name: "Macro",
  18406. height: math.unit(45, "feet")
  18407. },
  18408. ]
  18409. ))
  18410. characterMakers.push(() => makeCharacter(
  18411. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18412. {
  18413. front: {
  18414. height: math.unit(6 + 1 / 12, "feet"),
  18415. weight: math.unit(75, "lb"),
  18416. name: "Front",
  18417. image: {
  18418. source: "./media/characters/aronai-sieyes/front.svg",
  18419. extra: 1556 / 1480,
  18420. bottom: 0.015
  18421. }
  18422. },
  18423. side: {
  18424. height: math.unit(6 + 1 / 12, "feet"),
  18425. weight: math.unit(75, "lb"),
  18426. name: "Side",
  18427. image: {
  18428. source: "./media/characters/aronai-sieyes/side.svg",
  18429. extra: 1433 / 1390,
  18430. bottom: 0.0393
  18431. }
  18432. },
  18433. back: {
  18434. height: math.unit(6 + 1 / 12, "feet"),
  18435. weight: math.unit(75, "lb"),
  18436. name: "Back",
  18437. image: {
  18438. source: "./media/characters/aronai-sieyes/back.svg",
  18439. extra: 1544 / 1494,
  18440. bottom: 0.02
  18441. }
  18442. },
  18443. frontClothed: {
  18444. height: math.unit(6 + 1 / 12, "feet"),
  18445. weight: math.unit(75, "lb"),
  18446. name: "Front (Clothed)",
  18447. image: {
  18448. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18449. extra: 1582 / 1527
  18450. }
  18451. },
  18452. feral: {
  18453. height: math.unit(18, "feet"),
  18454. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18455. name: "Feral",
  18456. image: {
  18457. source: "./media/characters/aronai-sieyes/feral.svg",
  18458. extra: 1530 / 1240,
  18459. bottom: 0.035
  18460. }
  18461. },
  18462. },
  18463. [
  18464. {
  18465. name: "Micro",
  18466. height: math.unit(2, "inches")
  18467. },
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(6 + 1 / 12, "feet"),
  18471. default: true
  18472. }
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18477. {
  18478. front: {
  18479. height: math.unit(12, "feet"),
  18480. weight: math.unit(410, "kg"),
  18481. name: "Front",
  18482. image: {
  18483. source: "./media/characters/xuna/front.svg",
  18484. extra: 2184 / 1980
  18485. }
  18486. },
  18487. side: {
  18488. height: math.unit(12, "feet"),
  18489. weight: math.unit(410, "kg"),
  18490. name: "Side",
  18491. image: {
  18492. source: "./media/characters/xuna/side.svg",
  18493. extra: 2184 / 1980
  18494. }
  18495. },
  18496. back: {
  18497. height: math.unit(12, "feet"),
  18498. weight: math.unit(410, "kg"),
  18499. name: "Back",
  18500. image: {
  18501. source: "./media/characters/xuna/back.svg",
  18502. extra: 2184 / 1980
  18503. }
  18504. },
  18505. },
  18506. [
  18507. {
  18508. name: "Nano glow",
  18509. height: math.unit(10, "nm")
  18510. },
  18511. {
  18512. name: "Micro floof",
  18513. height: math.unit(0.3, "m")
  18514. },
  18515. {
  18516. name: "Huggable softy boi",
  18517. height: math.unit(3.6576, "m"),
  18518. default: true
  18519. },
  18520. {
  18521. name: "Admirable floof",
  18522. height: math.unit(80, "meters")
  18523. },
  18524. {
  18525. name: "Gentle macro",
  18526. height: math.unit(300, "meters")
  18527. },
  18528. {
  18529. name: "Very careful floof",
  18530. height: math.unit(3200, "meters")
  18531. },
  18532. {
  18533. name: "The mega floof",
  18534. height: math.unit(36000, "meters")
  18535. },
  18536. {
  18537. name: "Giga-fur-Wicker",
  18538. height: math.unit(4800000, "meters")
  18539. },
  18540. {
  18541. name: "Licky world",
  18542. height: math.unit(20000000, "meters")
  18543. },
  18544. {
  18545. name: "Floofy cyan sun",
  18546. height: math.unit(1500000000, "meters")
  18547. },
  18548. {
  18549. name: "Milky Wicker",
  18550. height: math.unit(1000000000000000000000, "meters")
  18551. },
  18552. {
  18553. name: "The observing Wicker",
  18554. height: math.unit(999999999999999999999999999, "meters")
  18555. },
  18556. ]
  18557. ))
  18558. characterMakers.push(() => makeCharacter(
  18559. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18560. {
  18561. front: {
  18562. height: math.unit(5 + 9 / 12, "feet"),
  18563. weight: math.unit(150, "lb"),
  18564. name: "Front",
  18565. image: {
  18566. source: "./media/characters/arokha-sieyes/front.svg",
  18567. extra: 1425 / 1284,
  18568. bottom: 0.05
  18569. }
  18570. },
  18571. },
  18572. [
  18573. {
  18574. name: "Normal",
  18575. height: math.unit(5 + 9 / 12, "feet")
  18576. },
  18577. {
  18578. name: "Macro",
  18579. height: math.unit(30, "meters"),
  18580. default: true
  18581. },
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18586. {
  18587. front: {
  18588. height: math.unit(6, "feet"),
  18589. weight: math.unit(180, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/arokh-sieyes/front.svg",
  18593. extra: 1830 / 1769,
  18594. bottom: 0.01
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Normal",
  18601. height: math.unit(6, "feet")
  18602. },
  18603. {
  18604. name: "Macro",
  18605. height: math.unit(30, "meters"),
  18606. default: true
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18612. {
  18613. side: {
  18614. height: math.unit(13 + 1 / 12, "feet"),
  18615. weight: math.unit(8.5, "tonnes"),
  18616. name: "Side",
  18617. image: {
  18618. source: "./media/characters/goldeneye/side.svg",
  18619. extra: 1182 / 778,
  18620. bottom: 0.067
  18621. }
  18622. },
  18623. paw: {
  18624. height: math.unit(3.4, "feet"),
  18625. name: "Paw",
  18626. image: {
  18627. source: "./media/characters/goldeneye/paw.svg"
  18628. }
  18629. },
  18630. },
  18631. [
  18632. {
  18633. name: "Normal",
  18634. height: math.unit(13 + 1 / 12, "feet"),
  18635. default: true
  18636. },
  18637. ]
  18638. ))
  18639. characterMakers.push(() => makeCharacter(
  18640. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18641. {
  18642. front: {
  18643. height: math.unit(6 + 1 / 12, "feet"),
  18644. weight: math.unit(210, "lb"),
  18645. name: "Front",
  18646. image: {
  18647. source: "./media/characters/leonardo-lycheborne/front.svg",
  18648. extra: 390 / 365,
  18649. bottom: 0.032
  18650. }
  18651. },
  18652. side: {
  18653. height: math.unit(6 + 1 / 12, "feet"),
  18654. weight: math.unit(210, "lb"),
  18655. name: "Side",
  18656. image: {
  18657. source: "./media/characters/leonardo-lycheborne/side.svg",
  18658. extra: 390 / 365,
  18659. bottom: 0.005
  18660. }
  18661. },
  18662. back: {
  18663. height: math.unit(6 + 1 / 12, "feet"),
  18664. weight: math.unit(210, "lb"),
  18665. name: "Back",
  18666. image: {
  18667. source: "./media/characters/leonardo-lycheborne/back.svg",
  18668. extra: 392 / 366,
  18669. bottom: 0.01
  18670. }
  18671. },
  18672. hand: {
  18673. height: math.unit(1.08, "feet"),
  18674. name: "Hand",
  18675. image: {
  18676. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18677. }
  18678. },
  18679. foot: {
  18680. height: math.unit(1.32, "feet"),
  18681. name: "Foot",
  18682. image: {
  18683. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18684. }
  18685. },
  18686. were: {
  18687. height: math.unit(20, "feet"),
  18688. weight: math.unit(7800, "lb"),
  18689. name: "Were",
  18690. image: {
  18691. source: "./media/characters/leonardo-lycheborne/were.svg",
  18692. extra: 308 / 294,
  18693. bottom: 0.048
  18694. }
  18695. },
  18696. feral: {
  18697. height: math.unit(7.5, "feet"),
  18698. weight: math.unit(600, "lb"),
  18699. name: "Feral",
  18700. image: {
  18701. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18702. extra: 210 / 186,
  18703. bottom: 0.108
  18704. }
  18705. },
  18706. taur: {
  18707. height: math.unit(11, "feet"),
  18708. weight: math.unit(3300, "lb"),
  18709. name: "Taur",
  18710. image: {
  18711. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18712. extra: 320 / 303,
  18713. bottom: 0.025
  18714. }
  18715. },
  18716. barghest: {
  18717. height: math.unit(11, "feet"),
  18718. weight: math.unit(1300, "lb"),
  18719. name: "Barghest",
  18720. image: {
  18721. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18722. extra: 323 / 302,
  18723. bottom: 0.027
  18724. }
  18725. },
  18726. dick: {
  18727. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18728. name: "Dick",
  18729. image: {
  18730. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18731. }
  18732. },
  18733. dickWere: {
  18734. height: math.unit((20) / 3.8, "feet"),
  18735. name: "Dick (Were)",
  18736. image: {
  18737. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18738. }
  18739. },
  18740. },
  18741. [
  18742. {
  18743. name: "Normal",
  18744. height: math.unit(6 + 1 / 12, "feet"),
  18745. default: true
  18746. },
  18747. ]
  18748. ))
  18749. characterMakers.push(() => makeCharacter(
  18750. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18751. {
  18752. front: {
  18753. height: math.unit(10, "feet"),
  18754. weight: math.unit(350, "lb"),
  18755. name: "Front",
  18756. image: {
  18757. source: "./media/characters/jet/front.svg",
  18758. extra: 2050 / 1980,
  18759. bottom: 0.013
  18760. }
  18761. },
  18762. back: {
  18763. height: math.unit(10, "feet"),
  18764. weight: math.unit(350, "lb"),
  18765. name: "Back",
  18766. image: {
  18767. source: "./media/characters/jet/back.svg",
  18768. extra: 2050 / 1980,
  18769. bottom: 0.013
  18770. }
  18771. },
  18772. },
  18773. [
  18774. {
  18775. name: "Micro",
  18776. height: math.unit(6, "inches")
  18777. },
  18778. {
  18779. name: "Normal",
  18780. height: math.unit(10, "feet"),
  18781. default: true
  18782. },
  18783. {
  18784. name: "Macro",
  18785. height: math.unit(100, "feet")
  18786. },
  18787. ]
  18788. ))
  18789. characterMakers.push(() => makeCharacter(
  18790. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18791. {
  18792. front: {
  18793. height: math.unit(15, "feet"),
  18794. weight: math.unit(2800, "lb"),
  18795. name: "Front",
  18796. image: {
  18797. source: "./media/characters/tanarath/front.svg",
  18798. extra: 2392 / 2220,
  18799. bottom: 0.03
  18800. }
  18801. },
  18802. back: {
  18803. height: math.unit(15, "feet"),
  18804. weight: math.unit(2800, "lb"),
  18805. name: "Back",
  18806. image: {
  18807. source: "./media/characters/tanarath/back.svg",
  18808. extra: 2392 / 2220,
  18809. bottom: 0.03
  18810. }
  18811. },
  18812. },
  18813. [
  18814. {
  18815. name: "Normal",
  18816. height: math.unit(15, "feet"),
  18817. default: true
  18818. },
  18819. ]
  18820. ))
  18821. characterMakers.push(() => makeCharacter(
  18822. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18823. {
  18824. front: {
  18825. height: math.unit(7 + 1 / 12, "feet"),
  18826. weight: math.unit(175, "lb"),
  18827. name: "Front",
  18828. image: {
  18829. source: "./media/characters/patty-cattybatty/front.svg",
  18830. extra: 908 / 874,
  18831. bottom: 0.025
  18832. }
  18833. },
  18834. },
  18835. [
  18836. {
  18837. name: "Micro",
  18838. height: math.unit(1, "inch")
  18839. },
  18840. {
  18841. name: "Normal",
  18842. height: math.unit(7 + 1 / 12, "feet")
  18843. },
  18844. {
  18845. name: "Mini Macro",
  18846. height: math.unit(155, "feet")
  18847. },
  18848. {
  18849. name: "Macro",
  18850. height: math.unit(1077, "feet")
  18851. },
  18852. {
  18853. name: "Mega Macro",
  18854. height: math.unit(47650, "feet"),
  18855. default: true
  18856. },
  18857. {
  18858. name: "Giga Macro",
  18859. height: math.unit(440, "miles")
  18860. },
  18861. {
  18862. name: "Tera Macro",
  18863. height: math.unit(8700, "miles")
  18864. },
  18865. {
  18866. name: "Planetary Macro",
  18867. height: math.unit(32700, "miles")
  18868. },
  18869. {
  18870. name: "Solar Macro",
  18871. height: math.unit(550000, "miles")
  18872. },
  18873. {
  18874. name: "Celestial Macro",
  18875. height: math.unit(2.5, "AU")
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(4 + 5 / 12, "feet"),
  18884. weight: math.unit(90, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/cappu/front.svg",
  18888. extra: 1247 / 1152,
  18889. bottom: 0.012
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Normal",
  18896. height: math.unit(4 + 5 / 12, "feet"),
  18897. default: true
  18898. },
  18899. ]
  18900. ))
  18901. characterMakers.push(() => makeCharacter(
  18902. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18903. {
  18904. frontDressed: {
  18905. height: math.unit(70, "cm"),
  18906. weight: math.unit(6, "kg"),
  18907. name: "Front (Dressed)",
  18908. image: {
  18909. source: "./media/characters/sebi/front-dressed.svg",
  18910. extra: 713.5 / 686.5,
  18911. bottom: 0.003
  18912. }
  18913. },
  18914. front: {
  18915. height: math.unit(70, "cm"),
  18916. weight: math.unit(5, "kg"),
  18917. name: "Front",
  18918. image: {
  18919. source: "./media/characters/sebi/front.svg",
  18920. extra: 713.5 / 686.5,
  18921. bottom: 0.003
  18922. }
  18923. }
  18924. },
  18925. [
  18926. {
  18927. name: "Normal",
  18928. height: math.unit(70, "cm"),
  18929. default: true
  18930. },
  18931. {
  18932. name: "Macro",
  18933. height: math.unit(8, "meters")
  18934. },
  18935. ]
  18936. ))
  18937. characterMakers.push(() => makeCharacter(
  18938. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18939. {
  18940. front: {
  18941. height: math.unit(6, "feet"),
  18942. weight: math.unit(150, "lb"),
  18943. name: "Front",
  18944. image: {
  18945. source: "./media/characters/typhek/front.svg",
  18946. extra: 1948 / 1929,
  18947. bottom: 0.025
  18948. }
  18949. },
  18950. side: {
  18951. height: math.unit(6, "feet"),
  18952. weight: math.unit(150, "lb"),
  18953. name: "Side",
  18954. image: {
  18955. source: "./media/characters/typhek/side.svg",
  18956. extra: 2034 / 2010,
  18957. bottom: 0.003
  18958. }
  18959. },
  18960. back: {
  18961. height: math.unit(6, "feet"),
  18962. weight: math.unit(150, "lb"),
  18963. name: "Back",
  18964. image: {
  18965. source: "./media/characters/typhek/back.svg",
  18966. extra: 2005 / 1978,
  18967. bottom: 0.004
  18968. }
  18969. },
  18970. palm: {
  18971. height: math.unit(1.2, "feet"),
  18972. name: "Palm",
  18973. image: {
  18974. source: "./media/characters/typhek/palm.svg"
  18975. }
  18976. },
  18977. fist: {
  18978. height: math.unit(1.1, "feet"),
  18979. name: "Fist",
  18980. image: {
  18981. source: "./media/characters/typhek/fist.svg"
  18982. }
  18983. },
  18984. foot: {
  18985. height: math.unit(1.57, "feet"),
  18986. name: "Foot",
  18987. image: {
  18988. source: "./media/characters/typhek/foot.svg"
  18989. }
  18990. },
  18991. sole: {
  18992. height: math.unit(2.05, "feet"),
  18993. name: "Sole",
  18994. image: {
  18995. source: "./media/characters/typhek/sole.svg"
  18996. }
  18997. },
  18998. },
  18999. [
  19000. {
  19001. name: "Macro",
  19002. height: math.unit(40, "stories"),
  19003. default: true
  19004. },
  19005. {
  19006. name: "Megamacro",
  19007. height: math.unit(1, "mile")
  19008. },
  19009. {
  19010. name: "Gigamacro",
  19011. height: math.unit(4000, "solarradii")
  19012. },
  19013. {
  19014. name: "Universal",
  19015. height: math.unit(1.1, "universes")
  19016. }
  19017. ]
  19018. ))
  19019. characterMakers.push(() => makeCharacter(
  19020. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19021. {
  19022. side: {
  19023. height: math.unit(5 + 7 / 12, "feet"),
  19024. weight: math.unit(150, "lb"),
  19025. name: "Side",
  19026. image: {
  19027. source: "./media/characters/kassy/side.svg",
  19028. extra: 1280 / 1225,
  19029. bottom: 0.002
  19030. }
  19031. },
  19032. front: {
  19033. height: math.unit(5 + 7 / 12, "feet"),
  19034. weight: math.unit(150, "lb"),
  19035. name: "Front",
  19036. image: {
  19037. source: "./media/characters/kassy/front.svg",
  19038. extra: 1280 / 1225,
  19039. bottom: 0.025
  19040. }
  19041. },
  19042. back: {
  19043. height: math.unit(5 + 7 / 12, "feet"),
  19044. weight: math.unit(150, "lb"),
  19045. name: "Back",
  19046. image: {
  19047. source: "./media/characters/kassy/back.svg",
  19048. extra: 1280 / 1225,
  19049. bottom: 0.002
  19050. }
  19051. },
  19052. foot: {
  19053. height: math.unit(1.266, "feet"),
  19054. name: "Foot",
  19055. image: {
  19056. source: "./media/characters/kassy/foot.svg"
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(5 + 7 / 12, "feet")
  19064. },
  19065. {
  19066. name: "Macro",
  19067. height: math.unit(137, "feet"),
  19068. default: true
  19069. },
  19070. {
  19071. name: "Megamacro",
  19072. height: math.unit(1, "mile")
  19073. },
  19074. ]
  19075. ))
  19076. characterMakers.push(() => makeCharacter(
  19077. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19078. {
  19079. front: {
  19080. height: math.unit(6 + 1 / 12, "feet"),
  19081. weight: math.unit(200, "lb"),
  19082. name: "Front",
  19083. image: {
  19084. source: "./media/characters/neil/front.svg",
  19085. extra: 1326 / 1250,
  19086. bottom: 0.023
  19087. }
  19088. },
  19089. },
  19090. [
  19091. {
  19092. name: "Normal",
  19093. height: math.unit(6 + 1 / 12, "feet"),
  19094. default: true
  19095. },
  19096. {
  19097. name: "Macro",
  19098. height: math.unit(200, "feet")
  19099. },
  19100. ]
  19101. ))
  19102. characterMakers.push(() => makeCharacter(
  19103. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19104. {
  19105. front: {
  19106. height: math.unit(5 + 9 / 12, "feet"),
  19107. weight: math.unit(190, "lb"),
  19108. name: "Front",
  19109. image: {
  19110. source: "./media/characters/atticus/front.svg",
  19111. extra: 2934 / 2785,
  19112. bottom: 0.025
  19113. }
  19114. },
  19115. },
  19116. [
  19117. {
  19118. name: "Normal",
  19119. height: math.unit(5 + 9 / 12, "feet"),
  19120. default: true
  19121. },
  19122. {
  19123. name: "Macro",
  19124. height: math.unit(180, "feet")
  19125. },
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19130. {
  19131. side: {
  19132. height: math.unit(9, "feet"),
  19133. weight: math.unit(650, "lb"),
  19134. name: "Side",
  19135. image: {
  19136. source: "./media/characters/milo/side.svg",
  19137. extra: 2644 / 2310,
  19138. bottom: 0.032
  19139. }
  19140. },
  19141. },
  19142. [
  19143. {
  19144. name: "Normal",
  19145. height: math.unit(9, "feet"),
  19146. default: true
  19147. },
  19148. {
  19149. name: "Macro",
  19150. height: math.unit(300, "feet")
  19151. },
  19152. ]
  19153. ))
  19154. characterMakers.push(() => makeCharacter(
  19155. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19156. {
  19157. side: {
  19158. height: math.unit(8, "meters"),
  19159. weight: math.unit(90000, "kg"),
  19160. name: "Side",
  19161. image: {
  19162. source: "./media/characters/ijzer/side.svg",
  19163. extra: 2756 / 1600,
  19164. bottom: 0.01
  19165. }
  19166. },
  19167. },
  19168. [
  19169. {
  19170. name: "Small",
  19171. height: math.unit(3, "meters")
  19172. },
  19173. {
  19174. name: "Normal",
  19175. height: math.unit(8, "meters"),
  19176. default: true
  19177. },
  19178. {
  19179. name: "Normal+",
  19180. height: math.unit(10, "meters")
  19181. },
  19182. {
  19183. name: "Bigger",
  19184. height: math.unit(24, "meters")
  19185. },
  19186. {
  19187. name: "Huge",
  19188. height: math.unit(80, "meters")
  19189. },
  19190. ]
  19191. ))
  19192. characterMakers.push(() => makeCharacter(
  19193. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19194. {
  19195. front: {
  19196. height: math.unit(6 + 2 / 12, "feet"),
  19197. weight: math.unit(153, "lb"),
  19198. name: "Front",
  19199. image: {
  19200. source: "./media/characters/luca-cervicum/front.svg",
  19201. extra: 370 / 327,
  19202. bottom: 0.015
  19203. }
  19204. },
  19205. back: {
  19206. height: math.unit(6 + 2 / 12, "feet"),
  19207. weight: math.unit(153, "lb"),
  19208. name: "Back",
  19209. image: {
  19210. source: "./media/characters/luca-cervicum/back.svg",
  19211. extra: 367 / 333,
  19212. bottom: 0.005
  19213. }
  19214. },
  19215. frontGear: {
  19216. height: math.unit(6 + 2 / 12, "feet"),
  19217. weight: math.unit(173, "lb"),
  19218. name: "Front (Gear)",
  19219. image: {
  19220. source: "./media/characters/luca-cervicum/front-gear.svg",
  19221. extra: 377 / 333,
  19222. bottom: 0.006
  19223. }
  19224. },
  19225. },
  19226. [
  19227. {
  19228. name: "Normal",
  19229. height: math.unit(6 + 2 / 12, "feet"),
  19230. default: true
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19236. {
  19237. front: {
  19238. height: math.unit(6 + 1 / 12, "feet"),
  19239. weight: math.unit(304, "lb"),
  19240. name: "Front",
  19241. image: {
  19242. source: "./media/characters/oliver/front.svg",
  19243. extra: 157 / 143,
  19244. bottom: 0.08
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(6 + 1 / 12, "feet"),
  19252. default: true
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(5 + 7 / 12, "feet"),
  19261. weight: math.unit(140, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/shane/front.svg",
  19265. extra: 304 / 289,
  19266. bottom: 0.005
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(5 + 7 / 12, "feet"),
  19274. default: true
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19280. {
  19281. front: {
  19282. height: math.unit(5 + 9 / 12, "feet"),
  19283. weight: math.unit(178, "lb"),
  19284. name: "Front",
  19285. image: {
  19286. source: "./media/characters/shin/front.svg",
  19287. extra: 159 / 151,
  19288. bottom: 0.015
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(5 + 9 / 12, "feet"),
  19296. default: true
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(5 + 10 / 12, "feet"),
  19305. weight: math.unit(168, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/xerxes/front.svg",
  19309. extra: 282 / 260,
  19310. bottom: 0.045
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Normal",
  19317. height: math.unit(5 + 10 / 12, "feet"),
  19318. default: true
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19324. {
  19325. front: {
  19326. height: math.unit(6 + 7 / 12, "feet"),
  19327. weight: math.unit(208, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/chaska/front.svg",
  19331. extra: 332 / 319,
  19332. bottom: 0.015
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Normal",
  19339. height: math.unit(6 + 7 / 12, "feet"),
  19340. default: true
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19346. {
  19347. front: {
  19348. height: math.unit(5 + 8 / 12, "feet"),
  19349. weight: math.unit(208, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/enuk/front.svg",
  19353. extra: 437 / 406,
  19354. bottom: 0.02
  19355. }
  19356. },
  19357. },
  19358. [
  19359. {
  19360. name: "Normal",
  19361. height: math.unit(5 + 8 / 12, "feet"),
  19362. default: true
  19363. },
  19364. ]
  19365. ))
  19366. characterMakers.push(() => makeCharacter(
  19367. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19368. {
  19369. front: {
  19370. height: math.unit(5 + 10 / 12, "feet"),
  19371. weight: math.unit(252, "lb"),
  19372. name: "Front",
  19373. image: {
  19374. source: "./media/characters/bruun/front.svg",
  19375. extra: 197 / 187,
  19376. bottom: 0.012
  19377. }
  19378. },
  19379. },
  19380. [
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(5 + 10 / 12, "feet"),
  19384. default: true
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19390. {
  19391. front: {
  19392. height: math.unit(6 + 10 / 12, "feet"),
  19393. weight: math.unit(255, "lb"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/alexeev/front.svg",
  19397. extra: 213 / 200,
  19398. bottom: 0.05
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(6 + 10 / 12, "feet"),
  19406. default: true
  19407. },
  19408. ]
  19409. ))
  19410. characterMakers.push(() => makeCharacter(
  19411. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19412. {
  19413. front: {
  19414. height: math.unit(2 + 8 / 12, "feet"),
  19415. weight: math.unit(22, "lb"),
  19416. name: "Front",
  19417. image: {
  19418. source: "./media/characters/evelyn/front.svg",
  19419. extra: 208 / 180
  19420. }
  19421. },
  19422. },
  19423. [
  19424. {
  19425. name: "Normal",
  19426. height: math.unit(2 + 8 / 12, "feet"),
  19427. default: true
  19428. },
  19429. ]
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19433. {
  19434. front: {
  19435. height: math.unit(5 + 9 / 12, "feet"),
  19436. weight: math.unit(139, "lb"),
  19437. name: "Front",
  19438. image: {
  19439. source: "./media/characters/inca/front.svg",
  19440. extra: 294 / 291,
  19441. bottom: 0.03
  19442. }
  19443. },
  19444. },
  19445. [
  19446. {
  19447. name: "Normal",
  19448. height: math.unit(5 + 9 / 12, "feet"),
  19449. default: true
  19450. },
  19451. ]
  19452. ))
  19453. characterMakers.push(() => makeCharacter(
  19454. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19455. {
  19456. front: {
  19457. height: math.unit(5 + 1 / 12, "feet"),
  19458. weight: math.unit(84, "lb"),
  19459. name: "Front",
  19460. image: {
  19461. source: "./media/characters/magdalene/front.svg",
  19462. extra: 293 / 273
  19463. }
  19464. },
  19465. },
  19466. [
  19467. {
  19468. name: "Normal",
  19469. height: math.unit(5 + 1 / 12, "feet"),
  19470. default: true
  19471. },
  19472. ]
  19473. ))
  19474. characterMakers.push(() => makeCharacter(
  19475. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19476. {
  19477. front: {
  19478. height: math.unit(6 + 3 / 12, "feet"),
  19479. weight: math.unit(185, "lb"),
  19480. name: "Front",
  19481. image: {
  19482. source: "./media/characters/mera/front.svg",
  19483. extra: 291 / 277,
  19484. bottom: 0.03
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(6 + 3 / 12, "feet"),
  19492. default: true
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19498. {
  19499. front: {
  19500. height: math.unit(6 + 7 / 12, "feet"),
  19501. weight: math.unit(160, "lb"),
  19502. name: "Front",
  19503. image: {
  19504. source: "./media/characters/ceres/front.svg",
  19505. extra: 1023 / 950,
  19506. bottom: 0.027
  19507. }
  19508. },
  19509. back: {
  19510. height: math.unit(6 + 7 / 12, "feet"),
  19511. weight: math.unit(160, "lb"),
  19512. name: "Back",
  19513. image: {
  19514. source: "./media/characters/ceres/back.svg",
  19515. extra: 1023 / 950
  19516. }
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(6 + 7 / 12, "feet"),
  19523. default: true
  19524. },
  19525. ]
  19526. ))
  19527. characterMakers.push(() => makeCharacter(
  19528. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19529. {
  19530. front: {
  19531. height: math.unit(5 + 10 / 12, "feet"),
  19532. weight: math.unit(150, "lb"),
  19533. name: "Front",
  19534. image: {
  19535. source: "./media/characters/kris/front.svg",
  19536. extra: 885 / 803,
  19537. bottom: 0.03
  19538. }
  19539. },
  19540. },
  19541. [
  19542. {
  19543. name: "Normal",
  19544. height: math.unit(5 + 10 / 12, "feet"),
  19545. default: true
  19546. },
  19547. ]
  19548. ))
  19549. characterMakers.push(() => makeCharacter(
  19550. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19551. {
  19552. front: {
  19553. height: math.unit(7, "feet"),
  19554. weight: math.unit(120, "kg"),
  19555. name: "Front",
  19556. image: {
  19557. source: "./media/characters/taluthus/front.svg",
  19558. extra: 903 / 833,
  19559. bottom: 0.015
  19560. }
  19561. },
  19562. },
  19563. [
  19564. {
  19565. name: "Normal",
  19566. height: math.unit(7, "feet"),
  19567. default: true
  19568. },
  19569. {
  19570. name: "Macro",
  19571. height: math.unit(300, "feet")
  19572. },
  19573. ]
  19574. ))
  19575. characterMakers.push(() => makeCharacter(
  19576. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19577. {
  19578. front: {
  19579. height: math.unit(5 + 9 / 12, "feet"),
  19580. weight: math.unit(145, "lb"),
  19581. name: "Front",
  19582. image: {
  19583. source: "./media/characters/dawn/front.svg",
  19584. extra: 2094 / 2016,
  19585. bottom: 0.025
  19586. }
  19587. },
  19588. back: {
  19589. height: math.unit(5 + 9 / 12, "feet"),
  19590. weight: math.unit(160, "lb"),
  19591. name: "Back",
  19592. image: {
  19593. source: "./media/characters/dawn/back.svg",
  19594. extra: 2112 / 2080,
  19595. bottom: 0.005
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(6 + 7 / 12, "feet"),
  19603. default: true
  19604. },
  19605. ]
  19606. ))
  19607. characterMakers.push(() => makeCharacter(
  19608. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19609. {
  19610. anthro: {
  19611. height: math.unit(8 + 3 / 12, "feet"),
  19612. weight: math.unit(450, "lb"),
  19613. name: "Anthro",
  19614. image: {
  19615. source: "./media/characters/arador/anthro.svg",
  19616. extra: 1835 / 1718,
  19617. bottom: 0.025
  19618. }
  19619. },
  19620. feral: {
  19621. height: math.unit(4, "feet"),
  19622. weight: math.unit(200, "lb"),
  19623. name: "Feral",
  19624. image: {
  19625. source: "./media/characters/arador/feral.svg",
  19626. extra: 1683 / 1514,
  19627. bottom: 0.07
  19628. }
  19629. },
  19630. },
  19631. [
  19632. {
  19633. name: "Normal",
  19634. height: math.unit(8 + 3 / 12, "feet")
  19635. },
  19636. {
  19637. name: "Macro",
  19638. height: math.unit(82.5, "feet"),
  19639. default: true
  19640. },
  19641. ]
  19642. ))
  19643. characterMakers.push(() => makeCharacter(
  19644. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19645. {
  19646. front: {
  19647. height: math.unit(5 + 10 / 12, "feet"),
  19648. weight: math.unit(125, "lb"),
  19649. name: "Front",
  19650. image: {
  19651. source: "./media/characters/dharsi/front.svg",
  19652. extra: 716 / 630,
  19653. bottom: 0.035
  19654. }
  19655. },
  19656. },
  19657. [
  19658. {
  19659. name: "Nano",
  19660. height: math.unit(100, "nm")
  19661. },
  19662. {
  19663. name: "Micro",
  19664. height: math.unit(2, "inches")
  19665. },
  19666. {
  19667. name: "Normal",
  19668. height: math.unit(5 + 10 / 12, "feet"),
  19669. default: true
  19670. },
  19671. {
  19672. name: "Macro",
  19673. height: math.unit(1000, "feet")
  19674. },
  19675. {
  19676. name: "Megamacro",
  19677. height: math.unit(10, "miles")
  19678. },
  19679. {
  19680. name: "Gigamacro",
  19681. height: math.unit(3000, "miles")
  19682. },
  19683. {
  19684. name: "Teramacro",
  19685. height: math.unit(500000, "miles")
  19686. },
  19687. {
  19688. name: "Teramacro+",
  19689. height: math.unit(30, "galaxies")
  19690. },
  19691. ]
  19692. ))
  19693. characterMakers.push(() => makeCharacter(
  19694. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19695. {
  19696. front: {
  19697. height: math.unit(6, "feet"),
  19698. weight: math.unit(150, "lb"),
  19699. name: "Front",
  19700. image: {
  19701. source: "./media/characters/deathy/front.svg",
  19702. extra: 1552 / 1463,
  19703. bottom: 0.025
  19704. }
  19705. },
  19706. side: {
  19707. height: math.unit(6, "feet"),
  19708. weight: math.unit(150, "lb"),
  19709. name: "Side",
  19710. image: {
  19711. source: "./media/characters/deathy/side.svg",
  19712. extra: 1604 / 1455,
  19713. bottom: 0.025
  19714. }
  19715. },
  19716. back: {
  19717. height: math.unit(6, "feet"),
  19718. weight: math.unit(150, "lb"),
  19719. name: "Back",
  19720. image: {
  19721. source: "./media/characters/deathy/back.svg",
  19722. extra: 1580 / 1463,
  19723. bottom: 0.005
  19724. }
  19725. },
  19726. },
  19727. [
  19728. {
  19729. name: "Micro",
  19730. height: math.unit(5, "millimeters")
  19731. },
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(6 + 5 / 12, "feet"),
  19735. default: true
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19741. {
  19742. front: {
  19743. height: math.unit(16, "feet"),
  19744. weight: math.unit(4000, "lb"),
  19745. name: "Front",
  19746. image: {
  19747. source: "./media/characters/juniper/front.svg",
  19748. bottom: 0.04
  19749. }
  19750. },
  19751. },
  19752. [
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(16, "feet"),
  19756. default: true
  19757. },
  19758. ]
  19759. ))
  19760. characterMakers.push(() => makeCharacter(
  19761. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19762. {
  19763. front: {
  19764. height: math.unit(6, "feet"),
  19765. weight: math.unit(150, "lb"),
  19766. name: "Front",
  19767. image: {
  19768. source: "./media/characters/hipster/front.svg",
  19769. extra: 1312 / 1209,
  19770. bottom: 0.025
  19771. }
  19772. },
  19773. back: {
  19774. height: math.unit(6, "feet"),
  19775. weight: math.unit(150, "lb"),
  19776. name: "Back",
  19777. image: {
  19778. source: "./media/characters/hipster/back.svg",
  19779. extra: 1281 / 1196,
  19780. bottom: 0.01
  19781. }
  19782. },
  19783. },
  19784. [
  19785. {
  19786. name: "Micro",
  19787. height: math.unit(1, "mm")
  19788. },
  19789. {
  19790. name: "Normal",
  19791. height: math.unit(4, "inches"),
  19792. default: true
  19793. },
  19794. {
  19795. name: "Macro",
  19796. height: math.unit(500, "feet")
  19797. },
  19798. {
  19799. name: "Megamacro",
  19800. height: math.unit(1000, "miles")
  19801. },
  19802. ]
  19803. ))
  19804. characterMakers.push(() => makeCharacter(
  19805. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19806. {
  19807. front: {
  19808. height: math.unit(6, "feet"),
  19809. weight: math.unit(150, "lb"),
  19810. name: "Front",
  19811. image: {
  19812. source: "./media/characters/tendirmuldr/front.svg",
  19813. extra: 1878 / 1772,
  19814. bottom: 0.015
  19815. }
  19816. },
  19817. },
  19818. [
  19819. {
  19820. name: "Megamacro",
  19821. height: math.unit(1500, "miles"),
  19822. default: true
  19823. },
  19824. ]
  19825. ))
  19826. characterMakers.push(() => makeCharacter(
  19827. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19828. {
  19829. front: {
  19830. height: math.unit(14, "feet"),
  19831. weight: math.unit(12000, "lb"),
  19832. name: "Front",
  19833. image: {
  19834. source: "./media/characters/mort/front.svg",
  19835. extra: 365 / 318,
  19836. bottom: 0.01
  19837. }
  19838. },
  19839. side: {
  19840. height: math.unit(14, "feet"),
  19841. weight: math.unit(12000, "lb"),
  19842. name: "Side",
  19843. image: {
  19844. source: "./media/characters/mort/side.svg",
  19845. extra: 365 / 318,
  19846. bottom: 0.052
  19847. },
  19848. default: true
  19849. },
  19850. back: {
  19851. height: math.unit(14, "feet"),
  19852. weight: math.unit(12000, "lb"),
  19853. name: "Back",
  19854. image: {
  19855. source: "./media/characters/mort/back.svg",
  19856. extra: 371 / 332,
  19857. bottom: 0.18
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Normal",
  19864. height: math.unit(14, "feet"),
  19865. default: true
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19871. {
  19872. front: {
  19873. height: math.unit(8, "feet"),
  19874. weight: math.unit(1, "ton"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/lycoa/front.svg",
  19878. extra: 1875 / 1789,
  19879. bottom: 0.022
  19880. }
  19881. },
  19882. back: {
  19883. height: math.unit(8, "feet"),
  19884. weight: math.unit(1, "ton"),
  19885. name: "Back",
  19886. image: {
  19887. source: "./media/characters/lycoa/back.svg",
  19888. extra: 1835 / 1781,
  19889. bottom: 0.03
  19890. }
  19891. },
  19892. head: {
  19893. height: math.unit(2.1, "feet"),
  19894. name: "Head",
  19895. image: {
  19896. source: "./media/characters/lycoa/head.svg"
  19897. }
  19898. },
  19899. tailmaw: {
  19900. height: math.unit(1.9, "feet"),
  19901. name: "Tailmaw",
  19902. image: {
  19903. source: "./media/characters/lycoa/tailmaw.svg"
  19904. }
  19905. },
  19906. tentacles: {
  19907. height: math.unit(2.1, "feet"),
  19908. name: "Tentacles",
  19909. image: {
  19910. source: "./media/characters/lycoa/tentacles.svg"
  19911. }
  19912. },
  19913. dick: {
  19914. height: math.unit(1.73, "feet"),
  19915. name: "Dick",
  19916. image: {
  19917. source: "./media/characters/lycoa/dick.svg"
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Normal",
  19924. height: math.unit(8, "feet"),
  19925. default: true
  19926. },
  19927. {
  19928. name: "Macro",
  19929. height: math.unit(30, "feet")
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19935. {
  19936. front: {
  19937. height: math.unit(4 + 2 / 12, "feet"),
  19938. weight: math.unit(70, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/naldara/front.svg",
  19942. extra: 841 / 720,
  19943. bottom: 0.04
  19944. }
  19945. },
  19946. naga: {
  19947. height: math.unit(23, "feet"),
  19948. weight: math.unit(15000, "kg"),
  19949. name: "Naga",
  19950. image: {
  19951. source: "./media/characters/naldara/naga.svg",
  19952. extra: 3290 / 2959,
  19953. bottom: 124 / 3432
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Normal",
  19960. height: math.unit(4 + 2 / 12, "feet"),
  19961. default: true
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19967. {
  19968. front: {
  19969. height: math.unit(13 + 7 / 12, "feet"),
  19970. weight: math.unit(1500, "lb"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/briar/front.svg",
  19974. extra: 626 / 596,
  19975. bottom: 0.08
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(13 + 7 / 12, "feet"),
  19983. default: true
  19984. },
  19985. ]
  19986. ))
  19987. characterMakers.push(() => makeCharacter(
  19988. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19989. {
  19990. side: {
  19991. height: math.unit(10, "feet"),
  19992. weight: math.unit(500, "lb"),
  19993. name: "Side",
  19994. image: {
  19995. source: "./media/characters/vanguard/side.svg",
  19996. extra: 502 / 425,
  19997. bottom: 0.087
  19998. }
  19999. },
  20000. },
  20001. [
  20002. {
  20003. name: "Normal",
  20004. height: math.unit(10, "feet"),
  20005. default: true
  20006. },
  20007. ]
  20008. ))
  20009. characterMakers.push(() => makeCharacter(
  20010. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20011. {
  20012. front: {
  20013. height: math.unit(7.5, "feet"),
  20014. weight: math.unit(2, "lb"),
  20015. name: "Front",
  20016. image: {
  20017. source: "./media/characters/artemis/front.svg",
  20018. extra: 1192 / 1075,
  20019. bottom: 0.07
  20020. }
  20021. },
  20022. frontNsfw: {
  20023. height: math.unit(7.5, "feet"),
  20024. weight: math.unit(2, "lb"),
  20025. name: "Front (NSFW)",
  20026. image: {
  20027. source: "./media/characters/artemis/front-nsfw.svg",
  20028. extra: 1192 / 1075,
  20029. bottom: 0.07
  20030. }
  20031. },
  20032. frontNsfwer: {
  20033. height: math.unit(7.5, "feet"),
  20034. weight: math.unit(2, "lb"),
  20035. name: "Front (NSFW-er)",
  20036. image: {
  20037. source: "./media/characters/artemis/front-nsfwer.svg",
  20038. extra: 1192 / 1075,
  20039. bottom: 0.07
  20040. }
  20041. },
  20042. side: {
  20043. height: math.unit(7.5, "feet"),
  20044. weight: math.unit(2, "lb"),
  20045. name: "Side",
  20046. image: {
  20047. source: "./media/characters/artemis/side.svg",
  20048. extra: 1192 / 1075,
  20049. bottom: 0.07
  20050. }
  20051. },
  20052. sideNsfw: {
  20053. height: math.unit(7.5, "feet"),
  20054. weight: math.unit(2, "lb"),
  20055. name: "Side (NSFW)",
  20056. image: {
  20057. source: "./media/characters/artemis/side-nsfw.svg",
  20058. extra: 1192 / 1075,
  20059. bottom: 0.07
  20060. }
  20061. },
  20062. sideNsfwer: {
  20063. height: math.unit(7.5, "feet"),
  20064. weight: math.unit(2, "lb"),
  20065. name: "Side (NSFW-er)",
  20066. image: {
  20067. source: "./media/characters/artemis/side-nsfwer.svg",
  20068. extra: 1192 / 1075,
  20069. bottom: 0.07
  20070. }
  20071. },
  20072. maw: {
  20073. height: math.unit(1.1, "feet"),
  20074. name: "Maw",
  20075. image: {
  20076. source: "./media/characters/artemis/maw.svg"
  20077. }
  20078. },
  20079. stomach: {
  20080. height: math.unit(0.95, "feet"),
  20081. name: "Stomach",
  20082. image: {
  20083. source: "./media/characters/artemis/stomach.svg"
  20084. }
  20085. },
  20086. dickCanine: {
  20087. height: math.unit(1, "feet"),
  20088. name: "Dick (Canine)",
  20089. image: {
  20090. source: "./media/characters/artemis/dick-canine.svg"
  20091. }
  20092. },
  20093. dickEquine: {
  20094. height: math.unit(0.85, "feet"),
  20095. name: "Dick (Equine)",
  20096. image: {
  20097. source: "./media/characters/artemis/dick-equine.svg"
  20098. }
  20099. },
  20100. dickExotic: {
  20101. height: math.unit(0.85, "feet"),
  20102. name: "Dick (Exotic)",
  20103. image: {
  20104. source: "./media/characters/artemis/dick-exotic.svg"
  20105. }
  20106. },
  20107. },
  20108. [
  20109. {
  20110. name: "Normal",
  20111. height: math.unit(7.5, "feet"),
  20112. default: true
  20113. },
  20114. {
  20115. name: "Enlarged",
  20116. height: math.unit(12, "feet")
  20117. },
  20118. ]
  20119. ))
  20120. characterMakers.push(() => makeCharacter(
  20121. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20122. {
  20123. front: {
  20124. height: math.unit(5 + 3 / 12, "feet"),
  20125. weight: math.unit(160, "lb"),
  20126. name: "Front",
  20127. image: {
  20128. source: "./media/characters/kira/front.svg",
  20129. extra: 906 / 786,
  20130. bottom: 0.01
  20131. }
  20132. },
  20133. back: {
  20134. height: math.unit(5 + 3 / 12, "feet"),
  20135. weight: math.unit(160, "lb"),
  20136. name: "Back",
  20137. image: {
  20138. source: "./media/characters/kira/back.svg",
  20139. extra: 882 / 757,
  20140. bottom: 0.005
  20141. }
  20142. },
  20143. frontDressed: {
  20144. height: math.unit(5 + 3 / 12, "feet"),
  20145. weight: math.unit(160, "lb"),
  20146. name: "Front (Dressed)",
  20147. image: {
  20148. source: "./media/characters/kira/front-dressed.svg",
  20149. extra: 906 / 786,
  20150. bottom: 0.01
  20151. }
  20152. },
  20153. beans: {
  20154. height: math.unit(0.92, "feet"),
  20155. name: "Beans",
  20156. image: {
  20157. source: "./media/characters/kira/beans.svg"
  20158. }
  20159. },
  20160. },
  20161. [
  20162. {
  20163. name: "Normal",
  20164. height: math.unit(5 + 3 / 12, "feet"),
  20165. default: true
  20166. },
  20167. ]
  20168. ))
  20169. characterMakers.push(() => makeCharacter(
  20170. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20171. {
  20172. front: {
  20173. height: math.unit(5 + 4 / 12, "feet"),
  20174. weight: math.unit(145, "lb"),
  20175. name: "Front",
  20176. image: {
  20177. source: "./media/characters/scramble/front.svg",
  20178. extra: 763 / 727,
  20179. bottom: 0.05
  20180. }
  20181. },
  20182. back: {
  20183. height: math.unit(5 + 4 / 12, "feet"),
  20184. weight: math.unit(145, "lb"),
  20185. name: "Back",
  20186. image: {
  20187. source: "./media/characters/scramble/back.svg",
  20188. extra: 826 / 737,
  20189. bottom: 0.002
  20190. }
  20191. },
  20192. },
  20193. [
  20194. {
  20195. name: "Normal",
  20196. height: math.unit(5 + 4 / 12, "feet"),
  20197. default: true
  20198. },
  20199. ]
  20200. ))
  20201. characterMakers.push(() => makeCharacter(
  20202. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20203. {
  20204. side: {
  20205. height: math.unit(6 + 2 / 12, "feet"),
  20206. weight: math.unit(190, "lb"),
  20207. name: "Side",
  20208. image: {
  20209. source: "./media/characters/biscuit/side.svg",
  20210. extra: 858 / 791,
  20211. bottom: 0.044
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(6 + 2 / 12, "feet"),
  20219. default: true
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20225. {
  20226. front: {
  20227. height: math.unit(5 + 2 / 12, "feet"),
  20228. weight: math.unit(120, "lb"),
  20229. name: "Front",
  20230. image: {
  20231. source: "./media/characters/poffin/front.svg",
  20232. extra: 786 / 680,
  20233. bottom: 0.005
  20234. }
  20235. },
  20236. },
  20237. [
  20238. {
  20239. name: "Normal",
  20240. height: math.unit(5 + 2 / 12, "feet"),
  20241. default: true
  20242. },
  20243. ]
  20244. ))
  20245. characterMakers.push(() => makeCharacter(
  20246. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20247. {
  20248. front: {
  20249. height: math.unit(6 + 3 / 12, "feet"),
  20250. weight: math.unit(519, "lb"),
  20251. name: "Front",
  20252. image: {
  20253. source: "./media/characters/dhari/front.svg",
  20254. extra: 1048 / 946,
  20255. bottom: 0.015
  20256. }
  20257. },
  20258. back: {
  20259. height: math.unit(6 + 3 / 12, "feet"),
  20260. weight: math.unit(519, "lb"),
  20261. name: "Back",
  20262. image: {
  20263. source: "./media/characters/dhari/back.svg",
  20264. extra: 1048 / 931,
  20265. bottom: 0.005
  20266. }
  20267. },
  20268. frontDressed: {
  20269. height: math.unit(6 + 3 / 12, "feet"),
  20270. weight: math.unit(519, "lb"),
  20271. name: "Front (Dressed)",
  20272. image: {
  20273. source: "./media/characters/dhari/front-dressed.svg",
  20274. extra: 1713 / 1546,
  20275. bottom: 0.02
  20276. }
  20277. },
  20278. backDressed: {
  20279. height: math.unit(6 + 3 / 12, "feet"),
  20280. weight: math.unit(519, "lb"),
  20281. name: "Back (Dressed)",
  20282. image: {
  20283. source: "./media/characters/dhari/back-dressed.svg",
  20284. extra: 1699 / 1537,
  20285. bottom: 0.01
  20286. }
  20287. },
  20288. maw: {
  20289. height: math.unit(0.95, "feet"),
  20290. name: "Maw",
  20291. image: {
  20292. source: "./media/characters/dhari/maw.svg"
  20293. }
  20294. },
  20295. wereFront: {
  20296. height: math.unit(12 + 8 / 12, "feet"),
  20297. weight: math.unit(4000, "lb"),
  20298. name: "Front (Were)",
  20299. image: {
  20300. source: "./media/characters/dhari/were-front.svg",
  20301. extra: 1065 / 969,
  20302. bottom: 0.015
  20303. }
  20304. },
  20305. wereBack: {
  20306. height: math.unit(12 + 8 / 12, "feet"),
  20307. weight: math.unit(4000, "lb"),
  20308. name: "Back (Were)",
  20309. image: {
  20310. source: "./media/characters/dhari/were-back.svg",
  20311. extra: 1065 / 969,
  20312. bottom: 0.012
  20313. }
  20314. },
  20315. wereMaw: {
  20316. height: math.unit(0.625, "meters"),
  20317. name: "Maw (Were)",
  20318. image: {
  20319. source: "./media/characters/dhari/were-maw.svg"
  20320. }
  20321. },
  20322. },
  20323. [
  20324. {
  20325. name: "Normal",
  20326. height: math.unit(6 + 3 / 12, "feet"),
  20327. default: true
  20328. },
  20329. ]
  20330. ))
  20331. characterMakers.push(() => makeCharacter(
  20332. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20333. {
  20334. anthro: {
  20335. height: math.unit(5 + 7 / 12, "feet"),
  20336. weight: math.unit(175, "lb"),
  20337. name: "Anthro",
  20338. image: {
  20339. source: "./media/characters/rena-dyne/anthro.svg",
  20340. extra: 1849 / 1785,
  20341. bottom: 0.005
  20342. }
  20343. },
  20344. taur: {
  20345. height: math.unit(15 + 6 / 12, "feet"),
  20346. weight: math.unit(8000, "lb"),
  20347. name: "Taur",
  20348. image: {
  20349. source: "./media/characters/rena-dyne/taur.svg",
  20350. extra: 2315 / 2234,
  20351. bottom: 0.033
  20352. }
  20353. },
  20354. },
  20355. [
  20356. {
  20357. name: "Normal",
  20358. height: math.unit(5 + 7 / 12, "feet"),
  20359. default: true
  20360. },
  20361. ]
  20362. ))
  20363. characterMakers.push(() => makeCharacter(
  20364. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20365. {
  20366. front: {
  20367. height: math.unit(8, "feet"),
  20368. weight: math.unit(600, "lb"),
  20369. name: "Front",
  20370. image: {
  20371. source: "./media/characters/weremeep/front.svg",
  20372. extra: 967 / 862,
  20373. bottom: 0.01
  20374. }
  20375. },
  20376. },
  20377. [
  20378. {
  20379. name: "Normal",
  20380. height: math.unit(8, "feet"),
  20381. default: true
  20382. },
  20383. {
  20384. name: "Lorg",
  20385. height: math.unit(12, "feet")
  20386. },
  20387. {
  20388. name: "Oh Lawd She Comin'",
  20389. height: math.unit(20, "feet")
  20390. },
  20391. ]
  20392. ))
  20393. characterMakers.push(() => makeCharacter(
  20394. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20395. {
  20396. front: {
  20397. height: math.unit(4, "feet"),
  20398. weight: math.unit(90, "lb"),
  20399. name: "Front",
  20400. image: {
  20401. source: "./media/characters/reza/front.svg",
  20402. extra: 1183 / 1111,
  20403. bottom: 0.017
  20404. }
  20405. },
  20406. back: {
  20407. height: math.unit(4, "feet"),
  20408. weight: math.unit(90, "lb"),
  20409. name: "Back",
  20410. image: {
  20411. source: "./media/characters/reza/back.svg",
  20412. extra: 1183 / 1111,
  20413. bottom: 0.01
  20414. }
  20415. },
  20416. drake: {
  20417. height: math.unit(30, "feet"),
  20418. weight: math.unit(246960, "lb"),
  20419. name: "Drake",
  20420. image: {
  20421. source: "./media/characters/reza/drake.svg",
  20422. extra: 2350 / 2024,
  20423. bottom: 60.7 / 2403
  20424. }
  20425. },
  20426. },
  20427. [
  20428. {
  20429. name: "Normal",
  20430. height: math.unit(4, "feet"),
  20431. default: true
  20432. },
  20433. ]
  20434. ))
  20435. characterMakers.push(() => makeCharacter(
  20436. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20437. {
  20438. side: {
  20439. height: math.unit(15, "feet"),
  20440. weight: math.unit(14, "tons"),
  20441. name: "Side",
  20442. image: {
  20443. source: "./media/characters/athea/side.svg",
  20444. extra: 960 / 540,
  20445. bottom: 0.003
  20446. }
  20447. },
  20448. sitting: {
  20449. height: math.unit(6 * 2.85, "feet"),
  20450. weight: math.unit(14, "tons"),
  20451. name: "Sitting",
  20452. image: {
  20453. source: "./media/characters/athea/sitting.svg",
  20454. extra: 621 / 581,
  20455. bottom: 0.075
  20456. }
  20457. },
  20458. maw: {
  20459. height: math.unit(7.59498031496063, "feet"),
  20460. name: "Maw",
  20461. image: {
  20462. source: "./media/characters/athea/maw.svg"
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Lap Cat",
  20469. height: math.unit(2.5, "feet")
  20470. },
  20471. {
  20472. name: "Minimacro",
  20473. height: math.unit(15, "feet"),
  20474. default: true
  20475. },
  20476. {
  20477. name: "Macro",
  20478. height: math.unit(120, "feet")
  20479. },
  20480. {
  20481. name: "Macro+",
  20482. height: math.unit(640, "feet")
  20483. },
  20484. {
  20485. name: "Colossus",
  20486. height: math.unit(2.2, "miles")
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20492. {
  20493. front: {
  20494. height: math.unit(8 + 8 / 12, "feet"),
  20495. weight: math.unit(130, "kg"),
  20496. name: "Front",
  20497. image: {
  20498. source: "./media/characters/seroko/front.svg",
  20499. extra: 1385 / 1280,
  20500. bottom: 0.025
  20501. }
  20502. },
  20503. back: {
  20504. height: math.unit(8 + 8 / 12, "feet"),
  20505. weight: math.unit(130, "kg"),
  20506. name: "Back",
  20507. image: {
  20508. source: "./media/characters/seroko/back.svg",
  20509. extra: 1369 / 1238,
  20510. bottom: 0.018
  20511. }
  20512. },
  20513. frontDressed: {
  20514. height: math.unit(8 + 8 / 12, "feet"),
  20515. weight: math.unit(130, "kg"),
  20516. name: "Front (Dressed)",
  20517. image: {
  20518. source: "./media/characters/seroko/front-dressed.svg",
  20519. extra: 1366 / 1275,
  20520. bottom: 0.03
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Normal",
  20527. height: math.unit(8 + 8 / 12, "feet"),
  20528. default: true
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20534. {
  20535. front: {
  20536. height: math.unit(5.5, "feet"),
  20537. weight: math.unit(160, "lb"),
  20538. name: "Front",
  20539. image: {
  20540. source: "./media/characters/quatzi/front.svg",
  20541. extra: 2346 / 2242,
  20542. bottom: 0.015
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Normal",
  20549. height: math.unit(5.5, "feet"),
  20550. default: true
  20551. },
  20552. {
  20553. name: "Big",
  20554. height: math.unit(7.7, "feet")
  20555. },
  20556. ]
  20557. ))
  20558. characterMakers.push(() => makeCharacter(
  20559. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20560. {
  20561. front: {
  20562. height: math.unit(5 + 11 / 12, "feet"),
  20563. weight: math.unit(180, "lb"),
  20564. name: "Front",
  20565. image: {
  20566. source: "./media/characters/sen/front.svg",
  20567. extra: 1321 / 1254,
  20568. bottom: 0.015
  20569. }
  20570. },
  20571. side: {
  20572. height: math.unit(5 + 11 / 12, "feet"),
  20573. weight: math.unit(180, "lb"),
  20574. name: "Side",
  20575. image: {
  20576. source: "./media/characters/sen/side.svg",
  20577. extra: 1321 / 1254,
  20578. bottom: 0.007
  20579. }
  20580. },
  20581. back: {
  20582. height: math.unit(5 + 11 / 12, "feet"),
  20583. weight: math.unit(180, "lb"),
  20584. name: "Back",
  20585. image: {
  20586. source: "./media/characters/sen/back.svg",
  20587. extra: 1321 / 1254
  20588. }
  20589. },
  20590. },
  20591. [
  20592. {
  20593. name: "Normal",
  20594. height: math.unit(5 + 11 / 12, "feet"),
  20595. default: true
  20596. },
  20597. ]
  20598. ))
  20599. characterMakers.push(() => makeCharacter(
  20600. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20601. {
  20602. front: {
  20603. height: math.unit(166.6, "cm"),
  20604. weight: math.unit(66.6, "kg"),
  20605. name: "Front",
  20606. image: {
  20607. source: "./media/characters/fruity/front.svg",
  20608. extra: 1510 / 1386,
  20609. bottom: 0.04
  20610. }
  20611. },
  20612. back: {
  20613. height: math.unit(166.6, "cm"),
  20614. weight: math.unit(66.6, "lb"),
  20615. name: "Back",
  20616. image: {
  20617. source: "./media/characters/fruity/back.svg",
  20618. extra: 1563 / 1435,
  20619. bottom: 0.005
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(166.6, "cm"),
  20627. default: true
  20628. },
  20629. {
  20630. name: "Demonic",
  20631. height: math.unit(166.6, "feet")
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20637. {
  20638. side: {
  20639. height: math.unit(10, "feet"),
  20640. weight: math.unit(500, "lb"),
  20641. name: "Side",
  20642. image: {
  20643. source: "./media/characters/zost/side.svg",
  20644. extra: 966 / 880,
  20645. bottom: 0.075
  20646. }
  20647. },
  20648. mawFront: {
  20649. height: math.unit(1.08, "meters"),
  20650. name: "Maw (Front)",
  20651. image: {
  20652. source: "./media/characters/zost/maw-front.svg"
  20653. }
  20654. },
  20655. mawSide: {
  20656. height: math.unit(2.66, "feet"),
  20657. name: "Maw (Side)",
  20658. image: {
  20659. source: "./media/characters/zost/maw-side.svg"
  20660. }
  20661. },
  20662. },
  20663. [
  20664. {
  20665. name: "Normal",
  20666. height: math.unit(10, "feet"),
  20667. default: true
  20668. },
  20669. ]
  20670. ))
  20671. characterMakers.push(() => makeCharacter(
  20672. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20673. {
  20674. front: {
  20675. height: math.unit(5 + 4 / 12, "feet"),
  20676. weight: math.unit(120, "lb"),
  20677. name: "Front",
  20678. image: {
  20679. source: "./media/characters/luci/front.svg",
  20680. extra: 1985 / 1884,
  20681. bottom: 0.04
  20682. }
  20683. },
  20684. back: {
  20685. height: math.unit(5 + 4 / 12, "feet"),
  20686. weight: math.unit(120, "lb"),
  20687. name: "Back",
  20688. image: {
  20689. source: "./media/characters/luci/back.svg",
  20690. extra: 1892 / 1791,
  20691. bottom: 0.002
  20692. }
  20693. },
  20694. },
  20695. [
  20696. {
  20697. name: "Normal",
  20698. height: math.unit(5 + 4 / 12, "feet"),
  20699. default: true
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20705. {
  20706. front: {
  20707. height: math.unit(1500, "feet"),
  20708. weight: math.unit(3.8e6, "tons"),
  20709. name: "Front",
  20710. image: {
  20711. source: "./media/characters/2th/front.svg",
  20712. extra: 3489 / 3350,
  20713. bottom: 0.1
  20714. }
  20715. },
  20716. foot: {
  20717. height: math.unit(461, "feet"),
  20718. name: "Foot",
  20719. image: {
  20720. source: "./media/characters/2th/foot.svg"
  20721. }
  20722. },
  20723. },
  20724. [
  20725. {
  20726. name: "\"Micro\"",
  20727. height: math.unit(15 + 7 / 12, "feet")
  20728. },
  20729. {
  20730. name: "Normal",
  20731. height: math.unit(1500, "feet"),
  20732. default: true
  20733. },
  20734. {
  20735. name: "Macro",
  20736. height: math.unit(5000, "feet")
  20737. },
  20738. {
  20739. name: "Megamacro",
  20740. height: math.unit(15, "miles")
  20741. },
  20742. {
  20743. name: "Gigamacro",
  20744. height: math.unit(4000, "miles")
  20745. },
  20746. {
  20747. name: "Galactic",
  20748. height: math.unit(50, "AU")
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20754. {
  20755. front: {
  20756. height: math.unit(5 + 6 / 12, "feet"),
  20757. weight: math.unit(220, "lb"),
  20758. name: "Front",
  20759. image: {
  20760. source: "./media/characters/amethyst/front.svg",
  20761. extra: 2078 / 2040,
  20762. bottom: 0.045
  20763. }
  20764. },
  20765. back: {
  20766. height: math.unit(5 + 6 / 12, "feet"),
  20767. weight: math.unit(220, "lb"),
  20768. name: "Back",
  20769. image: {
  20770. source: "./media/characters/amethyst/back.svg",
  20771. extra: 2021 / 1989,
  20772. bottom: 0.02
  20773. }
  20774. },
  20775. },
  20776. [
  20777. {
  20778. name: "Normal",
  20779. height: math.unit(5 + 6 / 12, "feet"),
  20780. default: true
  20781. },
  20782. ]
  20783. ))
  20784. characterMakers.push(() => makeCharacter(
  20785. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20786. {
  20787. front: {
  20788. height: math.unit(4 + 11 / 12, "feet"),
  20789. weight: math.unit(120, "lb"),
  20790. name: "Front",
  20791. image: {
  20792. source: "./media/characters/yumi-akiyama/front.svg",
  20793. extra: 1327 / 1235,
  20794. bottom: 0.02
  20795. }
  20796. },
  20797. back: {
  20798. height: math.unit(4 + 11 / 12, "feet"),
  20799. weight: math.unit(120, "lb"),
  20800. name: "Back",
  20801. image: {
  20802. source: "./media/characters/yumi-akiyama/back.svg",
  20803. extra: 1287 / 1245,
  20804. bottom: 0.002
  20805. }
  20806. },
  20807. },
  20808. [
  20809. {
  20810. name: "Galactic",
  20811. height: math.unit(50, "galaxies"),
  20812. default: true
  20813. },
  20814. {
  20815. name: "Universal",
  20816. height: math.unit(100, "universes")
  20817. },
  20818. ]
  20819. ))
  20820. characterMakers.push(() => makeCharacter(
  20821. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20822. {
  20823. front: {
  20824. height: math.unit(8, "feet"),
  20825. weight: math.unit(500, "lb"),
  20826. name: "Front",
  20827. image: {
  20828. source: "./media/characters/rifter-yrmori/front.svg",
  20829. extra: 1180 / 1125,
  20830. bottom: 0.02
  20831. }
  20832. },
  20833. back: {
  20834. height: math.unit(8, "feet"),
  20835. weight: math.unit(500, "lb"),
  20836. name: "Back",
  20837. image: {
  20838. source: "./media/characters/rifter-yrmori/back.svg",
  20839. extra: 1190 / 1145,
  20840. bottom: 0.001
  20841. }
  20842. },
  20843. wings: {
  20844. height: math.unit(7.75, "feet"),
  20845. weight: math.unit(500, "lb"),
  20846. name: "Wings",
  20847. image: {
  20848. source: "./media/characters/rifter-yrmori/wings.svg",
  20849. extra: 1357 / 1285
  20850. }
  20851. },
  20852. maw: {
  20853. height: math.unit(0.8, "feet"),
  20854. name: "Maw",
  20855. image: {
  20856. source: "./media/characters/rifter-yrmori/maw.svg"
  20857. }
  20858. },
  20859. mawfront: {
  20860. height: math.unit(1.45, "feet"),
  20861. name: "Maw (Front)",
  20862. image: {
  20863. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20864. }
  20865. },
  20866. },
  20867. [
  20868. {
  20869. name: "Normal",
  20870. height: math.unit(8, "feet"),
  20871. default: true
  20872. },
  20873. {
  20874. name: "Macro",
  20875. height: math.unit(42, "meters")
  20876. },
  20877. ]
  20878. ))
  20879. characterMakers.push(() => makeCharacter(
  20880. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20881. {
  20882. were: {
  20883. height: math.unit(25 + 6 / 12, "feet"),
  20884. weight: math.unit(10000, "lb"),
  20885. name: "Were",
  20886. image: {
  20887. source: "./media/characters/tahajin/were.svg",
  20888. extra: 801 / 770,
  20889. bottom: 0.042
  20890. }
  20891. },
  20892. aquatic: {
  20893. height: math.unit(6 + 4 / 12, "feet"),
  20894. weight: math.unit(160, "lb"),
  20895. name: "Aquatic",
  20896. image: {
  20897. source: "./media/characters/tahajin/aquatic.svg",
  20898. extra: 572 / 542,
  20899. bottom: 0.04
  20900. }
  20901. },
  20902. chow: {
  20903. height: math.unit(8 + 11 / 12, "feet"),
  20904. weight: math.unit(450, "lb"),
  20905. name: "Chow",
  20906. image: {
  20907. source: "./media/characters/tahajin/chow.svg",
  20908. extra: 660 / 640,
  20909. bottom: 0.015
  20910. }
  20911. },
  20912. demiNaga: {
  20913. height: math.unit(6 + 8 / 12, "feet"),
  20914. weight: math.unit(300, "lb"),
  20915. name: "Demi Naga",
  20916. image: {
  20917. source: "./media/characters/tahajin/demi-naga.svg",
  20918. extra: 643 / 615,
  20919. bottom: 0.1
  20920. }
  20921. },
  20922. data: {
  20923. height: math.unit(5, "inches"),
  20924. weight: math.unit(0.1, "lb"),
  20925. name: "Data",
  20926. image: {
  20927. source: "./media/characters/tahajin/data.svg"
  20928. }
  20929. },
  20930. fluu: {
  20931. height: math.unit(5 + 7 / 12, "feet"),
  20932. weight: math.unit(140, "lb"),
  20933. name: "Fluu",
  20934. image: {
  20935. source: "./media/characters/tahajin/fluu.svg",
  20936. extra: 628 / 592,
  20937. bottom: 0.02
  20938. }
  20939. },
  20940. starWarrior: {
  20941. height: math.unit(4 + 5 / 12, "feet"),
  20942. weight: math.unit(50, "lb"),
  20943. name: "Star Warrior",
  20944. image: {
  20945. source: "./media/characters/tahajin/star-warrior.svg"
  20946. }
  20947. },
  20948. },
  20949. [
  20950. {
  20951. name: "Normal",
  20952. height: math.unit(25 + 6 / 12, "feet"),
  20953. default: true
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20959. {
  20960. front: {
  20961. height: math.unit(8, "feet"),
  20962. weight: math.unit(350, "lb"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/gabira/front.svg",
  20966. extra: 608 / 580,
  20967. bottom: 0.03
  20968. }
  20969. },
  20970. back: {
  20971. height: math.unit(8, "feet"),
  20972. weight: math.unit(350, "lb"),
  20973. name: "Back",
  20974. image: {
  20975. source: "./media/characters/gabira/back.svg",
  20976. extra: 608 / 580,
  20977. bottom: 0.03
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(8, "feet"),
  20985. default: true
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20991. {
  20992. front: {
  20993. height: math.unit(5 + 3 / 12, "feet"),
  20994. weight: math.unit(137, "lb"),
  20995. name: "Front",
  20996. image: {
  20997. source: "./media/characters/sasha-katraine/front.svg",
  20998. bottom: 0.045
  20999. }
  21000. },
  21001. },
  21002. [
  21003. {
  21004. name: "Micro",
  21005. height: math.unit(5, "inches")
  21006. },
  21007. {
  21008. name: "Normal",
  21009. height: math.unit(5 + 3 / 12, "feet"),
  21010. default: true
  21011. },
  21012. ]
  21013. ))
  21014. characterMakers.push(() => makeCharacter(
  21015. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21016. {
  21017. side: {
  21018. height: math.unit(4, "inches"),
  21019. weight: math.unit(200, "grams"),
  21020. name: "Side",
  21021. image: {
  21022. source: "./media/characters/der/side.svg",
  21023. extra: 719 / 400,
  21024. bottom: 30.6 / 749.9187
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Micro",
  21031. height: math.unit(4, "inches"),
  21032. default: true
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21038. {
  21039. side: {
  21040. height: math.unit(30, "meters"),
  21041. weight: math.unit(700, "tonnes"),
  21042. name: "Side",
  21043. image: {
  21044. source: "./media/characters/fixerdragon/side.svg",
  21045. extra: (1293.0514 - 116.03) / 1106.86,
  21046. bottom: 116.03 / 1293.0514
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Planck",
  21053. height: math.unit(1.6e-35, "meters")
  21054. },
  21055. {
  21056. name: "Micro",
  21057. height: math.unit(0.4, "meters")
  21058. },
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(30, "meters"),
  21062. default: true
  21063. },
  21064. {
  21065. name: "Megamacro",
  21066. height: math.unit(1.2, "megameters")
  21067. },
  21068. {
  21069. name: "Teramacro",
  21070. height: math.unit(130, "terameters")
  21071. },
  21072. {
  21073. name: "Yottamacro",
  21074. height: math.unit(6200, "yottameters")
  21075. },
  21076. ]
  21077. ));
  21078. characterMakers.push(() => makeCharacter(
  21079. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21080. {
  21081. front: {
  21082. height: math.unit(8, "feet"),
  21083. weight: math.unit(250, "lb"),
  21084. name: "Front",
  21085. image: {
  21086. source: "./media/characters/kite/front.svg",
  21087. extra: 2796 / 2659,
  21088. bottom: 0.002
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Normal",
  21095. height: math.unit(8, "feet"),
  21096. default: true
  21097. },
  21098. {
  21099. name: "Macro",
  21100. height: math.unit(360, "feet")
  21101. },
  21102. {
  21103. name: "Megamacro",
  21104. height: math.unit(1500, "feet")
  21105. },
  21106. ]
  21107. ))
  21108. characterMakers.push(() => makeCharacter(
  21109. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21110. {
  21111. front: {
  21112. height: math.unit(5 + 10 / 12, "feet"),
  21113. weight: math.unit(150, "lb"),
  21114. name: "Front",
  21115. image: {
  21116. source: "./media/characters/poojawa-vynar/front.svg",
  21117. extra: (1506.1547 - 55) / 1356.6,
  21118. bottom: 55 / 1506.1547
  21119. }
  21120. },
  21121. frontTailless: {
  21122. height: math.unit(5 + 10 / 12, "feet"),
  21123. weight: math.unit(150, "lb"),
  21124. name: "Front (Tailless)",
  21125. image: {
  21126. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21127. extra: (1506.1547 - 55) / 1356.6,
  21128. bottom: 55 / 1506.1547
  21129. }
  21130. },
  21131. },
  21132. [
  21133. {
  21134. name: "Normal",
  21135. height: math.unit(5 + 10 / 12, "feet"),
  21136. default: true
  21137. },
  21138. ]
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21142. {
  21143. front: {
  21144. height: math.unit(293, "meters"),
  21145. weight: math.unit(70400, "tons"),
  21146. name: "Front",
  21147. image: {
  21148. source: "./media/characters/violette/front.svg",
  21149. extra: 1227 / 1180,
  21150. bottom: 0.005
  21151. }
  21152. },
  21153. back: {
  21154. height: math.unit(293, "meters"),
  21155. weight: math.unit(70400, "tons"),
  21156. name: "Back",
  21157. image: {
  21158. source: "./media/characters/violette/back.svg",
  21159. extra: 1227 / 1180,
  21160. bottom: 0.005
  21161. }
  21162. },
  21163. },
  21164. [
  21165. {
  21166. name: "Macro",
  21167. height: math.unit(293, "meters"),
  21168. default: true
  21169. },
  21170. ]
  21171. ))
  21172. characterMakers.push(() => makeCharacter(
  21173. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21174. {
  21175. front: {
  21176. height: math.unit(1050, "feet"),
  21177. weight: math.unit(200000, "tons"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/alessandra/front.svg",
  21181. extra: 960 / 912,
  21182. bottom: 0.06
  21183. }
  21184. },
  21185. },
  21186. [
  21187. {
  21188. name: "Macro",
  21189. height: math.unit(1050, "feet")
  21190. },
  21191. {
  21192. name: "Macro+",
  21193. height: math.unit(900, "meters"),
  21194. default: true
  21195. },
  21196. ]
  21197. ))
  21198. characterMakers.push(() => makeCharacter(
  21199. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21200. {
  21201. front: {
  21202. height: math.unit(5, "feet"),
  21203. weight: math.unit(187, "lb"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/person/front.svg",
  21207. extra: 3087 / 2945,
  21208. bottom: 91 / 3181
  21209. }
  21210. },
  21211. },
  21212. [
  21213. {
  21214. name: "Micro",
  21215. height: math.unit(3, "inches")
  21216. },
  21217. {
  21218. name: "Normal",
  21219. height: math.unit(5, "feet"),
  21220. default: true
  21221. },
  21222. {
  21223. name: "Macro",
  21224. height: math.unit(90, "feet")
  21225. },
  21226. {
  21227. name: "Max Size",
  21228. height: math.unit(280, "feet")
  21229. },
  21230. ]
  21231. ))
  21232. characterMakers.push(() => makeCharacter(
  21233. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21234. {
  21235. front: {
  21236. height: math.unit(4.5, "meters"),
  21237. weight: math.unit(3200, "lb"),
  21238. name: "Front",
  21239. image: {
  21240. source: "./media/characters/ty/front.svg",
  21241. extra: 1038 / 960,
  21242. bottom: 31.156 / 1068
  21243. }
  21244. },
  21245. back: {
  21246. height: math.unit(4.5, "meters"),
  21247. weight: math.unit(3200, "lb"),
  21248. name: "Back",
  21249. image: {
  21250. source: "./media/characters/ty/back.svg",
  21251. extra: 1044 / 966,
  21252. bottom: 7.48 / 1049
  21253. }
  21254. },
  21255. },
  21256. [
  21257. {
  21258. name: "Normal",
  21259. height: math.unit(4.5, "meters"),
  21260. default: true
  21261. },
  21262. ]
  21263. ))
  21264. characterMakers.push(() => makeCharacter(
  21265. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21266. {
  21267. front: {
  21268. height: math.unit(5 + 4 / 12, "feet"),
  21269. weight: math.unit(115, "lb"),
  21270. name: "Front",
  21271. image: {
  21272. source: "./media/characters/rocky/front.svg",
  21273. extra: 1012 / 975,
  21274. bottom: 54 / 1066
  21275. }
  21276. },
  21277. },
  21278. [
  21279. {
  21280. name: "Normal",
  21281. height: math.unit(5 + 4 / 12, "feet"),
  21282. default: true
  21283. },
  21284. ]
  21285. ))
  21286. characterMakers.push(() => makeCharacter(
  21287. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21288. {
  21289. upright: {
  21290. height: math.unit(6, "meters"),
  21291. weight: math.unit(4000, "kg"),
  21292. name: "Upright",
  21293. image: {
  21294. source: "./media/characters/ruin/upright.svg",
  21295. extra: 668 / 661,
  21296. bottom: 42 / 799.8396
  21297. }
  21298. },
  21299. },
  21300. [
  21301. {
  21302. name: "Normal",
  21303. height: math.unit(6, "meters"),
  21304. default: true
  21305. },
  21306. ]
  21307. ))
  21308. characterMakers.push(() => makeCharacter(
  21309. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21310. {
  21311. front: {
  21312. height: math.unit(5, "feet"),
  21313. weight: math.unit(106, "lb"),
  21314. name: "Front",
  21315. image: {
  21316. source: "./media/characters/robin/front.svg",
  21317. extra: 862 / 799,
  21318. bottom: 42.4 / 914.8856
  21319. }
  21320. },
  21321. },
  21322. [
  21323. {
  21324. name: "Normal",
  21325. height: math.unit(5, "feet"),
  21326. default: true
  21327. },
  21328. ]
  21329. ))
  21330. characterMakers.push(() => makeCharacter(
  21331. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21332. {
  21333. side: {
  21334. height: math.unit(3, "feet"),
  21335. weight: math.unit(225, "lb"),
  21336. name: "Side",
  21337. image: {
  21338. source: "./media/characters/saian/side.svg",
  21339. extra: 566 / 356,
  21340. bottom: 79.7 / 643
  21341. }
  21342. },
  21343. maw: {
  21344. height: math.unit(2.85, "feet"),
  21345. name: "Maw",
  21346. image: {
  21347. source: "./media/characters/saian/maw.svg"
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "Normal",
  21354. height: math.unit(3, "feet"),
  21355. default: true
  21356. },
  21357. ]
  21358. ))
  21359. characterMakers.push(() => makeCharacter(
  21360. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21361. {
  21362. side: {
  21363. height: math.unit(8, "feet"),
  21364. weight: math.unit(300, "lb"),
  21365. name: "Side",
  21366. image: {
  21367. source: "./media/characters/equus-silvermane/side.svg",
  21368. extra: 2176 / 2050,
  21369. bottom: 65.7 / 2245
  21370. }
  21371. },
  21372. front: {
  21373. height: math.unit(8, "feet"),
  21374. weight: math.unit(300, "lb"),
  21375. name: "Front",
  21376. image: {
  21377. source: "./media/characters/equus-silvermane/front.svg",
  21378. extra: 4633 / 4400,
  21379. bottom: 71.3 / 4706.915
  21380. }
  21381. },
  21382. sideStepping: {
  21383. height: math.unit(8, "feet"),
  21384. weight: math.unit(300, "lb"),
  21385. name: "Side (Stepping)",
  21386. image: {
  21387. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21388. extra: 1968 / 1860,
  21389. bottom: 16.4 / 1989
  21390. }
  21391. },
  21392. },
  21393. [
  21394. {
  21395. name: "Normal",
  21396. height: math.unit(8, "feet")
  21397. },
  21398. {
  21399. name: "Minimacro",
  21400. height: math.unit(75, "feet"),
  21401. default: true
  21402. },
  21403. {
  21404. name: "Macro",
  21405. height: math.unit(150, "feet")
  21406. },
  21407. {
  21408. name: "Macro+",
  21409. height: math.unit(1000, "feet")
  21410. },
  21411. {
  21412. name: "Megamacro",
  21413. height: math.unit(1, "mile")
  21414. },
  21415. ]
  21416. ))
  21417. characterMakers.push(() => makeCharacter(
  21418. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21419. {
  21420. side: {
  21421. height: math.unit(20, "feet"),
  21422. weight: math.unit(30000, "kg"),
  21423. name: "Side",
  21424. image: {
  21425. source: "./media/characters/windar/side.svg",
  21426. extra: 1491 / 1248,
  21427. bottom: 82.56 / 1568
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(20, "feet"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21441. {
  21442. side: {
  21443. height: math.unit(15.66, "feet"),
  21444. weight: math.unit(150, "lb"),
  21445. name: "Side",
  21446. image: {
  21447. source: "./media/characters/melody/side.svg",
  21448. extra: 1097 / 944,
  21449. bottom: 11.8 / 1109
  21450. }
  21451. },
  21452. sideOutfit: {
  21453. height: math.unit(15.66, "feet"),
  21454. weight: math.unit(150, "lb"),
  21455. name: "Side (Outfit)",
  21456. image: {
  21457. source: "./media/characters/melody/side-outfit.svg",
  21458. extra: 1097 / 944,
  21459. bottom: 11.8 / 1109
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Normal",
  21466. height: math.unit(15.66, "feet"),
  21467. default: true
  21468. },
  21469. ]
  21470. ))
  21471. characterMakers.push(() => makeCharacter(
  21472. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21473. {
  21474. front: {
  21475. height: math.unit(8, "feet"),
  21476. weight: math.unit(325, "lb"),
  21477. name: "Front",
  21478. image: {
  21479. source: "./media/characters/windera/front.svg",
  21480. extra: 3180 / 2845,
  21481. bottom: 178 / 3365
  21482. }
  21483. },
  21484. },
  21485. [
  21486. {
  21487. name: "Normal",
  21488. height: math.unit(8, "feet"),
  21489. default: true
  21490. },
  21491. ]
  21492. ))
  21493. characterMakers.push(() => makeCharacter(
  21494. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21495. {
  21496. front: {
  21497. height: math.unit(28.75, "feet"),
  21498. weight: math.unit(2000, "kg"),
  21499. name: "Front",
  21500. image: {
  21501. source: "./media/characters/sonear/front.svg",
  21502. extra: 1041.1 / 964.9,
  21503. bottom: 53.7 / 1096.6
  21504. }
  21505. },
  21506. },
  21507. [
  21508. {
  21509. name: "Normal",
  21510. height: math.unit(28.75, "feet"),
  21511. default: true
  21512. },
  21513. ]
  21514. ))
  21515. characterMakers.push(() => makeCharacter(
  21516. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21517. {
  21518. side: {
  21519. height: math.unit(25.5, "feet"),
  21520. weight: math.unit(23000, "kg"),
  21521. name: "Side",
  21522. image: {
  21523. source: "./media/characters/kanara/side.svg"
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(25.5, "feet"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21537. {
  21538. side: {
  21539. height: math.unit(10, "feet"),
  21540. weight: math.unit(1000, "kg"),
  21541. name: "Side",
  21542. image: {
  21543. source: "./media/characters/ereus/side.svg",
  21544. extra: 1157 / 959,
  21545. bottom: 153 / 1312.5
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Normal",
  21552. height: math.unit(10, "feet"),
  21553. default: true
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21559. {
  21560. side: {
  21561. height: math.unit(4.5, "feet"),
  21562. weight: math.unit(500, "lb"),
  21563. name: "Side",
  21564. image: {
  21565. source: "./media/characters/e-ter/side.svg",
  21566. extra: 1550 / 1248,
  21567. bottom: 146 / 1694
  21568. }
  21569. },
  21570. },
  21571. [
  21572. {
  21573. name: "Normal",
  21574. height: math.unit(4.5, "feet"),
  21575. default: true
  21576. },
  21577. ]
  21578. ))
  21579. characterMakers.push(() => makeCharacter(
  21580. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21581. {
  21582. side: {
  21583. height: math.unit(9.7, "feet"),
  21584. weight: math.unit(4000, "kg"),
  21585. name: "Side",
  21586. image: {
  21587. source: "./media/characters/yamie/side.svg"
  21588. }
  21589. },
  21590. },
  21591. [
  21592. {
  21593. name: "Normal",
  21594. height: math.unit(9.7, "feet"),
  21595. default: true
  21596. },
  21597. ]
  21598. ))
  21599. characterMakers.push(() => makeCharacter(
  21600. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21601. {
  21602. front: {
  21603. height: math.unit(50, "feet"),
  21604. weight: math.unit(50000, "kg"),
  21605. name: "Front",
  21606. image: {
  21607. source: "./media/characters/anders/front.svg",
  21608. extra: 570 / 539,
  21609. bottom: 14.7 / 586.7
  21610. }
  21611. },
  21612. },
  21613. [
  21614. {
  21615. name: "Large",
  21616. height: math.unit(50, "feet")
  21617. },
  21618. {
  21619. name: "Macro",
  21620. height: math.unit(2000, "feet"),
  21621. default: true
  21622. },
  21623. {
  21624. name: "Megamacro",
  21625. height: math.unit(12, "miles")
  21626. },
  21627. ]
  21628. ))
  21629. characterMakers.push(() => makeCharacter(
  21630. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21631. {
  21632. front: {
  21633. height: math.unit(7 + 2 / 12, "feet"),
  21634. weight: math.unit(300, "lb"),
  21635. name: "Front",
  21636. image: {
  21637. source: "./media/characters/reban/front.svg",
  21638. extra: 516 / 487,
  21639. bottom: 42.82 / 558.356
  21640. }
  21641. },
  21642. dick: {
  21643. height: math.unit(7 / 5, "feet"),
  21644. name: "Dick",
  21645. image: {
  21646. source: "./media/characters/reban/dick.svg"
  21647. }
  21648. },
  21649. },
  21650. [
  21651. {
  21652. name: "Natural Height",
  21653. height: math.unit(7 + 2 / 12, "feet")
  21654. },
  21655. {
  21656. name: "Macro",
  21657. height: math.unit(500, "feet"),
  21658. default: true
  21659. },
  21660. {
  21661. name: "Canon Height",
  21662. height: math.unit(50, "AU")
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21668. {
  21669. front: {
  21670. height: math.unit(6, "feet"),
  21671. weight: math.unit(150, "lb"),
  21672. name: "Front",
  21673. image: {
  21674. source: "./media/characters/terrance-keayes/front.svg",
  21675. extra: 1.005,
  21676. bottom: 151 / 1615
  21677. }
  21678. },
  21679. side: {
  21680. height: math.unit(6, "feet"),
  21681. weight: math.unit(150, "lb"),
  21682. name: "Side",
  21683. image: {
  21684. source: "./media/characters/terrance-keayes/side.svg",
  21685. extra: 1.005,
  21686. bottom: 129.4 / 1544
  21687. }
  21688. },
  21689. back: {
  21690. height: math.unit(6, "feet"),
  21691. weight: math.unit(150, "lb"),
  21692. name: "Back",
  21693. image: {
  21694. source: "./media/characters/terrance-keayes/back.svg",
  21695. extra: 1.005,
  21696. bottom: 58.4 / 1557.3
  21697. }
  21698. },
  21699. dick: {
  21700. height: math.unit(6 * 0.208, "feet"),
  21701. name: "Dick",
  21702. image: {
  21703. source: "./media/characters/terrance-keayes/dick.svg"
  21704. }
  21705. },
  21706. },
  21707. [
  21708. {
  21709. name: "Canon Height",
  21710. height: math.unit(35, "miles"),
  21711. default: true
  21712. },
  21713. ]
  21714. ))
  21715. characterMakers.push(() => makeCharacter(
  21716. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21717. {
  21718. front: {
  21719. height: math.unit(6, "feet"),
  21720. weight: math.unit(150, "lb"),
  21721. name: "Front",
  21722. image: {
  21723. source: "./media/characters/ofelia/front.svg",
  21724. extra: 546 / 541,
  21725. bottom: 39 / 583
  21726. }
  21727. },
  21728. back: {
  21729. height: math.unit(6, "feet"),
  21730. weight: math.unit(150, "lb"),
  21731. name: "Back",
  21732. image: {
  21733. source: "./media/characters/ofelia/back.svg",
  21734. extra: 564 / 559.5,
  21735. bottom: 8.69 / 573.02
  21736. }
  21737. },
  21738. maw: {
  21739. height: math.unit(1, "feet"),
  21740. name: "Maw",
  21741. image: {
  21742. source: "./media/characters/ofelia/maw.svg"
  21743. }
  21744. },
  21745. foot: {
  21746. height: math.unit(1.949, "feet"),
  21747. name: "Foot",
  21748. image: {
  21749. source: "./media/characters/ofelia/foot.svg"
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Canon Height",
  21756. height: math.unit(2000, "miles"),
  21757. default: true
  21758. },
  21759. ]
  21760. ))
  21761. characterMakers.push(() => makeCharacter(
  21762. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21763. {
  21764. front: {
  21765. height: math.unit(6, "feet"),
  21766. weight: math.unit(150, "lb"),
  21767. name: "Front",
  21768. image: {
  21769. source: "./media/characters/samuel/front.svg",
  21770. extra: 265 / 258,
  21771. bottom: 2 / 266.1566
  21772. }
  21773. },
  21774. },
  21775. [
  21776. {
  21777. name: "Macro",
  21778. height: math.unit(100, "feet"),
  21779. default: true
  21780. },
  21781. {
  21782. name: "Full Size",
  21783. height: math.unit(1000, "miles")
  21784. },
  21785. ]
  21786. ))
  21787. characterMakers.push(() => makeCharacter(
  21788. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21789. {
  21790. front: {
  21791. height: math.unit(6, "feet"),
  21792. weight: math.unit(300, "lb"),
  21793. name: "Front",
  21794. image: {
  21795. source: "./media/characters/beishir-kiel/front.svg",
  21796. extra: 569 / 547,
  21797. bottom: 41.9 / 609
  21798. }
  21799. },
  21800. maw: {
  21801. height: math.unit(6 * 0.202, "feet"),
  21802. name: "Maw",
  21803. image: {
  21804. source: "./media/characters/beishir-kiel/maw.svg"
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Macro",
  21811. height: math.unit(300, "feet"),
  21812. default: true
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21818. {
  21819. front: {
  21820. height: math.unit(5 + 8 / 12, "feet"),
  21821. weight: math.unit(120, "lb"),
  21822. name: "Front",
  21823. image: {
  21824. source: "./media/characters/logan-grey/front.svg",
  21825. extra: 2539 / 2393,
  21826. bottom: 97.6 / 2636.37
  21827. }
  21828. },
  21829. frontAlt: {
  21830. height: math.unit(5 + 8 / 12, "feet"),
  21831. weight: math.unit(120, "lb"),
  21832. name: "Front (Alt)",
  21833. image: {
  21834. source: "./media/characters/logan-grey/front-alt.svg",
  21835. extra: 958 / 893,
  21836. bottom: 15 / 970.768
  21837. }
  21838. },
  21839. back: {
  21840. height: math.unit(5 + 8 / 12, "feet"),
  21841. weight: math.unit(120, "lb"),
  21842. name: "Back",
  21843. image: {
  21844. source: "./media/characters/logan-grey/back.svg",
  21845. extra: 958 / 893,
  21846. bottom: 2.1881 / 970.9788
  21847. }
  21848. },
  21849. dick: {
  21850. height: math.unit(1.437, "feet"),
  21851. name: "Dick",
  21852. image: {
  21853. source: "./media/characters/logan-grey/dick.svg"
  21854. }
  21855. },
  21856. },
  21857. [
  21858. {
  21859. name: "Normal",
  21860. height: math.unit(5 + 8 / 12, "feet")
  21861. },
  21862. {
  21863. name: "The 500 Foot Femboy",
  21864. height: math.unit(500, "feet"),
  21865. default: true
  21866. },
  21867. {
  21868. name: "Megmacro",
  21869. height: math.unit(20, "miles")
  21870. },
  21871. ]
  21872. ))
  21873. characterMakers.push(() => makeCharacter(
  21874. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21875. {
  21876. front: {
  21877. height: math.unit(8 + 2 / 12, "feet"),
  21878. weight: math.unit(275, "lb"),
  21879. name: "Front",
  21880. image: {
  21881. source: "./media/characters/draganta/front.svg",
  21882. extra: 1177 / 1135,
  21883. bottom: 33.46 / 1212.1
  21884. }
  21885. },
  21886. },
  21887. [
  21888. {
  21889. name: "Normal",
  21890. height: math.unit(8 + 6 / 12, "feet"),
  21891. default: true
  21892. },
  21893. {
  21894. name: "Macro",
  21895. height: math.unit(150, "feet")
  21896. },
  21897. {
  21898. name: "Megamacro",
  21899. height: math.unit(1000, "miles")
  21900. },
  21901. ]
  21902. ))
  21903. characterMakers.push(() => makeCharacter(
  21904. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21905. {
  21906. front: {
  21907. height: math.unit(1.72, "m"),
  21908. weight: math.unit(80, "lb"),
  21909. name: "Front",
  21910. image: {
  21911. source: "./media/characters/voski/front.svg",
  21912. extra: 2076.22 / 2022.4,
  21913. bottom: 102.7 / 2177.3866
  21914. }
  21915. },
  21916. frontNsfw: {
  21917. height: math.unit(1.72, "m"),
  21918. weight: math.unit(80, "lb"),
  21919. name: "Front (NSFW)",
  21920. image: {
  21921. source: "./media/characters/voski/front-nsfw.svg",
  21922. extra: 2076.22 / 2022.4,
  21923. bottom: 102.7 / 2177.3866
  21924. }
  21925. },
  21926. back: {
  21927. height: math.unit(1.72, "m"),
  21928. weight: math.unit(80, "lb"),
  21929. name: "Back",
  21930. image: {
  21931. source: "./media/characters/voski/back.svg",
  21932. extra: 2104 / 2051,
  21933. bottom: 10.45 / 2113.63
  21934. }
  21935. },
  21936. },
  21937. [
  21938. {
  21939. name: "Normal",
  21940. height: math.unit(1.72, "m")
  21941. },
  21942. {
  21943. name: "Macro",
  21944. height: math.unit(55, "m"),
  21945. default: true
  21946. },
  21947. {
  21948. name: "Macro+",
  21949. height: math.unit(300, "m")
  21950. },
  21951. {
  21952. name: "Macro++",
  21953. height: math.unit(700, "m")
  21954. },
  21955. {
  21956. name: "Macro+++",
  21957. height: math.unit(4500, "m")
  21958. },
  21959. {
  21960. name: "Macro++++",
  21961. height: math.unit(45, "km")
  21962. },
  21963. {
  21964. name: "Macro+++++",
  21965. height: math.unit(1220, "km")
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21971. {
  21972. front: {
  21973. height: math.unit(2.3, "m"),
  21974. weight: math.unit(304, "kg"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/icowom-lee/front.svg",
  21978. extra: 985 / 955,
  21979. bottom: 25.4 / 1012
  21980. }
  21981. },
  21982. fronttentacles: {
  21983. height: math.unit(2.3, "m"),
  21984. weight: math.unit(304, "kg"),
  21985. name: "Front-tentacles",
  21986. image: {
  21987. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21988. extra: 985 / 955,
  21989. bottom: 25.4 / 1012
  21990. }
  21991. },
  21992. back: {
  21993. height: math.unit(2.3, "m"),
  21994. weight: math.unit(304, "kg"),
  21995. name: "Back",
  21996. image: {
  21997. source: "./media/characters/icowom-lee/back.svg",
  21998. extra: 975 / 954,
  21999. bottom: 9.5 / 985
  22000. }
  22001. },
  22002. backtentacles: {
  22003. height: math.unit(2.3, "m"),
  22004. weight: math.unit(304, "kg"),
  22005. name: "Back-tentacles",
  22006. image: {
  22007. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22008. extra: 975 / 954,
  22009. bottom: 9.5 / 985
  22010. }
  22011. },
  22012. frontDressed: {
  22013. height: math.unit(2.3, "m"),
  22014. weight: math.unit(304, "kg"),
  22015. name: "Front (Dressed)",
  22016. image: {
  22017. source: "./media/characters/icowom-lee/front-dressed.svg",
  22018. extra: 3076 / 2933,
  22019. bottom: 51.4 / 3125.1889
  22020. }
  22021. },
  22022. rump: {
  22023. height: math.unit(0.776, "meters"),
  22024. name: "Rump",
  22025. image: {
  22026. source: "./media/characters/icowom-lee/rump.svg"
  22027. }
  22028. },
  22029. genitals: {
  22030. height: math.unit(0.78, "meters"),
  22031. name: "Genitals",
  22032. image: {
  22033. source: "./media/characters/icowom-lee/genitals.svg"
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Normal",
  22040. height: math.unit(2.3, "meters"),
  22041. default: true
  22042. },
  22043. {
  22044. name: "Macro",
  22045. height: math.unit(94, "meters"),
  22046. default: true
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22052. {
  22053. front: {
  22054. height: math.unit(22, "meters"),
  22055. weight: math.unit(21000, "kg"),
  22056. name: "Front",
  22057. image: {
  22058. source: "./media/characters/shock-diamond/front.svg",
  22059. extra: 2204 / 2053,
  22060. bottom: 65 / 2239.47
  22061. }
  22062. },
  22063. frontNude: {
  22064. height: math.unit(22, "meters"),
  22065. weight: math.unit(21000, "kg"),
  22066. name: "Front (Nude)",
  22067. image: {
  22068. source: "./media/characters/shock-diamond/front-nude.svg",
  22069. extra: 2514 / 2285,
  22070. bottom: 13 / 2527.56
  22071. }
  22072. },
  22073. },
  22074. [
  22075. {
  22076. name: "Normal",
  22077. height: math.unit(3, "meters")
  22078. },
  22079. {
  22080. name: "Macro",
  22081. height: math.unit(22, "meters"),
  22082. default: true
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22088. {
  22089. front: {
  22090. height: math.unit(5 + 4 / 12, "feet"),
  22091. weight: math.unit(120, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/rory/front.svg",
  22095. extra: 589 / 556,
  22096. bottom: 45.7 / 635.76
  22097. }
  22098. },
  22099. frontNude: {
  22100. height: math.unit(5 + 4 / 12, "feet"),
  22101. weight: math.unit(120, "lb"),
  22102. name: "Front (Nude)",
  22103. image: {
  22104. source: "./media/characters/rory/front-nude.svg",
  22105. extra: 589 / 556,
  22106. bottom: 45.7 / 635.76
  22107. }
  22108. },
  22109. side: {
  22110. height: math.unit(5 + 4 / 12, "feet"),
  22111. weight: math.unit(120, "lb"),
  22112. name: "Side",
  22113. image: {
  22114. source: "./media/characters/rory/side.svg",
  22115. extra: 597 / 564,
  22116. bottom: 55 / 653
  22117. }
  22118. },
  22119. back: {
  22120. height: math.unit(5 + 4 / 12, "feet"),
  22121. weight: math.unit(120, "lb"),
  22122. name: "Back",
  22123. image: {
  22124. source: "./media/characters/rory/back.svg",
  22125. extra: 620 / 585,
  22126. bottom: 8.86 / 630.43
  22127. }
  22128. },
  22129. dick: {
  22130. height: math.unit(0.86, "feet"),
  22131. name: "Dick",
  22132. image: {
  22133. source: "./media/characters/rory/dick.svg"
  22134. }
  22135. },
  22136. },
  22137. [
  22138. {
  22139. name: "Normal",
  22140. height: math.unit(5 + 4 / 12, "feet"),
  22141. default: true
  22142. },
  22143. {
  22144. name: "Macro",
  22145. height: math.unit(100, "feet")
  22146. },
  22147. {
  22148. name: "Macro+",
  22149. height: math.unit(140, "feet")
  22150. },
  22151. {
  22152. name: "Macro++",
  22153. height: math.unit(300, "feet")
  22154. },
  22155. ]
  22156. ))
  22157. characterMakers.push(() => makeCharacter(
  22158. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22159. {
  22160. front: {
  22161. height: math.unit(5 + 9 / 12, "feet"),
  22162. weight: math.unit(190, "lb"),
  22163. name: "Front",
  22164. image: {
  22165. source: "./media/characters/sprisk/front.svg",
  22166. extra: 1225 / 1180,
  22167. bottom: 42.7 / 1266.4
  22168. }
  22169. },
  22170. frontNsfw: {
  22171. height: math.unit(5 + 9 / 12, "feet"),
  22172. weight: math.unit(190, "lb"),
  22173. name: "Front (NSFW)",
  22174. image: {
  22175. source: "./media/characters/sprisk/front-nsfw.svg",
  22176. extra: 1225 / 1180,
  22177. bottom: 42.7 / 1266.4
  22178. }
  22179. },
  22180. back: {
  22181. height: math.unit(5 + 9 / 12, "feet"),
  22182. weight: math.unit(190, "lb"),
  22183. name: "Back",
  22184. image: {
  22185. source: "./media/characters/sprisk/back.svg",
  22186. extra: 1247 / 1200,
  22187. bottom: 5.6 / 1253.04
  22188. }
  22189. },
  22190. },
  22191. [
  22192. {
  22193. name: "Tiny",
  22194. height: math.unit(2, "inches")
  22195. },
  22196. {
  22197. name: "Normal",
  22198. height: math.unit(5 + 9 / 12, "feet"),
  22199. default: true
  22200. },
  22201. {
  22202. name: "Mini Macro",
  22203. height: math.unit(18, "feet")
  22204. },
  22205. {
  22206. name: "Macro",
  22207. height: math.unit(100, "feet")
  22208. },
  22209. {
  22210. name: "MACRO",
  22211. height: math.unit(50, "miles")
  22212. },
  22213. {
  22214. name: "M A C R O",
  22215. height: math.unit(300, "miles")
  22216. },
  22217. ]
  22218. ))
  22219. characterMakers.push(() => makeCharacter(
  22220. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22221. {
  22222. side: {
  22223. height: math.unit(15.6, "meters"),
  22224. weight: math.unit(700000, "kg"),
  22225. name: "Side",
  22226. image: {
  22227. source: "./media/characters/bunsen/side.svg",
  22228. extra: 1644 / 358
  22229. }
  22230. },
  22231. foot: {
  22232. height: math.unit(1.611 * 1644 / 358, "meter"),
  22233. name: "Foot",
  22234. image: {
  22235. source: "./media/characters/bunsen/foot.svg"
  22236. }
  22237. },
  22238. },
  22239. [
  22240. {
  22241. name: "Small",
  22242. height: math.unit(10, "feet")
  22243. },
  22244. {
  22245. name: "Normal",
  22246. height: math.unit(15.6, "meters"),
  22247. default: true
  22248. },
  22249. ]
  22250. ))
  22251. characterMakers.push(() => makeCharacter(
  22252. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22253. {
  22254. front: {
  22255. height: math.unit(4 + 11 / 12, "feet"),
  22256. weight: math.unit(140, "lb"),
  22257. name: "Front",
  22258. image: {
  22259. source: "./media/characters/sesh/front.svg",
  22260. extra: 3420 / 3231,
  22261. bottom: 72 / 3949.5
  22262. }
  22263. },
  22264. },
  22265. [
  22266. {
  22267. name: "Normal",
  22268. height: math.unit(4 + 11 / 12, "feet")
  22269. },
  22270. {
  22271. name: "Grown",
  22272. height: math.unit(15, "feet"),
  22273. default: true
  22274. },
  22275. {
  22276. name: "Macro",
  22277. height: math.unit(1500, "feet")
  22278. },
  22279. {
  22280. name: "Megamacro",
  22281. height: math.unit(30, "miles")
  22282. },
  22283. {
  22284. name: "Continental",
  22285. height: math.unit(3000, "miles")
  22286. },
  22287. {
  22288. name: "Gravity Mass",
  22289. height: math.unit(300000, "miles")
  22290. },
  22291. {
  22292. name: "Planet Buster",
  22293. height: math.unit(30000000, "miles")
  22294. },
  22295. {
  22296. name: "Big",
  22297. height: math.unit(3000000000, "miles")
  22298. },
  22299. ]
  22300. ))
  22301. characterMakers.push(() => makeCharacter(
  22302. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22303. {
  22304. front: {
  22305. height: math.unit(9, "feet"),
  22306. weight: math.unit(350, "lb"),
  22307. name: "Front",
  22308. image: {
  22309. source: "./media/characters/pepper/front.svg",
  22310. extra: 1448 / 1312,
  22311. bottom: 9.4 / 1457.88
  22312. }
  22313. },
  22314. back: {
  22315. height: math.unit(9, "feet"),
  22316. weight: math.unit(350, "lb"),
  22317. name: "Back",
  22318. image: {
  22319. source: "./media/characters/pepper/back.svg",
  22320. extra: 1423 / 1300,
  22321. bottom: 4.6 / 1429
  22322. }
  22323. },
  22324. maw: {
  22325. height: math.unit(0.932, "feet"),
  22326. name: "Maw",
  22327. image: {
  22328. source: "./media/characters/pepper/maw.svg"
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Normal",
  22335. height: math.unit(9, "feet"),
  22336. default: true
  22337. },
  22338. ]
  22339. ))
  22340. characterMakers.push(() => makeCharacter(
  22341. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22342. {
  22343. front: {
  22344. height: math.unit(6, "feet"),
  22345. weight: math.unit(150, "lb"),
  22346. name: "Front",
  22347. image: {
  22348. source: "./media/characters/maelstrom/front.svg",
  22349. extra: 2100 / 1883,
  22350. bottom: 94 / 2196.7
  22351. }
  22352. },
  22353. },
  22354. [
  22355. {
  22356. name: "Less Kaiju",
  22357. height: math.unit(200, "feet")
  22358. },
  22359. {
  22360. name: "Kaiju",
  22361. height: math.unit(400, "feet"),
  22362. default: true
  22363. },
  22364. {
  22365. name: "Kaiju-er",
  22366. height: math.unit(600, "feet")
  22367. },
  22368. ]
  22369. ))
  22370. characterMakers.push(() => makeCharacter(
  22371. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22372. {
  22373. front: {
  22374. height: math.unit(6 + 5 / 12, "feet"),
  22375. weight: math.unit(180, "lb"),
  22376. name: "Front",
  22377. image: {
  22378. source: "./media/characters/lexir/front.svg",
  22379. extra: 180 / 172,
  22380. bottom: 12 / 192
  22381. }
  22382. },
  22383. back: {
  22384. height: math.unit(6 + 5 / 12, "feet"),
  22385. weight: math.unit(180, "lb"),
  22386. name: "Back",
  22387. image: {
  22388. source: "./media/characters/lexir/back.svg",
  22389. extra: 183.84 / 175.5,
  22390. bottom: 3.1 / 187
  22391. }
  22392. },
  22393. },
  22394. [
  22395. {
  22396. name: "Very Smal",
  22397. height: math.unit(1, "nm")
  22398. },
  22399. {
  22400. name: "Normal",
  22401. height: math.unit(6 + 5 / 12, "feet"),
  22402. default: true
  22403. },
  22404. {
  22405. name: "Macro",
  22406. height: math.unit(1, "mile")
  22407. },
  22408. {
  22409. name: "Megamacro",
  22410. height: math.unit(50, "miles")
  22411. },
  22412. ]
  22413. ))
  22414. characterMakers.push(() => makeCharacter(
  22415. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22416. {
  22417. front: {
  22418. height: math.unit(1.5, "meters"),
  22419. weight: math.unit(100, "lb"),
  22420. name: "Front",
  22421. image: {
  22422. source: "./media/characters/maksio/front.svg",
  22423. extra: 1549 / 1531,
  22424. bottom: 123.7 / 1674.5429
  22425. }
  22426. },
  22427. back: {
  22428. height: math.unit(1.5, "meters"),
  22429. weight: math.unit(100, "lb"),
  22430. name: "Back",
  22431. image: {
  22432. source: "./media/characters/maksio/back.svg",
  22433. extra: 1541 / 1509,
  22434. bottom: 97 / 1639
  22435. }
  22436. },
  22437. hand: {
  22438. height: math.unit(0.621, "feet"),
  22439. name: "Hand",
  22440. image: {
  22441. source: "./media/characters/maksio/hand.svg"
  22442. }
  22443. },
  22444. foot: {
  22445. height: math.unit(1.611, "feet"),
  22446. name: "Foot",
  22447. image: {
  22448. source: "./media/characters/maksio/foot.svg"
  22449. }
  22450. },
  22451. },
  22452. [
  22453. {
  22454. name: "Shrunken",
  22455. height: math.unit(10, "cm")
  22456. },
  22457. {
  22458. name: "Normal",
  22459. height: math.unit(150, "cm"),
  22460. default: true
  22461. },
  22462. ]
  22463. ))
  22464. characterMakers.push(() => makeCharacter(
  22465. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22466. {
  22467. front: {
  22468. height: math.unit(100, "feet"),
  22469. name: "Front",
  22470. image: {
  22471. source: "./media/characters/erza-bear/front.svg",
  22472. extra: 2449 / 2390,
  22473. bottom: 46 / 2494
  22474. }
  22475. },
  22476. back: {
  22477. height: math.unit(100, "feet"),
  22478. name: "Back",
  22479. image: {
  22480. source: "./media/characters/erza-bear/back.svg",
  22481. extra: 2489 / 2430,
  22482. bottom: 85.4 / 2480
  22483. }
  22484. },
  22485. tail: {
  22486. height: math.unit(42, "feet"),
  22487. name: "Tail",
  22488. image: {
  22489. source: "./media/characters/erza-bear/tail.svg"
  22490. }
  22491. },
  22492. tongue: {
  22493. height: math.unit(8, "feet"),
  22494. name: "Tongue",
  22495. image: {
  22496. source: "./media/characters/erza-bear/tongue.svg"
  22497. }
  22498. },
  22499. dick: {
  22500. height: math.unit(10.5, "feet"),
  22501. name: "Dick",
  22502. image: {
  22503. source: "./media/characters/erza-bear/dick.svg"
  22504. }
  22505. },
  22506. dickVertical: {
  22507. height: math.unit(16.9, "feet"),
  22508. name: "Dick (Vertical)",
  22509. image: {
  22510. source: "./media/characters/erza-bear/dick-vertical.svg"
  22511. }
  22512. },
  22513. },
  22514. [
  22515. {
  22516. name: "Macro",
  22517. height: math.unit(100, "feet"),
  22518. default: true
  22519. },
  22520. ]
  22521. ))
  22522. characterMakers.push(() => makeCharacter(
  22523. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22524. {
  22525. front: {
  22526. height: math.unit(172, "cm"),
  22527. weight: math.unit(73, "kg"),
  22528. name: "Front",
  22529. image: {
  22530. source: "./media/characters/violet-flor/front.svg",
  22531. extra: 1530 / 1442,
  22532. bottom: 61.9 / 1588.8
  22533. }
  22534. },
  22535. back: {
  22536. height: math.unit(180, "cm"),
  22537. weight: math.unit(73, "kg"),
  22538. name: "Back",
  22539. image: {
  22540. source: "./media/characters/violet-flor/back.svg",
  22541. extra: 1692 / 1630,
  22542. bottom: 20 / 1712
  22543. }
  22544. },
  22545. },
  22546. [
  22547. {
  22548. name: "Normal",
  22549. height: math.unit(172, "cm"),
  22550. default: true
  22551. },
  22552. ]
  22553. ))
  22554. characterMakers.push(() => makeCharacter(
  22555. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22556. {
  22557. front: {
  22558. height: math.unit(6, "feet"),
  22559. weight: math.unit(220, "lb"),
  22560. name: "Front",
  22561. image: {
  22562. source: "./media/characters/lynn-rhea/front.svg",
  22563. extra: 310 / 273
  22564. }
  22565. },
  22566. back: {
  22567. height: math.unit(6, "feet"),
  22568. weight: math.unit(220, "lb"),
  22569. name: "Back",
  22570. image: {
  22571. source: "./media/characters/lynn-rhea/back.svg",
  22572. extra: 310 / 273
  22573. }
  22574. },
  22575. dicks: {
  22576. height: math.unit(0.9, "feet"),
  22577. name: "Dicks",
  22578. image: {
  22579. source: "./media/characters/lynn-rhea/dicks.svg"
  22580. }
  22581. },
  22582. slit: {
  22583. height: math.unit(0.4, "feet"),
  22584. name: "Slit",
  22585. image: {
  22586. source: "./media/characters/lynn-rhea/slit.svg"
  22587. }
  22588. },
  22589. },
  22590. [
  22591. {
  22592. name: "Micro",
  22593. height: math.unit(1, "inch")
  22594. },
  22595. {
  22596. name: "Macro",
  22597. height: math.unit(60, "feet"),
  22598. default: true
  22599. },
  22600. {
  22601. name: "Megamacro",
  22602. height: math.unit(2, "miles")
  22603. },
  22604. {
  22605. name: "Gigamacro",
  22606. height: math.unit(3, "earths")
  22607. },
  22608. {
  22609. name: "Galactic",
  22610. height: math.unit(0.8, "galaxies")
  22611. },
  22612. ]
  22613. ))
  22614. characterMakers.push(() => makeCharacter(
  22615. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22616. {
  22617. front: {
  22618. height: math.unit(1600, "feet"),
  22619. weight: math.unit(85758785169, "kg"),
  22620. name: "Front",
  22621. image: {
  22622. source: "./media/characters/valathos/front.svg",
  22623. extra: 1451 / 1339
  22624. }
  22625. },
  22626. },
  22627. [
  22628. {
  22629. name: "Macro",
  22630. height: math.unit(1600, "feet"),
  22631. default: true
  22632. },
  22633. ]
  22634. ))
  22635. characterMakers.push(() => makeCharacter(
  22636. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22637. {
  22638. front: {
  22639. height: math.unit(7 + 5 / 12, "feet"),
  22640. weight: math.unit(300, "lb"),
  22641. name: "Front",
  22642. image: {
  22643. source: "./media/characters/azula/front.svg",
  22644. extra: 3208 / 2880,
  22645. bottom: 80.2 / 3277
  22646. }
  22647. },
  22648. back: {
  22649. height: math.unit(7 + 5 / 12, "feet"),
  22650. weight: math.unit(300, "lb"),
  22651. name: "Back",
  22652. image: {
  22653. source: "./media/characters/azula/back.svg",
  22654. extra: 3169 / 2822,
  22655. bottom: 150.6 / 3321
  22656. }
  22657. },
  22658. },
  22659. [
  22660. {
  22661. name: "Normal",
  22662. height: math.unit(7 + 5 / 12, "feet"),
  22663. default: true
  22664. },
  22665. {
  22666. name: "Big",
  22667. height: math.unit(20, "feet")
  22668. },
  22669. ]
  22670. ))
  22671. characterMakers.push(() => makeCharacter(
  22672. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22673. {
  22674. front: {
  22675. height: math.unit(5 + 1 / 12, "feet"),
  22676. weight: math.unit(110, "lb"),
  22677. name: "Front",
  22678. image: {
  22679. source: "./media/characters/rupert/front.svg",
  22680. extra: 1549 / 1495,
  22681. bottom: 54.2 / 1604.4
  22682. }
  22683. },
  22684. },
  22685. [
  22686. {
  22687. name: "Normal",
  22688. height: math.unit(5 + 1 / 12, "feet"),
  22689. default: true
  22690. },
  22691. ]
  22692. ))
  22693. characterMakers.push(() => makeCharacter(
  22694. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22695. {
  22696. front: {
  22697. height: math.unit(8 + 4 / 12, "feet"),
  22698. weight: math.unit(350, "lb"),
  22699. name: "Front",
  22700. image: {
  22701. source: "./media/characters/sheera-castellar/front.svg",
  22702. extra: 1957 / 1894,
  22703. bottom: 26.97 / 1975.017
  22704. }
  22705. },
  22706. side: {
  22707. height: math.unit(8 + 4 / 12, "feet"),
  22708. weight: math.unit(350, "lb"),
  22709. name: "Side",
  22710. image: {
  22711. source: "./media/characters/sheera-castellar/side.svg",
  22712. extra: 1957 / 1894
  22713. }
  22714. },
  22715. back: {
  22716. height: math.unit(8 + 4 / 12, "feet"),
  22717. weight: math.unit(350, "lb"),
  22718. name: "Back",
  22719. image: {
  22720. source: "./media/characters/sheera-castellar/back.svg",
  22721. extra: 1957 / 1894
  22722. }
  22723. },
  22724. angled: {
  22725. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22726. weight: math.unit(350, "lb"),
  22727. name: "Angled",
  22728. image: {
  22729. source: "./media/characters/sheera-castellar/angled.svg",
  22730. extra: 1807 / 1707,
  22731. bottom: 68 / 1875
  22732. }
  22733. },
  22734. genitals: {
  22735. height: math.unit(2.2, "feet"),
  22736. name: "Genitals",
  22737. image: {
  22738. source: "./media/characters/sheera-castellar/genitals.svg"
  22739. }
  22740. },
  22741. taur: {
  22742. height: math.unit(10 + 6/12, "feet"),
  22743. name: "Taur",
  22744. image: {
  22745. source: "./media/characters/sheera-castellar/taur.svg",
  22746. extra: 2017/1909,
  22747. bottom: 185/2202
  22748. }
  22749. },
  22750. },
  22751. [
  22752. {
  22753. name: "Normal",
  22754. height: math.unit(8 + 4 / 12, "feet")
  22755. },
  22756. {
  22757. name: "Macro",
  22758. height: math.unit(150, "feet"),
  22759. default: true
  22760. },
  22761. {
  22762. name: "Macro+",
  22763. height: math.unit(800, "feet")
  22764. },
  22765. ]
  22766. ))
  22767. characterMakers.push(() => makeCharacter(
  22768. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22769. {
  22770. front: {
  22771. height: math.unit(6, "feet"),
  22772. weight: math.unit(150, "lb"),
  22773. name: "Front",
  22774. image: {
  22775. source: "./media/characters/jaipur/front.svg",
  22776. extra: 3860 / 3731,
  22777. bottom: 287 / 4140
  22778. }
  22779. },
  22780. back: {
  22781. height: math.unit(6, "feet"),
  22782. weight: math.unit(150, "lb"),
  22783. name: "Back",
  22784. image: {
  22785. source: "./media/characters/jaipur/back.svg",
  22786. extra: 4060 / 3930,
  22787. bottom: 151 / 4200
  22788. }
  22789. },
  22790. },
  22791. [
  22792. {
  22793. name: "Normal",
  22794. height: math.unit(1.85, "meters"),
  22795. default: true
  22796. },
  22797. {
  22798. name: "Macro",
  22799. height: math.unit(150, "meters")
  22800. },
  22801. {
  22802. name: "Macro+",
  22803. height: math.unit(0.5, "miles")
  22804. },
  22805. {
  22806. name: "Macro++",
  22807. height: math.unit(2.5, "miles")
  22808. },
  22809. {
  22810. name: "Macro+++",
  22811. height: math.unit(12, "miles")
  22812. },
  22813. {
  22814. name: "Macro++++",
  22815. height: math.unit(120, "miles")
  22816. },
  22817. {
  22818. name: "Macro+++++",
  22819. height: math.unit(1200, "miles")
  22820. },
  22821. ]
  22822. ))
  22823. characterMakers.push(() => makeCharacter(
  22824. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22825. {
  22826. front: {
  22827. height: math.unit(6, "feet"),
  22828. weight: math.unit(150, "lb"),
  22829. name: "Front",
  22830. image: {
  22831. source: "./media/characters/sheila-wolf/front.svg",
  22832. extra: 1931 / 1808,
  22833. bottom: 29.5 / 1960
  22834. }
  22835. },
  22836. dick: {
  22837. height: math.unit(1.464, "feet"),
  22838. name: "Dick",
  22839. image: {
  22840. source: "./media/characters/sheila-wolf/dick.svg"
  22841. }
  22842. },
  22843. muzzle: {
  22844. height: math.unit(0.513, "feet"),
  22845. name: "Muzzle",
  22846. image: {
  22847. source: "./media/characters/sheila-wolf/muzzle.svg"
  22848. }
  22849. },
  22850. },
  22851. [
  22852. {
  22853. name: "Macro",
  22854. height: math.unit(70, "feet"),
  22855. default: true
  22856. },
  22857. ]
  22858. ))
  22859. characterMakers.push(() => makeCharacter(
  22860. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22861. {
  22862. front: {
  22863. height: math.unit(32, "meters"),
  22864. weight: math.unit(300000, "kg"),
  22865. name: "Front",
  22866. image: {
  22867. source: "./media/characters/almor/front.svg",
  22868. extra: 1408 / 1322,
  22869. bottom: 94.6 / 1506.5
  22870. }
  22871. },
  22872. },
  22873. [
  22874. {
  22875. name: "Macro",
  22876. height: math.unit(32, "meters"),
  22877. default: true
  22878. },
  22879. ]
  22880. ))
  22881. characterMakers.push(() => makeCharacter(
  22882. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22883. {
  22884. front: {
  22885. height: math.unit(7, "feet"),
  22886. weight: math.unit(200, "lb"),
  22887. name: "Front",
  22888. image: {
  22889. source: "./media/characters/silver/front.svg",
  22890. extra: 472.1 / 450.5,
  22891. bottom: 26.5 / 499.424
  22892. }
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Normal",
  22898. height: math.unit(7, "feet"),
  22899. default: true
  22900. },
  22901. {
  22902. name: "Macro",
  22903. height: math.unit(800, "feet")
  22904. },
  22905. {
  22906. name: "Megamacro",
  22907. height: math.unit(250, "miles")
  22908. },
  22909. ]
  22910. ))
  22911. characterMakers.push(() => makeCharacter(
  22912. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22913. {
  22914. front: {
  22915. height: math.unit(6, "feet"),
  22916. weight: math.unit(150, "lb"),
  22917. name: "Front",
  22918. image: {
  22919. source: "./media/characters/pliskin/front.svg",
  22920. extra: 1469 / 1359,
  22921. bottom: 70 / 1540
  22922. }
  22923. },
  22924. },
  22925. [
  22926. {
  22927. name: "Micro",
  22928. height: math.unit(3, "inches")
  22929. },
  22930. {
  22931. name: "Normal",
  22932. height: math.unit(5 + 11 / 12, "feet"),
  22933. default: true
  22934. },
  22935. {
  22936. name: "Macro",
  22937. height: math.unit(120, "feet")
  22938. },
  22939. ]
  22940. ))
  22941. characterMakers.push(() => makeCharacter(
  22942. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22943. {
  22944. front: {
  22945. height: math.unit(6, "feet"),
  22946. weight: math.unit(150, "lb"),
  22947. name: "Front",
  22948. image: {
  22949. source: "./media/characters/sammy/front.svg",
  22950. extra: 1193 / 1089,
  22951. bottom: 30.5 / 1226
  22952. }
  22953. },
  22954. },
  22955. [
  22956. {
  22957. name: "Macro",
  22958. height: math.unit(1700, "feet"),
  22959. default: true
  22960. },
  22961. {
  22962. name: "Examacro",
  22963. height: math.unit(2.5e9, "lightyears")
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22969. {
  22970. front: {
  22971. height: math.unit(21, "meters"),
  22972. weight: math.unit(12, "tonnes"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/kuru/front.svg",
  22976. extra: 4301 / 3785,
  22977. bottom: 371.3 / 4691
  22978. }
  22979. },
  22980. },
  22981. [
  22982. {
  22983. name: "Macro",
  22984. height: math.unit(21, "meters"),
  22985. default: true
  22986. },
  22987. ]
  22988. ))
  22989. characterMakers.push(() => makeCharacter(
  22990. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22991. {
  22992. front: {
  22993. height: math.unit(23, "meters"),
  22994. weight: math.unit(12.2, "tonnes"),
  22995. name: "Front",
  22996. image: {
  22997. source: "./media/characters/rakka/front.svg",
  22998. extra: 4670 / 4169,
  22999. bottom: 301 / 4968.7
  23000. }
  23001. },
  23002. },
  23003. [
  23004. {
  23005. name: "Macro",
  23006. height: math.unit(23, "meters"),
  23007. default: true
  23008. },
  23009. ]
  23010. ))
  23011. characterMakers.push(() => makeCharacter(
  23012. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23013. {
  23014. front: {
  23015. height: math.unit(6, "feet"),
  23016. weight: math.unit(150, "lb"),
  23017. name: "Front",
  23018. image: {
  23019. source: "./media/characters/rhys-feline/front.svg",
  23020. extra: 2488 / 2308,
  23021. bottom: 35.67 / 2519.19
  23022. }
  23023. },
  23024. },
  23025. [
  23026. {
  23027. name: "Really Small",
  23028. height: math.unit(1, "nm")
  23029. },
  23030. {
  23031. name: "Micro",
  23032. height: math.unit(4, "inches")
  23033. },
  23034. {
  23035. name: "Normal",
  23036. height: math.unit(4 + 10 / 12, "feet"),
  23037. default: true
  23038. },
  23039. {
  23040. name: "Macro",
  23041. height: math.unit(100, "feet")
  23042. },
  23043. {
  23044. name: "Megamacto",
  23045. height: math.unit(50, "miles")
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23051. {
  23052. side: {
  23053. height: math.unit(30, "feet"),
  23054. weight: math.unit(35000, "kg"),
  23055. name: "Side",
  23056. image: {
  23057. source: "./media/characters/alydar/side.svg",
  23058. extra: 234 / 222,
  23059. bottom: 6.5 / 241
  23060. }
  23061. },
  23062. front: {
  23063. height: math.unit(30, "feet"),
  23064. weight: math.unit(35000, "kg"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/alydar/front.svg",
  23068. extra: 223.37 / 210.2,
  23069. bottom: 22.3 / 246.76
  23070. }
  23071. },
  23072. top: {
  23073. height: math.unit(64.54, "feet"),
  23074. weight: math.unit(35000, "kg"),
  23075. name: "Top",
  23076. image: {
  23077. source: "./media/characters/alydar/top.svg"
  23078. }
  23079. },
  23080. anthro: {
  23081. height: math.unit(30, "feet"),
  23082. weight: math.unit(9000, "kg"),
  23083. name: "Anthro",
  23084. image: {
  23085. source: "./media/characters/alydar/anthro.svg",
  23086. extra: 432 / 421,
  23087. bottom: 7.18 / 440
  23088. }
  23089. },
  23090. maw: {
  23091. height: math.unit(11.693, "feet"),
  23092. name: "Maw",
  23093. image: {
  23094. source: "./media/characters/alydar/maw.svg"
  23095. }
  23096. },
  23097. head: {
  23098. height: math.unit(11.693, "feet"),
  23099. name: "Head",
  23100. image: {
  23101. source: "./media/characters/alydar/head.svg"
  23102. }
  23103. },
  23104. headAlt: {
  23105. height: math.unit(12.861, "feet"),
  23106. name: "Head (Alt)",
  23107. image: {
  23108. source: "./media/characters/alydar/head-alt.svg"
  23109. }
  23110. },
  23111. wing: {
  23112. height: math.unit(20.712, "feet"),
  23113. name: "Wing",
  23114. image: {
  23115. source: "./media/characters/alydar/wing.svg"
  23116. }
  23117. },
  23118. wingFeather: {
  23119. height: math.unit(9.662, "feet"),
  23120. name: "Wing Feather",
  23121. image: {
  23122. source: "./media/characters/alydar/wing-feather.svg"
  23123. }
  23124. },
  23125. countourFeather: {
  23126. height: math.unit(4.154, "feet"),
  23127. name: "Contour Feather",
  23128. image: {
  23129. source: "./media/characters/alydar/contour-feather.svg"
  23130. }
  23131. },
  23132. },
  23133. [
  23134. {
  23135. name: "Diplomatic",
  23136. height: math.unit(13, "feet"),
  23137. default: true
  23138. },
  23139. {
  23140. name: "Small",
  23141. height: math.unit(30, "feet")
  23142. },
  23143. {
  23144. name: "Normal",
  23145. height: math.unit(95, "feet"),
  23146. default: true
  23147. },
  23148. {
  23149. name: "Large",
  23150. height: math.unit(285, "feet")
  23151. },
  23152. {
  23153. name: "Incomprehensible",
  23154. height: math.unit(450, "megameters")
  23155. },
  23156. ]
  23157. ))
  23158. characterMakers.push(() => makeCharacter(
  23159. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23160. {
  23161. side: {
  23162. height: math.unit(11, "feet"),
  23163. weight: math.unit(1750, "kg"),
  23164. name: "Side",
  23165. image: {
  23166. source: "./media/characters/selicia/side.svg",
  23167. extra: 440 / 396,
  23168. bottom: 24.8 / 465.979
  23169. }
  23170. },
  23171. maw: {
  23172. height: math.unit(4.665, "feet"),
  23173. name: "Maw",
  23174. image: {
  23175. source: "./media/characters/selicia/maw.svg"
  23176. }
  23177. },
  23178. },
  23179. [
  23180. {
  23181. name: "Normal",
  23182. height: math.unit(11, "feet"),
  23183. default: true
  23184. },
  23185. ]
  23186. ))
  23187. characterMakers.push(() => makeCharacter(
  23188. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23189. {
  23190. side: {
  23191. height: math.unit(2 + 6 / 12, "feet"),
  23192. weight: math.unit(30, "lb"),
  23193. name: "Side",
  23194. image: {
  23195. source: "./media/characters/layla/side.svg",
  23196. extra: 244 / 188,
  23197. bottom: 18.2 / 262.1
  23198. }
  23199. },
  23200. back: {
  23201. height: math.unit(2 + 6 / 12, "feet"),
  23202. weight: math.unit(30, "lb"),
  23203. name: "Back",
  23204. image: {
  23205. source: "./media/characters/layla/back.svg",
  23206. extra: 308 / 241.5,
  23207. bottom: 8.9 / 316.8
  23208. }
  23209. },
  23210. cumming: {
  23211. height: math.unit(2 + 6 / 12, "feet"),
  23212. weight: math.unit(30, "lb"),
  23213. name: "Cumming",
  23214. image: {
  23215. source: "./media/characters/layla/cumming.svg",
  23216. extra: 342 / 279,
  23217. bottom: 595 / 938
  23218. }
  23219. },
  23220. dickFlaccid: {
  23221. height: math.unit(2.595, "feet"),
  23222. name: "Flaccid Genitals",
  23223. image: {
  23224. source: "./media/characters/layla/dick-flaccid.svg"
  23225. }
  23226. },
  23227. dickErect: {
  23228. height: math.unit(2.359, "feet"),
  23229. name: "Erect Genitals",
  23230. image: {
  23231. source: "./media/characters/layla/dick-erect.svg"
  23232. }
  23233. },
  23234. dragon: {
  23235. height: math.unit(40, "feet"),
  23236. name: "Dragon",
  23237. image: {
  23238. source: "./media/characters/layla/dragon.svg",
  23239. extra: 610/535,
  23240. bottom: 367/977
  23241. }
  23242. },
  23243. taur: {
  23244. height: math.unit(30, "feet"),
  23245. name: "Taur",
  23246. image: {
  23247. source: "./media/characters/layla/taur.svg",
  23248. extra: 1268/1199,
  23249. bottom: 112/1380
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Micro",
  23256. height: math.unit(1, "inch")
  23257. },
  23258. {
  23259. name: "Small",
  23260. height: math.unit(1, "foot")
  23261. },
  23262. {
  23263. name: "Normal",
  23264. height: math.unit(2 + 6 / 12, "feet"),
  23265. default: true
  23266. },
  23267. {
  23268. name: "Macro",
  23269. height: math.unit(200, "feet")
  23270. },
  23271. {
  23272. name: "Megamacro",
  23273. height: math.unit(1000, "miles")
  23274. },
  23275. {
  23276. name: "Planetary",
  23277. height: math.unit(8000, "miles")
  23278. },
  23279. {
  23280. name: "True Layla",
  23281. height: math.unit(200000 * 7, "multiverses")
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23287. {
  23288. back: {
  23289. height: math.unit(10.5, "feet"),
  23290. weight: math.unit(800, "lb"),
  23291. name: "Back",
  23292. image: {
  23293. source: "./media/characters/knox/back.svg",
  23294. extra: 1486 / 1089,
  23295. bottom: 107 / 1601.4
  23296. }
  23297. },
  23298. side: {
  23299. height: math.unit(10.5, "feet"),
  23300. weight: math.unit(800, "lb"),
  23301. name: "Side",
  23302. image: {
  23303. source: "./media/characters/knox/side.svg",
  23304. extra: 244 / 218,
  23305. bottom: 14 / 260
  23306. }
  23307. },
  23308. },
  23309. [
  23310. {
  23311. name: "Compact",
  23312. height: math.unit(10.5, "feet"),
  23313. default: true
  23314. },
  23315. {
  23316. name: "Dynamax",
  23317. height: math.unit(210, "feet")
  23318. },
  23319. {
  23320. name: "Full Macro",
  23321. height: math.unit(850, "feet")
  23322. },
  23323. ]
  23324. ))
  23325. characterMakers.push(() => makeCharacter(
  23326. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23327. {
  23328. front: {
  23329. height: math.unit(6, "feet"),
  23330. weight: math.unit(152, "lb"),
  23331. name: "Front",
  23332. image: {
  23333. source: "./media/characters/shin-pikachu/front.svg",
  23334. extra: 1574 / 1480,
  23335. bottom: 53.3 / 1626
  23336. }
  23337. },
  23338. hand: {
  23339. height: math.unit(1.055, "feet"),
  23340. name: "Hand",
  23341. image: {
  23342. source: "./media/characters/shin-pikachu/hand.svg"
  23343. }
  23344. },
  23345. foot: {
  23346. height: math.unit(1.1, "feet"),
  23347. name: "Foot",
  23348. image: {
  23349. source: "./media/characters/shin-pikachu/foot.svg"
  23350. }
  23351. },
  23352. collar: {
  23353. height: math.unit(0.386, "feet"),
  23354. name: "Collar",
  23355. image: {
  23356. source: "./media/characters/shin-pikachu/collar.svg"
  23357. }
  23358. },
  23359. },
  23360. [
  23361. {
  23362. name: "Smallest",
  23363. height: math.unit(0.5, "inches")
  23364. },
  23365. {
  23366. name: "Micro",
  23367. height: math.unit(6, "inches")
  23368. },
  23369. {
  23370. name: "Normal",
  23371. height: math.unit(6, "feet"),
  23372. default: true
  23373. },
  23374. {
  23375. name: "Macro",
  23376. height: math.unit(150, "feet")
  23377. },
  23378. ]
  23379. ))
  23380. characterMakers.push(() => makeCharacter(
  23381. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23382. {
  23383. front: {
  23384. height: math.unit(28, "feet"),
  23385. weight: math.unit(10500, "lb"),
  23386. name: "Front",
  23387. image: {
  23388. source: "./media/characters/kayda/front.svg",
  23389. extra: 1536 / 1428,
  23390. bottom: 68.7 / 1603
  23391. }
  23392. },
  23393. back: {
  23394. height: math.unit(28, "feet"),
  23395. weight: math.unit(10500, "lb"),
  23396. name: "Back",
  23397. image: {
  23398. source: "./media/characters/kayda/back.svg",
  23399. extra: 1557 / 1464,
  23400. bottom: 39.5 / 1597.49
  23401. }
  23402. },
  23403. dick: {
  23404. height: math.unit(3.858, "feet"),
  23405. name: "Dick",
  23406. image: {
  23407. source: "./media/characters/kayda/dick.svg"
  23408. }
  23409. },
  23410. },
  23411. [
  23412. {
  23413. name: "Macro",
  23414. height: math.unit(28, "feet"),
  23415. default: true
  23416. },
  23417. ]
  23418. ))
  23419. characterMakers.push(() => makeCharacter(
  23420. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23421. {
  23422. front: {
  23423. height: math.unit(10 + 11 / 12, "feet"),
  23424. weight: math.unit(1400, "lb"),
  23425. name: "Front",
  23426. image: {
  23427. source: "./media/characters/brian/front.svg",
  23428. extra: 737 / 692,
  23429. bottom: 55.4 / 785
  23430. }
  23431. },
  23432. },
  23433. [
  23434. {
  23435. name: "Normal",
  23436. height: math.unit(10 + 11 / 12, "feet"),
  23437. default: true
  23438. },
  23439. ]
  23440. ))
  23441. characterMakers.push(() => makeCharacter(
  23442. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23443. {
  23444. front: {
  23445. height: math.unit(5 + 8 / 12, "feet"),
  23446. weight: math.unit(140, "lb"),
  23447. name: "Front",
  23448. image: {
  23449. source: "./media/characters/khemri/front.svg",
  23450. extra: 4780 / 4059,
  23451. bottom: 80.1 / 4859.25
  23452. }
  23453. },
  23454. },
  23455. [
  23456. {
  23457. name: "Micro",
  23458. height: math.unit(6, "inches")
  23459. },
  23460. {
  23461. name: "Normal",
  23462. height: math.unit(5 + 8 / 12, "feet"),
  23463. default: true
  23464. },
  23465. ]
  23466. ))
  23467. characterMakers.push(() => makeCharacter(
  23468. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23469. {
  23470. front: {
  23471. height: math.unit(13, "feet"),
  23472. weight: math.unit(1700, "lb"),
  23473. name: "Front",
  23474. image: {
  23475. source: "./media/characters/felix-braveheart/front.svg",
  23476. extra: 1222 / 1157,
  23477. bottom: 53.2 / 1280
  23478. }
  23479. },
  23480. back: {
  23481. height: math.unit(13, "feet"),
  23482. weight: math.unit(1700, "lb"),
  23483. name: "Back",
  23484. image: {
  23485. source: "./media/characters/felix-braveheart/back.svg",
  23486. extra: 1277 / 1203,
  23487. bottom: 50.2 / 1327
  23488. }
  23489. },
  23490. feral: {
  23491. height: math.unit(6, "feet"),
  23492. weight: math.unit(400, "lb"),
  23493. name: "Feral",
  23494. image: {
  23495. source: "./media/characters/felix-braveheart/feral.svg",
  23496. extra: 682 / 625,
  23497. bottom: 6.9 / 688
  23498. }
  23499. },
  23500. },
  23501. [
  23502. {
  23503. name: "Normal",
  23504. height: math.unit(13, "feet"),
  23505. default: true
  23506. },
  23507. ]
  23508. ))
  23509. characterMakers.push(() => makeCharacter(
  23510. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23511. {
  23512. side: {
  23513. height: math.unit(5 + 11 / 12, "feet"),
  23514. weight: math.unit(1400, "lb"),
  23515. name: "Side",
  23516. image: {
  23517. source: "./media/characters/shadow-blade/side.svg",
  23518. extra: 1726 / 1267,
  23519. bottom: 58.4 / 1785
  23520. }
  23521. },
  23522. },
  23523. [
  23524. {
  23525. name: "Normal",
  23526. height: math.unit(5 + 11 / 12, "feet"),
  23527. default: true
  23528. },
  23529. ]
  23530. ))
  23531. characterMakers.push(() => makeCharacter(
  23532. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23533. {
  23534. front: {
  23535. height: math.unit(1 + 6 / 12, "feet"),
  23536. weight: math.unit(25, "lb"),
  23537. name: "Front",
  23538. image: {
  23539. source: "./media/characters/karla-halldor/front.svg",
  23540. extra: 1459 / 1383,
  23541. bottom: 12 / 1472
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Normal",
  23548. height: math.unit(1 + 6 / 12, "feet"),
  23549. default: true
  23550. },
  23551. ]
  23552. ))
  23553. characterMakers.push(() => makeCharacter(
  23554. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23555. {
  23556. front: {
  23557. height: math.unit(6 + 2 / 12, "feet"),
  23558. weight: math.unit(160, "lb"),
  23559. name: "Front",
  23560. image: {
  23561. source: "./media/characters/ariam/front.svg",
  23562. extra: 714 / 617,
  23563. bottom: 23.4 / 737,
  23564. }
  23565. },
  23566. squatting: {
  23567. height: math.unit(4.1, "feet"),
  23568. weight: math.unit(160, "lb"),
  23569. name: "Squatting",
  23570. image: {
  23571. source: "./media/characters/ariam/squatting.svg",
  23572. extra: 2617 / 2112,
  23573. bottom: 61.2 / 2681,
  23574. }
  23575. },
  23576. },
  23577. [
  23578. {
  23579. name: "Normal",
  23580. height: math.unit(6 + 2 / 12, "feet"),
  23581. default: true
  23582. },
  23583. {
  23584. name: "Normal+",
  23585. height: math.unit(4, "meters")
  23586. },
  23587. {
  23588. name: "Macro",
  23589. height: math.unit(50, "meters")
  23590. },
  23591. {
  23592. name: "Macro+",
  23593. height: math.unit(100, "meters")
  23594. },
  23595. {
  23596. name: "Megamacro",
  23597. height: math.unit(20, "km")
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23603. {
  23604. front: {
  23605. height: math.unit(1.67, "meters"),
  23606. weight: math.unit(140, "lb"),
  23607. name: "Front",
  23608. image: {
  23609. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23610. extra: 438 / 410,
  23611. bottom: 0.75 / 439
  23612. }
  23613. },
  23614. },
  23615. [
  23616. {
  23617. name: "Shrunken",
  23618. height: math.unit(7.6, "cm")
  23619. },
  23620. {
  23621. name: "Human Scale",
  23622. height: math.unit(1.67, "meters")
  23623. },
  23624. {
  23625. name: "Wolxi Scale",
  23626. height: math.unit(36.7, "meters"),
  23627. default: true
  23628. },
  23629. ]
  23630. ))
  23631. characterMakers.push(() => makeCharacter(
  23632. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23633. {
  23634. front: {
  23635. height: math.unit(1.73, "meters"),
  23636. weight: math.unit(240, "lb"),
  23637. name: "Front",
  23638. image: {
  23639. source: "./media/characters/izue-two-mothers/front.svg",
  23640. extra: 469 / 437,
  23641. bottom: 1.24 / 470.6
  23642. }
  23643. },
  23644. },
  23645. [
  23646. {
  23647. name: "Shrunken",
  23648. height: math.unit(7.86, "cm")
  23649. },
  23650. {
  23651. name: "Human Scale",
  23652. height: math.unit(1.73, "meters")
  23653. },
  23654. {
  23655. name: "Wolxi Scale",
  23656. height: math.unit(38, "meters"),
  23657. default: true
  23658. },
  23659. ]
  23660. ))
  23661. characterMakers.push(() => makeCharacter(
  23662. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23663. {
  23664. front: {
  23665. height: math.unit(1.55, "meters"),
  23666. weight: math.unit(120, "lb"),
  23667. name: "Front",
  23668. image: {
  23669. source: "./media/characters/teeku-love-shack/front.svg",
  23670. extra: 387 / 362,
  23671. bottom: 1.51 / 388
  23672. }
  23673. },
  23674. },
  23675. [
  23676. {
  23677. name: "Shrunken",
  23678. height: math.unit(7, "cm")
  23679. },
  23680. {
  23681. name: "Human Scale",
  23682. height: math.unit(1.55, "meters")
  23683. },
  23684. {
  23685. name: "Wolxi Scale",
  23686. height: math.unit(34.1, "meters"),
  23687. default: true
  23688. },
  23689. ]
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23693. {
  23694. front: {
  23695. height: math.unit(1.83, "meters"),
  23696. weight: math.unit(135, "lb"),
  23697. name: "Front",
  23698. image: {
  23699. source: "./media/characters/dejma-the-red/front.svg",
  23700. extra: 480 / 458,
  23701. bottom: 1.8 / 482
  23702. }
  23703. },
  23704. },
  23705. [
  23706. {
  23707. name: "Shrunken",
  23708. height: math.unit(8.3, "cm")
  23709. },
  23710. {
  23711. name: "Human Scale",
  23712. height: math.unit(1.83, "meters")
  23713. },
  23714. {
  23715. name: "Wolxi Scale",
  23716. height: math.unit(40, "meters"),
  23717. default: true
  23718. },
  23719. ]
  23720. ))
  23721. characterMakers.push(() => makeCharacter(
  23722. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23723. {
  23724. front: {
  23725. height: math.unit(1.78, "meters"),
  23726. weight: math.unit(65, "kg"),
  23727. name: "Front",
  23728. image: {
  23729. source: "./media/characters/aki/front.svg",
  23730. extra: 452 / 415
  23731. }
  23732. },
  23733. frontNsfw: {
  23734. height: math.unit(1.78, "meters"),
  23735. weight: math.unit(65, "kg"),
  23736. name: "Front (NSFW)",
  23737. image: {
  23738. source: "./media/characters/aki/front-nsfw.svg",
  23739. extra: 452 / 415
  23740. }
  23741. },
  23742. back: {
  23743. height: math.unit(1.78, "meters"),
  23744. weight: math.unit(65, "kg"),
  23745. name: "Back",
  23746. image: {
  23747. source: "./media/characters/aki/back.svg",
  23748. extra: 452 / 415
  23749. }
  23750. },
  23751. rump: {
  23752. height: math.unit(2.05, "feet"),
  23753. name: "Rump",
  23754. image: {
  23755. source: "./media/characters/aki/rump.svg"
  23756. }
  23757. },
  23758. dick: {
  23759. height: math.unit(0.95, "feet"),
  23760. name: "Dick",
  23761. image: {
  23762. source: "./media/characters/aki/dick.svg"
  23763. }
  23764. },
  23765. },
  23766. [
  23767. {
  23768. name: "Micro",
  23769. height: math.unit(15, "cm")
  23770. },
  23771. {
  23772. name: "Normal",
  23773. height: math.unit(178, "cm"),
  23774. default: true
  23775. },
  23776. {
  23777. name: "Macro",
  23778. height: math.unit(214, "m")
  23779. },
  23780. {
  23781. name: "Macro+",
  23782. height: math.unit(534, "m")
  23783. },
  23784. ]
  23785. ))
  23786. characterMakers.push(() => makeCharacter(
  23787. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23788. {
  23789. front: {
  23790. height: math.unit(5 + 5 / 12, "feet"),
  23791. weight: math.unit(120, "lb"),
  23792. name: "Front",
  23793. image: {
  23794. source: "./media/characters/ari/front.svg",
  23795. extra: 714.5 / 682,
  23796. bottom: 8 / 722.5
  23797. }
  23798. },
  23799. },
  23800. [
  23801. {
  23802. name: "Normal",
  23803. height: math.unit(5 + 5 / 12, "feet")
  23804. },
  23805. {
  23806. name: "Macro",
  23807. height: math.unit(100, "feet"),
  23808. default: true
  23809. },
  23810. {
  23811. name: "Megamacro",
  23812. height: math.unit(100, "miles")
  23813. },
  23814. {
  23815. name: "Gigamacro",
  23816. height: math.unit(80000, "miles")
  23817. },
  23818. ]
  23819. ))
  23820. characterMakers.push(() => makeCharacter(
  23821. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23822. {
  23823. side: {
  23824. height: math.unit(9, "feet"),
  23825. weight: math.unit(400, "kg"),
  23826. name: "Side",
  23827. image: {
  23828. source: "./media/characters/bolt/side.svg",
  23829. extra: 1126 / 896,
  23830. bottom: 60 / 1187.3,
  23831. }
  23832. },
  23833. },
  23834. [
  23835. {
  23836. name: "Micro",
  23837. height: math.unit(5, "inches")
  23838. },
  23839. {
  23840. name: "Normal",
  23841. height: math.unit(9, "feet"),
  23842. default: true
  23843. },
  23844. {
  23845. name: "Macro",
  23846. height: math.unit(700, "feet")
  23847. },
  23848. {
  23849. name: "Max Size",
  23850. height: math.unit(1.52e22, "yottameters")
  23851. },
  23852. ]
  23853. ))
  23854. characterMakers.push(() => makeCharacter(
  23855. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23856. {
  23857. front: {
  23858. height: math.unit(4.53, "meters"),
  23859. weight: math.unit(3, "tons"),
  23860. name: "Front",
  23861. image: {
  23862. source: "./media/characters/draekon-sylviar/front.svg",
  23863. extra: 1228 / 1068,
  23864. bottom: 41 / 1270
  23865. }
  23866. },
  23867. tail: {
  23868. height: math.unit(1.772, "meter"),
  23869. name: "Tail",
  23870. image: {
  23871. source: "./media/characters/draekon-sylviar/tail.svg"
  23872. }
  23873. },
  23874. head: {
  23875. height: math.unit(1.331, "meter"),
  23876. name: "Head",
  23877. image: {
  23878. source: "./media/characters/draekon-sylviar/head.svg"
  23879. }
  23880. },
  23881. hand: {
  23882. height: math.unit(0.564, "meter"),
  23883. name: "Hand",
  23884. image: {
  23885. source: "./media/characters/draekon-sylviar/hand.svg"
  23886. }
  23887. },
  23888. foot: {
  23889. height: math.unit(0.621, "meter"),
  23890. name: "Foot",
  23891. image: {
  23892. source: "./media/characters/draekon-sylviar/foot.svg",
  23893. bottom: 32 / 324
  23894. }
  23895. },
  23896. dick: {
  23897. height: math.unit(61, "cm"),
  23898. name: "Dick",
  23899. image: {
  23900. source: "./media/characters/draekon-sylviar/dick.svg"
  23901. }
  23902. },
  23903. dickseparated: {
  23904. height: math.unit(61, "cm"),
  23905. name: "Dick-separated",
  23906. image: {
  23907. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23908. }
  23909. },
  23910. },
  23911. [
  23912. {
  23913. name: "Small",
  23914. height: math.unit(4.53 / 2, "meters"),
  23915. default: true
  23916. },
  23917. {
  23918. name: "Normal",
  23919. height: math.unit(4.53, "meters"),
  23920. default: true
  23921. },
  23922. {
  23923. name: "Large",
  23924. height: math.unit(4.53 * 2, "meters"),
  23925. },
  23926. ]
  23927. ))
  23928. characterMakers.push(() => makeCharacter(
  23929. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23930. {
  23931. front: {
  23932. height: math.unit(6 + 2 / 12, "feet"),
  23933. weight: math.unit(180, "lb"),
  23934. name: "Front",
  23935. image: {
  23936. source: "./media/characters/brawler/front.svg",
  23937. extra: 3301 / 3027,
  23938. bottom: 138 / 3439
  23939. }
  23940. },
  23941. },
  23942. [
  23943. {
  23944. name: "Normal",
  23945. height: math.unit(6 + 2 / 12, "feet"),
  23946. default: true
  23947. },
  23948. ]
  23949. ))
  23950. characterMakers.push(() => makeCharacter(
  23951. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23952. {
  23953. front: {
  23954. height: math.unit(11, "feet"),
  23955. weight: math.unit(1000, "lb"),
  23956. name: "Front",
  23957. image: {
  23958. source: "./media/characters/alex/front.svg",
  23959. bottom: 44.5 / 620
  23960. }
  23961. },
  23962. },
  23963. [
  23964. {
  23965. name: "Micro",
  23966. height: math.unit(5, "inches")
  23967. },
  23968. {
  23969. name: "Normal",
  23970. height: math.unit(11, "feet"),
  23971. default: true
  23972. },
  23973. {
  23974. name: "Macro",
  23975. height: math.unit(9.5e9, "feet")
  23976. },
  23977. {
  23978. name: "Max Size",
  23979. height: math.unit(1.4e283, "yottameters")
  23980. },
  23981. ]
  23982. ))
  23983. characterMakers.push(() => makeCharacter(
  23984. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23985. {
  23986. female: {
  23987. height: math.unit(29.9, "m"),
  23988. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23989. name: "Female",
  23990. image: {
  23991. source: "./media/characters/zenari/female.svg",
  23992. extra: 3281.6 / 3217,
  23993. bottom: 72.2 / 3353
  23994. }
  23995. },
  23996. male: {
  23997. height: math.unit(27.7, "m"),
  23998. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23999. name: "Male",
  24000. image: {
  24001. source: "./media/characters/zenari/male.svg",
  24002. extra: 3008 / 2991,
  24003. bottom: 54.6 / 3069
  24004. }
  24005. },
  24006. },
  24007. [
  24008. {
  24009. name: "Macro",
  24010. height: math.unit(29.7, "meters"),
  24011. default: true
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24017. {
  24018. female: {
  24019. height: math.unit(23.8, "m"),
  24020. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24021. name: "Female",
  24022. image: {
  24023. source: "./media/characters/mactarian/female.svg",
  24024. extra: 2662 / 2569,
  24025. bottom: 73 / 2736
  24026. }
  24027. },
  24028. male: {
  24029. height: math.unit(23.8, "m"),
  24030. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24031. name: "Male",
  24032. image: {
  24033. source: "./media/characters/mactarian/male.svg",
  24034. extra: 2673 / 2600,
  24035. bottom: 76 / 2750
  24036. }
  24037. },
  24038. },
  24039. [
  24040. {
  24041. name: "Macro",
  24042. height: math.unit(23.8, "meters"),
  24043. default: true
  24044. },
  24045. ]
  24046. ))
  24047. characterMakers.push(() => makeCharacter(
  24048. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24049. {
  24050. female: {
  24051. height: math.unit(19.3, "m"),
  24052. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24053. name: "Female",
  24054. image: {
  24055. source: "./media/characters/umok/female.svg",
  24056. extra: 2186 / 2078,
  24057. bottom: 87 / 2277
  24058. }
  24059. },
  24060. male: {
  24061. height: math.unit(19.5, "m"),
  24062. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24063. name: "Male",
  24064. image: {
  24065. source: "./media/characters/umok/male.svg",
  24066. extra: 2233 / 2140,
  24067. bottom: 24.4 / 2258
  24068. }
  24069. },
  24070. },
  24071. [
  24072. {
  24073. name: "Macro",
  24074. height: math.unit(19.3, "meters"),
  24075. default: true
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24081. {
  24082. female: {
  24083. height: math.unit(26.15, "m"),
  24084. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24085. name: "Female",
  24086. image: {
  24087. source: "./media/characters/joraxian/female.svg",
  24088. extra: 2912 / 2824,
  24089. bottom: 36 / 2956
  24090. }
  24091. },
  24092. male: {
  24093. height: math.unit(25.4, "m"),
  24094. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24095. name: "Male",
  24096. image: {
  24097. source: "./media/characters/joraxian/male.svg",
  24098. extra: 2877 / 2721,
  24099. bottom: 82 / 2967
  24100. }
  24101. },
  24102. },
  24103. [
  24104. {
  24105. name: "Macro",
  24106. height: math.unit(26.15, "meters"),
  24107. default: true
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24113. {
  24114. female: {
  24115. height: math.unit(21.6, "m"),
  24116. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24117. name: "Female",
  24118. image: {
  24119. source: "./media/characters/sthara/female.svg",
  24120. extra: 2516 / 2347,
  24121. bottom: 21.5 / 2537
  24122. }
  24123. },
  24124. male: {
  24125. height: math.unit(24, "m"),
  24126. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24127. name: "Male",
  24128. image: {
  24129. source: "./media/characters/sthara/male.svg",
  24130. extra: 2732 / 2607,
  24131. bottom: 23 / 2732
  24132. }
  24133. },
  24134. },
  24135. [
  24136. {
  24137. name: "Macro",
  24138. height: math.unit(21.6, "meters"),
  24139. default: true
  24140. },
  24141. ]
  24142. ))
  24143. characterMakers.push(() => makeCharacter(
  24144. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24145. {
  24146. front: {
  24147. height: math.unit(6 + 4 / 12, "feet"),
  24148. weight: math.unit(175, "lb"),
  24149. name: "Front",
  24150. image: {
  24151. source: "./media/characters/luka-bryzant/front.svg",
  24152. extra: 311 / 289,
  24153. bottom: 4 / 315
  24154. }
  24155. },
  24156. back: {
  24157. height: math.unit(6 + 4 / 12, "feet"),
  24158. weight: math.unit(175, "lb"),
  24159. name: "Back",
  24160. image: {
  24161. source: "./media/characters/luka-bryzant/back.svg",
  24162. extra: 311 / 289,
  24163. bottom: 3.8 / 313.7
  24164. }
  24165. },
  24166. },
  24167. [
  24168. {
  24169. name: "Micro",
  24170. height: math.unit(10, "inches")
  24171. },
  24172. {
  24173. name: "Normal",
  24174. height: math.unit(6 + 4 / 12, "feet"),
  24175. default: true
  24176. },
  24177. {
  24178. name: "Large",
  24179. height: math.unit(12, "feet")
  24180. },
  24181. ]
  24182. ))
  24183. characterMakers.push(() => makeCharacter(
  24184. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24185. {
  24186. front: {
  24187. height: math.unit(5 + 7 / 12, "feet"),
  24188. weight: math.unit(185, "lb"),
  24189. name: "Front",
  24190. image: {
  24191. source: "./media/characters/aman-aquila/front.svg",
  24192. extra: 1013 / 976,
  24193. bottom: 45.6 / 1057
  24194. }
  24195. },
  24196. side: {
  24197. height: math.unit(5 + 7 / 12, "feet"),
  24198. weight: math.unit(185, "lb"),
  24199. name: "Side",
  24200. image: {
  24201. source: "./media/characters/aman-aquila/side.svg",
  24202. extra: 1054 / 1011,
  24203. bottom: 15 / 1070
  24204. }
  24205. },
  24206. back: {
  24207. height: math.unit(5 + 7 / 12, "feet"),
  24208. weight: math.unit(185, "lb"),
  24209. name: "Back",
  24210. image: {
  24211. source: "./media/characters/aman-aquila/back.svg",
  24212. extra: 1026 / 970,
  24213. bottom: 12 / 1039
  24214. }
  24215. },
  24216. head: {
  24217. height: math.unit(1.211, "feet"),
  24218. name: "Head",
  24219. image: {
  24220. source: "./media/characters/aman-aquila/head.svg",
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Minimicro",
  24227. height: math.unit(0.057, "inches")
  24228. },
  24229. {
  24230. name: "Micro",
  24231. height: math.unit(7, "inches")
  24232. },
  24233. {
  24234. name: "Mini",
  24235. height: math.unit(3 + 7 / 12, "feet")
  24236. },
  24237. {
  24238. name: "Normal",
  24239. height: math.unit(5 + 7 / 12, "feet"),
  24240. default: true
  24241. },
  24242. {
  24243. name: "Macro",
  24244. height: math.unit(157 + 7 / 12, "feet")
  24245. },
  24246. {
  24247. name: "Megamacro",
  24248. height: math.unit(1557 + 7 / 12, "feet")
  24249. },
  24250. {
  24251. name: "Gigamacro",
  24252. height: math.unit(15557 + 7 / 12, "feet")
  24253. },
  24254. ]
  24255. ))
  24256. characterMakers.push(() => makeCharacter(
  24257. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24258. {
  24259. front: {
  24260. height: math.unit(3 + 2 / 12, "inches"),
  24261. weight: math.unit(0.3, "ounces"),
  24262. name: "Front",
  24263. image: {
  24264. source: "./media/characters/hiphae/front.svg",
  24265. extra: 1931 / 1683,
  24266. bottom: 24 / 1955
  24267. }
  24268. },
  24269. },
  24270. [
  24271. {
  24272. name: "Normal",
  24273. height: math.unit(3 + 1 / 2, "inches"),
  24274. default: true
  24275. },
  24276. ]
  24277. ))
  24278. characterMakers.push(() => makeCharacter(
  24279. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24280. {
  24281. front: {
  24282. height: math.unit(5 + 10 / 12, "feet"),
  24283. weight: math.unit(165, "lb"),
  24284. name: "Front",
  24285. image: {
  24286. source: "./media/characters/nicky/front.svg",
  24287. extra: 3144 / 2886,
  24288. bottom: 45.6 / 3192
  24289. }
  24290. },
  24291. back: {
  24292. height: math.unit(5 + 10 / 12, "feet"),
  24293. weight: math.unit(165, "lb"),
  24294. name: "Back",
  24295. image: {
  24296. source: "./media/characters/nicky/back.svg",
  24297. extra: 3055 / 2804,
  24298. bottom: 28.4 / 3087
  24299. }
  24300. },
  24301. frontclothed: {
  24302. height: math.unit(5 + 10 / 12, "feet"),
  24303. weight: math.unit(165, "lb"),
  24304. name: "Front-clothed",
  24305. image: {
  24306. source: "./media/characters/nicky/front-clothed.svg",
  24307. extra: 3184.9 / 2926.9,
  24308. bottom: 86.5 / 3239.9
  24309. }
  24310. },
  24311. foot: {
  24312. height: math.unit(1.16, "feet"),
  24313. name: "Foot",
  24314. image: {
  24315. source: "./media/characters/nicky/foot.svg"
  24316. }
  24317. },
  24318. feet: {
  24319. height: math.unit(1.34, "feet"),
  24320. name: "Feet",
  24321. image: {
  24322. source: "./media/characters/nicky/feet.svg"
  24323. }
  24324. },
  24325. maw: {
  24326. height: math.unit(0.9, "feet"),
  24327. name: "Maw",
  24328. image: {
  24329. source: "./media/characters/nicky/maw.svg"
  24330. }
  24331. },
  24332. },
  24333. [
  24334. {
  24335. name: "Normal",
  24336. height: math.unit(5 + 10 / 12, "feet"),
  24337. default: true
  24338. },
  24339. {
  24340. name: "Macro",
  24341. height: math.unit(60, "feet")
  24342. },
  24343. {
  24344. name: "Megamacro",
  24345. height: math.unit(1, "mile")
  24346. },
  24347. ]
  24348. ))
  24349. characterMakers.push(() => makeCharacter(
  24350. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24351. {
  24352. side: {
  24353. height: math.unit(10, "feet"),
  24354. weight: math.unit(600, "lb"),
  24355. name: "Side",
  24356. image: {
  24357. source: "./media/characters/blair/side.svg",
  24358. bottom: 16.6 / 475,
  24359. extra: 458 / 431
  24360. }
  24361. },
  24362. },
  24363. [
  24364. {
  24365. name: "Micro",
  24366. height: math.unit(8, "inches")
  24367. },
  24368. {
  24369. name: "Normal",
  24370. height: math.unit(10, "feet"),
  24371. default: true
  24372. },
  24373. {
  24374. name: "Macro",
  24375. height: math.unit(180, "feet")
  24376. },
  24377. ]
  24378. ))
  24379. characterMakers.push(() => makeCharacter(
  24380. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24381. {
  24382. front: {
  24383. height: math.unit(5 + 4 / 12, "feet"),
  24384. weight: math.unit(125, "lb"),
  24385. name: "Front",
  24386. image: {
  24387. source: "./media/characters/fisher/front.svg",
  24388. extra: 444 / 390,
  24389. bottom: 2 / 444.8
  24390. }
  24391. },
  24392. },
  24393. [
  24394. {
  24395. name: "Micro",
  24396. height: math.unit(4, "inches")
  24397. },
  24398. {
  24399. name: "Normal",
  24400. height: math.unit(5 + 4 / 12, "feet"),
  24401. default: true
  24402. },
  24403. {
  24404. name: "Macro",
  24405. height: math.unit(100, "feet")
  24406. },
  24407. ]
  24408. ))
  24409. characterMakers.push(() => makeCharacter(
  24410. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24411. {
  24412. front: {
  24413. height: math.unit(6.71, "feet"),
  24414. weight: math.unit(200, "lb"),
  24415. capacity: math.unit(1000000, "people"),
  24416. name: "Front",
  24417. image: {
  24418. source: "./media/characters/gliss/front.svg",
  24419. extra: 2347 / 2231,
  24420. bottom: 113 / 2462
  24421. }
  24422. },
  24423. hammerspaceSize: {
  24424. height: math.unit(6.71 * 717, "feet"),
  24425. weight: math.unit(200, "lb"),
  24426. capacity: math.unit(1000000, "people"),
  24427. name: "Hammerspace Size",
  24428. image: {
  24429. source: "./media/characters/gliss/front.svg",
  24430. extra: 2347 / 2231,
  24431. bottom: 113 / 2462
  24432. }
  24433. },
  24434. },
  24435. [
  24436. {
  24437. name: "Normal",
  24438. height: math.unit(6.71, "feet"),
  24439. default: true
  24440. },
  24441. ]
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24445. {
  24446. side: {
  24447. height: math.unit(1.44, "m"),
  24448. weight: math.unit(80, "kg"),
  24449. name: "Side",
  24450. image: {
  24451. source: "./media/characters/dune-anderson/side.svg",
  24452. bottom: 49 / 1426
  24453. }
  24454. },
  24455. },
  24456. [
  24457. {
  24458. name: "Wolf-sized",
  24459. height: math.unit(1.44, "meters")
  24460. },
  24461. {
  24462. name: "Normal",
  24463. height: math.unit(5.05, "meters"),
  24464. default: true
  24465. },
  24466. {
  24467. name: "Big",
  24468. height: math.unit(14.4, "meters")
  24469. },
  24470. {
  24471. name: "Huge",
  24472. height: math.unit(144, "meters")
  24473. },
  24474. ]
  24475. ))
  24476. characterMakers.push(() => makeCharacter(
  24477. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24478. {
  24479. front: {
  24480. height: math.unit(7, "feet"),
  24481. weight: math.unit(425, "lb"),
  24482. name: "Front",
  24483. image: {
  24484. source: "./media/characters/hind/front.svg",
  24485. extra: 2091 / 1860,
  24486. bottom: 129 / 2220
  24487. }
  24488. },
  24489. back: {
  24490. height: math.unit(7, "feet"),
  24491. weight: math.unit(425, "lb"),
  24492. name: "Back",
  24493. image: {
  24494. source: "./media/characters/hind/back.svg",
  24495. extra: 2091 / 1860,
  24496. bottom: 24.6 / 2309
  24497. }
  24498. },
  24499. tail: {
  24500. height: math.unit(2.8, "feet"),
  24501. name: "Tail",
  24502. image: {
  24503. source: "./media/characters/hind/tail.svg"
  24504. }
  24505. },
  24506. head: {
  24507. height: math.unit(2.55, "feet"),
  24508. name: "Head",
  24509. image: {
  24510. source: "./media/characters/hind/head.svg"
  24511. }
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "XS",
  24517. height: math.unit(0.7, "feet")
  24518. },
  24519. {
  24520. name: "Normal",
  24521. height: math.unit(7, "feet"),
  24522. default: true
  24523. },
  24524. {
  24525. name: "XL",
  24526. height: math.unit(70, "feet")
  24527. },
  24528. ]
  24529. ))
  24530. characterMakers.push(() => makeCharacter(
  24531. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24532. {
  24533. front: {
  24534. height: math.unit(6, "feet"),
  24535. weight: math.unit(150, "lb"),
  24536. name: "Front",
  24537. image: {
  24538. source: "./media/characters/dylan-skaven/front.svg",
  24539. extra: 2318 / 2063,
  24540. bottom: 93.4 / 2410
  24541. }
  24542. },
  24543. },
  24544. [
  24545. {
  24546. name: "Nano",
  24547. height: math.unit(1, "mm")
  24548. },
  24549. {
  24550. name: "Micro",
  24551. height: math.unit(1, "cm")
  24552. },
  24553. {
  24554. name: "Normal",
  24555. height: math.unit(2.1, "meters"),
  24556. default: true
  24557. },
  24558. ]
  24559. ))
  24560. characterMakers.push(() => makeCharacter(
  24561. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24562. {
  24563. front: {
  24564. height: math.unit(7 + 5 / 12, "feet"),
  24565. weight: math.unit(357, "lb"),
  24566. name: "Front",
  24567. image: {
  24568. source: "./media/characters/solex-draconov/front.svg",
  24569. extra: 1993 / 1865,
  24570. bottom: 117 / 2111
  24571. }
  24572. },
  24573. },
  24574. [
  24575. {
  24576. name: "Natural Height",
  24577. height: math.unit(7 + 5 / 12, "feet"),
  24578. default: true
  24579. },
  24580. {
  24581. name: "Macro",
  24582. height: math.unit(350, "feet")
  24583. },
  24584. {
  24585. name: "Macro+",
  24586. height: math.unit(1000, "feet")
  24587. },
  24588. {
  24589. name: "Megamacro",
  24590. height: math.unit(20, "km")
  24591. },
  24592. {
  24593. name: "Megamacro+",
  24594. height: math.unit(1000, "km")
  24595. },
  24596. {
  24597. name: "Gigamacro",
  24598. height: math.unit(2.5, "Gm")
  24599. },
  24600. {
  24601. name: "Teramacro",
  24602. height: math.unit(15, "Tm")
  24603. },
  24604. {
  24605. name: "Galactic",
  24606. height: math.unit(30, "Zm")
  24607. },
  24608. {
  24609. name: "Universal",
  24610. height: math.unit(21000, "Ym")
  24611. },
  24612. {
  24613. name: "Omniversal",
  24614. height: math.unit(9.861e50, "Ym")
  24615. },
  24616. {
  24617. name: "Existential",
  24618. height: math.unit(1e300, "meters")
  24619. },
  24620. ]
  24621. ))
  24622. characterMakers.push(() => makeCharacter(
  24623. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24624. {
  24625. side: {
  24626. height: math.unit(25, "feet"),
  24627. weight: math.unit(90000, "lb"),
  24628. name: "Side",
  24629. image: {
  24630. source: "./media/characters/mandarax/side.svg",
  24631. extra: 614 / 332,
  24632. bottom: 55 / 630
  24633. }
  24634. },
  24635. head: {
  24636. height: math.unit(11.4, "feet"),
  24637. name: "Head",
  24638. image: {
  24639. source: "./media/characters/mandarax/head.svg"
  24640. }
  24641. },
  24642. belly: {
  24643. height: math.unit(33, "feet"),
  24644. name: "Belly",
  24645. capacity: math.unit(500, "people"),
  24646. image: {
  24647. source: "./media/characters/mandarax/belly.svg"
  24648. }
  24649. },
  24650. dick: {
  24651. height: math.unit(8.46, "feet"),
  24652. name: "Dick",
  24653. image: {
  24654. source: "./media/characters/mandarax/dick.svg"
  24655. }
  24656. },
  24657. top: {
  24658. height: math.unit(28, "meters"),
  24659. name: "Top",
  24660. image: {
  24661. source: "./media/characters/mandarax/top.svg"
  24662. }
  24663. },
  24664. },
  24665. [
  24666. {
  24667. name: "Normal",
  24668. height: math.unit(25, "feet"),
  24669. default: true
  24670. },
  24671. ]
  24672. ))
  24673. characterMakers.push(() => makeCharacter(
  24674. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24675. {
  24676. front: {
  24677. height: math.unit(5, "feet"),
  24678. weight: math.unit(90, "lb"),
  24679. name: "Front",
  24680. image: {
  24681. source: "./media/characters/pixil/front.svg",
  24682. extra: 2000 / 1618,
  24683. bottom: 12.3 / 2011
  24684. }
  24685. },
  24686. },
  24687. [
  24688. {
  24689. name: "Normal",
  24690. height: math.unit(5, "feet"),
  24691. default: true
  24692. },
  24693. {
  24694. name: "Megamacro",
  24695. height: math.unit(10, "miles"),
  24696. },
  24697. ]
  24698. ))
  24699. characterMakers.push(() => makeCharacter(
  24700. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24701. {
  24702. front: {
  24703. height: math.unit(7 + 2 / 12, "feet"),
  24704. weight: math.unit(200, "lb"),
  24705. name: "Front",
  24706. image: {
  24707. source: "./media/characters/angel/front.svg",
  24708. extra: 1830 / 1737,
  24709. bottom: 22.6 / 1854,
  24710. }
  24711. },
  24712. },
  24713. [
  24714. {
  24715. name: "Normal",
  24716. height: math.unit(7 + 2 / 12, "feet"),
  24717. default: true
  24718. },
  24719. {
  24720. name: "Macro",
  24721. height: math.unit(1000, "feet")
  24722. },
  24723. {
  24724. name: "Megamacro",
  24725. height: math.unit(2, "miles")
  24726. },
  24727. {
  24728. name: "Gigamacro",
  24729. height: math.unit(20, "earths")
  24730. },
  24731. ]
  24732. ))
  24733. characterMakers.push(() => makeCharacter(
  24734. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24735. {
  24736. front: {
  24737. height: math.unit(5, "feet"),
  24738. weight: math.unit(180, "lb"),
  24739. name: "Front",
  24740. image: {
  24741. source: "./media/characters/mekana/front.svg",
  24742. extra: 1671 / 1605,
  24743. bottom: 3.5 / 1691
  24744. }
  24745. },
  24746. side: {
  24747. height: math.unit(5, "feet"),
  24748. weight: math.unit(180, "lb"),
  24749. name: "Side",
  24750. image: {
  24751. source: "./media/characters/mekana/side.svg",
  24752. extra: 1671 / 1605,
  24753. bottom: 3.5 / 1691
  24754. }
  24755. },
  24756. back: {
  24757. height: math.unit(5, "feet"),
  24758. weight: math.unit(180, "lb"),
  24759. name: "Back",
  24760. image: {
  24761. source: "./media/characters/mekana/back.svg",
  24762. extra: 1671 / 1605,
  24763. bottom: 3.5 / 1691
  24764. }
  24765. },
  24766. },
  24767. [
  24768. {
  24769. name: "Normal",
  24770. height: math.unit(5, "feet"),
  24771. default: true
  24772. },
  24773. ]
  24774. ))
  24775. characterMakers.push(() => makeCharacter(
  24776. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24777. {
  24778. front: {
  24779. height: math.unit(4 + 6 / 12, "feet"),
  24780. weight: math.unit(80, "lb"),
  24781. name: "Front",
  24782. image: {
  24783. source: "./media/characters/pixie/front.svg",
  24784. extra: 1924 / 1825,
  24785. bottom: 22.4 / 1946
  24786. }
  24787. },
  24788. },
  24789. [
  24790. {
  24791. name: "Normal",
  24792. height: math.unit(4 + 6 / 12, "feet"),
  24793. default: true
  24794. },
  24795. {
  24796. name: "Macro",
  24797. height: math.unit(40, "feet")
  24798. },
  24799. ]
  24800. ))
  24801. characterMakers.push(() => makeCharacter(
  24802. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24803. {
  24804. front: {
  24805. height: math.unit(2.1, "meters"),
  24806. weight: math.unit(200, "lb"),
  24807. name: "Front",
  24808. image: {
  24809. source: "./media/characters/the-lascivious/front.svg",
  24810. extra: 1 / 0.893,
  24811. bottom: 3.5 / 573.7
  24812. }
  24813. },
  24814. },
  24815. [
  24816. {
  24817. name: "Human Scale",
  24818. height: math.unit(2.1, "meters")
  24819. },
  24820. {
  24821. name: "Wolxi Scale",
  24822. height: math.unit(46.2, "m"),
  24823. default: true
  24824. },
  24825. {
  24826. name: "Boinker of Buildings",
  24827. height: math.unit(10, "km")
  24828. },
  24829. {
  24830. name: "Shagger of Skyscrapers",
  24831. height: math.unit(40, "km")
  24832. },
  24833. {
  24834. name: "Banger of Boroughs",
  24835. height: math.unit(4000, "km")
  24836. },
  24837. {
  24838. name: "Screwer of States",
  24839. height: math.unit(100000, "km")
  24840. },
  24841. {
  24842. name: "Pounder of Planets",
  24843. height: math.unit(2000000, "km")
  24844. },
  24845. ]
  24846. ))
  24847. characterMakers.push(() => makeCharacter(
  24848. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24849. {
  24850. front: {
  24851. height: math.unit(6, "feet"),
  24852. weight: math.unit(150, "lb"),
  24853. name: "Front",
  24854. image: {
  24855. source: "./media/characters/aj/front.svg",
  24856. extra: 2039 / 1562,
  24857. bottom: 40 / 2079
  24858. }
  24859. },
  24860. },
  24861. [
  24862. {
  24863. name: "Normal",
  24864. height: math.unit(11 + 6 / 12, "feet"),
  24865. default: true
  24866. },
  24867. {
  24868. name: "Megamacro",
  24869. height: math.unit(60, "megameters")
  24870. },
  24871. ]
  24872. ))
  24873. characterMakers.push(() => makeCharacter(
  24874. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24875. {
  24876. side: {
  24877. height: math.unit(31 + 8 / 12, "feet"),
  24878. weight: math.unit(75000, "kg"),
  24879. name: "Side",
  24880. image: {
  24881. source: "./media/characters/koros/side.svg",
  24882. extra: 1442 / 1297,
  24883. bottom: 122.7 / 1562
  24884. }
  24885. },
  24886. dicksKingsCrown: {
  24887. height: math.unit(6, "feet"),
  24888. name: "Dicks (King's Crown)",
  24889. image: {
  24890. source: "./media/characters/koros/dicks-kings-crown.svg"
  24891. }
  24892. },
  24893. dicksTailSet: {
  24894. height: math.unit(3, "feet"),
  24895. name: "Dicks (Tail Set)",
  24896. image: {
  24897. source: "./media/characters/koros/dicks-tail-set.svg"
  24898. }
  24899. },
  24900. dickCumming: {
  24901. height: math.unit(7.98, "feet"),
  24902. name: "Dick (Cumming)",
  24903. image: {
  24904. source: "./media/characters/koros/dick-cumming.svg"
  24905. }
  24906. },
  24907. dicksBack: {
  24908. height: math.unit(5.9, "feet"),
  24909. name: "Dicks (Back)",
  24910. image: {
  24911. source: "./media/characters/koros/dicks-back.svg"
  24912. }
  24913. },
  24914. dicksFront: {
  24915. height: math.unit(3.72, "feet"),
  24916. name: "Dicks (Front)",
  24917. image: {
  24918. source: "./media/characters/koros/dicks-front.svg"
  24919. }
  24920. },
  24921. dicksPeeking: {
  24922. height: math.unit(3.0, "feet"),
  24923. name: "Dicks (Peeking)",
  24924. image: {
  24925. source: "./media/characters/koros/dicks-peeking.svg"
  24926. }
  24927. },
  24928. eye: {
  24929. height: math.unit(1.7, "feet"),
  24930. name: "Eye",
  24931. image: {
  24932. source: "./media/characters/koros/eye.svg"
  24933. }
  24934. },
  24935. headFront: {
  24936. height: math.unit(11.69, "feet"),
  24937. name: "Head (Front)",
  24938. image: {
  24939. source: "./media/characters/koros/head-front.svg"
  24940. }
  24941. },
  24942. headSide: {
  24943. height: math.unit(14, "feet"),
  24944. name: "Head (Side)",
  24945. image: {
  24946. source: "./media/characters/koros/head-side.svg"
  24947. }
  24948. },
  24949. leg: {
  24950. height: math.unit(17, "feet"),
  24951. name: "Leg",
  24952. image: {
  24953. source: "./media/characters/koros/leg.svg"
  24954. }
  24955. },
  24956. mawSide: {
  24957. height: math.unit(12.8, "feet"),
  24958. name: "Maw (Side)",
  24959. image: {
  24960. source: "./media/characters/koros/maw-side.svg"
  24961. }
  24962. },
  24963. mawSpitting: {
  24964. height: math.unit(17, "feet"),
  24965. name: "Maw (Spitting)",
  24966. image: {
  24967. source: "./media/characters/koros/maw-spitting.svg"
  24968. }
  24969. },
  24970. slit: {
  24971. height: math.unit(2.8, "feet"),
  24972. name: "Slit",
  24973. image: {
  24974. source: "./media/characters/koros/slit.svg"
  24975. }
  24976. },
  24977. stomach: {
  24978. height: math.unit(6.8, "feet"),
  24979. capacity: math.unit(20, "people"),
  24980. name: "Stomach",
  24981. image: {
  24982. source: "./media/characters/koros/stomach.svg"
  24983. }
  24984. },
  24985. wingspanBottom: {
  24986. height: math.unit(114, "feet"),
  24987. name: "Wingspan (Bottom)",
  24988. image: {
  24989. source: "./media/characters/koros/wingspan-bottom.svg"
  24990. }
  24991. },
  24992. wingspanTop: {
  24993. height: math.unit(104, "feet"),
  24994. name: "Wingspan (Top)",
  24995. image: {
  24996. source: "./media/characters/koros/wingspan-top.svg"
  24997. }
  24998. },
  24999. },
  25000. [
  25001. {
  25002. name: "Normal",
  25003. height: math.unit(31 + 8 / 12, "feet"),
  25004. default: true
  25005. },
  25006. ]
  25007. ))
  25008. characterMakers.push(() => makeCharacter(
  25009. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25010. {
  25011. front: {
  25012. height: math.unit(18 + 5 / 12, "feet"),
  25013. weight: math.unit(3750, "kg"),
  25014. name: "Front",
  25015. image: {
  25016. source: "./media/characters/vexx/front.svg",
  25017. extra: 426 / 396,
  25018. bottom: 31.5 / 458
  25019. }
  25020. },
  25021. maw: {
  25022. height: math.unit(6, "feet"),
  25023. name: "Maw",
  25024. image: {
  25025. source: "./media/characters/vexx/maw.svg"
  25026. }
  25027. },
  25028. },
  25029. [
  25030. {
  25031. name: "Normal",
  25032. height: math.unit(18 + 5 / 12, "feet"),
  25033. default: true
  25034. },
  25035. ]
  25036. ))
  25037. characterMakers.push(() => makeCharacter(
  25038. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25039. {
  25040. front: {
  25041. height: math.unit(17 + 6 / 12, "feet"),
  25042. weight: math.unit(150, "lb"),
  25043. name: "Front",
  25044. image: {
  25045. source: "./media/characters/baadra/front.svg",
  25046. extra: 3137 / 2890,
  25047. bottom: 168.4 / 3305
  25048. }
  25049. },
  25050. back: {
  25051. height: math.unit(17 + 6 / 12, "feet"),
  25052. weight: math.unit(150, "lb"),
  25053. name: "Back",
  25054. image: {
  25055. source: "./media/characters/baadra/back.svg",
  25056. extra: 3142 / 2890,
  25057. bottom: 220 / 3371
  25058. }
  25059. },
  25060. head: {
  25061. height: math.unit(5.45, "feet"),
  25062. name: "Head",
  25063. image: {
  25064. source: "./media/characters/baadra/head.svg"
  25065. }
  25066. },
  25067. headAngry: {
  25068. height: math.unit(4.95, "feet"),
  25069. name: "Head (Angry)",
  25070. image: {
  25071. source: "./media/characters/baadra/head-angry.svg"
  25072. }
  25073. },
  25074. headOpen: {
  25075. height: math.unit(6, "feet"),
  25076. name: "Head (Open)",
  25077. image: {
  25078. source: "./media/characters/baadra/head-open.svg"
  25079. }
  25080. },
  25081. },
  25082. [
  25083. {
  25084. name: "Normal",
  25085. height: math.unit(17 + 6 / 12, "feet"),
  25086. default: true
  25087. },
  25088. ]
  25089. ))
  25090. characterMakers.push(() => makeCharacter(
  25091. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25092. {
  25093. front: {
  25094. height: math.unit(7 + 3 / 12, "feet"),
  25095. weight: math.unit(180, "lb"),
  25096. name: "Front",
  25097. image: {
  25098. source: "./media/characters/juri/front.svg",
  25099. extra: 1401 / 1237,
  25100. bottom: 18.5 / 1418
  25101. }
  25102. },
  25103. side: {
  25104. height: math.unit(7 + 3 / 12, "feet"),
  25105. weight: math.unit(180, "lb"),
  25106. name: "Side",
  25107. image: {
  25108. source: "./media/characters/juri/side.svg",
  25109. extra: 1424 / 1242,
  25110. bottom: 18.5 / 1447
  25111. }
  25112. },
  25113. sitting: {
  25114. height: math.unit(6, "feet"),
  25115. weight: math.unit(180, "lb"),
  25116. name: "Sitting",
  25117. image: {
  25118. source: "./media/characters/juri/sitting.svg",
  25119. extra: 1270 / 1143,
  25120. bottom: 100 / 1343
  25121. }
  25122. },
  25123. back: {
  25124. height: math.unit(7 + 3 / 12, "feet"),
  25125. weight: math.unit(180, "lb"),
  25126. name: "Back",
  25127. image: {
  25128. source: "./media/characters/juri/back.svg",
  25129. extra: 1377 / 1240,
  25130. bottom: 23.7 / 1405
  25131. }
  25132. },
  25133. maw: {
  25134. height: math.unit(2.8, "feet"),
  25135. name: "Maw",
  25136. image: {
  25137. source: "./media/characters/juri/maw.svg"
  25138. }
  25139. },
  25140. stomach: {
  25141. height: math.unit(0.89, "feet"),
  25142. capacity: math.unit(4, "liters"),
  25143. name: "Stomach",
  25144. image: {
  25145. source: "./media/characters/juri/stomach.svg"
  25146. }
  25147. },
  25148. },
  25149. [
  25150. {
  25151. name: "Normal",
  25152. height: math.unit(7 + 3 / 12, "feet"),
  25153. default: true
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25159. {
  25160. fox: {
  25161. height: math.unit(5 + 6 / 12, "feet"),
  25162. weight: math.unit(140, "lb"),
  25163. name: "Fox",
  25164. image: {
  25165. source: "./media/characters/maxene-sita/fox.svg",
  25166. extra: 146 / 138,
  25167. bottom: 2.1 / 148.19
  25168. }
  25169. },
  25170. foxLaying: {
  25171. height: math.unit(1.70, "feet"),
  25172. weight: math.unit(140, "lb"),
  25173. name: "Fox (Laying)",
  25174. image: {
  25175. source: "./media/characters/maxene-sita/fox-laying.svg",
  25176. extra: 910 / 572,
  25177. bottom: 71 / 981
  25178. }
  25179. },
  25180. kitsune: {
  25181. height: math.unit(10, "feet"),
  25182. weight: math.unit(800, "lb"),
  25183. name: "Kitsune",
  25184. image: {
  25185. source: "./media/characters/maxene-sita/kitsune.svg",
  25186. extra: 185 / 176,
  25187. bottom: 4.7 / 189.9
  25188. }
  25189. },
  25190. hellhound: {
  25191. height: math.unit(10, "feet"),
  25192. weight: math.unit(700, "lb"),
  25193. name: "Hellhound",
  25194. image: {
  25195. source: "./media/characters/maxene-sita/hellhound.svg",
  25196. extra: 1600 / 1545,
  25197. bottom: 81 / 1681
  25198. }
  25199. },
  25200. },
  25201. [
  25202. {
  25203. name: "Normal",
  25204. height: math.unit(5 + 6 / 12, "feet"),
  25205. default: true
  25206. },
  25207. ]
  25208. ))
  25209. characterMakers.push(() => makeCharacter(
  25210. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25211. {
  25212. front: {
  25213. height: math.unit(3 + 4 / 12, "feet"),
  25214. weight: math.unit(70, "lb"),
  25215. name: "Front",
  25216. image: {
  25217. source: "./media/characters/maia/front.svg",
  25218. extra: 227 / 219.5,
  25219. bottom: 40 / 267
  25220. }
  25221. },
  25222. back: {
  25223. height: math.unit(3 + 4 / 12, "feet"),
  25224. weight: math.unit(70, "lb"),
  25225. name: "Back",
  25226. image: {
  25227. source: "./media/characters/maia/back.svg",
  25228. extra: 237 / 225
  25229. }
  25230. },
  25231. },
  25232. [
  25233. {
  25234. name: "Normal",
  25235. height: math.unit(3 + 4 / 12, "feet"),
  25236. default: true
  25237. },
  25238. ]
  25239. ))
  25240. characterMakers.push(() => makeCharacter(
  25241. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25242. {
  25243. front: {
  25244. height: math.unit(5 + 10 / 12, "feet"),
  25245. weight: math.unit(197, "lb"),
  25246. name: "Front",
  25247. image: {
  25248. source: "./media/characters/jabaro/front.svg",
  25249. extra: 225 / 216,
  25250. bottom: 5.06 / 230
  25251. }
  25252. },
  25253. back: {
  25254. height: math.unit(5 + 10 / 12, "feet"),
  25255. weight: math.unit(197, "lb"),
  25256. name: "Back",
  25257. image: {
  25258. source: "./media/characters/jabaro/back.svg",
  25259. extra: 225 / 219,
  25260. bottom: 1.9 / 227
  25261. }
  25262. },
  25263. },
  25264. [
  25265. {
  25266. name: "Normal",
  25267. height: math.unit(5 + 10 / 12, "feet"),
  25268. default: true
  25269. },
  25270. ]
  25271. ))
  25272. characterMakers.push(() => makeCharacter(
  25273. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25274. {
  25275. front: {
  25276. height: math.unit(5 + 8 / 12, "feet"),
  25277. weight: math.unit(139, "lb"),
  25278. name: "Front",
  25279. image: {
  25280. source: "./media/characters/risa/front.svg",
  25281. extra: 270 / 260,
  25282. bottom: 11.2 / 282
  25283. }
  25284. },
  25285. back: {
  25286. height: math.unit(5 + 8 / 12, "feet"),
  25287. weight: math.unit(139, "lb"),
  25288. name: "Back",
  25289. image: {
  25290. source: "./media/characters/risa/back.svg",
  25291. extra: 264 / 255,
  25292. bottom: 4 / 268
  25293. }
  25294. },
  25295. },
  25296. [
  25297. {
  25298. name: "Normal",
  25299. height: math.unit(5 + 8 / 12, "feet"),
  25300. default: true
  25301. },
  25302. ]
  25303. ))
  25304. characterMakers.push(() => makeCharacter(
  25305. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25306. {
  25307. front: {
  25308. height: math.unit(2 + 11 / 12, "feet"),
  25309. weight: math.unit(30, "lb"),
  25310. name: "Front",
  25311. image: {
  25312. source: "./media/characters/weatley/front.svg",
  25313. bottom: 10.7 / 414,
  25314. extra: 403.5 / 362
  25315. }
  25316. },
  25317. back: {
  25318. height: math.unit(2 + 11 / 12, "feet"),
  25319. weight: math.unit(30, "lb"),
  25320. name: "Back",
  25321. image: {
  25322. source: "./media/characters/weatley/back.svg",
  25323. bottom: 10.7 / 414,
  25324. extra: 403.5 / 362
  25325. }
  25326. },
  25327. },
  25328. [
  25329. {
  25330. name: "Normal",
  25331. height: math.unit(2 + 11 / 12, "feet"),
  25332. default: true
  25333. },
  25334. ]
  25335. ))
  25336. characterMakers.push(() => makeCharacter(
  25337. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25338. {
  25339. front: {
  25340. height: math.unit(5 + 2 / 12, "feet"),
  25341. weight: math.unit(50, "kg"),
  25342. name: "Front",
  25343. image: {
  25344. source: "./media/characters/mercury-crescent/front.svg",
  25345. extra: 1088 / 1033,
  25346. bottom: 18.9 / 1109
  25347. }
  25348. },
  25349. },
  25350. [
  25351. {
  25352. name: "Normal",
  25353. height: math.unit(5 + 2 / 12, "feet"),
  25354. default: true
  25355. },
  25356. ]
  25357. ))
  25358. characterMakers.push(() => makeCharacter(
  25359. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25360. {
  25361. front: {
  25362. height: math.unit(2, "feet"),
  25363. weight: math.unit(15, "kg"),
  25364. name: "Front",
  25365. image: {
  25366. source: "./media/characters/diamond-jones/front.svg",
  25367. bottom: 16 / 568
  25368. }
  25369. },
  25370. },
  25371. [
  25372. {
  25373. name: "Normal",
  25374. height: math.unit(2, "feet"),
  25375. default: true
  25376. },
  25377. ]
  25378. ))
  25379. characterMakers.push(() => makeCharacter(
  25380. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25381. {
  25382. front: {
  25383. height: math.unit(3, "feet"),
  25384. weight: math.unit(30, "kg"),
  25385. name: "Front",
  25386. image: {
  25387. source: "./media/characters/sweet-bit/front.svg",
  25388. extra: 675 / 567,
  25389. bottom: 27.7 / 703
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(3, "feet"),
  25397. default: true
  25398. },
  25399. ]
  25400. ))
  25401. characterMakers.push(() => makeCharacter(
  25402. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25403. {
  25404. side: {
  25405. height: math.unit(9.178, "feet"),
  25406. weight: math.unit(500, "lb"),
  25407. name: "Side",
  25408. image: {
  25409. source: "./media/characters/umbrazen/side.svg",
  25410. extra: 1730 / 1473,
  25411. bottom: 34.6 / 1765
  25412. }
  25413. },
  25414. },
  25415. [
  25416. {
  25417. name: "Normal",
  25418. height: math.unit(9.178, "feet"),
  25419. default: true
  25420. },
  25421. ]
  25422. ))
  25423. characterMakers.push(() => makeCharacter(
  25424. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25425. {
  25426. front: {
  25427. height: math.unit(10, "feet"),
  25428. weight: math.unit(750, "lb"),
  25429. name: "Front",
  25430. image: {
  25431. source: "./media/characters/arlist/front.svg",
  25432. extra: 961 / 778,
  25433. bottom: 6.2 / 986
  25434. }
  25435. },
  25436. },
  25437. [
  25438. {
  25439. name: "Normal",
  25440. height: math.unit(10, "feet"),
  25441. default: true
  25442. },
  25443. ]
  25444. ))
  25445. characterMakers.push(() => makeCharacter(
  25446. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25447. {
  25448. front: {
  25449. height: math.unit(5 + 1 / 12, "feet"),
  25450. weight: math.unit(110, "lb"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/aradel/front.svg",
  25454. extra: 324 / 303,
  25455. bottom: 3.6 / 329.4
  25456. }
  25457. },
  25458. },
  25459. [
  25460. {
  25461. name: "Normal",
  25462. height: math.unit(5 + 1 / 12, "feet"),
  25463. default: true
  25464. },
  25465. ]
  25466. ))
  25467. characterMakers.push(() => makeCharacter(
  25468. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25469. {
  25470. front: {
  25471. height: math.unit(3 + 8 / 12, "feet"),
  25472. weight: math.unit(50, "lb"),
  25473. name: "Front",
  25474. image: {
  25475. source: "./media/characters/serryn/front.svg",
  25476. extra: 1792 / 1656,
  25477. bottom: 43.5 / 1840
  25478. }
  25479. },
  25480. },
  25481. [
  25482. {
  25483. name: "Normal",
  25484. height: math.unit(3 + 8 / 12, "feet"),
  25485. default: true
  25486. },
  25487. ]
  25488. ))
  25489. characterMakers.push(() => makeCharacter(
  25490. { name: "Xavier Thyme" },
  25491. {
  25492. front: {
  25493. height: math.unit(7 + 10 / 12, "feet"),
  25494. weight: math.unit(255, "lb"),
  25495. name: "Front",
  25496. image: {
  25497. source: "./media/characters/xavier-thyme/front.svg",
  25498. extra: 3733 / 3642,
  25499. bottom: 131 / 3869
  25500. }
  25501. },
  25502. frontRaven: {
  25503. height: math.unit(7 + 10 / 12, "feet"),
  25504. weight: math.unit(255, "lb"),
  25505. name: "Front (Raven)",
  25506. image: {
  25507. source: "./media/characters/xavier-thyme/front-raven.svg",
  25508. extra: 4385 / 3642,
  25509. bottom: 131 / 4517
  25510. }
  25511. },
  25512. },
  25513. [
  25514. {
  25515. name: "Normal",
  25516. height: math.unit(7 + 10 / 12, "feet"),
  25517. default: true
  25518. },
  25519. ]
  25520. ))
  25521. characterMakers.push(() => makeCharacter(
  25522. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25523. {
  25524. front: {
  25525. height: math.unit(1.6, "m"),
  25526. weight: math.unit(50, "kg"),
  25527. name: "Front",
  25528. image: {
  25529. source: "./media/characters/kiki/front.svg",
  25530. extra: 4682 / 3610,
  25531. bottom: 115 / 4777
  25532. }
  25533. },
  25534. },
  25535. [
  25536. {
  25537. name: "Normal",
  25538. height: math.unit(1.6, "meters"),
  25539. default: true
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25545. {
  25546. front: {
  25547. height: math.unit(50, "m"),
  25548. weight: math.unit(500, "tonnes"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/ryoko/front.svg",
  25552. extra: 4632 / 3926,
  25553. bottom: 193 / 4823
  25554. }
  25555. },
  25556. },
  25557. [
  25558. {
  25559. name: "Normal",
  25560. height: math.unit(50, "meters"),
  25561. default: true
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25567. {
  25568. front: {
  25569. height: math.unit(30, "m"),
  25570. weight: math.unit(22, "tonnes"),
  25571. name: "Front",
  25572. image: {
  25573. source: "./media/characters/elio/front.svg",
  25574. extra: 4582 / 3720,
  25575. bottom: 236 / 4828
  25576. }
  25577. },
  25578. },
  25579. [
  25580. {
  25581. name: "Normal",
  25582. height: math.unit(30, "meters"),
  25583. default: true
  25584. },
  25585. ]
  25586. ))
  25587. characterMakers.push(() => makeCharacter(
  25588. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25589. {
  25590. front: {
  25591. height: math.unit(6 + 3 / 12, "feet"),
  25592. weight: math.unit(120, "lb"),
  25593. name: "Front",
  25594. image: {
  25595. source: "./media/characters/azura/front.svg",
  25596. extra: 1149 / 1135,
  25597. bottom: 45 / 1194
  25598. }
  25599. },
  25600. frontClothed: {
  25601. height: math.unit(6 + 3 / 12, "feet"),
  25602. weight: math.unit(120, "lb"),
  25603. name: "Front (Clothed)",
  25604. image: {
  25605. source: "./media/characters/azura/front-clothed.svg",
  25606. extra: 1149 / 1135,
  25607. bottom: 45 / 1194
  25608. }
  25609. },
  25610. },
  25611. [
  25612. {
  25613. name: "Normal",
  25614. height: math.unit(6 + 3 / 12, "feet"),
  25615. default: true
  25616. },
  25617. {
  25618. name: "Macro",
  25619. height: math.unit(20 + 6 / 12, "feet")
  25620. },
  25621. {
  25622. name: "Megamacro",
  25623. height: math.unit(12, "miles")
  25624. },
  25625. {
  25626. name: "Gigamacro",
  25627. height: math.unit(10000, "miles")
  25628. },
  25629. {
  25630. name: "Teramacro",
  25631. height: math.unit(900000, "miles")
  25632. },
  25633. ]
  25634. ))
  25635. characterMakers.push(() => makeCharacter(
  25636. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25637. {
  25638. front: {
  25639. height: math.unit(12, "feet"),
  25640. weight: math.unit(1, "ton"),
  25641. capacity: math.unit(660000, "gallons"),
  25642. name: "Front",
  25643. image: {
  25644. source: "./media/characters/zeus/front.svg",
  25645. extra: 5005 / 4717,
  25646. bottom: 363 / 5388
  25647. }
  25648. },
  25649. },
  25650. [
  25651. {
  25652. name: "Normal",
  25653. height: math.unit(12, "feet")
  25654. },
  25655. {
  25656. name: "Preferred Size",
  25657. height: math.unit(0.5, "miles"),
  25658. default: true
  25659. },
  25660. {
  25661. name: "Giga Horse",
  25662. height: math.unit(300, "miles")
  25663. },
  25664. {
  25665. name: "Riding Planets",
  25666. height: math.unit(30, "megameters")
  25667. },
  25668. {
  25669. name: "Cosmic Giant",
  25670. height: math.unit(3, "zettameters")
  25671. },
  25672. {
  25673. name: "Breeding God",
  25674. height: math.unit(9.92e22, "yottameters")
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25680. {
  25681. side: {
  25682. height: math.unit(9, "feet"),
  25683. weight: math.unit(1500, "kg"),
  25684. name: "Side",
  25685. image: {
  25686. source: "./media/characters/fang/side.svg",
  25687. extra: 924 / 866,
  25688. bottom: 47.5 / 972.3
  25689. }
  25690. },
  25691. },
  25692. [
  25693. {
  25694. name: "Normal",
  25695. height: math.unit(9, "feet"),
  25696. default: true
  25697. },
  25698. {
  25699. name: "Macro",
  25700. height: math.unit(75 + 6 / 12, "feet")
  25701. },
  25702. {
  25703. name: "Teramacro",
  25704. height: math.unit(50000, "miles")
  25705. },
  25706. ]
  25707. ))
  25708. characterMakers.push(() => makeCharacter(
  25709. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25710. {
  25711. front: {
  25712. height: math.unit(10, "feet"),
  25713. weight: math.unit(2, "tons"),
  25714. name: "Front",
  25715. image: {
  25716. source: "./media/characters/rekhit/front.svg",
  25717. extra: 2796 / 2590,
  25718. bottom: 225 / 3022
  25719. }
  25720. },
  25721. },
  25722. [
  25723. {
  25724. name: "Normal",
  25725. height: math.unit(10, "feet"),
  25726. default: true
  25727. },
  25728. {
  25729. name: "Macro",
  25730. height: math.unit(500, "feet")
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Dahlia Verrick" },
  25736. {
  25737. front: {
  25738. height: math.unit(7 + 6.451 / 12, "feet"),
  25739. weight: math.unit(310, "lb"),
  25740. name: "Front",
  25741. image: {
  25742. source: "./media/characters/dahlia-verrick/front.svg",
  25743. extra: 1488 / 1365,
  25744. bottom: 6.2 / 1495
  25745. }
  25746. },
  25747. back: {
  25748. height: math.unit(7 + 6.451 / 12, "feet"),
  25749. weight: math.unit(310, "lb"),
  25750. name: "Back",
  25751. image: {
  25752. source: "./media/characters/dahlia-verrick/back.svg",
  25753. extra: 1472 / 1351,
  25754. bottom: 5.28 / 1477
  25755. }
  25756. },
  25757. frontBusiness: {
  25758. height: math.unit(7 + 6.451 / 12, "feet"),
  25759. weight: math.unit(200, "lb"),
  25760. name: "Front (Business)",
  25761. image: {
  25762. source: "./media/characters/dahlia-verrick/front-business.svg",
  25763. extra: 1478 / 1381,
  25764. bottom: 5.5 / 1484
  25765. }
  25766. },
  25767. frontCasual: {
  25768. height: math.unit(7 + 6.451 / 12, "feet"),
  25769. weight: math.unit(200, "lb"),
  25770. name: "Front (Casual)",
  25771. image: {
  25772. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25773. extra: 1478 / 1381,
  25774. bottom: 5.5 / 1484
  25775. }
  25776. },
  25777. },
  25778. [
  25779. {
  25780. name: "Travel-Sized",
  25781. height: math.unit(7.45, "inches")
  25782. },
  25783. {
  25784. name: "Normal",
  25785. height: math.unit(7 + 6.451 / 12, "feet"),
  25786. default: true
  25787. },
  25788. {
  25789. name: "Hitting the Town",
  25790. height: math.unit(37 + 8 / 12, "feet")
  25791. },
  25792. {
  25793. name: "Stomp in the Suburbs",
  25794. height: math.unit(964 + 9.728 / 12, "feet")
  25795. },
  25796. {
  25797. name: "Sit on the City",
  25798. height: math.unit(61747 + 10.592 / 12, "feet")
  25799. },
  25800. {
  25801. name: "Glomp the Globe",
  25802. height: math.unit(252919327 + 4.832 / 12, "feet")
  25803. },
  25804. ]
  25805. ))
  25806. characterMakers.push(() => makeCharacter(
  25807. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25808. {
  25809. front: {
  25810. height: math.unit(6 + 4 / 12, "feet"),
  25811. weight: math.unit(320, "lb"),
  25812. name: "Front",
  25813. image: {
  25814. source: "./media/characters/balina-mahigan/front.svg",
  25815. extra: 447 / 428,
  25816. bottom: 18 / 466
  25817. }
  25818. },
  25819. back: {
  25820. height: math.unit(6 + 4 / 12, "feet"),
  25821. weight: math.unit(320, "lb"),
  25822. name: "Back",
  25823. image: {
  25824. source: "./media/characters/balina-mahigan/back.svg",
  25825. extra: 445 / 428,
  25826. bottom: 4.07 / 448
  25827. }
  25828. },
  25829. arm: {
  25830. height: math.unit(1.88, "feet"),
  25831. name: "Arm",
  25832. image: {
  25833. source: "./media/characters/balina-mahigan/arm.svg"
  25834. }
  25835. },
  25836. backPort: {
  25837. height: math.unit(0.685, "feet"),
  25838. name: "Back Port",
  25839. image: {
  25840. source: "./media/characters/balina-mahigan/back-port.svg"
  25841. }
  25842. },
  25843. hoofpaw: {
  25844. height: math.unit(1.41, "feet"),
  25845. name: "Hoofpaw",
  25846. image: {
  25847. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25848. }
  25849. },
  25850. leftHandBack: {
  25851. height: math.unit(0.938, "feet"),
  25852. name: "Left Hand (Back)",
  25853. image: {
  25854. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25855. }
  25856. },
  25857. leftHandFront: {
  25858. height: math.unit(0.938, "feet"),
  25859. name: "Left Hand (Front)",
  25860. image: {
  25861. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25862. }
  25863. },
  25864. rightHandBack: {
  25865. height: math.unit(0.95, "feet"),
  25866. name: "Right Hand (Back)",
  25867. image: {
  25868. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25869. }
  25870. },
  25871. rightHandFront: {
  25872. height: math.unit(0.95, "feet"),
  25873. name: "Right Hand (Front)",
  25874. image: {
  25875. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25876. }
  25877. },
  25878. },
  25879. [
  25880. {
  25881. name: "Normal",
  25882. height: math.unit(6 + 4 / 12, "feet"),
  25883. default: true
  25884. },
  25885. ]
  25886. ))
  25887. characterMakers.push(() => makeCharacter(
  25888. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25889. {
  25890. front: {
  25891. height: math.unit(6, "feet"),
  25892. weight: math.unit(320, "lb"),
  25893. name: "Front",
  25894. image: {
  25895. source: "./media/characters/balina-mejeri/front.svg",
  25896. extra: 517 / 488,
  25897. bottom: 44.2 / 561
  25898. }
  25899. },
  25900. },
  25901. [
  25902. {
  25903. name: "Normal",
  25904. height: math.unit(6 + 4 / 12, "feet")
  25905. },
  25906. {
  25907. name: "Business",
  25908. height: math.unit(155, "feet"),
  25909. default: true
  25910. },
  25911. ]
  25912. ))
  25913. characterMakers.push(() => makeCharacter(
  25914. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25915. {
  25916. kneeling: {
  25917. height: math.unit(6 + 4 / 12, "feet"),
  25918. weight: math.unit(300 * 20, "lb"),
  25919. name: "Kneeling",
  25920. image: {
  25921. source: "./media/characters/balbarian/kneeling.svg",
  25922. extra: 922 / 862,
  25923. bottom: 42.4 / 965
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Normal",
  25930. height: math.unit(6 + 4 / 12, "feet")
  25931. },
  25932. {
  25933. name: "Treasured",
  25934. height: math.unit(18 + 9 / 12, "feet"),
  25935. default: true
  25936. },
  25937. {
  25938. name: "Macro",
  25939. height: math.unit(900, "feet")
  25940. },
  25941. ]
  25942. ))
  25943. characterMakers.push(() => makeCharacter(
  25944. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25945. {
  25946. front: {
  25947. height: math.unit(6 + 4 / 12, "feet"),
  25948. weight: math.unit(325, "lb"),
  25949. name: "Front",
  25950. image: {
  25951. source: "./media/characters/balina-amarini/front.svg",
  25952. extra: 415 / 403,
  25953. bottom: 19 / 433.4
  25954. }
  25955. },
  25956. back: {
  25957. height: math.unit(6 + 4 / 12, "feet"),
  25958. weight: math.unit(325, "lb"),
  25959. name: "Back",
  25960. image: {
  25961. source: "./media/characters/balina-amarini/back.svg",
  25962. extra: 415 / 403,
  25963. bottom: 13.5 / 432
  25964. }
  25965. },
  25966. overdrive: {
  25967. height: math.unit(6 + 4 / 12, "feet"),
  25968. weight: math.unit(400, "lb"),
  25969. name: "Overdrive",
  25970. image: {
  25971. source: "./media/characters/balina-amarini/overdrive.svg",
  25972. extra: 269 / 259,
  25973. bottom: 12 / 282
  25974. }
  25975. },
  25976. },
  25977. [
  25978. {
  25979. name: "Boom",
  25980. height: math.unit(9 + 10 / 12, "feet"),
  25981. default: true
  25982. },
  25983. {
  25984. name: "Macro",
  25985. height: math.unit(280, "feet")
  25986. },
  25987. ]
  25988. ))
  25989. characterMakers.push(() => makeCharacter(
  25990. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25991. {
  25992. goddess: {
  25993. height: math.unit(600, "feet"),
  25994. weight: math.unit(2000000, "tons"),
  25995. name: "Goddess",
  25996. image: {
  25997. source: "./media/characters/lady-kubwa/goddess.svg",
  25998. extra: 1240.5 / 1223,
  25999. bottom: 22 / 1263
  26000. }
  26001. },
  26002. goddesser: {
  26003. height: math.unit(900, "feet"),
  26004. weight: math.unit(20000000, "lb"),
  26005. name: "Goddess-er",
  26006. image: {
  26007. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26008. extra: 899 / 888,
  26009. bottom: 12.6 / 912
  26010. }
  26011. },
  26012. },
  26013. [
  26014. {
  26015. name: "Macro",
  26016. height: math.unit(600, "feet"),
  26017. default: true
  26018. },
  26019. {
  26020. name: "Megamacro",
  26021. height: math.unit(250, "miles")
  26022. },
  26023. ]
  26024. ))
  26025. characterMakers.push(() => makeCharacter(
  26026. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26027. {
  26028. front: {
  26029. height: math.unit(7 + 7 / 12, "feet"),
  26030. weight: math.unit(250, "lb"),
  26031. name: "Front",
  26032. image: {
  26033. source: "./media/characters/tala-grovehorn/front.svg",
  26034. extra: 2636 / 2525,
  26035. bottom: 147 / 2781
  26036. }
  26037. },
  26038. back: {
  26039. height: math.unit(7 + 7 / 12, "feet"),
  26040. weight: math.unit(250, "lb"),
  26041. name: "Back",
  26042. image: {
  26043. source: "./media/characters/tala-grovehorn/back.svg",
  26044. extra: 2635 / 2539,
  26045. bottom: 100 / 2732.8
  26046. }
  26047. },
  26048. mouth: {
  26049. height: math.unit(1.15, "feet"),
  26050. name: "Mouth",
  26051. image: {
  26052. source: "./media/characters/tala-grovehorn/mouth.svg"
  26053. }
  26054. },
  26055. dick: {
  26056. height: math.unit(2.36, "feet"),
  26057. name: "Dick",
  26058. image: {
  26059. source: "./media/characters/tala-grovehorn/dick.svg"
  26060. }
  26061. },
  26062. slit: {
  26063. height: math.unit(0.61, "feet"),
  26064. name: "Slit",
  26065. image: {
  26066. source: "./media/characters/tala-grovehorn/slit.svg"
  26067. }
  26068. },
  26069. },
  26070. [
  26071. ]
  26072. ))
  26073. characterMakers.push(() => makeCharacter(
  26074. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26075. {
  26076. front: {
  26077. height: math.unit(7 + 7 / 12, "feet"),
  26078. weight: math.unit(225, "lb"),
  26079. name: "Front",
  26080. image: {
  26081. source: "./media/characters/epona/front.svg",
  26082. extra: 2445 / 2290,
  26083. bottom: 251 / 2696
  26084. }
  26085. },
  26086. back: {
  26087. height: math.unit(7 + 7 / 12, "feet"),
  26088. weight: math.unit(225, "lb"),
  26089. name: "Back",
  26090. image: {
  26091. source: "./media/characters/epona/back.svg",
  26092. extra: 2546 / 2408,
  26093. bottom: 44 / 2589
  26094. }
  26095. },
  26096. genitals: {
  26097. height: math.unit(1.5, "feet"),
  26098. name: "Genitals",
  26099. image: {
  26100. source: "./media/characters/epona/genitals.svg"
  26101. }
  26102. },
  26103. },
  26104. [
  26105. {
  26106. name: "Normal",
  26107. height: math.unit(7 + 7 / 12, "feet"),
  26108. default: true
  26109. },
  26110. ]
  26111. ))
  26112. characterMakers.push(() => makeCharacter(
  26113. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26114. {
  26115. front: {
  26116. height: math.unit(7, "feet"),
  26117. weight: math.unit(518, "lb"),
  26118. name: "Front",
  26119. image: {
  26120. source: "./media/characters/avia-bloodbourn/front.svg",
  26121. extra: 1466 / 1350,
  26122. bottom: 65 / 1527
  26123. }
  26124. },
  26125. },
  26126. [
  26127. ]
  26128. ))
  26129. characterMakers.push(() => makeCharacter(
  26130. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26131. {
  26132. front: {
  26133. height: math.unit(9.35, "feet"),
  26134. weight: math.unit(600, "lb"),
  26135. name: "Front",
  26136. image: {
  26137. source: "./media/characters/amera/front.svg",
  26138. extra: 891 / 818,
  26139. bottom: 30 / 922.7
  26140. }
  26141. },
  26142. back: {
  26143. height: math.unit(9.35, "feet"),
  26144. weight: math.unit(600, "lb"),
  26145. name: "Back",
  26146. image: {
  26147. source: "./media/characters/amera/back.svg",
  26148. extra: 876 / 824,
  26149. bottom: 6.8 / 884
  26150. }
  26151. },
  26152. dick: {
  26153. height: math.unit(2.14, "feet"),
  26154. name: "Dick",
  26155. image: {
  26156. source: "./media/characters/amera/dick.svg"
  26157. }
  26158. },
  26159. },
  26160. [
  26161. {
  26162. name: "Normal",
  26163. height: math.unit(9.35, "feet"),
  26164. default: true
  26165. },
  26166. ]
  26167. ))
  26168. characterMakers.push(() => makeCharacter(
  26169. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26170. {
  26171. kneeling: {
  26172. height: math.unit(3 + 4 / 12, "feet"),
  26173. weight: math.unit(90, "lb"),
  26174. name: "Kneeling",
  26175. image: {
  26176. source: "./media/characters/rosewen/kneeling.svg",
  26177. extra: 1835 / 1571,
  26178. bottom: 27.7 / 1862
  26179. }
  26180. },
  26181. },
  26182. [
  26183. {
  26184. name: "Normal",
  26185. height: math.unit(3 + 4 / 12, "feet"),
  26186. default: true
  26187. },
  26188. ]
  26189. ))
  26190. characterMakers.push(() => makeCharacter(
  26191. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26192. {
  26193. front: {
  26194. height: math.unit(5 + 10 / 12, "feet"),
  26195. weight: math.unit(200, "lb"),
  26196. name: "Front",
  26197. image: {
  26198. source: "./media/characters/sabah/front.svg",
  26199. extra: 849 / 763,
  26200. bottom: 33.9 / 881
  26201. }
  26202. },
  26203. },
  26204. [
  26205. {
  26206. name: "Normal",
  26207. height: math.unit(5 + 10 / 12, "feet"),
  26208. default: true
  26209. },
  26210. ]
  26211. ))
  26212. characterMakers.push(() => makeCharacter(
  26213. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26214. {
  26215. front: {
  26216. height: math.unit(3 + 5 / 12, "feet"),
  26217. weight: math.unit(40, "kg"),
  26218. name: "Front",
  26219. image: {
  26220. source: "./media/characters/purple-flame/front.svg",
  26221. extra: 1577 / 1412,
  26222. bottom: 97 / 1694
  26223. }
  26224. },
  26225. frontDressed: {
  26226. height: math.unit(3 + 5 / 12, "feet"),
  26227. weight: math.unit(40, "kg"),
  26228. name: "Front (Dressed)",
  26229. image: {
  26230. source: "./media/characters/purple-flame/front-dressed.svg",
  26231. extra: 1577 / 1412,
  26232. bottom: 97 / 1694
  26233. }
  26234. },
  26235. headphones: {
  26236. height: math.unit(0.85, "feet"),
  26237. name: "Headphones",
  26238. image: {
  26239. source: "./media/characters/purple-flame/headphones.svg"
  26240. }
  26241. },
  26242. },
  26243. [
  26244. {
  26245. name: "Really Small",
  26246. height: math.unit(5, "cm")
  26247. },
  26248. {
  26249. name: "Micro",
  26250. height: math.unit(1 + 5 / 12, "feet")
  26251. },
  26252. {
  26253. name: "Normal",
  26254. height: math.unit(3 + 5 / 12, "feet"),
  26255. default: true
  26256. },
  26257. {
  26258. name: "Minimacro",
  26259. height: math.unit(125, "feet")
  26260. },
  26261. {
  26262. name: "Macro",
  26263. height: math.unit(0.5, "miles")
  26264. },
  26265. {
  26266. name: "Megamacro",
  26267. height: math.unit(50, "miles")
  26268. },
  26269. {
  26270. name: "Gigantic",
  26271. height: math.unit(750, "miles")
  26272. },
  26273. {
  26274. name: "Planetary",
  26275. height: math.unit(15000, "miles")
  26276. },
  26277. ]
  26278. ))
  26279. characterMakers.push(() => makeCharacter(
  26280. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26281. {
  26282. front: {
  26283. height: math.unit(14, "feet"),
  26284. weight: math.unit(959, "lb"),
  26285. name: "Front",
  26286. image: {
  26287. source: "./media/characters/arsenal/front.svg",
  26288. extra: 2357 / 2157,
  26289. bottom: 93 / 2458
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Normal",
  26296. height: math.unit(14, "feet"),
  26297. default: true
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26303. {
  26304. front: {
  26305. height: math.unit(6, "feet"),
  26306. weight: math.unit(150, "lb"),
  26307. name: "Front",
  26308. image: {
  26309. source: "./media/characters/adira/front.svg",
  26310. extra: 1078 / 1029,
  26311. bottom: 87 / 1166
  26312. }
  26313. },
  26314. },
  26315. [
  26316. {
  26317. name: "Micro",
  26318. height: math.unit(4, "inches"),
  26319. default: true
  26320. },
  26321. {
  26322. name: "Macro",
  26323. height: math.unit(50, "feet")
  26324. },
  26325. ]
  26326. ))
  26327. characterMakers.push(() => makeCharacter(
  26328. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26329. {
  26330. front: {
  26331. height: math.unit(16, "feet"),
  26332. weight: math.unit(1000, "lb"),
  26333. name: "Front",
  26334. image: {
  26335. source: "./media/characters/grim/front.svg",
  26336. extra: 622 / 614,
  26337. bottom: 18.1 / 642
  26338. }
  26339. },
  26340. back: {
  26341. height: math.unit(16, "feet"),
  26342. weight: math.unit(1000, "lb"),
  26343. name: "Back",
  26344. image: {
  26345. source: "./media/characters/grim/back.svg",
  26346. extra: 610.6 / 602,
  26347. bottom: 40.8 / 652
  26348. }
  26349. },
  26350. hunched: {
  26351. height: math.unit(9.75, "feet"),
  26352. weight: math.unit(1000, "lb"),
  26353. name: "Hunched",
  26354. image: {
  26355. source: "./media/characters/grim/hunched.svg",
  26356. extra: 304 / 297,
  26357. bottom: 35.4 / 394
  26358. }
  26359. },
  26360. },
  26361. [
  26362. {
  26363. name: "Normal",
  26364. height: math.unit(16, "feet"),
  26365. default: true
  26366. },
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26371. {
  26372. front: {
  26373. height: math.unit(2.3, "meters"),
  26374. weight: math.unit(300, "lb"),
  26375. name: "Front",
  26376. image: {
  26377. source: "./media/characters/sinja/front-sfw.svg",
  26378. extra: 1393 / 1294,
  26379. bottom: 70 / 1463
  26380. }
  26381. },
  26382. frontNsfw: {
  26383. height: math.unit(2.3, "meters"),
  26384. weight: math.unit(300, "lb"),
  26385. name: "Front (NSFW)",
  26386. image: {
  26387. source: "./media/characters/sinja/front-nsfw.svg",
  26388. extra: 1393 / 1294,
  26389. bottom: 70 / 1463
  26390. }
  26391. },
  26392. back: {
  26393. height: math.unit(2.3, "meters"),
  26394. weight: math.unit(300, "lb"),
  26395. name: "Back",
  26396. image: {
  26397. source: "./media/characters/sinja/back.svg",
  26398. extra: 1393 / 1294,
  26399. bottom: 70 / 1463
  26400. }
  26401. },
  26402. head: {
  26403. height: math.unit(1.771, "feet"),
  26404. name: "Head",
  26405. image: {
  26406. source: "./media/characters/sinja/head.svg"
  26407. }
  26408. },
  26409. slit: {
  26410. height: math.unit(0.8, "feet"),
  26411. name: "Slit",
  26412. image: {
  26413. source: "./media/characters/sinja/slit.svg"
  26414. }
  26415. },
  26416. },
  26417. [
  26418. {
  26419. name: "Normal",
  26420. height: math.unit(2.3, "meters")
  26421. },
  26422. {
  26423. name: "Macro",
  26424. height: math.unit(91, "meters"),
  26425. default: true
  26426. },
  26427. {
  26428. name: "Megamacro",
  26429. height: math.unit(91440, "meters")
  26430. },
  26431. {
  26432. name: "Gigamacro",
  26433. height: math.unit(60960000, "meters")
  26434. },
  26435. {
  26436. name: "Teramacro",
  26437. height: math.unit(9144000000, "meters")
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26443. {
  26444. front: {
  26445. height: math.unit(1.7, "meters"),
  26446. weight: math.unit(130, "lb"),
  26447. name: "Front",
  26448. image: {
  26449. source: "./media/characters/kyu/front.svg",
  26450. extra: 415 / 395,
  26451. bottom: 5 / 420
  26452. }
  26453. },
  26454. head: {
  26455. height: math.unit(1.75, "feet"),
  26456. name: "Head",
  26457. image: {
  26458. source: "./media/characters/kyu/head.svg"
  26459. }
  26460. },
  26461. foot: {
  26462. height: math.unit(0.81, "feet"),
  26463. name: "Foot",
  26464. image: {
  26465. source: "./media/characters/kyu/foot.svg"
  26466. }
  26467. },
  26468. },
  26469. [
  26470. {
  26471. name: "Normal",
  26472. height: math.unit(1.7, "meters")
  26473. },
  26474. {
  26475. name: "Macro",
  26476. height: math.unit(131, "feet"),
  26477. default: true
  26478. },
  26479. {
  26480. name: "Megamacro",
  26481. height: math.unit(91440, "meters")
  26482. },
  26483. {
  26484. name: "Gigamacro",
  26485. height: math.unit(60960000, "meters")
  26486. },
  26487. {
  26488. name: "Teramacro",
  26489. height: math.unit(9144000000, "meters")
  26490. },
  26491. ]
  26492. ))
  26493. characterMakers.push(() => makeCharacter(
  26494. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26495. {
  26496. front: {
  26497. height: math.unit(7 + 1 / 12, "feet"),
  26498. weight: math.unit(250, "lb"),
  26499. name: "Front",
  26500. image: {
  26501. source: "./media/characters/joey/front.svg",
  26502. extra: 1791 / 1537,
  26503. bottom: 28 / 1816
  26504. }
  26505. },
  26506. },
  26507. [
  26508. {
  26509. name: "Micro",
  26510. height: math.unit(3, "inches")
  26511. },
  26512. {
  26513. name: "Normal",
  26514. height: math.unit(7 + 1 / 12, "feet"),
  26515. default: true
  26516. },
  26517. ]
  26518. ))
  26519. characterMakers.push(() => makeCharacter(
  26520. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26521. {
  26522. front: {
  26523. height: math.unit(165, "cm"),
  26524. weight: math.unit(140, "lb"),
  26525. name: "Front",
  26526. image: {
  26527. source: "./media/characters/sam-evans/front.svg",
  26528. extra: 3417 / 3230,
  26529. bottom: 41.3 / 3417
  26530. }
  26531. },
  26532. frontSixTails: {
  26533. height: math.unit(165, "cm"),
  26534. weight: math.unit(140, "lb"),
  26535. name: "Front-six-tails",
  26536. image: {
  26537. source: "./media/characters/sam-evans/front-six-tails.svg",
  26538. extra: 3417 / 3230,
  26539. bottom: 41.3 / 3417
  26540. }
  26541. },
  26542. back: {
  26543. height: math.unit(165, "cm"),
  26544. weight: math.unit(140, "lb"),
  26545. name: "Back",
  26546. image: {
  26547. source: "./media/characters/sam-evans/back.svg",
  26548. extra: 3227 / 3032,
  26549. bottom: 6.8 / 3234
  26550. }
  26551. },
  26552. face: {
  26553. height: math.unit(0.68, "feet"),
  26554. name: "Face",
  26555. image: {
  26556. source: "./media/characters/sam-evans/face.svg"
  26557. }
  26558. },
  26559. },
  26560. [
  26561. {
  26562. name: "Normal",
  26563. height: math.unit(165, "cm"),
  26564. default: true
  26565. },
  26566. {
  26567. name: "Macro",
  26568. height: math.unit(100, "meters")
  26569. },
  26570. {
  26571. name: "Macro+",
  26572. height: math.unit(800, "meters")
  26573. },
  26574. {
  26575. name: "Macro++",
  26576. height: math.unit(3, "km")
  26577. },
  26578. {
  26579. name: "Macro+++",
  26580. height: math.unit(30, "km")
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26586. {
  26587. front: {
  26588. height: math.unit(10, "feet"),
  26589. weight: math.unit(750, "lb"),
  26590. name: "Front",
  26591. image: {
  26592. source: "./media/characters/juliet-a/front.svg",
  26593. extra: 1766 / 1720,
  26594. bottom: 43 / 1809
  26595. }
  26596. },
  26597. back: {
  26598. height: math.unit(10, "feet"),
  26599. weight: math.unit(750, "lb"),
  26600. name: "Back",
  26601. image: {
  26602. source: "./media/characters/juliet-a/back.svg",
  26603. extra: 1781 / 1734,
  26604. bottom: 35 / 1810,
  26605. }
  26606. },
  26607. },
  26608. [
  26609. {
  26610. name: "Normal",
  26611. height: math.unit(10, "feet"),
  26612. default: true
  26613. },
  26614. {
  26615. name: "Dragon Form",
  26616. height: math.unit(250, "feet")
  26617. },
  26618. {
  26619. name: "Macro",
  26620. height: math.unit(1000, "feet")
  26621. },
  26622. {
  26623. name: "Megamacro",
  26624. height: math.unit(10000, "feet")
  26625. }
  26626. ]
  26627. ))
  26628. characterMakers.push(() => makeCharacter(
  26629. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26630. {
  26631. regular: {
  26632. height: math.unit(7 + 3 / 12, "feet"),
  26633. weight: math.unit(260, "lb"),
  26634. name: "Regular",
  26635. image: {
  26636. source: "./media/characters/wild/regular.svg",
  26637. extra: 97.45 / 92,
  26638. bottom: 6.8 / 104.3
  26639. }
  26640. },
  26641. biggums: {
  26642. height: math.unit(8 + 6 / 12, "feet"),
  26643. weight: math.unit(425, "lb"),
  26644. name: "Biggums",
  26645. image: {
  26646. source: "./media/characters/wild/biggums.svg",
  26647. extra: 97.45 / 92,
  26648. bottom: 7.5 / 132.34
  26649. }
  26650. },
  26651. mawRegular: {
  26652. height: math.unit(1.24, "feet"),
  26653. name: "Maw (Regular)",
  26654. image: {
  26655. source: "./media/characters/wild/maw.svg"
  26656. }
  26657. },
  26658. mawBiggums: {
  26659. height: math.unit(1.47, "feet"),
  26660. name: "Maw (Biggums)",
  26661. image: {
  26662. source: "./media/characters/wild/maw.svg"
  26663. }
  26664. },
  26665. },
  26666. [
  26667. {
  26668. name: "Normal",
  26669. height: math.unit(7 + 3 / 12, "feet"),
  26670. default: true
  26671. },
  26672. ]
  26673. ))
  26674. characterMakers.push(() => makeCharacter(
  26675. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26676. {
  26677. front: {
  26678. height: math.unit(2.5, "meters"),
  26679. weight: math.unit(200, "kg"),
  26680. name: "Front",
  26681. image: {
  26682. source: "./media/characters/vidar/front.svg",
  26683. extra: 2994 / 2795,
  26684. bottom: 56 / 3061
  26685. }
  26686. },
  26687. back: {
  26688. height: math.unit(2.5, "meters"),
  26689. weight: math.unit(200, "kg"),
  26690. name: "Back",
  26691. image: {
  26692. source: "./media/characters/vidar/back.svg",
  26693. extra: 3131 / 2928,
  26694. bottom: 13.5 / 3141.5
  26695. }
  26696. },
  26697. feral: {
  26698. height: math.unit(2.5, "meters"),
  26699. weight: math.unit(2000, "kg"),
  26700. name: "Feral",
  26701. image: {
  26702. source: "./media/characters/vidar/feral.svg",
  26703. extra: 2790 / 1765,
  26704. bottom: 6 / 2796
  26705. }
  26706. },
  26707. },
  26708. [
  26709. {
  26710. name: "Normal",
  26711. height: math.unit(2.5, "meters"),
  26712. default: true
  26713. },
  26714. {
  26715. name: "Macro",
  26716. height: math.unit(100, "meters")
  26717. },
  26718. ]
  26719. ))
  26720. characterMakers.push(() => makeCharacter(
  26721. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26722. {
  26723. front: {
  26724. height: math.unit(5 + 9 / 12, "feet"),
  26725. weight: math.unit(120, "lb"),
  26726. name: "Front",
  26727. image: {
  26728. source: "./media/characters/ash/front.svg",
  26729. extra: 2189 / 1961,
  26730. bottom: 5.2 / 2194
  26731. }
  26732. },
  26733. },
  26734. [
  26735. {
  26736. name: "Normal",
  26737. height: math.unit(5 + 9 / 12, "feet"),
  26738. default: true
  26739. },
  26740. ]
  26741. ))
  26742. characterMakers.push(() => makeCharacter(
  26743. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26744. {
  26745. front: {
  26746. height: math.unit(9, "feet"),
  26747. weight: math.unit(10000, "lb"),
  26748. name: "Front",
  26749. image: {
  26750. source: "./media/characters/gygabite/front.svg",
  26751. bottom: 31.7 / 537.8,
  26752. extra: 505 / 370
  26753. }
  26754. },
  26755. },
  26756. [
  26757. {
  26758. name: "Normal",
  26759. height: math.unit(9, "feet"),
  26760. default: true
  26761. },
  26762. ]
  26763. ))
  26764. characterMakers.push(() => makeCharacter(
  26765. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26766. {
  26767. front: {
  26768. height: math.unit(12, "feet"),
  26769. weight: math.unit(35000, "lb"),
  26770. name: "Front",
  26771. image: {
  26772. source: "./media/characters/p0tat0/front.svg",
  26773. extra: 1065 / 921,
  26774. bottom: 55.7 / 1121.25
  26775. }
  26776. },
  26777. },
  26778. [
  26779. {
  26780. name: "Normal",
  26781. height: math.unit(12, "feet"),
  26782. default: true
  26783. },
  26784. ]
  26785. ))
  26786. characterMakers.push(() => makeCharacter(
  26787. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26788. {
  26789. side: {
  26790. height: math.unit(6.5, "feet"),
  26791. weight: math.unit(800, "lb"),
  26792. name: "Side",
  26793. image: {
  26794. source: "./media/characters/dusk/side.svg",
  26795. extra: 615 / 373,
  26796. bottom: 53 / 664
  26797. }
  26798. },
  26799. sitting: {
  26800. height: math.unit(7, "feet"),
  26801. weight: math.unit(800, "lb"),
  26802. name: "Sitting",
  26803. image: {
  26804. source: "./media/characters/dusk/sitting.svg",
  26805. extra: 753 / 425,
  26806. bottom: 33 / 774
  26807. }
  26808. },
  26809. head: {
  26810. height: math.unit(6.1, "feet"),
  26811. name: "Head",
  26812. image: {
  26813. source: "./media/characters/dusk/head.svg"
  26814. }
  26815. },
  26816. },
  26817. [
  26818. {
  26819. name: "Normal",
  26820. height: math.unit(7, "feet"),
  26821. default: true
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(15, "feet"),
  26830. weight: math.unit(7000, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/jay-direwolf/front.svg",
  26834. extra: 1810 / 1732,
  26835. bottom: 66 / 1892
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Normal",
  26842. height: math.unit(15, "feet"),
  26843. default: true
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26849. {
  26850. front: {
  26851. height: math.unit(4 + 9 / 12, "feet"),
  26852. weight: math.unit(130, "lb"),
  26853. name: "Front",
  26854. image: {
  26855. source: "./media/characters/anchovie/front.svg",
  26856. extra: 382 / 350,
  26857. bottom: 25 / 409
  26858. }
  26859. },
  26860. back: {
  26861. height: math.unit(4 + 9 / 12, "feet"),
  26862. weight: math.unit(130, "lb"),
  26863. name: "Back",
  26864. image: {
  26865. source: "./media/characters/anchovie/back.svg",
  26866. extra: 385 / 352,
  26867. bottom: 16.6 / 402
  26868. }
  26869. },
  26870. frontDressed: {
  26871. height: math.unit(4 + 9 / 12, "feet"),
  26872. weight: math.unit(130, "lb"),
  26873. name: "Front (Dressed)",
  26874. image: {
  26875. source: "./media/characters/anchovie/front-dressed.svg",
  26876. extra: 382 / 350,
  26877. bottom: 25 / 409
  26878. }
  26879. },
  26880. backDressed: {
  26881. height: math.unit(4 + 9 / 12, "feet"),
  26882. weight: math.unit(130, "lb"),
  26883. name: "Back (Dressed)",
  26884. image: {
  26885. source: "./media/characters/anchovie/back-dressed.svg",
  26886. extra: 385 / 352,
  26887. bottom: 16.6 / 402
  26888. }
  26889. },
  26890. },
  26891. [
  26892. {
  26893. name: "Micro",
  26894. height: math.unit(6.4, "inches")
  26895. },
  26896. {
  26897. name: "Normal",
  26898. height: math.unit(4 + 9 / 12, "feet"),
  26899. default: true
  26900. },
  26901. ]
  26902. ))
  26903. characterMakers.push(() => makeCharacter(
  26904. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26905. {
  26906. front: {
  26907. height: math.unit(2, "meters"),
  26908. weight: math.unit(180, "lb"),
  26909. name: "Front",
  26910. image: {
  26911. source: "./media/characters/acidrenamon/front.svg",
  26912. extra: 987 / 890,
  26913. bottom: 22.8 / 1009
  26914. }
  26915. },
  26916. back: {
  26917. height: math.unit(2, "meters"),
  26918. weight: math.unit(180, "lb"),
  26919. name: "Back",
  26920. image: {
  26921. source: "./media/characters/acidrenamon/back.svg",
  26922. extra: 983 / 891,
  26923. bottom: 8.4 / 992
  26924. }
  26925. },
  26926. head: {
  26927. height: math.unit(1.92, "feet"),
  26928. name: "Head",
  26929. image: {
  26930. source: "./media/characters/acidrenamon/head.svg"
  26931. }
  26932. },
  26933. rump: {
  26934. height: math.unit(1.72, "feet"),
  26935. name: "Rump",
  26936. image: {
  26937. source: "./media/characters/acidrenamon/rump.svg"
  26938. }
  26939. },
  26940. tail: {
  26941. height: math.unit(4.2, "feet"),
  26942. name: "Tail",
  26943. image: {
  26944. source: "./media/characters/acidrenamon/tail.svg"
  26945. }
  26946. },
  26947. },
  26948. [
  26949. {
  26950. name: "Normal",
  26951. height: math.unit(2, "meters"),
  26952. default: true
  26953. },
  26954. {
  26955. name: "Minimacro",
  26956. height: math.unit(7, "meters")
  26957. },
  26958. {
  26959. name: "Macro",
  26960. height: math.unit(200, "meters")
  26961. },
  26962. {
  26963. name: "Gigamacro",
  26964. height: math.unit(0.2, "earths")
  26965. },
  26966. ]
  26967. ))
  26968. characterMakers.push(() => makeCharacter(
  26969. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26970. {
  26971. front: {
  26972. height: math.unit(6, "feet"),
  26973. weight: math.unit(150, "lb"),
  26974. name: "Front",
  26975. image: {
  26976. source: "./media/characters/kenzie-lee/front.svg",
  26977. extra: 1525 / 1465,
  26978. bottom: 45 / 1570
  26979. }
  26980. },
  26981. side: {
  26982. height: math.unit(6, "feet"),
  26983. weight: math.unit(150, "lb"),
  26984. name: "Side",
  26985. image: {
  26986. source: "./media/characters/kenzie-lee/side.svg",
  26987. extra: 5505 / 5383,
  26988. bottom: 60 / 5573
  26989. }
  26990. },
  26991. paw: {
  26992. height: math.unit(0.57, "feet"),
  26993. name: "Paw",
  26994. image: {
  26995. source: "./media/characters/kenzie-lee/paw.svg"
  26996. }
  26997. },
  26998. },
  26999. [
  27000. {
  27001. name: "Normal",
  27002. height: math.unit(152, "feet"),
  27003. default: true
  27004. },
  27005. {
  27006. name: "Megamacro",
  27007. height: math.unit(7, "miles")
  27008. },
  27009. {
  27010. name: "Gigamacro",
  27011. height: math.unit(8000, "miles")
  27012. },
  27013. ]
  27014. ))
  27015. characterMakers.push(() => makeCharacter(
  27016. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27017. {
  27018. side: {
  27019. height: math.unit(6, "feet"),
  27020. weight: math.unit(150, "lb"),
  27021. name: "Side",
  27022. image: {
  27023. source: "./media/characters/withers/side.svg",
  27024. extra: 1830 / 1728,
  27025. bottom: 96 / 1927
  27026. }
  27027. },
  27028. front: {
  27029. height: math.unit(6, "feet"),
  27030. weight: math.unit(150, "lb"),
  27031. name: "Front",
  27032. image: {
  27033. source: "./media/characters/withers/front.svg",
  27034. extra: 1514 / 1438,
  27035. bottom: 118 / 1632
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Macro",
  27042. height: math.unit(168, "feet"),
  27043. default: true
  27044. },
  27045. {
  27046. name: "Megamacro",
  27047. height: math.unit(15, "miles")
  27048. }
  27049. ]
  27050. ))
  27051. characterMakers.push(() => makeCharacter(
  27052. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27053. {
  27054. front: {
  27055. height: math.unit(6 + 7 / 12, "feet"),
  27056. weight: math.unit(250, "lb"),
  27057. name: "Front",
  27058. image: {
  27059. source: "./media/characters/nemoskii/front.svg",
  27060. extra: 2270 / 1734,
  27061. bottom: 86 / 2354
  27062. }
  27063. },
  27064. back: {
  27065. height: math.unit(6 + 7 / 12, "feet"),
  27066. weight: math.unit(250, "lb"),
  27067. name: "Back",
  27068. image: {
  27069. source: "./media/characters/nemoskii/back.svg",
  27070. extra: 1845 / 1788,
  27071. bottom: 10.5 / 1852
  27072. }
  27073. },
  27074. head: {
  27075. height: math.unit(1.31, "feet"),
  27076. name: "Head",
  27077. image: {
  27078. source: "./media/characters/nemoskii/head.svg"
  27079. }
  27080. },
  27081. },
  27082. [
  27083. {
  27084. name: "Micro",
  27085. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27086. },
  27087. {
  27088. name: "Normal",
  27089. height: math.unit(6 + 7 / 12, "feet"),
  27090. default: true
  27091. },
  27092. {
  27093. name: "Macro",
  27094. height: math.unit((6 + 7 / 12) * 150, "feet")
  27095. },
  27096. {
  27097. name: "Macro+",
  27098. height: math.unit((6 + 7 / 12) * 500, "feet")
  27099. },
  27100. {
  27101. name: "Megamacro",
  27102. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27103. },
  27104. ]
  27105. ))
  27106. characterMakers.push(() => makeCharacter(
  27107. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27108. {
  27109. front: {
  27110. height: math.unit(1, "mile"),
  27111. weight: math.unit(265261.9, "lb"),
  27112. name: "Front",
  27113. image: {
  27114. source: "./media/characters/shui/front.svg",
  27115. extra: 1633 / 1564,
  27116. bottom: 91.5 / 1726
  27117. }
  27118. },
  27119. },
  27120. [
  27121. {
  27122. name: "Macro",
  27123. height: math.unit(1, "mile"),
  27124. default: true
  27125. },
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27130. {
  27131. front: {
  27132. height: math.unit(12 + 6 / 12, "feet"),
  27133. weight: math.unit(1342, "lb"),
  27134. name: "Front",
  27135. image: {
  27136. source: "./media/characters/arokh-takakura/front.svg",
  27137. extra: 1089 / 1043,
  27138. bottom: 77.4 / 1176.7
  27139. }
  27140. },
  27141. back: {
  27142. height: math.unit(12 + 6 / 12, "feet"),
  27143. weight: math.unit(1342, "lb"),
  27144. name: "Back",
  27145. image: {
  27146. source: "./media/characters/arokh-takakura/back.svg",
  27147. extra: 1046 / 1019,
  27148. bottom: 102 / 1150
  27149. }
  27150. },
  27151. },
  27152. [
  27153. {
  27154. name: "Big",
  27155. height: math.unit(12 + 6 / 12, "feet"),
  27156. default: true
  27157. },
  27158. ]
  27159. ))
  27160. characterMakers.push(() => makeCharacter(
  27161. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27162. {
  27163. front: {
  27164. height: math.unit(5 + 6 / 12, "feet"),
  27165. weight: math.unit(150, "lb"),
  27166. name: "Front",
  27167. image: {
  27168. source: "./media/characters/theo/front.svg",
  27169. extra: 1184 / 1131,
  27170. bottom: 7.4 / 1191
  27171. }
  27172. },
  27173. },
  27174. [
  27175. {
  27176. name: "Micro",
  27177. height: math.unit(5, "inches")
  27178. },
  27179. {
  27180. name: "Normal",
  27181. height: math.unit(5 + 6 / 12, "feet"),
  27182. default: true
  27183. },
  27184. ]
  27185. ))
  27186. characterMakers.push(() => makeCharacter(
  27187. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27188. {
  27189. front: {
  27190. height: math.unit(5 + 9 / 12, "feet"),
  27191. weight: math.unit(130, "lb"),
  27192. name: "Front",
  27193. image: {
  27194. source: "./media/characters/cecelia-swift/front.svg",
  27195. extra: 502 / 484,
  27196. bottom: 23 / 523
  27197. }
  27198. },
  27199. back: {
  27200. height: math.unit(5 + 9 / 12, "feet"),
  27201. weight: math.unit(130, "lb"),
  27202. name: "Back",
  27203. image: {
  27204. source: "./media/characters/cecelia-swift/back.svg",
  27205. extra: 499 / 485,
  27206. bottom: 12 / 511
  27207. }
  27208. },
  27209. head: {
  27210. height: math.unit(0.90, "feet"),
  27211. name: "Head",
  27212. image: {
  27213. source: "./media/characters/cecelia-swift/head.svg"
  27214. }
  27215. },
  27216. rump: {
  27217. height: math.unit(1.75, "feet"),
  27218. name: "Rump",
  27219. image: {
  27220. source: "./media/characters/cecelia-swift/rump.svg"
  27221. }
  27222. },
  27223. },
  27224. [
  27225. {
  27226. name: "Normal",
  27227. height: math.unit(5 + 9 / 12, "feet"),
  27228. default: true
  27229. },
  27230. {
  27231. name: "Big",
  27232. height: math.unit(50, "feet")
  27233. },
  27234. {
  27235. name: "Macro",
  27236. height: math.unit(100, "feet")
  27237. },
  27238. {
  27239. name: "Macro+",
  27240. height: math.unit(500, "feet")
  27241. },
  27242. {
  27243. name: "Macro++",
  27244. height: math.unit(1000, "feet")
  27245. },
  27246. ]
  27247. ))
  27248. characterMakers.push(() => makeCharacter(
  27249. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27250. {
  27251. front: {
  27252. height: math.unit(6, "feet"),
  27253. weight: math.unit(150, "lb"),
  27254. name: "Front",
  27255. image: {
  27256. source: "./media/characters/kaunan/front.svg",
  27257. extra: 2890 / 2523,
  27258. bottom: 49 / 2939
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Macro",
  27265. height: math.unit(150, "feet"),
  27266. default: true
  27267. },
  27268. ]
  27269. ))
  27270. characterMakers.push(() => makeCharacter(
  27271. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27272. {
  27273. front: {
  27274. height: math.unit(175, "cm"),
  27275. weight: math.unit(60, "kg"),
  27276. name: "Front",
  27277. image: {
  27278. source: "./media/characters/fei/front.svg",
  27279. extra: 2581 / 2400,
  27280. bottom: 82.2 / 2663
  27281. }
  27282. },
  27283. },
  27284. [
  27285. {
  27286. name: "Mortal",
  27287. height: math.unit(175, "cm")
  27288. },
  27289. {
  27290. name: "Normal",
  27291. height: math.unit(3500, "m"),
  27292. default: true
  27293. },
  27294. {
  27295. name: "Stroll",
  27296. height: math.unit(17.5, "km")
  27297. },
  27298. {
  27299. name: "Showoff",
  27300. height: math.unit(175, "km")
  27301. },
  27302. ]
  27303. ))
  27304. characterMakers.push(() => makeCharacter(
  27305. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27306. {
  27307. front: {
  27308. height: math.unit(7, "feet"),
  27309. weight: math.unit(1000, "kg"),
  27310. name: "Front",
  27311. image: {
  27312. source: "./media/characters/edrax/front.svg",
  27313. extra: 2838 / 2550,
  27314. bottom: 130 / 2968
  27315. }
  27316. },
  27317. },
  27318. [
  27319. {
  27320. name: "Small",
  27321. height: math.unit(7, "feet")
  27322. },
  27323. {
  27324. name: "Normal",
  27325. height: math.unit(1500, "meters")
  27326. },
  27327. {
  27328. name: "Mega",
  27329. height: math.unit(12000000, "km"),
  27330. default: true
  27331. },
  27332. {
  27333. name: "Megamacro",
  27334. height: math.unit(10600000, "lightyears")
  27335. },
  27336. {
  27337. name: "Hypermacro",
  27338. height: math.unit(256, "yottameters")
  27339. },
  27340. ]
  27341. ))
  27342. characterMakers.push(() => makeCharacter(
  27343. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27344. {
  27345. front: {
  27346. height: math.unit(10, "feet"),
  27347. weight: math.unit(750, "lb"),
  27348. name: "Front",
  27349. image: {
  27350. source: "./media/characters/clove/front.svg",
  27351. extra: 2031 / 1860,
  27352. bottom: 47.8 / 2080
  27353. }
  27354. },
  27355. back: {
  27356. height: math.unit(10, "feet"),
  27357. weight: math.unit(750, "lb"),
  27358. name: "Back",
  27359. image: {
  27360. source: "./media/characters/clove/back.svg",
  27361. extra: 2025 / 1859,
  27362. bottom: 46 / 2071
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "Normal",
  27369. height: math.unit(10, "feet"),
  27370. default: true
  27371. },
  27372. ]
  27373. ))
  27374. characterMakers.push(() => makeCharacter(
  27375. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27376. {
  27377. front: {
  27378. height: math.unit(4, "feet"),
  27379. weight: math.unit(50, "lb"),
  27380. name: "Front",
  27381. image: {
  27382. source: "./media/characters/alex-rabbit/front.svg",
  27383. extra: 507 / 458,
  27384. bottom: 18.5 / 527
  27385. }
  27386. },
  27387. back: {
  27388. height: math.unit(4, "feet"),
  27389. weight: math.unit(50, "lb"),
  27390. name: "Back",
  27391. image: {
  27392. source: "./media/characters/alex-rabbit/back.svg",
  27393. extra: 502 / 460,
  27394. bottom: 18.9 / 521
  27395. }
  27396. },
  27397. },
  27398. [
  27399. {
  27400. name: "Normal",
  27401. height: math.unit(4, "feet"),
  27402. default: true
  27403. },
  27404. ]
  27405. ))
  27406. characterMakers.push(() => makeCharacter(
  27407. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27408. {
  27409. front: {
  27410. height: math.unit(1 + 3 / 12, "feet"),
  27411. weight: math.unit(80, "lb"),
  27412. name: "Front",
  27413. image: {
  27414. source: "./media/characters/zander-rose/front.svg",
  27415. extra: 916 / 797,
  27416. bottom: 17 / 933
  27417. }
  27418. },
  27419. back: {
  27420. height: math.unit(1 + 3 / 12, "feet"),
  27421. weight: math.unit(80, "lb"),
  27422. name: "Back",
  27423. image: {
  27424. source: "./media/characters/zander-rose/back.svg",
  27425. extra: 903 / 779,
  27426. bottom: 31 / 934
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(1 + 3 / 12, "feet"),
  27434. default: true
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27440. {
  27441. anthro: {
  27442. height: math.unit(6, "feet"),
  27443. weight: math.unit(150, "lb"),
  27444. name: "Anthro",
  27445. image: {
  27446. source: "./media/characters/razz/anthro.svg",
  27447. extra: 1437 / 1343,
  27448. bottom: 48 / 1485
  27449. }
  27450. },
  27451. feral: {
  27452. height: math.unit(6, "feet"),
  27453. weight: math.unit(150, "lb"),
  27454. name: "Feral",
  27455. image: {
  27456. source: "./media/characters/razz/feral.svg",
  27457. extra: 2569 / 1385,
  27458. bottom: 95 / 2664
  27459. }
  27460. },
  27461. },
  27462. [
  27463. {
  27464. name: "Normal",
  27465. height: math.unit(6, "feet"),
  27466. default: true
  27467. },
  27468. ]
  27469. ))
  27470. characterMakers.push(() => makeCharacter(
  27471. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27472. {
  27473. front: {
  27474. height: math.unit(9 + 4 / 12, "feet"),
  27475. weight: math.unit(500, "lb"),
  27476. name: "Front",
  27477. image: {
  27478. source: "./media/characters/morrigan/front.svg",
  27479. extra: 2707 / 2579,
  27480. bottom: 156 / 2863
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Normal",
  27487. height: math.unit(9 + 4 / 12, "feet"),
  27488. default: true
  27489. },
  27490. ]
  27491. ))
  27492. characterMakers.push(() => makeCharacter(
  27493. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27494. {
  27495. front: {
  27496. height: math.unit(5, "stories"),
  27497. weight: math.unit(4000, "lb"),
  27498. name: "Front",
  27499. image: {
  27500. source: "./media/characters/jenene/front.svg",
  27501. extra: 1780 / 1710,
  27502. bottom: 57 / 1837
  27503. }
  27504. },
  27505. },
  27506. [
  27507. {
  27508. name: "Normal",
  27509. height: math.unit(5, "stories"),
  27510. default: true
  27511. },
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27516. {
  27517. front: {
  27518. height: math.unit(6, "feet"),
  27519. weight: math.unit(150, "lb"),
  27520. name: "Front",
  27521. image: {
  27522. source: "./media/characters/vix-archaser/front.svg",
  27523. extra: 2767 / 2562,
  27524. bottom: 36 / 2803
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Micro",
  27531. height: math.unit(1, "foot")
  27532. },
  27533. {
  27534. name: "Normal",
  27535. height: math.unit(6 + 5 / 12, "feet")
  27536. },
  27537. {
  27538. name: "Minimacro",
  27539. height: math.unit(500, "feet")
  27540. },
  27541. {
  27542. name: "Macro",
  27543. height: math.unit(4, "miles")
  27544. },
  27545. {
  27546. name: "Megamacro",
  27547. height: math.unit(250, "miles"),
  27548. default: true
  27549. },
  27550. {
  27551. name: "Gigamacro",
  27552. height: math.unit(1, "universe")
  27553. },
  27554. {
  27555. name: "Endgame",
  27556. height: math.unit(100, "multiverses")
  27557. }
  27558. ]
  27559. ))
  27560. characterMakers.push(() => makeCharacter(
  27561. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27562. {
  27563. taurSfw: {
  27564. height: math.unit(10, "meters"),
  27565. weight: math.unit(17500, "kg"),
  27566. name: "Taur",
  27567. image: {
  27568. source: "./media/characters/faey/taur-sfw.svg",
  27569. extra: 1200 / 968,
  27570. bottom: 41 / 1241
  27571. }
  27572. },
  27573. chestmaw: {
  27574. height: math.unit(2.01, "meters"),
  27575. name: "Chestmaw",
  27576. image: {
  27577. source: "./media/characters/faey/chestmaw.svg"
  27578. }
  27579. },
  27580. foot: {
  27581. height: math.unit(2.43, "meters"),
  27582. name: "Foot",
  27583. image: {
  27584. source: "./media/characters/faey/foot.svg"
  27585. }
  27586. },
  27587. jaws: {
  27588. height: math.unit(1.66, "meters"),
  27589. name: "Jaws",
  27590. image: {
  27591. source: "./media/characters/faey/jaws.svg"
  27592. }
  27593. },
  27594. tongues: {
  27595. height: math.unit(2.01, "meters"),
  27596. name: "Tongues",
  27597. image: {
  27598. source: "./media/characters/faey/tongues.svg"
  27599. }
  27600. },
  27601. },
  27602. [
  27603. {
  27604. name: "Small",
  27605. height: math.unit(10, "meters"),
  27606. default: true
  27607. },
  27608. {
  27609. name: "Big",
  27610. height: math.unit(500000, "km")
  27611. },
  27612. ]
  27613. ))
  27614. characterMakers.push(() => makeCharacter(
  27615. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27616. {
  27617. front: {
  27618. height: math.unit(7, "feet"),
  27619. weight: math.unit(275, "lb"),
  27620. name: "Front",
  27621. image: {
  27622. source: "./media/characters/roku/front.svg",
  27623. extra: 903 / 878,
  27624. bottom: 37 / 940
  27625. }
  27626. },
  27627. },
  27628. [
  27629. {
  27630. name: "Normal",
  27631. height: math.unit(7, "feet"),
  27632. default: true
  27633. },
  27634. {
  27635. name: "Macro",
  27636. height: math.unit(500, "feet")
  27637. },
  27638. {
  27639. name: "Megamacro",
  27640. height: math.unit(200, "miles")
  27641. },
  27642. ]
  27643. ))
  27644. characterMakers.push(() => makeCharacter(
  27645. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27646. {
  27647. front: {
  27648. height: math.unit(6 + 2 / 12, "feet"),
  27649. weight: math.unit(150, "lb"),
  27650. name: "Front",
  27651. image: {
  27652. source: "./media/characters/lira/front.svg",
  27653. extra: 1727 / 1605,
  27654. bottom: 26 / 1753
  27655. }
  27656. },
  27657. back: {
  27658. height: math.unit(6 + 2 / 12, "feet"),
  27659. weight: math.unit(150, "lb"),
  27660. name: "Back",
  27661. image: {
  27662. source: "./media/characters/lira/back.svg",
  27663. extra: 1713/1621,
  27664. bottom: 20/1733
  27665. }
  27666. },
  27667. hand: {
  27668. height: math.unit(0.75, "feet"),
  27669. name: "Hand",
  27670. image: {
  27671. source: "./media/characters/lira/hand.svg"
  27672. }
  27673. },
  27674. maw: {
  27675. height: math.unit(0.65, "feet"),
  27676. name: "Maw",
  27677. image: {
  27678. source: "./media/characters/lira/maw.svg"
  27679. }
  27680. },
  27681. pawDigi: {
  27682. height: math.unit(1.6, "feet"),
  27683. name: "Paw Digi",
  27684. image: {
  27685. source: "./media/characters/lira/paw-digi.svg"
  27686. }
  27687. },
  27688. pawPlanti: {
  27689. height: math.unit(1.4, "feet"),
  27690. name: "Paw Planti",
  27691. image: {
  27692. source: "./media/characters/lira/paw-planti.svg"
  27693. }
  27694. },
  27695. },
  27696. [
  27697. {
  27698. name: "Normal",
  27699. height: math.unit(6 + 2 / 12, "feet"),
  27700. default: true
  27701. },
  27702. {
  27703. name: "Macro",
  27704. height: math.unit(100, "feet")
  27705. },
  27706. {
  27707. name: "Macro²",
  27708. height: math.unit(1600, "feet")
  27709. },
  27710. {
  27711. name: "Planetary",
  27712. height: math.unit(20, "earths")
  27713. },
  27714. ]
  27715. ))
  27716. characterMakers.push(() => makeCharacter(
  27717. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27718. {
  27719. front: {
  27720. height: math.unit(6, "feet"),
  27721. weight: math.unit(150, "lb"),
  27722. name: "Front",
  27723. image: {
  27724. source: "./media/characters/hadjet/front.svg",
  27725. extra: 1480 / 1346,
  27726. bottom: 26 / 1506
  27727. }
  27728. },
  27729. frontNsfw: {
  27730. height: math.unit(6, "feet"),
  27731. weight: math.unit(150, "lb"),
  27732. name: "Front (NSFW)",
  27733. image: {
  27734. source: "./media/characters/hadjet/front-nsfw.svg",
  27735. extra: 1440 / 1358,
  27736. bottom: 52 / 1492
  27737. }
  27738. },
  27739. },
  27740. [
  27741. {
  27742. name: "Macro",
  27743. height: math.unit(10, "stories"),
  27744. default: true
  27745. },
  27746. {
  27747. name: "Megamacro",
  27748. height: math.unit(1.5, "miles")
  27749. },
  27750. {
  27751. name: "Megamacro+",
  27752. height: math.unit(5, "miles")
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27758. {
  27759. side: {
  27760. height: math.unit(106, "feet"),
  27761. weight: math.unit(500, "tonnes"),
  27762. name: "Side",
  27763. image: {
  27764. source: "./media/characters/kodran/side.svg",
  27765. extra: 553 / 480,
  27766. bottom: 33 / 586
  27767. }
  27768. },
  27769. front: {
  27770. height: math.unit(132, "feet"),
  27771. weight: math.unit(500, "tonnes"),
  27772. name: "Front",
  27773. image: {
  27774. source: "./media/characters/kodran/front.svg",
  27775. extra: 667 / 643,
  27776. bottom: 42 / 709
  27777. }
  27778. },
  27779. flying: {
  27780. height: math.unit(350, "feet"),
  27781. weight: math.unit(500, "tonnes"),
  27782. name: "Flying",
  27783. image: {
  27784. source: "./media/characters/kodran/flying.svg"
  27785. }
  27786. },
  27787. foot: {
  27788. height: math.unit(33, "feet"),
  27789. name: "Foot",
  27790. image: {
  27791. source: "./media/characters/kodran/foot.svg"
  27792. }
  27793. },
  27794. footFront: {
  27795. height: math.unit(19, "feet"),
  27796. name: "Foot (Front)",
  27797. image: {
  27798. source: "./media/characters/kodran/foot-front.svg",
  27799. extra: 261 / 261,
  27800. bottom: 91 / 352
  27801. }
  27802. },
  27803. headFront: {
  27804. height: math.unit(53, "feet"),
  27805. name: "Head (Front)",
  27806. image: {
  27807. source: "./media/characters/kodran/head-front.svg"
  27808. }
  27809. },
  27810. headSide: {
  27811. height: math.unit(65, "feet"),
  27812. name: "Head (Side)",
  27813. image: {
  27814. source: "./media/characters/kodran/head-side.svg"
  27815. }
  27816. },
  27817. throat: {
  27818. height: math.unit(79, "feet"),
  27819. name: "Throat",
  27820. image: {
  27821. source: "./media/characters/kodran/throat.svg"
  27822. }
  27823. },
  27824. },
  27825. [
  27826. {
  27827. name: "Large",
  27828. height: math.unit(106, "feet"),
  27829. default: true
  27830. },
  27831. ]
  27832. ))
  27833. characterMakers.push(() => makeCharacter(
  27834. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27835. {
  27836. side: {
  27837. height: math.unit(11, "feet"),
  27838. weight: math.unit(150, "lb"),
  27839. name: "Side",
  27840. image: {
  27841. source: "./media/characters/pyxaron/side.svg",
  27842. extra: 305 / 195,
  27843. bottom: 17 / 322
  27844. }
  27845. },
  27846. },
  27847. [
  27848. {
  27849. name: "Normal",
  27850. height: math.unit(11, "feet"),
  27851. default: true
  27852. },
  27853. ]
  27854. ))
  27855. characterMakers.push(() => makeCharacter(
  27856. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27857. {
  27858. front: {
  27859. height: math.unit(6, "feet"),
  27860. weight: math.unit(150, "lb"),
  27861. name: "Front",
  27862. image: {
  27863. source: "./media/characters/meep/front.svg",
  27864. extra: 88 / 80,
  27865. bottom: 6 / 94
  27866. }
  27867. },
  27868. },
  27869. [
  27870. {
  27871. name: "Fun Sized",
  27872. height: math.unit(2, "inches"),
  27873. default: true
  27874. },
  27875. {
  27876. name: "Friend Sized",
  27877. height: math.unit(8, "inches")
  27878. },
  27879. ]
  27880. ))
  27881. characterMakers.push(() => makeCharacter(
  27882. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27883. {
  27884. front: {
  27885. height: math.unit(15, "feet"),
  27886. weight: math.unit(2500, "lb"),
  27887. name: "Front",
  27888. image: {
  27889. source: "./media/characters/holly-rabbit/front.svg",
  27890. extra: 1433 / 1233,
  27891. bottom: 125 / 1558
  27892. }
  27893. },
  27894. dick: {
  27895. height: math.unit(4.6, "feet"),
  27896. name: "Dick",
  27897. image: {
  27898. source: "./media/characters/holly-rabbit/dick.svg"
  27899. }
  27900. },
  27901. },
  27902. [
  27903. {
  27904. name: "Normal",
  27905. height: math.unit(15, "feet"),
  27906. default: true
  27907. },
  27908. {
  27909. name: "Macro",
  27910. height: math.unit(250, "feet")
  27911. },
  27912. {
  27913. name: "Macro+",
  27914. height: math.unit(2500, "feet")
  27915. },
  27916. ]
  27917. ))
  27918. characterMakers.push(() => makeCharacter(
  27919. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27920. {
  27921. front: {
  27922. height: math.unit(3.02, "meters"),
  27923. weight: math.unit(500, "kg"),
  27924. name: "Front",
  27925. image: {
  27926. source: "./media/characters/drena/front.svg",
  27927. extra: 282 / 243,
  27928. bottom: 8 / 290
  27929. }
  27930. },
  27931. side: {
  27932. height: math.unit(3.02, "meters"),
  27933. weight: math.unit(500, "kg"),
  27934. name: "Side",
  27935. image: {
  27936. source: "./media/characters/drena/side.svg",
  27937. extra: 280 / 245,
  27938. bottom: 10 / 290
  27939. }
  27940. },
  27941. back: {
  27942. height: math.unit(3.02, "meters"),
  27943. weight: math.unit(500, "kg"),
  27944. name: "Back",
  27945. image: {
  27946. source: "./media/characters/drena/back.svg",
  27947. extra: 278 / 243,
  27948. bottom: 2 / 280
  27949. }
  27950. },
  27951. foot: {
  27952. height: math.unit(0.75, "meters"),
  27953. name: "Foot",
  27954. image: {
  27955. source: "./media/characters/drena/foot.svg"
  27956. }
  27957. },
  27958. maw: {
  27959. height: math.unit(0.82, "meters"),
  27960. name: "Maw",
  27961. image: {
  27962. source: "./media/characters/drena/maw.svg"
  27963. }
  27964. },
  27965. rump: {
  27966. height: math.unit(0.93, "meters"),
  27967. name: "Rump",
  27968. image: {
  27969. source: "./media/characters/drena/rump.svg"
  27970. }
  27971. },
  27972. },
  27973. [
  27974. {
  27975. name: "Normal",
  27976. height: math.unit(3.02, "meters"),
  27977. default: true
  27978. },
  27979. ]
  27980. ))
  27981. characterMakers.push(() => makeCharacter(
  27982. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27983. {
  27984. front: {
  27985. height: math.unit(6 + 4 / 12, "feet"),
  27986. weight: math.unit(250, "lb"),
  27987. name: "Front",
  27988. image: {
  27989. source: "./media/characters/remmyzilla/front.svg",
  27990. extra: 4033 / 3588,
  27991. bottom: 123 / 4156
  27992. }
  27993. },
  27994. back: {
  27995. height: math.unit(6 + 4 / 12, "feet"),
  27996. weight: math.unit(250, "lb"),
  27997. name: "Back",
  27998. image: {
  27999. source: "./media/characters/remmyzilla/back.svg",
  28000. extra: 2687 / 2555,
  28001. bottom: 48 / 2735
  28002. }
  28003. },
  28004. frontFancy: {
  28005. height: math.unit(6 + 4 / 12, "feet"),
  28006. weight: math.unit(250, "lb"),
  28007. name: "Front (Fancy)",
  28008. image: {
  28009. source: "./media/characters/remmyzilla/front-fancy.svg",
  28010. extra: 4119 / 3419,
  28011. bottom: 237 / 4356
  28012. }
  28013. },
  28014. paw: {
  28015. height: math.unit(1.73, "feet"),
  28016. name: "Paw",
  28017. image: {
  28018. source: "./media/characters/remmyzilla/paw.svg"
  28019. }
  28020. },
  28021. maw: {
  28022. height: math.unit(1.73, "feet"),
  28023. name: "Maw",
  28024. image: {
  28025. source: "./media/characters/remmyzilla/maw.svg"
  28026. }
  28027. },
  28028. },
  28029. [
  28030. {
  28031. name: "Normal",
  28032. height: math.unit(6 + 4 / 12, "feet")
  28033. },
  28034. {
  28035. name: "Minimacro",
  28036. height: math.unit(12 + 8 / 12, "feet")
  28037. },
  28038. {
  28039. name: "Normal",
  28040. height: math.unit(640, "feet"),
  28041. default: true
  28042. },
  28043. {
  28044. name: "Megamacro",
  28045. height: math.unit(6400, "feet")
  28046. },
  28047. {
  28048. name: "Gigamacro",
  28049. height: math.unit(64000, "miles")
  28050. },
  28051. ]
  28052. ))
  28053. characterMakers.push(() => makeCharacter(
  28054. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28055. {
  28056. front: {
  28057. height: math.unit(2.5, "meters"),
  28058. weight: math.unit(300, "lb"),
  28059. name: "Front",
  28060. image: {
  28061. source: "./media/characters/lawrence/front.svg",
  28062. extra: 357 / 335,
  28063. bottom: 30 / 387
  28064. }
  28065. },
  28066. back: {
  28067. height: math.unit(2.5, "meters"),
  28068. weight: math.unit(300, "lb"),
  28069. name: "Back",
  28070. image: {
  28071. source: "./media/characters/lawrence/back.svg",
  28072. extra: 357 / 338,
  28073. bottom: 16 / 373
  28074. }
  28075. },
  28076. head: {
  28077. height: math.unit(0.9, "meter"),
  28078. name: "Head",
  28079. image: {
  28080. source: "./media/characters/lawrence/head.svg"
  28081. }
  28082. },
  28083. maw: {
  28084. height: math.unit(0.7, "meter"),
  28085. name: "Maw",
  28086. image: {
  28087. source: "./media/characters/lawrence/maw.svg"
  28088. }
  28089. },
  28090. footBottom: {
  28091. height: math.unit(0.5, "meter"),
  28092. name: "Foot (Bottom)",
  28093. image: {
  28094. source: "./media/characters/lawrence/foot-bottom.svg"
  28095. }
  28096. },
  28097. footTop: {
  28098. height: math.unit(0.5, "meter"),
  28099. name: "Foot (Top)",
  28100. image: {
  28101. source: "./media/characters/lawrence/foot-top.svg"
  28102. }
  28103. },
  28104. },
  28105. [
  28106. {
  28107. name: "Normal",
  28108. height: math.unit(2.5, "meters"),
  28109. default: true
  28110. },
  28111. {
  28112. name: "Macro",
  28113. height: math.unit(95, "meters")
  28114. },
  28115. {
  28116. name: "Megamacro",
  28117. height: math.unit(150, "km")
  28118. },
  28119. ]
  28120. ))
  28121. characterMakers.push(() => makeCharacter(
  28122. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28123. {
  28124. front: {
  28125. height: math.unit(4.2, "meters"),
  28126. name: "Front",
  28127. image: {
  28128. source: "./media/characters/sydney/front.svg",
  28129. extra: 1323 / 1277,
  28130. bottom: 111 / 1434
  28131. }
  28132. },
  28133. },
  28134. [
  28135. {
  28136. name: "Normal",
  28137. height: math.unit(4.2, "meters"),
  28138. default: true
  28139. },
  28140. ]
  28141. ))
  28142. characterMakers.push(() => makeCharacter(
  28143. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28144. {
  28145. back: {
  28146. height: math.unit(201, "feet"),
  28147. name: "Back",
  28148. image: {
  28149. source: "./media/characters/jessica/back.svg",
  28150. extra: 273 / 259,
  28151. bottom: 7 / 280
  28152. }
  28153. },
  28154. },
  28155. [
  28156. {
  28157. name: "Normal",
  28158. height: math.unit(201, "feet"),
  28159. default: true
  28160. },
  28161. {
  28162. name: "Megamacro",
  28163. height: math.unit(8, "miles")
  28164. },
  28165. ]
  28166. ))
  28167. characterMakers.push(() => makeCharacter(
  28168. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28169. {
  28170. side: {
  28171. height: math.unit(320, "cm"),
  28172. name: "Side",
  28173. image: {
  28174. source: "./media/characters/victoria/side.svg",
  28175. extra: 778 / 346,
  28176. bottom: 56 / 834
  28177. }
  28178. },
  28179. maw: {
  28180. height: math.unit(5.9, "feet"),
  28181. name: "Maw",
  28182. image: {
  28183. source: "./media/characters/victoria/maw.svg"
  28184. }
  28185. },
  28186. },
  28187. [
  28188. {
  28189. name: "Normal",
  28190. height: math.unit(320, "cm"),
  28191. default: true
  28192. },
  28193. ]
  28194. ))
  28195. characterMakers.push(() => makeCharacter(
  28196. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28197. {
  28198. front: {
  28199. height: math.unit(5 + 6 / 12, "feet"),
  28200. name: "Front",
  28201. image: {
  28202. source: "./media/characters/cat/front.svg",
  28203. extra: 1374 / 1257,
  28204. bottom: 59 / 1433
  28205. }
  28206. },
  28207. back: {
  28208. height: math.unit(5 + 6 / 12, "feet"),
  28209. name: "Back",
  28210. image: {
  28211. source: "./media/characters/cat/back.svg",
  28212. extra: 1337 / 1226,
  28213. bottom: 34 / 1371
  28214. }
  28215. },
  28216. taur: {
  28217. height: math.unit(7, "feet"),
  28218. name: "Taur",
  28219. image: {
  28220. source: "./media/characters/cat/taur.svg",
  28221. extra: 1345 / 1231,
  28222. bottom: 66 / 1411
  28223. }
  28224. },
  28225. lucario: {
  28226. height: math.unit(4, "feet"),
  28227. name: "Lucario",
  28228. image: {
  28229. source: "./media/characters/cat/lucario.svg",
  28230. extra: 1470 / 1318,
  28231. bottom: 65 / 1535
  28232. }
  28233. },
  28234. megaLucario: {
  28235. height: math.unit(4, "feet"),
  28236. name: "Mega Lucario",
  28237. image: {
  28238. source: "./media/characters/cat/mega-lucario.svg",
  28239. extra: 1515 / 1319,
  28240. bottom: 63 / 1578
  28241. }
  28242. },
  28243. nickit: {
  28244. height: math.unit(2, "feet"),
  28245. name: "Nickit",
  28246. image: {
  28247. source: "./media/characters/cat/nickit.svg",
  28248. extra: 1980 / 1585,
  28249. bottom: 102 / 2082
  28250. }
  28251. },
  28252. lopunnyFront: {
  28253. height: math.unit(5, "feet"),
  28254. name: "Lopunny (Front)",
  28255. image: {
  28256. source: "./media/characters/cat/lopunny-front.svg",
  28257. extra: 1782 / 1469,
  28258. bottom: 38 / 1820
  28259. }
  28260. },
  28261. lopunnyBack: {
  28262. height: math.unit(5, "feet"),
  28263. name: "Lopunny (Back)",
  28264. image: {
  28265. source: "./media/characters/cat/lopunny-back.svg",
  28266. extra: 1660 / 1490,
  28267. bottom: 25 / 1685
  28268. }
  28269. },
  28270. },
  28271. [
  28272. {
  28273. name: "Really small",
  28274. height: math.unit(1, "nm")
  28275. },
  28276. {
  28277. name: "Micro",
  28278. height: math.unit(5, "inches")
  28279. },
  28280. {
  28281. name: "Normal",
  28282. height: math.unit(5 + 6 / 12, "feet"),
  28283. default: true
  28284. },
  28285. {
  28286. name: "Macro",
  28287. height: math.unit(50, "feet")
  28288. },
  28289. {
  28290. name: "Macro+",
  28291. height: math.unit(150, "feet")
  28292. },
  28293. {
  28294. name: "Megamacro",
  28295. height: math.unit(100, "miles")
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(63.4, "meters"),
  28304. weight: math.unit(3.28349e+6, "kilograms"),
  28305. name: "Front",
  28306. image: {
  28307. source: "./media/characters/kirina-violet/front.svg",
  28308. extra: 2812 / 2725,
  28309. bottom: 0 / 2812
  28310. }
  28311. },
  28312. back: {
  28313. height: math.unit(63.4, "meters"),
  28314. weight: math.unit(3.28349e+6, "kilograms"),
  28315. name: "Back",
  28316. image: {
  28317. source: "./media/characters/kirina-violet/back.svg",
  28318. extra: 2812 / 2725,
  28319. bottom: 0 / 2812
  28320. }
  28321. },
  28322. mouth: {
  28323. height: math.unit(4.35, "meters"),
  28324. name: "Mouth",
  28325. image: {
  28326. source: "./media/characters/kirina-violet/mouth.svg"
  28327. }
  28328. },
  28329. paw: {
  28330. height: math.unit(5.6, "meters"),
  28331. name: "Paw",
  28332. image: {
  28333. source: "./media/characters/kirina-violet/paw.svg"
  28334. }
  28335. },
  28336. tail: {
  28337. height: math.unit(18, "meters"),
  28338. name: "Tail",
  28339. image: {
  28340. source: "./media/characters/kirina-violet/tail.svg"
  28341. }
  28342. },
  28343. },
  28344. [
  28345. {
  28346. name: "Macro",
  28347. height: math.unit(63.4, "meters"),
  28348. default: true
  28349. },
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(60, "feet"),
  28357. name: "Front",
  28358. image: {
  28359. source: "./media/characters/cat-gigachu/front.svg",
  28360. extra: 1024 / 780,
  28361. bottom: 23 / 1047
  28362. }
  28363. },
  28364. back: {
  28365. height: math.unit(60, "feet"),
  28366. name: "Back",
  28367. image: {
  28368. source: "./media/characters/cat-gigachu/back.svg",
  28369. extra: 1024 / 780,
  28370. bottom: 23 / 1047
  28371. }
  28372. },
  28373. },
  28374. [
  28375. {
  28376. name: "Dynamax",
  28377. height: math.unit(60, "feet"),
  28378. default: true
  28379. },
  28380. ]
  28381. ))
  28382. characterMakers.push(() => makeCharacter(
  28383. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28384. {
  28385. front: {
  28386. height: math.unit(6, "feet"),
  28387. weight: math.unit(150, "lb"),
  28388. name: "Front",
  28389. image: {
  28390. source: "./media/characters/sfaiyan/front.svg",
  28391. extra: 999 / 978,
  28392. bottom: 5 / 1004
  28393. }
  28394. },
  28395. },
  28396. [
  28397. {
  28398. name: "Normal",
  28399. height: math.unit(1.82, "meters")
  28400. },
  28401. {
  28402. name: "Giant",
  28403. height: math.unit(2.27, "km"),
  28404. default: true
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28410. {
  28411. front: {
  28412. height: math.unit(179, "cm"),
  28413. weight: math.unit(100, "kg"),
  28414. name: "Front",
  28415. image: {
  28416. source: "./media/characters/raunehkeli/front.svg",
  28417. extra: 1934 / 1926,
  28418. bottom: 0 / 1934
  28419. }
  28420. },
  28421. },
  28422. [
  28423. {
  28424. name: "Normal",
  28425. height: math.unit(179, "cm")
  28426. },
  28427. {
  28428. name: "Maximum",
  28429. height: math.unit(575, "meters"),
  28430. default: true
  28431. },
  28432. ]
  28433. ))
  28434. characterMakers.push(() => makeCharacter(
  28435. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28436. {
  28437. front: {
  28438. height: math.unit(6, "feet"),
  28439. weight: math.unit(150, "lb"),
  28440. name: "Front",
  28441. image: {
  28442. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28443. extra: 2625 / 2518,
  28444. bottom: 60 / 2685
  28445. }
  28446. },
  28447. },
  28448. [
  28449. {
  28450. name: "Normal",
  28451. height: math.unit(6 + 2 / 12, "feet")
  28452. },
  28453. {
  28454. name: "Macro",
  28455. height: math.unit(1180, "feet"),
  28456. default: true
  28457. },
  28458. ]
  28459. ))
  28460. characterMakers.push(() => makeCharacter(
  28461. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28462. {
  28463. front: {
  28464. height: math.unit(5 + 6 / 12, "feet"),
  28465. weight: math.unit(108, "lb"),
  28466. name: "Front",
  28467. image: {
  28468. source: "./media/characters/lilith-zott/front.svg",
  28469. extra: 2510 / 2238,
  28470. bottom: 100 / 2610
  28471. }
  28472. },
  28473. frontDressed: {
  28474. height: math.unit(5 + 6 / 12, "feet"),
  28475. weight: math.unit(108, "lb"),
  28476. name: "Front (Dressed)",
  28477. image: {
  28478. source: "./media/characters/lilith-zott/front-dressed.svg",
  28479. extra: 2510 / 2238,
  28480. bottom: 100 / 2610
  28481. }
  28482. },
  28483. },
  28484. [
  28485. {
  28486. name: "Normal",
  28487. height: math.unit(5 + 6 / 12, "feet")
  28488. },
  28489. {
  28490. name: "Macro",
  28491. height: math.unit(1030, "feet"),
  28492. default: true
  28493. },
  28494. ]
  28495. ))
  28496. characterMakers.push(() => makeCharacter(
  28497. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28498. {
  28499. front: {
  28500. height: math.unit(6, "feet"),
  28501. weight: math.unit(150, "lb"),
  28502. name: "Front",
  28503. image: {
  28504. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28505. extra: 2567 / 2435,
  28506. bottom: 39 / 2606
  28507. }
  28508. },
  28509. frontSuper: {
  28510. height: math.unit(6, "feet"),
  28511. name: "Front (Super)",
  28512. image: {
  28513. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28514. extra: 2567 / 2435,
  28515. bottom: 39 / 2606
  28516. }
  28517. },
  28518. },
  28519. [
  28520. {
  28521. name: "Normal",
  28522. height: math.unit(5 + 10 / 12, "feet")
  28523. },
  28524. {
  28525. name: "Macro",
  28526. height: math.unit(1100, "feet"),
  28527. default: true
  28528. },
  28529. ]
  28530. ))
  28531. characterMakers.push(() => makeCharacter(
  28532. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28533. {
  28534. front: {
  28535. height: math.unit(100, "miles"),
  28536. name: "Front",
  28537. image: {
  28538. source: "./media/characters/sona/front.svg",
  28539. extra: 2433 / 2201,
  28540. bottom: 53 / 2486
  28541. }
  28542. },
  28543. foot: {
  28544. height: math.unit(16.1, "miles"),
  28545. name: "Foot",
  28546. image: {
  28547. source: "./media/characters/sona/foot.svg"
  28548. }
  28549. },
  28550. },
  28551. [
  28552. {
  28553. name: "Macro",
  28554. height: math.unit(100, "miles"),
  28555. default: true
  28556. },
  28557. ]
  28558. ))
  28559. characterMakers.push(() => makeCharacter(
  28560. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28561. {
  28562. front: {
  28563. height: math.unit(6, "feet"),
  28564. weight: math.unit(150, "lb"),
  28565. name: "Front",
  28566. image: {
  28567. source: "./media/characters/bailey/front.svg",
  28568. extra: 1778 / 1724,
  28569. bottom: 30 / 1808
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Micro",
  28576. height: math.unit(4, "inches")
  28577. },
  28578. {
  28579. name: "Normal",
  28580. height: math.unit(5 + 5 / 12, "feet"),
  28581. default: true
  28582. },
  28583. {
  28584. name: "Macro",
  28585. height: math.unit(250, "feet")
  28586. },
  28587. {
  28588. name: "Megamacro",
  28589. height: math.unit(100, "miles")
  28590. },
  28591. ]
  28592. ))
  28593. characterMakers.push(() => makeCharacter(
  28594. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28595. {
  28596. front: {
  28597. height: math.unit(5 + 2 / 12, "feet"),
  28598. weight: math.unit(120, "lb"),
  28599. name: "Front",
  28600. image: {
  28601. source: "./media/characters/snaps/front.svg",
  28602. extra: 2370 / 2177,
  28603. bottom: 48 / 2418
  28604. }
  28605. },
  28606. back: {
  28607. height: math.unit(5 + 2 / 12, "feet"),
  28608. weight: math.unit(120, "lb"),
  28609. name: "Back",
  28610. image: {
  28611. source: "./media/characters/snaps/back.svg",
  28612. extra: 2408 / 2258,
  28613. bottom: 15 / 2423
  28614. }
  28615. },
  28616. },
  28617. [
  28618. {
  28619. name: "Micro",
  28620. height: math.unit(9, "inches")
  28621. },
  28622. {
  28623. name: "Normal",
  28624. height: math.unit(5 + 2 / 12, "feet"),
  28625. default: true
  28626. },
  28627. {
  28628. name: "Mini Macro",
  28629. height: math.unit(10, "feet")
  28630. },
  28631. ]
  28632. ))
  28633. characterMakers.push(() => makeCharacter(
  28634. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28635. {
  28636. front: {
  28637. height: math.unit(1.8, "meters"),
  28638. weight: math.unit(85, "kg"),
  28639. name: "Front",
  28640. image: {
  28641. source: "./media/characters/azteck/front.svg",
  28642. extra: 2815 / 2625,
  28643. bottom: 89 / 2904
  28644. }
  28645. },
  28646. back: {
  28647. height: math.unit(1.8, "meters"),
  28648. weight: math.unit(85, "kg"),
  28649. name: "Back",
  28650. image: {
  28651. source: "./media/characters/azteck/back.svg",
  28652. extra: 2856 / 2648,
  28653. bottom: 85 / 2941
  28654. }
  28655. },
  28656. frontDressed: {
  28657. height: math.unit(1.8, "meters"),
  28658. weight: math.unit(85, "kg"),
  28659. name: "Front (Dressed)",
  28660. image: {
  28661. source: "./media/characters/azteck/front-dressed.svg",
  28662. extra: 2147 / 2003,
  28663. bottom: 68 / 2215
  28664. }
  28665. },
  28666. head: {
  28667. height: math.unit(0.47, "meters"),
  28668. weight: math.unit(85, "kg"),
  28669. name: "Head",
  28670. image: {
  28671. source: "./media/characters/azteck/head.svg"
  28672. }
  28673. },
  28674. },
  28675. [
  28676. {
  28677. name: "Bite sized",
  28678. height: math.unit(16, "cm")
  28679. },
  28680. {
  28681. name: "Normal",
  28682. height: math.unit(1.8, "meters"),
  28683. default: true
  28684. },
  28685. ]
  28686. ))
  28687. characterMakers.push(() => makeCharacter(
  28688. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28689. {
  28690. front: {
  28691. height: math.unit(6, "feet"),
  28692. weight: math.unit(150, "lb"),
  28693. name: "Front",
  28694. image: {
  28695. source: "./media/characters/pidge/front.svg",
  28696. extra: 620 / 588,
  28697. bottom: 9 / 629
  28698. }
  28699. },
  28700. back: {
  28701. height: math.unit(6, "feet"),
  28702. weight: math.unit(150, "lb"),
  28703. name: "Back",
  28704. image: {
  28705. source: "./media/characters/pidge/back.svg",
  28706. extra: 620 / 588,
  28707. bottom: 9 / 629
  28708. }
  28709. },
  28710. },
  28711. [
  28712. {
  28713. name: "Macro",
  28714. height: math.unit(1, "mile"),
  28715. default: true
  28716. },
  28717. ]
  28718. ))
  28719. characterMakers.push(() => makeCharacter(
  28720. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28721. {
  28722. front: {
  28723. height: math.unit(6, "feet"),
  28724. weight: math.unit(150, "lb"),
  28725. name: "Front",
  28726. image: {
  28727. source: "./media/characters/en/front.svg",
  28728. extra: 1697 / 1563,
  28729. bottom: 103 / 1800
  28730. }
  28731. },
  28732. back: {
  28733. height: math.unit(6, "feet"),
  28734. weight: math.unit(150, "lb"),
  28735. name: "Back",
  28736. image: {
  28737. source: "./media/characters/en/back.svg",
  28738. extra: 1700 / 1570,
  28739. bottom: 51 / 1751
  28740. }
  28741. },
  28742. frontDressed: {
  28743. height: math.unit(6, "feet"),
  28744. weight: math.unit(150, "lb"),
  28745. name: "Front (Dressed)",
  28746. image: {
  28747. source: "./media/characters/en/front-dressed.svg",
  28748. extra: 1697 / 1563,
  28749. bottom: 103 / 1800
  28750. }
  28751. },
  28752. backDressed: {
  28753. height: math.unit(6, "feet"),
  28754. weight: math.unit(150, "lb"),
  28755. name: "Back (Dressed)",
  28756. image: {
  28757. source: "./media/characters/en/back-dressed.svg",
  28758. extra: 1700 / 1570,
  28759. bottom: 51 / 1751
  28760. }
  28761. },
  28762. },
  28763. [
  28764. {
  28765. name: "Macro",
  28766. height: math.unit(210, "feet"),
  28767. default: true
  28768. },
  28769. ]
  28770. ))
  28771. characterMakers.push(() => makeCharacter(
  28772. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28773. {
  28774. front: {
  28775. height: math.unit(6, "feet"),
  28776. weight: math.unit(150, "lb"),
  28777. name: "Front",
  28778. image: {
  28779. source: "./media/characters/haze-orris/front.svg",
  28780. extra: 3975 / 3525,
  28781. bottom: 137 / 4112
  28782. }
  28783. },
  28784. },
  28785. [
  28786. {
  28787. name: "Micro",
  28788. height: math.unit(150, "mm"),
  28789. default: true
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Casselene Yaro", species: ["fox"], 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/casselene-yaro/front.svg",
  28802. extra: 4721 / 4541,
  28803. bottom: 82 / 4803
  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/casselene-yaro/back.svg",
  28812. extra: 4569 / 4377,
  28813. bottom: 69 / 4638
  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/casselene-yaro/front-dressed.svg",
  28822. extra: 4721 / 4541,
  28823. bottom: 82 / 4803
  28824. }
  28825. },
  28826. },
  28827. [
  28828. {
  28829. name: "Macro",
  28830. height: math.unit(190, "feet"),
  28831. default: true
  28832. },
  28833. ]
  28834. ))
  28835. characterMakers.push(() => makeCharacter(
  28836. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28837. {
  28838. front: {
  28839. height: math.unit(6, "feet"),
  28840. weight: math.unit(150, "lb"),
  28841. name: "Front",
  28842. image: {
  28843. source: "./media/characters/myra-rue-delore/front.svg",
  28844. extra: 1340 / 1308,
  28845. bottom: 67 / 1407
  28846. }
  28847. },
  28848. back: {
  28849. height: math.unit(6, "feet"),
  28850. weight: math.unit(150, "lb"),
  28851. name: "Back",
  28852. image: {
  28853. source: "./media/characters/myra-rue-delore/back.svg",
  28854. extra: 1341 / 1310,
  28855. bottom: 40 / 1381
  28856. }
  28857. },
  28858. frontDressed: {
  28859. height: math.unit(6, "feet"),
  28860. weight: math.unit(150, "lb"),
  28861. name: "Front (Dressed)",
  28862. image: {
  28863. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28864. extra: 1340 / 1308,
  28865. bottom: 67 / 1407
  28866. }
  28867. },
  28868. },
  28869. [
  28870. {
  28871. name: "Macro",
  28872. height: math.unit(150, "feet"),
  28873. default: true
  28874. },
  28875. ]
  28876. ))
  28877. characterMakers.push(() => makeCharacter(
  28878. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28879. {
  28880. front: {
  28881. height: math.unit(10, "feet"),
  28882. weight: math.unit(15015, "lb"),
  28883. name: "Front",
  28884. image: {
  28885. source: "./media/characters/fem!plat/front.svg",
  28886. extra: 2799 / 2604,
  28887. bottom: 149 / 2948
  28888. }
  28889. },
  28890. },
  28891. [
  28892. {
  28893. name: "Normal",
  28894. height: math.unit(10, "feet"),
  28895. default: true
  28896. },
  28897. {
  28898. name: "Macro",
  28899. height: math.unit(100, "feet")
  28900. },
  28901. {
  28902. name: "Megamacro",
  28903. height: math.unit(1000, "feet")
  28904. },
  28905. ]
  28906. ))
  28907. characterMakers.push(() => makeCharacter(
  28908. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28909. {
  28910. front: {
  28911. height: math.unit(15 + 5 / 12, "feet"),
  28912. weight: math.unit(4600, "lb"),
  28913. name: "Front",
  28914. image: {
  28915. source: "./media/characters/neapolitan-ananassa/front.svg",
  28916. extra: 2903 / 2736,
  28917. bottom: 0 / 2903
  28918. }
  28919. },
  28920. side: {
  28921. height: math.unit(15 + 5 / 12, "feet"),
  28922. weight: math.unit(4600, "lb"),
  28923. name: "Side",
  28924. image: {
  28925. source: "./media/characters/neapolitan-ananassa/side.svg",
  28926. extra: 2925 / 2719,
  28927. bottom: 0 / 2925
  28928. }
  28929. },
  28930. back: {
  28931. height: math.unit(15 + 5 / 12, "feet"),
  28932. weight: math.unit(4600, "lb"),
  28933. name: "Back",
  28934. image: {
  28935. source: "./media/characters/neapolitan-ananassa/back.svg",
  28936. extra: 2903 / 2736,
  28937. bottom: 0 / 2903
  28938. }
  28939. },
  28940. },
  28941. [
  28942. {
  28943. name: "Normal",
  28944. height: math.unit(15 + 5 / 12, "feet"),
  28945. default: true
  28946. },
  28947. {
  28948. name: "Post-Millenium",
  28949. height: math.unit(35 + 5 / 12, "feet")
  28950. },
  28951. {
  28952. name: "Post-Era",
  28953. height: math.unit(450 + 5 / 12, "feet")
  28954. },
  28955. ]
  28956. ))
  28957. characterMakers.push(() => makeCharacter(
  28958. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28959. {
  28960. front: {
  28961. height: math.unit(300, "meters"),
  28962. weight: math.unit(125000, "tonnes"),
  28963. name: "Front",
  28964. image: {
  28965. source: "./media/characters/pazuzu/front.svg",
  28966. extra: 877 / 794,
  28967. bottom: 47 / 924
  28968. }
  28969. },
  28970. },
  28971. [
  28972. {
  28973. name: "Macro",
  28974. height: math.unit(300, "meters"),
  28975. default: true
  28976. },
  28977. ]
  28978. ))
  28979. characterMakers.push(() => makeCharacter(
  28980. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28981. {
  28982. side: {
  28983. height: math.unit(10 + 7 / 12, "feet"),
  28984. weight: math.unit(2.5, "tons"),
  28985. name: "Side",
  28986. image: {
  28987. source: "./media/characters/aasha/side.svg",
  28988. extra: 1345 / 1245,
  28989. bottom: 111 / 1456
  28990. }
  28991. },
  28992. back: {
  28993. height: math.unit(10 + 7 / 12, "feet"),
  28994. weight: math.unit(2.5, "tons"),
  28995. name: "Back",
  28996. image: {
  28997. source: "./media/characters/aasha/back.svg",
  28998. extra: 1133 / 1057,
  28999. bottom: 257 / 1390
  29000. }
  29001. },
  29002. },
  29003. [
  29004. {
  29005. name: "Normal",
  29006. height: math.unit(10 + 7 / 12, "feet"),
  29007. default: true
  29008. },
  29009. ]
  29010. ))
  29011. characterMakers.push(() => makeCharacter(
  29012. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29013. {
  29014. front: {
  29015. height: math.unit(6 + 3 / 12, "feet"),
  29016. name: "Front",
  29017. image: {
  29018. source: "./media/characters/nevan/front.svg",
  29019. extra: 704 / 704,
  29020. bottom: 28 / 732
  29021. }
  29022. },
  29023. back: {
  29024. height: math.unit(6 + 3 / 12, "feet"),
  29025. name: "Back",
  29026. image: {
  29027. source: "./media/characters/nevan/back.svg",
  29028. extra: 714 / 714,
  29029. bottom: 21 / 735
  29030. }
  29031. },
  29032. frontFlaccid: {
  29033. height: math.unit(6 + 3 / 12, "feet"),
  29034. name: "Front (Flaccid)",
  29035. image: {
  29036. source: "./media/characters/nevan/front-flaccid.svg",
  29037. extra: 704 / 704,
  29038. bottom: 28 / 732
  29039. }
  29040. },
  29041. frontErect: {
  29042. height: math.unit(6 + 3 / 12, "feet"),
  29043. name: "Front (Erect)",
  29044. image: {
  29045. source: "./media/characters/nevan/front-erect.svg",
  29046. extra: 704 / 704,
  29047. bottom: 28 / 732
  29048. }
  29049. },
  29050. backFlaccid: {
  29051. height: math.unit(6 + 3 / 12, "feet"),
  29052. name: "Back (Flaccid)",
  29053. image: {
  29054. source: "./media/characters/nevan/back-flaccid.svg",
  29055. extra: 714 / 714,
  29056. bottom: 21 / 735
  29057. }
  29058. },
  29059. },
  29060. [
  29061. {
  29062. name: "Normal",
  29063. height: math.unit(6 + 3 / 12, "feet"),
  29064. default: true
  29065. },
  29066. ]
  29067. ))
  29068. characterMakers.push(() => makeCharacter(
  29069. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29070. {
  29071. front: {
  29072. height: math.unit(4, "feet"),
  29073. name: "Front",
  29074. image: {
  29075. source: "./media/characters/arhan/front.svg",
  29076. extra: 3368 / 3133,
  29077. bottom: 0 / 3368
  29078. }
  29079. },
  29080. side: {
  29081. height: math.unit(4, "feet"),
  29082. name: "Side",
  29083. image: {
  29084. source: "./media/characters/arhan/side.svg",
  29085. extra: 3347 / 3105,
  29086. bottom: 0 / 3347
  29087. }
  29088. },
  29089. tongue: {
  29090. height: math.unit(1.42, "feet"),
  29091. name: "Tongue",
  29092. image: {
  29093. source: "./media/characters/arhan/tongue.svg"
  29094. }
  29095. },
  29096. head: {
  29097. height: math.unit(0.85, "feet"),
  29098. name: "Head",
  29099. image: {
  29100. source: "./media/characters/arhan/head.svg"
  29101. }
  29102. },
  29103. },
  29104. [
  29105. {
  29106. name: "Normal",
  29107. height: math.unit(4, "feet"),
  29108. default: true
  29109. },
  29110. ]
  29111. ))
  29112. characterMakers.push(() => makeCharacter(
  29113. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29114. {
  29115. front: {
  29116. height: math.unit(5 + 7.5 / 12, "feet"),
  29117. weight: math.unit(120, "lb"),
  29118. name: "Front",
  29119. image: {
  29120. source: "./media/characters/digi-duncan/front.svg",
  29121. extra: 330 / 326,
  29122. bottom: 16 / 346
  29123. }
  29124. },
  29125. side: {
  29126. height: math.unit(5 + 7.5 / 12, "feet"),
  29127. weight: math.unit(120, "lb"),
  29128. name: "Side",
  29129. image: {
  29130. source: "./media/characters/digi-duncan/side.svg",
  29131. extra: 341 / 337,
  29132. bottom: 1 / 342
  29133. }
  29134. },
  29135. back: {
  29136. height: math.unit(5 + 7.5 / 12, "feet"),
  29137. weight: math.unit(120, "lb"),
  29138. name: "Back",
  29139. image: {
  29140. source: "./media/characters/digi-duncan/back.svg",
  29141. extra: 330 / 326,
  29142. bottom: 12 / 342
  29143. }
  29144. },
  29145. },
  29146. [
  29147. {
  29148. name: "Speck",
  29149. height: math.unit(0.25, "mm")
  29150. },
  29151. {
  29152. name: "Micro",
  29153. height: math.unit(5, "mm")
  29154. },
  29155. {
  29156. name: "Tiny",
  29157. height: math.unit(0.5, "inches"),
  29158. default: true
  29159. },
  29160. {
  29161. name: "Human",
  29162. height: math.unit(5 + 7.5 / 12, "feet")
  29163. },
  29164. {
  29165. name: "Minigiant",
  29166. height: math.unit(8 + 5.25, "feet")
  29167. },
  29168. {
  29169. name: "Giant",
  29170. height: math.unit(2000, "feet")
  29171. },
  29172. {
  29173. name: "Mega",
  29174. height: math.unit(371.1, "miles")
  29175. },
  29176. ]
  29177. ))
  29178. characterMakers.push(() => makeCharacter(
  29179. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29180. {
  29181. front: {
  29182. height: math.unit(2, "meters"),
  29183. weight: math.unit(350, "kg"),
  29184. name: "Front",
  29185. image: {
  29186. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29187. extra: 898 / 838,
  29188. bottom: 9 / 907
  29189. }
  29190. },
  29191. },
  29192. [
  29193. {
  29194. name: "Micro",
  29195. height: math.unit(8, "meters")
  29196. },
  29197. {
  29198. name: "Normal",
  29199. height: math.unit(50, "meters"),
  29200. default: true
  29201. },
  29202. {
  29203. name: "Macro",
  29204. height: math.unit(500, "meters")
  29205. },
  29206. ]
  29207. ))
  29208. characterMakers.push(() => makeCharacter(
  29209. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29210. {
  29211. front: {
  29212. height: math.unit(6 + 6 / 12, "feet"),
  29213. name: "Front",
  29214. image: {
  29215. source: "./media/characters/khardesh/front.svg",
  29216. extra: 888 / 797,
  29217. bottom: 25 / 913
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Normal",
  29224. height: math.unit(6 + 6 / 12, "feet"),
  29225. default: true
  29226. },
  29227. {
  29228. name: "Normal+",
  29229. height: math.unit(4, "meters")
  29230. },
  29231. {
  29232. name: "Macro",
  29233. height: math.unit(50, "meters")
  29234. },
  29235. {
  29236. name: "Macro+",
  29237. height: math.unit(100, "meters")
  29238. },
  29239. {
  29240. name: "Megamacro",
  29241. height: math.unit(20, "km")
  29242. },
  29243. ]
  29244. ))
  29245. characterMakers.push(() => makeCharacter(
  29246. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29247. {
  29248. front: {
  29249. height: math.unit(6, "feet"),
  29250. weight: math.unit(150, "lb"),
  29251. name: "Front",
  29252. image: {
  29253. source: "./media/characters/kosho/front.svg",
  29254. extra: 1847 / 1847,
  29255. bottom: 86 / 1933
  29256. }
  29257. },
  29258. },
  29259. [
  29260. {
  29261. name: "Second-stage micro",
  29262. height: math.unit(0.5, "inches")
  29263. },
  29264. {
  29265. name: "First-stage micro",
  29266. height: math.unit(6, "inches")
  29267. },
  29268. {
  29269. name: "Normal",
  29270. height: math.unit(6, "feet"),
  29271. default: true
  29272. },
  29273. {
  29274. name: "First-stage macro",
  29275. height: math.unit(72, "feet")
  29276. },
  29277. {
  29278. name: "Second-stage macro",
  29279. height: math.unit(864, "feet")
  29280. },
  29281. ]
  29282. ))
  29283. characterMakers.push(() => makeCharacter(
  29284. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29285. {
  29286. normal: {
  29287. height: math.unit(4 + 6 / 12, "feet"),
  29288. name: "Normal",
  29289. image: {
  29290. source: "./media/characters/hydra/normal.svg",
  29291. extra: 2833 / 2634,
  29292. bottom: 68 / 2901
  29293. }
  29294. },
  29295. smol: {
  29296. height: math.unit(0.705, "inches"),
  29297. name: "Smol",
  29298. image: {
  29299. source: "./media/characters/hydra/smol.svg",
  29300. extra: 2715 / 2540,
  29301. bottom: 0 / 2715
  29302. }
  29303. },
  29304. },
  29305. [
  29306. {
  29307. name: "Normal",
  29308. height: math.unit(4 + 6 / 12, "feet"),
  29309. default: true
  29310. }
  29311. ]
  29312. ))
  29313. characterMakers.push(() => makeCharacter(
  29314. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29315. {
  29316. front: {
  29317. height: math.unit(0.6, "cm"),
  29318. name: "Front",
  29319. image: {
  29320. source: "./media/characters/daz/front.svg",
  29321. extra: 1682 / 1164,
  29322. bottom: 42 / 1724
  29323. }
  29324. },
  29325. },
  29326. [
  29327. {
  29328. name: "Normal",
  29329. height: math.unit(0.6, "cm"),
  29330. default: true
  29331. },
  29332. ]
  29333. ))
  29334. characterMakers.push(() => makeCharacter(
  29335. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29336. {
  29337. front: {
  29338. height: math.unit(6, "feet"),
  29339. weight: math.unit(235, "lb"),
  29340. name: "Front",
  29341. image: {
  29342. source: "./media/characters/theo-pangolin/front.svg",
  29343. extra: 1996 / 1969,
  29344. bottom: 115 / 2111
  29345. }
  29346. },
  29347. back: {
  29348. height: math.unit(6, "feet"),
  29349. weight: math.unit(235, "lb"),
  29350. name: "Back",
  29351. image: {
  29352. source: "./media/characters/theo-pangolin/back.svg",
  29353. extra: 1979 / 1979,
  29354. bottom: 40 / 2019
  29355. }
  29356. },
  29357. feral: {
  29358. height: math.unit(2, "feet"),
  29359. weight: math.unit(30, "lb"),
  29360. name: "Feral",
  29361. image: {
  29362. source: "./media/characters/theo-pangolin/feral.svg",
  29363. extra: 803 / 791,
  29364. bottom: 181 / 984
  29365. }
  29366. },
  29367. footFive: {
  29368. height: math.unit(1.43, "feet"),
  29369. name: "Foot (Five Toes)",
  29370. image: {
  29371. source: "./media/characters/theo-pangolin/foot-five.svg"
  29372. }
  29373. },
  29374. footFour: {
  29375. height: math.unit(1.43, "feet"),
  29376. name: "Foot (Four Toes)",
  29377. image: {
  29378. source: "./media/characters/theo-pangolin/foot-four.svg"
  29379. }
  29380. },
  29381. handFour: {
  29382. height: math.unit(0.81, "feet"),
  29383. name: "Hand (Four Fingers)",
  29384. image: {
  29385. source: "./media/characters/theo-pangolin/hand-four.svg"
  29386. }
  29387. },
  29388. handThree: {
  29389. height: math.unit(0.81, "feet"),
  29390. name: "Hand (Three Fingers)",
  29391. image: {
  29392. source: "./media/characters/theo-pangolin/hand-three.svg"
  29393. }
  29394. },
  29395. headFront: {
  29396. height: math.unit(1.37, "feet"),
  29397. name: "Head (Front)",
  29398. image: {
  29399. source: "./media/characters/theo-pangolin/head-front.svg"
  29400. }
  29401. },
  29402. headSide: {
  29403. height: math.unit(1.43, "feet"),
  29404. name: "Head (Side)",
  29405. image: {
  29406. source: "./media/characters/theo-pangolin/head-side.svg"
  29407. }
  29408. },
  29409. tongue: {
  29410. height: math.unit(2.29, "feet"),
  29411. name: "Tongue",
  29412. image: {
  29413. source: "./media/characters/theo-pangolin/tongue.svg"
  29414. }
  29415. },
  29416. },
  29417. [
  29418. {
  29419. name: "Normal",
  29420. height: math.unit(6, "feet")
  29421. },
  29422. {
  29423. name: "Macro",
  29424. height: math.unit(400, "feet"),
  29425. default: true
  29426. },
  29427. ]
  29428. ))
  29429. characterMakers.push(() => makeCharacter(
  29430. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29431. {
  29432. front: {
  29433. height: math.unit(6, "inches"),
  29434. weight: math.unit(0.036, "kg"),
  29435. name: "Front",
  29436. image: {
  29437. source: "./media/characters/renée/front.svg",
  29438. extra: 900 / 886,
  29439. bottom: 8 / 908
  29440. }
  29441. },
  29442. },
  29443. [
  29444. {
  29445. name: "Nano",
  29446. height: math.unit(1, "nm")
  29447. },
  29448. {
  29449. name: "Micro",
  29450. height: math.unit(1, "mm")
  29451. },
  29452. {
  29453. name: "Normal",
  29454. height: math.unit(6, "inches")
  29455. },
  29456. {
  29457. name: "Macro",
  29458. height: math.unit(2000, "feet"),
  29459. default: true
  29460. },
  29461. {
  29462. name: "Megamacro",
  29463. height: math.unit(2, "km")
  29464. },
  29465. {
  29466. name: "Gigamacro",
  29467. height: math.unit(2000, "km")
  29468. },
  29469. {
  29470. name: "Teramacro",
  29471. height: math.unit(250000, "km")
  29472. },
  29473. ]
  29474. ))
  29475. characterMakers.push(() => makeCharacter(
  29476. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29477. {
  29478. front: {
  29479. height: math.unit(4, "meters"),
  29480. weight: math.unit(150, "kg"),
  29481. name: "Front",
  29482. image: {
  29483. source: "./media/characters/caledvwlch/front.svg",
  29484. extra: 1760 / 1551,
  29485. bottom: 28 / 1788
  29486. }
  29487. },
  29488. side: {
  29489. height: math.unit(4, "meters"),
  29490. weight: math.unit(150, "kg"),
  29491. name: "Side",
  29492. image: {
  29493. source: "./media/characters/caledvwlch/side.svg",
  29494. extra: 1605 / 1536,
  29495. bottom: 31 / 1636
  29496. }
  29497. },
  29498. back: {
  29499. height: math.unit(4, "meters"),
  29500. weight: math.unit(150, "kg"),
  29501. name: "Back",
  29502. image: {
  29503. source: "./media/characters/caledvwlch/back.svg",
  29504. extra: 1635 / 1565,
  29505. bottom: 27 / 1662
  29506. }
  29507. },
  29508. },
  29509. [
  29510. {
  29511. name: "\"Incognito\"",
  29512. height: math.unit(4, "meters")
  29513. },
  29514. {
  29515. name: "Small rampage",
  29516. height: math.unit(600, "meters")
  29517. },
  29518. {
  29519. name: "Mega",
  29520. height: math.unit(30, "km")
  29521. },
  29522. {
  29523. name: "Home-size",
  29524. height: math.unit(50, "km"),
  29525. default: true
  29526. },
  29527. {
  29528. name: "Giga",
  29529. height: math.unit(300, "km")
  29530. },
  29531. {
  29532. name: "Lounging",
  29533. height: math.unit(11000, "km")
  29534. },
  29535. {
  29536. name: "Planet snacking",
  29537. height: math.unit(2000000, "km")
  29538. },
  29539. ]
  29540. ))
  29541. characterMakers.push(() => makeCharacter(
  29542. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29543. {
  29544. front: {
  29545. height: math.unit(6, "feet"),
  29546. weight: math.unit(215, "lb"),
  29547. name: "Front",
  29548. image: {
  29549. source: "./media/characters/sapphire-svell/front.svg",
  29550. extra: 495 / 455,
  29551. bottom: 20 / 515
  29552. }
  29553. },
  29554. back: {
  29555. height: math.unit(6, "feet"),
  29556. weight: math.unit(216, "lb"),
  29557. name: "Back",
  29558. image: {
  29559. source: "./media/characters/sapphire-svell/back.svg",
  29560. extra: 497 / 477,
  29561. bottom: 7 / 504
  29562. }
  29563. },
  29564. maw: {
  29565. height: math.unit(1.57, "feet"),
  29566. name: "Maw",
  29567. image: {
  29568. source: "./media/characters/sapphire-svell/maw.svg"
  29569. }
  29570. },
  29571. foot: {
  29572. height: math.unit(1.07, "feet"),
  29573. name: "Foot",
  29574. image: {
  29575. source: "./media/characters/sapphire-svell/foot.svg"
  29576. }
  29577. },
  29578. toering: {
  29579. height: math.unit(1.7, "inch"),
  29580. name: "Toering",
  29581. image: {
  29582. source: "./media/characters/sapphire-svell/toering.svg"
  29583. }
  29584. },
  29585. },
  29586. [
  29587. {
  29588. name: "Normal",
  29589. height: math.unit(300, "feet"),
  29590. default: true
  29591. },
  29592. {
  29593. name: "Augmented",
  29594. height: math.unit(1250, "feet")
  29595. },
  29596. {
  29597. name: "Unleashed",
  29598. height: math.unit(3000, "feet")
  29599. },
  29600. ]
  29601. ))
  29602. characterMakers.push(() => makeCharacter(
  29603. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29604. {
  29605. side: {
  29606. height: math.unit(2 + 3 / 12, "feet"),
  29607. weight: math.unit(110, "lb"),
  29608. name: "Side",
  29609. image: {
  29610. source: "./media/characters/glitch-flux/side.svg",
  29611. extra: 997 / 805,
  29612. bottom: 20 / 1017
  29613. }
  29614. },
  29615. },
  29616. [
  29617. {
  29618. name: "Normal",
  29619. height: math.unit(2 + 3 / 12, "feet"),
  29620. default: true
  29621. },
  29622. ]
  29623. ))
  29624. characterMakers.push(() => makeCharacter(
  29625. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29626. {
  29627. front: {
  29628. height: math.unit(4, "meters"),
  29629. name: "Front",
  29630. image: {
  29631. source: "./media/characters/mid/front.svg",
  29632. extra: 507 / 476,
  29633. bottom: 17 / 524
  29634. }
  29635. },
  29636. back: {
  29637. height: math.unit(4, "meters"),
  29638. name: "Back",
  29639. image: {
  29640. source: "./media/characters/mid/back.svg",
  29641. extra: 519 / 487,
  29642. bottom: 7 / 526
  29643. }
  29644. },
  29645. stuck: {
  29646. height: math.unit(2.2, "meters"),
  29647. name: "Stuck",
  29648. image: {
  29649. source: "./media/characters/mid/stuck.svg",
  29650. extra: 1951 / 1869,
  29651. bottom: 88 / 2039
  29652. }
  29653. }
  29654. },
  29655. [
  29656. {
  29657. name: "Normal",
  29658. height: math.unit(4, "meters"),
  29659. default: true
  29660. },
  29661. {
  29662. name: "Big",
  29663. height: math.unit(10, "meters")
  29664. },
  29665. {
  29666. name: "Macro",
  29667. height: math.unit(800, "meters")
  29668. },
  29669. {
  29670. name: "Megamacro",
  29671. height: math.unit(100, "km")
  29672. },
  29673. {
  29674. name: "Overgrown",
  29675. height: math.unit(1, "parsec")
  29676. },
  29677. ]
  29678. ))
  29679. characterMakers.push(() => makeCharacter(
  29680. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29681. {
  29682. front: {
  29683. height: math.unit(2.5, "meters"),
  29684. weight: math.unit(225, "kg"),
  29685. name: "Front",
  29686. image: {
  29687. source: "./media/characters/iris/front.svg",
  29688. extra: 3348 / 3251,
  29689. bottom: 205 / 3553
  29690. }
  29691. },
  29692. maw: {
  29693. height: math.unit(0.56, "meter"),
  29694. name: "Maw",
  29695. image: {
  29696. source: "./media/characters/iris/maw.svg"
  29697. }
  29698. },
  29699. },
  29700. [
  29701. {
  29702. name: "Mewter cat",
  29703. height: math.unit(1.2, "meters")
  29704. },
  29705. {
  29706. name: "Minimacro",
  29707. height: math.unit(2.5, "meters"),
  29708. default: true
  29709. },
  29710. {
  29711. name: "Macro",
  29712. height: math.unit(180, "meters")
  29713. },
  29714. {
  29715. name: "Megamacro",
  29716. height: math.unit(2746, "meters")
  29717. },
  29718. ]
  29719. ))
  29720. characterMakers.push(() => makeCharacter(
  29721. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29722. {
  29723. front: {
  29724. height: math.unit(6, "feet"),
  29725. weight: math.unit(135, "lb"),
  29726. name: "Front",
  29727. image: {
  29728. source: "./media/characters/axel/front.svg",
  29729. extra: 908 / 908,
  29730. bottom: 58 / 966
  29731. }
  29732. },
  29733. side: {
  29734. height: math.unit(6, "feet"),
  29735. weight: math.unit(135, "lb"),
  29736. name: "Side",
  29737. image: {
  29738. source: "./media/characters/axel/side.svg",
  29739. extra: 958 / 958,
  29740. bottom: 11 / 969
  29741. }
  29742. },
  29743. back: {
  29744. height: math.unit(6, "feet"),
  29745. weight: math.unit(135, "lb"),
  29746. name: "Back",
  29747. image: {
  29748. source: "./media/characters/axel/back.svg",
  29749. extra: 887 / 887,
  29750. bottom: 34 / 921
  29751. }
  29752. },
  29753. head: {
  29754. height: math.unit(1.07, "feet"),
  29755. name: "Head",
  29756. image: {
  29757. source: "./media/characters/axel/head.svg"
  29758. }
  29759. },
  29760. beak: {
  29761. height: math.unit(1.4, "feet"),
  29762. name: "Beak",
  29763. image: {
  29764. source: "./media/characters/axel/beak.svg"
  29765. }
  29766. },
  29767. beakSide: {
  29768. height: math.unit(1.4, "feet"),
  29769. name: "Beak Side",
  29770. image: {
  29771. source: "./media/characters/axel/beak-side.svg"
  29772. }
  29773. },
  29774. sheath: {
  29775. height: math.unit(0.5, "feet"),
  29776. name: "Sheath",
  29777. image: {
  29778. source: "./media/characters/axel/sheath.svg"
  29779. }
  29780. },
  29781. dick: {
  29782. height: math.unit(0.98, "feet"),
  29783. name: "Dick",
  29784. image: {
  29785. source: "./media/characters/axel/dick.svg"
  29786. }
  29787. },
  29788. },
  29789. [
  29790. {
  29791. name: "Macro",
  29792. height: math.unit(68, "meters"),
  29793. default: true
  29794. },
  29795. ]
  29796. ))
  29797. characterMakers.push(() => makeCharacter(
  29798. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29799. {
  29800. front: {
  29801. height: math.unit(3.5, "meters"),
  29802. weight: math.unit(1200, "kg"),
  29803. name: "Front",
  29804. image: {
  29805. source: "./media/characters/joanna/front.svg",
  29806. extra: 1596 / 1488,
  29807. bottom: 29 / 1625
  29808. }
  29809. },
  29810. back: {
  29811. height: math.unit(3.5, "meters"),
  29812. weight: math.unit(1200, "kg"),
  29813. name: "Back",
  29814. image: {
  29815. source: "./media/characters/joanna/back.svg",
  29816. extra: 1594 / 1495,
  29817. bottom: 26 / 1620
  29818. }
  29819. },
  29820. frontShorts: {
  29821. height: math.unit(3.5, "meters"),
  29822. weight: math.unit(1200, "kg"),
  29823. name: "Front (Shorts)",
  29824. image: {
  29825. source: "./media/characters/joanna/front-shorts.svg",
  29826. extra: 1596 / 1488,
  29827. bottom: 29 / 1625
  29828. }
  29829. },
  29830. frontBiker: {
  29831. height: math.unit(3.5, "meters"),
  29832. weight: math.unit(1200, "kg"),
  29833. name: "Front (Biker)",
  29834. image: {
  29835. source: "./media/characters/joanna/front-biker.svg",
  29836. extra: 1596 / 1488,
  29837. bottom: 29 / 1625
  29838. }
  29839. },
  29840. backBiker: {
  29841. height: math.unit(3.5, "meters"),
  29842. weight: math.unit(1200, "kg"),
  29843. name: "Back (Biker)",
  29844. image: {
  29845. source: "./media/characters/joanna/back-biker.svg",
  29846. extra: 1594 / 1495,
  29847. bottom: 88 / 1682
  29848. }
  29849. },
  29850. bikeLeft: {
  29851. height: math.unit(2.4, "meters"),
  29852. weight: math.unit(1600, "kg"),
  29853. name: "Bike (Left)",
  29854. image: {
  29855. source: "./media/characters/joanna/bike-left.svg",
  29856. extra: 720 / 720,
  29857. bottom: 8 / 728
  29858. }
  29859. },
  29860. bikeRight: {
  29861. height: math.unit(2.4, "meters"),
  29862. weight: math.unit(1600, "kg"),
  29863. name: "Bike (Right)",
  29864. image: {
  29865. source: "./media/characters/joanna/bike-right.svg",
  29866. extra: 720 / 720,
  29867. bottom: 8 / 728
  29868. }
  29869. },
  29870. },
  29871. [
  29872. {
  29873. name: "Incognito",
  29874. height: math.unit(3.5, "meters")
  29875. },
  29876. {
  29877. name: "Casual Big",
  29878. height: math.unit(200, "meters")
  29879. },
  29880. {
  29881. name: "Macro",
  29882. height: math.unit(600, "meters")
  29883. },
  29884. {
  29885. name: "Original",
  29886. height: math.unit(20, "km"),
  29887. default: true
  29888. },
  29889. {
  29890. name: "Giga",
  29891. height: math.unit(400, "km")
  29892. },
  29893. {
  29894. name: "Lounging",
  29895. height: math.unit(1500, "km")
  29896. },
  29897. {
  29898. name: "Planetary",
  29899. height: math.unit(200000, "km")
  29900. },
  29901. ]
  29902. ))
  29903. characterMakers.push(() => makeCharacter(
  29904. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29905. {
  29906. front: {
  29907. height: math.unit(6, "feet"),
  29908. weight: math.unit(150, "lb"),
  29909. name: "Front",
  29910. image: {
  29911. source: "./media/characters/hugo-sigil/front.svg",
  29912. extra: 522 / 500,
  29913. bottom: 2 / 524
  29914. }
  29915. },
  29916. back: {
  29917. height: math.unit(6, "feet"),
  29918. weight: math.unit(150, "lb"),
  29919. name: "Back",
  29920. image: {
  29921. source: "./media/characters/hugo-sigil/back.svg",
  29922. extra: 519 / 495,
  29923. bottom: 5 / 524
  29924. }
  29925. },
  29926. maw: {
  29927. height: math.unit(1.4, "feet"),
  29928. weight: math.unit(150, "lb"),
  29929. name: "Maw",
  29930. image: {
  29931. source: "./media/characters/hugo-sigil/maw.svg"
  29932. }
  29933. },
  29934. feet: {
  29935. height: math.unit(1.56, "feet"),
  29936. weight: math.unit(150, "lb"),
  29937. name: "Feet",
  29938. image: {
  29939. source: "./media/characters/hugo-sigil/feet.svg",
  29940. extra: 177 / 177,
  29941. bottom: 12 / 189
  29942. }
  29943. },
  29944. },
  29945. [
  29946. {
  29947. name: "Normal",
  29948. height: math.unit(6, "feet")
  29949. },
  29950. {
  29951. name: "Macro",
  29952. height: math.unit(200, "feet"),
  29953. default: true
  29954. },
  29955. ]
  29956. ))
  29957. characterMakers.push(() => makeCharacter(
  29958. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29959. {
  29960. front: {
  29961. height: math.unit(6, "feet"),
  29962. weight: math.unit(150, "lb"),
  29963. name: "Front",
  29964. image: {
  29965. source: "./media/characters/peri/front.svg",
  29966. extra: 2354 / 2233,
  29967. bottom: 49 / 2403
  29968. }
  29969. },
  29970. },
  29971. [
  29972. {
  29973. name: "Really Small",
  29974. height: math.unit(1, "nm")
  29975. },
  29976. {
  29977. name: "Micro",
  29978. height: math.unit(4, "inches")
  29979. },
  29980. {
  29981. name: "Normal",
  29982. height: math.unit(7, "inches"),
  29983. default: true
  29984. },
  29985. {
  29986. name: "Macro",
  29987. height: math.unit(400, "feet")
  29988. },
  29989. {
  29990. name: "Megamacro",
  29991. height: math.unit(100, "miles")
  29992. },
  29993. ]
  29994. ))
  29995. characterMakers.push(() => makeCharacter(
  29996. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29997. {
  29998. frontSlim: {
  29999. height: math.unit(7, "feet"),
  30000. name: "Front (Slim)",
  30001. image: {
  30002. source: "./media/characters/issilora/front-slim.svg",
  30003. extra: 529 / 449,
  30004. bottom: 53 / 582
  30005. }
  30006. },
  30007. sideSlim: {
  30008. height: math.unit(7, "feet"),
  30009. name: "Side (Slim)",
  30010. image: {
  30011. source: "./media/characters/issilora/side-slim.svg",
  30012. extra: 570 / 480,
  30013. bottom: 30 / 600
  30014. }
  30015. },
  30016. backSlim: {
  30017. height: math.unit(7, "feet"),
  30018. name: "Back (Slim)",
  30019. image: {
  30020. source: "./media/characters/issilora/back-slim.svg",
  30021. extra: 537 / 455,
  30022. bottom: 46 / 583
  30023. }
  30024. },
  30025. frontBuff: {
  30026. height: math.unit(7, "feet"),
  30027. name: "Front (Buff)",
  30028. image: {
  30029. source: "./media/characters/issilora/front-buff.svg",
  30030. extra: 2310 / 2035,
  30031. bottom: 335 / 2645
  30032. }
  30033. },
  30034. head: {
  30035. height: math.unit(1.94, "feet"),
  30036. name: "Head",
  30037. image: {
  30038. source: "./media/characters/issilora/head.svg"
  30039. }
  30040. },
  30041. },
  30042. [
  30043. {
  30044. name: "Minimum",
  30045. height: math.unit(7, "feet")
  30046. },
  30047. {
  30048. name: "Comfortable",
  30049. height: math.unit(17, "feet")
  30050. },
  30051. {
  30052. name: "Fun Size",
  30053. height: math.unit(47, "feet")
  30054. },
  30055. {
  30056. name: "Natural Macro",
  30057. height: math.unit(137, "feet"),
  30058. default: true
  30059. },
  30060. {
  30061. name: "Maximum Kaiju",
  30062. height: math.unit(397, "feet")
  30063. },
  30064. ]
  30065. ))
  30066. characterMakers.push(() => makeCharacter(
  30067. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30068. {
  30069. front: {
  30070. height: math.unit(50 + 9/12, "feet"),
  30071. weight: math.unit(32.8, "tons"),
  30072. name: "Front",
  30073. image: {
  30074. source: "./media/characters/irb'iiritaahn/front.svg",
  30075. extra: 1878/1826,
  30076. bottom: 326/2204
  30077. }
  30078. },
  30079. back: {
  30080. height: math.unit(50 + 9/12, "feet"),
  30081. weight: math.unit(32.8, "tons"),
  30082. name: "Back",
  30083. image: {
  30084. source: "./media/characters/irb'iiritaahn/back.svg",
  30085. extra: 2052/2018,
  30086. bottom: 152/2204
  30087. }
  30088. },
  30089. head: {
  30090. height: math.unit(12.86, "feet"),
  30091. name: "Head",
  30092. image: {
  30093. source: "./media/characters/irb'iiritaahn/head.svg"
  30094. }
  30095. },
  30096. maw: {
  30097. height: math.unit(9.66, "feet"),
  30098. name: "Maw",
  30099. image: {
  30100. source: "./media/characters/irb'iiritaahn/maw.svg"
  30101. }
  30102. },
  30103. frontDick: {
  30104. height: math.unit(8.78461, "feet"),
  30105. name: "Front Dick",
  30106. image: {
  30107. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30108. }
  30109. },
  30110. rearDick: {
  30111. height: math.unit(8.78461, "feet"),
  30112. name: "Rear Dick",
  30113. image: {
  30114. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30115. }
  30116. },
  30117. rearDickUnfolded: {
  30118. height: math.unit(8.78, "feet"),
  30119. name: "Rear Dick (Unfolded)",
  30120. image: {
  30121. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30122. }
  30123. },
  30124. wings: {
  30125. height: math.unit(43, "feet"),
  30126. name: "Wings",
  30127. image: {
  30128. source: "./media/characters/irb'iiritaahn/wings.svg"
  30129. }
  30130. },
  30131. },
  30132. [
  30133. {
  30134. name: "Macro",
  30135. height: math.unit(50 + 9/12, "feet"),
  30136. default: true
  30137. },
  30138. ]
  30139. ))
  30140. characterMakers.push(() => makeCharacter(
  30141. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30142. {
  30143. front: {
  30144. height: math.unit(205, "cm"),
  30145. weight: math.unit(102, "kg"),
  30146. name: "Front",
  30147. image: {
  30148. source: "./media/characters/irbisgreif/front.svg",
  30149. extra: 785/706,
  30150. bottom: 13/798
  30151. }
  30152. },
  30153. back: {
  30154. height: math.unit(205, "cm"),
  30155. weight: math.unit(102, "kg"),
  30156. name: "Back",
  30157. image: {
  30158. source: "./media/characters/irbisgreif/back.svg",
  30159. extra: 713/701,
  30160. bottom: 26/739
  30161. }
  30162. },
  30163. frontDressed: {
  30164. height: math.unit(216, "cm"),
  30165. weight: math.unit(102, "kg"),
  30166. name: "Front-dressed",
  30167. image: {
  30168. source: "./media/characters/irbisgreif/front-dressed.svg",
  30169. extra: 902/776,
  30170. bottom: 14/916
  30171. }
  30172. },
  30173. sideDressed: {
  30174. height: math.unit(195, "cm"),
  30175. weight: math.unit(102, "kg"),
  30176. name: "Side-dressed",
  30177. image: {
  30178. source: "./media/characters/irbisgreif/side-dressed.svg",
  30179. extra: 788/688,
  30180. bottom: 21/809
  30181. }
  30182. },
  30183. backDressed: {
  30184. height: math.unit(216, "cm"),
  30185. weight: math.unit(102, "kg"),
  30186. name: "Back-dressed",
  30187. image: {
  30188. source: "./media/characters/irbisgreif/back-dressed.svg",
  30189. extra: 901/783,
  30190. bottom: 10/911
  30191. }
  30192. },
  30193. dick: {
  30194. height: math.unit(0.49, "feet"),
  30195. name: "Dick",
  30196. image: {
  30197. source: "./media/characters/irbisgreif/dick.svg"
  30198. }
  30199. },
  30200. wingTop: {
  30201. height: math.unit(1.93 , "feet"),
  30202. name: "Wing-top",
  30203. image: {
  30204. source: "./media/characters/irbisgreif/wing-top.svg"
  30205. }
  30206. },
  30207. wingBottom: {
  30208. height: math.unit(1.93 , "feet"),
  30209. name: "Wing-bottom",
  30210. image: {
  30211. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30212. }
  30213. },
  30214. },
  30215. [
  30216. {
  30217. name: "Normal",
  30218. height: math.unit(216, "cm"),
  30219. default: true
  30220. },
  30221. ]
  30222. ))
  30223. characterMakers.push(() => makeCharacter(
  30224. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30225. {
  30226. front: {
  30227. height: math.unit(6, "feet"),
  30228. weight: math.unit(150, "lb"),
  30229. name: "Front",
  30230. image: {
  30231. source: "./media/characters/pride/front.svg",
  30232. extra: 1299/1230,
  30233. bottom: 18/1317
  30234. }
  30235. },
  30236. },
  30237. [
  30238. {
  30239. name: "Normal",
  30240. height: math.unit(7, "feet")
  30241. },
  30242. {
  30243. name: "Mini-macro",
  30244. height: math.unit(11, "feet")
  30245. },
  30246. {
  30247. name: "Macro",
  30248. height: math.unit(15, "meters"),
  30249. default: true
  30250. },
  30251. {
  30252. name: "Macro+",
  30253. height: math.unit(40, "meters")
  30254. },
  30255. ]
  30256. ))
  30257. characterMakers.push(() => makeCharacter(
  30258. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30259. {
  30260. front: {
  30261. height: math.unit(4 + 2 / 12, "feet"),
  30262. weight: math.unit(95, "lb"),
  30263. name: "Front",
  30264. image: {
  30265. source: "./media/characters/vaelophis-nyx/front.svg",
  30266. extra: 2532/2330,
  30267. bottom: 0/2532
  30268. }
  30269. },
  30270. back: {
  30271. height: math.unit(4 + 2 / 12, "feet"),
  30272. weight: math.unit(95, "lb"),
  30273. name: "Back",
  30274. image: {
  30275. source: "./media/characters/vaelophis-nyx/back.svg",
  30276. extra: 2484/2361,
  30277. bottom: 0/2484
  30278. }
  30279. },
  30280. feralSide: {
  30281. height: math.unit(2 + 1/12, "feet"),
  30282. weight: math.unit(20, "lb"),
  30283. name: "Feral (Side)",
  30284. image: {
  30285. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30286. extra: 1721/1581,
  30287. bottom: 70/1791
  30288. }
  30289. },
  30290. feralLazing: {
  30291. height: math.unit(1.08, "feet"),
  30292. weight: math.unit(20, "lb"),
  30293. name: "Feral (Lazing)",
  30294. image: {
  30295. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30296. extra: 822/822,
  30297. bottom: 248/1070
  30298. }
  30299. },
  30300. ear: {
  30301. height: math.unit(0.416, "feet"),
  30302. name: "Ear",
  30303. image: {
  30304. source: "./media/characters/vaelophis-nyx/ear.svg"
  30305. }
  30306. },
  30307. eye: {
  30308. height: math.unit(0.0748, "feet"),
  30309. name: "Eye",
  30310. image: {
  30311. source: "./media/characters/vaelophis-nyx/eye.svg"
  30312. }
  30313. },
  30314. mouth: {
  30315. height: math.unit(0.378, "feet"),
  30316. name: "Mouth",
  30317. image: {
  30318. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30319. }
  30320. },
  30321. spade: {
  30322. height: math.unit(0.55, "feet"),
  30323. name: "Spade",
  30324. image: {
  30325. source: "./media/characters/vaelophis-nyx/spade.svg"
  30326. }
  30327. },
  30328. },
  30329. [
  30330. {
  30331. name: "Normal",
  30332. height: math.unit(4 + 2/12, "feet"),
  30333. default: true
  30334. },
  30335. ]
  30336. ))
  30337. characterMakers.push(() => makeCharacter(
  30338. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30339. {
  30340. front: {
  30341. height: math.unit(7, "feet"),
  30342. weight: math.unit(231, "lb"),
  30343. name: "Front",
  30344. image: {
  30345. source: "./media/characters/flux/front.svg",
  30346. extra: 919/871,
  30347. bottom: 0/919
  30348. }
  30349. },
  30350. back: {
  30351. height: math.unit(7, "feet"),
  30352. weight: math.unit(231, "lb"),
  30353. name: "Back",
  30354. image: {
  30355. source: "./media/characters/flux/back.svg",
  30356. extra: 1040/992,
  30357. bottom: 0/1040
  30358. }
  30359. },
  30360. frontDressed: {
  30361. height: math.unit(7, "feet"),
  30362. weight: math.unit(231, "lb"),
  30363. name: "Front (Dressed)",
  30364. image: {
  30365. source: "./media/characters/flux/front-dressed.svg",
  30366. extra: 919/871,
  30367. bottom: 0/919
  30368. }
  30369. },
  30370. feralSide: {
  30371. height: math.unit(5, "feet"),
  30372. weight: math.unit(150, "lb"),
  30373. name: "Feral (Side)",
  30374. image: {
  30375. source: "./media/characters/flux/feral-side.svg",
  30376. extra: 598/528,
  30377. bottom: 28/626
  30378. }
  30379. },
  30380. head: {
  30381. height: math.unit(1.585, "feet"),
  30382. name: "Head",
  30383. image: {
  30384. source: "./media/characters/flux/head.svg"
  30385. }
  30386. },
  30387. headSide: {
  30388. height: math.unit(1.74, "feet"),
  30389. name: "Head (Side)",
  30390. image: {
  30391. source: "./media/characters/flux/head-side.svg"
  30392. }
  30393. },
  30394. headSideFire: {
  30395. height: math.unit(1.76, "feet"),
  30396. name: "Head (Side, Fire)",
  30397. image: {
  30398. source: "./media/characters/flux/head-side-fire.svg"
  30399. }
  30400. },
  30401. },
  30402. [
  30403. {
  30404. name: "Normal",
  30405. height: math.unit(7, "feet"),
  30406. default: true
  30407. },
  30408. ]
  30409. ))
  30410. characterMakers.push(() => makeCharacter(
  30411. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30412. {
  30413. front: {
  30414. height: math.unit(9, "feet"),
  30415. weight: math.unit(1012, "lb"),
  30416. name: "Front",
  30417. image: {
  30418. source: "./media/characters/ulfra-lupae/front.svg",
  30419. extra: 1083/1011,
  30420. bottom: 67/1150
  30421. }
  30422. },
  30423. },
  30424. [
  30425. {
  30426. name: "Micro",
  30427. height: math.unit(6, "inches")
  30428. },
  30429. {
  30430. name: "Socializing",
  30431. height: math.unit(6 + 5/12, "feet")
  30432. },
  30433. {
  30434. name: "Normal",
  30435. height: math.unit(9, "feet"),
  30436. default: true
  30437. },
  30438. {
  30439. name: "Macro",
  30440. height: math.unit(150, "feet")
  30441. },
  30442. ]
  30443. ))
  30444. characterMakers.push(() => makeCharacter(
  30445. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30446. {
  30447. front: {
  30448. height: math.unit(5 + 2/12, "feet"),
  30449. weight: math.unit(120, "lb"),
  30450. name: "Front",
  30451. image: {
  30452. source: "./media/characters/timber/front.svg",
  30453. extra: 2814/2705,
  30454. bottom: 181/2995
  30455. }
  30456. },
  30457. },
  30458. [
  30459. {
  30460. name: "Normal",
  30461. height: math.unit(5 + 2/12, "feet"),
  30462. default: true
  30463. },
  30464. ]
  30465. ))
  30466. characterMakers.push(() => makeCharacter(
  30467. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30468. {
  30469. front: {
  30470. height: math.unit(5 + 7/12, "feet"),
  30471. weight: math.unit(220, "lb"),
  30472. name: "Front",
  30473. image: {
  30474. source: "./media/characters/nicki/front.svg",
  30475. extra: 453/419,
  30476. bottom: 7/460
  30477. }
  30478. },
  30479. frontAlt: {
  30480. height: math.unit(5 + 7/12, "feet"),
  30481. weight: math.unit(220, "lb"),
  30482. name: "Front-alt",
  30483. image: {
  30484. source: "./media/characters/nicki/front-alt.svg",
  30485. extra: 435/411,
  30486. bottom: 12/447
  30487. }
  30488. },
  30489. back: {
  30490. height: math.unit(5 + 7/12, "feet"),
  30491. weight: math.unit(220, "lb"),
  30492. name: "Back",
  30493. image: {
  30494. source: "./media/characters/nicki/back.svg",
  30495. extra: 440/413,
  30496. bottom: 19/459
  30497. }
  30498. },
  30499. taur: {
  30500. height: math.unit(7 + 6/12, "feet"),
  30501. weight: math.unit(700, "lb"),
  30502. name: "Taur",
  30503. image: {
  30504. source: "./media/characters/nicki/taur.svg",
  30505. extra: 975/773,
  30506. bottom: 0/975
  30507. }
  30508. },
  30509. frontNsfw: {
  30510. height: math.unit(5 + 7/12, "feet"),
  30511. weight: math.unit(220, "lb"),
  30512. name: "Front (NSFW)",
  30513. image: {
  30514. source: "./media/characters/nicki/front-nsfw.svg",
  30515. extra: 453/419,
  30516. bottom: 7/460
  30517. }
  30518. },
  30519. frontNsfwAlt: {
  30520. height: math.unit(5 + 7/12, "feet"),
  30521. weight: math.unit(220, "lb"),
  30522. name: "Front (Alt, NSFW)",
  30523. image: {
  30524. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30525. extra: 435/411,
  30526. bottom: 12/447
  30527. }
  30528. },
  30529. backNsfw: {
  30530. height: math.unit(5 + 7/12, "feet"),
  30531. weight: math.unit(220, "lb"),
  30532. name: "Back (NSFW)",
  30533. image: {
  30534. source: "./media/characters/nicki/back-nsfw.svg",
  30535. extra: 440/413,
  30536. bottom: 19/459
  30537. }
  30538. },
  30539. head: {
  30540. height: math.unit(2.1, "feet"),
  30541. name: "Head",
  30542. image: {
  30543. source: "./media/characters/nicki/head.svg"
  30544. }
  30545. },
  30546. paw: {
  30547. height: math.unit(1.88, "feet"),
  30548. name: "Paw",
  30549. image: {
  30550. source: "./media/characters/nicki/paw.svg"
  30551. }
  30552. },
  30553. },
  30554. [
  30555. {
  30556. name: "Normal",
  30557. height: math.unit(5 + 7/12, "feet"),
  30558. default: true
  30559. },
  30560. ]
  30561. ))
  30562. characterMakers.push(() => makeCharacter(
  30563. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30564. {
  30565. front: {
  30566. height: math.unit(7 + 10/12, "feet"),
  30567. weight: math.unit(3.5, "tons"),
  30568. name: "Front",
  30569. image: {
  30570. source: "./media/characters/lee/front.svg",
  30571. extra: 1773/1615,
  30572. bottom: 86/1859
  30573. }
  30574. },
  30575. hand: {
  30576. height: math.unit(1.78, "feet"),
  30577. name: "Hand",
  30578. image: {
  30579. source: "./media/characters/lee/hand.svg"
  30580. }
  30581. },
  30582. maw: {
  30583. height: math.unit(1.18, "feet"),
  30584. name: "Maw",
  30585. image: {
  30586. source: "./media/characters/lee/maw.svg"
  30587. }
  30588. },
  30589. },
  30590. [
  30591. {
  30592. name: "Normal",
  30593. height: math.unit(7 + 10/12, "feet"),
  30594. default: true
  30595. },
  30596. ]
  30597. ))
  30598. characterMakers.push(() => makeCharacter(
  30599. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30600. {
  30601. front: {
  30602. height: math.unit(9, "feet"),
  30603. name: "Front",
  30604. image: {
  30605. source: "./media/characters/guti/front.svg",
  30606. extra: 4551/4355,
  30607. bottom: 123/4674
  30608. }
  30609. },
  30610. tongue: {
  30611. height: math.unit(1, "feet"),
  30612. name: "Tongue",
  30613. image: {
  30614. source: "./media/characters/guti/tongue.svg"
  30615. }
  30616. },
  30617. paw: {
  30618. height: math.unit(1.18, "feet"),
  30619. name: "Paw",
  30620. image: {
  30621. source: "./media/characters/guti/paw.svg"
  30622. }
  30623. },
  30624. },
  30625. [
  30626. {
  30627. name: "Normal",
  30628. height: math.unit(9, "feet"),
  30629. default: true
  30630. },
  30631. ]
  30632. ))
  30633. characterMakers.push(() => makeCharacter(
  30634. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30635. {
  30636. side: {
  30637. height: math.unit(5, "meters"),
  30638. name: "Side",
  30639. image: {
  30640. source: "./media/characters/vesper/side.svg",
  30641. extra: 1605/1518,
  30642. bottom: 0/1605
  30643. }
  30644. },
  30645. },
  30646. [
  30647. {
  30648. name: "Small",
  30649. height: math.unit(5, "meters")
  30650. },
  30651. {
  30652. name: "Sage",
  30653. height: math.unit(100, "meters"),
  30654. default: true
  30655. },
  30656. {
  30657. name: "Fun Size",
  30658. height: math.unit(600, "meters")
  30659. },
  30660. {
  30661. name: "Goddess",
  30662. height: math.unit(20000, "km")
  30663. },
  30664. {
  30665. name: "Maximum",
  30666. height: math.unit(5, "galaxies")
  30667. },
  30668. ]
  30669. ))
  30670. characterMakers.push(() => makeCharacter(
  30671. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30672. {
  30673. front: {
  30674. height: math.unit(6 + 3/12, "feet"),
  30675. weight: math.unit(190, "lb"),
  30676. name: "Front",
  30677. image: {
  30678. source: "./media/characters/gawain/front.svg",
  30679. extra: 2222/2139,
  30680. bottom: 90/2312
  30681. }
  30682. },
  30683. back: {
  30684. height: math.unit(6 + 3/12, "feet"),
  30685. weight: math.unit(190, "lb"),
  30686. name: "Back",
  30687. image: {
  30688. source: "./media/characters/gawain/back.svg",
  30689. extra: 2199/2111,
  30690. bottom: 73/2272
  30691. }
  30692. },
  30693. },
  30694. [
  30695. {
  30696. name: "Normal",
  30697. height: math.unit(6 + 3/12, "feet"),
  30698. default: true
  30699. },
  30700. ]
  30701. ))
  30702. characterMakers.push(() => makeCharacter(
  30703. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30704. {
  30705. side: {
  30706. height: math.unit(3.5, "meters"),
  30707. weight: math.unit(16000, "lb"),
  30708. name: "Side",
  30709. image: {
  30710. source: "./media/characters/dascalti/side.svg",
  30711. extra: 392/273,
  30712. bottom: 47/439
  30713. }
  30714. },
  30715. breath: {
  30716. height: math.unit(7.4, "feet"),
  30717. name: "Breath",
  30718. image: {
  30719. source: "./media/characters/dascalti/breath.svg"
  30720. }
  30721. },
  30722. fed: {
  30723. height: math.unit(3.6, "meters"),
  30724. weight: math.unit(16000, "lb"),
  30725. name: "Fed",
  30726. image: {
  30727. source: "./media/characters/dascalti/fed.svg",
  30728. extra: 1419/820,
  30729. bottom: 95/1514
  30730. }
  30731. },
  30732. },
  30733. [
  30734. {
  30735. name: "Normal",
  30736. height: math.unit(3.5, "meters"),
  30737. default: true
  30738. },
  30739. ]
  30740. ))
  30741. characterMakers.push(() => makeCharacter(
  30742. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30743. {
  30744. front: {
  30745. height: math.unit(3 + 5/12, "feet"),
  30746. name: "Front",
  30747. image: {
  30748. source: "./media/characters/mauve/front.svg",
  30749. extra: 1126/1033,
  30750. bottom: 65/1191
  30751. }
  30752. },
  30753. side: {
  30754. height: math.unit(3 + 5/12, "feet"),
  30755. name: "Side",
  30756. image: {
  30757. source: "./media/characters/mauve/side.svg",
  30758. extra: 1089/1001,
  30759. bottom: 29/1118
  30760. }
  30761. },
  30762. back: {
  30763. height: math.unit(3 + 5/12, "feet"),
  30764. name: "Back",
  30765. image: {
  30766. source: "./media/characters/mauve/back.svg",
  30767. extra: 1173/1053,
  30768. bottom: 109/1282
  30769. }
  30770. },
  30771. },
  30772. [
  30773. {
  30774. name: "Normal",
  30775. height: math.unit(3 + 5/12, "feet"),
  30776. default: true
  30777. },
  30778. ]
  30779. ))
  30780. characterMakers.push(() => makeCharacter(
  30781. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30782. {
  30783. front: {
  30784. height: math.unit(6 + 3/12, "feet"),
  30785. weight: math.unit(430, "lb"),
  30786. name: "Front",
  30787. image: {
  30788. source: "./media/characters/carlos/front.svg",
  30789. extra: 1964/1913,
  30790. bottom: 70/2034
  30791. }
  30792. },
  30793. },
  30794. [
  30795. {
  30796. name: "Normal",
  30797. height: math.unit(6 + 3/12, "feet"),
  30798. default: true
  30799. },
  30800. ]
  30801. ))
  30802. characterMakers.push(() => makeCharacter(
  30803. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30804. {
  30805. back: {
  30806. height: math.unit(5 + 10/12, "feet"),
  30807. weight: math.unit(200, "lb"),
  30808. name: "Back",
  30809. image: {
  30810. source: "./media/characters/jax/back.svg",
  30811. extra: 764/739,
  30812. bottom: 25/789
  30813. }
  30814. },
  30815. },
  30816. [
  30817. {
  30818. name: "Normal",
  30819. height: math.unit(5 + 10/12, "feet"),
  30820. default: true
  30821. },
  30822. ]
  30823. ))
  30824. characterMakers.push(() => makeCharacter(
  30825. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30826. {
  30827. front: {
  30828. height: math.unit(8, "feet"),
  30829. weight: math.unit(250, "lb"),
  30830. name: "Front",
  30831. image: {
  30832. source: "./media/characters/eikthynir/front.svg",
  30833. extra: 1332/1166,
  30834. bottom: 82/1414
  30835. }
  30836. },
  30837. back: {
  30838. height: math.unit(8, "feet"),
  30839. weight: math.unit(250, "lb"),
  30840. name: "Back",
  30841. image: {
  30842. source: "./media/characters/eikthynir/back.svg",
  30843. extra: 1342/1190,
  30844. bottom: 19/1361
  30845. }
  30846. },
  30847. dick: {
  30848. height: math.unit(2.35, "feet"),
  30849. name: "Dick",
  30850. image: {
  30851. source: "./media/characters/eikthynir/dick.svg"
  30852. }
  30853. },
  30854. },
  30855. [
  30856. {
  30857. name: "Normal",
  30858. height: math.unit(8, "feet"),
  30859. default: true
  30860. },
  30861. ]
  30862. ))
  30863. characterMakers.push(() => makeCharacter(
  30864. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30865. {
  30866. front: {
  30867. height: math.unit(99, "meters"),
  30868. weight: math.unit(13000, "tons"),
  30869. name: "Front",
  30870. image: {
  30871. source: "./media/characters/zlmos/front.svg",
  30872. extra: 2202/1992,
  30873. bottom: 315/2517
  30874. }
  30875. },
  30876. },
  30877. [
  30878. {
  30879. name: "Macro",
  30880. height: math.unit(99, "meters"),
  30881. default: true
  30882. },
  30883. ]
  30884. ))
  30885. characterMakers.push(() => makeCharacter(
  30886. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30887. {
  30888. front: {
  30889. height: math.unit(6 + 5/12, "feet"),
  30890. name: "Front",
  30891. image: {
  30892. source: "./media/characters/purri/front.svg",
  30893. extra: 1698/1610,
  30894. bottom: 32/1730
  30895. }
  30896. },
  30897. frontAlt: {
  30898. height: math.unit(6 + 5/12, "feet"),
  30899. name: "Front (Alt)",
  30900. image: {
  30901. source: "./media/characters/purri/front-alt.svg",
  30902. extra: 450/420,
  30903. bottom: 26/476
  30904. }
  30905. },
  30906. boots: {
  30907. height: math.unit(5.5, "feet"),
  30908. name: "Boots",
  30909. image: {
  30910. source: "./media/characters/purri/boots.svg",
  30911. extra: 905/853,
  30912. bottom: 18/923
  30913. }
  30914. },
  30915. lying: {
  30916. height: math.unit(2, "feet"),
  30917. name: "Lying",
  30918. image: {
  30919. source: "./media/characters/purri/lying.svg",
  30920. extra: 940/843,
  30921. bottom: 146/1086
  30922. }
  30923. },
  30924. devious: {
  30925. height: math.unit(1.77, "feet"),
  30926. name: "Devious",
  30927. image: {
  30928. source: "./media/characters/purri/devious.svg",
  30929. extra: 1440/1155,
  30930. bottom: 147/1587
  30931. }
  30932. },
  30933. bean: {
  30934. height: math.unit(1.94, "feet"),
  30935. name: "Bean",
  30936. image: {
  30937. source: "./media/characters/purri/bean.svg"
  30938. }
  30939. },
  30940. },
  30941. [
  30942. {
  30943. name: "Micro",
  30944. height: math.unit(1, "mm")
  30945. },
  30946. {
  30947. name: "Normal",
  30948. height: math.unit(6 + 5/12, "feet"),
  30949. default: true
  30950. },
  30951. {
  30952. name: "Macro :3c",
  30953. height: math.unit(2, "miles")
  30954. },
  30955. ]
  30956. ))
  30957. characterMakers.push(() => makeCharacter(
  30958. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30959. {
  30960. front: {
  30961. height: math.unit(6 + 2/12, "feet"),
  30962. weight: math.unit(250, "lb"),
  30963. name: "Front",
  30964. image: {
  30965. source: "./media/characters/moonlight/front.svg",
  30966. extra: 1044/908,
  30967. bottom: 56/1100
  30968. }
  30969. },
  30970. feral: {
  30971. height: math.unit(3 + 1/12, "feet"),
  30972. weight: math.unit(50, "kg"),
  30973. name: "Feral",
  30974. image: {
  30975. source: "./media/characters/moonlight/feral.svg",
  30976. extra: 3705/2791,
  30977. bottom: 145/3850
  30978. }
  30979. },
  30980. paw: {
  30981. height: math.unit(1, "feet"),
  30982. name: "Paw",
  30983. image: {
  30984. source: "./media/characters/moonlight/paw.svg"
  30985. }
  30986. },
  30987. paws: {
  30988. height: math.unit(0.98, "feet"),
  30989. name: "Paws",
  30990. image: {
  30991. source: "./media/characters/moonlight/paws.svg",
  30992. extra: 939/939,
  30993. bottom: 50/989
  30994. }
  30995. },
  30996. mouth: {
  30997. height: math.unit(0.48, "feet"),
  30998. name: "Mouth",
  30999. image: {
  31000. source: "./media/characters/moonlight/mouth.svg"
  31001. }
  31002. },
  31003. dick: {
  31004. height: math.unit(1.46, "feet"),
  31005. name: "Dick",
  31006. image: {
  31007. source: "./media/characters/moonlight/dick.svg"
  31008. }
  31009. },
  31010. },
  31011. [
  31012. {
  31013. name: "Normal",
  31014. height: math.unit(6 + 2/12, "feet"),
  31015. default: true
  31016. },
  31017. {
  31018. name: "Macro",
  31019. height: math.unit(300, "feet")
  31020. },
  31021. {
  31022. name: "Macro+",
  31023. height: math.unit(1, "mile")
  31024. },
  31025. {
  31026. name: "Mt. Moon",
  31027. height: math.unit(5, "miles")
  31028. },
  31029. {
  31030. name: "Megamacro",
  31031. height: math.unit(15, "miles")
  31032. },
  31033. ]
  31034. ))
  31035. characterMakers.push(() => makeCharacter(
  31036. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31037. {
  31038. back: {
  31039. height: math.unit(6, "feet"),
  31040. weight: math.unit(150, "lb"),
  31041. name: "Back",
  31042. image: {
  31043. source: "./media/characters/sylen/back.svg",
  31044. extra: 1335/1273,
  31045. bottom: 107/1442
  31046. }
  31047. },
  31048. },
  31049. [
  31050. {
  31051. name: "Normal",
  31052. height: math.unit(5 + 5/12, "feet")
  31053. },
  31054. {
  31055. name: "Megamacro",
  31056. height: math.unit(3, "miles"),
  31057. default: true
  31058. },
  31059. ]
  31060. ))
  31061. characterMakers.push(() => makeCharacter(
  31062. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31063. {
  31064. front: {
  31065. height: math.unit(6, "feet"),
  31066. weight: math.unit(190, "lb"),
  31067. name: "Front",
  31068. image: {
  31069. source: "./media/characters/huttser/front.svg",
  31070. extra: 1152/1058,
  31071. bottom: 23/1175
  31072. }
  31073. },
  31074. side: {
  31075. height: math.unit(6, "feet"),
  31076. weight: math.unit(190, "lb"),
  31077. name: "Side",
  31078. image: {
  31079. source: "./media/characters/huttser/side.svg",
  31080. extra: 1174/1065,
  31081. bottom: 18/1192
  31082. }
  31083. },
  31084. back: {
  31085. height: math.unit(6, "feet"),
  31086. weight: math.unit(190, "lb"),
  31087. name: "Back",
  31088. image: {
  31089. source: "./media/characters/huttser/back.svg",
  31090. extra: 1158/1056,
  31091. bottom: 12/1170
  31092. }
  31093. },
  31094. },
  31095. [
  31096. ]
  31097. ))
  31098. characterMakers.push(() => makeCharacter(
  31099. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31100. {
  31101. side: {
  31102. height: math.unit(12 + 9/12, "feet"),
  31103. weight: math.unit(15000, "lb"),
  31104. name: "Side",
  31105. image: {
  31106. source: "./media/characters/faan/side.svg",
  31107. extra: 2747/2697,
  31108. bottom: 0/2747
  31109. }
  31110. },
  31111. front: {
  31112. height: math.unit(12 + 9/12, "feet"),
  31113. weight: math.unit(15000, "lb"),
  31114. name: "Front",
  31115. image: {
  31116. source: "./media/characters/faan/front.svg",
  31117. extra: 607/571,
  31118. bottom: 24/631
  31119. }
  31120. },
  31121. head: {
  31122. height: math.unit(2.85, "feet"),
  31123. name: "Head",
  31124. image: {
  31125. source: "./media/characters/faan/head.svg"
  31126. }
  31127. },
  31128. headAlt: {
  31129. height: math.unit(3.13, "feet"),
  31130. name: "Head-alt",
  31131. image: {
  31132. source: "./media/characters/faan/head-alt.svg"
  31133. }
  31134. },
  31135. },
  31136. [
  31137. {
  31138. name: "Normal",
  31139. height: math.unit(12 + 9/12, "feet"),
  31140. default: true
  31141. },
  31142. ]
  31143. ))
  31144. characterMakers.push(() => makeCharacter(
  31145. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31146. {
  31147. front: {
  31148. height: math.unit(6, "feet"),
  31149. weight: math.unit(300, "lb"),
  31150. name: "Front",
  31151. image: {
  31152. source: "./media/characters/tanio/front.svg",
  31153. extra: 711/673,
  31154. bottom: 25/736
  31155. }
  31156. },
  31157. },
  31158. [
  31159. {
  31160. name: "Normal",
  31161. height: math.unit(6, "feet"),
  31162. default: true
  31163. },
  31164. ]
  31165. ))
  31166. characterMakers.push(() => makeCharacter(
  31167. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31168. {
  31169. front: {
  31170. height: math.unit(3, "inches"),
  31171. name: "Front",
  31172. image: {
  31173. source: "./media/characters/noboru/front.svg",
  31174. extra: 1039/932,
  31175. bottom: 18/1057
  31176. }
  31177. },
  31178. },
  31179. [
  31180. {
  31181. name: "Micro",
  31182. height: math.unit(3, "inches"),
  31183. default: true
  31184. },
  31185. ]
  31186. ))
  31187. characterMakers.push(() => makeCharacter(
  31188. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31189. {
  31190. front: {
  31191. height: math.unit(1.85, "meters"),
  31192. weight: math.unit(80, "kg"),
  31193. name: "Front",
  31194. image: {
  31195. source: "./media/characters/daniel-barrett/front.svg",
  31196. extra: 355/337,
  31197. bottom: 9/364
  31198. }
  31199. },
  31200. },
  31201. [
  31202. {
  31203. name: "Pico",
  31204. height: math.unit(0.0433, "mm")
  31205. },
  31206. {
  31207. name: "Nano",
  31208. height: math.unit(1.5, "mm")
  31209. },
  31210. {
  31211. name: "Micro",
  31212. height: math.unit(5.3, "cm"),
  31213. default: true
  31214. },
  31215. {
  31216. name: "Normal",
  31217. height: math.unit(1.85, "meters")
  31218. },
  31219. {
  31220. name: "Macro",
  31221. height: math.unit(64.7, "meters")
  31222. },
  31223. {
  31224. name: "Megamacro",
  31225. height: math.unit(2.26, "km")
  31226. },
  31227. {
  31228. name: "Gigamacro",
  31229. height: math.unit(79, "km")
  31230. },
  31231. {
  31232. name: "Teramacro",
  31233. height: math.unit(2765, "km")
  31234. },
  31235. {
  31236. name: "Petamacro",
  31237. height: math.unit(96678, "km")
  31238. },
  31239. ]
  31240. ))
  31241. characterMakers.push(() => makeCharacter(
  31242. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31243. {
  31244. front: {
  31245. height: math.unit(30, "meters"),
  31246. weight: math.unit(400, "tons"),
  31247. name: "Front",
  31248. image: {
  31249. source: "./media/characters/zeel/front.svg",
  31250. extra: 2599/2599,
  31251. bottom: 226/2825
  31252. }
  31253. },
  31254. },
  31255. [
  31256. {
  31257. name: "Macro",
  31258. height: math.unit(30, "meters"),
  31259. default: true
  31260. },
  31261. ]
  31262. ))
  31263. characterMakers.push(() => makeCharacter(
  31264. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31265. {
  31266. front: {
  31267. height: math.unit(6 + 7/12, "feet"),
  31268. weight: math.unit(210, "lb"),
  31269. name: "Front",
  31270. image: {
  31271. source: "./media/characters/tarn/front.svg",
  31272. extra: 3517/3220,
  31273. bottom: 91/3608
  31274. }
  31275. },
  31276. back: {
  31277. height: math.unit(6 + 7/12, "feet"),
  31278. weight: math.unit(210, "lb"),
  31279. name: "Back",
  31280. image: {
  31281. source: "./media/characters/tarn/back.svg",
  31282. extra: 3566/3241,
  31283. bottom: 34/3600
  31284. }
  31285. },
  31286. dick: {
  31287. height: math.unit(1.65, "feet"),
  31288. name: "Dick",
  31289. image: {
  31290. source: "./media/characters/tarn/dick.svg"
  31291. }
  31292. },
  31293. paw: {
  31294. height: math.unit(1.80, "feet"),
  31295. name: "Paw",
  31296. image: {
  31297. source: "./media/characters/tarn/paw.svg"
  31298. }
  31299. },
  31300. tongue: {
  31301. height: math.unit(0.97, "feet"),
  31302. name: "Tongue",
  31303. image: {
  31304. source: "./media/characters/tarn/tongue.svg"
  31305. }
  31306. },
  31307. },
  31308. [
  31309. {
  31310. name: "Micro",
  31311. height: math.unit(4, "inches")
  31312. },
  31313. {
  31314. name: "Normal",
  31315. height: math.unit(6 + 7/12, "feet"),
  31316. default: true
  31317. },
  31318. {
  31319. name: "Macro",
  31320. height: math.unit(300, "feet")
  31321. },
  31322. ]
  31323. ))
  31324. characterMakers.push(() => makeCharacter(
  31325. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31326. {
  31327. front: {
  31328. height: math.unit(5 + 7/12, "feet"),
  31329. weight: math.unit(80, "kg"),
  31330. name: "Front",
  31331. image: {
  31332. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31333. extra: 3023/2865,
  31334. bottom: 33/3056
  31335. }
  31336. },
  31337. back: {
  31338. height: math.unit(5 + 7/12, "feet"),
  31339. weight: math.unit(80, "kg"),
  31340. name: "Back",
  31341. image: {
  31342. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31343. extra: 3020/2886,
  31344. bottom: 30/3050
  31345. }
  31346. },
  31347. dick: {
  31348. height: math.unit(0.98, "feet"),
  31349. name: "Dick",
  31350. image: {
  31351. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31352. }
  31353. },
  31354. anatomy: {
  31355. height: math.unit(2.86, "feet"),
  31356. name: "Anatomy",
  31357. image: {
  31358. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31359. }
  31360. },
  31361. },
  31362. [
  31363. {
  31364. name: "Really Small",
  31365. height: math.unit(2, "inches")
  31366. },
  31367. {
  31368. name: "Micro",
  31369. height: math.unit(5.583, "inches")
  31370. },
  31371. {
  31372. name: "Normal",
  31373. height: math.unit(5 + 7/12, "feet"),
  31374. default: true
  31375. },
  31376. {
  31377. name: "Macro",
  31378. height: math.unit(67, "feet")
  31379. },
  31380. {
  31381. name: "Megamacro",
  31382. height: math.unit(134, "feet")
  31383. },
  31384. ]
  31385. ))
  31386. characterMakers.push(() => makeCharacter(
  31387. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31388. {
  31389. front: {
  31390. height: math.unit(9, "feet"),
  31391. weight: math.unit(120, "lb"),
  31392. name: "Front",
  31393. image: {
  31394. source: "./media/characters/sally/front.svg",
  31395. extra: 1506/1349,
  31396. bottom: 66/1572
  31397. }
  31398. },
  31399. },
  31400. [
  31401. {
  31402. name: "Normal",
  31403. height: math.unit(9, "feet"),
  31404. default: true
  31405. },
  31406. ]
  31407. ))
  31408. characterMakers.push(() => makeCharacter(
  31409. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31410. {
  31411. front: {
  31412. height: math.unit(8, "feet"),
  31413. weight: math.unit(900, "lb"),
  31414. name: "Front",
  31415. image: {
  31416. source: "./media/characters/owen/front.svg",
  31417. extra: 1761/1657,
  31418. bottom: 74/1835
  31419. }
  31420. },
  31421. side: {
  31422. height: math.unit(8, "feet"),
  31423. weight: math.unit(900, "lb"),
  31424. name: "Side",
  31425. image: {
  31426. source: "./media/characters/owen/side.svg",
  31427. extra: 1797/1734,
  31428. bottom: 30/1827
  31429. }
  31430. },
  31431. back: {
  31432. height: math.unit(8, "feet"),
  31433. weight: math.unit(900, "lb"),
  31434. name: "Back",
  31435. image: {
  31436. source: "./media/characters/owen/back.svg",
  31437. extra: 1796/1706,
  31438. bottom: 59/1855
  31439. }
  31440. },
  31441. maw: {
  31442. height: math.unit(1.76, "feet"),
  31443. name: "Maw",
  31444. image: {
  31445. source: "./media/characters/owen/maw.svg"
  31446. }
  31447. },
  31448. },
  31449. [
  31450. {
  31451. name: "Normal",
  31452. height: math.unit(8, "feet"),
  31453. default: true
  31454. },
  31455. ]
  31456. ))
  31457. characterMakers.push(() => makeCharacter(
  31458. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31459. {
  31460. front: {
  31461. height: math.unit(4, "feet"),
  31462. weight: math.unit(400, "lb"),
  31463. name: "Front",
  31464. image: {
  31465. source: "./media/characters/ryth/front.svg",
  31466. extra: 876/691,
  31467. bottom: 25/901
  31468. }
  31469. },
  31470. goia: {
  31471. height: math.unit(12, "feet"),
  31472. weight: math.unit(10800, "lb"),
  31473. name: "Goia",
  31474. image: {
  31475. source: "./media/characters/ryth/goia.svg",
  31476. extra: 3450/3198,
  31477. bottom: 61/3511
  31478. }
  31479. },
  31480. },
  31481. [
  31482. {
  31483. name: "Normal",
  31484. height: math.unit(4, "feet"),
  31485. default: true
  31486. },
  31487. ]
  31488. ))
  31489. characterMakers.push(() => makeCharacter(
  31490. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31491. {
  31492. front: {
  31493. height: math.unit(7, "feet"),
  31494. weight: math.unit(180, "lb"),
  31495. name: "Front",
  31496. image: {
  31497. source: "./media/characters/necrolance/front.svg",
  31498. extra: 1062/947,
  31499. bottom: 41/1103
  31500. }
  31501. },
  31502. back: {
  31503. height: math.unit(7, "feet"),
  31504. weight: math.unit(180, "lb"),
  31505. name: "Back",
  31506. image: {
  31507. source: "./media/characters/necrolance/back.svg",
  31508. extra: 1045/984,
  31509. bottom: 14/1059
  31510. }
  31511. },
  31512. wing: {
  31513. height: math.unit(2.67, "feet"),
  31514. name: "Wing",
  31515. image: {
  31516. source: "./media/characters/necrolance/wing.svg"
  31517. }
  31518. },
  31519. },
  31520. [
  31521. {
  31522. name: "Normal",
  31523. height: math.unit(7, "feet"),
  31524. default: true
  31525. },
  31526. ]
  31527. ))
  31528. characterMakers.push(() => makeCharacter(
  31529. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31530. {
  31531. front: {
  31532. height: math.unit(76, "meters"),
  31533. weight: math.unit(30000, "tons"),
  31534. name: "Front",
  31535. image: {
  31536. source: "./media/characters/tyler/front.svg",
  31537. extra: 1640/1640,
  31538. bottom: 114/1754
  31539. }
  31540. },
  31541. },
  31542. [
  31543. {
  31544. name: "Macro",
  31545. height: math.unit(76, "meters"),
  31546. default: true
  31547. },
  31548. ]
  31549. ))
  31550. characterMakers.push(() => makeCharacter(
  31551. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31552. {
  31553. front: {
  31554. height: math.unit(4 + 11/12, "feet"),
  31555. weight: math.unit(132, "lb"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/icey/front.svg",
  31559. extra: 2750/2550,
  31560. bottom: 33/2783
  31561. }
  31562. },
  31563. back: {
  31564. height: math.unit(4 + 11/12, "feet"),
  31565. weight: math.unit(132, "lb"),
  31566. name: "Back",
  31567. image: {
  31568. source: "./media/characters/icey/back.svg",
  31569. extra: 2624/2481,
  31570. bottom: 35/2659
  31571. }
  31572. },
  31573. },
  31574. [
  31575. {
  31576. name: "Normal",
  31577. height: math.unit(4 + 11/12, "feet"),
  31578. default: true
  31579. },
  31580. ]
  31581. ))
  31582. characterMakers.push(() => makeCharacter(
  31583. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31584. {
  31585. front: {
  31586. height: math.unit(100, "feet"),
  31587. weight: math.unit(0, "lb"),
  31588. name: "Front",
  31589. image: {
  31590. source: "./media/characters/smile/front.svg",
  31591. extra: 2983/2912,
  31592. bottom: 162/3145
  31593. }
  31594. },
  31595. back: {
  31596. height: math.unit(100, "feet"),
  31597. weight: math.unit(0, "lb"),
  31598. name: "Back",
  31599. image: {
  31600. source: "./media/characters/smile/back.svg",
  31601. extra: 3143/3031,
  31602. bottom: 91/3234
  31603. }
  31604. },
  31605. head: {
  31606. height: math.unit(26.3, "feet"),
  31607. weight: math.unit(0, "lb"),
  31608. name: "Head",
  31609. image: {
  31610. source: "./media/characters/smile/head.svg"
  31611. }
  31612. },
  31613. collar: {
  31614. height: math.unit(5.3, "feet"),
  31615. weight: math.unit(0, "lb"),
  31616. name: "Collar",
  31617. image: {
  31618. source: "./media/characters/smile/collar.svg"
  31619. }
  31620. },
  31621. },
  31622. [
  31623. {
  31624. name: "Macro",
  31625. height: math.unit(100, "feet"),
  31626. default: true
  31627. },
  31628. ]
  31629. ))
  31630. characterMakers.push(() => makeCharacter(
  31631. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31632. {
  31633. dragon: {
  31634. height: math.unit(26, "feet"),
  31635. weight: math.unit(36, "tons"),
  31636. name: "Dragon",
  31637. image: {
  31638. source: "./media/characters/arimphae/dragon.svg",
  31639. extra: 1574/983,
  31640. bottom: 357/1931
  31641. }
  31642. },
  31643. drake: {
  31644. height: math.unit(9, "feet"),
  31645. weight: math.unit(1.5, "tons"),
  31646. name: "Drake",
  31647. image: {
  31648. source: "./media/characters/arimphae/drake.svg",
  31649. extra: 1120/925,
  31650. bottom: 435/1555
  31651. }
  31652. },
  31653. },
  31654. [
  31655. {
  31656. name: "Small",
  31657. height: math.unit(26*5/9, "feet")
  31658. },
  31659. {
  31660. name: "Normal",
  31661. height: math.unit(26, "feet"),
  31662. default: true
  31663. },
  31664. ]
  31665. ))
  31666. characterMakers.push(() => makeCharacter(
  31667. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31668. {
  31669. front: {
  31670. height: math.unit(8 + 9/12, "feet"),
  31671. name: "Front",
  31672. image: {
  31673. source: "./media/characters/xander/front.svg",
  31674. extra: 848/673,
  31675. bottom: 62/910
  31676. }
  31677. },
  31678. },
  31679. [
  31680. {
  31681. name: "Normal",
  31682. height: math.unit(8 + 9/12, "feet"),
  31683. default: true
  31684. },
  31685. {
  31686. name: "Gaze Grabber",
  31687. height: math.unit(13 + 8/12, "feet")
  31688. },
  31689. {
  31690. name: "Jaw Dropper",
  31691. height: math.unit(27, "feet")
  31692. },
  31693. {
  31694. name: "Show Stopper",
  31695. height: math.unit(136, "feet")
  31696. },
  31697. {
  31698. name: "Superstar",
  31699. height: math.unit(1.9e6, "miles")
  31700. },
  31701. ]
  31702. ))
  31703. characterMakers.push(() => makeCharacter(
  31704. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31705. {
  31706. side: {
  31707. height: math.unit(2100, "feet"),
  31708. name: "Side",
  31709. image: {
  31710. source: "./media/characters/osiris/side.svg",
  31711. extra: 1105/939,
  31712. bottom: 167/1272
  31713. }
  31714. },
  31715. },
  31716. [
  31717. {
  31718. name: "Macro",
  31719. height: math.unit(2100, "feet"),
  31720. default: true
  31721. },
  31722. ]
  31723. ))
  31724. characterMakers.push(() => makeCharacter(
  31725. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31726. {
  31727. front: {
  31728. height: math.unit(6 + 8/12, "feet"),
  31729. weight: math.unit(225, "lb"),
  31730. name: "Front",
  31731. image: {
  31732. source: "./media/characters/rhys-londe/front.svg",
  31733. extra: 2258/2141,
  31734. bottom: 188/2446
  31735. }
  31736. },
  31737. back: {
  31738. height: math.unit(6 + 8/12, "feet"),
  31739. weight: math.unit(225, "lb"),
  31740. name: "Back",
  31741. image: {
  31742. source: "./media/characters/rhys-londe/back.svg",
  31743. extra: 2237/2137,
  31744. bottom: 63/2300
  31745. }
  31746. },
  31747. frontNsfw: {
  31748. height: math.unit(6 + 8/12, "feet"),
  31749. weight: math.unit(225, "lb"),
  31750. name: "Front (NSFW)",
  31751. image: {
  31752. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31753. extra: 2258/2141,
  31754. bottom: 188/2446
  31755. }
  31756. },
  31757. backNsfw: {
  31758. height: math.unit(6 + 8/12, "feet"),
  31759. weight: math.unit(225, "lb"),
  31760. name: "Back (NSFW)",
  31761. image: {
  31762. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31763. extra: 2237/2137,
  31764. bottom: 63/2300
  31765. }
  31766. },
  31767. dick: {
  31768. height: math.unit(30, "inches"),
  31769. name: "Dick",
  31770. image: {
  31771. source: "./media/characters/rhys-londe/dick.svg"
  31772. }
  31773. },
  31774. maw: {
  31775. height: math.unit(1.6, "feet"),
  31776. name: "Maw",
  31777. image: {
  31778. source: "./media/characters/rhys-londe/maw.svg"
  31779. }
  31780. },
  31781. },
  31782. [
  31783. {
  31784. name: "Normal",
  31785. height: math.unit(6 + 8/12, "feet"),
  31786. default: true
  31787. },
  31788. ]
  31789. ))
  31790. characterMakers.push(() => makeCharacter(
  31791. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31792. {
  31793. front: {
  31794. height: math.unit(3 + 10/12, "feet"),
  31795. weight: math.unit(90, "lb"),
  31796. name: "Front",
  31797. image: {
  31798. source: "./media/characters/taivas-ensim/front.svg",
  31799. extra: 1327/1216,
  31800. bottom: 96/1423
  31801. }
  31802. },
  31803. back: {
  31804. height: math.unit(3 + 10/12, "feet"),
  31805. weight: math.unit(90, "lb"),
  31806. name: "Back",
  31807. image: {
  31808. source: "./media/characters/taivas-ensim/back.svg",
  31809. extra: 1355/1247,
  31810. bottom: 11/1366
  31811. }
  31812. },
  31813. frontNsfw: {
  31814. height: math.unit(3 + 10/12, "feet"),
  31815. weight: math.unit(90, "lb"),
  31816. name: "Front (NSFW)",
  31817. image: {
  31818. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31819. extra: 1327/1216,
  31820. bottom: 96/1423
  31821. }
  31822. },
  31823. backNsfw: {
  31824. height: math.unit(3 + 10/12, "feet"),
  31825. weight: math.unit(90, "lb"),
  31826. name: "Back (NSFW)",
  31827. image: {
  31828. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31829. extra: 1355/1247,
  31830. bottom: 11/1366
  31831. }
  31832. },
  31833. },
  31834. [
  31835. {
  31836. name: "Normal",
  31837. height: math.unit(3 + 10/12, "feet"),
  31838. default: true
  31839. },
  31840. ]
  31841. ))
  31842. characterMakers.push(() => makeCharacter(
  31843. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31844. {
  31845. front: {
  31846. height: math.unit(9 + 6/12, "feet"),
  31847. weight: math.unit(940, "lb"),
  31848. name: "Front",
  31849. image: {
  31850. source: "./media/characters/byliss/front.svg",
  31851. extra: 1327/1290,
  31852. bottom: 82/1409
  31853. }
  31854. },
  31855. back: {
  31856. height: math.unit(9 + 6/12, "feet"),
  31857. weight: math.unit(940, "lb"),
  31858. name: "Back",
  31859. image: {
  31860. source: "./media/characters/byliss/back.svg",
  31861. extra: 1376/1349,
  31862. bottom: 9/1385
  31863. }
  31864. },
  31865. frontNsfw: {
  31866. height: math.unit(9 + 6/12, "feet"),
  31867. weight: math.unit(940, "lb"),
  31868. name: "Front (NSFW)",
  31869. image: {
  31870. source: "./media/characters/byliss/front-nsfw.svg",
  31871. extra: 1327/1290,
  31872. bottom: 82/1409
  31873. }
  31874. },
  31875. backNsfw: {
  31876. height: math.unit(9 + 6/12, "feet"),
  31877. weight: math.unit(940, "lb"),
  31878. name: "Back (NSFW)",
  31879. image: {
  31880. source: "./media/characters/byliss/back-nsfw.svg",
  31881. extra: 1376/1349,
  31882. bottom: 9/1385
  31883. }
  31884. },
  31885. },
  31886. [
  31887. {
  31888. name: "Normal",
  31889. height: math.unit(9 + 6/12, "feet"),
  31890. default: true
  31891. },
  31892. ]
  31893. ))
  31894. characterMakers.push(() => makeCharacter(
  31895. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31896. {
  31897. front: {
  31898. height: math.unit(5 + 2/12, "feet"),
  31899. weight: math.unit(200, "lb"),
  31900. name: "Front",
  31901. image: {
  31902. source: "./media/characters/noraly/front.svg",
  31903. extra: 4985/4773,
  31904. bottom: 150/5135
  31905. }
  31906. },
  31907. full: {
  31908. height: math.unit(5 + 2/12, "feet"),
  31909. weight: math.unit(164, "lb"),
  31910. name: "Full",
  31911. image: {
  31912. source: "./media/characters/noraly/full.svg",
  31913. extra: 1114/1059,
  31914. bottom: 35/1149
  31915. }
  31916. },
  31917. fuller: {
  31918. height: math.unit(5 + 2/12, "feet"),
  31919. weight: math.unit(230, "lb"),
  31920. name: "Fuller",
  31921. image: {
  31922. source: "./media/characters/noraly/fuller.svg",
  31923. extra: 1114/1059,
  31924. bottom: 35/1149
  31925. }
  31926. },
  31927. fullest: {
  31928. height: math.unit(5 + 2/12, "feet"),
  31929. weight: math.unit(300, "lb"),
  31930. name: "Fullest",
  31931. image: {
  31932. source: "./media/characters/noraly/fullest.svg",
  31933. extra: 1114/1059,
  31934. bottom: 35/1149
  31935. }
  31936. },
  31937. },
  31938. [
  31939. {
  31940. name: "Normal",
  31941. height: math.unit(5 + 2/12, "feet"),
  31942. default: true
  31943. },
  31944. ]
  31945. ))
  31946. characterMakers.push(() => makeCharacter(
  31947. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31948. {
  31949. front: {
  31950. height: math.unit(5 + 2/12, "feet"),
  31951. weight: math.unit(210, "lb"),
  31952. name: "Front",
  31953. image: {
  31954. source: "./media/characters/pera/front.svg",
  31955. extra: 1560/1531,
  31956. bottom: 165/1725
  31957. }
  31958. },
  31959. back: {
  31960. height: math.unit(5 + 2/12, "feet"),
  31961. weight: math.unit(210, "lb"),
  31962. name: "Back",
  31963. image: {
  31964. source: "./media/characters/pera/back.svg",
  31965. extra: 1523/1493,
  31966. bottom: 152/1675
  31967. }
  31968. },
  31969. dick: {
  31970. height: math.unit(2.4, "feet"),
  31971. name: "Dick",
  31972. image: {
  31973. source: "./media/characters/pera/dick.svg"
  31974. }
  31975. },
  31976. },
  31977. [
  31978. {
  31979. name: "Normal",
  31980. height: math.unit(5 + 2/12, "feet"),
  31981. default: true
  31982. },
  31983. ]
  31984. ))
  31985. characterMakers.push(() => makeCharacter(
  31986. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31987. {
  31988. front: {
  31989. height: math.unit(12, "feet"),
  31990. weight: math.unit(3200, "lb"),
  31991. name: "Front",
  31992. image: {
  31993. source: "./media/characters/julian/front.svg",
  31994. extra: 2962/2701,
  31995. bottom: 184/3146
  31996. }
  31997. },
  31998. maw: {
  31999. height: math.unit(5.35, "feet"),
  32000. name: "Maw",
  32001. image: {
  32002. source: "./media/characters/julian/maw.svg"
  32003. }
  32004. },
  32005. paw: {
  32006. height: math.unit(3.07, "feet"),
  32007. name: "Paw",
  32008. image: {
  32009. source: "./media/characters/julian/paw.svg"
  32010. }
  32011. },
  32012. },
  32013. [
  32014. {
  32015. name: "Default",
  32016. height: math.unit(12, "feet"),
  32017. default: true
  32018. },
  32019. {
  32020. name: "Big",
  32021. height: math.unit(50, "feet")
  32022. },
  32023. {
  32024. name: "Really Big",
  32025. height: math.unit(1, "mile")
  32026. },
  32027. {
  32028. name: "Extremely Big",
  32029. height: math.unit(100, "miles")
  32030. },
  32031. {
  32032. name: "Planet Hugger",
  32033. height: math.unit(200, "megameters")
  32034. },
  32035. {
  32036. name: "Unreasonably Big",
  32037. height: math.unit(1e300, "meters")
  32038. },
  32039. ]
  32040. ))
  32041. characterMakers.push(() => makeCharacter(
  32042. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32043. {
  32044. solgooleo: {
  32045. height: math.unit(4, "meters"),
  32046. weight: math.unit(6000*1.5, "kg"),
  32047. volume: math.unit(6000, "liters"),
  32048. name: "Solgooleo",
  32049. image: {
  32050. source: "./media/characters/pi/solgooleo.svg",
  32051. extra: 388/331,
  32052. bottom: 29/417
  32053. }
  32054. },
  32055. },
  32056. [
  32057. {
  32058. name: "Normal",
  32059. height: math.unit(4, "meters"),
  32060. default: true
  32061. },
  32062. ]
  32063. ))
  32064. characterMakers.push(() => makeCharacter(
  32065. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32066. {
  32067. front: {
  32068. height: math.unit(8 + 2/12, "feet"),
  32069. weight: math.unit(4, "tons"),
  32070. name: "Front",
  32071. image: {
  32072. source: "./media/characters/shaun/front.svg",
  32073. extra: 1550/1505,
  32074. bottom: 353/1903
  32075. }
  32076. },
  32077. },
  32078. [
  32079. {
  32080. name: "Lorg",
  32081. height: math.unit(8 + 2/12, "feet"),
  32082. default: true
  32083. },
  32084. ]
  32085. ))
  32086. characterMakers.push(() => makeCharacter(
  32087. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32088. {
  32089. front: {
  32090. height: math.unit(7, "feet"),
  32091. name: "Front",
  32092. image: {
  32093. source: "./media/characters/sini/front.svg",
  32094. extra: 726/678,
  32095. bottom: 35/761
  32096. }
  32097. },
  32098. back: {
  32099. height: math.unit(7, "feet"),
  32100. name: "Back",
  32101. image: {
  32102. source: "./media/characters/sini/back.svg",
  32103. extra: 743/701,
  32104. bottom: 12/755
  32105. }
  32106. },
  32107. mawAnthro: {
  32108. height: math.unit(2.14, "feet"),
  32109. name: "Maw (Anthro)",
  32110. image: {
  32111. source: "./media/characters/sini/maw-anthro.svg"
  32112. }
  32113. },
  32114. dick: {
  32115. height: math.unit(1.45, "feet"),
  32116. name: "Dick (Anthro)",
  32117. image: {
  32118. source: "./media/characters/sini/dick-anthro.svg"
  32119. }
  32120. },
  32121. feral: {
  32122. height: math.unit(13, "feet"),
  32123. name: "Feral",
  32124. image: {
  32125. source: "./media/characters/sini/feral.svg",
  32126. extra: 814/605,
  32127. bottom: 11/825
  32128. }
  32129. },
  32130. mawFeral: {
  32131. height: math.unit(4.6, "feet"),
  32132. name: "Maw-feral",
  32133. image: {
  32134. source: "./media/characters/sini/maw-feral.svg"
  32135. }
  32136. },
  32137. footFeral: {
  32138. height: math.unit(4.2, "feet"),
  32139. name: "Foot-feral",
  32140. image: {
  32141. source: "./media/characters/sini/foot-feral.svg"
  32142. }
  32143. },
  32144. },
  32145. [
  32146. {
  32147. name: "Normal",
  32148. height: math.unit(7, "feet"),
  32149. default: true
  32150. },
  32151. ]
  32152. ))
  32153. characterMakers.push(() => makeCharacter(
  32154. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32155. {
  32156. side: {
  32157. height: math.unit(13, "meters"),
  32158. weight: math.unit(9072, "kg"),
  32159. name: "Side",
  32160. image: {
  32161. source: "./media/characters/raylldo/side.svg",
  32162. extra: 403/344,
  32163. bottom: 42/445
  32164. }
  32165. },
  32166. leaping: {
  32167. height: math.unit(12.3, "meters"),
  32168. weight: math.unit(9072, "kg"),
  32169. name: "Leaping",
  32170. image: {
  32171. source: "./media/characters/raylldo/leaping.svg",
  32172. extra: 470/249,
  32173. bottom: 13/483
  32174. }
  32175. },
  32176. flying: {
  32177. height: math.unit(18, "meters"),
  32178. weight: math.unit(9072, "kg"),
  32179. name: "Flying",
  32180. image: {
  32181. source: "./media/characters/raylldo/flying.svg"
  32182. }
  32183. },
  32184. head: {
  32185. height: math.unit(5.85, "meters"),
  32186. name: "Head",
  32187. image: {
  32188. source: "./media/characters/raylldo/head.svg"
  32189. }
  32190. },
  32191. maw: {
  32192. height: math.unit(5.32, "meters"),
  32193. name: "Maw",
  32194. image: {
  32195. source: "./media/characters/raylldo/maw.svg"
  32196. }
  32197. },
  32198. eye: {
  32199. height: math.unit(0.54, "meters"),
  32200. name: "Eye",
  32201. image: {
  32202. source: "./media/characters/raylldo/eye.svg"
  32203. }
  32204. },
  32205. },
  32206. [
  32207. {
  32208. name: "Normal",
  32209. height: math.unit(13, "meters"),
  32210. default: true
  32211. },
  32212. ]
  32213. ))
  32214. characterMakers.push(() => makeCharacter(
  32215. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32216. {
  32217. anthroFront: {
  32218. height: math.unit(9, "feet"),
  32219. weight: math.unit(600, "lb"),
  32220. name: "Anthro (Front)",
  32221. image: {
  32222. source: "./media/characters/glint/anthro-front.svg",
  32223. extra: 1097/1018,
  32224. bottom: 28/1125
  32225. }
  32226. },
  32227. anthroBack: {
  32228. height: math.unit(9, "feet"),
  32229. weight: math.unit(600, "lb"),
  32230. name: "Anthro (Back)",
  32231. image: {
  32232. source: "./media/characters/glint/anthro-back.svg",
  32233. extra: 1154/997,
  32234. bottom: 36/1190
  32235. }
  32236. },
  32237. feral: {
  32238. height: math.unit(11, "feet"),
  32239. weight: math.unit(50000, "lb"),
  32240. name: "Feral",
  32241. image: {
  32242. source: "./media/characters/glint/feral.svg",
  32243. extra: 3035/1585,
  32244. bottom: 1169/4204
  32245. }
  32246. },
  32247. dickAnthro: {
  32248. height: math.unit(0.7, "meters"),
  32249. name: "Dick (Anthro)",
  32250. image: {
  32251. source: "./media/characters/glint/dick-anthro.svg"
  32252. }
  32253. },
  32254. dickFeral: {
  32255. height: math.unit(2.65, "meters"),
  32256. name: "Dick (Feral)",
  32257. image: {
  32258. source: "./media/characters/glint/dick-feral.svg"
  32259. }
  32260. },
  32261. slitHidden: {
  32262. height: math.unit(5.85, "meters"),
  32263. name: "Slit (Hidden)",
  32264. image: {
  32265. source: "./media/characters/glint/slit-hidden.svg"
  32266. }
  32267. },
  32268. slitErect: {
  32269. height: math.unit(5.85, "meters"),
  32270. name: "Slit (Erect)",
  32271. image: {
  32272. source: "./media/characters/glint/slit-erect.svg"
  32273. }
  32274. },
  32275. mawAnthro: {
  32276. height: math.unit(0.63, "meters"),
  32277. name: "Maw (Anthro)",
  32278. image: {
  32279. source: "./media/characters/glint/maw.svg"
  32280. }
  32281. },
  32282. mawFeral: {
  32283. height: math.unit(2.89, "meters"),
  32284. name: "Maw (Feral)",
  32285. image: {
  32286. source: "./media/characters/glint/maw.svg"
  32287. }
  32288. },
  32289. },
  32290. [
  32291. {
  32292. name: "Normal",
  32293. height: math.unit(9, "feet"),
  32294. default: true
  32295. },
  32296. ]
  32297. ))
  32298. characterMakers.push(() => makeCharacter(
  32299. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32300. {
  32301. side: {
  32302. height: math.unit(15, "feet"),
  32303. weight: math.unit(5000, "kg"),
  32304. name: "Side",
  32305. image: {
  32306. source: "./media/characters/kairne/side.svg",
  32307. extra: 979/811,
  32308. bottom: 13/992
  32309. }
  32310. },
  32311. front: {
  32312. height: math.unit(15, "feet"),
  32313. weight: math.unit(5000, "kg"),
  32314. name: "Front",
  32315. image: {
  32316. source: "./media/characters/kairne/front.svg",
  32317. extra: 908/814,
  32318. bottom: 26/934
  32319. }
  32320. },
  32321. sideNsfw: {
  32322. height: math.unit(15, "feet"),
  32323. weight: math.unit(5000, "kg"),
  32324. name: "Side (NSFW)",
  32325. image: {
  32326. source: "./media/characters/kairne/side-nsfw.svg",
  32327. extra: 979/811,
  32328. bottom: 13/992
  32329. }
  32330. },
  32331. frontNsfw: {
  32332. height: math.unit(15, "feet"),
  32333. weight: math.unit(5000, "kg"),
  32334. name: "Front (NSFW)",
  32335. image: {
  32336. source: "./media/characters/kairne/front-nsfw.svg",
  32337. extra: 908/814,
  32338. bottom: 26/934
  32339. }
  32340. },
  32341. dickCaged: {
  32342. height: math.unit(0.65, "meters"),
  32343. name: "Dick-caged",
  32344. image: {
  32345. source: "./media/characters/kairne/dick-caged.svg"
  32346. }
  32347. },
  32348. dick: {
  32349. height: math.unit(0.79, "meters"),
  32350. name: "Dick",
  32351. image: {
  32352. source: "./media/characters/kairne/dick.svg"
  32353. }
  32354. },
  32355. genitals: {
  32356. height: math.unit(1.29, "meters"),
  32357. name: "Genitals",
  32358. image: {
  32359. source: "./media/characters/kairne/genitals.svg"
  32360. }
  32361. },
  32362. maw: {
  32363. height: math.unit(1.73, "meters"),
  32364. name: "Maw",
  32365. image: {
  32366. source: "./media/characters/kairne/maw.svg"
  32367. }
  32368. },
  32369. },
  32370. [
  32371. {
  32372. name: "Normal",
  32373. height: math.unit(15, "feet"),
  32374. default: true
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32380. {
  32381. front: {
  32382. height: math.unit(5 + 8/12, "feet"),
  32383. weight: math.unit(139, "lb"),
  32384. name: "Front",
  32385. image: {
  32386. source: "./media/characters/biscuit-jackal/front.svg",
  32387. extra: 2106/1961,
  32388. bottom: 58/2164
  32389. }
  32390. },
  32391. back: {
  32392. height: math.unit(5 + 8/12, "feet"),
  32393. weight: math.unit(139, "lb"),
  32394. name: "Back",
  32395. image: {
  32396. source: "./media/characters/biscuit-jackal/back.svg",
  32397. extra: 2132/1976,
  32398. bottom: 57/2189
  32399. }
  32400. },
  32401. werejackal: {
  32402. height: math.unit(6 + 3/12, "feet"),
  32403. weight: math.unit(188, "lb"),
  32404. name: "Werejackal",
  32405. image: {
  32406. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32407. extra: 2373/2178,
  32408. bottom: 53/2426
  32409. }
  32410. },
  32411. },
  32412. [
  32413. {
  32414. name: "Normal",
  32415. height: math.unit(5 + 8/12, "feet"),
  32416. default: true
  32417. },
  32418. ]
  32419. ))
  32420. characterMakers.push(() => makeCharacter(
  32421. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32422. {
  32423. front: {
  32424. height: math.unit(140, "cm"),
  32425. weight: math.unit(45, "kg"),
  32426. name: "Front",
  32427. image: {
  32428. source: "./media/characters/tayra-white/front.svg",
  32429. extra: 2229/2192,
  32430. bottom: 75/2304
  32431. }
  32432. },
  32433. },
  32434. [
  32435. {
  32436. name: "Normal",
  32437. height: math.unit(140, "cm"),
  32438. default: true
  32439. },
  32440. ]
  32441. ))
  32442. characterMakers.push(() => makeCharacter(
  32443. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32444. {
  32445. front: {
  32446. height: math.unit(4 + 5/12, "feet"),
  32447. name: "Front",
  32448. image: {
  32449. source: "./media/characters/scoop/front.svg",
  32450. extra: 1257/1136,
  32451. bottom: 69/1326
  32452. }
  32453. },
  32454. back: {
  32455. height: math.unit(4 + 5/12, "feet"),
  32456. name: "Back",
  32457. image: {
  32458. source: "./media/characters/scoop/back.svg",
  32459. extra: 1321/1152,
  32460. bottom: 32/1353
  32461. }
  32462. },
  32463. maw: {
  32464. height: math.unit(0.68, "feet"),
  32465. name: "Maw",
  32466. image: {
  32467. source: "./media/characters/scoop/maw.svg"
  32468. }
  32469. },
  32470. },
  32471. [
  32472. {
  32473. name: "Really Small",
  32474. height: math.unit(1, "mm")
  32475. },
  32476. {
  32477. name: "Micro",
  32478. height: math.unit(1, "inch")
  32479. },
  32480. {
  32481. name: "Normal",
  32482. height: math.unit(4 + 5/12, "feet"),
  32483. default: true
  32484. },
  32485. {
  32486. name: "Macro",
  32487. height: math.unit(200, "feet")
  32488. },
  32489. {
  32490. name: "Megamacro",
  32491. height: math.unit(3240, "feet")
  32492. },
  32493. {
  32494. name: "Teramacro",
  32495. height: math.unit(2500, "miles")
  32496. },
  32497. ]
  32498. ))
  32499. characterMakers.push(() => makeCharacter(
  32500. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32501. {
  32502. front: {
  32503. height: math.unit(15 + 7/12, "feet"),
  32504. name: "Front",
  32505. image: {
  32506. source: "./media/characters/saphinara/front.svg",
  32507. extra: 604/546,
  32508. bottom: 19/623
  32509. }
  32510. },
  32511. side: {
  32512. height: math.unit(15 + 7/12, "feet"),
  32513. name: "Side",
  32514. image: {
  32515. source: "./media/characters/saphinara/side.svg",
  32516. extra: 605/547,
  32517. bottom: 6/611
  32518. }
  32519. },
  32520. back: {
  32521. height: math.unit(15 + 7/12, "feet"),
  32522. name: "Back",
  32523. image: {
  32524. source: "./media/characters/saphinara/back.svg",
  32525. extra: 591/531,
  32526. bottom: 13/604
  32527. }
  32528. },
  32529. frontTail: {
  32530. height: math.unit(15 + 7/12, "feet"),
  32531. name: "Front (Full Tail)",
  32532. image: {
  32533. source: "./media/characters/saphinara/front-tail.svg",
  32534. extra: 748/547,
  32535. bottom: 66/814
  32536. }
  32537. },
  32538. },
  32539. [
  32540. {
  32541. name: "Normal",
  32542. height: math.unit(15 + 7/12, "feet"),
  32543. default: true
  32544. },
  32545. {
  32546. name: "Angry",
  32547. height: math.unit(30 + 6/12, "feet")
  32548. },
  32549. {
  32550. name: "Enraged",
  32551. height: math.unit(102 + 1/12, "feet")
  32552. },
  32553. ]
  32554. ))
  32555. characterMakers.push(() => makeCharacter(
  32556. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32557. {
  32558. front: {
  32559. height: math.unit(6 + 8/12, "feet"),
  32560. weight: math.unit(300, "lb"),
  32561. name: "Front",
  32562. image: {
  32563. source: "./media/characters/jrain/front.svg",
  32564. extra: 3039/2865,
  32565. bottom: 399/3438
  32566. }
  32567. },
  32568. back: {
  32569. height: math.unit(6 + 8/12, "feet"),
  32570. weight: math.unit(300, "lb"),
  32571. name: "Back",
  32572. image: {
  32573. source: "./media/characters/jrain/back.svg",
  32574. extra: 3089/2938,
  32575. bottom: 172/3261
  32576. }
  32577. },
  32578. head: {
  32579. height: math.unit(2.14, "feet"),
  32580. name: "Head",
  32581. image: {
  32582. source: "./media/characters/jrain/head.svg"
  32583. }
  32584. },
  32585. maw: {
  32586. height: math.unit(1.77, "feet"),
  32587. name: "Maw",
  32588. image: {
  32589. source: "./media/characters/jrain/maw.svg"
  32590. }
  32591. },
  32592. leftHand: {
  32593. height: math.unit(1.1, "feet"),
  32594. name: "Left Hand",
  32595. image: {
  32596. source: "./media/characters/jrain/left-hand.svg"
  32597. }
  32598. },
  32599. rightHand: {
  32600. height: math.unit(1.1, "feet"),
  32601. name: "Right Hand",
  32602. image: {
  32603. source: "./media/characters/jrain/right-hand.svg"
  32604. }
  32605. },
  32606. eye: {
  32607. height: math.unit(0.35, "feet"),
  32608. name: "Eye",
  32609. image: {
  32610. source: "./media/characters/jrain/eye.svg"
  32611. }
  32612. },
  32613. },
  32614. [
  32615. {
  32616. name: "Normal",
  32617. height: math.unit(6 + 8/12, "feet"),
  32618. default: true
  32619. },
  32620. {
  32621. name: "Casually Large",
  32622. height: math.unit(25, "feet")
  32623. },
  32624. {
  32625. name: "Giant",
  32626. height: math.unit(100, "feet")
  32627. },
  32628. {
  32629. name: "Kaiju",
  32630. height: math.unit(300, "feet")
  32631. },
  32632. ]
  32633. ))
  32634. characterMakers.push(() => makeCharacter(
  32635. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32636. {
  32637. dragon: {
  32638. height: math.unit(5, "meters"),
  32639. name: "Dragon",
  32640. image: {
  32641. source: "./media/characters/sabrina/dragon.svg",
  32642. extra: 3670 / 2365,
  32643. bottom: 333 / 4003
  32644. }
  32645. },
  32646. gryphon: {
  32647. height: math.unit(3, "meters"),
  32648. name: "Gryphon",
  32649. image: {
  32650. source: "./media/characters/sabrina/gryphon.svg",
  32651. extra: 1576 / 945,
  32652. bottom: 71 / 1647
  32653. }
  32654. },
  32655. snake: {
  32656. height: math.unit(12, "meters"),
  32657. name: "Snake",
  32658. image: {
  32659. source: "./media/characters/sabrina/snake.svg",
  32660. extra: 1758 / 1320,
  32661. bottom: 186 / 1944
  32662. }
  32663. },
  32664. collar: {
  32665. height: math.unit(1.86, "meters"),
  32666. name: "Collar",
  32667. image: {
  32668. source: "./media/characters/sabrina/collar.svg"
  32669. }
  32670. },
  32671. eye: {
  32672. height: math.unit(0.53, "meters"),
  32673. name: "Eye",
  32674. image: {
  32675. source: "./media/characters/sabrina/eye.svg"
  32676. }
  32677. },
  32678. foot: {
  32679. height: math.unit(1.86, "meters"),
  32680. name: "Foot",
  32681. image: {
  32682. source: "./media/characters/sabrina/foot.svg"
  32683. }
  32684. },
  32685. hand: {
  32686. height: math.unit(1.32, "meters"),
  32687. name: "Hand",
  32688. image: {
  32689. source: "./media/characters/sabrina/hand.svg"
  32690. }
  32691. },
  32692. head: {
  32693. height: math.unit(2.44, "meters"),
  32694. name: "Head",
  32695. image: {
  32696. source: "./media/characters/sabrina/head.svg"
  32697. }
  32698. },
  32699. headAngry: {
  32700. height: math.unit(2.44, "meters"),
  32701. name: "Head (Angry))",
  32702. image: {
  32703. source: "./media/characters/sabrina/head-angry.svg"
  32704. }
  32705. },
  32706. maw: {
  32707. height: math.unit(1.65, "meters"),
  32708. name: "Maw",
  32709. image: {
  32710. source: "./media/characters/sabrina/maw.svg"
  32711. }
  32712. },
  32713. spikes: {
  32714. height: math.unit(1.69, "meters"),
  32715. name: "Spikes",
  32716. image: {
  32717. source: "./media/characters/sabrina/spikes.svg"
  32718. }
  32719. },
  32720. stomach: {
  32721. height: math.unit(1.15, "meters"),
  32722. name: "Stomach",
  32723. image: {
  32724. source: "./media/characters/sabrina/stomach.svg"
  32725. }
  32726. },
  32727. tongue: {
  32728. height: math.unit(1.27, "meters"),
  32729. name: "Tongue",
  32730. image: {
  32731. source: "./media/characters/sabrina/tongue.svg"
  32732. }
  32733. },
  32734. wingDorsal: {
  32735. height: math.unit(4.85, "meters"),
  32736. name: "Wing (Dorsal)",
  32737. image: {
  32738. source: "./media/characters/sabrina/wing-dorsal.svg"
  32739. }
  32740. },
  32741. wingVentral: {
  32742. height: math.unit(4.85, "meters"),
  32743. name: "Wing (Ventral)",
  32744. image: {
  32745. source: "./media/characters/sabrina/wing-ventral.svg"
  32746. }
  32747. },
  32748. },
  32749. [
  32750. {
  32751. name: "Normal",
  32752. height: math.unit(5, "meters"),
  32753. default: true
  32754. },
  32755. ]
  32756. ))
  32757. characterMakers.push(() => makeCharacter(
  32758. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32759. {
  32760. frontMaid: {
  32761. height: math.unit(5 + 5/12, "feet"),
  32762. weight: math.unit(130, "lb"),
  32763. name: "Front (Maid)",
  32764. image: {
  32765. source: "./media/characters/midnight-tales/front-maid.svg",
  32766. extra: 489/454,
  32767. bottom: 61/550
  32768. }
  32769. },
  32770. frontFormal: {
  32771. height: math.unit(5 + 5/12, "feet"),
  32772. weight: math.unit(130, "lb"),
  32773. name: "Front (Formal)",
  32774. image: {
  32775. source: "./media/characters/midnight-tales/front-formal.svg",
  32776. extra: 489/454,
  32777. bottom: 61/550
  32778. }
  32779. },
  32780. back: {
  32781. height: math.unit(5 + 5/12, "feet"),
  32782. weight: math.unit(130, "lb"),
  32783. name: "Back",
  32784. image: {
  32785. source: "./media/characters/midnight-tales/back.svg",
  32786. extra: 498/456,
  32787. bottom: 33/531
  32788. }
  32789. },
  32790. frontBeast: {
  32791. height: math.unit(40, "feet"),
  32792. weight: math.unit(64000, "lb"),
  32793. name: "Front (Beast)",
  32794. image: {
  32795. source: "./media/characters/midnight-tales/front-beast.svg",
  32796. extra: 927/860,
  32797. bottom: 53/980
  32798. }
  32799. },
  32800. backBeast: {
  32801. height: math.unit(40, "feet"),
  32802. weight: math.unit(64000, "lb"),
  32803. name: "Back (Beast)",
  32804. image: {
  32805. source: "./media/characters/midnight-tales/back-beast.svg",
  32806. extra: 929/855,
  32807. bottom: 16/945
  32808. }
  32809. },
  32810. footBeast: {
  32811. height: math.unit(6.7, "feet"),
  32812. name: "Foot (Beast)",
  32813. image: {
  32814. source: "./media/characters/midnight-tales/foot-beast.svg"
  32815. }
  32816. },
  32817. headBeast: {
  32818. height: math.unit(8, "feet"),
  32819. name: "Head (Beast)",
  32820. image: {
  32821. source: "./media/characters/midnight-tales/head-beast.svg"
  32822. }
  32823. },
  32824. },
  32825. [
  32826. {
  32827. name: "Normal",
  32828. height: math.unit(5 + 5 / 12, "feet"),
  32829. default: true
  32830. },
  32831. {
  32832. name: "Macro",
  32833. height: math.unit(25, "feet")
  32834. },
  32835. ]
  32836. ))
  32837. characterMakers.push(() => makeCharacter(
  32838. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32839. {
  32840. front: {
  32841. height: math.unit(5 + 10/12, "feet"),
  32842. name: "Front",
  32843. image: {
  32844. source: "./media/characters/argon/front.svg",
  32845. extra: 2009/1935,
  32846. bottom: 118/2127
  32847. }
  32848. },
  32849. back: {
  32850. height: math.unit(5 + 10/12, "feet"),
  32851. name: "Back",
  32852. image: {
  32853. source: "./media/characters/argon/back.svg",
  32854. extra: 2047/1992,
  32855. bottom: 20/2067
  32856. }
  32857. },
  32858. frontDressed: {
  32859. height: math.unit(5 + 10/12, "feet"),
  32860. name: "Front (Dressed)",
  32861. image: {
  32862. source: "./media/characters/argon/front-dressed.svg",
  32863. extra: 2009/1935,
  32864. bottom: 118/2127
  32865. }
  32866. },
  32867. },
  32868. [
  32869. {
  32870. name: "Normal",
  32871. height: math.unit(5 + 10/12, "feet"),
  32872. default: true
  32873. },
  32874. ]
  32875. ))
  32876. characterMakers.push(() => makeCharacter(
  32877. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32878. {
  32879. front: {
  32880. height: math.unit(8 + 6/12, "feet"),
  32881. weight: math.unit(1150, "lb"),
  32882. name: "Front",
  32883. image: {
  32884. source: "./media/characters/kichi/front.svg",
  32885. extra: 1267/1164,
  32886. bottom: 61/1328
  32887. }
  32888. },
  32889. back: {
  32890. height: math.unit(8 + 6/12, "feet"),
  32891. weight: math.unit(1150, "lb"),
  32892. name: "Back",
  32893. image: {
  32894. source: "./media/characters/kichi/back.svg",
  32895. extra: 1273/1166,
  32896. bottom: 33/1306
  32897. }
  32898. },
  32899. },
  32900. [
  32901. {
  32902. name: "Normal",
  32903. height: math.unit(8 + 6/12, "feet"),
  32904. default: true
  32905. },
  32906. ]
  32907. ))
  32908. characterMakers.push(() => makeCharacter(
  32909. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32910. {
  32911. front: {
  32912. height: math.unit(6, "feet"),
  32913. weight: math.unit(210, "lb"),
  32914. name: "Front",
  32915. image: {
  32916. source: "./media/characters/manetel-greyscale/front.svg",
  32917. extra: 350/312,
  32918. bottom: 8/358
  32919. }
  32920. },
  32921. },
  32922. [
  32923. {
  32924. name: "Micro",
  32925. height: math.unit(2, "inches")
  32926. },
  32927. {
  32928. name: "Normal",
  32929. height: math.unit(6, "feet"),
  32930. default: true
  32931. },
  32932. {
  32933. name: "Minimacro",
  32934. height: math.unit(17, "feet")
  32935. },
  32936. {
  32937. name: "Macro",
  32938. height: math.unit(117, "feet")
  32939. },
  32940. ]
  32941. ))
  32942. characterMakers.push(() => makeCharacter(
  32943. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32944. {
  32945. side: {
  32946. height: math.unit(5 + 1/12, "feet"),
  32947. weight: math.unit(418, "lb"),
  32948. name: "Side",
  32949. image: {
  32950. source: "./media/characters/softpurr/side.svg",
  32951. extra: 1993/1945,
  32952. bottom: 134/2127
  32953. }
  32954. },
  32955. front: {
  32956. height: math.unit(5 + 1/12, "feet"),
  32957. weight: math.unit(418, "lb"),
  32958. name: "Front",
  32959. image: {
  32960. source: "./media/characters/softpurr/front.svg",
  32961. extra: 1950/1856,
  32962. bottom: 174/2124
  32963. }
  32964. },
  32965. paw: {
  32966. height: math.unit(1, "feet"),
  32967. name: "Paw",
  32968. image: {
  32969. source: "./media/characters/softpurr/paw.svg"
  32970. }
  32971. },
  32972. },
  32973. [
  32974. {
  32975. name: "Normal",
  32976. height: math.unit(5 + 1/12, "feet"),
  32977. default: true
  32978. },
  32979. ]
  32980. ))
  32981. characterMakers.push(() => makeCharacter(
  32982. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32983. {
  32984. front: {
  32985. height: math.unit(260, "meters"),
  32986. name: "Front",
  32987. image: {
  32988. source: "./media/characters/anahita/front.svg",
  32989. extra: 665/635,
  32990. bottom: 89/754
  32991. }
  32992. },
  32993. },
  32994. [
  32995. {
  32996. name: "Macro",
  32997. height: math.unit(260, "meters"),
  32998. default: true
  32999. },
  33000. ]
  33001. ))
  33002. characterMakers.push(() => makeCharacter(
  33003. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33004. {
  33005. front: {
  33006. height: math.unit(4 + 10/12, "feet"),
  33007. weight: math.unit(160, "lb"),
  33008. name: "Front",
  33009. image: {
  33010. source: "./media/characters/chip-mouse/front.svg",
  33011. extra: 3528/3408,
  33012. bottom: 0/3528
  33013. }
  33014. },
  33015. frontNsfw: {
  33016. height: math.unit(4 + 10/12, "feet"),
  33017. weight: math.unit(160, "lb"),
  33018. name: "Front (NSFW)",
  33019. image: {
  33020. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33021. extra: 3528/3408,
  33022. bottom: 0/3528
  33023. }
  33024. },
  33025. },
  33026. [
  33027. {
  33028. name: "Normal",
  33029. height: math.unit(4 + 10/12, "feet"),
  33030. default: true
  33031. },
  33032. ]
  33033. ))
  33034. characterMakers.push(() => makeCharacter(
  33035. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33036. {
  33037. side: {
  33038. height: math.unit(10, "feet"),
  33039. weight: math.unit(14000, "lb"),
  33040. name: "Side",
  33041. image: {
  33042. source: "./media/characters/kremm/side.svg",
  33043. extra: 1390/1053,
  33044. bottom: 90/1480
  33045. }
  33046. },
  33047. gut: {
  33048. height: math.unit(5.8, "feet"),
  33049. name: "Gut",
  33050. image: {
  33051. source: "./media/characters/kremm/gut.svg"
  33052. }
  33053. },
  33054. ass: {
  33055. height: math.unit(6.1, "feet"),
  33056. name: "Ass",
  33057. image: {
  33058. source: "./media/characters/kremm/ass.svg"
  33059. }
  33060. },
  33061. jaws: {
  33062. height: math.unit(2.2, "feet"),
  33063. name: "Jaws",
  33064. image: {
  33065. source: "./media/characters/kremm/jaws.svg"
  33066. }
  33067. },
  33068. dick: {
  33069. height: math.unit(4.26, "feet"),
  33070. name: "Dick",
  33071. image: {
  33072. source: "./media/characters/kremm/dick.svg"
  33073. }
  33074. },
  33075. },
  33076. [
  33077. {
  33078. name: "Normal",
  33079. height: math.unit(10, "feet"),
  33080. default: true
  33081. },
  33082. ]
  33083. ))
  33084. characterMakers.push(() => makeCharacter(
  33085. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33086. {
  33087. front: {
  33088. height: math.unit(30, "stories"),
  33089. name: "Front",
  33090. image: {
  33091. source: "./media/characters/kai/front.svg",
  33092. extra: 1892/1718,
  33093. bottom: 162/2054
  33094. }
  33095. },
  33096. },
  33097. [
  33098. {
  33099. name: "Macro",
  33100. height: math.unit(30, "stories"),
  33101. default: true
  33102. },
  33103. ]
  33104. ))
  33105. characterMakers.push(() => makeCharacter(
  33106. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33107. {
  33108. front: {
  33109. height: math.unit(6 + 4/12, "feet"),
  33110. weight: math.unit(145, "lb"),
  33111. name: "Front",
  33112. image: {
  33113. source: "./media/characters/sykes/front.svg",
  33114. extra: 1321 / 1187,
  33115. bottom: 66 / 1387
  33116. }
  33117. },
  33118. back: {
  33119. height: math.unit(6 + 4/12, "feet"),
  33120. weight: math.unit(145, "lb"),
  33121. name: "Back",
  33122. image: {
  33123. source: "./media/characters/sykes/back.svg",
  33124. extra: 1326/1181,
  33125. bottom: 31/1357
  33126. }
  33127. },
  33128. handBack: {
  33129. height: math.unit(0.9, "feet"),
  33130. name: "Hand (Back)",
  33131. image: {
  33132. source: "./media/characters/sykes/hand-back.svg"
  33133. }
  33134. },
  33135. handFront: {
  33136. height: math.unit(0.839, "feet"),
  33137. name: "Hand (Front)",
  33138. image: {
  33139. source: "./media/characters/sykes/hand-front.svg"
  33140. }
  33141. },
  33142. leftFoot: {
  33143. height: math.unit(1.2, "feet"),
  33144. name: "Foot (Left)",
  33145. image: {
  33146. source: "./media/characters/sykes/foot-left.svg"
  33147. }
  33148. },
  33149. rightFoot: {
  33150. height: math.unit(1.2, "feet"),
  33151. name: "Foot (Right)",
  33152. image: {
  33153. source: "./media/characters/sykes/foot-right.svg"
  33154. }
  33155. },
  33156. maw: {
  33157. height: math.unit(1.93, "feet"),
  33158. name: "Maw",
  33159. image: {
  33160. source: "./media/characters/sykes/maw.svg"
  33161. }
  33162. },
  33163. teeth: {
  33164. height: math.unit(0.51, "feet"),
  33165. name: "Teeth",
  33166. image: {
  33167. source: "./media/characters/sykes/teeth.svg"
  33168. }
  33169. },
  33170. tongue: {
  33171. height: math.unit(2.13, "feet"),
  33172. name: "Tongue",
  33173. image: {
  33174. source: "./media/characters/sykes/tongue.svg"
  33175. }
  33176. },
  33177. uvula: {
  33178. height: math.unit(0.16, "feet"),
  33179. name: "Uvula",
  33180. image: {
  33181. source: "./media/characters/sykes/uvula.svg"
  33182. }
  33183. },
  33184. collar: {
  33185. height: math.unit(0.287, "feet"),
  33186. name: "Collar",
  33187. image: {
  33188. source: "./media/characters/sykes/collar.svg"
  33189. }
  33190. },
  33191. },
  33192. [
  33193. {
  33194. name: "Shrunken",
  33195. height: math.unit(5, "inches")
  33196. },
  33197. {
  33198. name: "Normal",
  33199. height: math.unit(6 + 4 / 12, "feet"),
  33200. default: true
  33201. },
  33202. {
  33203. name: "Big",
  33204. height: math.unit(15, "feet")
  33205. },
  33206. ]
  33207. ))
  33208. characterMakers.push(() => makeCharacter(
  33209. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33210. {
  33211. front: {
  33212. height: math.unit(5 + 8/12, "feet"),
  33213. weight: math.unit(190, "lb"),
  33214. name: "Front",
  33215. image: {
  33216. source: "./media/characters/oven-otter/front.svg",
  33217. extra: 1809/1740,
  33218. bottom: 181/1990
  33219. }
  33220. },
  33221. back: {
  33222. height: math.unit(5 + 8/12, "feet"),
  33223. weight: math.unit(190, "lb"),
  33224. name: "Back",
  33225. image: {
  33226. source: "./media/characters/oven-otter/back.svg",
  33227. extra: 1709/1635,
  33228. bottom: 118/1827
  33229. }
  33230. },
  33231. hand: {
  33232. height: math.unit(1.07, "feet"),
  33233. name: "Hand",
  33234. image: {
  33235. source: "./media/characters/oven-otter/hand.svg"
  33236. }
  33237. },
  33238. beans: {
  33239. height: math.unit(1.74, "feet"),
  33240. name: "Beans",
  33241. image: {
  33242. source: "./media/characters/oven-otter/beans.svg"
  33243. }
  33244. },
  33245. },
  33246. [
  33247. {
  33248. name: "Micro",
  33249. height: math.unit(0.5, "inches")
  33250. },
  33251. {
  33252. name: "Normal",
  33253. height: math.unit(5 + 8/12, "feet"),
  33254. default: true
  33255. },
  33256. {
  33257. name: "Macro",
  33258. height: math.unit(250, "feet")
  33259. },
  33260. {
  33261. name: "Really High",
  33262. height: math.unit(420, "feet")
  33263. },
  33264. ]
  33265. ))
  33266. characterMakers.push(() => makeCharacter(
  33267. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33268. {
  33269. front: {
  33270. height: math.unit(5, "meters"),
  33271. weight: math.unit(292000000000000, "kg"),
  33272. name: "Front",
  33273. image: {
  33274. source: "./media/characters/devourer/front.svg",
  33275. extra: 1800/1733,
  33276. bottom: 211/2011
  33277. }
  33278. },
  33279. maw: {
  33280. height: math.unit(1.1, "meter"),
  33281. name: "Maw",
  33282. image: {
  33283. source: "./media/characters/devourer/maw.svg"
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "Small",
  33290. height: math.unit(3, "meters")
  33291. },
  33292. {
  33293. name: "Large",
  33294. height: math.unit(5, "meters"),
  33295. default: true
  33296. },
  33297. ]
  33298. ))
  33299. characterMakers.push(() => makeCharacter(
  33300. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33301. {
  33302. front: {
  33303. height: math.unit(6, "feet"),
  33304. weight: math.unit(400, "lb"),
  33305. name: "Front",
  33306. image: {
  33307. source: "./media/characters/ellarby/front.svg",
  33308. extra: 1909/1763,
  33309. bottom: 80/1989
  33310. }
  33311. },
  33312. back: {
  33313. height: math.unit(6, "feet"),
  33314. weight: math.unit(400, "lb"),
  33315. name: "Back",
  33316. image: {
  33317. source: "./media/characters/ellarby/back.svg",
  33318. extra: 1914/1784,
  33319. bottom: 172/2086
  33320. }
  33321. },
  33322. },
  33323. [
  33324. {
  33325. name: "Mischief",
  33326. height: math.unit(18, "inches")
  33327. },
  33328. {
  33329. name: "Trouble",
  33330. height: math.unit(12, "feet")
  33331. },
  33332. {
  33333. name: "Havoc",
  33334. height: math.unit(200, "feet"),
  33335. default: true
  33336. },
  33337. {
  33338. name: "Pandemonium",
  33339. height: math.unit(1, "mile")
  33340. },
  33341. {
  33342. name: "Catastrophe",
  33343. height: math.unit(100, "miles")
  33344. },
  33345. ]
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33349. {
  33350. front: {
  33351. height: math.unit(4.7, "meters"),
  33352. weight: math.unit(6500, "kg"),
  33353. name: "Front",
  33354. image: {
  33355. source: "./media/characters/vex/front.svg",
  33356. extra: 1288/1140,
  33357. bottom: 100/1388
  33358. }
  33359. },
  33360. },
  33361. [
  33362. {
  33363. name: "Normal",
  33364. height: math.unit(4.7, "meters"),
  33365. default: true
  33366. },
  33367. ]
  33368. ))
  33369. characterMakers.push(() => makeCharacter(
  33370. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33371. {
  33372. normal: {
  33373. height: math.unit(6, "feet"),
  33374. weight: math.unit(350, "lb"),
  33375. name: "Normal",
  33376. image: {
  33377. source: "./media/characters/teshy/normal.svg",
  33378. extra: 1795/1735,
  33379. bottom: 16/1811
  33380. }
  33381. },
  33382. monsterFront: {
  33383. height: math.unit(12, "feet"),
  33384. weight: math.unit(4700, "lb"),
  33385. name: "Monster (Front)",
  33386. image: {
  33387. source: "./media/characters/teshy/monster-front.svg",
  33388. extra: 2042/2034,
  33389. bottom: 128/2170
  33390. }
  33391. },
  33392. monsterSide: {
  33393. height: math.unit(12, "feet"),
  33394. weight: math.unit(4700, "lb"),
  33395. name: "Monster (Side)",
  33396. image: {
  33397. source: "./media/characters/teshy/monster-side.svg",
  33398. extra: 2067/2056,
  33399. bottom: 70/2137
  33400. }
  33401. },
  33402. monsterBack: {
  33403. height: math.unit(12, "feet"),
  33404. weight: math.unit(4700, "lb"),
  33405. name: "Monster (Back)",
  33406. image: {
  33407. source: "./media/characters/teshy/monster-back.svg",
  33408. extra: 1921/1914,
  33409. bottom: 171/2092
  33410. }
  33411. },
  33412. },
  33413. [
  33414. {
  33415. name: "Normal",
  33416. height: math.unit(6, "feet"),
  33417. default: true
  33418. },
  33419. ]
  33420. ))
  33421. characterMakers.push(() => makeCharacter(
  33422. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33423. {
  33424. front: {
  33425. height: math.unit(6, "feet"),
  33426. name: "Front",
  33427. image: {
  33428. source: "./media/characters/ramey/front.svg",
  33429. extra: 790/787,
  33430. bottom: 27/817
  33431. }
  33432. },
  33433. },
  33434. [
  33435. {
  33436. name: "Normal",
  33437. height: math.unit(6, "feet"),
  33438. default: true
  33439. },
  33440. ]
  33441. ))
  33442. characterMakers.push(() => makeCharacter(
  33443. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33444. {
  33445. front: {
  33446. height: math.unit(5 + 5/12, "feet"),
  33447. weight: math.unit(120, "lb"),
  33448. name: "Front",
  33449. image: {
  33450. source: "./media/characters/phirae/front.svg",
  33451. extra: 2491/2436,
  33452. bottom: 38/2529
  33453. }
  33454. },
  33455. },
  33456. [
  33457. {
  33458. name: "Normal",
  33459. height: math.unit(5 + 5/12, "feet"),
  33460. default: true
  33461. },
  33462. ]
  33463. ))
  33464. characterMakers.push(() => makeCharacter(
  33465. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33466. {
  33467. front: {
  33468. height: math.unit(6, "feet"),
  33469. weight: math.unit(150, "lb"),
  33470. name: "Front",
  33471. image: {
  33472. source: "./media/characters/stagglas/front.svg",
  33473. extra: 962/882,
  33474. bottom: 53/1015
  33475. }
  33476. },
  33477. },
  33478. [
  33479. {
  33480. name: "Normal",
  33481. height: math.unit(5 + 3/12, "feet"),
  33482. default: true
  33483. },
  33484. ]
  33485. ))
  33486. characterMakers.push(() => makeCharacter(
  33487. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33488. {
  33489. front: {
  33490. height: math.unit(5 + 4/12, "feet"),
  33491. weight: math.unit(145, "lb"),
  33492. name: "Front",
  33493. image: {
  33494. source: "./media/characters/starra/front.svg",
  33495. extra: 1790/1691,
  33496. bottom: 91/1881
  33497. }
  33498. },
  33499. },
  33500. [
  33501. {
  33502. name: "Normal",
  33503. height: math.unit(5 + 4/12, "feet"),
  33504. default: true
  33505. },
  33506. ]
  33507. ))
  33508. characterMakers.push(() => makeCharacter(
  33509. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33510. {
  33511. front: {
  33512. height: math.unit(2.2, "meters"),
  33513. name: "Front",
  33514. image: {
  33515. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33516. extra: 1194/1005,
  33517. bottom: 25/1219
  33518. }
  33519. },
  33520. },
  33521. [
  33522. {
  33523. name: "Normal",
  33524. height: math.unit(2.2, "meters"),
  33525. default: true
  33526. },
  33527. ]
  33528. ))
  33529. characterMakers.push(() => makeCharacter(
  33530. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33531. {
  33532. side: {
  33533. height: math.unit(8 + 2/12, "feet"),
  33534. weight: math.unit(1240, "lb"),
  33535. name: "Side",
  33536. image: {
  33537. source: "./media/characters/mika-valentine/side.svg",
  33538. extra: 2670/2501,
  33539. bottom: 250/2920
  33540. }
  33541. },
  33542. },
  33543. [
  33544. {
  33545. name: "Normal",
  33546. height: math.unit(8 + 2/12, "feet"),
  33547. default: true
  33548. },
  33549. ]
  33550. ))
  33551. characterMakers.push(() => makeCharacter(
  33552. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33553. {
  33554. front: {
  33555. height: math.unit(7 + 2/12, "feet"),
  33556. name: "Front",
  33557. image: {
  33558. source: "./media/characters/xoltol/front.svg",
  33559. extra: 2212/2124,
  33560. bottom: 84/2296
  33561. }
  33562. },
  33563. side: {
  33564. height: math.unit(7 + 2/12, "feet"),
  33565. name: "Side",
  33566. image: {
  33567. source: "./media/characters/xoltol/side.svg",
  33568. extra: 2273/2197,
  33569. bottom: 26/2299
  33570. }
  33571. },
  33572. hand: {
  33573. height: math.unit(2.5, "feet"),
  33574. name: "Hand",
  33575. image: {
  33576. source: "./media/characters/xoltol/hand.svg"
  33577. }
  33578. },
  33579. },
  33580. [
  33581. {
  33582. name: "Small-ish",
  33583. height: math.unit(5 + 11/12, "feet")
  33584. },
  33585. {
  33586. name: "Normal",
  33587. height: math.unit(7 + 2/12, "feet")
  33588. },
  33589. {
  33590. name: "\"Macro\"",
  33591. height: math.unit(14 + 9/12, "feet"),
  33592. default: true
  33593. },
  33594. {
  33595. name: "Alternate Height",
  33596. height: math.unit(20, "feet")
  33597. },
  33598. {
  33599. name: "Actually Macro",
  33600. height: math.unit(100, "feet")
  33601. },
  33602. ]
  33603. ))
  33604. characterMakers.push(() => makeCharacter(
  33605. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33606. {
  33607. front: {
  33608. height: math.unit(5 + 2/12, "feet"),
  33609. name: "Front",
  33610. image: {
  33611. source: "./media/characters/kotetsu-redwood/front.svg",
  33612. extra: 1053/942,
  33613. bottom: 60/1113
  33614. }
  33615. },
  33616. },
  33617. [
  33618. {
  33619. name: "Normal",
  33620. height: math.unit(5 + 2/12, "feet"),
  33621. default: true
  33622. },
  33623. ]
  33624. ))
  33625. characterMakers.push(() => makeCharacter(
  33626. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33627. {
  33628. front: {
  33629. height: math.unit(2.4, "meters"),
  33630. weight: math.unit(125, "kg"),
  33631. name: "Front",
  33632. image: {
  33633. source: "./media/characters/lilith/front.svg",
  33634. extra: 1590/1513,
  33635. bottom: 203/1793
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Humanoid",
  33642. height: math.unit(2.4, "meters")
  33643. },
  33644. {
  33645. name: "Normal",
  33646. height: math.unit(6, "meters"),
  33647. default: true
  33648. },
  33649. {
  33650. name: "Largest",
  33651. height: math.unit(55, "meters")
  33652. },
  33653. ]
  33654. ))
  33655. characterMakers.push(() => makeCharacter(
  33656. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33657. {
  33658. front: {
  33659. height: math.unit(8 + 4/12, "feet"),
  33660. weight: math.unit(535, "lb"),
  33661. name: "Front",
  33662. image: {
  33663. source: "./media/characters/beh'kah-bolger/front.svg",
  33664. extra: 1660/1603,
  33665. bottom: 37/1697
  33666. }
  33667. },
  33668. },
  33669. [
  33670. {
  33671. name: "Normal",
  33672. height: math.unit(8 + 4/12, "feet"),
  33673. default: true
  33674. },
  33675. {
  33676. name: "Kaiju",
  33677. height: math.unit(250, "feet")
  33678. },
  33679. {
  33680. name: "Still Growing",
  33681. height: math.unit(10, "miles")
  33682. },
  33683. {
  33684. name: "Continental",
  33685. height: math.unit(5000, "miles")
  33686. },
  33687. {
  33688. name: "Final Form",
  33689. height: math.unit(2500000, "miles")
  33690. },
  33691. ]
  33692. ))
  33693. characterMakers.push(() => makeCharacter(
  33694. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33695. {
  33696. front: {
  33697. height: math.unit(7 + 2/12, "feet"),
  33698. weight: math.unit(230, "kg"),
  33699. name: "Front",
  33700. image: {
  33701. source: "./media/characters/tatyana-milewska/front.svg",
  33702. extra: 1199/1150,
  33703. bottom: 86/1285
  33704. }
  33705. },
  33706. },
  33707. [
  33708. {
  33709. name: "Normal",
  33710. height: math.unit(7 + 2/12, "feet"),
  33711. default: true
  33712. },
  33713. {
  33714. name: "Big",
  33715. height: math.unit(12, "feet")
  33716. },
  33717. {
  33718. name: "Minimacro",
  33719. height: math.unit(20, "feet")
  33720. },
  33721. {
  33722. name: "Macro",
  33723. height: math.unit(120, "feet")
  33724. },
  33725. ]
  33726. ))
  33727. characterMakers.push(() => makeCharacter(
  33728. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33729. {
  33730. front: {
  33731. height: math.unit(7 + 8/12, "feet"),
  33732. weight: math.unit(152, "kg"),
  33733. name: "Front",
  33734. image: {
  33735. source: "./media/characters/helen-arri/front.svg",
  33736. extra: 440/423,
  33737. bottom: 14/454
  33738. }
  33739. },
  33740. back: {
  33741. height: math.unit(7 + 8/12, "feet"),
  33742. weight: math.unit(152, "kg"),
  33743. name: "Back",
  33744. image: {
  33745. source: "./media/characters/helen-arri/back.svg",
  33746. extra: 443/426,
  33747. bottom: 8/451
  33748. }
  33749. },
  33750. },
  33751. [
  33752. {
  33753. name: "Normal",
  33754. height: math.unit(7 + 8/12, "feet"),
  33755. default: true
  33756. },
  33757. {
  33758. name: "Big",
  33759. height: math.unit(14, "feet")
  33760. },
  33761. {
  33762. name: "Minimacro",
  33763. height: math.unit(24, "feet")
  33764. },
  33765. {
  33766. name: "Macro",
  33767. height: math.unit(140, "feet")
  33768. },
  33769. ]
  33770. ))
  33771. characterMakers.push(() => makeCharacter(
  33772. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33773. {
  33774. front: {
  33775. height: math.unit(6, "meters"),
  33776. name: "Front",
  33777. image: {
  33778. source: "./media/characters/ehanu-rehu/front.svg",
  33779. extra: 1800/1800,
  33780. bottom: 59/1859
  33781. }
  33782. },
  33783. },
  33784. [
  33785. {
  33786. name: "Normal",
  33787. height: math.unit(6, "meters"),
  33788. default: true
  33789. },
  33790. ]
  33791. ))
  33792. characterMakers.push(() => makeCharacter(
  33793. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33794. {
  33795. front: {
  33796. height: math.unit(7 + 3/12, "feet"),
  33797. name: "Front",
  33798. image: {
  33799. source: "./media/characters/renholder/front.svg",
  33800. extra: 3096/2960,
  33801. bottom: 250/3346
  33802. }
  33803. },
  33804. },
  33805. [
  33806. {
  33807. name: "Normal Bat",
  33808. height: math.unit(7 + 3/12, "feet"),
  33809. default: true
  33810. },
  33811. {
  33812. name: "Slightly Tall Bat",
  33813. height: math.unit(100, "feet")
  33814. },
  33815. {
  33816. name: "Big Bat",
  33817. height: math.unit(1000, "feet")
  33818. },
  33819. {
  33820. name: "City-Sized Bat",
  33821. height: math.unit(200000, "feet")
  33822. },
  33823. {
  33824. name: "Bigger Bat",
  33825. height: math.unit(10000, "miles")
  33826. },
  33827. {
  33828. name: "Solar Sized Bat",
  33829. height: math.unit(100, "AU")
  33830. },
  33831. {
  33832. name: "Galactic Bat",
  33833. height: math.unit(200000, "lightyears")
  33834. },
  33835. {
  33836. name: "Universally Known Bat",
  33837. height: math.unit(1, "universe")
  33838. },
  33839. ]
  33840. ))
  33841. characterMakers.push(() => makeCharacter(
  33842. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33843. {
  33844. front: {
  33845. height: math.unit(6 + 11/12, "feet"),
  33846. weight: math.unit(250, "lb"),
  33847. name: "Front",
  33848. image: {
  33849. source: "./media/characters/cookiecat/front.svg",
  33850. extra: 893/827,
  33851. bottom: 14/907
  33852. }
  33853. },
  33854. },
  33855. [
  33856. {
  33857. name: "Micro",
  33858. height: math.unit(3, "inches")
  33859. },
  33860. {
  33861. name: "Normal",
  33862. height: math.unit(6 + 11/12, "feet"),
  33863. default: true
  33864. },
  33865. {
  33866. name: "Macro",
  33867. height: math.unit(100, "feet")
  33868. },
  33869. {
  33870. name: "Macro+",
  33871. height: math.unit(404, "feet")
  33872. },
  33873. {
  33874. name: "Megamacro",
  33875. height: math.unit(165, "miles")
  33876. },
  33877. {
  33878. name: "Planetary",
  33879. height: math.unit(4600, "miles")
  33880. },
  33881. ]
  33882. ))
  33883. characterMakers.push(() => makeCharacter(
  33884. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33885. {
  33886. front: {
  33887. height: math.unit(10 + 3/12, "feet"),
  33888. weight: math.unit(1500, "lb"),
  33889. name: "Front",
  33890. image: {
  33891. source: "./media/characters/tux-kusanagi/front.svg",
  33892. extra: 944/840,
  33893. bottom: 39/983
  33894. }
  33895. },
  33896. back: {
  33897. height: math.unit(10 + 3/12, "feet"),
  33898. weight: math.unit(1500, "lb"),
  33899. name: "Back",
  33900. image: {
  33901. source: "./media/characters/tux-kusanagi/back.svg",
  33902. extra: 941/842,
  33903. bottom: 28/969
  33904. }
  33905. },
  33906. rump: {
  33907. height: math.unit(5.25, "feet"),
  33908. name: "Rump",
  33909. image: {
  33910. source: "./media/characters/tux-kusanagi/rump.svg"
  33911. }
  33912. },
  33913. beak: {
  33914. height: math.unit(1.54, "feet"),
  33915. name: "Beak",
  33916. image: {
  33917. source: "./media/characters/tux-kusanagi/beak.svg"
  33918. }
  33919. },
  33920. },
  33921. [
  33922. {
  33923. name: "Normal",
  33924. height: math.unit(10 + 3/12, "feet"),
  33925. default: true
  33926. },
  33927. ]
  33928. ))
  33929. characterMakers.push(() => makeCharacter(
  33930. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33931. {
  33932. front: {
  33933. height: math.unit(58, "feet"),
  33934. weight: math.unit(200, "tons"),
  33935. name: "Front",
  33936. image: {
  33937. source: "./media/characters/uzarmazari/front.svg",
  33938. extra: 1575/1455,
  33939. bottom: 152/1727
  33940. }
  33941. },
  33942. back: {
  33943. height: math.unit(58, "feet"),
  33944. weight: math.unit(200, "tons"),
  33945. name: "Back",
  33946. image: {
  33947. source: "./media/characters/uzarmazari/back.svg",
  33948. extra: 1585/1510,
  33949. bottom: 157/1742
  33950. }
  33951. },
  33952. head: {
  33953. height: math.unit(26, "feet"),
  33954. name: "Head",
  33955. image: {
  33956. source: "./media/characters/uzarmazari/head.svg"
  33957. }
  33958. },
  33959. },
  33960. [
  33961. {
  33962. name: "Normal",
  33963. height: math.unit(58, "feet"),
  33964. default: true
  33965. },
  33966. ]
  33967. ))
  33968. characterMakers.push(() => makeCharacter(
  33969. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33970. {
  33971. side: {
  33972. height: math.unit(15, "feet"),
  33973. name: "Side",
  33974. image: {
  33975. source: "./media/characters/akitu/side.svg",
  33976. extra: 1421/1321,
  33977. bottom: 157/1578
  33978. }
  33979. },
  33980. front: {
  33981. height: math.unit(15, "feet"),
  33982. name: "Front",
  33983. image: {
  33984. source: "./media/characters/akitu/front.svg",
  33985. extra: 1435/1326,
  33986. bottom: 232/1667
  33987. }
  33988. },
  33989. },
  33990. [
  33991. {
  33992. name: "Normal",
  33993. height: math.unit(15, "feet"),
  33994. default: true
  33995. },
  33996. ]
  33997. ))
  33998. characterMakers.push(() => makeCharacter(
  33999. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34000. {
  34001. front: {
  34002. height: math.unit(10 + 8/12, "feet"),
  34003. name: "Front",
  34004. image: {
  34005. source: "./media/characters/azalie-croixland/front.svg",
  34006. extra: 1972/1856,
  34007. bottom: 31/2003
  34008. }
  34009. },
  34010. },
  34011. [
  34012. {
  34013. name: "Original Height",
  34014. height: math.unit(5 + 4/12, "feet")
  34015. },
  34016. {
  34017. name: "Normal Height",
  34018. height: math.unit(10 + 8/12, "feet"),
  34019. default: true
  34020. },
  34021. ]
  34022. ))
  34023. characterMakers.push(() => makeCharacter(
  34024. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34025. {
  34026. side: {
  34027. height: math.unit(7 + 1/12, "feet"),
  34028. weight: math.unit(245, "lb"),
  34029. name: "Side",
  34030. image: {
  34031. source: "./media/characters/kavus-kazian/side.svg",
  34032. extra: 349/342,
  34033. bottom: 15/364
  34034. }
  34035. },
  34036. },
  34037. [
  34038. {
  34039. name: "Normal",
  34040. height: math.unit(7 + 1/12, "feet"),
  34041. default: true
  34042. },
  34043. ]
  34044. ))
  34045. characterMakers.push(() => makeCharacter(
  34046. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34047. {
  34048. normal: {
  34049. height: math.unit(5 + 11/12, "feet"),
  34050. name: "Normal",
  34051. image: {
  34052. source: "./media/characters/moonlight-rose/normal.svg",
  34053. extra: 1979/1835,
  34054. bottom: 14/1993
  34055. }
  34056. },
  34057. demon: {
  34058. height: math.unit(5, "km"),
  34059. name: "Demon",
  34060. image: {
  34061. source: "./media/characters/moonlight-rose/demon.svg",
  34062. extra: 986/916,
  34063. bottom: 28/1014
  34064. }
  34065. },
  34066. },
  34067. [
  34068. {
  34069. name: "\"Natural\" height",
  34070. height: math.unit(5 + 11/12, "feet")
  34071. },
  34072. {
  34073. name: "Comfortable Size",
  34074. height: math.unit(40, "meters")
  34075. },
  34076. {
  34077. name: "Common Size",
  34078. height: math.unit(50, "km"),
  34079. default: true
  34080. },
  34081. {
  34082. name: "Demonic",
  34083. height: math.unit(1.24415e+21, "meters")
  34084. },
  34085. ]
  34086. ))
  34087. characterMakers.push(() => makeCharacter(
  34088. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34089. {
  34090. front: {
  34091. height: math.unit(16, "feet"),
  34092. weight: math.unit(610, "kg"),
  34093. name: "Front",
  34094. image: {
  34095. source: "./media/characters/huckle/front.svg",
  34096. extra: 1731/1625,
  34097. bottom: 33/1764
  34098. }
  34099. },
  34100. back: {
  34101. height: math.unit(16, "feet"),
  34102. weight: math.unit(610, "kg"),
  34103. name: "Back",
  34104. image: {
  34105. source: "./media/characters/huckle/back.svg",
  34106. extra: 1738/1651,
  34107. bottom: 37/1775
  34108. }
  34109. },
  34110. laughing: {
  34111. height: math.unit(3.75, "feet"),
  34112. name: "Laughing",
  34113. image: {
  34114. source: "./media/characters/huckle/laughing.svg"
  34115. }
  34116. },
  34117. angry: {
  34118. height: math.unit(4.15, "feet"),
  34119. name: "Angry",
  34120. image: {
  34121. source: "./media/characters/huckle/angry.svg"
  34122. }
  34123. },
  34124. },
  34125. [
  34126. {
  34127. name: "Normal",
  34128. height: math.unit(16, "feet"),
  34129. default: true
  34130. },
  34131. {
  34132. name: "Mini Macro",
  34133. height: math.unit(463, "feet")
  34134. },
  34135. {
  34136. name: "Macro",
  34137. height: math.unit(1680, "meters")
  34138. },
  34139. {
  34140. name: "Mega Macro",
  34141. height: math.unit(175, "km")
  34142. },
  34143. {
  34144. name: "Terra Macro",
  34145. height: math.unit(32, "gigameters")
  34146. },
  34147. {
  34148. name: "Multiverse+",
  34149. height: math.unit(2.56e23, "yottameters")
  34150. },
  34151. ]
  34152. ))
  34153. characterMakers.push(() => makeCharacter(
  34154. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34155. {
  34156. front: {
  34157. height: math.unit(6 + 9/12, "feet"),
  34158. weight: math.unit(280, "lb"),
  34159. name: "Front",
  34160. image: {
  34161. source: "./media/characters/candy/front.svg",
  34162. extra: 234/217,
  34163. bottom: 11/245
  34164. }
  34165. },
  34166. },
  34167. [
  34168. {
  34169. name: "Really Small",
  34170. height: math.unit(0.1, "nm")
  34171. },
  34172. {
  34173. name: "Micro",
  34174. height: math.unit(2, "inches")
  34175. },
  34176. {
  34177. name: "Normal",
  34178. height: math.unit(6 + 9/12, "feet"),
  34179. default: true
  34180. },
  34181. {
  34182. name: "Small Macro",
  34183. height: math.unit(69, "feet")
  34184. },
  34185. {
  34186. name: "Macro",
  34187. height: math.unit(160, "feet")
  34188. },
  34189. {
  34190. name: "Megamacro",
  34191. height: math.unit(22000, "miles")
  34192. },
  34193. {
  34194. name: "Gigamacro",
  34195. height: math.unit(50000, "miles")
  34196. },
  34197. ]
  34198. ))
  34199. characterMakers.push(() => makeCharacter(
  34200. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34201. {
  34202. front: {
  34203. height: math.unit(4, "feet"),
  34204. weight: math.unit(90, "lb"),
  34205. name: "Front",
  34206. image: {
  34207. source: "./media/characters/joey-mcdonald/front.svg",
  34208. extra: 1059/852,
  34209. bottom: 33/1092
  34210. }
  34211. },
  34212. back: {
  34213. height: math.unit(4, "feet"),
  34214. weight: math.unit(90, "lb"),
  34215. name: "Back",
  34216. image: {
  34217. source: "./media/characters/joey-mcdonald/back.svg",
  34218. extra: 1077/879,
  34219. bottom: 5/1082
  34220. }
  34221. },
  34222. },
  34223. [
  34224. {
  34225. name: "Normal",
  34226. height: math.unit(4, "feet"),
  34227. default: true
  34228. },
  34229. ]
  34230. ))
  34231. characterMakers.push(() => makeCharacter(
  34232. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34233. {
  34234. front: {
  34235. height: math.unit(12 + 6/12, "feet"),
  34236. name: "Front",
  34237. image: {
  34238. source: "./media/characters/kass-lockheed/front.svg",
  34239. extra: 354/343,
  34240. bottom: 9/363
  34241. }
  34242. },
  34243. back: {
  34244. height: math.unit(12 + 6/12, "feet"),
  34245. name: "Back",
  34246. image: {
  34247. source: "./media/characters/kass-lockheed/back.svg",
  34248. extra: 364/352,
  34249. bottom: 3/367
  34250. }
  34251. },
  34252. dick: {
  34253. height: math.unit(3.12, "feet"),
  34254. name: "Dick",
  34255. image: {
  34256. source: "./media/characters/kass-lockheed/dick.svg"
  34257. }
  34258. },
  34259. head: {
  34260. height: math.unit(2.6, "feet"),
  34261. name: "Head",
  34262. image: {
  34263. source: "./media/characters/kass-lockheed/head.svg"
  34264. }
  34265. },
  34266. bleh: {
  34267. height: math.unit(2.85, "feet"),
  34268. name: "Bleh",
  34269. image: {
  34270. source: "./media/characters/kass-lockheed/bleh.svg"
  34271. }
  34272. },
  34273. smug: {
  34274. height: math.unit(2.85, "feet"),
  34275. name: "Smug",
  34276. image: {
  34277. source: "./media/characters/kass-lockheed/smug.svg"
  34278. }
  34279. },
  34280. },
  34281. [
  34282. {
  34283. name: "Normal",
  34284. height: math.unit(12 + 6/12, "feet"),
  34285. default: true
  34286. },
  34287. ]
  34288. ))
  34289. characterMakers.push(() => makeCharacter(
  34290. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34291. {
  34292. front: {
  34293. height: math.unit(6 + 2/12, "feet"),
  34294. name: "Front",
  34295. image: {
  34296. source: "./media/characters/taylor/front.svg",
  34297. extra: 639/495,
  34298. bottom: 12/651
  34299. }
  34300. },
  34301. },
  34302. [
  34303. {
  34304. name: "Normal",
  34305. height: math.unit(6 + 2/12, "feet"),
  34306. default: true
  34307. },
  34308. {
  34309. name: "Big",
  34310. height: math.unit(15, "feet")
  34311. },
  34312. {
  34313. name: "Lorg",
  34314. height: math.unit(80, "feet")
  34315. },
  34316. {
  34317. name: "Too Lorg",
  34318. height: math.unit(120, "feet")
  34319. },
  34320. ]
  34321. ))
  34322. characterMakers.push(() => makeCharacter(
  34323. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34324. {
  34325. front: {
  34326. height: math.unit(15, "feet"),
  34327. name: "Front",
  34328. image: {
  34329. source: "./media/characters/kaizer/front.svg",
  34330. extra: 1612/1436,
  34331. bottom: 43/1655
  34332. }
  34333. },
  34334. },
  34335. [
  34336. {
  34337. name: "Normal",
  34338. height: math.unit(15, "feet"),
  34339. default: true
  34340. },
  34341. ]
  34342. ))
  34343. characterMakers.push(() => makeCharacter(
  34344. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34345. {
  34346. front: {
  34347. height: math.unit(2, "feet"),
  34348. weight: math.unit(30, "lb"),
  34349. name: "Front",
  34350. image: {
  34351. source: "./media/characters/sandy/front.svg",
  34352. extra: 1439/1307,
  34353. bottom: 194/1633
  34354. }
  34355. },
  34356. },
  34357. [
  34358. {
  34359. name: "Normal",
  34360. height: math.unit(2, "feet"),
  34361. default: true
  34362. },
  34363. ]
  34364. ))
  34365. characterMakers.push(() => makeCharacter(
  34366. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34367. {
  34368. front: {
  34369. height: math.unit(3, "feet"),
  34370. name: "Front",
  34371. image: {
  34372. source: "./media/characters/mellvi/front.svg",
  34373. extra: 1831/1630,
  34374. bottom: 58/1889
  34375. }
  34376. },
  34377. },
  34378. [
  34379. {
  34380. name: "Normal",
  34381. height: math.unit(3, "feet"),
  34382. default: true
  34383. },
  34384. ]
  34385. ))
  34386. characterMakers.push(() => makeCharacter(
  34387. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34388. {
  34389. front: {
  34390. height: math.unit(5 + 11/12, "feet"),
  34391. weight: math.unit(200, "lb"),
  34392. name: "Front",
  34393. image: {
  34394. source: "./media/characters/shirou/front.svg",
  34395. extra: 2491/2383,
  34396. bottom: 189/2680
  34397. }
  34398. },
  34399. back: {
  34400. height: math.unit(5 + 11/12, "feet"),
  34401. weight: math.unit(200, "lb"),
  34402. name: "Back",
  34403. image: {
  34404. source: "./media/characters/shirou/back.svg",
  34405. extra: 2554/2450,
  34406. bottom: 76/2630
  34407. }
  34408. },
  34409. },
  34410. [
  34411. {
  34412. name: "Normal",
  34413. height: math.unit(5 + 11/12, "feet"),
  34414. default: true
  34415. },
  34416. ]
  34417. ))
  34418. characterMakers.push(() => makeCharacter(
  34419. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34420. {
  34421. front: {
  34422. height: math.unit(6 + 3/12, "feet"),
  34423. weight: math.unit(177, "lb"),
  34424. name: "Front",
  34425. image: {
  34426. source: "./media/characters/noryu/front.svg",
  34427. extra: 973/885,
  34428. bottom: 10/983
  34429. }
  34430. },
  34431. },
  34432. [
  34433. {
  34434. name: "Normal",
  34435. height: math.unit(6 + 3/12, "feet"),
  34436. default: true
  34437. },
  34438. ]
  34439. ))
  34440. characterMakers.push(() => makeCharacter(
  34441. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34442. {
  34443. front: {
  34444. height: math.unit(5 + 6/12, "feet"),
  34445. weight: math.unit(170, "lb"),
  34446. name: "Front",
  34447. image: {
  34448. source: "./media/characters/mevolas-rubenido/front.svg",
  34449. extra: 2109/1901,
  34450. bottom: 96/2205
  34451. }
  34452. },
  34453. },
  34454. [
  34455. {
  34456. name: "Normal",
  34457. height: math.unit(5 + 6/12, "feet"),
  34458. default: true
  34459. },
  34460. ]
  34461. ))
  34462. characterMakers.push(() => makeCharacter(
  34463. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34464. {
  34465. front: {
  34466. height: math.unit(100, "feet"),
  34467. name: "Front",
  34468. image: {
  34469. source: "./media/characters/dee/front.svg",
  34470. extra: 2153/2036,
  34471. bottom: 59/2212
  34472. }
  34473. },
  34474. back: {
  34475. height: math.unit(100, "feet"),
  34476. name: "Back",
  34477. image: {
  34478. source: "./media/characters/dee/back.svg",
  34479. extra: 2183/2058,
  34480. bottom: 75/2258
  34481. }
  34482. },
  34483. foot: {
  34484. height: math.unit(19.43, "feet"),
  34485. name: "Foot",
  34486. image: {
  34487. source: "./media/characters/dee/foot.svg"
  34488. }
  34489. },
  34490. hoof: {
  34491. height: math.unit(20.6, "feet"),
  34492. name: "Hoof",
  34493. image: {
  34494. source: "./media/characters/dee/hoof.svg"
  34495. }
  34496. },
  34497. },
  34498. [
  34499. {
  34500. name: "Macro",
  34501. height: math.unit(100, "feet"),
  34502. default: true
  34503. },
  34504. ]
  34505. ))
  34506. characterMakers.push(() => makeCharacter(
  34507. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34508. {
  34509. front: {
  34510. height: math.unit(5 + 6/12, "feet"),
  34511. name: "Front",
  34512. image: {
  34513. source: "./media/characters/teh/front.svg",
  34514. extra: 1002/847,
  34515. bottom: 62/1064
  34516. }
  34517. },
  34518. },
  34519. [
  34520. {
  34521. name: "Normal",
  34522. height: math.unit(5 + 6/12, "feet"),
  34523. default: true
  34524. },
  34525. ]
  34526. ))
  34527. characterMakers.push(() => makeCharacter(
  34528. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34529. {
  34530. side: {
  34531. height: math.unit(6 + 1/12, "feet"),
  34532. weight: math.unit(204, "lb"),
  34533. name: "Side",
  34534. image: {
  34535. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34536. extra: 974/775,
  34537. bottom: 169/1143
  34538. }
  34539. },
  34540. sitting: {
  34541. height: math.unit(6 + 2/12, "feet"),
  34542. weight: math.unit(204, "lb"),
  34543. name: "Sitting",
  34544. image: {
  34545. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34546. extra: 1175/964,
  34547. bottom: 378/1553
  34548. }
  34549. },
  34550. },
  34551. [
  34552. {
  34553. name: "Normal",
  34554. height: math.unit(6 + 1/12, "feet"),
  34555. default: true
  34556. },
  34557. ]
  34558. ))
  34559. characterMakers.push(() => makeCharacter(
  34560. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34561. {
  34562. front: {
  34563. height: math.unit(6, "inches"),
  34564. name: "Front",
  34565. image: {
  34566. source: "./media/characters/tululi/front.svg",
  34567. extra: 1997/1876,
  34568. bottom: 20/2017
  34569. }
  34570. },
  34571. },
  34572. [
  34573. {
  34574. name: "Normal",
  34575. height: math.unit(6, "inches"),
  34576. default: true
  34577. },
  34578. ]
  34579. ))
  34580. characterMakers.push(() => makeCharacter(
  34581. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34582. {
  34583. front: {
  34584. height: math.unit(4 + 1/12, "feet"),
  34585. name: "Front",
  34586. image: {
  34587. source: "./media/characters/star/front.svg",
  34588. extra: 1493/1189,
  34589. bottom: 48/1541
  34590. }
  34591. },
  34592. },
  34593. [
  34594. {
  34595. name: "Normal",
  34596. height: math.unit(4 + 1/12, "feet"),
  34597. default: true
  34598. },
  34599. ]
  34600. ))
  34601. characterMakers.push(() => makeCharacter(
  34602. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34603. {
  34604. front: {
  34605. height: math.unit(6 + 3/12, "feet"),
  34606. name: "Front",
  34607. image: {
  34608. source: "./media/characters/comet/front.svg",
  34609. extra: 1681/1462,
  34610. bottom: 26/1707
  34611. }
  34612. },
  34613. },
  34614. [
  34615. {
  34616. name: "Normal",
  34617. height: math.unit(6 + 3/12, "feet"),
  34618. default: true
  34619. },
  34620. ]
  34621. ))
  34622. characterMakers.push(() => makeCharacter(
  34623. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34624. {
  34625. front: {
  34626. height: math.unit(950, "feet"),
  34627. name: "Front",
  34628. image: {
  34629. source: "./media/characters/vortex/front.svg",
  34630. extra: 1497/1434,
  34631. bottom: 56/1553
  34632. }
  34633. },
  34634. maw: {
  34635. height: math.unit(285, "feet"),
  34636. name: "Maw",
  34637. image: {
  34638. source: "./media/characters/vortex/maw.svg"
  34639. }
  34640. },
  34641. },
  34642. [
  34643. {
  34644. name: "Macro",
  34645. height: math.unit(950, "feet"),
  34646. default: true
  34647. },
  34648. ]
  34649. ))
  34650. characterMakers.push(() => makeCharacter(
  34651. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34652. {
  34653. front: {
  34654. height: math.unit(600, "feet"),
  34655. weight: math.unit(0.02, "grams"),
  34656. name: "Front",
  34657. image: {
  34658. source: "./media/characters/doodle/front.svg",
  34659. extra: 1578/1413,
  34660. bottom: 37/1615
  34661. }
  34662. },
  34663. },
  34664. [
  34665. {
  34666. name: "Macro",
  34667. height: math.unit(600, "feet"),
  34668. default: true
  34669. },
  34670. ]
  34671. ))
  34672. characterMakers.push(() => makeCharacter(
  34673. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34674. {
  34675. front: {
  34676. height: math.unit(6 + 6/12, "feet"),
  34677. name: "Front",
  34678. image: {
  34679. source: "./media/characters/jai/front.svg",
  34680. extra: 1645/1534,
  34681. bottom: 115/1760
  34682. }
  34683. },
  34684. },
  34685. [
  34686. {
  34687. name: "Normal",
  34688. height: math.unit(6 + 6/12, "feet"),
  34689. default: true
  34690. },
  34691. ]
  34692. ))
  34693. characterMakers.push(() => makeCharacter(
  34694. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34695. {
  34696. front: {
  34697. height: math.unit(6 + 8/12, "feet"),
  34698. name: "Front",
  34699. image: {
  34700. source: "./media/characters/pixel/front.svg",
  34701. extra: 1900/1735,
  34702. bottom: 63/1963
  34703. }
  34704. },
  34705. },
  34706. [
  34707. {
  34708. name: "Normal",
  34709. height: math.unit(6 + 8/12, "feet"),
  34710. default: true
  34711. },
  34712. ]
  34713. ))
  34714. characterMakers.push(() => makeCharacter(
  34715. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34716. {
  34717. front: {
  34718. height: math.unit(4 + 11/12, "feet"),
  34719. weight: math.unit(111, "lb"),
  34720. name: "Front",
  34721. image: {
  34722. source: "./media/characters/rhett/front.svg",
  34723. extra: 1682/1586,
  34724. bottom: 92/1774
  34725. }
  34726. },
  34727. },
  34728. [
  34729. {
  34730. name: "Mini",
  34731. height: math.unit(1 + 1/12, "feet")
  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: "Penny", species: ["mouse"], tags: ["anthro"] },
  34742. {
  34743. front: {
  34744. height: math.unit(3 + 3/12, "feet"),
  34745. name: "Front",
  34746. image: {
  34747. source: "./media/characters/penny/front.svg",
  34748. extra: 1406/1311,
  34749. bottom: 26/1432
  34750. }
  34751. },
  34752. },
  34753. [
  34754. {
  34755. name: "Normal",
  34756. height: math.unit(3 + 3/12, "feet"),
  34757. default: true
  34758. },
  34759. ]
  34760. ))
  34761. characterMakers.push(() => makeCharacter(
  34762. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34763. {
  34764. front: {
  34765. height: math.unit(4 + 11/12, "feet"),
  34766. name: "Front",
  34767. image: {
  34768. source: "./media/characters/monty/front.svg",
  34769. extra: 1479/1209,
  34770. bottom: 0/1479
  34771. }
  34772. },
  34773. },
  34774. [
  34775. {
  34776. name: "Normal",
  34777. height: math.unit(4 + 11/12, "feet"),
  34778. default: true
  34779. },
  34780. ]
  34781. ))
  34782. characterMakers.push(() => makeCharacter(
  34783. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34784. {
  34785. front: {
  34786. height: math.unit(8 + 4/12, "feet"),
  34787. name: "Front",
  34788. image: {
  34789. source: "./media/characters/sterling/front.svg",
  34790. extra: 1420/1236,
  34791. bottom: 27/1447
  34792. }
  34793. },
  34794. },
  34795. [
  34796. {
  34797. name: "Normal",
  34798. height: math.unit(8 + 4/12, "feet"),
  34799. default: true
  34800. },
  34801. ]
  34802. ))
  34803. characterMakers.push(() => makeCharacter(
  34804. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34805. {
  34806. front: {
  34807. height: math.unit(15, "feet"),
  34808. name: "Front",
  34809. image: {
  34810. source: "./media/characters/marble/front.svg",
  34811. extra: 973/937,
  34812. bottom: 32/1005
  34813. }
  34814. },
  34815. },
  34816. [
  34817. {
  34818. name: "Normal",
  34819. height: math.unit(15, "feet"),
  34820. default: true
  34821. },
  34822. ]
  34823. ))
  34824. characterMakers.push(() => makeCharacter(
  34825. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34826. {
  34827. front: {
  34828. height: math.unit(3, "inches"),
  34829. name: "Front",
  34830. image: {
  34831. source: "./media/characters/powder/front.svg",
  34832. extra: 1504/1334,
  34833. bottom: 518/2022
  34834. }
  34835. },
  34836. },
  34837. [
  34838. {
  34839. name: "Normal",
  34840. height: math.unit(3, "inches"),
  34841. default: true
  34842. },
  34843. ]
  34844. ))
  34845. characterMakers.push(() => makeCharacter(
  34846. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34847. {
  34848. front: {
  34849. height: math.unit(4 + 5/12, "feet"),
  34850. name: "Front",
  34851. image: {
  34852. source: "./media/characters/joey-raccoon/front.svg",
  34853. extra: 1273/1197,
  34854. bottom: 0/1273
  34855. }
  34856. },
  34857. },
  34858. [
  34859. {
  34860. name: "Normal",
  34861. height: math.unit(4 + 5/12, "feet"),
  34862. default: true
  34863. },
  34864. ]
  34865. ))
  34866. characterMakers.push(() => makeCharacter(
  34867. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34868. {
  34869. front: {
  34870. height: math.unit(8 + 4/12, "feet"),
  34871. name: "Front",
  34872. image: {
  34873. source: "./media/characters/vick/front.svg",
  34874. extra: 2187/2118,
  34875. bottom: 47/2234
  34876. }
  34877. },
  34878. },
  34879. [
  34880. {
  34881. name: "Normal",
  34882. height: math.unit(8 + 4/12, "feet"),
  34883. default: true
  34884. },
  34885. ]
  34886. ))
  34887. characterMakers.push(() => makeCharacter(
  34888. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34889. {
  34890. front: {
  34891. height: math.unit(5 + 5/12, "feet"),
  34892. name: "Front",
  34893. image: {
  34894. source: "./media/characters/mitsy/front.svg",
  34895. extra: 1842/1695,
  34896. bottom: 0/1842
  34897. }
  34898. },
  34899. },
  34900. [
  34901. {
  34902. name: "Normal",
  34903. height: math.unit(5 + 5/12, "feet"),
  34904. default: true
  34905. },
  34906. ]
  34907. ))
  34908. characterMakers.push(() => makeCharacter(
  34909. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34910. {
  34911. front: {
  34912. height: math.unit(6 + 3/12, "feet"),
  34913. name: "Front",
  34914. image: {
  34915. source: "./media/characters/silvy/front.svg",
  34916. extra: 1995/1836,
  34917. bottom: 225/2220
  34918. }
  34919. },
  34920. },
  34921. [
  34922. {
  34923. name: "Normal",
  34924. height: math.unit(6 + 3/12, "feet"),
  34925. default: true
  34926. },
  34927. ]
  34928. ))
  34929. characterMakers.push(() => makeCharacter(
  34930. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34931. {
  34932. front: {
  34933. height: math.unit(3 + 8/12, "feet"),
  34934. name: "Front",
  34935. image: {
  34936. source: "./media/characters/rodney/front.svg",
  34937. extra: 1956/1747,
  34938. bottom: 31/1987
  34939. }
  34940. },
  34941. frontDressed: {
  34942. height: math.unit(2.9, "feet"),
  34943. name: "Front (Dressed)",
  34944. image: {
  34945. source: "./media/characters/rodney/front-dressed.svg",
  34946. extra: 1382/1241,
  34947. bottom: 385/1767
  34948. }
  34949. },
  34950. },
  34951. [
  34952. {
  34953. name: "Normal",
  34954. height: math.unit(3 + 8/12, "feet"),
  34955. default: true
  34956. },
  34957. ]
  34958. ))
  34959. characterMakers.push(() => makeCharacter(
  34960. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34961. {
  34962. front: {
  34963. height: math.unit(5 + 9/12, "feet"),
  34964. weight: math.unit(194, "lbs"),
  34965. name: "Front",
  34966. image: {
  34967. source: "./media/characters/zakail-sudekai/front.svg",
  34968. extra: 2696/2533,
  34969. bottom: 248/2944
  34970. }
  34971. },
  34972. maw: {
  34973. height: math.unit(1.35, "feet"),
  34974. name: "Maw",
  34975. image: {
  34976. source: "./media/characters/zakail-sudekai/maw.svg"
  34977. }
  34978. },
  34979. },
  34980. [
  34981. {
  34982. name: "Normal",
  34983. height: math.unit(5 + 9/12, "feet"),
  34984. default: true
  34985. },
  34986. ]
  34987. ))
  34988. characterMakers.push(() => makeCharacter(
  34989. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34990. {
  34991. front: {
  34992. height: math.unit(8 + 4/12, "feet"),
  34993. weight: math.unit(1200, "lb"),
  34994. name: "Front",
  34995. image: {
  34996. source: "./media/characters/eleanor/front.svg",
  34997. extra: 1226/1192,
  34998. bottom: 52/1278
  34999. }
  35000. },
  35001. back: {
  35002. height: math.unit(8 + 4/12, "feet"),
  35003. weight: math.unit(1200, "lb"),
  35004. name: "Back",
  35005. image: {
  35006. source: "./media/characters/eleanor/back.svg",
  35007. extra: 1242/1184,
  35008. bottom: 60/1302
  35009. }
  35010. },
  35011. head: {
  35012. height: math.unit(2.62, "feet"),
  35013. name: "Head",
  35014. image: {
  35015. source: "./media/characters/eleanor/head.svg"
  35016. }
  35017. },
  35018. },
  35019. [
  35020. {
  35021. name: "Normal",
  35022. height: math.unit(8 + 4/12, "feet"),
  35023. default: true
  35024. },
  35025. ]
  35026. ))
  35027. characterMakers.push(() => makeCharacter(
  35028. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35029. {
  35030. front: {
  35031. height: math.unit(8 + 4/12, "feet"),
  35032. weight: math.unit(750, "lb"),
  35033. name: "Front",
  35034. image: {
  35035. source: "./media/characters/tanya/front.svg",
  35036. extra: 1749/1615,
  35037. bottom: 33/1782
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Normal",
  35044. height: math.unit(8 + 4/12, "feet"),
  35045. default: true
  35046. },
  35047. ]
  35048. ))
  35049. characterMakers.push(() => makeCharacter(
  35050. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35051. {
  35052. front: {
  35053. height: math.unit(5, "feet"),
  35054. weight: math.unit(225, "lb"),
  35055. name: "Front",
  35056. image: {
  35057. source: "./media/characters/cindy/front.svg",
  35058. extra: 1320/1250,
  35059. bottom: 42/1362
  35060. }
  35061. },
  35062. frontDressed: {
  35063. height: math.unit(5, "feet"),
  35064. weight: math.unit(225, "lb"),
  35065. name: "Front (Dressed)",
  35066. image: {
  35067. source: "./media/characters/cindy/front-dressed.svg",
  35068. extra: 1320/1250,
  35069. bottom: 42/1362
  35070. }
  35071. },
  35072. back: {
  35073. height: math.unit(5, "feet"),
  35074. weight: math.unit(225, "lb"),
  35075. name: "Back",
  35076. image: {
  35077. source: "./media/characters/cindy/back.svg",
  35078. extra: 1384/1346,
  35079. bottom: 14/1398
  35080. }
  35081. },
  35082. },
  35083. [
  35084. {
  35085. name: "Normal",
  35086. height: math.unit(5, "feet"),
  35087. default: true
  35088. },
  35089. ]
  35090. ))
  35091. characterMakers.push(() => makeCharacter(
  35092. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35093. {
  35094. front: {
  35095. height: math.unit(6 + 9/12, "feet"),
  35096. weight: math.unit(440, "lb"),
  35097. name: "Front",
  35098. image: {
  35099. source: "./media/characters/wilbur-owen/front.svg",
  35100. extra: 1575/1448,
  35101. bottom: 72/1647
  35102. }
  35103. },
  35104. back: {
  35105. height: math.unit(6 + 9/12, "feet"),
  35106. weight: math.unit(440, "lb"),
  35107. name: "Back",
  35108. image: {
  35109. source: "./media/characters/wilbur-owen/back.svg",
  35110. extra: 1578/1445,
  35111. bottom: 36/1614
  35112. }
  35113. },
  35114. },
  35115. [
  35116. {
  35117. name: "Normal",
  35118. height: math.unit(6 + 9/12, "feet"),
  35119. default: true
  35120. },
  35121. ]
  35122. ))
  35123. characterMakers.push(() => makeCharacter(
  35124. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35125. {
  35126. front: {
  35127. height: math.unit(6 + 5/12, "feet"),
  35128. weight: math.unit(650, "lb"),
  35129. name: "Front",
  35130. image: {
  35131. source: "./media/characters/keegan/front.svg",
  35132. extra: 2387/2198,
  35133. bottom: 33/2420
  35134. }
  35135. },
  35136. side: {
  35137. height: math.unit(6 + 5/12, "feet"),
  35138. weight: math.unit(650, "lb"),
  35139. name: "Side",
  35140. image: {
  35141. source: "./media/characters/keegan/side.svg",
  35142. extra: 2390/2202,
  35143. bottom: 47/2437
  35144. }
  35145. },
  35146. back: {
  35147. height: math.unit(6 + 5/12, "feet"),
  35148. weight: math.unit(650, "lb"),
  35149. name: "Back",
  35150. image: {
  35151. source: "./media/characters/keegan/back.svg",
  35152. extra: 2418/2268,
  35153. bottom: 15/2433
  35154. }
  35155. },
  35156. frontSfw: {
  35157. height: math.unit(6 + 5/12, "feet"),
  35158. weight: math.unit(650, "lb"),
  35159. name: "Front (SFW)",
  35160. image: {
  35161. source: "./media/characters/keegan/front-sfw.svg",
  35162. extra: 2387/2198,
  35163. bottom: 33/2420
  35164. }
  35165. },
  35166. beans: {
  35167. height: math.unit(1.85, "feet"),
  35168. name: "Beans",
  35169. image: {
  35170. source: "./media/characters/keegan/beans.svg"
  35171. }
  35172. },
  35173. },
  35174. [
  35175. {
  35176. name: "Normal",
  35177. height: math.unit(6 + 5/12, "feet"),
  35178. default: true
  35179. },
  35180. ]
  35181. ))
  35182. characterMakers.push(() => makeCharacter(
  35183. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35184. {
  35185. front: {
  35186. height: math.unit(9, "feet"),
  35187. name: "Front",
  35188. image: {
  35189. source: "./media/characters/colton/front.svg",
  35190. extra: 1589/1326,
  35191. bottom: 139/1728
  35192. }
  35193. },
  35194. },
  35195. [
  35196. {
  35197. name: "Normal",
  35198. height: math.unit(9, "feet"),
  35199. default: true
  35200. },
  35201. ]
  35202. ))
  35203. characterMakers.push(() => makeCharacter(
  35204. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35205. {
  35206. front: {
  35207. height: math.unit(2 + 9/12, "feet"),
  35208. name: "Front",
  35209. image: {
  35210. source: "./media/characters/bora/front.svg",
  35211. extra: 1265/1250,
  35212. bottom: 24/1289
  35213. }
  35214. },
  35215. },
  35216. [
  35217. {
  35218. name: "Normal",
  35219. height: math.unit(2 + 9/12, "feet"),
  35220. default: true
  35221. },
  35222. ]
  35223. ))
  35224. characterMakers.push(() => makeCharacter(
  35225. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35226. {
  35227. front: {
  35228. height: math.unit(8, "feet"),
  35229. name: "Front",
  35230. image: {
  35231. source: "./media/characters/myu-myu/front.svg",
  35232. extra: 1949/1857,
  35233. bottom: 90/2039
  35234. }
  35235. },
  35236. },
  35237. [
  35238. {
  35239. name: "Normal",
  35240. height: math.unit(8, "feet"),
  35241. default: true
  35242. },
  35243. {
  35244. name: "Big",
  35245. height: math.unit(15, "feet")
  35246. },
  35247. {
  35248. name: "BIG",
  35249. height: math.unit(25, "feet")
  35250. },
  35251. ]
  35252. ))
  35253. characterMakers.push(() => makeCharacter(
  35254. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35255. {
  35256. side: {
  35257. height: math.unit(7 + 5/12, "feet"),
  35258. weight: math.unit(2800, "lb"),
  35259. name: "Side",
  35260. image: {
  35261. source: "./media/characters/haloren/side.svg",
  35262. extra: 1793/409,
  35263. bottom: 59/1852
  35264. }
  35265. },
  35266. frontPaw: {
  35267. height: math.unit(2.36, "feet"),
  35268. name: "Front paw",
  35269. image: {
  35270. source: "./media/characters/haloren/front-paw.svg"
  35271. }
  35272. },
  35273. hindPaw: {
  35274. height: math.unit(3.18, "feet"),
  35275. name: "Hind paw",
  35276. image: {
  35277. source: "./media/characters/haloren/hind-paw.svg"
  35278. }
  35279. },
  35280. maw: {
  35281. height: math.unit(5.05, "feet"),
  35282. name: "Maw",
  35283. image: {
  35284. source: "./media/characters/haloren/maw.svg"
  35285. }
  35286. },
  35287. dick: {
  35288. height: math.unit(2.90, "feet"),
  35289. name: "Dick",
  35290. image: {
  35291. source: "./media/characters/haloren/dick.svg"
  35292. }
  35293. },
  35294. },
  35295. [
  35296. {
  35297. name: "Normal",
  35298. height: math.unit(7 + 5/12, "feet"),
  35299. default: true
  35300. },
  35301. {
  35302. name: "Enhanced",
  35303. height: math.unit(14 + 3/12, "feet")
  35304. },
  35305. ]
  35306. ))
  35307. characterMakers.push(() => makeCharacter(
  35308. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35309. {
  35310. front: {
  35311. height: math.unit(171, "cm"),
  35312. name: "Front",
  35313. image: {
  35314. source: "./media/characters/kimmy/front.svg",
  35315. extra: 1491/1435,
  35316. bottom: 53/1544
  35317. }
  35318. },
  35319. },
  35320. [
  35321. {
  35322. name: "Small",
  35323. height: math.unit(9, "cm")
  35324. },
  35325. {
  35326. name: "Normal",
  35327. height: math.unit(171, "cm"),
  35328. default: true
  35329. },
  35330. ]
  35331. ))
  35332. characterMakers.push(() => makeCharacter(
  35333. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35334. {
  35335. front: {
  35336. height: math.unit(8, "feet"),
  35337. weight: math.unit(300, "lb"),
  35338. name: "Front",
  35339. image: {
  35340. source: "./media/characters/galeboomer/front.svg",
  35341. extra: 4651/4415,
  35342. bottom: 162/4813
  35343. }
  35344. },
  35345. back: {
  35346. height: math.unit(8, "feet"),
  35347. weight: math.unit(300, "lb"),
  35348. name: "Back",
  35349. image: {
  35350. source: "./media/characters/galeboomer/back.svg",
  35351. extra: 4544/4314,
  35352. bottom: 16/4560
  35353. }
  35354. },
  35355. frontAlt: {
  35356. height: math.unit(8, "feet"),
  35357. weight: math.unit(300, "lb"),
  35358. name: "Front (Alt)",
  35359. image: {
  35360. source: "./media/characters/galeboomer/front-alt.svg",
  35361. extra: 4458/4228,
  35362. bottom: 68/4526
  35363. }
  35364. },
  35365. maw: {
  35366. height: math.unit(1.2, "feet"),
  35367. name: "Maw",
  35368. image: {
  35369. source: "./media/characters/galeboomer/maw.svg"
  35370. }
  35371. },
  35372. },
  35373. [
  35374. {
  35375. name: "Normal",
  35376. height: math.unit(8, "feet"),
  35377. default: true
  35378. },
  35379. ]
  35380. ))
  35381. characterMakers.push(() => makeCharacter(
  35382. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35383. {
  35384. front: {
  35385. height: math.unit(5 + 9/12, "feet"),
  35386. weight: math.unit(120, "lb"),
  35387. name: "Front",
  35388. image: {
  35389. source: "./media/characters/chyr/front.svg",
  35390. extra: 1323/1254,
  35391. bottom: 63/1386
  35392. }
  35393. },
  35394. back: {
  35395. height: math.unit(5 + 9/12, "feet"),
  35396. weight: math.unit(120, "lb"),
  35397. name: "Back",
  35398. image: {
  35399. source: "./media/characters/chyr/back.svg",
  35400. extra: 1323/1252,
  35401. bottom: 48/1371
  35402. }
  35403. },
  35404. },
  35405. [
  35406. {
  35407. name: "Normal",
  35408. height: math.unit(5 + 9/12, "feet"),
  35409. default: true
  35410. },
  35411. ]
  35412. ))
  35413. characterMakers.push(() => makeCharacter(
  35414. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35415. {
  35416. front: {
  35417. height: math.unit(7, "feet"),
  35418. weight: math.unit(310, "lb"),
  35419. name: "Front",
  35420. image: {
  35421. source: "./media/characters/solarus/front.svg",
  35422. extra: 2415/2021,
  35423. bottom: 103/2518
  35424. }
  35425. },
  35426. back: {
  35427. height: math.unit(7, "feet"),
  35428. weight: math.unit(310, "lb"),
  35429. name: "Back",
  35430. image: {
  35431. source: "./media/characters/solarus/back.svg",
  35432. extra: 2463/2089,
  35433. bottom: 79/2542
  35434. }
  35435. },
  35436. },
  35437. [
  35438. {
  35439. name: "Normal",
  35440. height: math.unit(7, "feet"),
  35441. default: true
  35442. },
  35443. ]
  35444. ))
  35445. characterMakers.push(() => makeCharacter(
  35446. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35447. {
  35448. front: {
  35449. height: math.unit(16, "feet"),
  35450. name: "Front",
  35451. image: {
  35452. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35453. extra: 1844/1780,
  35454. bottom: 58/1902
  35455. }
  35456. },
  35457. },
  35458. [
  35459. {
  35460. name: "Normal",
  35461. height: math.unit(16, "feet"),
  35462. default: true
  35463. },
  35464. ]
  35465. ))
  35466. characterMakers.push(() => makeCharacter(
  35467. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35468. {
  35469. front: {
  35470. height: math.unit(11 + 6/12, "feet"),
  35471. weight: math.unit(1366, "lb"),
  35472. name: "Front",
  35473. image: {
  35474. source: "./media/characters/lexor/front.svg",
  35475. extra: 1560/1481,
  35476. bottom: 211/1771
  35477. }
  35478. },
  35479. back: {
  35480. height: math.unit(11 + 6/12, "feet"),
  35481. weight: math.unit(1366, "lb"),
  35482. name: "Back",
  35483. image: {
  35484. source: "./media/characters/lexor/back.svg",
  35485. extra: 1614/1533,
  35486. bottom: 76/1690
  35487. }
  35488. },
  35489. maw: {
  35490. height: math.unit(3, "feet"),
  35491. name: "Maw",
  35492. image: {
  35493. source: "./media/characters/lexor/maw.svg"
  35494. }
  35495. },
  35496. dick: {
  35497. height: math.unit(2.59, "feet"),
  35498. name: "Dick",
  35499. image: {
  35500. source: "./media/characters/lexor/dick.svg"
  35501. }
  35502. },
  35503. },
  35504. [
  35505. {
  35506. name: "Normal",
  35507. height: math.unit(11 + 6/12, "feet"),
  35508. default: true
  35509. },
  35510. ]
  35511. ))
  35512. characterMakers.push(() => makeCharacter(
  35513. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35514. {
  35515. front: {
  35516. height: math.unit(5 + 8/12, "feet"),
  35517. name: "Front",
  35518. image: {
  35519. source: "./media/characters/magnum/front.svg",
  35520. extra: 942/855,
  35521. bottom: 26/968
  35522. }
  35523. },
  35524. },
  35525. [
  35526. {
  35527. name: "Normal",
  35528. height: math.unit(5 + 8/12, "feet"),
  35529. default: true
  35530. },
  35531. ]
  35532. ))
  35533. characterMakers.push(() => makeCharacter(
  35534. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35535. {
  35536. front: {
  35537. height: math.unit(18 + 4/12, "feet"),
  35538. weight: math.unit(1500, "kg"),
  35539. name: "Front",
  35540. image: {
  35541. source: "./media/characters/solas-sharpsman/front.svg",
  35542. extra: 1698/1589,
  35543. bottom: 0/1698
  35544. }
  35545. },
  35546. },
  35547. [
  35548. {
  35549. name: "Normal",
  35550. height: math.unit(18 + 4/12, "feet"),
  35551. default: true
  35552. },
  35553. ]
  35554. ))
  35555. characterMakers.push(() => makeCharacter(
  35556. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35557. {
  35558. front: {
  35559. height: math.unit(5 + 5/12, "feet"),
  35560. weight: math.unit(180, "lb"),
  35561. name: "Front",
  35562. image: {
  35563. source: "./media/characters/october/front.svg",
  35564. extra: 1800/1650,
  35565. bottom: 0/1800
  35566. }
  35567. },
  35568. frontNsfw: {
  35569. height: math.unit(5 + 5/12, "feet"),
  35570. weight: math.unit(180, "lb"),
  35571. name: "Front (NSFW)",
  35572. image: {
  35573. source: "./media/characters/october/front-nsfw.svg",
  35574. extra: 1392/1307,
  35575. bottom: 42/1434
  35576. }
  35577. },
  35578. },
  35579. [
  35580. {
  35581. name: "Normal",
  35582. height: math.unit(5 + 5/12, "feet"),
  35583. default: true
  35584. },
  35585. ]
  35586. ))
  35587. characterMakers.push(() => makeCharacter(
  35588. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35589. {
  35590. front: {
  35591. height: math.unit(8 + 6/12, "feet"),
  35592. name: "Front",
  35593. image: {
  35594. source: "./media/characters/essynkardi/front.svg",
  35595. extra: 1914/1846,
  35596. bottom: 22/1936
  35597. }
  35598. },
  35599. },
  35600. [
  35601. {
  35602. name: "Normal",
  35603. height: math.unit(8 + 6/12, "feet"),
  35604. default: true
  35605. },
  35606. ]
  35607. ))
  35608. characterMakers.push(() => makeCharacter(
  35609. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35610. {
  35611. front: {
  35612. height: math.unit(6 + 6/12, "feet"),
  35613. weight: math.unit(7, "lb"),
  35614. name: "Front",
  35615. image: {
  35616. source: "./media/characters/icky/front.svg",
  35617. extra: 813/782,
  35618. bottom: 66/879
  35619. }
  35620. },
  35621. back: {
  35622. height: math.unit(6 + 6/12, "feet"),
  35623. weight: math.unit(7, "lb"),
  35624. name: "Back",
  35625. image: {
  35626. source: "./media/characters/icky/back.svg",
  35627. extra: 754/735,
  35628. bottom: 56/810
  35629. }
  35630. },
  35631. },
  35632. [
  35633. {
  35634. name: "Normal",
  35635. height: math.unit(6 + 6/12, "feet"),
  35636. default: true
  35637. },
  35638. ]
  35639. ))
  35640. characterMakers.push(() => makeCharacter(
  35641. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35642. {
  35643. front: {
  35644. height: math.unit(15, "feet"),
  35645. name: "Front",
  35646. image: {
  35647. source: "./media/characters/rojas/front.svg",
  35648. extra: 1462/1408,
  35649. bottom: 95/1557
  35650. }
  35651. },
  35652. back: {
  35653. height: math.unit(15, "feet"),
  35654. name: "Back",
  35655. image: {
  35656. source: "./media/characters/rojas/back.svg",
  35657. extra: 1023/954,
  35658. bottom: 28/1051
  35659. }
  35660. },
  35661. },
  35662. [
  35663. {
  35664. name: "Normal",
  35665. height: math.unit(15, "feet"),
  35666. default: true
  35667. },
  35668. ]
  35669. ))
  35670. characterMakers.push(() => makeCharacter(
  35671. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35672. {
  35673. frontHuman: {
  35674. height: math.unit(5 + 7/12, "feet"),
  35675. name: "Front (Human)",
  35676. image: {
  35677. source: "./media/characters/alek-dryagan/front-human.svg",
  35678. extra: 1687/1667,
  35679. bottom: 69/1756
  35680. }
  35681. },
  35682. backHuman: {
  35683. height: math.unit(5 + 7/12, "feet"),
  35684. name: "Back (Human)",
  35685. image: {
  35686. source: "./media/characters/alek-dryagan/back-human.svg",
  35687. extra: 1670/1649,
  35688. bottom: 65/1735
  35689. }
  35690. },
  35691. frontDemi: {
  35692. height: math.unit(65, "feet"),
  35693. name: "Front (Demi)",
  35694. image: {
  35695. source: "./media/characters/alek-dryagan/front-demi.svg",
  35696. extra: 1669/1642,
  35697. bottom: 49/1718
  35698. }
  35699. },
  35700. backDemi: {
  35701. height: math.unit(65, "feet"),
  35702. name: "Back (Demi)",
  35703. image: {
  35704. source: "./media/characters/alek-dryagan/back-demi.svg",
  35705. extra: 1658/1637,
  35706. bottom: 40/1698
  35707. }
  35708. },
  35709. mawHuman: {
  35710. height: math.unit(0.3, "feet"),
  35711. name: "Maw (Human)",
  35712. image: {
  35713. source: "./media/characters/alek-dryagan/maw-human.svg"
  35714. }
  35715. },
  35716. mawDemi: {
  35717. height: math.unit(3.8, "feet"),
  35718. name: "Maw (Demi)",
  35719. image: {
  35720. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35721. }
  35722. },
  35723. },
  35724. [
  35725. {
  35726. name: "Normal",
  35727. height: math.unit(5 + 7/12, "feet"),
  35728. default: true
  35729. },
  35730. ]
  35731. ))
  35732. characterMakers.push(() => makeCharacter(
  35733. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35734. {
  35735. frontHuman: {
  35736. height: math.unit(5 + 2/12, "feet"),
  35737. name: "Front (Human)",
  35738. image: {
  35739. source: "./media/characters/gen/front-human.svg",
  35740. extra: 1627/1538,
  35741. bottom: 71/1698
  35742. }
  35743. },
  35744. backHuman: {
  35745. height: math.unit(5 + 2/12, "feet"),
  35746. name: "Back (Human)",
  35747. image: {
  35748. source: "./media/characters/gen/back-human.svg",
  35749. extra: 1638/1548,
  35750. bottom: 69/1707
  35751. }
  35752. },
  35753. frontDemi: {
  35754. height: math.unit(5 + 2/12, "feet"),
  35755. name: "Front (Demi)",
  35756. image: {
  35757. source: "./media/characters/gen/front-demi.svg",
  35758. extra: 1627/1538,
  35759. bottom: 71/1698
  35760. }
  35761. },
  35762. backDemi: {
  35763. height: math.unit(5 + 2/12, "feet"),
  35764. name: "Back (Demi)",
  35765. image: {
  35766. source: "./media/characters/gen/back-demi.svg",
  35767. extra: 1638/1548,
  35768. bottom: 69/1707
  35769. }
  35770. },
  35771. },
  35772. [
  35773. {
  35774. name: "Normal",
  35775. height: math.unit(5 + 2/12, "feet"),
  35776. default: true
  35777. },
  35778. ]
  35779. ))
  35780. characterMakers.push(() => makeCharacter(
  35781. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35782. {
  35783. frontImp: {
  35784. height: math.unit(1 + 11/12, "feet"),
  35785. name: "Front (Imp)",
  35786. image: {
  35787. source: "./media/characters/max-kobold/front-imp.svg",
  35788. extra: 1238/1134,
  35789. bottom: 81/1319
  35790. }
  35791. },
  35792. backImp: {
  35793. height: math.unit(1 + 11/12, "feet"),
  35794. name: "Back (Imp)",
  35795. image: {
  35796. source: "./media/characters/max-kobold/back-imp.svg",
  35797. extra: 1334/1175,
  35798. bottom: 34/1368
  35799. }
  35800. },
  35801. frontDemi: {
  35802. height: math.unit(5 + 9/12, "feet"),
  35803. name: "Front (Demi)",
  35804. image: {
  35805. source: "./media/characters/max-kobold/front-demi.svg",
  35806. extra: 1715/1685,
  35807. bottom: 54/1769
  35808. }
  35809. },
  35810. backDemi: {
  35811. height: math.unit(5 + 9/12, "feet"),
  35812. name: "Back (Demi)",
  35813. image: {
  35814. source: "./media/characters/max-kobold/back-demi.svg",
  35815. extra: 1752/1729,
  35816. bottom: 41/1793
  35817. }
  35818. },
  35819. handImp: {
  35820. height: math.unit(0.45, "feet"),
  35821. name: "Hand (Imp)",
  35822. image: {
  35823. source: "./media/characters/max-kobold/hand.svg"
  35824. }
  35825. },
  35826. pawImp: {
  35827. height: math.unit(0.46, "feet"),
  35828. name: "Paw (Imp)",
  35829. image: {
  35830. source: "./media/characters/max-kobold/paw.svg"
  35831. }
  35832. },
  35833. handDemi: {
  35834. height: math.unit(0.80, "feet"),
  35835. name: "Hand (Demi)",
  35836. image: {
  35837. source: "./media/characters/max-kobold/hand.svg"
  35838. }
  35839. },
  35840. pawDemi: {
  35841. height: math.unit(1.1, "feet"),
  35842. name: "Paw (Demi)",
  35843. image: {
  35844. source: "./media/characters/max-kobold/paw.svg"
  35845. }
  35846. },
  35847. headImp: {
  35848. height: math.unit(1.33, "feet"),
  35849. name: "Head (Imp)",
  35850. image: {
  35851. source: "./media/characters/max-kobold/head-imp.svg"
  35852. }
  35853. },
  35854. mawImp: {
  35855. height: math.unit(0.75, "feet"),
  35856. name: "Maw (Imp)",
  35857. image: {
  35858. source: "./media/characters/max-kobold/maw-imp.svg"
  35859. }
  35860. },
  35861. mawDemi: {
  35862. height: math.unit(0.42, "feet"),
  35863. name: "Maw (Demi)",
  35864. image: {
  35865. source: "./media/characters/max-kobold/maw-demi.svg"
  35866. }
  35867. },
  35868. },
  35869. [
  35870. {
  35871. name: "Normal",
  35872. height: math.unit(1 + 11/12, "feet"),
  35873. default: true
  35874. },
  35875. ]
  35876. ))
  35877. characterMakers.push(() => makeCharacter(
  35878. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35879. {
  35880. front: {
  35881. height: math.unit(7 + 5/12, "feet"),
  35882. name: "Front",
  35883. image: {
  35884. source: "./media/characters/carbon/front.svg",
  35885. extra: 1754/1689,
  35886. bottom: 65/1819
  35887. }
  35888. },
  35889. back: {
  35890. height: math.unit(7 + 5/12, "feet"),
  35891. name: "Back",
  35892. image: {
  35893. source: "./media/characters/carbon/back.svg",
  35894. extra: 1762/1695,
  35895. bottom: 24/1786
  35896. }
  35897. },
  35898. frontGigantamax: {
  35899. height: math.unit(150, "feet"),
  35900. name: "Front (Gigantamax)",
  35901. image: {
  35902. source: "./media/characters/carbon/front-gigantamax.svg",
  35903. extra: 1826/1669,
  35904. bottom: 59/1885
  35905. }
  35906. },
  35907. backGigantamax: {
  35908. height: math.unit(150, "feet"),
  35909. name: "Back (Gigantamax)",
  35910. image: {
  35911. source: "./media/characters/carbon/back-gigantamax.svg",
  35912. extra: 1796/1653,
  35913. bottom: 53/1849
  35914. }
  35915. },
  35916. maw: {
  35917. height: math.unit(0.48, "feet"),
  35918. name: "Maw",
  35919. image: {
  35920. source: "./media/characters/carbon/maw.svg"
  35921. }
  35922. },
  35923. mawGigantamax: {
  35924. height: math.unit(7.5, "feet"),
  35925. name: "Maw (Gigantamax)",
  35926. image: {
  35927. source: "./media/characters/carbon/maw-gigantamax.svg"
  35928. }
  35929. },
  35930. },
  35931. [
  35932. {
  35933. name: "Normal",
  35934. height: math.unit(7 + 5/12, "feet"),
  35935. default: true
  35936. },
  35937. ]
  35938. ))
  35939. characterMakers.push(() => makeCharacter(
  35940. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  35941. {
  35942. front: {
  35943. height: math.unit(6, "feet"),
  35944. name: "Front",
  35945. image: {
  35946. source: "./media/characters/maverick/front.svg",
  35947. extra: 1672/1661,
  35948. bottom: 85/1757
  35949. }
  35950. },
  35951. back: {
  35952. height: math.unit(6, "feet"),
  35953. name: "Back",
  35954. image: {
  35955. source: "./media/characters/maverick/back.svg",
  35956. extra: 1642/1631,
  35957. bottom: 38/1680
  35958. }
  35959. },
  35960. },
  35961. [
  35962. {
  35963. name: "Normal",
  35964. height: math.unit(6, "feet"),
  35965. default: true
  35966. },
  35967. ]
  35968. ))
  35969. characterMakers.push(() => makeCharacter(
  35970. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  35971. {
  35972. front: {
  35973. height: math.unit(15, "feet"),
  35974. weight: math.unit(615, "lb"),
  35975. name: "Front",
  35976. image: {
  35977. source: "./media/characters/grockle/front.svg",
  35978. extra: 1535/1427,
  35979. bottom: 56/1591
  35980. }
  35981. },
  35982. },
  35983. [
  35984. {
  35985. name: "Normal",
  35986. height: math.unit(15, "feet"),
  35987. default: true
  35988. },
  35989. {
  35990. name: "Large",
  35991. height: math.unit(150, "feet")
  35992. },
  35993. {
  35994. name: "Macro",
  35995. height: math.unit(1876, "feet")
  35996. },
  35997. {
  35998. name: "Mega Macro",
  35999. height: math.unit(121940, "feet")
  36000. },
  36001. {
  36002. name: "Giga Macro",
  36003. height: math.unit(750, "km")
  36004. },
  36005. {
  36006. name: "Tera Macro",
  36007. height: math.unit(750000, "km")
  36008. },
  36009. {
  36010. name: "Galactic",
  36011. height: math.unit(1.4e5, "km")
  36012. },
  36013. {
  36014. name: "Godlike",
  36015. height: math.unit(9.8e280, "galaxies")
  36016. },
  36017. ]
  36018. ))
  36019. characterMakers.push(() => makeCharacter(
  36020. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36021. {
  36022. front: {
  36023. height: math.unit(11, "meters"),
  36024. weight: math.unit(20, "tonnes"),
  36025. name: "Front",
  36026. image: {
  36027. source: "./media/characters/alistair/front.svg",
  36028. extra: 1265/1009,
  36029. bottom: 93/1358
  36030. }
  36031. },
  36032. },
  36033. [
  36034. {
  36035. name: "Normal",
  36036. height: math.unit(11, "meters"),
  36037. default: true
  36038. },
  36039. ]
  36040. ))
  36041. characterMakers.push(() => makeCharacter(
  36042. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36043. {
  36044. front: {
  36045. height: math.unit(5 + 8/12, "feet"),
  36046. name: "Front",
  36047. image: {
  36048. source: "./media/characters/haruka/front.svg",
  36049. extra: 2012/1952,
  36050. bottom: 0/2012
  36051. }
  36052. },
  36053. },
  36054. [
  36055. {
  36056. name: "Normal",
  36057. height: math.unit(5 + 8/12, "feet"),
  36058. default: true
  36059. },
  36060. ]
  36061. ))
  36062. characterMakers.push(() => makeCharacter(
  36063. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36064. {
  36065. back: {
  36066. height: math.unit(9, "feet"),
  36067. name: "Back",
  36068. image: {
  36069. source: "./media/characters/vivian-sylveon/back.svg",
  36070. extra: 1853/1714,
  36071. bottom: 0/1853
  36072. }
  36073. },
  36074. },
  36075. [
  36076. {
  36077. name: "Normal",
  36078. height: math.unit(9, "feet"),
  36079. default: true
  36080. },
  36081. {
  36082. name: "Macro",
  36083. height: math.unit(500, "feet")
  36084. },
  36085. {
  36086. name: "Megamacro",
  36087. height: math.unit(600, "miles")
  36088. },
  36089. {
  36090. name: "Gigamacro",
  36091. height: math.unit(30000, "miles")
  36092. },
  36093. ]
  36094. ))
  36095. characterMakers.push(() => makeCharacter(
  36096. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36097. {
  36098. anthro: {
  36099. height: math.unit(5 + 10/12, "feet"),
  36100. weight: math.unit(100, "lb"),
  36101. name: "Anthro",
  36102. image: {
  36103. source: "./media/characters/daiki/anthro.svg",
  36104. extra: 1115/1027,
  36105. bottom: 69/1184
  36106. }
  36107. },
  36108. feral: {
  36109. height: math.unit(200, "feet"),
  36110. name: "Feral",
  36111. image: {
  36112. source: "./media/characters/daiki/feral.svg",
  36113. extra: 1256/313,
  36114. bottom: 39/1295
  36115. }
  36116. },
  36117. feralHead: {
  36118. height: math.unit(171, "feet"),
  36119. name: "Feral Head",
  36120. image: {
  36121. source: "./media/characters/daiki/feral-head.svg"
  36122. }
  36123. },
  36124. },
  36125. [
  36126. {
  36127. name: "Normal",
  36128. height: math.unit(5 + 10/12, "feet"),
  36129. default: true
  36130. },
  36131. ]
  36132. ))
  36133. characterMakers.push(() => makeCharacter(
  36134. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36135. {
  36136. fullyEquippedFront: {
  36137. height: math.unit(3 + 1/12, "feet"),
  36138. weight: math.unit(24, "lb"),
  36139. name: "Fully Equipped (Front)",
  36140. image: {
  36141. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36142. extra: 687/605,
  36143. bottom: 18/705
  36144. }
  36145. },
  36146. fullyEquippedBack: {
  36147. height: math.unit(3 + 1/12, "feet"),
  36148. weight: math.unit(24, "lb"),
  36149. name: "Fully Equipped (Back)",
  36150. image: {
  36151. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36152. extra: 689/590,
  36153. bottom: 18/707
  36154. }
  36155. },
  36156. dailyWear: {
  36157. height: math.unit(3 + 1/12, "feet"),
  36158. weight: math.unit(24, "lb"),
  36159. name: "Daily Wear",
  36160. image: {
  36161. source: "./media/characters/tea-spot/daily-wear.svg",
  36162. extra: 701/620,
  36163. bottom: 21/722
  36164. }
  36165. },
  36166. maidWork: {
  36167. height: math.unit(3 + 1/12, "feet"),
  36168. weight: math.unit(24, "lb"),
  36169. name: "Maid Work",
  36170. image: {
  36171. source: "./media/characters/tea-spot/maid-work.svg",
  36172. extra: 693/609,
  36173. bottom: 15/708
  36174. }
  36175. },
  36176. },
  36177. [
  36178. {
  36179. name: "Normal",
  36180. height: math.unit(3 + 1/12, "feet"),
  36181. default: true
  36182. },
  36183. ]
  36184. ))
  36185. characterMakers.push(() => makeCharacter(
  36186. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36187. {
  36188. front: {
  36189. height: math.unit(175, "cm"),
  36190. weight: math.unit(75, "kg"),
  36191. name: "Front",
  36192. image: {
  36193. source: "./media/characters/chee/front.svg",
  36194. extra: 1796/1740,
  36195. bottom: 40/1836
  36196. }
  36197. },
  36198. },
  36199. [
  36200. {
  36201. name: "Micro-Micro",
  36202. height: math.unit(1, "nm")
  36203. },
  36204. {
  36205. name: "Micro-erst",
  36206. height: math.unit(1, "micrometer")
  36207. },
  36208. {
  36209. name: "Micro-er",
  36210. height: math.unit(1, "cm")
  36211. },
  36212. {
  36213. name: "Normal",
  36214. height: math.unit(175, "cm"),
  36215. default: true
  36216. },
  36217. {
  36218. name: "Macro",
  36219. height: math.unit(100, "m")
  36220. },
  36221. {
  36222. name: "Macro-er",
  36223. height: math.unit(1, "km")
  36224. },
  36225. {
  36226. name: "Macro-erst",
  36227. height: math.unit(10, "km")
  36228. },
  36229. {
  36230. name: "Macro-Macro",
  36231. height: math.unit(100, "km")
  36232. },
  36233. ]
  36234. ))
  36235. characterMakers.push(() => makeCharacter(
  36236. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36237. {
  36238. front: {
  36239. height: math.unit(11 + 9/12, "feet"),
  36240. weight: math.unit(935, "lb"),
  36241. name: "Front",
  36242. image: {
  36243. source: "./media/characters/kingsley/front.svg",
  36244. extra: 1803/1674,
  36245. bottom: 127/1930
  36246. }
  36247. },
  36248. },
  36249. [
  36250. {
  36251. name: "Normal",
  36252. height: math.unit(11 + 9/12, "feet"),
  36253. default: true
  36254. },
  36255. ]
  36256. ))
  36257. characterMakers.push(() => makeCharacter(
  36258. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36259. {
  36260. side: {
  36261. height: math.unit(9, "feet"),
  36262. name: "Side",
  36263. image: {
  36264. source: "./media/characters/rymel/side.svg",
  36265. extra: 792/469,
  36266. bottom: 121/913
  36267. }
  36268. },
  36269. maw: {
  36270. height: math.unit(2.4, "meters"),
  36271. name: "Maw",
  36272. image: {
  36273. source: "./media/characters/rymel/maw.svg"
  36274. }
  36275. },
  36276. },
  36277. [
  36278. {
  36279. name: "House Drake",
  36280. height: math.unit(2, "feet")
  36281. },
  36282. {
  36283. name: "Reduced",
  36284. height: math.unit(4.5, "feet")
  36285. },
  36286. {
  36287. name: "Normal",
  36288. height: math.unit(9, "feet"),
  36289. default: true
  36290. },
  36291. ]
  36292. ))
  36293. //characters
  36294. function makeCharacters() {
  36295. const results = [];
  36296. characterMakers.forEach(character => {
  36297. results.push(character());
  36298. });
  36299. return results;
  36300. }