less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

40787 lines
1.0 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "Tyrannosaurus Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. "squirrel": {
  1675. name: "Squirrel",
  1676. parents: ["rodent"]
  1677. },
  1678. "magpie": {
  1679. name: "Magpie",
  1680. parents: ["corvid"]
  1681. },
  1682. }
  1683. //species
  1684. function getSpeciesInfo(speciesList) {
  1685. let result = new Set();
  1686. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1687. result.add(entry)
  1688. });
  1689. return Array.from(result);
  1690. };
  1691. function getSpeciesInfoHelper(species) {
  1692. if (!speciesData[species]) {
  1693. console.warn(species + " doesn't exist");
  1694. return [];
  1695. }
  1696. if (speciesData[species].parents) {
  1697. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1698. } else {
  1699. return [species];
  1700. }
  1701. }
  1702. characterMakers.push(() => makeCharacter(
  1703. {
  1704. name: "Fen",
  1705. species: ["crux"],
  1706. description: {
  1707. title: "Bio",
  1708. text: "Very furry. Sheds on everything."
  1709. },
  1710. tags: [
  1711. "anthro",
  1712. "goo"
  1713. ]
  1714. },
  1715. {
  1716. back: {
  1717. height: math.unit(2.2428, "meter"),
  1718. weight: math.unit(124.738, "kg"),
  1719. name: "Back",
  1720. image: {
  1721. source: "./media/characters/fen/back.svg",
  1722. },
  1723. info: {
  1724. description: {
  1725. mode: "append",
  1726. text: "\n\nHe is not currently looking at you."
  1727. }
  1728. }
  1729. },
  1730. full: {
  1731. height: math.unit(1.34, "meter"),
  1732. weight: math.unit(225, "kg"),
  1733. name: "Full",
  1734. image: {
  1735. source: "./media/characters/fen/full.svg"
  1736. },
  1737. info: {
  1738. description: {
  1739. mode: "append",
  1740. text: "\n\nMunch."
  1741. }
  1742. }
  1743. },
  1744. kneeling: {
  1745. height: math.unit(5.4, "feet"),
  1746. weight: math.unit(124.738, "kg"),
  1747. name: "Kneeling",
  1748. image: {
  1749. source: "./media/characters/fen/kneeling.svg",
  1750. extra: 563 / 507
  1751. }
  1752. },
  1753. goo: {
  1754. height: math.unit(2.8, "feet"),
  1755. weight: math.unit(125, "kg"),
  1756. capacity: math.unit(1, "people"),
  1757. name: "Goo",
  1758. image: {
  1759. source: "./media/characters/fen/goo.svg",
  1760. bottom: 116 / 613
  1761. }
  1762. },
  1763. lounging: {
  1764. height: math.unit(6.5, "feet"),
  1765. weight: math.unit(125, "kg"),
  1766. name: "Lounging",
  1767. image: {
  1768. source: "./media/characters/fen/lounging.svg"
  1769. }
  1770. },
  1771. },
  1772. [
  1773. {
  1774. name: "Normal",
  1775. height: math.unit(2.2428, "meter")
  1776. },
  1777. {
  1778. name: "Big",
  1779. height: math.unit(12, "feet")
  1780. },
  1781. {
  1782. name: "Minimacro",
  1783. height: math.unit(40, "feet"),
  1784. default: true,
  1785. info: {
  1786. description: {
  1787. mode: "append",
  1788. text: "\n\nTOO DAMN BIG"
  1789. }
  1790. }
  1791. },
  1792. {
  1793. name: "Macro",
  1794. height: math.unit(100, "feet"),
  1795. info: {
  1796. description: {
  1797. mode: "append",
  1798. text: "\n\nTOO DAMN BIG"
  1799. }
  1800. }
  1801. },
  1802. {
  1803. name: "Macro+",
  1804. height: math.unit(300, "feet")
  1805. },
  1806. {
  1807. name: "Megamacro",
  1808. height: math.unit(2, "miles")
  1809. }
  1810. ]
  1811. ))
  1812. characterMakers.push(() => makeCharacter(
  1813. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1814. {
  1815. front: {
  1816. height: math.unit(183, "cm"),
  1817. weight: math.unit(80, "kg"),
  1818. name: "Front",
  1819. image: {
  1820. source: "./media/characters/sofia-fluttertail/front.svg",
  1821. bottom: 0.01,
  1822. extra: 2154 / 2081
  1823. }
  1824. },
  1825. frontAlt: {
  1826. height: math.unit(183, "cm"),
  1827. weight: math.unit(80, "kg"),
  1828. name: "Front (alt)",
  1829. image: {
  1830. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1831. }
  1832. },
  1833. back: {
  1834. height: math.unit(183, "cm"),
  1835. weight: math.unit(80, "kg"),
  1836. name: "Back",
  1837. image: {
  1838. source: "./media/characters/sofia-fluttertail/back.svg"
  1839. }
  1840. },
  1841. kneeling: {
  1842. height: math.unit(125, "cm"),
  1843. weight: math.unit(80, "kg"),
  1844. name: "Kneeling",
  1845. image: {
  1846. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1847. extra: 1033 / 977,
  1848. bottom: 23.7 / 1057
  1849. }
  1850. },
  1851. maw: {
  1852. height: math.unit(183 / 5, "cm"),
  1853. name: "Maw",
  1854. image: {
  1855. source: "./media/characters/sofia-fluttertail/maw.svg"
  1856. }
  1857. },
  1858. mawcloseup: {
  1859. height: math.unit(183 / 5 * 0.41, "cm"),
  1860. name: "Maw (Closeup)",
  1861. image: {
  1862. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1863. }
  1864. },
  1865. paws: {
  1866. height: math.unit(1.17, "feet"),
  1867. name: "Paws",
  1868. image: {
  1869. source: "./media/characters/sofia-fluttertail/paws.svg",
  1870. extra: 851 / 851,
  1871. bottom: 17 / 868
  1872. }
  1873. },
  1874. },
  1875. [
  1876. {
  1877. name: "Normal",
  1878. height: math.unit(1.83, "meter")
  1879. },
  1880. {
  1881. name: "Size Thief",
  1882. height: math.unit(18, "feet")
  1883. },
  1884. {
  1885. name: "50 Foot Collie",
  1886. height: math.unit(50, "feet")
  1887. },
  1888. {
  1889. name: "Macro",
  1890. height: math.unit(96, "feet"),
  1891. default: true
  1892. },
  1893. {
  1894. name: "Megamerger",
  1895. height: math.unit(650, "feet")
  1896. },
  1897. ]
  1898. ))
  1899. characterMakers.push(() => makeCharacter(
  1900. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1901. {
  1902. front: {
  1903. height: math.unit(7, "feet"),
  1904. weight: math.unit(100, "kg"),
  1905. name: "Front",
  1906. image: {
  1907. source: "./media/characters/march/front.svg",
  1908. extra: 1992/1851,
  1909. bottom: 39/2031
  1910. }
  1911. },
  1912. foot: {
  1913. height: math.unit(0.9, "feet"),
  1914. name: "Foot",
  1915. image: {
  1916. source: "./media/characters/march/foot.svg"
  1917. }
  1918. },
  1919. },
  1920. [
  1921. {
  1922. name: "Normal",
  1923. height: math.unit(7.9, "feet")
  1924. },
  1925. {
  1926. name: "Macro",
  1927. height: math.unit(220, "meters")
  1928. },
  1929. {
  1930. name: "Megamacro",
  1931. height: math.unit(2.98, "km"),
  1932. default: true
  1933. },
  1934. {
  1935. name: "Gigamacro",
  1936. height: math.unit(15963, "km")
  1937. },
  1938. {
  1939. name: "Teramacro",
  1940. height: math.unit(2980000000, "km")
  1941. },
  1942. {
  1943. name: "Examacro",
  1944. height: math.unit(250, "parsecs")
  1945. },
  1946. ]
  1947. ))
  1948. characterMakers.push(() => makeCharacter(
  1949. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1950. {
  1951. front: {
  1952. height: math.unit(6, "feet"),
  1953. weight: math.unit(60, "kg"),
  1954. name: "Front",
  1955. image: {
  1956. source: "./media/characters/noir/front.svg",
  1957. extra: 1,
  1958. bottom: 0.032
  1959. }
  1960. },
  1961. },
  1962. [
  1963. {
  1964. name: "Normal",
  1965. height: math.unit(6.6, "feet")
  1966. },
  1967. {
  1968. name: "Macro",
  1969. height: math.unit(500, "feet")
  1970. },
  1971. {
  1972. name: "Megamacro",
  1973. height: math.unit(2.5, "km"),
  1974. default: true
  1975. },
  1976. {
  1977. name: "Gigamacro",
  1978. height: math.unit(22500, "km")
  1979. },
  1980. {
  1981. name: "Teramacro",
  1982. height: math.unit(2500000000, "km")
  1983. },
  1984. {
  1985. name: "Examacro",
  1986. height: math.unit(200, "parsecs")
  1987. },
  1988. ]
  1989. ))
  1990. characterMakers.push(() => makeCharacter(
  1991. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1992. {
  1993. front: {
  1994. height: math.unit(7, "feet"),
  1995. weight: math.unit(100, "kg"),
  1996. name: "Front",
  1997. image: {
  1998. source: "./media/characters/okuri/front.svg",
  1999. extra: 1,
  2000. bottom: 0.037
  2001. }
  2002. },
  2003. back: {
  2004. height: math.unit(7, "feet"),
  2005. weight: math.unit(100, "kg"),
  2006. name: "Back",
  2007. image: {
  2008. source: "./media/characters/okuri/back.svg",
  2009. extra: 1,
  2010. bottom: 0.007
  2011. }
  2012. },
  2013. },
  2014. [
  2015. {
  2016. name: "Megamacro",
  2017. height: math.unit(100, "miles"),
  2018. default: true
  2019. },
  2020. ]
  2021. ))
  2022. characterMakers.push(() => makeCharacter(
  2023. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2024. {
  2025. front: {
  2026. height: math.unit(7, "feet"),
  2027. weight: math.unit(100, "kg"),
  2028. name: "Front",
  2029. image: {
  2030. source: "./media/characters/manny/front.svg",
  2031. extra: 1,
  2032. bottom: 0.06
  2033. }
  2034. },
  2035. back: {
  2036. height: math.unit(7, "feet"),
  2037. weight: math.unit(100, "kg"),
  2038. name: "Back",
  2039. image: {
  2040. source: "./media/characters/manny/back.svg",
  2041. extra: 1,
  2042. bottom: 0.014
  2043. }
  2044. },
  2045. },
  2046. [
  2047. {
  2048. name: "Normal",
  2049. height: math.unit(7, "feet"),
  2050. },
  2051. {
  2052. name: "Macro",
  2053. height: math.unit(78, "feet"),
  2054. default: true
  2055. },
  2056. {
  2057. name: "Macro+",
  2058. height: math.unit(300, "meters")
  2059. },
  2060. {
  2061. name: "Macro++",
  2062. height: math.unit(2400, "meters")
  2063. },
  2064. {
  2065. name: "Megamacro",
  2066. height: math.unit(5167, "meters")
  2067. },
  2068. {
  2069. name: "Gigamacro",
  2070. height: math.unit(41769, "miles")
  2071. },
  2072. ]
  2073. ))
  2074. characterMakers.push(() => makeCharacter(
  2075. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2076. {
  2077. front: {
  2078. height: math.unit(7, "feet"),
  2079. weight: math.unit(100, "kg"),
  2080. name: "Front",
  2081. image: {
  2082. source: "./media/characters/adake/front-1.svg"
  2083. }
  2084. },
  2085. frontAlt: {
  2086. height: math.unit(7, "feet"),
  2087. weight: math.unit(100, "kg"),
  2088. name: "Front (Alt)",
  2089. image: {
  2090. source: "./media/characters/adake/front-2.svg",
  2091. extra: 1,
  2092. bottom: 0.01
  2093. }
  2094. },
  2095. back: {
  2096. height: math.unit(7, "feet"),
  2097. weight: math.unit(100, "kg"),
  2098. name: "Back",
  2099. image: {
  2100. source: "./media/characters/adake/back.svg",
  2101. }
  2102. },
  2103. kneel: {
  2104. height: math.unit(5.385, "feet"),
  2105. weight: math.unit(100, "kg"),
  2106. name: "Kneeling",
  2107. image: {
  2108. source: "./media/characters/adake/kneel.svg",
  2109. bottom: 0.052
  2110. }
  2111. },
  2112. },
  2113. [
  2114. {
  2115. name: "Normal",
  2116. height: math.unit(7, "feet"),
  2117. },
  2118. {
  2119. name: "Macro",
  2120. height: math.unit(78, "feet"),
  2121. default: true
  2122. },
  2123. {
  2124. name: "Macro+",
  2125. height: math.unit(300, "meters")
  2126. },
  2127. {
  2128. name: "Macro++",
  2129. height: math.unit(2400, "meters")
  2130. },
  2131. {
  2132. name: "Megamacro",
  2133. height: math.unit(5167, "meters")
  2134. },
  2135. {
  2136. name: "Gigamacro",
  2137. height: math.unit(41769, "miles")
  2138. },
  2139. ]
  2140. ))
  2141. characterMakers.push(() => makeCharacter(
  2142. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2143. {
  2144. front: {
  2145. height: math.unit(1.65, "meters"),
  2146. weight: math.unit(50, "kg"),
  2147. name: "Front",
  2148. image: {
  2149. source: "./media/characters/elijah/front.svg",
  2150. extra: 858 / 830,
  2151. bottom: 95.5 / 953.8559
  2152. }
  2153. },
  2154. back: {
  2155. height: math.unit(1.65, "meters"),
  2156. weight: math.unit(50, "kg"),
  2157. name: "Back",
  2158. image: {
  2159. source: "./media/characters/elijah/back.svg",
  2160. extra: 895 / 850,
  2161. bottom: 5.3 / 897.956
  2162. }
  2163. },
  2164. frontNsfw: {
  2165. height: math.unit(1.65, "meters"),
  2166. weight: math.unit(50, "kg"),
  2167. name: "Front (NSFW)",
  2168. image: {
  2169. source: "./media/characters/elijah/front-nsfw.svg",
  2170. extra: 858 / 830,
  2171. bottom: 95.5 / 953.8559
  2172. }
  2173. },
  2174. backNsfw: {
  2175. height: math.unit(1.65, "meters"),
  2176. weight: math.unit(50, "kg"),
  2177. name: "Back (NSFW)",
  2178. image: {
  2179. source: "./media/characters/elijah/back-nsfw.svg",
  2180. extra: 895 / 850,
  2181. bottom: 5.3 / 897.956
  2182. }
  2183. },
  2184. dick: {
  2185. height: math.unit(1, "feet"),
  2186. name: "Dick",
  2187. image: {
  2188. source: "./media/characters/elijah/dick.svg"
  2189. }
  2190. },
  2191. beakOpen: {
  2192. height: math.unit(1.25, "feet"),
  2193. name: "Beak (Open)",
  2194. image: {
  2195. source: "./media/characters/elijah/beak-open.svg"
  2196. }
  2197. },
  2198. beakShut: {
  2199. height: math.unit(1.25, "feet"),
  2200. name: "Beak (Shut)",
  2201. image: {
  2202. source: "./media/characters/elijah/beak-shut.svg"
  2203. }
  2204. },
  2205. footFlexing: {
  2206. height: math.unit(1.61, "feet"),
  2207. name: "Foot (Flexing)",
  2208. image: {
  2209. source: "./media/characters/elijah/foot-flexing.svg"
  2210. }
  2211. },
  2212. footStepping: {
  2213. height: math.unit(1.44, "feet"),
  2214. name: "Foot (Stepping)",
  2215. image: {
  2216. source: "./media/characters/elijah/foot-stepping.svg"
  2217. }
  2218. },
  2219. plantigradeLeg: {
  2220. height: math.unit(2.34, "feet"),
  2221. name: "Plantigrade Leg",
  2222. image: {
  2223. source: "./media/characters/elijah/plantigrade-leg.svg"
  2224. }
  2225. },
  2226. plantigradeFootLeft: {
  2227. height: math.unit(0.9, "feet"),
  2228. name: "Plantigrade Foot (Left)",
  2229. image: {
  2230. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2231. }
  2232. },
  2233. plantigradeFootRight: {
  2234. height: math.unit(0.9, "feet"),
  2235. name: "Plantigrade Foot (Right)",
  2236. image: {
  2237. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2238. }
  2239. },
  2240. },
  2241. [
  2242. {
  2243. name: "Normal",
  2244. height: math.unit(1.65, "meters")
  2245. },
  2246. {
  2247. name: "Macro",
  2248. height: math.unit(55, "meters"),
  2249. default: true
  2250. },
  2251. {
  2252. name: "Macro+",
  2253. height: math.unit(105, "meters")
  2254. },
  2255. ]
  2256. ))
  2257. characterMakers.push(() => makeCharacter(
  2258. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2259. {
  2260. front: {
  2261. height: math.unit(11, "feet"),
  2262. weight: math.unit(320, "kg"),
  2263. name: "Front",
  2264. image: {
  2265. source: "./media/characters/rai/front.svg",
  2266. extra: 1802/1696,
  2267. bottom: 68/1870
  2268. }
  2269. },
  2270. frontDressed: {
  2271. height: math.unit(11, "feet"),
  2272. weight: math.unit(320, "kg"),
  2273. name: "Front (Dressed)",
  2274. image: {
  2275. source: "./media/characters/rai/front-dressed.svg",
  2276. extra: 1802/1696,
  2277. bottom: 68/1870
  2278. }
  2279. },
  2280. side: {
  2281. height: math.unit(11, "feet"),
  2282. weight: math.unit(320, "kg"),
  2283. name: "Side",
  2284. image: {
  2285. source: "./media/characters/rai/side.svg",
  2286. extra: 1789/1710,
  2287. bottom: 115/1904
  2288. }
  2289. },
  2290. back: {
  2291. height: math.unit(11, "feet"),
  2292. weight: math.unit(320, "kg"),
  2293. name: "Back",
  2294. image: {
  2295. source: "./media/characters/rai/back.svg",
  2296. extra: 1770/1707,
  2297. bottom: 28/1798
  2298. }
  2299. },
  2300. feral: {
  2301. height: math.unit(11, "feet"),
  2302. weight: math.unit(640, "kg"),
  2303. name: "Feral",
  2304. image: {
  2305. source: "./media/characters/rai/feral.svg",
  2306. extra: 1035/642,
  2307. bottom: 86/1121
  2308. }
  2309. },
  2310. dragon: {
  2311. height: math.unit(23, "feet"),
  2312. weight: math.unit(50000, "lb"),
  2313. name: "Dragon",
  2314. image: {
  2315. source: "./media/characters/rai/dragon.svg",
  2316. extra: 2498 / 2030,
  2317. bottom: 85.2 / 2584
  2318. }
  2319. },
  2320. maw: {
  2321. height: math.unit(6 / 3.81416, "feet"),
  2322. name: "Maw",
  2323. image: {
  2324. source: "./media/characters/rai/maw.svg"
  2325. }
  2326. },
  2327. },
  2328. [
  2329. {
  2330. name: "Normal",
  2331. height: math.unit(11, "feet")
  2332. },
  2333. {
  2334. name: "Macro",
  2335. height: math.unit(302, "feet"),
  2336. default: true
  2337. },
  2338. ]
  2339. ))
  2340. characterMakers.push(() => makeCharacter(
  2341. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2342. {
  2343. frontDressed: {
  2344. height: math.unit(216, "feet"),
  2345. weight: math.unit(7000000, "lb"),
  2346. name: "Front (Dressed)",
  2347. image: {
  2348. source: "./media/characters/jazzy/front-dressed.svg",
  2349. extra: 2738 / 2651,
  2350. bottom: 41.8 / 2786
  2351. }
  2352. },
  2353. backDressed: {
  2354. height: math.unit(216, "feet"),
  2355. weight: math.unit(7000000, "lb"),
  2356. name: "Back (Dressed)",
  2357. image: {
  2358. source: "./media/characters/jazzy/back-dressed.svg",
  2359. extra: 2775 / 2673,
  2360. bottom: 36.8 / 2817
  2361. }
  2362. },
  2363. front: {
  2364. height: math.unit(216, "feet"),
  2365. weight: math.unit(7000000, "lb"),
  2366. name: "Front",
  2367. image: {
  2368. source: "./media/characters/jazzy/front.svg",
  2369. extra: 2738 / 2651,
  2370. bottom: 41.8 / 2786
  2371. }
  2372. },
  2373. back: {
  2374. height: math.unit(216, "feet"),
  2375. weight: math.unit(7000000, "lb"),
  2376. name: "Back",
  2377. image: {
  2378. source: "./media/characters/jazzy/back.svg",
  2379. extra: 2775 / 2673,
  2380. bottom: 36.8 / 2817
  2381. }
  2382. },
  2383. maw: {
  2384. height: math.unit(20, "feet"),
  2385. name: "Maw",
  2386. image: {
  2387. source: "./media/characters/jazzy/maw.svg"
  2388. }
  2389. },
  2390. paws: {
  2391. height: math.unit(27.5, "feet"),
  2392. name: "Paws",
  2393. image: {
  2394. source: "./media/characters/jazzy/paws.svg"
  2395. }
  2396. },
  2397. eye: {
  2398. height: math.unit(4.4, "feet"),
  2399. name: "Eye",
  2400. image: {
  2401. source: "./media/characters/jazzy/eye.svg"
  2402. }
  2403. },
  2404. droneOffense: {
  2405. height: math.unit(9.5, "inches"),
  2406. name: "Drone (Offense)",
  2407. image: {
  2408. source: "./media/characters/jazzy/drone-offense.svg"
  2409. }
  2410. },
  2411. droneRecon: {
  2412. height: math.unit(9.5, "inches"),
  2413. name: "Drone (Recon)",
  2414. image: {
  2415. source: "./media/characters/jazzy/drone-recon.svg"
  2416. }
  2417. },
  2418. droneDefense: {
  2419. height: math.unit(9.5, "inches"),
  2420. name: "Drone (Defense)",
  2421. image: {
  2422. source: "./media/characters/jazzy/drone-defense.svg"
  2423. }
  2424. },
  2425. },
  2426. [
  2427. {
  2428. name: "Macro",
  2429. height: math.unit(216, "feet"),
  2430. default: true
  2431. },
  2432. ]
  2433. ))
  2434. characterMakers.push(() => makeCharacter(
  2435. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2436. {
  2437. front: {
  2438. height: math.unit(9 + 6/12, "feet"),
  2439. weight: math.unit(700, "lb"),
  2440. name: "Front",
  2441. image: {
  2442. source: "./media/characters/flamm/front.svg",
  2443. extra: 1751/1632,
  2444. bottom: 46/1797
  2445. }
  2446. },
  2447. buff: {
  2448. height: math.unit(9 + 6/12, "feet"),
  2449. weight: math.unit(950, "lb"),
  2450. name: "Buff",
  2451. image: {
  2452. source: "./media/characters/flamm/buff.svg",
  2453. extra: 3018/2874,
  2454. bottom: 221/3239
  2455. }
  2456. },
  2457. },
  2458. [
  2459. {
  2460. name: "Normal",
  2461. height: math.unit(9.5, "feet")
  2462. },
  2463. {
  2464. name: "Macro",
  2465. height: math.unit(200, "feet"),
  2466. default: true
  2467. },
  2468. ]
  2469. ))
  2470. characterMakers.push(() => makeCharacter(
  2471. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2472. {
  2473. front: {
  2474. height: math.unit(5 + 3/12, "feet"),
  2475. weight: math.unit(60, "kg"),
  2476. name: "Front",
  2477. image: {
  2478. source: "./media/characters/zephiro/front.svg",
  2479. extra: 2309 / 2162,
  2480. bottom: 0.069
  2481. }
  2482. },
  2483. side: {
  2484. height: math.unit(5 + 3/12, "feet"),
  2485. weight: math.unit(60, "kg"),
  2486. name: "Side",
  2487. image: {
  2488. source: "./media/characters/zephiro/side.svg",
  2489. extra: 2403 / 2279,
  2490. bottom: 0.015
  2491. }
  2492. },
  2493. back: {
  2494. height: math.unit(5 + 3/12, "feet"),
  2495. weight: math.unit(60, "kg"),
  2496. name: "Back",
  2497. image: {
  2498. source: "./media/characters/zephiro/back.svg",
  2499. extra: 2373 / 2244,
  2500. bottom: 0.013
  2501. }
  2502. },
  2503. hand: {
  2504. height: math.unit(0.68, "feet"),
  2505. name: "Hand",
  2506. image: {
  2507. source: "./media/characters/zephiro/hand.svg"
  2508. }
  2509. },
  2510. paw: {
  2511. height: math.unit(1, "feet"),
  2512. name: "Paw",
  2513. image: {
  2514. source: "./media/characters/zephiro/paw.svg"
  2515. }
  2516. },
  2517. beans: {
  2518. height: math.unit(0.93, "feet"),
  2519. name: "Beans",
  2520. image: {
  2521. source: "./media/characters/zephiro/beans.svg"
  2522. }
  2523. },
  2524. },
  2525. [
  2526. {
  2527. name: "Micro",
  2528. height: math.unit(3, "inches")
  2529. },
  2530. {
  2531. name: "Normal",
  2532. height: math.unit(5 + 3 / 12, "feet"),
  2533. default: true
  2534. },
  2535. {
  2536. name: "Macro",
  2537. height: math.unit(118, "feet")
  2538. },
  2539. ]
  2540. ))
  2541. characterMakers.push(() => makeCharacter(
  2542. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2543. {
  2544. front: {
  2545. height: math.unit(5, "feet"),
  2546. weight: math.unit(90, "kg"),
  2547. name: "Front",
  2548. image: {
  2549. source: "./media/characters/fory/front.svg",
  2550. extra: 2862 / 2674,
  2551. bottom: 180 / 3043.8
  2552. }
  2553. },
  2554. back: {
  2555. height: math.unit(5, "feet"),
  2556. weight: math.unit(90, "kg"),
  2557. name: "Back",
  2558. image: {
  2559. source: "./media/characters/fory/back.svg",
  2560. extra: 2962 / 2791,
  2561. bottom: 106 / 3071.8
  2562. }
  2563. },
  2564. foot: {
  2565. height: math.unit(2.14, "feet"),
  2566. name: "Foot",
  2567. image: {
  2568. source: "./media/characters/fory/foot.svg"
  2569. }
  2570. },
  2571. },
  2572. [
  2573. {
  2574. name: "Normal",
  2575. height: math.unit(5, "feet")
  2576. },
  2577. {
  2578. name: "Macro",
  2579. height: math.unit(50, "feet"),
  2580. default: true
  2581. },
  2582. {
  2583. name: "Megamacro",
  2584. height: math.unit(10, "miles")
  2585. },
  2586. {
  2587. name: "Gigamacro",
  2588. height: math.unit(5, "earths")
  2589. },
  2590. ]
  2591. ))
  2592. characterMakers.push(() => makeCharacter(
  2593. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2594. {
  2595. front: {
  2596. height: math.unit(7, "feet"),
  2597. weight: math.unit(90, "kg"),
  2598. name: "Front",
  2599. image: {
  2600. source: "./media/characters/kurrikage/front.svg",
  2601. extra: 1,
  2602. bottom: 0.035
  2603. }
  2604. },
  2605. back: {
  2606. height: math.unit(7, "feet"),
  2607. weight: math.unit(90, "lb"),
  2608. name: "Back",
  2609. image: {
  2610. source: "./media/characters/kurrikage/back.svg"
  2611. }
  2612. },
  2613. paw: {
  2614. height: math.unit(1.5, "feet"),
  2615. name: "Paw",
  2616. image: {
  2617. source: "./media/characters/kurrikage/paw.svg"
  2618. }
  2619. },
  2620. staff: {
  2621. height: math.unit(6.7, "feet"),
  2622. name: "Staff",
  2623. image: {
  2624. source: "./media/characters/kurrikage/staff.svg"
  2625. }
  2626. },
  2627. peek: {
  2628. height: math.unit(1.05, "feet"),
  2629. name: "Peeking",
  2630. image: {
  2631. source: "./media/characters/kurrikage/peek.svg",
  2632. bottom: 0.08
  2633. }
  2634. },
  2635. },
  2636. [
  2637. {
  2638. name: "Normal",
  2639. height: math.unit(12, "feet"),
  2640. default: true
  2641. },
  2642. {
  2643. name: "Big",
  2644. height: math.unit(20, "feet")
  2645. },
  2646. {
  2647. name: "Macro",
  2648. height: math.unit(500, "feet")
  2649. },
  2650. {
  2651. name: "Megamacro",
  2652. height: math.unit(20, "miles")
  2653. },
  2654. ]
  2655. ))
  2656. characterMakers.push(() => makeCharacter(
  2657. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2658. {
  2659. front: {
  2660. height: math.unit(6, "feet"),
  2661. weight: math.unit(75, "kg"),
  2662. name: "Front",
  2663. image: {
  2664. source: "./media/characters/shingo/front.svg",
  2665. extra: 706/681,
  2666. bottom: 11/717
  2667. }
  2668. },
  2669. frontAlt: {
  2670. height: math.unit(6, "feet"),
  2671. weight: math.unit(75, "kg"),
  2672. name: "Front (Alt)",
  2673. image: {
  2674. source: "./media/characters/shingo/front-alt.svg",
  2675. extra: 3511 / 3338,
  2676. bottom: 0.005
  2677. }
  2678. },
  2679. paw: {
  2680. height: math.unit(1, "feet"),
  2681. name: "Paw",
  2682. image: {
  2683. source: "./media/characters/shingo/paw.svg"
  2684. }
  2685. },
  2686. },
  2687. [
  2688. {
  2689. name: "Micro",
  2690. height: math.unit(4, "inches")
  2691. },
  2692. {
  2693. name: "Normal",
  2694. height: math.unit(6, "feet"),
  2695. default: true
  2696. },
  2697. {
  2698. name: "Macro",
  2699. height: math.unit(108, "feet")
  2700. },
  2701. {
  2702. name: "Macro+",
  2703. height: math.unit(1500, "feet")
  2704. },
  2705. ]
  2706. ))
  2707. characterMakers.push(() => makeCharacter(
  2708. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2709. {
  2710. side: {
  2711. height: math.unit(6, "feet"),
  2712. weight: math.unit(75, "kg"),
  2713. name: "Side",
  2714. image: {
  2715. source: "./media/characters/aigey/side.svg"
  2716. }
  2717. },
  2718. },
  2719. [
  2720. {
  2721. name: "Macro",
  2722. height: math.unit(200, "feet"),
  2723. default: true
  2724. },
  2725. {
  2726. name: "Megamacro",
  2727. height: math.unit(100, "miles")
  2728. },
  2729. ]
  2730. )
  2731. )
  2732. characterMakers.push(() => makeCharacter(
  2733. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2734. {
  2735. front: {
  2736. height: math.unit(5 + 5 / 12, "feet"),
  2737. weight: math.unit(75, "kg"),
  2738. name: "Front",
  2739. image: {
  2740. source: "./media/characters/natasha/front.svg",
  2741. extra: 859 / 824,
  2742. bottom: 23 / 879.6
  2743. }
  2744. },
  2745. frontNsfw: {
  2746. height: math.unit(5 + 5 / 12, "feet"),
  2747. weight: math.unit(75, "kg"),
  2748. name: "Front (NSFW)",
  2749. image: {
  2750. source: "./media/characters/natasha/front-nsfw.svg",
  2751. extra: 859 / 824,
  2752. bottom: 23 / 879.6
  2753. }
  2754. },
  2755. frontErect: {
  2756. height: math.unit(5 + 5 / 12, "feet"),
  2757. weight: math.unit(75, "kg"),
  2758. name: "Front (Erect)",
  2759. image: {
  2760. source: "./media/characters/natasha/front-erect.svg",
  2761. extra: 859 / 824,
  2762. bottom: 23 / 879.6
  2763. }
  2764. },
  2765. back: {
  2766. height: math.unit(5 + 5 / 12, "feet"),
  2767. weight: math.unit(75, "kg"),
  2768. name: "Back",
  2769. image: {
  2770. source: "./media/characters/natasha/back.svg",
  2771. extra: 887.9 / 852.6,
  2772. bottom: 9.7 / 896.4
  2773. }
  2774. },
  2775. backAlt: {
  2776. height: math.unit(5 + 5 / 12, "feet"),
  2777. weight: math.unit(75, "kg"),
  2778. name: "Back (Alt)",
  2779. image: {
  2780. source: "./media/characters/natasha/back-alt.svg",
  2781. extra: 1236.7 / 1192,
  2782. bottom: 22.3 / 1258.2
  2783. }
  2784. },
  2785. dick: {
  2786. height: math.unit(1.772, "feet"),
  2787. name: "Dick",
  2788. image: {
  2789. source: "./media/characters/natasha/dick.svg"
  2790. }
  2791. },
  2792. paw: {
  2793. height: math.unit(0.250, "meters"),
  2794. name: "Paw",
  2795. image: {
  2796. source: "./media/characters/natasha/paw.svg"
  2797. }
  2798. },
  2799. },
  2800. [
  2801. {
  2802. name: "Normal",
  2803. height: math.unit(5 + 5 / 12, "feet")
  2804. },
  2805. {
  2806. name: "Large",
  2807. height: math.unit(12, "feet")
  2808. },
  2809. {
  2810. name: "Macro",
  2811. height: math.unit(100, "feet"),
  2812. default: true
  2813. },
  2814. {
  2815. name: "Macro+",
  2816. height: math.unit(260, "feet")
  2817. },
  2818. {
  2819. name: "Macro++",
  2820. height: math.unit(1, "mile")
  2821. },
  2822. ]
  2823. ))
  2824. characterMakers.push(() => makeCharacter(
  2825. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2826. {
  2827. front: {
  2828. height: math.unit(6, "feet"),
  2829. weight: math.unit(75, "kg"),
  2830. name: "Front",
  2831. image: {
  2832. source: "./media/characters/malik/front.svg"
  2833. }
  2834. },
  2835. side: {
  2836. height: math.unit(6, "feet"),
  2837. weight: math.unit(75, "kg"),
  2838. name: "Side",
  2839. image: {
  2840. source: "./media/characters/malik/side.svg",
  2841. extra: 1.1539
  2842. }
  2843. },
  2844. back: {
  2845. height: math.unit(6, "feet"),
  2846. weight: math.unit(75, "kg"),
  2847. name: "Back",
  2848. image: {
  2849. source: "./media/characters/malik/back.svg"
  2850. }
  2851. },
  2852. },
  2853. [
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(156, "feet"),
  2857. default: true
  2858. },
  2859. {
  2860. name: "Macro+",
  2861. height: math.unit(1188, "feet")
  2862. },
  2863. ]
  2864. ))
  2865. characterMakers.push(() => makeCharacter(
  2866. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2867. {
  2868. front: {
  2869. height: math.unit(6, "feet"),
  2870. weight: math.unit(75, "kg"),
  2871. name: "Front",
  2872. image: {
  2873. source: "./media/characters/sefer/front.svg",
  2874. extra: 848 / 659,
  2875. bottom: 28.3 / 876.442
  2876. }
  2877. },
  2878. back: {
  2879. height: math.unit(6, "feet"),
  2880. weight: math.unit(75, "kg"),
  2881. name: "Back",
  2882. image: {
  2883. source: "./media/characters/sefer/back.svg",
  2884. extra: 864 / 695,
  2885. bottom: 10 / 871
  2886. }
  2887. },
  2888. frontDressed: {
  2889. height: math.unit(6, "feet"),
  2890. weight: math.unit(75, "kg"),
  2891. name: "Front (Dressed)",
  2892. image: {
  2893. source: "./media/characters/sefer/front-dressed.svg",
  2894. extra: 839 / 653,
  2895. bottom: 37.6 / 878
  2896. }
  2897. },
  2898. },
  2899. [
  2900. {
  2901. name: "Normal",
  2902. height: math.unit(6, "feet"),
  2903. default: true
  2904. },
  2905. ]
  2906. ))
  2907. characterMakers.push(() => makeCharacter(
  2908. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2909. {
  2910. body: {
  2911. height: math.unit(2.2428, "meter"),
  2912. weight: math.unit(124.738, "kg"),
  2913. name: "Body",
  2914. image: {
  2915. extra: 1225 / 1050,
  2916. source: "./media/characters/north/front.svg"
  2917. }
  2918. }
  2919. },
  2920. [
  2921. {
  2922. name: "Micro",
  2923. height: math.unit(4, "inches")
  2924. },
  2925. {
  2926. name: "Macro",
  2927. height: math.unit(63, "meters")
  2928. },
  2929. {
  2930. name: "Megamacro",
  2931. height: math.unit(101, "miles"),
  2932. default: true
  2933. }
  2934. ]
  2935. ))
  2936. characterMakers.push(() => makeCharacter(
  2937. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2938. {
  2939. angled: {
  2940. height: math.unit(4, "meter"),
  2941. weight: math.unit(150, "kg"),
  2942. name: "Angled",
  2943. image: {
  2944. source: "./media/characters/talan/angled-sfw.svg",
  2945. bottom: 29 / 3734
  2946. }
  2947. },
  2948. angledNsfw: {
  2949. height: math.unit(4, "meter"),
  2950. weight: math.unit(150, "kg"),
  2951. name: "Angled (NSFW)",
  2952. image: {
  2953. source: "./media/characters/talan/angled-nsfw.svg",
  2954. bottom: 29 / 3734
  2955. }
  2956. },
  2957. frontNsfw: {
  2958. height: math.unit(4, "meter"),
  2959. weight: math.unit(150, "kg"),
  2960. name: "Front (NSFW)",
  2961. image: {
  2962. source: "./media/characters/talan/front-nsfw.svg",
  2963. bottom: 29 / 3734
  2964. }
  2965. },
  2966. sideNsfw: {
  2967. height: math.unit(4, "meter"),
  2968. weight: math.unit(150, "kg"),
  2969. name: "Side (NSFW)",
  2970. image: {
  2971. source: "./media/characters/talan/side-nsfw.svg",
  2972. bottom: 29 / 3734
  2973. }
  2974. },
  2975. back: {
  2976. height: math.unit(4, "meter"),
  2977. weight: math.unit(150, "kg"),
  2978. name: "Back",
  2979. image: {
  2980. source: "./media/characters/talan/back.svg"
  2981. }
  2982. },
  2983. dickBottom: {
  2984. height: math.unit(0.621, "meter"),
  2985. name: "Dick (Bottom)",
  2986. image: {
  2987. source: "./media/characters/talan/dick-bottom.svg"
  2988. }
  2989. },
  2990. dickTop: {
  2991. height: math.unit(0.621, "meter"),
  2992. name: "Dick (Top)",
  2993. image: {
  2994. source: "./media/characters/talan/dick-top.svg"
  2995. }
  2996. },
  2997. dickSide: {
  2998. height: math.unit(0.305, "meter"),
  2999. name: "Dick (Side)",
  3000. image: {
  3001. source: "./media/characters/talan/dick-side.svg"
  3002. }
  3003. },
  3004. dickFront: {
  3005. height: math.unit(0.305, "meter"),
  3006. name: "Dick (Front)",
  3007. image: {
  3008. source: "./media/characters/talan/dick-front.svg"
  3009. }
  3010. },
  3011. },
  3012. [
  3013. {
  3014. name: "Normal",
  3015. height: math.unit(4, "meters")
  3016. },
  3017. {
  3018. name: "Macro",
  3019. height: math.unit(100, "meters")
  3020. },
  3021. {
  3022. name: "Megamacro",
  3023. height: math.unit(2, "miles"),
  3024. default: true
  3025. },
  3026. {
  3027. name: "Gigamacro",
  3028. height: math.unit(5000, "miles")
  3029. },
  3030. {
  3031. name: "Teramacro",
  3032. height: math.unit(100, "parsecs")
  3033. }
  3034. ]
  3035. ))
  3036. characterMakers.push(() => makeCharacter(
  3037. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3038. {
  3039. front: {
  3040. height: math.unit(2, "meter"),
  3041. weight: math.unit(90, "kg"),
  3042. name: "Front",
  3043. image: {
  3044. source: "./media/characters/gael'rathus/front.svg"
  3045. }
  3046. },
  3047. frontAlt: {
  3048. height: math.unit(2, "meter"),
  3049. weight: math.unit(90, "kg"),
  3050. name: "Front (alt)",
  3051. image: {
  3052. source: "./media/characters/gael'rathus/front-alt.svg"
  3053. }
  3054. },
  3055. frontAlt2: {
  3056. height: math.unit(2, "meter"),
  3057. weight: math.unit(90, "kg"),
  3058. name: "Front (alt 2)",
  3059. image: {
  3060. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3061. }
  3062. }
  3063. },
  3064. [
  3065. {
  3066. name: "Normal",
  3067. height: math.unit(9, "feet"),
  3068. default: true
  3069. },
  3070. {
  3071. name: "Large",
  3072. height: math.unit(25, "feet")
  3073. },
  3074. {
  3075. name: "Macro",
  3076. height: math.unit(0.25, "miles")
  3077. },
  3078. {
  3079. name: "Megamacro",
  3080. height: math.unit(10, "miles")
  3081. }
  3082. ]
  3083. ))
  3084. characterMakers.push(() => makeCharacter(
  3085. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3086. {
  3087. side: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(140, "kg"),
  3090. name: "Side",
  3091. image: {
  3092. source: "./media/characters/sosha/side.svg",
  3093. bottom: 0.042
  3094. }
  3095. },
  3096. },
  3097. [
  3098. {
  3099. name: "Normal",
  3100. height: math.unit(12, "feet"),
  3101. default: true
  3102. }
  3103. ]
  3104. ))
  3105. characterMakers.push(() => makeCharacter(
  3106. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3107. {
  3108. side: {
  3109. height: math.unit(5 + 5 / 12, "feet"),
  3110. weight: math.unit(170, "kg"),
  3111. name: "Side",
  3112. image: {
  3113. source: "./media/characters/runnola/side.svg",
  3114. extra: 741 / 448,
  3115. bottom: 0.05
  3116. }
  3117. },
  3118. },
  3119. [
  3120. {
  3121. name: "Small",
  3122. height: math.unit(3, "feet")
  3123. },
  3124. {
  3125. name: "Normal",
  3126. height: math.unit(5 + 5 / 12, "feet"),
  3127. default: true
  3128. },
  3129. {
  3130. name: "Big",
  3131. height: math.unit(10, "feet")
  3132. },
  3133. ]
  3134. ))
  3135. characterMakers.push(() => makeCharacter(
  3136. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3137. {
  3138. front: {
  3139. height: math.unit(2, "meter"),
  3140. weight: math.unit(50, "kg"),
  3141. name: "Front",
  3142. image: {
  3143. source: "./media/characters/kurribird/front.svg",
  3144. bottom: 0.015
  3145. }
  3146. },
  3147. frontAlt: {
  3148. height: math.unit(1.5, "meter"),
  3149. weight: math.unit(50, "kg"),
  3150. name: "Front (Alt)",
  3151. image: {
  3152. source: "./media/characters/kurribird/front-alt.svg",
  3153. extra: 1.45
  3154. }
  3155. },
  3156. },
  3157. [
  3158. {
  3159. name: "Normal",
  3160. height: math.unit(7, "feet")
  3161. },
  3162. {
  3163. name: "Big",
  3164. height: math.unit(12, "feet"),
  3165. default: true
  3166. },
  3167. {
  3168. name: "Macro",
  3169. height: math.unit(1500, "feet")
  3170. },
  3171. {
  3172. name: "Megamacro",
  3173. height: math.unit(2, "miles")
  3174. }
  3175. ]
  3176. ))
  3177. characterMakers.push(() => makeCharacter(
  3178. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3179. {
  3180. front: {
  3181. height: math.unit(2, "meter"),
  3182. weight: math.unit(80, "kg"),
  3183. name: "Front",
  3184. image: {
  3185. source: "./media/characters/elbial/front.svg",
  3186. extra: 1643 / 1556,
  3187. bottom: 60.2 / 1696
  3188. }
  3189. },
  3190. side: {
  3191. height: math.unit(2, "meter"),
  3192. weight: math.unit(80, "kg"),
  3193. name: "Side",
  3194. image: {
  3195. source: "./media/characters/elbial/side.svg",
  3196. extra: 1630 / 1565,
  3197. bottom: 71.5 / 1697
  3198. }
  3199. },
  3200. back: {
  3201. height: math.unit(2, "meter"),
  3202. weight: math.unit(80, "kg"),
  3203. name: "Back",
  3204. image: {
  3205. source: "./media/characters/elbial/back.svg",
  3206. extra: 1668 / 1595,
  3207. bottom: 5.6 / 1672
  3208. }
  3209. },
  3210. frontDressed: {
  3211. height: math.unit(2, "meter"),
  3212. weight: math.unit(80, "kg"),
  3213. name: "Front (Dressed)",
  3214. image: {
  3215. source: "./media/characters/elbial/front-dressed.svg",
  3216. extra: 1653 / 1584,
  3217. bottom: 57 / 1708
  3218. }
  3219. },
  3220. genitals: {
  3221. height: math.unit(2 / 3.367, "meter"),
  3222. name: "Genitals",
  3223. image: {
  3224. source: "./media/characters/elbial/genitals.svg"
  3225. }
  3226. },
  3227. },
  3228. [
  3229. {
  3230. name: "Large",
  3231. height: math.unit(100, "feet")
  3232. },
  3233. {
  3234. name: "Macro",
  3235. height: math.unit(500, "feet"),
  3236. default: true
  3237. },
  3238. {
  3239. name: "Megamacro",
  3240. height: math.unit(10, "miles")
  3241. },
  3242. {
  3243. name: "Gigamacro",
  3244. height: math.unit(25000, "miles")
  3245. },
  3246. {
  3247. name: "Full-Size",
  3248. height: math.unit(8000000, "gigaparsecs")
  3249. }
  3250. ]
  3251. ))
  3252. characterMakers.push(() => makeCharacter(
  3253. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3254. {
  3255. front: {
  3256. height: math.unit(2, "meter"),
  3257. weight: math.unit(60, "kg"),
  3258. name: "Front",
  3259. image: {
  3260. source: "./media/characters/noah/front.svg"
  3261. }
  3262. },
  3263. talons: {
  3264. height: math.unit(0.315, "meter"),
  3265. name: "Talons",
  3266. image: {
  3267. source: "./media/characters/noah/talons.svg"
  3268. }
  3269. }
  3270. },
  3271. [
  3272. {
  3273. name: "Large",
  3274. height: math.unit(50, "feet")
  3275. },
  3276. {
  3277. name: "Macro",
  3278. height: math.unit(750, "feet"),
  3279. default: true
  3280. },
  3281. {
  3282. name: "Megamacro",
  3283. height: math.unit(50, "miles")
  3284. },
  3285. {
  3286. name: "Gigamacro",
  3287. height: math.unit(100000, "miles")
  3288. },
  3289. {
  3290. name: "Full-Size",
  3291. height: math.unit(3000000000, "miles")
  3292. }
  3293. ]
  3294. ))
  3295. characterMakers.push(() => makeCharacter(
  3296. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3297. {
  3298. front: {
  3299. height: math.unit(2, "meter"),
  3300. weight: math.unit(80, "kg"),
  3301. name: "Front",
  3302. image: {
  3303. source: "./media/characters/natalya/front.svg"
  3304. }
  3305. },
  3306. back: {
  3307. height: math.unit(2, "meter"),
  3308. weight: math.unit(80, "kg"),
  3309. name: "Back",
  3310. image: {
  3311. source: "./media/characters/natalya/back.svg"
  3312. }
  3313. }
  3314. },
  3315. [
  3316. {
  3317. name: "Normal",
  3318. height: math.unit(150, "feet"),
  3319. default: true
  3320. },
  3321. {
  3322. name: "Megamacro",
  3323. height: math.unit(5, "miles")
  3324. },
  3325. {
  3326. name: "Full-Size",
  3327. height: math.unit(600, "kiloparsecs")
  3328. }
  3329. ]
  3330. ))
  3331. characterMakers.push(() => makeCharacter(
  3332. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3333. {
  3334. front: {
  3335. height: math.unit(2, "meter"),
  3336. weight: math.unit(50, "kg"),
  3337. name: "Front",
  3338. image: {
  3339. source: "./media/characters/erestrebah/front.svg",
  3340. extra: 208 / 193,
  3341. bottom: 0.055
  3342. }
  3343. },
  3344. back: {
  3345. height: math.unit(2, "meter"),
  3346. weight: math.unit(50, "kg"),
  3347. name: "Back",
  3348. image: {
  3349. source: "./media/characters/erestrebah/back.svg",
  3350. extra: 1.3
  3351. }
  3352. }
  3353. },
  3354. [
  3355. {
  3356. name: "Normal",
  3357. height: math.unit(10, "feet")
  3358. },
  3359. {
  3360. name: "Large",
  3361. height: math.unit(50, "feet"),
  3362. default: true
  3363. },
  3364. {
  3365. name: "Macro",
  3366. height: math.unit(300, "feet")
  3367. },
  3368. {
  3369. name: "Macro+",
  3370. height: math.unit(750, "feet")
  3371. },
  3372. {
  3373. name: "Megamacro",
  3374. height: math.unit(3, "miles")
  3375. }
  3376. ]
  3377. ))
  3378. characterMakers.push(() => makeCharacter(
  3379. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3380. {
  3381. front: {
  3382. height: math.unit(2, "meter"),
  3383. weight: math.unit(80, "kg"),
  3384. name: "Front",
  3385. image: {
  3386. source: "./media/characters/jennifer/front.svg",
  3387. bottom: 0.11,
  3388. extra: 1.16
  3389. }
  3390. },
  3391. frontAlt: {
  3392. height: math.unit(2, "meter"),
  3393. weight: math.unit(80, "kg"),
  3394. name: "Front (Alt)",
  3395. image: {
  3396. source: "./media/characters/jennifer/front-alt.svg"
  3397. }
  3398. }
  3399. },
  3400. [
  3401. {
  3402. name: "Canon Height",
  3403. height: math.unit(120, "feet"),
  3404. default: true
  3405. },
  3406. {
  3407. name: "Macro+",
  3408. height: math.unit(300, "feet")
  3409. },
  3410. {
  3411. name: "Megamacro",
  3412. height: math.unit(20000, "feet")
  3413. }
  3414. ]
  3415. ))
  3416. characterMakers.push(() => makeCharacter(
  3417. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3418. {
  3419. front: {
  3420. height: math.unit(2, "meter"),
  3421. weight: math.unit(50, "kg"),
  3422. name: "Front",
  3423. image: {
  3424. source: "./media/characters/kalista/front.svg",
  3425. extra: 1947 / 1700,
  3426. bottom: 76.6 / 1412.98
  3427. }
  3428. },
  3429. back: {
  3430. height: math.unit(2, "meter"),
  3431. weight: math.unit(50, "kg"),
  3432. name: "Back",
  3433. image: {
  3434. source: "./media/characters/kalista/back.svg",
  3435. extra: 1366 / 1156,
  3436. bottom: 33.9 / 1362.78
  3437. }
  3438. }
  3439. },
  3440. [
  3441. {
  3442. name: "Uncomfortably Small",
  3443. height: math.unit(10, "feet")
  3444. },
  3445. {
  3446. name: "Small",
  3447. height: math.unit(30, "feet")
  3448. },
  3449. {
  3450. name: "Macro",
  3451. height: math.unit(100, "feet"),
  3452. default: true
  3453. },
  3454. {
  3455. name: "Macro+",
  3456. height: math.unit(2000, "feet")
  3457. },
  3458. {
  3459. name: "True Form",
  3460. height: math.unit(8924, "miles")
  3461. }
  3462. ]
  3463. ))
  3464. characterMakers.push(() => makeCharacter(
  3465. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3466. {
  3467. front: {
  3468. height: math.unit(2, "meter"),
  3469. weight: math.unit(120, "kg"),
  3470. name: "Front",
  3471. image: {
  3472. source: "./media/characters/ggv/front.svg"
  3473. }
  3474. },
  3475. side: {
  3476. height: math.unit(2, "meter"),
  3477. weight: math.unit(120, "kg"),
  3478. name: "Side",
  3479. image: {
  3480. source: "./media/characters/ggv/side.svg"
  3481. }
  3482. }
  3483. },
  3484. [
  3485. {
  3486. name: "Extremely Puny",
  3487. height: math.unit(9 + 5 / 12, "feet")
  3488. },
  3489. {
  3490. name: "Horribly Small",
  3491. height: math.unit(47.7, "miles"),
  3492. default: true
  3493. },
  3494. {
  3495. name: "Reasonably Sized",
  3496. height: math.unit(25000, "parsecs")
  3497. },
  3498. {
  3499. name: "Slightly Uncompressed",
  3500. height: math.unit(7.77e31, "parsecs")
  3501. },
  3502. {
  3503. name: "Omniversal",
  3504. height: math.unit(1e300, "meters")
  3505. },
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3510. {
  3511. front: {
  3512. height: math.unit(2, "meter"),
  3513. weight: math.unit(75, "lb"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/napalm/front.svg"
  3517. }
  3518. },
  3519. back: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(75, "lb"),
  3522. name: "Back",
  3523. image: {
  3524. source: "./media/characters/napalm/back.svg"
  3525. }
  3526. }
  3527. },
  3528. [
  3529. {
  3530. name: "Standard",
  3531. height: math.unit(55, "feet"),
  3532. default: true
  3533. }
  3534. ]
  3535. ))
  3536. characterMakers.push(() => makeCharacter(
  3537. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3538. {
  3539. front: {
  3540. height: math.unit(7 + 5 / 6, "feet"),
  3541. weight: math.unit(325, "lb"),
  3542. name: "Front",
  3543. image: {
  3544. source: "./media/characters/asana/front.svg",
  3545. extra: 1133 / 1060,
  3546. bottom: 15.2 / 1148.6
  3547. }
  3548. },
  3549. back: {
  3550. height: math.unit(7 + 5 / 6, "feet"),
  3551. weight: math.unit(325, "lb"),
  3552. name: "Back",
  3553. image: {
  3554. source: "./media/characters/asana/back.svg",
  3555. extra: 1114 / 1043,
  3556. bottom: 5 / 1120
  3557. }
  3558. },
  3559. dressedDark: {
  3560. height: math.unit(7 + 5 / 6, "feet"),
  3561. weight: math.unit(325, "lb"),
  3562. name: "Dressed (Dark)",
  3563. image: {
  3564. source: "./media/characters/asana/dressed-dark.svg",
  3565. extra: 1133 / 1060,
  3566. bottom: 15.2 / 1148.6
  3567. }
  3568. },
  3569. dressedLight: {
  3570. height: math.unit(7 + 5 / 6, "feet"),
  3571. weight: math.unit(325, "lb"),
  3572. name: "Dressed (Light)",
  3573. image: {
  3574. source: "./media/characters/asana/dressed-light.svg",
  3575. extra: 1133 / 1060,
  3576. bottom: 15.2 / 1148.6
  3577. }
  3578. },
  3579. },
  3580. [
  3581. {
  3582. name: "Standard",
  3583. height: math.unit(7 + 5 / 6, "feet"),
  3584. default: true
  3585. },
  3586. {
  3587. name: "Large",
  3588. height: math.unit(10, "meters")
  3589. },
  3590. {
  3591. name: "Macro",
  3592. height: math.unit(2500, "meters")
  3593. },
  3594. {
  3595. name: "Megamacro",
  3596. height: math.unit(5e6, "meters")
  3597. },
  3598. {
  3599. name: "Examacro",
  3600. height: math.unit(5e12, "lightyears")
  3601. },
  3602. {
  3603. name: "Max Size",
  3604. height: math.unit(1e31, "lightyears")
  3605. }
  3606. ]
  3607. ))
  3608. characterMakers.push(() => makeCharacter(
  3609. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3610. {
  3611. front: {
  3612. height: math.unit(2, "meter"),
  3613. weight: math.unit(60, "kg"),
  3614. name: "Front",
  3615. image: {
  3616. source: "./media/characters/ebony/front.svg",
  3617. bottom: 0.03,
  3618. extra: 1045 / 810 + 0.03
  3619. }
  3620. },
  3621. side: {
  3622. height: math.unit(2, "meter"),
  3623. weight: math.unit(60, "kg"),
  3624. name: "Side",
  3625. image: {
  3626. source: "./media/characters/ebony/side.svg",
  3627. bottom: 0.03,
  3628. extra: 1045 / 810 + 0.03
  3629. }
  3630. },
  3631. back: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(60, "kg"),
  3634. name: "Back",
  3635. image: {
  3636. source: "./media/characters/ebony/back.svg",
  3637. bottom: 0.01,
  3638. extra: 1045 / 810 + 0.01
  3639. }
  3640. },
  3641. },
  3642. [
  3643. // TODO check why I did this lol
  3644. {
  3645. name: "Standard",
  3646. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3647. default: true
  3648. },
  3649. {
  3650. name: "Macro",
  3651. height: math.unit(200, "feet")
  3652. },
  3653. {
  3654. name: "Gigamacro",
  3655. height: math.unit(13000, "km")
  3656. }
  3657. ]
  3658. ))
  3659. characterMakers.push(() => makeCharacter(
  3660. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3661. {
  3662. front: {
  3663. height: math.unit(6, "feet"),
  3664. weight: math.unit(175, "lb"),
  3665. name: "Front",
  3666. image: {
  3667. source: "./media/characters/mountain/front.svg",
  3668. extra: 972 / 955,
  3669. bottom: 64 / 1036.6
  3670. }
  3671. },
  3672. back: {
  3673. height: math.unit(6, "feet"),
  3674. weight: math.unit(175, "lb"),
  3675. name: "Back",
  3676. image: {
  3677. source: "./media/characters/mountain/back.svg",
  3678. extra: 970 / 950,
  3679. bottom: 28.25 / 999
  3680. }
  3681. },
  3682. },
  3683. [
  3684. {
  3685. name: "Large",
  3686. height: math.unit(20, "meters")
  3687. },
  3688. {
  3689. name: "Macro",
  3690. height: math.unit(300, "meters")
  3691. },
  3692. {
  3693. name: "Gigamacro",
  3694. height: math.unit(10000, "km"),
  3695. default: true
  3696. },
  3697. {
  3698. name: "Examacro",
  3699. height: math.unit(10e9, "lightyears")
  3700. }
  3701. ]
  3702. ))
  3703. characterMakers.push(() => makeCharacter(
  3704. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3705. {
  3706. front: {
  3707. height: math.unit(8, "feet"),
  3708. weight: math.unit(500, "lb"),
  3709. name: "Front",
  3710. image: {
  3711. source: "./media/characters/rick/front.svg"
  3712. }
  3713. }
  3714. },
  3715. [
  3716. {
  3717. name: "Normal",
  3718. height: math.unit(8, "feet"),
  3719. default: true
  3720. },
  3721. {
  3722. name: "Macro",
  3723. height: math.unit(5, "km")
  3724. }
  3725. ]
  3726. ))
  3727. characterMakers.push(() => makeCharacter(
  3728. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3729. {
  3730. front: {
  3731. height: math.unit(8, "feet"),
  3732. weight: math.unit(120, "lb"),
  3733. name: "Front",
  3734. image: {
  3735. source: "./media/characters/ona/front.svg"
  3736. }
  3737. },
  3738. frontAlt: {
  3739. height: math.unit(8, "feet"),
  3740. weight: math.unit(120, "lb"),
  3741. name: "Front (Alt)",
  3742. image: {
  3743. source: "./media/characters/ona/front-alt.svg"
  3744. }
  3745. },
  3746. back: {
  3747. height: math.unit(8, "feet"),
  3748. weight: math.unit(120, "lb"),
  3749. name: "Back",
  3750. image: {
  3751. source: "./media/characters/ona/back.svg"
  3752. }
  3753. },
  3754. foot: {
  3755. height: math.unit(1.1, "feet"),
  3756. name: "Foot",
  3757. image: {
  3758. source: "./media/characters/ona/foot.svg"
  3759. }
  3760. }
  3761. },
  3762. [
  3763. {
  3764. name: "Megamacro",
  3765. height: math.unit(70, "km"),
  3766. default: true
  3767. },
  3768. {
  3769. name: "Gigamacro",
  3770. height: math.unit(681818, "miles")
  3771. },
  3772. {
  3773. name: "Examacro",
  3774. height: math.unit(3800000, "lightyears")
  3775. },
  3776. ]
  3777. ))
  3778. characterMakers.push(() => makeCharacter(
  3779. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3780. {
  3781. front: {
  3782. height: math.unit(12, "feet"),
  3783. weight: math.unit(3000, "lb"),
  3784. name: "Front",
  3785. image: {
  3786. source: "./media/characters/mech/front.svg",
  3787. extra: 2900 / 2770,
  3788. bottom: 110 / 3010
  3789. }
  3790. },
  3791. back: {
  3792. height: math.unit(12, "feet"),
  3793. weight: math.unit(3000, "lb"),
  3794. name: "Back",
  3795. image: {
  3796. source: "./media/characters/mech/back.svg",
  3797. extra: 3011 / 2890,
  3798. bottom: 94 / 3105
  3799. }
  3800. },
  3801. maw: {
  3802. height: math.unit(3.07, "feet"),
  3803. name: "Maw",
  3804. image: {
  3805. source: "./media/characters/mech/maw.svg"
  3806. }
  3807. },
  3808. head: {
  3809. height: math.unit(2.82, "feet"),
  3810. name: "Head",
  3811. image: {
  3812. source: "./media/characters/mech/head.svg"
  3813. }
  3814. },
  3815. dick: {
  3816. height: math.unit(1.43, "feet"),
  3817. name: "Dick",
  3818. image: {
  3819. source: "./media/characters/mech/dick.svg"
  3820. }
  3821. },
  3822. },
  3823. [
  3824. {
  3825. name: "Normal",
  3826. height: math.unit(12, "feet")
  3827. },
  3828. {
  3829. name: "Macro",
  3830. height: math.unit(300, "feet"),
  3831. default: true
  3832. },
  3833. {
  3834. name: "Macro+",
  3835. height: math.unit(1500, "feet")
  3836. },
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3841. {
  3842. front: {
  3843. height: math.unit(1.3, "meter"),
  3844. weight: math.unit(30, "kg"),
  3845. name: "Front",
  3846. image: {
  3847. source: "./media/characters/gregory/front.svg",
  3848. }
  3849. }
  3850. },
  3851. [
  3852. {
  3853. name: "Normal",
  3854. height: math.unit(1.3, "meter"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Macro",
  3859. height: math.unit(20, "meter")
  3860. }
  3861. ]
  3862. ))
  3863. characterMakers.push(() => makeCharacter(
  3864. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3865. {
  3866. front: {
  3867. height: math.unit(2.8, "meter"),
  3868. weight: math.unit(200, "kg"),
  3869. name: "Front",
  3870. image: {
  3871. source: "./media/characters/elory/front.svg",
  3872. }
  3873. }
  3874. },
  3875. [
  3876. {
  3877. name: "Normal",
  3878. height: math.unit(2.8, "meter"),
  3879. default: true
  3880. },
  3881. {
  3882. name: "Macro",
  3883. height: math.unit(38, "meter")
  3884. }
  3885. ]
  3886. ))
  3887. characterMakers.push(() => makeCharacter(
  3888. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3889. {
  3890. front: {
  3891. height: math.unit(470, "feet"),
  3892. weight: math.unit(924, "tons"),
  3893. name: "Front",
  3894. image: {
  3895. source: "./media/characters/angelpatamon/front.svg",
  3896. }
  3897. }
  3898. },
  3899. [
  3900. {
  3901. name: "Normal",
  3902. height: math.unit(470, "feet"),
  3903. default: true
  3904. },
  3905. {
  3906. name: "Deity Size I",
  3907. height: math.unit(28651.2, "km")
  3908. },
  3909. {
  3910. name: "Deity Size II",
  3911. height: math.unit(171907.2, "km")
  3912. }
  3913. ]
  3914. ))
  3915. characterMakers.push(() => makeCharacter(
  3916. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3917. {
  3918. side: {
  3919. height: math.unit(7.2, "meter"),
  3920. weight: math.unit(8.2, "tons"),
  3921. name: "Side",
  3922. image: {
  3923. source: "./media/characters/cryae/side.svg",
  3924. extra: 3500 / 1500
  3925. }
  3926. }
  3927. },
  3928. [
  3929. {
  3930. name: "Normal",
  3931. height: math.unit(7.2, "meter"),
  3932. default: true
  3933. }
  3934. ]
  3935. ))
  3936. characterMakers.push(() => makeCharacter(
  3937. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3938. {
  3939. front: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(175, "lb"),
  3942. name: "Front",
  3943. image: {
  3944. source: "./media/characters/xera/front.svg",
  3945. extra: 2377 / 1972,
  3946. bottom: 75.5 / 2452
  3947. }
  3948. },
  3949. side: {
  3950. height: math.unit(6, "feet"),
  3951. weight: math.unit(175, "lb"),
  3952. name: "Side",
  3953. image: {
  3954. source: "./media/characters/xera/side.svg",
  3955. extra: 2345 / 2019,
  3956. bottom: 39.7 / 2384
  3957. }
  3958. },
  3959. back: {
  3960. height: math.unit(6, "feet"),
  3961. weight: math.unit(175, "lb"),
  3962. name: "Back",
  3963. image: {
  3964. source: "./media/characters/xera/back.svg",
  3965. extra: 2095 / 1984,
  3966. bottom: 67 / 2166
  3967. }
  3968. },
  3969. },
  3970. [
  3971. {
  3972. name: "Small",
  3973. height: math.unit(10, "feet")
  3974. },
  3975. {
  3976. name: "Macro",
  3977. height: math.unit(500, "meters"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Macro+",
  3982. height: math.unit(10, "km")
  3983. },
  3984. {
  3985. name: "Gigamacro",
  3986. height: math.unit(25000, "km")
  3987. },
  3988. {
  3989. name: "Teramacro",
  3990. height: math.unit(3e6, "km")
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(6, "feet"),
  3999. weight: math.unit(175, "lb"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/nebula/front.svg",
  4003. extra: 2566 / 2362,
  4004. bottom: 81 / 2644
  4005. }
  4006. }
  4007. },
  4008. [
  4009. {
  4010. name: "Small",
  4011. height: math.unit(4.5, "meters")
  4012. },
  4013. {
  4014. name: "Macro",
  4015. height: math.unit(1500, "meters"),
  4016. default: true
  4017. },
  4018. {
  4019. name: "Megamacro",
  4020. height: math.unit(150, "km")
  4021. },
  4022. {
  4023. name: "Gigamacro",
  4024. height: math.unit(27000, "km")
  4025. }
  4026. ]
  4027. ))
  4028. characterMakers.push(() => makeCharacter(
  4029. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4030. {
  4031. front: {
  4032. height: math.unit(6, "feet"),
  4033. weight: math.unit(225, "lb"),
  4034. name: "Front",
  4035. image: {
  4036. source: "./media/characters/abysgar/front.svg"
  4037. }
  4038. }
  4039. },
  4040. [
  4041. {
  4042. name: "Small",
  4043. height: math.unit(4.5, "meters")
  4044. },
  4045. {
  4046. name: "Macro",
  4047. height: math.unit(1250, "meters"),
  4048. default: true
  4049. },
  4050. {
  4051. name: "Megamacro",
  4052. height: math.unit(125, "km")
  4053. },
  4054. {
  4055. name: "Gigamacro",
  4056. height: math.unit(26000, "km")
  4057. }
  4058. ]
  4059. ))
  4060. characterMakers.push(() => makeCharacter(
  4061. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4062. {
  4063. front: {
  4064. height: math.unit(6, "feet"),
  4065. weight: math.unit(180, "lb"),
  4066. name: "Front",
  4067. image: {
  4068. source: "./media/characters/yakuz/front.svg"
  4069. }
  4070. }
  4071. },
  4072. [
  4073. {
  4074. name: "Small",
  4075. height: math.unit(5, "meters")
  4076. },
  4077. {
  4078. name: "Macro",
  4079. height: math.unit(1500, "meters"),
  4080. default: true
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(200, "km")
  4085. },
  4086. {
  4087. name: "Gigamacro",
  4088. height: math.unit(100000, "km")
  4089. }
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4094. {
  4095. front: {
  4096. height: math.unit(6, "feet"),
  4097. weight: math.unit(175, "lb"),
  4098. name: "Front",
  4099. image: {
  4100. source: "./media/characters/mirova/front.svg",
  4101. extra: 3334 / 3071,
  4102. bottom: 42 / 3375.6
  4103. }
  4104. }
  4105. },
  4106. [
  4107. {
  4108. name: "Small",
  4109. height: math.unit(5, "meters")
  4110. },
  4111. {
  4112. name: "Macro",
  4113. height: math.unit(900, "meters"),
  4114. default: true
  4115. },
  4116. {
  4117. name: "Megamacro",
  4118. height: math.unit(135, "km")
  4119. },
  4120. {
  4121. name: "Gigamacro",
  4122. height: math.unit(20000, "km")
  4123. }
  4124. ]
  4125. ))
  4126. characterMakers.push(() => makeCharacter(
  4127. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4128. {
  4129. side: {
  4130. height: math.unit(28.35, "feet"),
  4131. weight: math.unit(99.75, "tons"),
  4132. name: "Side",
  4133. image: {
  4134. source: "./media/characters/asana-mech/side.svg",
  4135. extra: 923 / 699,
  4136. bottom: 50 / 975
  4137. }
  4138. },
  4139. chaingun: {
  4140. height: math.unit(7, "feet"),
  4141. weight: math.unit(2400, "lb"),
  4142. name: "Chaingun",
  4143. image: {
  4144. source: "./media/characters/asana-mech/chaingun.svg"
  4145. }
  4146. },
  4147. laser: {
  4148. height: math.unit(7.12, "feet"),
  4149. weight: math.unit(2000, "lb"),
  4150. name: "Laser",
  4151. image: {
  4152. source: "./media/characters/asana-mech/laser.svg"
  4153. }
  4154. },
  4155. },
  4156. [
  4157. {
  4158. name: "Normal",
  4159. height: math.unit(28.35, "feet"),
  4160. default: true
  4161. },
  4162. {
  4163. name: "Macro",
  4164. height: math.unit(2500, "feet")
  4165. },
  4166. {
  4167. name: "Megamacro",
  4168. height: math.unit(25, "miles")
  4169. },
  4170. {
  4171. name: "Examacro",
  4172. height: math.unit(6e8, "lightyears")
  4173. },
  4174. ]
  4175. ))
  4176. characterMakers.push(() => makeCharacter(
  4177. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4178. {
  4179. front: {
  4180. height: math.unit(5, "meters"),
  4181. weight: math.unit(1000, "kg"),
  4182. name: "Front",
  4183. image: {
  4184. source: "./media/characters/asche/front.svg",
  4185. extra: 1258 / 1190,
  4186. bottom: 47 / 1305
  4187. }
  4188. },
  4189. frontUnderwear: {
  4190. height: math.unit(5, "meters"),
  4191. weight: math.unit(1000, "kg"),
  4192. name: "Front (Underwear)",
  4193. image: {
  4194. source: "./media/characters/asche/front-underwear.svg",
  4195. extra: 1258 / 1190,
  4196. bottom: 47 / 1305
  4197. }
  4198. },
  4199. frontDressed: {
  4200. height: math.unit(5, "meters"),
  4201. weight: math.unit(1000, "kg"),
  4202. name: "Front (Dressed)",
  4203. image: {
  4204. source: "./media/characters/asche/front-dressed.svg",
  4205. extra: 1258 / 1190,
  4206. bottom: 47 / 1305
  4207. }
  4208. },
  4209. frontArmor: {
  4210. height: math.unit(5, "meters"),
  4211. weight: math.unit(1000, "kg"),
  4212. name: "Front (Armored)",
  4213. image: {
  4214. source: "./media/characters/asche/front-armored.svg",
  4215. extra: 1374 / 1308,
  4216. bottom: 23 / 1397
  4217. }
  4218. },
  4219. mp724: {
  4220. height: math.unit(0.96, "meters"),
  4221. weight: math.unit(38, "kg"),
  4222. name: "H&K MP724",
  4223. image: {
  4224. source: "./media/characters/asche/h&k-mp724.svg"
  4225. }
  4226. },
  4227. side: {
  4228. height: math.unit(5, "meters"),
  4229. weight: math.unit(1000, "kg"),
  4230. name: "Side",
  4231. image: {
  4232. source: "./media/characters/asche/side.svg",
  4233. extra: 1717 / 1609,
  4234. bottom: 0.005
  4235. }
  4236. },
  4237. back: {
  4238. height: math.unit(5, "meters"),
  4239. weight: math.unit(1000, "kg"),
  4240. name: "Back",
  4241. image: {
  4242. source: "./media/characters/asche/back.svg",
  4243. extra: 1570 / 1501
  4244. }
  4245. },
  4246. },
  4247. [
  4248. {
  4249. name: "DEFCON 5",
  4250. height: math.unit(5, "meters")
  4251. },
  4252. {
  4253. name: "DEFCON 4",
  4254. height: math.unit(500, "meters"),
  4255. default: true
  4256. },
  4257. {
  4258. name: "DEFCON 3",
  4259. height: math.unit(5, "km")
  4260. },
  4261. {
  4262. name: "DEFCON 2",
  4263. height: math.unit(500, "km")
  4264. },
  4265. {
  4266. name: "DEFCON 1",
  4267. height: math.unit(500000, "km")
  4268. },
  4269. {
  4270. name: "DEFCON 0",
  4271. height: math.unit(3, "gigaparsecs")
  4272. },
  4273. ]
  4274. ))
  4275. characterMakers.push(() => makeCharacter(
  4276. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4277. {
  4278. front: {
  4279. height: math.unit(2, "meters"),
  4280. weight: math.unit(76, "kg"),
  4281. name: "Front",
  4282. image: {
  4283. source: "./media/characters/gale/front.svg"
  4284. }
  4285. },
  4286. frontAlt1: {
  4287. height: math.unit(2, "meters"),
  4288. weight: math.unit(76, "kg"),
  4289. name: "Front (Alt 1)",
  4290. image: {
  4291. source: "./media/characters/gale/front-alt-1.svg"
  4292. }
  4293. },
  4294. frontAlt2: {
  4295. height: math.unit(2, "meters"),
  4296. weight: math.unit(76, "kg"),
  4297. name: "Front (Alt 2)",
  4298. image: {
  4299. source: "./media/characters/gale/front-alt-2.svg"
  4300. }
  4301. },
  4302. },
  4303. [
  4304. {
  4305. name: "Normal",
  4306. height: math.unit(7, "feet")
  4307. },
  4308. {
  4309. name: "Macro",
  4310. height: math.unit(150, "feet"),
  4311. default: true
  4312. },
  4313. {
  4314. name: "Macro+",
  4315. height: math.unit(300, "feet")
  4316. },
  4317. ]
  4318. ))
  4319. characterMakers.push(() => makeCharacter(
  4320. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4321. {
  4322. front: {
  4323. height: math.unit(2, "meters"),
  4324. weight: math.unit(76, "kg"),
  4325. name: "Front",
  4326. image: {
  4327. source: "./media/characters/draylen/front.svg"
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Macro",
  4334. height: math.unit(150, "feet"),
  4335. default: true
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(7 + 9 / 12, "feet"),
  4344. weight: math.unit(379, "lbs"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/chez/front.svg"
  4348. }
  4349. },
  4350. side: {
  4351. height: math.unit(7 + 9 / 12, "feet"),
  4352. weight: math.unit(379, "lbs"),
  4353. name: "Side",
  4354. image: {
  4355. source: "./media/characters/chez/side.svg"
  4356. }
  4357. }
  4358. },
  4359. [
  4360. {
  4361. name: "Normal",
  4362. height: math.unit(7 + 9 / 12, "feet"),
  4363. default: true
  4364. },
  4365. {
  4366. name: "God King",
  4367. height: math.unit(9750000, "meters")
  4368. }
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4373. {
  4374. front: {
  4375. height: math.unit(6, "feet"),
  4376. weight: math.unit(275, "lbs"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/kaylum/front.svg",
  4380. bottom: 0.01,
  4381. extra: 1166 / 1031
  4382. }
  4383. },
  4384. frontWingless: {
  4385. height: math.unit(6, "feet"),
  4386. weight: math.unit(275, "lbs"),
  4387. name: "Front (Wingless)",
  4388. image: {
  4389. source: "./media/characters/kaylum/front-wingless.svg",
  4390. bottom: 0.01,
  4391. extra: 1117 / 1031
  4392. }
  4393. }
  4394. },
  4395. [
  4396. {
  4397. name: "Normal",
  4398. height: math.unit(3.05, "meters")
  4399. },
  4400. {
  4401. name: "Master",
  4402. height: math.unit(5.5, "meters")
  4403. },
  4404. {
  4405. name: "Rampage",
  4406. height: math.unit(19, "meters")
  4407. },
  4408. {
  4409. name: "Macro Lite",
  4410. height: math.unit(37, "meters")
  4411. },
  4412. {
  4413. name: "Hyper Predator",
  4414. height: math.unit(61, "meters")
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(138, "meters"),
  4419. default: true
  4420. }
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4425. {
  4426. front: {
  4427. height: math.unit(6, "feet"),
  4428. weight: math.unit(150, "lbs"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/geta/front.svg"
  4432. }
  4433. }
  4434. },
  4435. [
  4436. {
  4437. name: "Micro",
  4438. height: math.unit(3, "inches"),
  4439. default: true
  4440. },
  4441. {
  4442. name: "Normal",
  4443. height: math.unit(5 + 5 / 12, "feet")
  4444. }
  4445. ]
  4446. ))
  4447. characterMakers.push(() => makeCharacter(
  4448. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4449. {
  4450. front: {
  4451. height: math.unit(6, "feet"),
  4452. weight: math.unit(300, "lbs"),
  4453. name: "Front",
  4454. image: {
  4455. source: "./media/characters/tyrnn/front.svg"
  4456. }
  4457. }
  4458. },
  4459. [
  4460. {
  4461. name: "Main Height",
  4462. height: math.unit(355, "feet"),
  4463. default: true
  4464. },
  4465. {
  4466. name: "Fave. Height",
  4467. height: math.unit(2400, "feet")
  4468. }
  4469. ]
  4470. ))
  4471. characterMakers.push(() => makeCharacter(
  4472. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4473. {
  4474. front: {
  4475. height: math.unit(6, "feet"),
  4476. weight: math.unit(300, "lbs"),
  4477. name: "Front",
  4478. image: {
  4479. source: "./media/characters/appledectomy/front.svg"
  4480. }
  4481. }
  4482. },
  4483. [
  4484. {
  4485. name: "Macro",
  4486. height: math.unit(2500, "feet")
  4487. },
  4488. {
  4489. name: "Megamacro",
  4490. height: math.unit(50, "miles"),
  4491. default: true
  4492. },
  4493. {
  4494. name: "Gigamacro",
  4495. height: math.unit(5000, "miles")
  4496. },
  4497. {
  4498. name: "Teramacro",
  4499. height: math.unit(250000, "miles")
  4500. },
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4505. {
  4506. front: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(200, "lbs"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/vulpes/front.svg",
  4512. extra: 573 / 543,
  4513. bottom: 0.033
  4514. }
  4515. },
  4516. side: {
  4517. height: math.unit(6, "feet"),
  4518. weight: math.unit(200, "lbs"),
  4519. name: "Side",
  4520. image: {
  4521. source: "./media/characters/vulpes/side.svg",
  4522. extra: 577 / 549,
  4523. bottom: 11 / 588
  4524. }
  4525. },
  4526. back: {
  4527. height: math.unit(6, "feet"),
  4528. weight: math.unit(200, "lbs"),
  4529. name: "Back",
  4530. image: {
  4531. source: "./media/characters/vulpes/back.svg",
  4532. extra: 573 / 549,
  4533. bottom: 20 / 593
  4534. }
  4535. },
  4536. feet: {
  4537. height: math.unit(1.276, "feet"),
  4538. name: "Feet",
  4539. image: {
  4540. source: "./media/characters/vulpes/feet.svg"
  4541. }
  4542. },
  4543. maw: {
  4544. height: math.unit(1.18, "feet"),
  4545. name: "Maw",
  4546. image: {
  4547. source: "./media/characters/vulpes/maw.svg"
  4548. }
  4549. },
  4550. },
  4551. [
  4552. {
  4553. name: "Micro",
  4554. height: math.unit(2, "inches")
  4555. },
  4556. {
  4557. name: "Normal",
  4558. height: math.unit(6.3, "feet")
  4559. },
  4560. {
  4561. name: "Macro",
  4562. height: math.unit(850, "feet")
  4563. },
  4564. {
  4565. name: "Megamacro",
  4566. height: math.unit(7500, "feet"),
  4567. default: true
  4568. },
  4569. {
  4570. name: "Gigamacro",
  4571. height: math.unit(570000, "miles")
  4572. }
  4573. ]
  4574. ))
  4575. characterMakers.push(() => makeCharacter(
  4576. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4577. {
  4578. front: {
  4579. height: math.unit(6, "feet"),
  4580. weight: math.unit(210, "lbs"),
  4581. name: "Front",
  4582. image: {
  4583. source: "./media/characters/rain-fallen/front.svg"
  4584. }
  4585. },
  4586. side: {
  4587. height: math.unit(6, "feet"),
  4588. weight: math.unit(210, "lbs"),
  4589. name: "Side",
  4590. image: {
  4591. source: "./media/characters/rain-fallen/side.svg"
  4592. }
  4593. },
  4594. back: {
  4595. height: math.unit(6, "feet"),
  4596. weight: math.unit(210, "lbs"),
  4597. name: "Back",
  4598. image: {
  4599. source: "./media/characters/rain-fallen/back.svg"
  4600. }
  4601. },
  4602. feral: {
  4603. height: math.unit(9, "feet"),
  4604. weight: math.unit(700, "lbs"),
  4605. name: "Feral",
  4606. image: {
  4607. source: "./media/characters/rain-fallen/feral.svg"
  4608. }
  4609. },
  4610. },
  4611. [
  4612. {
  4613. name: "Meddling with Mortals",
  4614. height: math.unit(8 + 8/12, "feet")
  4615. },
  4616. {
  4617. name: "Normal",
  4618. height: math.unit(5, "meter")
  4619. },
  4620. {
  4621. name: "Macro",
  4622. height: math.unit(150, "meter"),
  4623. default: true
  4624. },
  4625. {
  4626. name: "Megamacro",
  4627. height: math.unit(278e6, "meter")
  4628. },
  4629. {
  4630. name: "Gigamacro",
  4631. height: math.unit(2e9, "meter")
  4632. },
  4633. {
  4634. name: "Teramacro",
  4635. height: math.unit(8e12, "meter")
  4636. },
  4637. {
  4638. name: "Devourer",
  4639. height: math.unit(14, "zettameters")
  4640. },
  4641. {
  4642. name: "Scarlet King",
  4643. height: math.unit(18, "yottameters")
  4644. },
  4645. {
  4646. name: "Void",
  4647. height: math.unit(1e88, "yottameters")
  4648. }
  4649. ]
  4650. ))
  4651. characterMakers.push(() => makeCharacter(
  4652. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4653. {
  4654. standing: {
  4655. height: math.unit(6, "feet"),
  4656. weight: math.unit(180, "lbs"),
  4657. name: "Standing",
  4658. image: {
  4659. source: "./media/characters/zaakira/standing.svg",
  4660. extra: 1599/1504,
  4661. bottom: 39/1638
  4662. }
  4663. },
  4664. laying: {
  4665. height: math.unit(3, "feet"),
  4666. weight: math.unit(180, "lbs"),
  4667. name: "Laying",
  4668. image: {
  4669. source: "./media/characters/zaakira/laying.svg"
  4670. }
  4671. },
  4672. },
  4673. [
  4674. {
  4675. name: "Normal",
  4676. height: math.unit(12, "feet")
  4677. },
  4678. {
  4679. name: "Macro",
  4680. height: math.unit(279, "feet"),
  4681. default: true
  4682. }
  4683. ]
  4684. ))
  4685. characterMakers.push(() => makeCharacter(
  4686. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4687. {
  4688. femSfw: {
  4689. height: math.unit(8, "feet"),
  4690. weight: math.unit(350, "lb"),
  4691. name: "Fem",
  4692. image: {
  4693. source: "./media/characters/sigvald/fem-sfw.svg",
  4694. extra: 182 / 164,
  4695. bottom: 8.7 / 190.5
  4696. }
  4697. },
  4698. femNsfw: {
  4699. height: math.unit(8, "feet"),
  4700. weight: math.unit(350, "lb"),
  4701. name: "Fem (NSFW)",
  4702. image: {
  4703. source: "./media/characters/sigvald/fem-nsfw.svg",
  4704. extra: 182 / 164,
  4705. bottom: 8.7 / 190.5
  4706. }
  4707. },
  4708. maleNsfw: {
  4709. height: math.unit(8, "feet"),
  4710. weight: math.unit(350, "lb"),
  4711. name: "Male (NSFW)",
  4712. image: {
  4713. source: "./media/characters/sigvald/male-nsfw.svg",
  4714. extra: 182 / 164,
  4715. bottom: 8.7 / 190.5
  4716. }
  4717. },
  4718. hermNsfw: {
  4719. height: math.unit(8, "feet"),
  4720. weight: math.unit(350, "lb"),
  4721. name: "Herm (NSFW)",
  4722. image: {
  4723. source: "./media/characters/sigvald/herm-nsfw.svg",
  4724. extra: 182 / 164,
  4725. bottom: 8.7 / 190.5
  4726. }
  4727. },
  4728. dick: {
  4729. height: math.unit(2.36, "feet"),
  4730. name: "Dick",
  4731. image: {
  4732. source: "./media/characters/sigvald/dick.svg"
  4733. }
  4734. },
  4735. eye: {
  4736. height: math.unit(0.31, "feet"),
  4737. name: "Eye",
  4738. image: {
  4739. source: "./media/characters/sigvald/eye.svg"
  4740. }
  4741. },
  4742. mouth: {
  4743. height: math.unit(0.92, "feet"),
  4744. name: "Mouth",
  4745. image: {
  4746. source: "./media/characters/sigvald/mouth.svg"
  4747. }
  4748. },
  4749. paws: {
  4750. height: math.unit(2.2, "feet"),
  4751. name: "Paws",
  4752. image: {
  4753. source: "./media/characters/sigvald/paws.svg"
  4754. }
  4755. }
  4756. },
  4757. [
  4758. {
  4759. name: "Normal",
  4760. height: math.unit(8, "feet")
  4761. },
  4762. {
  4763. name: "Large",
  4764. height: math.unit(12, "feet")
  4765. },
  4766. {
  4767. name: "Larger",
  4768. height: math.unit(20, "feet")
  4769. },
  4770. {
  4771. name: "Macro",
  4772. height: math.unit(150, "feet")
  4773. },
  4774. {
  4775. name: "Macro+",
  4776. height: math.unit(200, "feet"),
  4777. default: true
  4778. },
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4783. {
  4784. side: {
  4785. height: math.unit(12, "feet"),
  4786. weight: math.unit(2000, "kg"),
  4787. name: "Side",
  4788. image: {
  4789. source: "./media/characters/scott/side.svg",
  4790. extra: 754 / 724,
  4791. bottom: 0.069
  4792. }
  4793. },
  4794. upright: {
  4795. height: math.unit(12, "feet"),
  4796. weight: math.unit(2000, "kg"),
  4797. name: "Upright",
  4798. image: {
  4799. source: "./media/characters/scott/upright.svg",
  4800. extra: 3881 / 3722,
  4801. bottom: 0.05
  4802. }
  4803. },
  4804. },
  4805. [
  4806. {
  4807. name: "Normal",
  4808. height: math.unit(12, "feet"),
  4809. default: true
  4810. },
  4811. ]
  4812. ))
  4813. characterMakers.push(() => makeCharacter(
  4814. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4815. {
  4816. side: {
  4817. height: math.unit(8, "meters"),
  4818. weight: math.unit(84755, "lbs"),
  4819. name: "Side",
  4820. image: {
  4821. source: "./media/characters/tobias/side.svg",
  4822. extra: 1474 / 1096,
  4823. bottom: 38.9 / 1513.1235
  4824. }
  4825. },
  4826. },
  4827. [
  4828. {
  4829. name: "Normal",
  4830. height: math.unit(8, "meters"),
  4831. default: true
  4832. },
  4833. ]
  4834. ))
  4835. characterMakers.push(() => makeCharacter(
  4836. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4837. {
  4838. front: {
  4839. height: math.unit(5.5, "feet"),
  4840. weight: math.unit(400, "lbs"),
  4841. name: "Front",
  4842. image: {
  4843. source: "./media/characters/kieran/front.svg",
  4844. extra: 2694 / 2364,
  4845. bottom: 217 / 2908
  4846. }
  4847. },
  4848. side: {
  4849. height: math.unit(5.5, "feet"),
  4850. weight: math.unit(400, "lbs"),
  4851. name: "Side",
  4852. image: {
  4853. source: "./media/characters/kieran/side.svg",
  4854. extra: 875 / 777,
  4855. bottom: 84.6 / 959
  4856. }
  4857. },
  4858. },
  4859. [
  4860. {
  4861. name: "Normal",
  4862. height: math.unit(5.5, "feet"),
  4863. default: true
  4864. },
  4865. ]
  4866. ))
  4867. characterMakers.push(() => makeCharacter(
  4868. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4869. {
  4870. side: {
  4871. height: math.unit(2, "meters"),
  4872. weight: math.unit(70, "kg"),
  4873. name: "Side",
  4874. image: {
  4875. source: "./media/characters/sanya/side.svg",
  4876. bottom: 0.02,
  4877. extra: 1.02
  4878. }
  4879. },
  4880. },
  4881. [
  4882. {
  4883. name: "Small",
  4884. height: math.unit(2, "meters")
  4885. },
  4886. {
  4887. name: "Normal",
  4888. height: math.unit(3, "meters")
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(16, "meters"),
  4893. default: true
  4894. },
  4895. ]
  4896. ))
  4897. characterMakers.push(() => makeCharacter(
  4898. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4899. {
  4900. front: {
  4901. height: math.unit(2, "meters"),
  4902. weight: math.unit(120, "kg"),
  4903. name: "Front",
  4904. image: {
  4905. source: "./media/characters/miranda/front.svg",
  4906. extra: 195 / 185,
  4907. bottom: 10.9 / 206.5
  4908. }
  4909. },
  4910. back: {
  4911. height: math.unit(2, "meters"),
  4912. weight: math.unit(120, "kg"),
  4913. name: "Back",
  4914. image: {
  4915. source: "./media/characters/miranda/back.svg",
  4916. extra: 201 / 193,
  4917. bottom: 2.3 / 203.7
  4918. }
  4919. },
  4920. },
  4921. [
  4922. {
  4923. name: "Normal",
  4924. height: math.unit(10, "feet"),
  4925. default: true
  4926. }
  4927. ]
  4928. ))
  4929. characterMakers.push(() => makeCharacter(
  4930. { name: "James", species: ["deer"], tags: ["anthro"] },
  4931. {
  4932. side: {
  4933. height: math.unit(2, "meters"),
  4934. weight: math.unit(100, "kg"),
  4935. name: "Front",
  4936. image: {
  4937. source: "./media/characters/james/front.svg",
  4938. extra: 10 / 8.5
  4939. }
  4940. },
  4941. },
  4942. [
  4943. {
  4944. name: "Normal",
  4945. height: math.unit(8.5, "feet"),
  4946. default: true
  4947. }
  4948. ]
  4949. ))
  4950. characterMakers.push(() => makeCharacter(
  4951. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4952. {
  4953. side: {
  4954. height: math.unit(9.5, "feet"),
  4955. weight: math.unit(2500, "lbs"),
  4956. name: "Side",
  4957. image: {
  4958. source: "./media/characters/heather/side.svg"
  4959. }
  4960. },
  4961. },
  4962. [
  4963. {
  4964. name: "Normal",
  4965. height: math.unit(9.5, "feet"),
  4966. default: true
  4967. }
  4968. ]
  4969. ))
  4970. characterMakers.push(() => makeCharacter(
  4971. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4972. {
  4973. side: {
  4974. height: math.unit(6.5, "feet"),
  4975. weight: math.unit(400, "lbs"),
  4976. name: "Side",
  4977. image: {
  4978. source: "./media/characters/lukas/side.svg",
  4979. extra: 7.25 / 6.5
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Normal",
  4986. height: math.unit(6.5, "feet"),
  4987. default: true
  4988. }
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4993. {
  4994. side: {
  4995. height: math.unit(5, "feet"),
  4996. weight: math.unit(3000, "lbs"),
  4997. name: "Side",
  4998. image: {
  4999. source: "./media/characters/louise/side.svg"
  5000. }
  5001. },
  5002. },
  5003. [
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(5, "feet"),
  5007. default: true
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5013. {
  5014. side: {
  5015. height: math.unit(6, "feet"),
  5016. weight: math.unit(150, "lbs"),
  5017. name: "Side",
  5018. image: {
  5019. source: "./media/characters/ramona/side.svg"
  5020. }
  5021. },
  5022. },
  5023. [
  5024. {
  5025. name: "Normal",
  5026. height: math.unit(5.3, "meters"),
  5027. default: true
  5028. },
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(20, "stories")
  5032. },
  5033. {
  5034. name: "Macro+",
  5035. height: math.unit(50, "stories")
  5036. },
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5041. {
  5042. standing: {
  5043. height: math.unit(5.75, "feet"),
  5044. weight: math.unit(160, "lbs"),
  5045. name: "Standing",
  5046. image: {
  5047. source: "./media/characters/deerpuff/standing.svg",
  5048. extra: 682 / 624
  5049. }
  5050. },
  5051. sitting: {
  5052. height: math.unit(5.75 / 1.79, "feet"),
  5053. weight: math.unit(160, "lbs"),
  5054. name: "Sitting",
  5055. image: {
  5056. source: "./media/characters/deerpuff/sitting.svg",
  5057. bottom: 44 / 400,
  5058. extra: 1
  5059. }
  5060. },
  5061. taurLaying: {
  5062. height: math.unit(6, "feet"),
  5063. weight: math.unit(400, "lbs"),
  5064. name: "Taur (Laying)",
  5065. image: {
  5066. source: "./media/characters/deerpuff/taur-laying.svg"
  5067. }
  5068. },
  5069. },
  5070. [
  5071. {
  5072. name: "Puffball",
  5073. height: math.unit(6, "inches")
  5074. },
  5075. {
  5076. name: "Normalpuff",
  5077. height: math.unit(5.75, "feet")
  5078. },
  5079. {
  5080. name: "Macropuff",
  5081. height: math.unit(1500, "feet"),
  5082. default: true
  5083. },
  5084. {
  5085. name: "Megapuff",
  5086. height: math.unit(500, "miles")
  5087. },
  5088. {
  5089. name: "Gigapuff",
  5090. height: math.unit(250000, "miles")
  5091. },
  5092. {
  5093. name: "Omegapuff",
  5094. height: math.unit(1000, "lightyears")
  5095. },
  5096. ]
  5097. ))
  5098. characterMakers.push(() => makeCharacter(
  5099. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5100. {
  5101. stomping: {
  5102. height: math.unit(6, "feet"),
  5103. weight: math.unit(170, "lbs"),
  5104. name: "Stomping",
  5105. image: {
  5106. source: "./media/characters/vivian/stomping.svg"
  5107. }
  5108. },
  5109. sitting: {
  5110. height: math.unit(6 / 1.75, "feet"),
  5111. weight: math.unit(170, "lbs"),
  5112. name: "Sitting",
  5113. image: {
  5114. source: "./media/characters/vivian/sitting.svg",
  5115. bottom: 1 / 6.4,
  5116. extra: 1,
  5117. }
  5118. },
  5119. },
  5120. [
  5121. {
  5122. name: "Normal",
  5123. height: math.unit(7, "feet"),
  5124. default: true
  5125. },
  5126. {
  5127. name: "Macro",
  5128. height: math.unit(10, "stories")
  5129. },
  5130. {
  5131. name: "Macro+",
  5132. height: math.unit(30, "stories")
  5133. },
  5134. {
  5135. name: "Megamacro",
  5136. height: math.unit(10, "miles")
  5137. },
  5138. {
  5139. name: "Megamacro+",
  5140. height: math.unit(2750000, "meters")
  5141. },
  5142. ]
  5143. ))
  5144. characterMakers.push(() => makeCharacter(
  5145. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5146. {
  5147. front: {
  5148. height: math.unit(6, "feet"),
  5149. weight: math.unit(160, "lbs"),
  5150. name: "Front",
  5151. image: {
  5152. source: "./media/characters/prince/front.svg",
  5153. extra: 3400 / 3000
  5154. }
  5155. },
  5156. jumping: {
  5157. height: math.unit(6, "feet"),
  5158. weight: math.unit(160, "lbs"),
  5159. name: "Jumping",
  5160. image: {
  5161. source: "./media/characters/prince/jump.svg",
  5162. extra: 2555 / 2134
  5163. }
  5164. },
  5165. },
  5166. [
  5167. {
  5168. name: "Normal",
  5169. height: math.unit(7.75, "feet"),
  5170. default: true
  5171. },
  5172. {
  5173. name: "Not cute",
  5174. height: math.unit(17, "feet")
  5175. },
  5176. {
  5177. name: "I said NOT",
  5178. height: math.unit(91, "feet")
  5179. },
  5180. {
  5181. name: "Please stop",
  5182. height: math.unit(560, "feet")
  5183. },
  5184. {
  5185. name: "What have you done",
  5186. height: math.unit(2200, "feet")
  5187. },
  5188. {
  5189. name: "Deer God",
  5190. height: math.unit(3.6, "miles")
  5191. },
  5192. ]
  5193. ))
  5194. characterMakers.push(() => makeCharacter(
  5195. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5196. {
  5197. standing: {
  5198. height: math.unit(6, "feet"),
  5199. weight: math.unit(300, "lbs"),
  5200. name: "Standing",
  5201. image: {
  5202. source: "./media/characters/psymon/standing.svg",
  5203. extra: 1888 / 1810,
  5204. bottom: 0.05
  5205. }
  5206. },
  5207. slithering: {
  5208. height: math.unit(6, "feet"),
  5209. weight: math.unit(300, "lbs"),
  5210. name: "Slithering",
  5211. image: {
  5212. source: "./media/characters/psymon/slithering.svg",
  5213. extra: 1330 / 1224
  5214. }
  5215. },
  5216. slitheringAlt: {
  5217. height: math.unit(6, "feet"),
  5218. weight: math.unit(300, "lbs"),
  5219. name: "Slithering (Alt)",
  5220. image: {
  5221. source: "./media/characters/psymon/slithering-alt.svg",
  5222. extra: 1330 / 1224
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(11.25, "feet"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Large",
  5234. height: math.unit(27, "feet")
  5235. },
  5236. {
  5237. name: "Giant",
  5238. height: math.unit(87, "feet")
  5239. },
  5240. {
  5241. name: "Macro",
  5242. height: math.unit(365, "feet")
  5243. },
  5244. {
  5245. name: "Megamacro",
  5246. height: math.unit(3, "miles")
  5247. },
  5248. {
  5249. name: "World Serpent",
  5250. height: math.unit(8000, "miles")
  5251. },
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5256. {
  5257. front: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(180, "lbs"),
  5260. name: "Front",
  5261. image: {
  5262. source: "./media/characters/daimos/front.svg",
  5263. extra: 4160 / 3897,
  5264. bottom: 0.021
  5265. }
  5266. }
  5267. },
  5268. [
  5269. {
  5270. name: "Normal",
  5271. height: math.unit(8, "feet"),
  5272. default: true
  5273. },
  5274. {
  5275. name: "Big Dog",
  5276. height: math.unit(22, "feet")
  5277. },
  5278. {
  5279. name: "Macro",
  5280. height: math.unit(127, "feet")
  5281. },
  5282. {
  5283. name: "Megamacro",
  5284. height: math.unit(3600, "feet")
  5285. },
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5290. {
  5291. side: {
  5292. height: math.unit(6, "feet"),
  5293. weight: math.unit(180, "lbs"),
  5294. name: "Side",
  5295. image: {
  5296. source: "./media/characters/blake/side.svg",
  5297. extra: 1212 / 1120,
  5298. bottom: 0.05
  5299. }
  5300. },
  5301. crouched: {
  5302. height: math.unit(6 * 0.57, "feet"),
  5303. weight: math.unit(180, "lbs"),
  5304. name: "Crouched",
  5305. image: {
  5306. source: "./media/characters/blake/crouched.svg",
  5307. extra: 840 / 587,
  5308. bottom: 0.04
  5309. }
  5310. },
  5311. bent: {
  5312. height: math.unit(6 * 0.75, "feet"),
  5313. weight: math.unit(180, "lbs"),
  5314. name: "Bent",
  5315. image: {
  5316. source: "./media/characters/blake/bent.svg",
  5317. extra: 592 / 544,
  5318. bottom: 0.035
  5319. }
  5320. },
  5321. },
  5322. [
  5323. {
  5324. name: "Normal",
  5325. height: math.unit(8 + 1 / 6, "feet"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Big Backside",
  5330. height: math.unit(37, "feet")
  5331. },
  5332. {
  5333. name: "Subway Shredder",
  5334. height: math.unit(72, "feet")
  5335. },
  5336. {
  5337. name: "City Carver",
  5338. height: math.unit(1675, "feet")
  5339. },
  5340. {
  5341. name: "Tectonic Tweaker",
  5342. height: math.unit(2300, "miles")
  5343. },
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5348. {
  5349. front: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(180, "lbs"),
  5352. name: "Front",
  5353. image: {
  5354. source: "./media/characters/guisetto/front.svg",
  5355. extra: 856 / 817,
  5356. bottom: 0.06
  5357. }
  5358. },
  5359. airborne: {
  5360. height: math.unit(6, "feet"),
  5361. weight: math.unit(180, "lbs"),
  5362. name: "Airborne",
  5363. image: {
  5364. source: "./media/characters/guisetto/airborne.svg",
  5365. extra: 584 / 525
  5366. }
  5367. },
  5368. },
  5369. [
  5370. {
  5371. name: "Normal",
  5372. height: math.unit(10 + 11 / 12, "feet"),
  5373. default: true
  5374. },
  5375. {
  5376. name: "Large",
  5377. height: math.unit(35, "feet")
  5378. },
  5379. {
  5380. name: "Macro",
  5381. height: math.unit(475, "feet")
  5382. },
  5383. ]
  5384. ))
  5385. characterMakers.push(() => makeCharacter(
  5386. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5387. {
  5388. front: {
  5389. height: math.unit(6, "feet"),
  5390. weight: math.unit(180, "lbs"),
  5391. name: "Front",
  5392. image: {
  5393. source: "./media/characters/luxor/front.svg",
  5394. extra: 2940 / 2152
  5395. }
  5396. },
  5397. back: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(180, "lbs"),
  5400. name: "Back",
  5401. image: {
  5402. source: "./media/characters/luxor/back.svg",
  5403. extra: 1083 / 960
  5404. }
  5405. },
  5406. },
  5407. [
  5408. {
  5409. name: "Normal",
  5410. height: math.unit(5 + 5 / 6, "feet"),
  5411. default: true
  5412. },
  5413. {
  5414. name: "Lamp",
  5415. height: math.unit(50, "feet")
  5416. },
  5417. {
  5418. name: "Lämp",
  5419. height: math.unit(300, "feet")
  5420. },
  5421. {
  5422. name: "The sun is a lamp",
  5423. height: math.unit(250000, "miles")
  5424. },
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5429. {
  5430. front: {
  5431. height: math.unit(6, "feet"),
  5432. weight: math.unit(50, "lbs"),
  5433. name: "Front",
  5434. image: {
  5435. source: "./media/characters/huoyan/front.svg"
  5436. }
  5437. },
  5438. side: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(180, "lbs"),
  5441. name: "Side",
  5442. image: {
  5443. source: "./media/characters/huoyan/side.svg"
  5444. }
  5445. },
  5446. },
  5447. [
  5448. {
  5449. name: "Chef",
  5450. height: math.unit(9, "feet")
  5451. },
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(65, "feet"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Macro",
  5459. height: math.unit(780, "feet")
  5460. },
  5461. {
  5462. name: "Flaming Mountain",
  5463. height: math.unit(4.8, "miles")
  5464. },
  5465. {
  5466. name: "Celestial",
  5467. height: math.unit(765000, "miles")
  5468. },
  5469. ]
  5470. ))
  5471. characterMakers.push(() => makeCharacter(
  5472. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5473. {
  5474. front: {
  5475. height: math.unit(5 + 3 / 4, "feet"),
  5476. weight: math.unit(120, "lbs"),
  5477. name: "Front",
  5478. image: {
  5479. source: "./media/characters/tails/front.svg"
  5480. }
  5481. }
  5482. },
  5483. [
  5484. {
  5485. name: "Normal",
  5486. height: math.unit(5 + 3 / 4, "feet"),
  5487. default: true
  5488. }
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5493. {
  5494. front: {
  5495. height: math.unit(4, "feet"),
  5496. weight: math.unit(50, "lbs"),
  5497. name: "Front",
  5498. image: {
  5499. source: "./media/characters/rainy/front.svg"
  5500. }
  5501. }
  5502. },
  5503. [
  5504. {
  5505. name: "Macro",
  5506. height: math.unit(800, "feet"),
  5507. default: true
  5508. }
  5509. ]
  5510. ))
  5511. characterMakers.push(() => makeCharacter(
  5512. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5513. {
  5514. front: {
  5515. height: math.unit(6, "feet"),
  5516. weight: math.unit(150, "lbs"),
  5517. name: "Front",
  5518. image: {
  5519. source: "./media/characters/rainier/front.svg"
  5520. }
  5521. }
  5522. },
  5523. [
  5524. {
  5525. name: "Micro",
  5526. height: math.unit(2, "mm"),
  5527. default: true
  5528. }
  5529. ]
  5530. ))
  5531. characterMakers.push(() => makeCharacter(
  5532. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5533. {
  5534. front: {
  5535. height: math.unit(8 + 4/12, "feet"),
  5536. name: "Front",
  5537. image: {
  5538. source: "./media/characters/andy-renard/front.svg",
  5539. extra: 1839/1726,
  5540. bottom: 134/1973
  5541. }
  5542. },
  5543. back: {
  5544. height: math.unit(8 + 4/12, "feet"),
  5545. name: "Back",
  5546. image: {
  5547. source: "./media/characters/andy-renard/back.svg",
  5548. extra: 1838/1710,
  5549. bottom: 105/1943
  5550. }
  5551. },
  5552. },
  5553. [
  5554. {
  5555. name: "Tall",
  5556. height: math.unit(8 + 4/12, "feet")
  5557. },
  5558. {
  5559. name: "Mini Macro",
  5560. height: math.unit(15, "feet"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(100, "feet")
  5566. },
  5567. {
  5568. name: "Mega Macro",
  5569. height: math.unit(1000, "feet")
  5570. },
  5571. {
  5572. name: "Giga Macro",
  5573. height: math.unit(10, "miles")
  5574. },
  5575. {
  5576. name: "God Macro",
  5577. height: math.unit(1, "multiverse")
  5578. },
  5579. ]
  5580. ))
  5581. characterMakers.push(() => makeCharacter(
  5582. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5583. {
  5584. front: {
  5585. height: math.unit(6, "feet"),
  5586. weight: math.unit(210, "lbs"),
  5587. name: "Front",
  5588. image: {
  5589. source: "./media/characters/cimmaron/front-sfw.svg",
  5590. extra: 701 / 676,
  5591. bottom: 0.046
  5592. }
  5593. },
  5594. back: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(210, "lbs"),
  5597. name: "Back",
  5598. image: {
  5599. source: "./media/characters/cimmaron/back-sfw.svg",
  5600. extra: 701 / 676,
  5601. bottom: 0.046
  5602. }
  5603. },
  5604. frontNsfw: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(210, "lbs"),
  5607. name: "Front (NSFW)",
  5608. image: {
  5609. source: "./media/characters/cimmaron/front-nsfw.svg",
  5610. extra: 701 / 676,
  5611. bottom: 0.046
  5612. }
  5613. },
  5614. backNsfw: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(210, "lbs"),
  5617. name: "Back (NSFW)",
  5618. image: {
  5619. source: "./media/characters/cimmaron/back-nsfw.svg",
  5620. extra: 701 / 676,
  5621. bottom: 0.046
  5622. }
  5623. },
  5624. dick: {
  5625. height: math.unit(1.714, "feet"),
  5626. name: "Dick",
  5627. image: {
  5628. source: "./media/characters/cimmaron/dick.svg"
  5629. }
  5630. },
  5631. },
  5632. [
  5633. {
  5634. name: "Normal",
  5635. height: math.unit(6, "feet"),
  5636. default: true
  5637. },
  5638. {
  5639. name: "Macro Mayor",
  5640. height: math.unit(350, "meters")
  5641. },
  5642. ]
  5643. ))
  5644. characterMakers.push(() => makeCharacter(
  5645. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5646. {
  5647. front: {
  5648. height: math.unit(6, "feet"),
  5649. weight: math.unit(200, "lbs"),
  5650. name: "Front",
  5651. image: {
  5652. source: "./media/characters/akari/front.svg",
  5653. extra: 962 / 901,
  5654. bottom: 0.04
  5655. }
  5656. }
  5657. },
  5658. [
  5659. {
  5660. name: "Micro",
  5661. height: math.unit(5, "inches"),
  5662. default: true
  5663. },
  5664. {
  5665. name: "Normal",
  5666. height: math.unit(7, "feet")
  5667. },
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5672. {
  5673. front: {
  5674. height: math.unit(6, "feet"),
  5675. weight: math.unit(140, "lbs"),
  5676. name: "Front",
  5677. image: {
  5678. source: "./media/characters/cynosura/front.svg",
  5679. extra: 896 / 847
  5680. }
  5681. },
  5682. back: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(140, "lbs"),
  5685. name: "Back",
  5686. image: {
  5687. source: "./media/characters/cynosura/back.svg",
  5688. extra: 1365 / 1250
  5689. }
  5690. },
  5691. },
  5692. [
  5693. {
  5694. name: "Micro",
  5695. height: math.unit(4, "inches")
  5696. },
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(5.75, "feet"),
  5700. default: true
  5701. },
  5702. {
  5703. name: "Tall",
  5704. height: math.unit(10, "feet")
  5705. },
  5706. {
  5707. name: "Big",
  5708. height: math.unit(20, "feet")
  5709. },
  5710. {
  5711. name: "Macro",
  5712. height: math.unit(50, "feet")
  5713. },
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5718. {
  5719. front: {
  5720. height: math.unit(13 + 2/12, "feet"),
  5721. weight: math.unit(800, "kg"),
  5722. name: "Front",
  5723. image: {
  5724. source: "./media/characters/gin/front.svg",
  5725. extra: 1312/1191,
  5726. bottom: 45/1357
  5727. }
  5728. },
  5729. mouth: {
  5730. height: math.unit(2.39 * 1.8, "feet"),
  5731. name: "Mouth",
  5732. image: {
  5733. source: "./media/characters/gin/mouth.svg"
  5734. }
  5735. },
  5736. hand: {
  5737. height: math.unit(1.57 * 2.19, "feet"),
  5738. name: "Hand",
  5739. image: {
  5740. source: "./media/characters/gin/hand.svg"
  5741. }
  5742. },
  5743. foot: {
  5744. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5745. name: "Foot",
  5746. image: {
  5747. source: "./media/characters/gin/foot.svg"
  5748. }
  5749. },
  5750. sole: {
  5751. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5752. name: "Sole",
  5753. image: {
  5754. source: "./media/characters/gin/sole.svg"
  5755. }
  5756. },
  5757. },
  5758. [
  5759. {
  5760. name: "Very Small",
  5761. height: math.unit(13 + 2 / 12, "feet")
  5762. },
  5763. {
  5764. name: "Micro",
  5765. height: math.unit(600, "miles")
  5766. },
  5767. {
  5768. name: "Regular",
  5769. height: math.unit(20, "earths"),
  5770. default: true
  5771. },
  5772. {
  5773. name: "Macro",
  5774. height: math.unit(2.2, "solarradii")
  5775. },
  5776. {
  5777. name: "Teramacro",
  5778. height: math.unit(1.2, "galaxies")
  5779. },
  5780. {
  5781. name: "Omegamacro",
  5782. height: math.unit(200, "universes")
  5783. },
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(6 + 1 / 6, "feet"),
  5791. weight: math.unit(178, "lbs"),
  5792. name: "Front",
  5793. image: {
  5794. source: "./media/characters/guy/front.svg"
  5795. }
  5796. }
  5797. },
  5798. [
  5799. {
  5800. name: "Normal",
  5801. height: math.unit(6 + 1 / 6, "feet"),
  5802. default: true
  5803. },
  5804. {
  5805. name: "Large",
  5806. height: math.unit(25 + 7 / 12, "feet")
  5807. },
  5808. {
  5809. name: "Macro",
  5810. height: math.unit(60 + 9 / 12, "feet")
  5811. },
  5812. {
  5813. name: "Macro+",
  5814. height: math.unit(246, "feet")
  5815. },
  5816. {
  5817. name: "Macro++",
  5818. height: math.unit(878, "feet")
  5819. }
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(9, "feet"),
  5827. weight: math.unit(800, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/tiberius/front.svg",
  5831. extra: 2295 / 2071
  5832. }
  5833. },
  5834. back: {
  5835. height: math.unit(9, "feet"),
  5836. weight: math.unit(800, "lbs"),
  5837. name: "Back",
  5838. image: {
  5839. source: "./media/characters/tiberius/back.svg",
  5840. extra: 2373 / 2160
  5841. }
  5842. },
  5843. },
  5844. [
  5845. {
  5846. name: "Normal",
  5847. height: math.unit(9, "feet"),
  5848. default: true
  5849. }
  5850. ]
  5851. ))
  5852. characterMakers.push(() => makeCharacter(
  5853. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5854. {
  5855. front: {
  5856. height: math.unit(6, "feet"),
  5857. weight: math.unit(600, "lbs"),
  5858. name: "Front",
  5859. image: {
  5860. source: "./media/characters/surgo/front.svg",
  5861. extra: 3591 / 2227
  5862. }
  5863. },
  5864. back: {
  5865. height: math.unit(6, "feet"),
  5866. weight: math.unit(600, "lbs"),
  5867. name: "Back",
  5868. image: {
  5869. source: "./media/characters/surgo/back.svg",
  5870. extra: 3557 / 2228
  5871. }
  5872. },
  5873. laying: {
  5874. height: math.unit(6 * 0.85, "feet"),
  5875. weight: math.unit(600, "lbs"),
  5876. name: "Laying",
  5877. image: {
  5878. source: "./media/characters/surgo/laying.svg"
  5879. }
  5880. },
  5881. },
  5882. [
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(6, "feet"),
  5886. default: true
  5887. }
  5888. ]
  5889. ))
  5890. characterMakers.push(() => makeCharacter(
  5891. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5892. {
  5893. side: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(150, "lbs"),
  5896. name: "Side",
  5897. image: {
  5898. source: "./media/characters/cibus/side.svg",
  5899. extra: 800 / 400
  5900. }
  5901. },
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(6, "feet"),
  5907. default: true
  5908. }
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5913. {
  5914. front: {
  5915. height: math.unit(6, "feet"),
  5916. weight: math.unit(240, "lbs"),
  5917. name: "Front",
  5918. image: {
  5919. source: "./media/characters/nibbles/front.svg"
  5920. }
  5921. },
  5922. side: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(240, "lbs"),
  5925. name: "Side",
  5926. image: {
  5927. source: "./media/characters/nibbles/side.svg"
  5928. }
  5929. },
  5930. },
  5931. [
  5932. {
  5933. name: "Normal",
  5934. height: math.unit(9, "feet"),
  5935. default: true
  5936. }
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5941. {
  5942. side: {
  5943. height: math.unit(5 + 1 / 6, "feet"),
  5944. weight: math.unit(130, "lbs"),
  5945. name: "Side",
  5946. image: {
  5947. source: "./media/characters/rikky/side.svg",
  5948. extra: 851 / 801
  5949. }
  5950. },
  5951. },
  5952. [
  5953. {
  5954. name: "Normal",
  5955. height: math.unit(5 + 1 / 6, "feet")
  5956. },
  5957. {
  5958. name: "Macro",
  5959. height: math.unit(152, "feet"),
  5960. default: true
  5961. },
  5962. {
  5963. name: "Megamacro",
  5964. height: math.unit(7, "miles")
  5965. }
  5966. ]
  5967. ))
  5968. characterMakers.push(() => makeCharacter(
  5969. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5970. {
  5971. side: {
  5972. height: math.unit(370, "cm"),
  5973. weight: math.unit(350, "lbs"),
  5974. name: "Side",
  5975. image: {
  5976. source: "./media/characters/malfressa/side.svg"
  5977. }
  5978. },
  5979. walking: {
  5980. height: math.unit(370, "cm"),
  5981. weight: math.unit(350, "lbs"),
  5982. name: "Walking",
  5983. image: {
  5984. source: "./media/characters/malfressa/walking.svg"
  5985. }
  5986. },
  5987. feral: {
  5988. height: math.unit(2500, "cm"),
  5989. weight: math.unit(100000, "lbs"),
  5990. name: "Feral",
  5991. image: {
  5992. source: "./media/characters/malfressa/feral.svg",
  5993. extra: 2108 / 837,
  5994. bottom: 0.02
  5995. }
  5996. },
  5997. },
  5998. [
  5999. {
  6000. name: "Normal",
  6001. height: math.unit(370, "cm")
  6002. },
  6003. {
  6004. name: "Macro",
  6005. height: math.unit(300, "meters"),
  6006. default: true
  6007. }
  6008. ]
  6009. ))
  6010. characterMakers.push(() => makeCharacter(
  6011. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6012. {
  6013. front: {
  6014. height: math.unit(6, "feet"),
  6015. weight: math.unit(60, "kg"),
  6016. name: "Front",
  6017. image: {
  6018. source: "./media/characters/jaro/front.svg"
  6019. }
  6020. },
  6021. back: {
  6022. height: math.unit(6, "feet"),
  6023. weight: math.unit(60, "kg"),
  6024. name: "Back",
  6025. image: {
  6026. source: "./media/characters/jaro/back.svg"
  6027. }
  6028. },
  6029. },
  6030. [
  6031. {
  6032. name: "Micro",
  6033. height: math.unit(7, "inches")
  6034. },
  6035. {
  6036. name: "Normal",
  6037. height: math.unit(5.5, "feet"),
  6038. default: true
  6039. },
  6040. {
  6041. name: "Minimacro",
  6042. height: math.unit(20, "feet")
  6043. },
  6044. {
  6045. name: "Macro",
  6046. height: math.unit(200, "meters")
  6047. }
  6048. ]
  6049. ))
  6050. characterMakers.push(() => makeCharacter(
  6051. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6052. {
  6053. front: {
  6054. height: math.unit(6, "feet"),
  6055. weight: math.unit(195, "lb"),
  6056. name: "Front",
  6057. image: {
  6058. source: "./media/characters/rogue/front.svg"
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(90, "feet"),
  6066. default: true
  6067. },
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6072. {
  6073. front: {
  6074. height: math.unit(5 + 8 / 12, "feet"),
  6075. weight: math.unit(140, "lb"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/piper/front.svg",
  6079. extra: 3948/3655,
  6080. bottom: 0/3948
  6081. }
  6082. },
  6083. },
  6084. [
  6085. {
  6086. name: "Micro",
  6087. height: math.unit(2, "inches")
  6088. },
  6089. {
  6090. name: "Normal",
  6091. height: math.unit(5 + 8 / 12, "feet")
  6092. },
  6093. {
  6094. name: "Macro",
  6095. height: math.unit(250, "feet"),
  6096. default: true
  6097. },
  6098. {
  6099. name: "Megamacro",
  6100. height: math.unit(7, "miles")
  6101. },
  6102. ]
  6103. ))
  6104. characterMakers.push(() => makeCharacter(
  6105. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6106. {
  6107. front: {
  6108. height: math.unit(6, "feet"),
  6109. weight: math.unit(220, "lb"),
  6110. name: "Front",
  6111. image: {
  6112. source: "./media/characters/gemini/front.svg"
  6113. }
  6114. },
  6115. back: {
  6116. height: math.unit(6, "feet"),
  6117. weight: math.unit(220, "lb"),
  6118. name: "Back",
  6119. image: {
  6120. source: "./media/characters/gemini/back.svg"
  6121. }
  6122. },
  6123. kneeling: {
  6124. height: math.unit(6 / 1.5, "feet"),
  6125. weight: math.unit(220, "lb"),
  6126. name: "Kneeling",
  6127. image: {
  6128. source: "./media/characters/gemini/kneeling.svg",
  6129. bottom: 0.02
  6130. }
  6131. },
  6132. },
  6133. [
  6134. {
  6135. name: "Macro",
  6136. height: math.unit(300, "meters"),
  6137. default: true
  6138. },
  6139. {
  6140. name: "Megamacro",
  6141. height: math.unit(6900, "meters")
  6142. },
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6147. {
  6148. anthro: {
  6149. height: math.unit(2.35, "meters"),
  6150. weight: math.unit(73, "kg"),
  6151. name: "Anthro",
  6152. image: {
  6153. source: "./media/characters/alicia/anthro.svg",
  6154. extra: 2571 / 2385,
  6155. bottom: 75 / 2648
  6156. }
  6157. },
  6158. paw: {
  6159. height: math.unit(1.32, "feet"),
  6160. name: "Paw",
  6161. image: {
  6162. source: "./media/characters/alicia/paw.svg"
  6163. }
  6164. },
  6165. feral: {
  6166. height: math.unit(1.69, "meters"),
  6167. weight: math.unit(73, "kg"),
  6168. name: "Feral",
  6169. image: {
  6170. source: "./media/characters/alicia/feral.svg",
  6171. extra: 2123 / 1715,
  6172. bottom: 222 / 2349
  6173. }
  6174. },
  6175. },
  6176. [
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(2.35, "meters")
  6180. },
  6181. {
  6182. name: "Macro",
  6183. height: math.unit(60, "meters"),
  6184. default: true
  6185. },
  6186. {
  6187. name: "Megamacro",
  6188. height: math.unit(10000, "kilometers")
  6189. },
  6190. ]
  6191. ))
  6192. characterMakers.push(() => makeCharacter(
  6193. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6194. {
  6195. front: {
  6196. height: math.unit(7, "feet"),
  6197. weight: math.unit(250, "lbs"),
  6198. name: "Front",
  6199. image: {
  6200. source: "./media/characters/archy/front.svg"
  6201. }
  6202. }
  6203. },
  6204. [
  6205. {
  6206. name: "Micro",
  6207. height: math.unit(1, "inch")
  6208. },
  6209. {
  6210. name: "Shorty",
  6211. height: math.unit(5, "feet")
  6212. },
  6213. {
  6214. name: "Normal",
  6215. height: math.unit(7, "feet")
  6216. },
  6217. {
  6218. name: "Macro",
  6219. height: math.unit(600, "meters"),
  6220. default: true
  6221. },
  6222. {
  6223. name: "Megamacro",
  6224. height: math.unit(1, "mile")
  6225. },
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(1.65, "meters"),
  6233. weight: math.unit(74, "kg"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/berri/front.svg",
  6237. extra: 857 / 837,
  6238. bottom: 18 / 877
  6239. }
  6240. },
  6241. bum: {
  6242. height: math.unit(1.46, "feet"),
  6243. name: "Bum",
  6244. image: {
  6245. source: "./media/characters/berri/bum.svg"
  6246. }
  6247. },
  6248. mouth: {
  6249. height: math.unit(0.44, "feet"),
  6250. name: "Mouth",
  6251. image: {
  6252. source: "./media/characters/berri/mouth.svg"
  6253. }
  6254. },
  6255. paw: {
  6256. height: math.unit(0.826, "feet"),
  6257. name: "Paw",
  6258. image: {
  6259. source: "./media/characters/berri/paw.svg"
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Normal",
  6266. height: math.unit(1.65, "meters")
  6267. },
  6268. {
  6269. name: "Macro",
  6270. height: math.unit(60, "m"),
  6271. default: true
  6272. },
  6273. {
  6274. name: "Megamacro",
  6275. height: math.unit(9.213, "km")
  6276. },
  6277. {
  6278. name: "Planet Eater",
  6279. height: math.unit(489, "megameters")
  6280. },
  6281. {
  6282. name: "Teramacro",
  6283. height: math.unit(2471635000000, "meters")
  6284. },
  6285. {
  6286. name: "Examacro",
  6287. height: math.unit(8.0624e+26, "meters")
  6288. }
  6289. ]
  6290. ))
  6291. characterMakers.push(() => makeCharacter(
  6292. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6293. {
  6294. front: {
  6295. height: math.unit(1.72, "meters"),
  6296. weight: math.unit(68, "kg"),
  6297. name: "Front",
  6298. image: {
  6299. source: "./media/characters/lexi/front.svg"
  6300. }
  6301. }
  6302. },
  6303. [
  6304. {
  6305. name: "Very Smol",
  6306. height: math.unit(10, "mm")
  6307. },
  6308. {
  6309. name: "Micro",
  6310. height: math.unit(6.8, "cm"),
  6311. default: true
  6312. },
  6313. {
  6314. name: "Normal",
  6315. height: math.unit(1.72, "m")
  6316. }
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6321. {
  6322. front: {
  6323. height: math.unit(1.69, "meters"),
  6324. weight: math.unit(68, "kg"),
  6325. name: "Front",
  6326. image: {
  6327. source: "./media/characters/martin/front.svg",
  6328. extra: 596 / 581
  6329. }
  6330. }
  6331. },
  6332. [
  6333. {
  6334. name: "Micro",
  6335. height: math.unit(6.85, "cm"),
  6336. default: true
  6337. },
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(1.69, "m")
  6341. }
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6346. {
  6347. front: {
  6348. height: math.unit(1.69, "meters"),
  6349. weight: math.unit(68, "kg"),
  6350. name: "Front",
  6351. image: {
  6352. source: "./media/characters/juno/front.svg"
  6353. }
  6354. }
  6355. },
  6356. [
  6357. {
  6358. name: "Micro",
  6359. height: math.unit(7, "cm")
  6360. },
  6361. {
  6362. name: "Normal",
  6363. height: math.unit(1.89, "m")
  6364. },
  6365. {
  6366. name: "Macro",
  6367. height: math.unit(353, "meters"),
  6368. default: true
  6369. }
  6370. ]
  6371. ))
  6372. characterMakers.push(() => makeCharacter(
  6373. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6374. {
  6375. front: {
  6376. height: math.unit(1.93, "meters"),
  6377. weight: math.unit(83, "kg"),
  6378. name: "Front",
  6379. image: {
  6380. source: "./media/characters/samantha/front.svg"
  6381. }
  6382. },
  6383. frontClothed: {
  6384. height: math.unit(1.93, "meters"),
  6385. weight: math.unit(83, "kg"),
  6386. name: "Front (Clothed)",
  6387. image: {
  6388. source: "./media/characters/samantha/front-clothed.svg"
  6389. }
  6390. },
  6391. back: {
  6392. height: math.unit(1.93, "meters"),
  6393. weight: math.unit(83, "kg"),
  6394. name: "Back",
  6395. image: {
  6396. source: "./media/characters/samantha/back.svg"
  6397. }
  6398. },
  6399. },
  6400. [
  6401. {
  6402. name: "Normal",
  6403. height: math.unit(1.93, "m")
  6404. },
  6405. {
  6406. name: "Macro",
  6407. height: math.unit(74, "meters"),
  6408. default: true
  6409. },
  6410. {
  6411. name: "Macro+",
  6412. height: math.unit(223, "meters"),
  6413. },
  6414. {
  6415. name: "Megamacro",
  6416. height: math.unit(8381, "meters"),
  6417. },
  6418. {
  6419. name: "Megamacro+",
  6420. height: math.unit(12000, "kilometers")
  6421. },
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6426. {
  6427. front: {
  6428. height: math.unit(1.92, "meters"),
  6429. weight: math.unit(80, "kg"),
  6430. name: "Front",
  6431. image: {
  6432. source: "./media/characters/dr-clay/front.svg"
  6433. }
  6434. },
  6435. frontClothed: {
  6436. height: math.unit(1.92, "meters"),
  6437. weight: math.unit(80, "kg"),
  6438. name: "Front (Clothed)",
  6439. image: {
  6440. source: "./media/characters/dr-clay/front-clothed.svg"
  6441. }
  6442. }
  6443. },
  6444. [
  6445. {
  6446. name: "Normal",
  6447. height: math.unit(1.92, "m")
  6448. },
  6449. {
  6450. name: "Macro",
  6451. height: math.unit(214, "meters"),
  6452. default: true
  6453. },
  6454. {
  6455. name: "Macro+",
  6456. height: math.unit(12.237, "meters"),
  6457. },
  6458. {
  6459. name: "Megamacro",
  6460. height: math.unit(557, "megameters"),
  6461. },
  6462. {
  6463. name: "Unimaginable",
  6464. height: math.unit(120e9, "lightyears")
  6465. },
  6466. ]
  6467. ))
  6468. characterMakers.push(() => makeCharacter(
  6469. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6470. {
  6471. front: {
  6472. height: math.unit(2, "meters"),
  6473. weight: math.unit(80, "kg"),
  6474. name: "Front",
  6475. image: {
  6476. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6477. }
  6478. }
  6479. },
  6480. [
  6481. {
  6482. name: "Teramacro",
  6483. height: math.unit(500000, "lightyears"),
  6484. default: true
  6485. },
  6486. ]
  6487. ))
  6488. characterMakers.push(() => makeCharacter(
  6489. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6490. {
  6491. front: {
  6492. height: math.unit(2, "meters"),
  6493. weight: math.unit(150, "kg"),
  6494. name: "Front",
  6495. image: {
  6496. source: "./media/characters/vemus/front.svg",
  6497. extra: 1074/936,
  6498. bottom: 23/1097
  6499. }
  6500. }
  6501. },
  6502. [
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(3.75, "meters"),
  6506. default: true
  6507. },
  6508. {
  6509. name: "Big",
  6510. height: math.unit(8, "meters")
  6511. },
  6512. {
  6513. name: "Macro",
  6514. height: math.unit(100, "meters")
  6515. },
  6516. {
  6517. name: "Macro+",
  6518. height: math.unit(1500, "meters")
  6519. },
  6520. {
  6521. name: "Stellar",
  6522. height: math.unit(14e8, "meters")
  6523. },
  6524. ]
  6525. ))
  6526. characterMakers.push(() => makeCharacter(
  6527. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6528. {
  6529. front: {
  6530. height: math.unit(2, "meters"),
  6531. weight: math.unit(70, "kg"),
  6532. name: "Front",
  6533. image: {
  6534. source: "./media/characters/beherit/front.svg",
  6535. extra: 1408 / 1242
  6536. }
  6537. }
  6538. },
  6539. [
  6540. {
  6541. name: "Normal",
  6542. height: math.unit(6, "feet")
  6543. },
  6544. {
  6545. name: "Lorg",
  6546. height: math.unit(25, "feet"),
  6547. default: true
  6548. },
  6549. {
  6550. name: "Lorger",
  6551. height: math.unit(75, "feet")
  6552. },
  6553. {
  6554. name: "Macro",
  6555. height: math.unit(200, "meters")
  6556. },
  6557. ]
  6558. ))
  6559. characterMakers.push(() => makeCharacter(
  6560. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6561. {
  6562. front: {
  6563. height: math.unit(2, "meters"),
  6564. weight: math.unit(150, "kg"),
  6565. name: "Front",
  6566. image: {
  6567. source: "./media/characters/everett/front.svg",
  6568. extra: 2038 / 1737,
  6569. bottom: 0.03
  6570. }
  6571. },
  6572. paw: {
  6573. height: math.unit(2 / 3.6, "meters"),
  6574. name: "Paw",
  6575. image: {
  6576. source: "./media/characters/everett/paw.svg"
  6577. }
  6578. },
  6579. },
  6580. [
  6581. {
  6582. name: "Normal",
  6583. height: math.unit(15, "feet"),
  6584. default: true
  6585. },
  6586. {
  6587. name: "Lorg",
  6588. height: math.unit(70, "feet"),
  6589. default: true
  6590. },
  6591. {
  6592. name: "Lorger",
  6593. height: math.unit(250, "feet")
  6594. },
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(500, "meters")
  6598. },
  6599. ]
  6600. ))
  6601. characterMakers.push(() => makeCharacter(
  6602. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6603. {
  6604. front: {
  6605. height: math.unit(2, "meters"),
  6606. weight: math.unit(86, "kg"),
  6607. name: "Front",
  6608. image: {
  6609. source: "./media/characters/rose/front.svg",
  6610. extra: 1785/1636,
  6611. bottom: 30/1815
  6612. }
  6613. },
  6614. frontSporty: {
  6615. height: math.unit(2, "meters"),
  6616. weight: math.unit(86, "kg"),
  6617. name: "Front (Sporty)",
  6618. image: {
  6619. source: "./media/characters/rose/front-sporty.svg",
  6620. extra: 350/335,
  6621. bottom: 10/360
  6622. }
  6623. },
  6624. frontAlt: {
  6625. height: math.unit(1.6, "meters"),
  6626. weight: math.unit(86, "kg"),
  6627. name: "Front (Alt)",
  6628. image: {
  6629. source: "./media/characters/rose/front-alt.svg",
  6630. extra: 299/283,
  6631. bottom: 3/302
  6632. }
  6633. },
  6634. plush: {
  6635. height: math.unit(2, "meters"),
  6636. weight: math.unit(86/3, "kg"),
  6637. name: "Plush",
  6638. image: {
  6639. source: "./media/characters/rose/plush.svg",
  6640. extra: 361/337,
  6641. bottom: 11/372
  6642. }
  6643. },
  6644. },
  6645. [
  6646. {
  6647. name: "True Micro",
  6648. height: math.unit(9, "cm")
  6649. },
  6650. {
  6651. name: "Micro",
  6652. height: math.unit(16, "cm")
  6653. },
  6654. {
  6655. name: "Normal",
  6656. height: math.unit(1.85, "meters"),
  6657. default: true
  6658. },
  6659. {
  6660. name: "Mini-Macro",
  6661. height: math.unit(5, "meters")
  6662. },
  6663. {
  6664. name: "Macro",
  6665. height: math.unit(15, "meters")
  6666. },
  6667. {
  6668. name: "True Macro",
  6669. height: math.unit(40, "meters")
  6670. },
  6671. {
  6672. name: "City Scale",
  6673. height: math.unit(1, "km")
  6674. },
  6675. ]
  6676. ))
  6677. characterMakers.push(() => makeCharacter(
  6678. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6679. {
  6680. front: {
  6681. height: math.unit(2, "meters"),
  6682. weight: math.unit(350, "lbs"),
  6683. name: "Front",
  6684. image: {
  6685. source: "./media/characters/regal/front.svg"
  6686. }
  6687. },
  6688. back: {
  6689. height: math.unit(2, "meters"),
  6690. weight: math.unit(350, "lbs"),
  6691. name: "Back",
  6692. image: {
  6693. source: "./media/characters/regal/back.svg"
  6694. }
  6695. },
  6696. },
  6697. [
  6698. {
  6699. name: "Macro",
  6700. height: math.unit(350, "feet"),
  6701. default: true
  6702. }
  6703. ]
  6704. ))
  6705. characterMakers.push(() => makeCharacter(
  6706. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6707. {
  6708. front: {
  6709. height: math.unit(4 + 11 / 12, "feet"),
  6710. weight: math.unit(100, "lbs"),
  6711. name: "Front",
  6712. image: {
  6713. source: "./media/characters/opal/front.svg"
  6714. }
  6715. },
  6716. frontAlt: {
  6717. height: math.unit(4 + 11 / 12, "feet"),
  6718. weight: math.unit(100, "lbs"),
  6719. name: "Front (Alt)",
  6720. image: {
  6721. source: "./media/characters/opal/front-alt.svg"
  6722. }
  6723. },
  6724. },
  6725. [
  6726. {
  6727. name: "Small",
  6728. height: math.unit(4 + 11 / 12, "feet")
  6729. },
  6730. {
  6731. name: "Normal",
  6732. height: math.unit(20, "feet"),
  6733. default: true
  6734. },
  6735. {
  6736. name: "Macro",
  6737. height: math.unit(120, "feet")
  6738. },
  6739. {
  6740. name: "Megamacro",
  6741. height: math.unit(80, "miles")
  6742. },
  6743. {
  6744. name: "True Size",
  6745. height: math.unit(100000, "lightyears")
  6746. },
  6747. ]
  6748. ))
  6749. characterMakers.push(() => makeCharacter(
  6750. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6751. {
  6752. front: {
  6753. height: math.unit(6, "feet"),
  6754. weight: math.unit(200, "lbs"),
  6755. name: "Front",
  6756. image: {
  6757. source: "./media/characters/vector-wuff/front.svg"
  6758. }
  6759. }
  6760. },
  6761. [
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(2.8, "meters")
  6765. },
  6766. {
  6767. name: "Macro",
  6768. height: math.unit(450, "meters"),
  6769. default: true
  6770. },
  6771. {
  6772. name: "Megamacro",
  6773. height: math.unit(15, "kilometers")
  6774. }
  6775. ]
  6776. ))
  6777. characterMakers.push(() => makeCharacter(
  6778. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6779. {
  6780. front: {
  6781. height: math.unit(6, "feet"),
  6782. weight: math.unit(256, "lbs"),
  6783. name: "Front",
  6784. image: {
  6785. source: "./media/characters/dannik/front.svg"
  6786. }
  6787. }
  6788. },
  6789. [
  6790. {
  6791. name: "Macro",
  6792. height: math.unit(69.57, "meters"),
  6793. default: true
  6794. },
  6795. ]
  6796. ))
  6797. characterMakers.push(() => makeCharacter(
  6798. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6799. {
  6800. front: {
  6801. height: math.unit(6, "feet"),
  6802. weight: math.unit(120, "lbs"),
  6803. name: "Front",
  6804. image: {
  6805. source: "./media/characters/azura-saharah/front.svg"
  6806. }
  6807. },
  6808. back: {
  6809. height: math.unit(6, "feet"),
  6810. weight: math.unit(120, "lbs"),
  6811. name: "Back",
  6812. image: {
  6813. source: "./media/characters/azura-saharah/back.svg"
  6814. }
  6815. },
  6816. },
  6817. [
  6818. {
  6819. name: "Macro",
  6820. height: math.unit(100, "feet"),
  6821. default: true
  6822. },
  6823. ]
  6824. ))
  6825. characterMakers.push(() => makeCharacter(
  6826. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6827. {
  6828. side: {
  6829. height: math.unit(5 + 4 / 12, "feet"),
  6830. weight: math.unit(163, "lbs"),
  6831. name: "Side",
  6832. image: {
  6833. source: "./media/characters/kennedy/side.svg"
  6834. }
  6835. }
  6836. },
  6837. [
  6838. {
  6839. name: "Standard Doggo",
  6840. height: math.unit(5 + 4 / 12, "feet")
  6841. },
  6842. {
  6843. name: "Big Doggo",
  6844. height: math.unit(25 + 3 / 12, "feet"),
  6845. default: true
  6846. },
  6847. ]
  6848. ))
  6849. characterMakers.push(() => makeCharacter(
  6850. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6851. {
  6852. front: {
  6853. height: math.unit(6, "feet"),
  6854. weight: math.unit(90, "lbs"),
  6855. name: "Front",
  6856. image: {
  6857. source: "./media/characters/odi-lunar/front.svg"
  6858. }
  6859. }
  6860. },
  6861. [
  6862. {
  6863. name: "Micro",
  6864. height: math.unit(3, "inches"),
  6865. default: true
  6866. },
  6867. {
  6868. name: "Normal",
  6869. height: math.unit(5.5, "feet")
  6870. }
  6871. ]
  6872. ))
  6873. characterMakers.push(() => makeCharacter(
  6874. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6875. {
  6876. back: {
  6877. height: math.unit(6, "feet"),
  6878. weight: math.unit(220, "lbs"),
  6879. name: "Back",
  6880. image: {
  6881. source: "./media/characters/mandake/back.svg"
  6882. }
  6883. }
  6884. },
  6885. [
  6886. {
  6887. name: "Normal",
  6888. height: math.unit(7, "feet"),
  6889. default: true
  6890. },
  6891. {
  6892. name: "Macro",
  6893. height: math.unit(78, "feet")
  6894. },
  6895. {
  6896. name: "Macro+",
  6897. height: math.unit(300, "meters")
  6898. },
  6899. {
  6900. name: "Macro++",
  6901. height: math.unit(2400, "feet")
  6902. },
  6903. {
  6904. name: "Megamacro",
  6905. height: math.unit(5167, "meters")
  6906. },
  6907. {
  6908. name: "Gigamacro",
  6909. height: math.unit(41769, "miles")
  6910. },
  6911. ]
  6912. ))
  6913. characterMakers.push(() => makeCharacter(
  6914. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6915. {
  6916. front: {
  6917. height: math.unit(6, "feet"),
  6918. weight: math.unit(120, "lbs"),
  6919. name: "Front",
  6920. image: {
  6921. source: "./media/characters/yozey/front.svg"
  6922. }
  6923. },
  6924. frontAlt: {
  6925. height: math.unit(6, "feet"),
  6926. weight: math.unit(120, "lbs"),
  6927. name: "Front (Alt)",
  6928. image: {
  6929. source: "./media/characters/yozey/front-alt.svg"
  6930. }
  6931. },
  6932. side: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(120, "lbs"),
  6935. name: "Side",
  6936. image: {
  6937. source: "./media/characters/yozey/side.svg"
  6938. }
  6939. },
  6940. },
  6941. [
  6942. {
  6943. name: "Micro",
  6944. height: math.unit(3, "inches"),
  6945. default: true
  6946. },
  6947. {
  6948. name: "Normal",
  6949. height: math.unit(6, "feet")
  6950. }
  6951. ]
  6952. ))
  6953. characterMakers.push(() => makeCharacter(
  6954. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6955. {
  6956. front: {
  6957. height: math.unit(6, "feet"),
  6958. weight: math.unit(103, "lbs"),
  6959. name: "Front",
  6960. image: {
  6961. source: "./media/characters/valeska-voss/front.svg"
  6962. }
  6963. }
  6964. },
  6965. [
  6966. {
  6967. name: "Mini-Sized Sub",
  6968. height: math.unit(3.1, "inches")
  6969. },
  6970. {
  6971. name: "Mid-Sized Sub",
  6972. height: math.unit(6.2, "inches")
  6973. },
  6974. {
  6975. name: "Full-Sized Sub",
  6976. height: math.unit(9.3, "inches")
  6977. },
  6978. {
  6979. name: "Normal",
  6980. height: math.unit(5 + 2 / 12, "foot"),
  6981. default: true
  6982. },
  6983. ]
  6984. ))
  6985. characterMakers.push(() => makeCharacter(
  6986. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6987. {
  6988. front: {
  6989. height: math.unit(6, "feet"),
  6990. weight: math.unit(160, "lbs"),
  6991. name: "Front",
  6992. image: {
  6993. source: "./media/characters/gene-zeta/front.svg",
  6994. extra: 3006 / 2826,
  6995. bottom: 182 / 3188
  6996. }
  6997. }
  6998. },
  6999. [
  7000. {
  7001. name: "Micro",
  7002. height: math.unit(6, "inches")
  7003. },
  7004. {
  7005. name: "Normal",
  7006. height: math.unit(5 + 11 / 12, "foot"),
  7007. default: true
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(140, "feet")
  7012. },
  7013. {
  7014. name: "Supercharged",
  7015. height: math.unit(2500, "feet")
  7016. },
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7021. {
  7022. front: {
  7023. height: math.unit(6, "feet"),
  7024. weight: math.unit(350, "lbs"),
  7025. name: "Front",
  7026. image: {
  7027. source: "./media/characters/razinox/front.svg",
  7028. extra: 1686 / 1548,
  7029. bottom: 28.2 / 1868
  7030. }
  7031. },
  7032. back: {
  7033. height: math.unit(6, "feet"),
  7034. weight: math.unit(350, "lbs"),
  7035. name: "Back",
  7036. image: {
  7037. source: "./media/characters/razinox/back.svg",
  7038. extra: 1660 / 1590,
  7039. bottom: 15 / 1665
  7040. }
  7041. },
  7042. },
  7043. [
  7044. {
  7045. name: "Normal",
  7046. height: math.unit(10 + 8 / 12, "foot")
  7047. },
  7048. {
  7049. name: "Minimacro",
  7050. height: math.unit(15, "foot")
  7051. },
  7052. {
  7053. name: "Macro",
  7054. height: math.unit(60, "foot"),
  7055. default: true
  7056. },
  7057. {
  7058. name: "Megamacro",
  7059. height: math.unit(5, "miles")
  7060. },
  7061. {
  7062. name: "Gigamacro",
  7063. height: math.unit(6000, "miles")
  7064. },
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7069. {
  7070. front: {
  7071. height: math.unit(6, "feet"),
  7072. weight: math.unit(150, "lbs"),
  7073. name: "Front",
  7074. image: {
  7075. source: "./media/characters/cobalt/front.svg"
  7076. }
  7077. }
  7078. },
  7079. [
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(8 + 1 / 12, "foot")
  7083. },
  7084. {
  7085. name: "Macro",
  7086. height: math.unit(111, "foot"),
  7087. default: true
  7088. },
  7089. {
  7090. name: "Supracosmic",
  7091. height: math.unit(1e42, "feet")
  7092. },
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(140, "lbs"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/amanda/front.svg"
  7104. }
  7105. }
  7106. },
  7107. [
  7108. {
  7109. name: "Micro",
  7110. height: math.unit(5, "inches"),
  7111. default: true
  7112. },
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(2.75, "meters"),
  7120. weight: math.unit(1200, "lb"),
  7121. name: "Front",
  7122. image: {
  7123. source: "./media/characters/teal/front.svg",
  7124. extra: 2463 / 2320,
  7125. bottom: 166 / 2629
  7126. }
  7127. },
  7128. back: {
  7129. height: math.unit(2.75, "meters"),
  7130. weight: math.unit(1200, "lb"),
  7131. name: "Back",
  7132. image: {
  7133. source: "./media/characters/teal/back.svg",
  7134. extra: 2580 / 2489,
  7135. bottom: 151 / 2731
  7136. }
  7137. },
  7138. sitting: {
  7139. height: math.unit(1.9, "meters"),
  7140. weight: math.unit(1200, "lb"),
  7141. name: "Sitting",
  7142. image: {
  7143. source: "./media/characters/teal/sitting.svg",
  7144. extra: 623 / 590,
  7145. bottom: 121 / 744
  7146. }
  7147. },
  7148. standing: {
  7149. height: math.unit(2.75, "meters"),
  7150. weight: math.unit(1200, "lb"),
  7151. name: "Standing",
  7152. image: {
  7153. source: "./media/characters/teal/standing.svg",
  7154. extra: 923 / 893,
  7155. bottom: 60 / 983
  7156. }
  7157. },
  7158. stretching: {
  7159. height: math.unit(3.65, "meters"),
  7160. weight: math.unit(1200, "lb"),
  7161. name: "Stretching",
  7162. image: {
  7163. source: "./media/characters/teal/stretching.svg",
  7164. extra: 1276 / 1244,
  7165. bottom: 0 / 1276
  7166. }
  7167. },
  7168. legged: {
  7169. height: math.unit(1.3, "meters"),
  7170. weight: math.unit(100, "lb"),
  7171. name: "Legged",
  7172. image: {
  7173. source: "./media/characters/teal/legged.svg",
  7174. extra: 462 / 437,
  7175. bottom: 24 / 486
  7176. }
  7177. },
  7178. naga: {
  7179. height: math.unit(5.4, "meters"),
  7180. weight: math.unit(4000, "lb"),
  7181. name: "Naga",
  7182. image: {
  7183. source: "./media/characters/teal/naga.svg",
  7184. extra: 1902 / 1858,
  7185. bottom: 0 / 1902
  7186. }
  7187. },
  7188. hand: {
  7189. height: math.unit(0.52, "meters"),
  7190. name: "Hand",
  7191. image: {
  7192. source: "./media/characters/teal/hand.svg"
  7193. }
  7194. },
  7195. maw: {
  7196. height: math.unit(0.43, "meters"),
  7197. name: "Maw",
  7198. image: {
  7199. source: "./media/characters/teal/maw.svg"
  7200. }
  7201. },
  7202. slit: {
  7203. height: math.unit(0.25, "meters"),
  7204. name: "Slit",
  7205. image: {
  7206. source: "./media/characters/teal/slit.svg"
  7207. }
  7208. },
  7209. },
  7210. [
  7211. {
  7212. name: "Normal",
  7213. height: math.unit(2.75, "meters"),
  7214. default: true
  7215. },
  7216. {
  7217. name: "Macro",
  7218. height: math.unit(300, "feet")
  7219. },
  7220. {
  7221. name: "Macro+",
  7222. height: math.unit(2000, "feet")
  7223. },
  7224. ]
  7225. ))
  7226. characterMakers.push(() => makeCharacter(
  7227. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7228. {
  7229. frontCat: {
  7230. height: math.unit(6, "feet"),
  7231. weight: math.unit(180, "lbs"),
  7232. name: "Front (Cat)",
  7233. image: {
  7234. source: "./media/characters/ravin-amulet/front-cat.svg"
  7235. }
  7236. },
  7237. frontCatAlt: {
  7238. height: math.unit(6, "feet"),
  7239. weight: math.unit(180, "lbs"),
  7240. name: "Front (Alt, Cat)",
  7241. image: {
  7242. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7243. }
  7244. },
  7245. frontWerewolf: {
  7246. height: math.unit(6 * 1.2, "feet"),
  7247. weight: math.unit(225, "lbs"),
  7248. name: "Front (Werewolf)",
  7249. image: {
  7250. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7251. }
  7252. },
  7253. backWerewolf: {
  7254. height: math.unit(6 * 1.2, "feet"),
  7255. weight: math.unit(225, "lbs"),
  7256. name: "Back (Werewolf)",
  7257. image: {
  7258. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7259. }
  7260. },
  7261. },
  7262. [
  7263. {
  7264. name: "Nano",
  7265. height: math.unit(1, "micrometer")
  7266. },
  7267. {
  7268. name: "Micro",
  7269. height: math.unit(1, "inch")
  7270. },
  7271. {
  7272. name: "Normal",
  7273. height: math.unit(6, "feet"),
  7274. default: true
  7275. },
  7276. {
  7277. name: "Macro",
  7278. height: math.unit(60, "feet")
  7279. }
  7280. ]
  7281. ))
  7282. characterMakers.push(() => makeCharacter(
  7283. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7284. {
  7285. front: {
  7286. height: math.unit(6, "feet"),
  7287. weight: math.unit(165, "lbs"),
  7288. name: "Front",
  7289. image: {
  7290. source: "./media/characters/fluoresce/front.svg"
  7291. }
  7292. }
  7293. },
  7294. [
  7295. {
  7296. name: "Micro",
  7297. height: math.unit(6, "cm")
  7298. },
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(5 + 7 / 12, "feet"),
  7302. default: true
  7303. },
  7304. {
  7305. name: "Macro",
  7306. height: math.unit(56, "feet")
  7307. },
  7308. {
  7309. name: "Megamacro",
  7310. height: math.unit(1.9, "miles")
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7316. {
  7317. front: {
  7318. height: math.unit(9 + 6 / 12, "feet"),
  7319. weight: math.unit(523, "lbs"),
  7320. name: "Side",
  7321. image: {
  7322. source: "./media/characters/aurora/side.svg"
  7323. }
  7324. }
  7325. },
  7326. [
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(9 + 6 / 12, "feet")
  7330. },
  7331. {
  7332. name: "Macro",
  7333. height: math.unit(96, "feet"),
  7334. default: true
  7335. },
  7336. {
  7337. name: "Macro+",
  7338. height: math.unit(243, "feet")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(194, "cm"),
  7347. weight: math.unit(90, "kg"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/ranek/front.svg"
  7351. }
  7352. },
  7353. side: {
  7354. height: math.unit(194, "cm"),
  7355. weight: math.unit(90, "kg"),
  7356. name: "Side",
  7357. image: {
  7358. source: "./media/characters/ranek/side.svg"
  7359. }
  7360. },
  7361. back: {
  7362. height: math.unit(194, "cm"),
  7363. weight: math.unit(90, "kg"),
  7364. name: "Back",
  7365. image: {
  7366. source: "./media/characters/ranek/back.svg"
  7367. }
  7368. },
  7369. feral: {
  7370. height: math.unit(30, "cm"),
  7371. weight: math.unit(1.6, "lbs"),
  7372. name: "Feral",
  7373. image: {
  7374. source: "./media/characters/ranek/feral.svg"
  7375. }
  7376. },
  7377. },
  7378. [
  7379. {
  7380. name: "Normal",
  7381. height: math.unit(194, "cm"),
  7382. default: true
  7383. },
  7384. {
  7385. name: "Macro",
  7386. height: math.unit(100, "meters")
  7387. },
  7388. ]
  7389. ))
  7390. characterMakers.push(() => makeCharacter(
  7391. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7392. {
  7393. front: {
  7394. height: math.unit(5 + 6 / 12, "feet"),
  7395. weight: math.unit(153, "lbs"),
  7396. name: "Front",
  7397. image: {
  7398. source: "./media/characters/andrew-cooper/front.svg"
  7399. }
  7400. },
  7401. },
  7402. [
  7403. {
  7404. name: "Nano",
  7405. height: math.unit(1, "mm")
  7406. },
  7407. {
  7408. name: "Micro",
  7409. height: math.unit(2, "inches")
  7410. },
  7411. {
  7412. name: "Normal",
  7413. height: math.unit(5 + 6 / 12, "feet"),
  7414. default: true
  7415. }
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7420. {
  7421. front: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(180, "lbs"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/akane-sato/front.svg",
  7427. extra: 1219 / 1140
  7428. }
  7429. },
  7430. back: {
  7431. height: math.unit(6, "feet"),
  7432. weight: math.unit(180, "lbs"),
  7433. name: "Back",
  7434. image: {
  7435. source: "./media/characters/akane-sato/back.svg",
  7436. extra: 1219 / 1170
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(2.5, "meters")
  7444. },
  7445. {
  7446. name: "Macro",
  7447. height: math.unit(250, "meters"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Megamacro",
  7452. height: math.unit(25, "km")
  7453. },
  7454. ]
  7455. ))
  7456. characterMakers.push(() => makeCharacter(
  7457. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7458. {
  7459. front: {
  7460. height: math.unit(6, "feet"),
  7461. weight: math.unit(65, "kg"),
  7462. name: "Front",
  7463. image: {
  7464. source: "./media/characters/rook/front.svg",
  7465. extra: 960 / 950
  7466. }
  7467. }
  7468. },
  7469. [
  7470. {
  7471. name: "Normal",
  7472. height: math.unit(8.8, "feet")
  7473. },
  7474. {
  7475. name: "Macro",
  7476. height: math.unit(88, "feet"),
  7477. default: true
  7478. },
  7479. {
  7480. name: "Megamacro",
  7481. height: math.unit(8, "miles")
  7482. },
  7483. ]
  7484. ))
  7485. characterMakers.push(() => makeCharacter(
  7486. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7487. {
  7488. front: {
  7489. height: math.unit(12 + 2 / 12, "feet"),
  7490. weight: math.unit(808, "lbs"),
  7491. name: "Front",
  7492. image: {
  7493. source: "./media/characters/prodigy/front.svg"
  7494. }
  7495. }
  7496. },
  7497. [
  7498. {
  7499. name: "Normal",
  7500. height: math.unit(12 + 2 / 12, "feet"),
  7501. default: true
  7502. },
  7503. {
  7504. name: "Macro",
  7505. height: math.unit(143, "feet")
  7506. },
  7507. {
  7508. name: "Macro+",
  7509. height: math.unit(400, "feet")
  7510. },
  7511. ]
  7512. ))
  7513. characterMakers.push(() => makeCharacter(
  7514. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7515. {
  7516. front: {
  7517. height: math.unit(6, "feet"),
  7518. weight: math.unit(225, "lbs"),
  7519. name: "Front",
  7520. image: {
  7521. source: "./media/characters/daniel/front.svg"
  7522. }
  7523. },
  7524. leaning: {
  7525. height: math.unit(6, "feet"),
  7526. weight: math.unit(225, "lbs"),
  7527. name: "Leaning",
  7528. image: {
  7529. source: "./media/characters/daniel/leaning.svg"
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Macro",
  7536. height: math.unit(1000, "feet"),
  7537. default: true
  7538. },
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7543. {
  7544. front: {
  7545. height: math.unit(6, "feet"),
  7546. weight: math.unit(88, "lbs"),
  7547. name: "Front",
  7548. image: {
  7549. source: "./media/characters/chiros/front.svg",
  7550. extra: 306 / 226
  7551. }
  7552. },
  7553. side: {
  7554. height: math.unit(6, "feet"),
  7555. weight: math.unit(88, "lbs"),
  7556. name: "Side",
  7557. image: {
  7558. source: "./media/characters/chiros/side.svg",
  7559. extra: 306 / 226
  7560. }
  7561. },
  7562. },
  7563. [
  7564. {
  7565. name: "Normal",
  7566. height: math.unit(6, "cm"),
  7567. default: true
  7568. },
  7569. ]
  7570. ))
  7571. characterMakers.push(() => makeCharacter(
  7572. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7573. {
  7574. front: {
  7575. height: math.unit(6, "feet"),
  7576. weight: math.unit(100, "lbs"),
  7577. name: "Front",
  7578. image: {
  7579. source: "./media/characters/selka/front.svg",
  7580. extra: 947 / 887
  7581. }
  7582. }
  7583. },
  7584. [
  7585. {
  7586. name: "Normal",
  7587. height: math.unit(5, "cm"),
  7588. default: true
  7589. },
  7590. ]
  7591. ))
  7592. characterMakers.push(() => makeCharacter(
  7593. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7594. {
  7595. front: {
  7596. height: math.unit(8 + 3 / 12, "feet"),
  7597. weight: math.unit(424, "lbs"),
  7598. name: "Front",
  7599. image: {
  7600. source: "./media/characters/verin/front.svg",
  7601. extra: 1845 / 1550
  7602. }
  7603. },
  7604. frontArmored: {
  7605. height: math.unit(8 + 3 / 12, "feet"),
  7606. weight: math.unit(424, "lbs"),
  7607. name: "Front (Armored)",
  7608. image: {
  7609. source: "./media/characters/verin/front-armor.svg",
  7610. extra: 1845 / 1550,
  7611. bottom: 0.01
  7612. }
  7613. },
  7614. back: {
  7615. height: math.unit(8 + 3 / 12, "feet"),
  7616. weight: math.unit(424, "lbs"),
  7617. name: "Back",
  7618. image: {
  7619. source: "./media/characters/verin/back.svg",
  7620. bottom: 0.1,
  7621. extra: 1
  7622. }
  7623. },
  7624. foot: {
  7625. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7626. name: "Foot",
  7627. image: {
  7628. source: "./media/characters/verin/foot.svg"
  7629. }
  7630. },
  7631. },
  7632. [
  7633. {
  7634. name: "Normal",
  7635. height: math.unit(8 + 3 / 12, "feet")
  7636. },
  7637. {
  7638. name: "Minimacro",
  7639. height: math.unit(21, "feet"),
  7640. default: true
  7641. },
  7642. {
  7643. name: "Macro",
  7644. height: math.unit(626, "feet")
  7645. },
  7646. ]
  7647. ))
  7648. characterMakers.push(() => makeCharacter(
  7649. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7650. {
  7651. front: {
  7652. height: math.unit(2.718, "meters"),
  7653. weight: math.unit(150, "lbs"),
  7654. name: "Front",
  7655. image: {
  7656. source: "./media/characters/sovrim-terraquian/front.svg"
  7657. }
  7658. },
  7659. back: {
  7660. height: math.unit(2.718, "meters"),
  7661. weight: math.unit(150, "lbs"),
  7662. name: "Back",
  7663. image: {
  7664. source: "./media/characters/sovrim-terraquian/back.svg"
  7665. }
  7666. }
  7667. },
  7668. [
  7669. {
  7670. name: "Micro",
  7671. height: math.unit(2, "inches")
  7672. },
  7673. {
  7674. name: "Small",
  7675. height: math.unit(1, "meter")
  7676. },
  7677. {
  7678. name: "Normal",
  7679. height: math.unit(Math.E, "meters"),
  7680. default: true
  7681. },
  7682. {
  7683. name: "Macro",
  7684. height: math.unit(20, "meters")
  7685. },
  7686. {
  7687. name: "Macro+",
  7688. height: math.unit(400, "meters")
  7689. },
  7690. ]
  7691. ))
  7692. characterMakers.push(() => makeCharacter(
  7693. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7694. {
  7695. front: {
  7696. height: math.unit(7, "feet"),
  7697. weight: math.unit(489, "lbs"),
  7698. name: "Front",
  7699. image: {
  7700. source: "./media/characters/reece-silvermane/front.svg",
  7701. bottom: 0.02,
  7702. extra: 1
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(1.5, "miles"),
  7710. default: true
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(6, "feet"),
  7719. weight: math.unit(78, "kg"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/kane/front.svg",
  7723. extra: 978 / 899
  7724. }
  7725. },
  7726. },
  7727. [
  7728. {
  7729. name: "Normal",
  7730. height: math.unit(2.1, "m"),
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(1, "km"),
  7735. default: true
  7736. },
  7737. ]
  7738. ))
  7739. characterMakers.push(() => makeCharacter(
  7740. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7741. {
  7742. front: {
  7743. height: math.unit(6, "feet"),
  7744. weight: math.unit(200, "kg"),
  7745. name: "Front",
  7746. image: {
  7747. source: "./media/characters/tegon/front.svg",
  7748. bottom: 0.01,
  7749. extra: 1
  7750. }
  7751. },
  7752. },
  7753. [
  7754. {
  7755. name: "Micro",
  7756. height: math.unit(1, "inch")
  7757. },
  7758. {
  7759. name: "Normal",
  7760. height: math.unit(6 + 3 / 12, "feet"),
  7761. default: true
  7762. },
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(300, "feet")
  7766. },
  7767. {
  7768. name: "Megamacro",
  7769. height: math.unit(69, "miles")
  7770. },
  7771. ]
  7772. ))
  7773. characterMakers.push(() => makeCharacter(
  7774. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7775. {
  7776. side: {
  7777. height: math.unit(6, "feet"),
  7778. weight: math.unit(2304, "lbs"),
  7779. name: "Side",
  7780. image: {
  7781. source: "./media/characters/arcturax/side.svg",
  7782. extra: 790 / 376,
  7783. bottom: 0.01
  7784. }
  7785. },
  7786. },
  7787. [
  7788. {
  7789. name: "Micro",
  7790. height: math.unit(2, "inch")
  7791. },
  7792. {
  7793. name: "Normal",
  7794. height: math.unit(6, "feet")
  7795. },
  7796. {
  7797. name: "Macro",
  7798. height: math.unit(39, "feet"),
  7799. default: true
  7800. },
  7801. {
  7802. name: "Megamacro",
  7803. height: math.unit(7, "miles")
  7804. },
  7805. ]
  7806. ))
  7807. characterMakers.push(() => makeCharacter(
  7808. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7809. {
  7810. front: {
  7811. height: math.unit(6, "feet"),
  7812. weight: math.unit(50, "lbs"),
  7813. name: "Front",
  7814. image: {
  7815. source: "./media/characters/sentri/front.svg",
  7816. extra: 1750 / 1570,
  7817. bottom: 0.025
  7818. }
  7819. },
  7820. frontAlt: {
  7821. height: math.unit(6, "feet"),
  7822. weight: math.unit(50, "lbs"),
  7823. name: "Front (Alt)",
  7824. image: {
  7825. source: "./media/characters/sentri/front-alt.svg",
  7826. extra: 1750 / 1570,
  7827. bottom: 0.025
  7828. }
  7829. },
  7830. },
  7831. [
  7832. {
  7833. name: "Normal",
  7834. height: math.unit(15, "feet"),
  7835. default: true
  7836. },
  7837. {
  7838. name: "Macro",
  7839. height: math.unit(2500, "feet")
  7840. }
  7841. ]
  7842. ))
  7843. characterMakers.push(() => makeCharacter(
  7844. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7845. {
  7846. front: {
  7847. height: math.unit(5 + 8 / 12, "feet"),
  7848. weight: math.unit(130, "lbs"),
  7849. name: "Front",
  7850. image: {
  7851. source: "./media/characters/corvin/front.svg",
  7852. extra: 1803 / 1629
  7853. }
  7854. },
  7855. frontShirt: {
  7856. height: math.unit(5 + 8 / 12, "feet"),
  7857. weight: math.unit(130, "lbs"),
  7858. name: "Front (Shirt)",
  7859. image: {
  7860. source: "./media/characters/corvin/front-shirt.svg",
  7861. extra: 1803 / 1629
  7862. }
  7863. },
  7864. frontPoncho: {
  7865. height: math.unit(5 + 8 / 12, "feet"),
  7866. weight: math.unit(130, "lbs"),
  7867. name: "Front (Poncho)",
  7868. image: {
  7869. source: "./media/characters/corvin/front-poncho.svg",
  7870. extra: 1803 / 1629
  7871. }
  7872. },
  7873. side: {
  7874. height: math.unit(5 + 8 / 12, "feet"),
  7875. weight: math.unit(130, "lbs"),
  7876. name: "Side",
  7877. image: {
  7878. source: "./media/characters/corvin/side.svg",
  7879. extra: 1012 / 945
  7880. }
  7881. },
  7882. back: {
  7883. height: math.unit(5 + 8 / 12, "feet"),
  7884. weight: math.unit(130, "lbs"),
  7885. name: "Back",
  7886. image: {
  7887. source: "./media/characters/corvin/back.svg",
  7888. extra: 1803 / 1629
  7889. }
  7890. },
  7891. },
  7892. [
  7893. {
  7894. name: "Micro",
  7895. height: math.unit(3, "inches")
  7896. },
  7897. {
  7898. name: "Normal",
  7899. height: math.unit(5 + 8 / 12, "feet")
  7900. },
  7901. {
  7902. name: "Macro",
  7903. height: math.unit(300, "feet"),
  7904. default: true
  7905. },
  7906. {
  7907. name: "Megamacro",
  7908. height: math.unit(500, "miles")
  7909. }
  7910. ]
  7911. ))
  7912. characterMakers.push(() => makeCharacter(
  7913. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7914. {
  7915. front: {
  7916. height: math.unit(6, "feet"),
  7917. weight: math.unit(135, "lbs"),
  7918. name: "Front",
  7919. image: {
  7920. source: "./media/characters/q/front.svg",
  7921. extra: 854 / 752,
  7922. bottom: 0.005
  7923. }
  7924. },
  7925. back: {
  7926. height: math.unit(6, "feet"),
  7927. weight: math.unit(130, "lbs"),
  7928. name: "Back",
  7929. image: {
  7930. source: "./media/characters/q/back.svg",
  7931. extra: 854 / 752
  7932. }
  7933. },
  7934. },
  7935. [
  7936. {
  7937. name: "Macro",
  7938. height: math.unit(90, "feet"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Extra Macro",
  7943. height: math.unit(300, "feet"),
  7944. },
  7945. {
  7946. name: "BIG WALF",
  7947. height: math.unit(750, "feet"),
  7948. },
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7953. {
  7954. front: {
  7955. height: math.unit(6, "feet"),
  7956. weight: math.unit(150, "lbs"),
  7957. name: "Front",
  7958. image: {
  7959. source: "./media/characters/carley/front.svg",
  7960. extra: 3927 / 3540,
  7961. bottom: 29.2 / 735
  7962. }
  7963. }
  7964. },
  7965. [
  7966. {
  7967. name: "Normal",
  7968. height: math.unit(6 + 3 / 12, "feet")
  7969. },
  7970. {
  7971. name: "Macro",
  7972. height: math.unit(185, "feet"),
  7973. default: true
  7974. },
  7975. {
  7976. name: "Megamacro",
  7977. height: math.unit(8, "miles"),
  7978. },
  7979. ]
  7980. ))
  7981. characterMakers.push(() => makeCharacter(
  7982. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7983. {
  7984. front: {
  7985. height: math.unit(3, "feet"),
  7986. weight: math.unit(28, "lbs"),
  7987. name: "Front",
  7988. image: {
  7989. source: "./media/characters/citrine/front.svg"
  7990. }
  7991. }
  7992. },
  7993. [
  7994. {
  7995. name: "Normal",
  7996. height: math.unit(3, "feet"),
  7997. default: true
  7998. }
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8003. {
  8004. front: {
  8005. height: math.unit(14, "feet"),
  8006. weight: math.unit(1450, "kg"),
  8007. capacity: math.unit(15, "people"),
  8008. name: "Front",
  8009. image: {
  8010. source: "./media/characters/aura-starwind/front.svg",
  8011. extra: 1455 / 1335
  8012. }
  8013. },
  8014. side: {
  8015. height: math.unit(14, "feet"),
  8016. weight: math.unit(1450, "kg"),
  8017. capacity: math.unit(15, "people"),
  8018. name: "Side",
  8019. image: {
  8020. source: "./media/characters/aura-starwind/side.svg",
  8021. extra: 1654 / 1497
  8022. }
  8023. },
  8024. taur: {
  8025. height: math.unit(18, "feet"),
  8026. weight: math.unit(5500, "kg"),
  8027. capacity: math.unit(50, "people"),
  8028. name: "Taur",
  8029. image: {
  8030. source: "./media/characters/aura-starwind/taur.svg",
  8031. extra: 1760 / 1650
  8032. }
  8033. },
  8034. feral: {
  8035. height: math.unit(46, "feet"),
  8036. weight: math.unit(25000, "kg"),
  8037. capacity: math.unit(120, "people"),
  8038. name: "Feral",
  8039. image: {
  8040. source: "./media/characters/aura-starwind/feral.svg"
  8041. }
  8042. },
  8043. },
  8044. [
  8045. {
  8046. name: "Normal",
  8047. height: math.unit(14, "feet"),
  8048. default: true
  8049. },
  8050. {
  8051. name: "Macro",
  8052. height: math.unit(50, "meters")
  8053. },
  8054. {
  8055. name: "Megamacro",
  8056. height: math.unit(5000, "meters")
  8057. },
  8058. {
  8059. name: "Gigamacro",
  8060. height: math.unit(100000, "kilometers")
  8061. },
  8062. ]
  8063. ))
  8064. characterMakers.push(() => makeCharacter(
  8065. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8066. {
  8067. front: {
  8068. height: math.unit(2 + 7 / 12, "feet"),
  8069. weight: math.unit(32, "lbs"),
  8070. name: "Front",
  8071. image: {
  8072. source: "./media/characters/rivet/front.svg",
  8073. extra: 1716 / 1658,
  8074. bottom: 0.03
  8075. }
  8076. },
  8077. foot: {
  8078. height: math.unit(0.551, "feet"),
  8079. name: "Rivet's Foot",
  8080. image: {
  8081. source: "./media/characters/rivet/foot.svg"
  8082. },
  8083. rename: true
  8084. }
  8085. },
  8086. [
  8087. {
  8088. name: "Micro",
  8089. height: math.unit(1.5, "inches"),
  8090. },
  8091. {
  8092. name: "Normal",
  8093. height: math.unit(2 + 7 / 12, "feet"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Macro",
  8098. height: math.unit(85, "feet")
  8099. },
  8100. {
  8101. name: "Megamacro",
  8102. height: math.unit(2.2, "km")
  8103. }
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8108. {
  8109. front: {
  8110. height: math.unit(5 + 9 / 12, "feet"),
  8111. weight: math.unit(150, "lbs"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/coffee/front.svg",
  8115. extra: 3666 / 3032,
  8116. bottom: 0.04
  8117. }
  8118. },
  8119. foot: {
  8120. height: math.unit(1.29, "feet"),
  8121. name: "Foot",
  8122. image: {
  8123. source: "./media/characters/coffee/foot.svg"
  8124. }
  8125. },
  8126. },
  8127. [
  8128. {
  8129. name: "Micro",
  8130. height: math.unit(2, "inches"),
  8131. },
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(5 + 9 / 12, "feet"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(800, "feet")
  8140. },
  8141. {
  8142. name: "Megamacro",
  8143. height: math.unit(25, "miles")
  8144. }
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(200, "lbs"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/chari-gal/front.svg",
  8156. extra: 1568 / 1385,
  8157. bottom: 0.047
  8158. }
  8159. },
  8160. gigantamax: {
  8161. height: math.unit(6 * 16, "feet"),
  8162. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8163. name: "Gigantamax",
  8164. image: {
  8165. source: "./media/characters/chari-gal/gigantamax.svg",
  8166. extra: 1124 / 888,
  8167. bottom: 0.03
  8168. }
  8169. },
  8170. },
  8171. [
  8172. {
  8173. name: "Normal",
  8174. height: math.unit(5 + 7 / 12, "feet")
  8175. },
  8176. {
  8177. name: "Macro",
  8178. height: math.unit(200, "feet"),
  8179. default: true
  8180. }
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8185. {
  8186. front: {
  8187. height: math.unit(6, "feet"),
  8188. weight: math.unit(150, "lbs"),
  8189. name: "Front",
  8190. image: {
  8191. source: "./media/characters/nova/front.svg",
  8192. extra: 5000 / 4722,
  8193. bottom: 0.02
  8194. }
  8195. }
  8196. },
  8197. [
  8198. {
  8199. name: "Micro-",
  8200. height: math.unit(0.8, "inches")
  8201. },
  8202. {
  8203. name: "Micro",
  8204. height: math.unit(2, "inches"),
  8205. default: true
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8211. {
  8212. front: {
  8213. height: math.unit(3 + 1 / 12, "feet"),
  8214. weight: math.unit(21.7, "lbs"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/argent/front.svg",
  8218. extra: 1471 / 1331,
  8219. bottom: 100.8 / 1575.5
  8220. }
  8221. }
  8222. },
  8223. [
  8224. {
  8225. name: "Micro",
  8226. height: math.unit(2, "inches")
  8227. },
  8228. {
  8229. name: "Normal",
  8230. height: math.unit(3 + 1 / 12, "feet"),
  8231. default: true
  8232. },
  8233. {
  8234. name: "Macro",
  8235. height: math.unit(120, "feet")
  8236. },
  8237. ]
  8238. ))
  8239. characterMakers.push(() => makeCharacter(
  8240. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8241. {
  8242. lamp: {
  8243. height: math.unit(7 * 1559 / 989, "feet"),
  8244. name: "Magic Lamp",
  8245. image: {
  8246. source: "./media/characters/mira-al-cul/lamp.svg",
  8247. extra: 1617 / 1559
  8248. }
  8249. },
  8250. front: {
  8251. height: math.unit(7, "feet"),
  8252. name: "Front",
  8253. image: {
  8254. source: "./media/characters/mira-al-cul/front.svg",
  8255. extra: 1044 / 990
  8256. }
  8257. },
  8258. },
  8259. [
  8260. {
  8261. name: "Heavily Restricted",
  8262. height: math.unit(7 * 1559 / 989, "feet")
  8263. },
  8264. {
  8265. name: "Freshly Freed",
  8266. height: math.unit(50 * 1559 / 989, "feet")
  8267. },
  8268. {
  8269. name: "World Encompassing",
  8270. height: math.unit(10000 * 1559 / 989, "miles")
  8271. },
  8272. {
  8273. name: "Galactic",
  8274. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8275. },
  8276. {
  8277. name: "Palmed Universe",
  8278. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8279. default: true
  8280. },
  8281. {
  8282. name: "Multiversal Matriarch",
  8283. height: math.unit(8.87e10, "yottameters")
  8284. },
  8285. {
  8286. name: "Void Mother",
  8287. height: math.unit(3.14e110, "yottaparsecs")
  8288. },
  8289. {
  8290. name: "Toying with Transcendence",
  8291. height: math.unit(1e307, "meters")
  8292. },
  8293. ]
  8294. ))
  8295. characterMakers.push(() => makeCharacter(
  8296. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8297. {
  8298. front: {
  8299. height: math.unit(17 + 1 / 12, "feet"),
  8300. weight: math.unit(476.2 * 5, "lbs"),
  8301. name: "Front",
  8302. image: {
  8303. source: "./media/characters/kuro-shi-uchū/front.svg",
  8304. extra: 2329 / 1835,
  8305. bottom: 0.02
  8306. }
  8307. },
  8308. },
  8309. [
  8310. {
  8311. name: "Micro",
  8312. height: math.unit(2, "inches")
  8313. },
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(12, "meters")
  8317. },
  8318. {
  8319. name: "Planetary",
  8320. height: math.unit(0.00929, "AU"),
  8321. default: true
  8322. },
  8323. {
  8324. name: "Universal",
  8325. height: math.unit(20, "gigaparsecs")
  8326. },
  8327. ]
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(5 + 2 / 12, "feet"),
  8334. weight: math.unit(120, "lbs"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/katherine/front.svg",
  8338. extra: 2075 / 1969
  8339. }
  8340. },
  8341. dress: {
  8342. height: math.unit(5 + 2 / 12, "feet"),
  8343. weight: math.unit(120, "lbs"),
  8344. name: "Dress",
  8345. image: {
  8346. source: "./media/characters/katherine/dress.svg",
  8347. extra: 2258 / 2064
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Micro",
  8354. height: math.unit(1, "inches"),
  8355. default: true
  8356. },
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(5 + 2 / 12, "feet")
  8360. },
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(100, "meters")
  8364. },
  8365. {
  8366. name: "Megamacro",
  8367. height: math.unit(80, "miles")
  8368. },
  8369. ]
  8370. ))
  8371. characterMakers.push(() => makeCharacter(
  8372. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8373. {
  8374. front: {
  8375. height: math.unit(7 + 8 / 12, "feet"),
  8376. weight: math.unit(250, "lbs"),
  8377. name: "Front",
  8378. image: {
  8379. source: "./media/characters/yevis/front.svg",
  8380. extra: 1938 / 1755
  8381. }
  8382. }
  8383. },
  8384. [
  8385. {
  8386. name: "Mortal",
  8387. height: math.unit(7 + 8 / 12, "feet")
  8388. },
  8389. {
  8390. name: "Battle",
  8391. height: math.unit(25 + 11 / 12, "feet")
  8392. },
  8393. {
  8394. name: "Wrath",
  8395. height: math.unit(1654 + 11 / 12, "feet")
  8396. },
  8397. {
  8398. name: "Planet Destroyer",
  8399. height: math.unit(12000, "miles")
  8400. },
  8401. {
  8402. name: "Galaxy Conqueror",
  8403. height: math.unit(1.45, "zettameters"),
  8404. default: true
  8405. },
  8406. {
  8407. name: "Universal War",
  8408. height: math.unit(184, "gigaparsecs")
  8409. },
  8410. {
  8411. name: "Eternity War",
  8412. height: math.unit(1.98e55, "yottaparsecs")
  8413. },
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8418. {
  8419. front: {
  8420. height: math.unit(5 + 8 / 12, "feet"),
  8421. weight: math.unit(63, "kg"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/xavier/front.svg",
  8425. extra: 944 / 883
  8426. }
  8427. },
  8428. frontStretch: {
  8429. height: math.unit(5 + 8 / 12, "feet"),
  8430. weight: math.unit(63, "kg"),
  8431. name: "Stretching",
  8432. image: {
  8433. source: "./media/characters/xavier/front-stretch.svg",
  8434. extra: 962 / 820
  8435. }
  8436. },
  8437. },
  8438. [
  8439. {
  8440. name: "Normal",
  8441. height: math.unit(5 + 8 / 12, "feet")
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(100, "meters"),
  8446. default: true
  8447. },
  8448. {
  8449. name: "McLargeHuge",
  8450. height: math.unit(10, "miles")
  8451. },
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8456. {
  8457. front: {
  8458. height: math.unit(5 + 5 / 12, "feet"),
  8459. weight: math.unit(150, "lb"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/joshii/front.svg",
  8463. extra: 765 / 653,
  8464. bottom: 51 / 816
  8465. }
  8466. },
  8467. foot: {
  8468. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8469. name: "Foot",
  8470. image: {
  8471. source: "./media/characters/joshii/foot.svg"
  8472. }
  8473. },
  8474. },
  8475. [
  8476. {
  8477. name: "Micro",
  8478. height: math.unit(2, "inches"),
  8479. default: true
  8480. },
  8481. {
  8482. name: "Normal",
  8483. height: math.unit(5 + 5 / 12, "feet")
  8484. },
  8485. {
  8486. name: "Macro",
  8487. height: math.unit(785, "feet")
  8488. },
  8489. {
  8490. name: "Megamacro",
  8491. height: math.unit(24.5, "miles")
  8492. },
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8497. {
  8498. front: {
  8499. height: math.unit(6, "feet"),
  8500. weight: math.unit(150, "lb"),
  8501. name: "Front",
  8502. image: {
  8503. source: "./media/characters/goddess-elizabeth/front.svg",
  8504. extra: 1800 / 1525,
  8505. bottom: 0.005
  8506. }
  8507. },
  8508. foot: {
  8509. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8510. name: "Foot",
  8511. image: {
  8512. source: "./media/characters/goddess-elizabeth/foot.svg"
  8513. }
  8514. },
  8515. mouth: {
  8516. height: math.unit(6, "feet"),
  8517. name: "Mouth",
  8518. image: {
  8519. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8520. }
  8521. },
  8522. },
  8523. [
  8524. {
  8525. name: "Micro",
  8526. height: math.unit(12, "feet")
  8527. },
  8528. {
  8529. name: "Normal",
  8530. height: math.unit(80, "miles"),
  8531. default: true
  8532. },
  8533. {
  8534. name: "Macro",
  8535. height: math.unit(15000, "parsecs")
  8536. },
  8537. ]
  8538. ))
  8539. characterMakers.push(() => makeCharacter(
  8540. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8541. {
  8542. front: {
  8543. height: math.unit(5 + 9 / 12, "feet"),
  8544. weight: math.unit(144, "lb"),
  8545. name: "Front",
  8546. image: {
  8547. source: "./media/characters/kara/front.svg"
  8548. }
  8549. },
  8550. feet: {
  8551. height: math.unit(6 / 6.765, "feet"),
  8552. name: "Kara's Feet",
  8553. rename: true,
  8554. image: {
  8555. source: "./media/characters/kara/feet.svg"
  8556. }
  8557. },
  8558. },
  8559. [
  8560. {
  8561. name: "Normal",
  8562. height: math.unit(5 + 9 / 12, "feet")
  8563. },
  8564. {
  8565. name: "Macro",
  8566. height: math.unit(174, "feet"),
  8567. default: true
  8568. },
  8569. ]
  8570. ))
  8571. characterMakers.push(() => makeCharacter(
  8572. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8573. {
  8574. front: {
  8575. height: math.unit(18, "feet"),
  8576. weight: math.unit(4050, "lb"),
  8577. name: "Front",
  8578. image: {
  8579. source: "./media/characters/tyrone/front.svg",
  8580. extra: 2405 / 2270,
  8581. bottom: 182 / 2587
  8582. }
  8583. },
  8584. },
  8585. [
  8586. {
  8587. name: "Normal",
  8588. height: math.unit(18, "feet"),
  8589. default: true
  8590. },
  8591. {
  8592. name: "Macro",
  8593. height: math.unit(300, "feet")
  8594. },
  8595. {
  8596. name: "Megamacro",
  8597. height: math.unit(15, "km")
  8598. },
  8599. {
  8600. name: "Gigamacro",
  8601. height: math.unit(500, "km")
  8602. },
  8603. {
  8604. name: "Teramacro",
  8605. height: math.unit(0.5, "gigameters")
  8606. },
  8607. {
  8608. name: "Omnimacro",
  8609. height: math.unit(1e252, "yottauniverse")
  8610. },
  8611. ]
  8612. ))
  8613. characterMakers.push(() => makeCharacter(
  8614. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8615. {
  8616. front: {
  8617. height: math.unit(7 + 8 / 12, "feet"),
  8618. weight: math.unit(120, "lb"),
  8619. name: "Front",
  8620. image: {
  8621. source: "./media/characters/danny/front.svg",
  8622. extra: 1490 / 1350
  8623. }
  8624. },
  8625. back: {
  8626. height: math.unit(7 + 8 / 12, "feet"),
  8627. weight: math.unit(120, "lb"),
  8628. name: "Back",
  8629. image: {
  8630. source: "./media/characters/danny/back.svg",
  8631. extra: 1490 / 1350
  8632. }
  8633. },
  8634. },
  8635. [
  8636. {
  8637. name: "Normal",
  8638. height: math.unit(7 + 8 / 12, "feet"),
  8639. default: true
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(3.5, "inches"),
  8648. weight: math.unit(19, "grams"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/mallow/front.svg",
  8652. extra: 471 / 431
  8653. }
  8654. },
  8655. back: {
  8656. height: math.unit(3.5, "inches"),
  8657. weight: math.unit(19, "grams"),
  8658. name: "Back",
  8659. image: {
  8660. source: "./media/characters/mallow/back.svg",
  8661. extra: 471 / 431
  8662. }
  8663. },
  8664. },
  8665. [
  8666. {
  8667. name: "Normal",
  8668. height: math.unit(3.5, "inches"),
  8669. default: true
  8670. },
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8675. {
  8676. front: {
  8677. height: math.unit(9, "feet"),
  8678. weight: math.unit(230, "kg"),
  8679. name: "Front",
  8680. image: {
  8681. source: "./media/characters/starry-aqua/front.svg"
  8682. }
  8683. },
  8684. back: {
  8685. height: math.unit(9, "feet"),
  8686. weight: math.unit(230, "kg"),
  8687. name: "Back",
  8688. image: {
  8689. source: "./media/characters/starry-aqua/back.svg"
  8690. }
  8691. },
  8692. hand: {
  8693. height: math.unit(9 * 0.1168, "feet"),
  8694. name: "Hand",
  8695. image: {
  8696. source: "./media/characters/starry-aqua/hand.svg"
  8697. }
  8698. },
  8699. foot: {
  8700. height: math.unit(9 * 0.18, "feet"),
  8701. name: "Foot",
  8702. image: {
  8703. source: "./media/characters/starry-aqua/foot.svg"
  8704. }
  8705. }
  8706. },
  8707. [
  8708. {
  8709. name: "Micro",
  8710. height: math.unit(3, "inches")
  8711. },
  8712. {
  8713. name: "Normal",
  8714. height: math.unit(9, "feet")
  8715. },
  8716. {
  8717. name: "Macro",
  8718. height: math.unit(300, "feet"),
  8719. default: true
  8720. },
  8721. {
  8722. name: "Megamacro",
  8723. height: math.unit(3200, "feet")
  8724. }
  8725. ]
  8726. ))
  8727. characterMakers.push(() => makeCharacter(
  8728. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8729. {
  8730. front: {
  8731. height: math.unit(6, "feet"),
  8732. weight: math.unit(230, "lb"),
  8733. name: "Front",
  8734. image: {
  8735. source: "./media/characters/luka/front.svg",
  8736. extra: 1,
  8737. bottom: 0.025
  8738. }
  8739. },
  8740. },
  8741. [
  8742. {
  8743. name: "Normal",
  8744. height: math.unit(12 + 8 / 12, "feet"),
  8745. default: true
  8746. },
  8747. {
  8748. name: "Minimacro",
  8749. height: math.unit(20, "feet")
  8750. },
  8751. {
  8752. name: "Macro",
  8753. height: math.unit(250, "feet")
  8754. },
  8755. {
  8756. name: "Megamacro",
  8757. height: math.unit(5, "miles")
  8758. },
  8759. {
  8760. name: "Gigamacro",
  8761. height: math.unit(8000, "miles")
  8762. },
  8763. ]
  8764. ))
  8765. characterMakers.push(() => makeCharacter(
  8766. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8767. {
  8768. front: {
  8769. height: math.unit(6, "feet"),
  8770. weight: math.unit(150, "lb"),
  8771. name: "Front",
  8772. image: {
  8773. source: "./media/characters/natalie-nightring/front.svg",
  8774. extra: 1,
  8775. bottom: 0.06
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Uh Oh",
  8782. height: math.unit(0.1, "mm")
  8783. },
  8784. {
  8785. name: "Small",
  8786. height: math.unit(3, "inches")
  8787. },
  8788. {
  8789. name: "Human Scale",
  8790. height: math.unit(6, "feet")
  8791. },
  8792. {
  8793. name: "Librarian",
  8794. height: math.unit(50, "feet"),
  8795. default: true
  8796. },
  8797. {
  8798. name: "Immense",
  8799. height: math.unit(200, "miles")
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(6, "feet"),
  8808. weight: math.unit(180, "lbs"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/danni-rosie/front.svg",
  8812. extra: 1260 / 1128,
  8813. bottom: 0.022
  8814. }
  8815. },
  8816. },
  8817. [
  8818. {
  8819. name: "Micro",
  8820. height: math.unit(2, "inches"),
  8821. default: true
  8822. },
  8823. ]
  8824. ))
  8825. characterMakers.push(() => makeCharacter(
  8826. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8827. {
  8828. front: {
  8829. height: math.unit(5 + 9 / 12, "feet"),
  8830. weight: math.unit(220, "lb"),
  8831. name: "Front",
  8832. image: {
  8833. source: "./media/characters/samantha-kruse/front.svg",
  8834. extra: (985 / 935),
  8835. bottom: 0.03
  8836. }
  8837. },
  8838. frontUndressed: {
  8839. height: math.unit(5 + 9 / 12, "feet"),
  8840. weight: math.unit(220, "lb"),
  8841. name: "Front (Undressed)",
  8842. image: {
  8843. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8844. extra: (973 / 923),
  8845. bottom: 0.025
  8846. }
  8847. },
  8848. fat: {
  8849. height: math.unit(5 + 9 / 12, "feet"),
  8850. weight: math.unit(900, "lb"),
  8851. name: "Front (Fat)",
  8852. image: {
  8853. source: "./media/characters/samantha-kruse/fat.svg",
  8854. extra: 2688 / 2561
  8855. }
  8856. },
  8857. },
  8858. [
  8859. {
  8860. name: "Normal",
  8861. height: math.unit(5 + 9 / 12, "feet"),
  8862. default: true
  8863. }
  8864. ]
  8865. ))
  8866. characterMakers.push(() => makeCharacter(
  8867. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8868. {
  8869. back: {
  8870. height: math.unit(5 + 4 / 12, "feet"),
  8871. weight: math.unit(4963, "lb"),
  8872. name: "Back",
  8873. image: {
  8874. source: "./media/characters/amelia-rosie/back.svg",
  8875. extra: 1113 / 963,
  8876. bottom: 0.01
  8877. }
  8878. },
  8879. },
  8880. [
  8881. {
  8882. name: "Level 0",
  8883. height: math.unit(5 + 4 / 12, "feet")
  8884. },
  8885. {
  8886. name: "Level 1",
  8887. height: math.unit(164597, "feet"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "Level 2",
  8892. height: math.unit(956243, "miles")
  8893. },
  8894. {
  8895. name: "Level 3",
  8896. height: math.unit(29421709423, "miles")
  8897. },
  8898. {
  8899. name: "Level 4",
  8900. height: math.unit(154, "lightyears")
  8901. },
  8902. {
  8903. name: "Level 5",
  8904. height: math.unit(4738272, "lightyears")
  8905. },
  8906. {
  8907. name: "Level 6",
  8908. height: math.unit(145787152896, "lightyears")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(5 + 11 / 12, "feet"),
  8917. weight: math.unit(65, "kg"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/rook-kitara/front.svg",
  8921. extra: 1347 / 1274,
  8922. bottom: 0.005
  8923. }
  8924. },
  8925. },
  8926. [
  8927. {
  8928. name: "Totally Unfair",
  8929. height: math.unit(1.8, "mm")
  8930. },
  8931. {
  8932. name: "Lap Rookie",
  8933. height: math.unit(1.4, "feet")
  8934. },
  8935. {
  8936. name: "Normal",
  8937. height: math.unit(5 + 11 / 12, "feet"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "How Did This Happen",
  8942. height: math.unit(80, "miles")
  8943. }
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(7, "feet"),
  8951. weight: math.unit(300, "lb"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/pisces/front.svg",
  8955. extra: 2255 / 2115,
  8956. bottom: 0.03
  8957. }
  8958. },
  8959. back: {
  8960. height: math.unit(7, "feet"),
  8961. weight: math.unit(300, "lb"),
  8962. name: "Back",
  8963. image: {
  8964. source: "./media/characters/pisces/back.svg",
  8965. extra: 2146 / 2055,
  8966. bottom: 0.04
  8967. }
  8968. },
  8969. },
  8970. [
  8971. {
  8972. name: "Normal",
  8973. height: math.unit(7, "feet"),
  8974. default: true
  8975. },
  8976. {
  8977. name: "Swimming Pool",
  8978. height: math.unit(12.2, "meters")
  8979. },
  8980. {
  8981. name: "Olympic Swimming Pool",
  8982. height: math.unit(56.3, "meters")
  8983. },
  8984. {
  8985. name: "Lake Superior",
  8986. height: math.unit(93900, "meters")
  8987. },
  8988. {
  8989. name: "Mediterranean Sea",
  8990. height: math.unit(644457, "meters")
  8991. },
  8992. {
  8993. name: "World's Oceans",
  8994. height: math.unit(4567491, "meters")
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9000. {
  9001. front: {
  9002. height: math.unit(2.3, "meters"),
  9003. weight: math.unit(120, "kg"),
  9004. name: "Front",
  9005. image: {
  9006. source: "./media/characters/zelas/front.svg"
  9007. }
  9008. },
  9009. side: {
  9010. height: math.unit(2.3, "meters"),
  9011. weight: math.unit(120, "kg"),
  9012. name: "Side",
  9013. image: {
  9014. source: "./media/characters/zelas/side.svg"
  9015. }
  9016. },
  9017. back: {
  9018. height: math.unit(2.3, "meters"),
  9019. weight: math.unit(120, "kg"),
  9020. name: "Back",
  9021. image: {
  9022. source: "./media/characters/zelas/back.svg"
  9023. }
  9024. },
  9025. foot: {
  9026. height: math.unit(1.116, "feet"),
  9027. name: "Foot",
  9028. image: {
  9029. source: "./media/characters/zelas/foot.svg"
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(2.3, "meters")
  9037. },
  9038. {
  9039. name: "Macro",
  9040. height: math.unit(30, "meters"),
  9041. default: true
  9042. },
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9047. {
  9048. front: {
  9049. height: math.unit(1, "inch"),
  9050. weight: math.unit(0.21, "grams"),
  9051. name: "Front",
  9052. image: {
  9053. source: "./media/characters/talbot/front.svg",
  9054. extra: 594 / 544
  9055. }
  9056. },
  9057. },
  9058. [
  9059. {
  9060. name: "Micro",
  9061. height: math.unit(1, "inch"),
  9062. default: true
  9063. },
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9068. {
  9069. front: {
  9070. height: math.unit(3 + 3 / 12, "feet"),
  9071. weight: math.unit(51.8, "lb"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/fliss/front.svg",
  9075. extra: 840 / 640
  9076. }
  9077. },
  9078. },
  9079. [
  9080. {
  9081. name: "Teeny Tiny",
  9082. height: math.unit(1, "mm")
  9083. },
  9084. {
  9085. name: "Small",
  9086. height: math.unit(1, "inch"),
  9087. default: true
  9088. },
  9089. {
  9090. name: "Standard Sylveon",
  9091. height: math.unit(3 + 3 / 12, "feet")
  9092. },
  9093. {
  9094. name: "Large Nuisance",
  9095. height: math.unit(33, "feet")
  9096. },
  9097. {
  9098. name: "City Filler",
  9099. height: math.unit(3000, "feet")
  9100. },
  9101. {
  9102. name: "New Horizon",
  9103. height: math.unit(6000, "miles")
  9104. },
  9105. ]
  9106. ))
  9107. characterMakers.push(() => makeCharacter(
  9108. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9109. {
  9110. front: {
  9111. height: math.unit(5, "cm"),
  9112. weight: math.unit(1.94, "g"),
  9113. name: "Front",
  9114. image: {
  9115. source: "./media/characters/fleta/front.svg",
  9116. extra: 835 / 803
  9117. }
  9118. },
  9119. back: {
  9120. height: math.unit(5, "cm"),
  9121. weight: math.unit(1.94, "g"),
  9122. name: "Back",
  9123. image: {
  9124. source: "./media/characters/fleta/back.svg",
  9125. extra: 835 / 803
  9126. }
  9127. },
  9128. },
  9129. [
  9130. {
  9131. name: "Micro",
  9132. height: math.unit(5, "cm"),
  9133. default: true
  9134. },
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9139. {
  9140. front: {
  9141. height: math.unit(6, "feet"),
  9142. weight: math.unit(225, "lb"),
  9143. name: "Front",
  9144. image: {
  9145. source: "./media/characters/dominic/front.svg",
  9146. extra: 1770 / 1620,
  9147. bottom: 0.025
  9148. }
  9149. },
  9150. back: {
  9151. height: math.unit(6, "feet"),
  9152. weight: math.unit(225, "lb"),
  9153. name: "Back",
  9154. image: {
  9155. source: "./media/characters/dominic/back.svg",
  9156. extra: 1745 / 1620,
  9157. bottom: 0.065
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Nano",
  9164. height: math.unit(0.1, "mm")
  9165. },
  9166. {
  9167. name: "Micro-",
  9168. height: math.unit(1, "mm")
  9169. },
  9170. {
  9171. name: "Micro",
  9172. height: math.unit(4, "inches")
  9173. },
  9174. {
  9175. name: "Normal",
  9176. height: math.unit(6 + 4 / 12, "feet"),
  9177. default: true
  9178. },
  9179. {
  9180. name: "Macro",
  9181. height: math.unit(115, "feet")
  9182. },
  9183. {
  9184. name: "Macro+",
  9185. height: math.unit(955, "feet")
  9186. },
  9187. {
  9188. name: "Megamacro",
  9189. height: math.unit(8990, "feet")
  9190. },
  9191. {
  9192. name: "Gigmacro",
  9193. height: math.unit(9310, "miles")
  9194. },
  9195. {
  9196. name: "Teramacro",
  9197. height: math.unit(1567005010, "miles")
  9198. },
  9199. {
  9200. name: "Examacro",
  9201. height: math.unit(1425, "parsecs")
  9202. },
  9203. ]
  9204. ))
  9205. characterMakers.push(() => makeCharacter(
  9206. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9207. {
  9208. front: {
  9209. height: math.unit(400, "feet"),
  9210. weight: math.unit(44444444, "lb"),
  9211. name: "Front",
  9212. image: {
  9213. source: "./media/characters/major-colonel/front.svg"
  9214. }
  9215. },
  9216. back: {
  9217. height: math.unit(400, "feet"),
  9218. weight: math.unit(44444444, "lb"),
  9219. name: "Back",
  9220. image: {
  9221. source: "./media/characters/major-colonel/back.svg"
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Macro",
  9228. height: math.unit(400, "feet"),
  9229. default: true
  9230. },
  9231. ]
  9232. ))
  9233. characterMakers.push(() => makeCharacter(
  9234. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9235. {
  9236. catFront: {
  9237. height: math.unit(6, "feet"),
  9238. weight: math.unit(120, "lb"),
  9239. name: "Front (Cat Side)",
  9240. image: {
  9241. source: "./media/characters/axel-lycan/cat-front.svg",
  9242. extra: 430 / 402,
  9243. bottom: 43 / 472.35
  9244. }
  9245. },
  9246. catBack: {
  9247. height: math.unit(6, "feet"),
  9248. weight: math.unit(120, "lb"),
  9249. name: "Back (Cat Side)",
  9250. image: {
  9251. source: "./media/characters/axel-lycan/cat-back.svg",
  9252. extra: 447 / 419,
  9253. bottom: 23.3 / 469
  9254. }
  9255. },
  9256. wolfFront: {
  9257. height: math.unit(6, "feet"),
  9258. weight: math.unit(120, "lb"),
  9259. name: "Front (Wolf Side)",
  9260. image: {
  9261. source: "./media/characters/axel-lycan/wolf-front.svg",
  9262. extra: 485 / 456,
  9263. bottom: 19 / 504
  9264. }
  9265. },
  9266. wolfBack: {
  9267. height: math.unit(6, "feet"),
  9268. weight: math.unit(120, "lb"),
  9269. name: "Back (Wolf Side)",
  9270. image: {
  9271. source: "./media/characters/axel-lycan/wolf-back.svg",
  9272. extra: 475 / 438,
  9273. bottom: 39.2 / 514
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Macro",
  9280. height: math.unit(1, "km"),
  9281. default: true
  9282. },
  9283. ]
  9284. ))
  9285. characterMakers.push(() => makeCharacter(
  9286. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9287. {
  9288. front: {
  9289. height: math.unit(5 + 9 / 12, "feet"),
  9290. weight: math.unit(175, "lb"),
  9291. name: "Front",
  9292. image: {
  9293. source: "./media/characters/vanrel-hyena/front.svg",
  9294. extra: 1086 / 1010,
  9295. bottom: 0.04
  9296. }
  9297. },
  9298. },
  9299. [
  9300. {
  9301. name: "Normal",
  9302. height: math.unit(5 + 9 / 12, "feet"),
  9303. default: true
  9304. },
  9305. ]
  9306. ))
  9307. characterMakers.push(() => makeCharacter(
  9308. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9309. {
  9310. front: {
  9311. height: math.unit(6, "feet"),
  9312. weight: math.unit(103, "lb"),
  9313. name: "Front",
  9314. image: {
  9315. source: "./media/characters/abbott-absol/front.svg",
  9316. extra: 2010 / 1842
  9317. }
  9318. },
  9319. },
  9320. [
  9321. {
  9322. name: "Megamicro",
  9323. height: math.unit(0.1, "mm")
  9324. },
  9325. {
  9326. name: "Micro",
  9327. height: math.unit(1, "inch")
  9328. },
  9329. {
  9330. name: "Normal",
  9331. height: math.unit(6, "feet"),
  9332. default: true
  9333. },
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9338. {
  9339. front: {
  9340. height: math.unit(6, "feet"),
  9341. weight: math.unit(264, "lb"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/hector/front.svg",
  9345. extra: 2280 / 2130,
  9346. bottom: 0.07
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Normal",
  9353. height: math.unit(12.25, "foot"),
  9354. default: true
  9355. },
  9356. {
  9357. name: "Macro",
  9358. height: math.unit(160, "feet")
  9359. },
  9360. ]
  9361. ))
  9362. characterMakers.push(() => makeCharacter(
  9363. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9364. {
  9365. front: {
  9366. height: math.unit(6, "feet"),
  9367. weight: math.unit(150, "lb"),
  9368. name: "Front",
  9369. image: {
  9370. source: "./media/characters/sal/front.svg",
  9371. extra: 1846 / 1699,
  9372. bottom: 0.04
  9373. }
  9374. },
  9375. },
  9376. [
  9377. {
  9378. name: "Megamacro",
  9379. height: math.unit(10, "miles"),
  9380. default: true
  9381. },
  9382. ]
  9383. ))
  9384. characterMakers.push(() => makeCharacter(
  9385. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9386. {
  9387. front: {
  9388. height: math.unit(3, "meters"),
  9389. weight: math.unit(450, "kg"),
  9390. name: "front",
  9391. image: {
  9392. source: "./media/characters/ranger/front.svg",
  9393. extra: 2401 / 2243,
  9394. bottom: 0.05
  9395. }
  9396. },
  9397. },
  9398. [
  9399. {
  9400. name: "Normal",
  9401. height: math.unit(3, "meters"),
  9402. default: true
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9408. {
  9409. front: {
  9410. height: math.unit(14, "feet"),
  9411. weight: math.unit(800, "kg"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/theresa/front.svg",
  9415. extra: 3575 / 3346,
  9416. bottom: 0.03
  9417. }
  9418. },
  9419. },
  9420. [
  9421. {
  9422. name: "Normal",
  9423. height: math.unit(14, "feet"),
  9424. default: true
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9430. {
  9431. front: {
  9432. height: math.unit(6, "feet"),
  9433. weight: math.unit(3, "kg"),
  9434. name: "Front",
  9435. image: {
  9436. source: "./media/characters/ine/front.svg",
  9437. extra: 678 / 539,
  9438. bottom: 0.023
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(2.265, "feet"),
  9446. default: true
  9447. },
  9448. ]
  9449. ))
  9450. characterMakers.push(() => makeCharacter(
  9451. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9452. {
  9453. front: {
  9454. height: math.unit(5, "feet"),
  9455. weight: math.unit(30, "kg"),
  9456. name: "Front",
  9457. image: {
  9458. source: "./media/characters/vial/front.svg",
  9459. extra: 1365 / 1277,
  9460. bottom: 0.04
  9461. }
  9462. },
  9463. },
  9464. [
  9465. {
  9466. name: "Normal",
  9467. height: math.unit(5, "feet"),
  9468. default: true
  9469. },
  9470. ]
  9471. ))
  9472. characterMakers.push(() => makeCharacter(
  9473. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9474. {
  9475. side: {
  9476. height: math.unit(3.4, "meters"),
  9477. weight: math.unit(1000, "lb"),
  9478. name: "Side",
  9479. image: {
  9480. source: "./media/characters/rovoska/side.svg",
  9481. extra: 4403 / 1515
  9482. }
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Normal",
  9488. height: math.unit(3.4, "meters"),
  9489. default: true
  9490. },
  9491. ]
  9492. ))
  9493. characterMakers.push(() => makeCharacter(
  9494. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9495. {
  9496. front: {
  9497. height: math.unit(8, "feet"),
  9498. weight: math.unit(315, "lb"),
  9499. name: "Front",
  9500. image: {
  9501. source: "./media/characters/gunner-rotthbauer/front.svg"
  9502. }
  9503. },
  9504. back: {
  9505. height: math.unit(8, "feet"),
  9506. weight: math.unit(315, "lb"),
  9507. name: "Back",
  9508. image: {
  9509. source: "./media/characters/gunner-rotthbauer/back.svg"
  9510. }
  9511. },
  9512. },
  9513. [
  9514. {
  9515. name: "Micro",
  9516. height: math.unit(3.5, "inches")
  9517. },
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(8, "feet"),
  9521. default: true
  9522. },
  9523. {
  9524. name: "Macro",
  9525. height: math.unit(250, "feet")
  9526. },
  9527. {
  9528. name: "Megamacro",
  9529. height: math.unit(1, "AU")
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9535. {
  9536. front: {
  9537. height: math.unit(5 + 5 / 12, "feet"),
  9538. weight: math.unit(140, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/allatia/front.svg",
  9542. extra: 1227 / 1180,
  9543. bottom: 0.027
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(5 + 5 / 12, "feet")
  9551. },
  9552. {
  9553. name: "Macro",
  9554. height: math.unit(250, "feet"),
  9555. default: true
  9556. },
  9557. {
  9558. name: "Megamacro",
  9559. height: math.unit(8, "miles")
  9560. }
  9561. ]
  9562. ))
  9563. characterMakers.push(() => makeCharacter(
  9564. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9565. {
  9566. front: {
  9567. height: math.unit(6, "feet"),
  9568. weight: math.unit(120, "lb"),
  9569. name: "Front",
  9570. image: {
  9571. source: "./media/characters/tene/front.svg",
  9572. extra: 1728 / 1578,
  9573. bottom: 0.022
  9574. }
  9575. },
  9576. stomping: {
  9577. height: math.unit(2.025, "meters"),
  9578. weight: math.unit(120, "lb"),
  9579. name: "Stomping",
  9580. image: {
  9581. source: "./media/characters/tene/stomping.svg",
  9582. extra: 938 / 873,
  9583. bottom: 0.01
  9584. }
  9585. },
  9586. sitting: {
  9587. height: math.unit(1, "meter"),
  9588. weight: math.unit(120, "lb"),
  9589. name: "Sitting",
  9590. image: {
  9591. source: "./media/characters/tene/sitting.svg",
  9592. extra: 437 / 415,
  9593. bottom: 0.1
  9594. }
  9595. },
  9596. feral: {
  9597. height: math.unit(3.9, "feet"),
  9598. weight: math.unit(250, "lb"),
  9599. name: "Feral",
  9600. image: {
  9601. source: "./media/characters/tene/feral.svg",
  9602. extra: 717 / 458,
  9603. bottom: 0.179
  9604. }
  9605. },
  9606. },
  9607. [
  9608. {
  9609. name: "Normal",
  9610. height: math.unit(6, "feet")
  9611. },
  9612. {
  9613. name: "Macro",
  9614. height: math.unit(300, "feet"),
  9615. default: true
  9616. },
  9617. {
  9618. name: "Megamacro",
  9619. height: math.unit(5, "miles")
  9620. },
  9621. ]
  9622. ))
  9623. characterMakers.push(() => makeCharacter(
  9624. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9625. {
  9626. side: {
  9627. height: math.unit(6, "feet"),
  9628. name: "Side",
  9629. image: {
  9630. source: "./media/characters/evander/side.svg",
  9631. extra: 877 / 477
  9632. }
  9633. },
  9634. },
  9635. [
  9636. {
  9637. name: "Normal",
  9638. height: math.unit(0.83, "meters"),
  9639. default: true
  9640. },
  9641. ]
  9642. ))
  9643. characterMakers.push(() => makeCharacter(
  9644. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9645. {
  9646. front: {
  9647. height: math.unit(12, "feet"),
  9648. weight: math.unit(1000, "lb"),
  9649. name: "Front",
  9650. image: {
  9651. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9652. extra: 1762 / 1611
  9653. }
  9654. },
  9655. back: {
  9656. height: math.unit(12, "feet"),
  9657. weight: math.unit(1000, "lb"),
  9658. name: "Back",
  9659. image: {
  9660. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9661. extra: 1762 / 1611
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Normal",
  9668. height: math.unit(12, "feet"),
  9669. default: true
  9670. },
  9671. {
  9672. name: "Kaiju",
  9673. height: math.unit(150, "feet")
  9674. },
  9675. ]
  9676. ))
  9677. characterMakers.push(() => makeCharacter(
  9678. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9679. {
  9680. front: {
  9681. height: math.unit(6, "feet"),
  9682. weight: math.unit(150, "lb"),
  9683. name: "Front",
  9684. image: {
  9685. source: "./media/characters/zero-alurus/front.svg"
  9686. }
  9687. },
  9688. back: {
  9689. height: math.unit(6, "feet"),
  9690. weight: math.unit(150, "lb"),
  9691. name: "Back",
  9692. image: {
  9693. source: "./media/characters/zero-alurus/back.svg"
  9694. }
  9695. },
  9696. },
  9697. [
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(5 + 10 / 12, "feet")
  9701. },
  9702. {
  9703. name: "Macro",
  9704. height: math.unit(60, "feet"),
  9705. default: true
  9706. },
  9707. {
  9708. name: "Macro+",
  9709. height: math.unit(450, "feet")
  9710. },
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9715. {
  9716. front: {
  9717. height: math.unit(6, "feet"),
  9718. weight: math.unit(200, "lb"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/mega-shi/front.svg",
  9722. extra: 1279 / 1250,
  9723. bottom: 0.02
  9724. }
  9725. },
  9726. back: {
  9727. height: math.unit(6, "feet"),
  9728. weight: math.unit(200, "lb"),
  9729. name: "Back",
  9730. image: {
  9731. source: "./media/characters/mega-shi/back.svg",
  9732. extra: 1279 / 1250,
  9733. bottom: 0.02
  9734. }
  9735. },
  9736. },
  9737. [
  9738. {
  9739. name: "Micro",
  9740. height: math.unit(16 + 6 / 12, "feet")
  9741. },
  9742. {
  9743. name: "Third Dimension",
  9744. height: math.unit(40, "meters")
  9745. },
  9746. {
  9747. name: "Normal",
  9748. height: math.unit(660, "feet"),
  9749. default: true
  9750. },
  9751. {
  9752. name: "Megamacro",
  9753. height: math.unit(10, "miles")
  9754. },
  9755. {
  9756. name: "Planetary Launch",
  9757. height: math.unit(500, "miles")
  9758. },
  9759. {
  9760. name: "Interstellar",
  9761. height: math.unit(1e9, "miles")
  9762. },
  9763. {
  9764. name: "Leaving the Universe",
  9765. height: math.unit(1, "gigaparsec")
  9766. },
  9767. {
  9768. name: "Travelling Universes",
  9769. height: math.unit(30e15, "parsecs")
  9770. },
  9771. ]
  9772. ))
  9773. characterMakers.push(() => makeCharacter(
  9774. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9775. {
  9776. front: {
  9777. height: math.unit(6, "feet"),
  9778. weight: math.unit(150, "lb"),
  9779. name: "Front",
  9780. image: {
  9781. source: "./media/characters/odyssey/front.svg",
  9782. extra: 1782 / 1582,
  9783. bottom: 0.01
  9784. }
  9785. },
  9786. side: {
  9787. height: math.unit(5.7, "feet"),
  9788. weight: math.unit(140, "lb"),
  9789. name: "Side",
  9790. image: {
  9791. source: "./media/characters/odyssey/side.svg",
  9792. extra: 6462 / 5700
  9793. }
  9794. },
  9795. },
  9796. [
  9797. {
  9798. name: "Normal",
  9799. height: math.unit(5 + 4 / 12, "feet")
  9800. },
  9801. {
  9802. name: "Macro",
  9803. height: math.unit(1, "km")
  9804. },
  9805. {
  9806. name: "Megamacro",
  9807. height: math.unit(3000, "km")
  9808. },
  9809. {
  9810. name: "Gigamacro",
  9811. height: math.unit(1, "AU"),
  9812. default: true
  9813. },
  9814. {
  9815. name: "Omniversal",
  9816. height: math.unit(100e14, "lightyears")
  9817. },
  9818. ]
  9819. ))
  9820. characterMakers.push(() => makeCharacter(
  9821. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9822. {
  9823. front: {
  9824. height: math.unit(6, "feet"),
  9825. weight: math.unit(300, "lb"),
  9826. name: "Front",
  9827. image: {
  9828. source: "./media/characters/mekuto/front.svg",
  9829. extra: 921 / 832,
  9830. bottom: 0.03
  9831. }
  9832. },
  9833. hand: {
  9834. height: math.unit(6 / 10.24, "feet"),
  9835. name: "Hand",
  9836. image: {
  9837. source: "./media/characters/mekuto/hand.svg"
  9838. }
  9839. },
  9840. foot: {
  9841. height: math.unit(6 / 5.05, "feet"),
  9842. name: "Foot",
  9843. image: {
  9844. source: "./media/characters/mekuto/foot.svg"
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Minimicro",
  9851. height: math.unit(0.2, "inches")
  9852. },
  9853. {
  9854. name: "Micro",
  9855. height: math.unit(1.5, "inches")
  9856. },
  9857. {
  9858. name: "Normal",
  9859. height: math.unit(5 + 11 / 12, "feet"),
  9860. default: true
  9861. },
  9862. {
  9863. name: "Minimacro",
  9864. height: math.unit(17 + 9 / 12, "feet")
  9865. },
  9866. {
  9867. name: "Macro",
  9868. height: math.unit(177.5, "feet")
  9869. },
  9870. {
  9871. name: "Megamacro",
  9872. height: math.unit(152, "miles")
  9873. },
  9874. ]
  9875. ))
  9876. characterMakers.push(() => makeCharacter(
  9877. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9878. {
  9879. front: {
  9880. height: math.unit(6.5, "inches"),
  9881. weight: math.unit(13, "oz"),
  9882. name: "Front",
  9883. image: {
  9884. source: "./media/characters/dafydd-tomos/front.svg",
  9885. extra: 2990 / 2603,
  9886. bottom: 0.03
  9887. }
  9888. },
  9889. },
  9890. [
  9891. {
  9892. name: "Micro",
  9893. height: math.unit(6.5, "inches"),
  9894. default: true
  9895. },
  9896. ]
  9897. ))
  9898. characterMakers.push(() => makeCharacter(
  9899. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9900. {
  9901. front: {
  9902. height: math.unit(6, "feet"),
  9903. weight: math.unit(150, "lb"),
  9904. name: "Front",
  9905. image: {
  9906. source: "./media/characters/splinter/front.svg",
  9907. extra: 2990 / 2882,
  9908. bottom: 0.04
  9909. }
  9910. },
  9911. back: {
  9912. height: math.unit(6, "feet"),
  9913. weight: math.unit(150, "lb"),
  9914. name: "Back",
  9915. image: {
  9916. source: "./media/characters/splinter/back.svg",
  9917. extra: 2990 / 2882,
  9918. bottom: 0.04
  9919. }
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Normal",
  9925. height: math.unit(6, "feet")
  9926. },
  9927. {
  9928. name: "Macro",
  9929. height: math.unit(230, "meters"),
  9930. default: true
  9931. },
  9932. ]
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9936. {
  9937. front: {
  9938. height: math.unit(4 + 10 / 12, "feet"),
  9939. weight: math.unit(480, "lb"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/snow-gabumon/front.svg",
  9943. extra: 1140 / 963,
  9944. bottom: 0.058
  9945. }
  9946. },
  9947. back: {
  9948. height: math.unit(4 + 10 / 12, "feet"),
  9949. weight: math.unit(480, "lb"),
  9950. name: "Back",
  9951. image: {
  9952. source: "./media/characters/snow-gabumon/back.svg",
  9953. extra: 1115 / 962,
  9954. bottom: 0.041
  9955. }
  9956. },
  9957. frontUndresed: {
  9958. height: math.unit(4 + 10 / 12, "feet"),
  9959. weight: math.unit(480, "lb"),
  9960. name: "Front (Undressed)",
  9961. image: {
  9962. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9963. extra: 1061 / 960,
  9964. bottom: 0.045
  9965. }
  9966. },
  9967. },
  9968. [
  9969. {
  9970. name: "Micro",
  9971. height: math.unit(1, "inch")
  9972. },
  9973. {
  9974. name: "Normal",
  9975. height: math.unit(4 + 10 / 12, "feet"),
  9976. default: true
  9977. },
  9978. {
  9979. name: "Macro",
  9980. height: math.unit(200, "feet")
  9981. },
  9982. {
  9983. name: "Megamacro",
  9984. height: math.unit(120, "miles")
  9985. },
  9986. {
  9987. name: "Gigamacro",
  9988. height: math.unit(9800, "miles")
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(1.7, "meters"),
  9997. weight: math.unit(140, "lb"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/moody/front.svg",
  10001. extra: 3226 / 3007,
  10002. bottom: 0.087
  10003. }
  10004. },
  10005. },
  10006. [
  10007. {
  10008. name: "Micro",
  10009. height: math.unit(1, "mm")
  10010. },
  10011. {
  10012. name: "Normal",
  10013. height: math.unit(1.7, "meters"),
  10014. default: true
  10015. },
  10016. {
  10017. name: "Macro",
  10018. height: math.unit(80, "meters")
  10019. },
  10020. {
  10021. name: "Macro+",
  10022. height: math.unit(500, "meters")
  10023. },
  10024. ]
  10025. ))
  10026. characterMakers.push(() => makeCharacter(
  10027. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10028. {
  10029. front: {
  10030. height: math.unit(6, "feet"),
  10031. weight: math.unit(150, "lb"),
  10032. name: "Front",
  10033. image: {
  10034. source: "./media/characters/zyas/front.svg",
  10035. extra: 1180 / 1120,
  10036. bottom: 0.045
  10037. }
  10038. },
  10039. },
  10040. [
  10041. {
  10042. name: "Normal",
  10043. height: math.unit(10, "feet"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Macro",
  10048. height: math.unit(500, "feet")
  10049. },
  10050. {
  10051. name: "Megamacro",
  10052. height: math.unit(5, "miles")
  10053. },
  10054. {
  10055. name: "Teramacro",
  10056. height: math.unit(150000, "miles")
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10062. {
  10063. front: {
  10064. height: math.unit(6, "feet"),
  10065. weight: math.unit(150, "lb"),
  10066. name: "Front",
  10067. image: {
  10068. source: "./media/characters/cuon/front.svg",
  10069. extra: 1390 / 1320,
  10070. bottom: 0.008
  10071. }
  10072. },
  10073. },
  10074. [
  10075. {
  10076. name: "Micro",
  10077. height: math.unit(3, "inches")
  10078. },
  10079. {
  10080. name: "Normal",
  10081. height: math.unit(18 + 9 / 12, "feet"),
  10082. default: true
  10083. },
  10084. {
  10085. name: "Macro",
  10086. height: math.unit(360, "feet")
  10087. },
  10088. {
  10089. name: "Megamacro",
  10090. height: math.unit(360, "miles")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(2.4, "meters"),
  10099. weight: math.unit(70, "kg"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/nyanuxk/front.svg",
  10103. extra: 1172 / 1084,
  10104. bottom: 0.065
  10105. }
  10106. },
  10107. side: {
  10108. height: math.unit(2.4, "meters"),
  10109. weight: math.unit(70, "kg"),
  10110. name: "Side",
  10111. image: {
  10112. source: "./media/characters/nyanuxk/side.svg",
  10113. extra: 1190 / 1132,
  10114. bottom: 0.007
  10115. }
  10116. },
  10117. back: {
  10118. height: math.unit(2.4, "meters"),
  10119. weight: math.unit(70, "kg"),
  10120. name: "Back",
  10121. image: {
  10122. source: "./media/characters/nyanuxk/back.svg",
  10123. extra: 1200 / 1141,
  10124. bottom: 0.015
  10125. }
  10126. },
  10127. foot: {
  10128. height: math.unit(0.52, "meters"),
  10129. name: "Foot",
  10130. image: {
  10131. source: "./media/characters/nyanuxk/foot.svg"
  10132. }
  10133. },
  10134. },
  10135. [
  10136. {
  10137. name: "Micro",
  10138. height: math.unit(2, "cm")
  10139. },
  10140. {
  10141. name: "Normal",
  10142. height: math.unit(2.4, "meters"),
  10143. default: true
  10144. },
  10145. {
  10146. name: "Smaller Macro",
  10147. height: math.unit(120, "meters")
  10148. },
  10149. {
  10150. name: "Bigger Macro",
  10151. height: math.unit(1.2, "km")
  10152. },
  10153. {
  10154. name: "Megamacro",
  10155. height: math.unit(15, "kilometers")
  10156. },
  10157. {
  10158. name: "Gigamacro",
  10159. height: math.unit(2000, "km")
  10160. },
  10161. {
  10162. name: "Teramacro",
  10163. height: math.unit(500000, "km")
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10169. {
  10170. side: {
  10171. height: math.unit(6, "feet"),
  10172. name: "Side",
  10173. image: {
  10174. source: "./media/characters/ailbhe/side.svg",
  10175. extra: 757 / 464,
  10176. bottom: 0.041
  10177. }
  10178. },
  10179. },
  10180. [
  10181. {
  10182. name: "Normal",
  10183. height: math.unit(1.07, "meters"),
  10184. default: true
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(6, "feet"),
  10193. weight: math.unit(120, "kg"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/zevulfius/front.svg",
  10197. extra: 965 / 903
  10198. }
  10199. },
  10200. side: {
  10201. height: math.unit(6, "feet"),
  10202. weight: math.unit(120, "kg"),
  10203. name: "Side",
  10204. image: {
  10205. source: "./media/characters/zevulfius/side.svg",
  10206. extra: 939 / 900
  10207. }
  10208. },
  10209. back: {
  10210. height: math.unit(6, "feet"),
  10211. weight: math.unit(120, "kg"),
  10212. name: "Back",
  10213. image: {
  10214. source: "./media/characters/zevulfius/back.svg",
  10215. extra: 918 / 854,
  10216. bottom: 0.005
  10217. }
  10218. },
  10219. foot: {
  10220. height: math.unit(6 / 3.72, "feet"),
  10221. name: "Foot",
  10222. image: {
  10223. source: "./media/characters/zevulfius/foot.svg"
  10224. }
  10225. },
  10226. },
  10227. [
  10228. {
  10229. name: "Macro",
  10230. height: math.unit(750, "meters")
  10231. },
  10232. {
  10233. name: "Megamacro",
  10234. height: math.unit(20, "km"),
  10235. default: true
  10236. },
  10237. {
  10238. name: "Gigamacro",
  10239. height: math.unit(2000, "km")
  10240. },
  10241. {
  10242. name: "Teramacro",
  10243. height: math.unit(250000, "km")
  10244. },
  10245. ]
  10246. ))
  10247. characterMakers.push(() => makeCharacter(
  10248. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10249. {
  10250. front: {
  10251. height: math.unit(100, "feet"),
  10252. weight: math.unit(350, "kg"),
  10253. name: "Front",
  10254. image: {
  10255. source: "./media/characters/rikes/front.svg",
  10256. extra: 1565 / 1483,
  10257. bottom: 0.017
  10258. }
  10259. },
  10260. },
  10261. [
  10262. {
  10263. name: "Macro",
  10264. height: math.unit(100, "feet"),
  10265. default: true
  10266. },
  10267. ]
  10268. ))
  10269. characterMakers.push(() => makeCharacter(
  10270. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10271. {
  10272. anthro: {
  10273. height: math.unit(8, "feet"),
  10274. weight: math.unit(120, "kg"),
  10275. name: "Anthro",
  10276. image: {
  10277. source: "./media/characters/adam-silver-mane/anthro.svg",
  10278. extra: 5743 / 5339,
  10279. bottom: 0.07
  10280. }
  10281. },
  10282. taur: {
  10283. height: math.unit(16, "feet"),
  10284. weight: math.unit(1500, "kg"),
  10285. name: "Taur",
  10286. image: {
  10287. source: "./media/characters/adam-silver-mane/taur.svg",
  10288. extra: 1713 / 1571,
  10289. bottom: 0.01
  10290. }
  10291. },
  10292. },
  10293. [
  10294. {
  10295. name: "Normal",
  10296. height: math.unit(8, "feet")
  10297. },
  10298. {
  10299. name: "Minimacro",
  10300. height: math.unit(80, "feet")
  10301. },
  10302. {
  10303. name: "Macro",
  10304. height: math.unit(800, "feet"),
  10305. default: true
  10306. },
  10307. {
  10308. name: "Megamacro",
  10309. height: math.unit(8000, "feet")
  10310. },
  10311. {
  10312. name: "Gigamacro",
  10313. height: math.unit(800, "miles")
  10314. },
  10315. {
  10316. name: "Teramacro",
  10317. height: math.unit(80000, "miles")
  10318. },
  10319. {
  10320. name: "Celestial",
  10321. height: math.unit(8e6, "miles")
  10322. },
  10323. {
  10324. name: "Star Dragon",
  10325. height: math.unit(800000, "parsecs")
  10326. },
  10327. {
  10328. name: "Godly",
  10329. height: math.unit(800, "teraparsecs")
  10330. },
  10331. ]
  10332. ))
  10333. characterMakers.push(() => makeCharacter(
  10334. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10335. {
  10336. front: {
  10337. height: math.unit(6, "feet"),
  10338. weight: math.unit(150, "lb"),
  10339. name: "Front",
  10340. image: {
  10341. source: "./media/characters/ky'owin/front.svg",
  10342. extra: 3888 / 3068,
  10343. bottom: 0.015
  10344. }
  10345. },
  10346. },
  10347. [
  10348. {
  10349. name: "Normal",
  10350. height: math.unit(6 + 8 / 12, "feet")
  10351. },
  10352. {
  10353. name: "Large",
  10354. height: math.unit(68, "feet")
  10355. },
  10356. {
  10357. name: "Macro",
  10358. height: math.unit(132, "feet")
  10359. },
  10360. {
  10361. name: "Macro+",
  10362. height: math.unit(340, "feet")
  10363. },
  10364. {
  10365. name: "Macro++",
  10366. height: math.unit(680, "feet"),
  10367. default: true
  10368. },
  10369. {
  10370. name: "Megamacro",
  10371. height: math.unit(1, "mile")
  10372. },
  10373. {
  10374. name: "Megamacro+",
  10375. height: math.unit(10, "miles")
  10376. },
  10377. ]
  10378. ))
  10379. characterMakers.push(() => makeCharacter(
  10380. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10381. {
  10382. front: {
  10383. height: math.unit(4, "feet"),
  10384. weight: math.unit(50, "lb"),
  10385. name: "Front",
  10386. image: {
  10387. source: "./media/characters/mal/front.svg",
  10388. extra: 785 / 724,
  10389. bottom: 0.07
  10390. }
  10391. },
  10392. },
  10393. [
  10394. {
  10395. name: "Micro",
  10396. height: math.unit(4, "inches")
  10397. },
  10398. {
  10399. name: "Normal",
  10400. height: math.unit(4, "feet"),
  10401. default: true
  10402. },
  10403. {
  10404. name: "Macro",
  10405. height: math.unit(200, "feet")
  10406. },
  10407. ]
  10408. ))
  10409. characterMakers.push(() => makeCharacter(
  10410. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10411. {
  10412. front: {
  10413. height: math.unit(6, "feet"),
  10414. weight: math.unit(150, "lb"),
  10415. name: "Front",
  10416. image: {
  10417. source: "./media/characters/jordan-deware/front.svg",
  10418. extra: 1191 / 1012
  10419. }
  10420. },
  10421. },
  10422. [
  10423. {
  10424. name: "Nano",
  10425. height: math.unit(0.01, "mm")
  10426. },
  10427. {
  10428. name: "Minimicro",
  10429. height: math.unit(1, "mm")
  10430. },
  10431. {
  10432. name: "Micro",
  10433. height: math.unit(0.5, "inches")
  10434. },
  10435. {
  10436. name: "Normal",
  10437. height: math.unit(4, "feet"),
  10438. default: true
  10439. },
  10440. {
  10441. name: "Minimacro",
  10442. height: math.unit(40, "meters")
  10443. },
  10444. {
  10445. name: "Small Macro",
  10446. height: math.unit(400, "meters")
  10447. },
  10448. {
  10449. name: "Macro",
  10450. height: math.unit(4, "miles")
  10451. },
  10452. {
  10453. name: "Megamacro",
  10454. height: math.unit(40, "miles")
  10455. },
  10456. {
  10457. name: "Megamacro+",
  10458. height: math.unit(400, "miles")
  10459. },
  10460. {
  10461. name: "Gigamacro",
  10462. height: math.unit(400000, "miles")
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10468. {
  10469. side: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(150, "lb"),
  10472. name: "Side",
  10473. image: {
  10474. source: "./media/characters/kimiko/side.svg",
  10475. extra: 600 / 358
  10476. }
  10477. },
  10478. },
  10479. [
  10480. {
  10481. name: "Normal",
  10482. height: math.unit(15, "feet"),
  10483. default: true
  10484. },
  10485. {
  10486. name: "Macro",
  10487. height: math.unit(220, "feet")
  10488. },
  10489. {
  10490. name: "Macro+",
  10491. height: math.unit(1450, "feet")
  10492. },
  10493. {
  10494. name: "Megamacro",
  10495. height: math.unit(11500, "feet")
  10496. },
  10497. {
  10498. name: "Gigamacro",
  10499. height: math.unit(9500, "miles")
  10500. },
  10501. {
  10502. name: "Teramacro",
  10503. height: math.unit(2208005005, "miles")
  10504. },
  10505. {
  10506. name: "Examacro",
  10507. height: math.unit(2750, "parsecs")
  10508. },
  10509. {
  10510. name: "Zettamacro",
  10511. height: math.unit(101500, "parsecs")
  10512. },
  10513. ]
  10514. ))
  10515. characterMakers.push(() => makeCharacter(
  10516. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10517. {
  10518. front: {
  10519. height: math.unit(6, "feet"),
  10520. weight: math.unit(70, "kg"),
  10521. name: "Front",
  10522. image: {
  10523. source: "./media/characters/andrew-sleepy/front.svg"
  10524. }
  10525. },
  10526. side: {
  10527. height: math.unit(6, "feet"),
  10528. weight: math.unit(70, "kg"),
  10529. name: "Side",
  10530. image: {
  10531. source: "./media/characters/andrew-sleepy/side.svg"
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Micro",
  10538. height: math.unit(1, "mm"),
  10539. default: true
  10540. },
  10541. ]
  10542. ))
  10543. characterMakers.push(() => makeCharacter(
  10544. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10545. {
  10546. front: {
  10547. height: math.unit(6, "feet"),
  10548. weight: math.unit(150, "lb"),
  10549. name: "Front",
  10550. image: {
  10551. source: "./media/characters/judio/front.svg",
  10552. extra: 1258 / 1110
  10553. }
  10554. },
  10555. },
  10556. [
  10557. {
  10558. name: "Normal",
  10559. height: math.unit(5 + 6 / 12, "feet")
  10560. },
  10561. {
  10562. name: "Macro",
  10563. height: math.unit(1000, "feet"),
  10564. default: true
  10565. },
  10566. {
  10567. name: "Megamacro",
  10568. height: math.unit(10, "miles")
  10569. },
  10570. ]
  10571. ))
  10572. characterMakers.push(() => makeCharacter(
  10573. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10574. {
  10575. front: {
  10576. height: math.unit(6, "feet"),
  10577. weight: math.unit(68, "kg"),
  10578. name: "Front",
  10579. image: {
  10580. source: "./media/characters/nomaxice/front.svg",
  10581. extra: 1498 / 1073,
  10582. bottom: 0.075
  10583. }
  10584. },
  10585. foot: {
  10586. height: math.unit(1.1, "feet"),
  10587. name: "Foot",
  10588. image: {
  10589. source: "./media/characters/nomaxice/foot.svg"
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Micro",
  10596. height: math.unit(8, "cm")
  10597. },
  10598. {
  10599. name: "Norm",
  10600. height: math.unit(1.82, "m")
  10601. },
  10602. {
  10603. name: "Norm+",
  10604. height: math.unit(8.8, "feet")
  10605. },
  10606. {
  10607. name: "Big",
  10608. height: math.unit(8, "meters"),
  10609. default: true
  10610. },
  10611. {
  10612. name: "Macro",
  10613. height: math.unit(18, "meters")
  10614. },
  10615. {
  10616. name: "Macro+",
  10617. height: math.unit(88, "meters")
  10618. },
  10619. ]
  10620. ))
  10621. characterMakers.push(() => makeCharacter(
  10622. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10623. {
  10624. front: {
  10625. height: math.unit(12, "feet"),
  10626. weight: math.unit(1.5, "tons"),
  10627. name: "Front",
  10628. image: {
  10629. source: "./media/characters/dydros/front.svg",
  10630. extra: 863 / 800,
  10631. bottom: 0.015
  10632. }
  10633. },
  10634. back: {
  10635. height: math.unit(12, "feet"),
  10636. weight: math.unit(1.5, "tons"),
  10637. name: "Back",
  10638. image: {
  10639. source: "./media/characters/dydros/back.svg",
  10640. extra: 900 / 843,
  10641. bottom: 0.005
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Normal",
  10648. height: math.unit(12, "feet"),
  10649. default: true
  10650. },
  10651. ]
  10652. ))
  10653. characterMakers.push(() => makeCharacter(
  10654. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10655. {
  10656. front: {
  10657. height: math.unit(6, "feet"),
  10658. weight: math.unit(100, "kg"),
  10659. name: "Front",
  10660. image: {
  10661. source: "./media/characters/riggi/front.svg",
  10662. extra: 5787 / 5303
  10663. }
  10664. },
  10665. hyper: {
  10666. height: math.unit(6 * 5 / 3, "feet"),
  10667. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10668. name: "Hyper",
  10669. image: {
  10670. source: "./media/characters/riggi/hyper.svg",
  10671. extra: 3595 / 3485
  10672. }
  10673. },
  10674. },
  10675. [
  10676. {
  10677. name: "Small Macro",
  10678. height: math.unit(50, "feet")
  10679. },
  10680. {
  10681. name: "Default",
  10682. height: math.unit(200, "feet"),
  10683. default: true
  10684. },
  10685. {
  10686. name: "Loom",
  10687. height: math.unit(10000, "feet")
  10688. },
  10689. {
  10690. name: "Cruising Altitude",
  10691. height: math.unit(30000, "feet")
  10692. },
  10693. {
  10694. name: "Megamacro",
  10695. height: math.unit(100, "miles")
  10696. },
  10697. {
  10698. name: "Continent Sized",
  10699. height: math.unit(2800, "miles")
  10700. },
  10701. {
  10702. name: "Earth Sized",
  10703. height: math.unit(8000, "miles")
  10704. },
  10705. ]
  10706. ))
  10707. characterMakers.push(() => makeCharacter(
  10708. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10709. {
  10710. front: {
  10711. height: math.unit(6, "feet"),
  10712. weight: math.unit(250, "lb"),
  10713. name: "Front",
  10714. image: {
  10715. source: "./media/characters/alexi/front.svg",
  10716. extra: 3483 / 3291,
  10717. bottom: 0.04
  10718. }
  10719. },
  10720. back: {
  10721. height: math.unit(6, "feet"),
  10722. weight: math.unit(250, "lb"),
  10723. name: "Back",
  10724. image: {
  10725. source: "./media/characters/alexi/back.svg",
  10726. extra: 3533 / 3356,
  10727. bottom: 0.021
  10728. }
  10729. },
  10730. frontTransforming: {
  10731. height: math.unit(8.58, "feet"),
  10732. weight: math.unit(1300, "lb"),
  10733. name: "Transforming",
  10734. image: {
  10735. source: "./media/characters/alexi/front-transforming.svg",
  10736. extra: 437 / 409,
  10737. bottom: 19 / 458.66
  10738. }
  10739. },
  10740. frontTransformed: {
  10741. height: math.unit(12.5, "feet"),
  10742. weight: math.unit(4000, "lb"),
  10743. name: "Transformed",
  10744. image: {
  10745. source: "./media/characters/alexi/front-transformed.svg",
  10746. extra: 639 / 614,
  10747. bottom: 30.55 / 671
  10748. }
  10749. },
  10750. },
  10751. [
  10752. {
  10753. name: "Normal",
  10754. height: math.unit(14, "feet"),
  10755. default: true
  10756. },
  10757. {
  10758. name: "Minimacro",
  10759. height: math.unit(30, "meters")
  10760. },
  10761. {
  10762. name: "Macro",
  10763. height: math.unit(500, "meters")
  10764. },
  10765. {
  10766. name: "Megamacro",
  10767. height: math.unit(9000, "km")
  10768. },
  10769. {
  10770. name: "Teramacro",
  10771. height: math.unit(384000, "km")
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10777. {
  10778. front: {
  10779. height: math.unit(6, "feet"),
  10780. weight: math.unit(150, "lb"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/kayroo/front.svg",
  10784. extra: 1153 / 1038,
  10785. bottom: 0.06
  10786. }
  10787. },
  10788. foot: {
  10789. height: math.unit(6, "feet"),
  10790. weight: math.unit(150, "lb"),
  10791. name: "Foot",
  10792. image: {
  10793. source: "./media/characters/kayroo/foot.svg"
  10794. }
  10795. },
  10796. },
  10797. [
  10798. {
  10799. name: "Normal",
  10800. height: math.unit(8, "feet"),
  10801. default: true
  10802. },
  10803. {
  10804. name: "Minimacro",
  10805. height: math.unit(250, "feet")
  10806. },
  10807. {
  10808. name: "Macro",
  10809. height: math.unit(2800, "feet")
  10810. },
  10811. {
  10812. name: "Megamacro",
  10813. height: math.unit(5200, "feet")
  10814. },
  10815. {
  10816. name: "Gigamacro",
  10817. height: math.unit(27000, "feet")
  10818. },
  10819. {
  10820. name: "Omega",
  10821. height: math.unit(45000, "feet")
  10822. },
  10823. ]
  10824. ))
  10825. characterMakers.push(() => makeCharacter(
  10826. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10827. {
  10828. front: {
  10829. height: math.unit(18, "feet"),
  10830. weight: math.unit(5800, "lb"),
  10831. name: "Front",
  10832. image: {
  10833. source: "./media/characters/rhys/front.svg",
  10834. extra: 3386 / 3090,
  10835. bottom: 0.07
  10836. }
  10837. },
  10838. },
  10839. [
  10840. {
  10841. name: "Normal",
  10842. height: math.unit(18, "feet"),
  10843. default: true
  10844. },
  10845. {
  10846. name: "Working Size",
  10847. height: math.unit(200, "feet")
  10848. },
  10849. {
  10850. name: "Demolition Size",
  10851. height: math.unit(2000, "feet")
  10852. },
  10853. {
  10854. name: "Maximum Licensed Size",
  10855. height: math.unit(5, "miles")
  10856. },
  10857. {
  10858. name: "Maximum Observed Size",
  10859. height: math.unit(10, "yottameters")
  10860. },
  10861. ]
  10862. ))
  10863. characterMakers.push(() => makeCharacter(
  10864. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10865. {
  10866. front: {
  10867. height: math.unit(6, "feet"),
  10868. weight: math.unit(250, "lb"),
  10869. name: "Front",
  10870. image: {
  10871. source: "./media/characters/toto/front.svg",
  10872. extra: 527 / 479,
  10873. bottom: 0.05
  10874. }
  10875. },
  10876. },
  10877. [
  10878. {
  10879. name: "Micro",
  10880. height: math.unit(3, "feet")
  10881. },
  10882. {
  10883. name: "Normal",
  10884. height: math.unit(10, "feet")
  10885. },
  10886. {
  10887. name: "Macro",
  10888. height: math.unit(150, "feet"),
  10889. default: true
  10890. },
  10891. {
  10892. name: "Megamacro",
  10893. height: math.unit(1200, "feet")
  10894. },
  10895. ]
  10896. ))
  10897. characterMakers.push(() => makeCharacter(
  10898. { name: "King", species: ["lion"], tags: ["anthro"] },
  10899. {
  10900. back: {
  10901. height: math.unit(6, "feet"),
  10902. weight: math.unit(150, "lb"),
  10903. name: "Back",
  10904. image: {
  10905. source: "./media/characters/king/back.svg"
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Micro",
  10912. height: math.unit(2, "inches")
  10913. },
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(8, "feet")
  10917. },
  10918. {
  10919. name: "Macro",
  10920. height: math.unit(200, "feet"),
  10921. default: true
  10922. },
  10923. {
  10924. name: "Megamacro",
  10925. height: math.unit(50, "miles")
  10926. },
  10927. ]
  10928. ))
  10929. characterMakers.push(() => makeCharacter(
  10930. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10931. {
  10932. anthro: {
  10933. height: math.unit(6 + 5 / 12, "feet"),
  10934. weight: math.unit(280, "lb"),
  10935. name: "Anthro",
  10936. image: {
  10937. source: "./media/characters/cordite/anthro.svg",
  10938. extra: 1986 / 1905,
  10939. bottom: 0.025
  10940. }
  10941. },
  10942. feral: {
  10943. height: math.unit(2, "feet"),
  10944. weight: math.unit(90, "lb"),
  10945. name: "Feral",
  10946. image: {
  10947. source: "./media/characters/cordite/feral.svg",
  10948. extra: 1260 / 755,
  10949. bottom: 0.05
  10950. }
  10951. },
  10952. },
  10953. [
  10954. {
  10955. name: "Normal",
  10956. height: math.unit(6 + 5 / 12, "feet"),
  10957. default: true
  10958. },
  10959. ]
  10960. ))
  10961. characterMakers.push(() => makeCharacter(
  10962. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10963. {
  10964. front: {
  10965. height: math.unit(6, "feet"),
  10966. weight: math.unit(150, "lb"),
  10967. name: "Front",
  10968. image: {
  10969. source: "./media/characters/pianostrong/front.svg",
  10970. extra: 6577 / 6254,
  10971. bottom: 0.02
  10972. }
  10973. },
  10974. side: {
  10975. height: math.unit(6, "feet"),
  10976. weight: math.unit(150, "lb"),
  10977. name: "Side",
  10978. image: {
  10979. source: "./media/characters/pianostrong/side.svg",
  10980. extra: 6106 / 5730
  10981. }
  10982. },
  10983. back: {
  10984. height: math.unit(6, "feet"),
  10985. weight: math.unit(150, "lb"),
  10986. name: "Back",
  10987. image: {
  10988. source: "./media/characters/pianostrong/back.svg",
  10989. extra: 6085 / 5733,
  10990. bottom: 0.01
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Macro",
  10997. height: math.unit(100, "feet")
  10998. },
  10999. {
  11000. name: "Macro+",
  11001. height: math.unit(300, "feet"),
  11002. default: true
  11003. },
  11004. {
  11005. name: "Macro++",
  11006. height: math.unit(1000, "feet")
  11007. },
  11008. ]
  11009. ))
  11010. characterMakers.push(() => makeCharacter(
  11011. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11012. {
  11013. front: {
  11014. height: math.unit(6, "feet"),
  11015. weight: math.unit(150, "lb"),
  11016. name: "Front",
  11017. image: {
  11018. source: "./media/characters/kona/front.svg",
  11019. extra: 2960 / 2629,
  11020. bottom: 0.005
  11021. }
  11022. },
  11023. },
  11024. [
  11025. {
  11026. name: "Normal",
  11027. height: math.unit(11 + 8 / 12, "feet")
  11028. },
  11029. {
  11030. name: "Macro",
  11031. height: math.unit(850, "feet"),
  11032. default: true
  11033. },
  11034. {
  11035. name: "Macro+",
  11036. height: math.unit(1.5, "km"),
  11037. default: true
  11038. },
  11039. {
  11040. name: "Megamacro",
  11041. height: math.unit(80, "miles")
  11042. },
  11043. {
  11044. name: "Gigamacro",
  11045. height: math.unit(3500, "miles")
  11046. },
  11047. ]
  11048. ))
  11049. characterMakers.push(() => makeCharacter(
  11050. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11051. {
  11052. side: {
  11053. height: math.unit(1.9, "meters"),
  11054. weight: math.unit(326, "kg"),
  11055. name: "Side",
  11056. image: {
  11057. source: "./media/characters/levi/side.svg",
  11058. extra: 1704 / 1334,
  11059. bottom: 0.02
  11060. }
  11061. },
  11062. },
  11063. [
  11064. {
  11065. name: "Normal",
  11066. height: math.unit(1.9, "meters"),
  11067. default: true
  11068. },
  11069. {
  11070. name: "Macro",
  11071. height: math.unit(20, "meters")
  11072. },
  11073. {
  11074. name: "Macro+",
  11075. height: math.unit(200, "meters")
  11076. },
  11077. {
  11078. name: "Megamacro",
  11079. height: math.unit(2, "km")
  11080. },
  11081. {
  11082. name: "Megamacro+",
  11083. height: math.unit(20, "km")
  11084. },
  11085. {
  11086. name: "Gigamacro",
  11087. height: math.unit(2500, "km")
  11088. },
  11089. {
  11090. name: "Gigamacro+",
  11091. height: math.unit(120000, "km")
  11092. },
  11093. {
  11094. name: "Teramacro",
  11095. height: math.unit(7.77e6, "km")
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11101. {
  11102. front: {
  11103. height: math.unit(6 + 4 / 12, "feet"),
  11104. weight: math.unit(188, "lb"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/bmc/front.svg",
  11108. extra: 1067 / 1022,
  11109. bottom: 0.047
  11110. }
  11111. },
  11112. },
  11113. [
  11114. {
  11115. name: "Human-sized",
  11116. height: math.unit(6 + 4 / 12, "feet")
  11117. },
  11118. {
  11119. name: "Small",
  11120. height: math.unit(250, "feet")
  11121. },
  11122. {
  11123. name: "Normal",
  11124. height: math.unit(1250, "feet"),
  11125. default: true
  11126. },
  11127. {
  11128. name: "Good Day",
  11129. height: math.unit(88, "miles")
  11130. },
  11131. {
  11132. name: "Largest Measured Size",
  11133. height: math.unit(11.2e6, "lightyears")
  11134. },
  11135. ]
  11136. ))
  11137. characterMakers.push(() => makeCharacter(
  11138. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11139. {
  11140. front: {
  11141. height: math.unit(20, "feet"),
  11142. weight: math.unit(2016, "kg"),
  11143. name: "Front",
  11144. image: {
  11145. source: "./media/characters/sven-the-kaiju/front.svg",
  11146. extra: 1277/1250,
  11147. bottom: 35/1312
  11148. }
  11149. },
  11150. mouth: {
  11151. height: math.unit(1.85, "feet"),
  11152. name: "Mouth",
  11153. image: {
  11154. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11155. }
  11156. },
  11157. },
  11158. [
  11159. {
  11160. name: "Fairy",
  11161. height: math.unit(6, "inches")
  11162. },
  11163. {
  11164. name: "Normal",
  11165. height: math.unit(20, "feet"),
  11166. default: true
  11167. },
  11168. {
  11169. name: "Rampage",
  11170. height: math.unit(200, "feet")
  11171. },
  11172. {
  11173. name: "Archfey Forest Guardian",
  11174. height: math.unit(1, "mile")
  11175. },
  11176. ]
  11177. ))
  11178. characterMakers.push(() => makeCharacter(
  11179. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11180. {
  11181. front: {
  11182. height: math.unit(4, "meters"),
  11183. weight: math.unit(2, "tons"),
  11184. name: "Front",
  11185. image: {
  11186. source: "./media/characters/marik/front.svg",
  11187. extra: 1057 / 1003,
  11188. bottom: 0.08
  11189. }
  11190. },
  11191. },
  11192. [
  11193. {
  11194. name: "Normal",
  11195. height: math.unit(4, "meters"),
  11196. default: true
  11197. },
  11198. {
  11199. name: "Macro",
  11200. height: math.unit(20, "meters")
  11201. },
  11202. {
  11203. name: "Megamacro",
  11204. height: math.unit(50, "km")
  11205. },
  11206. {
  11207. name: "Gigamacro",
  11208. height: math.unit(100, "km")
  11209. },
  11210. {
  11211. name: "Alpha Macro",
  11212. height: math.unit(7.88e7, "yottameters")
  11213. },
  11214. ]
  11215. ))
  11216. characterMakers.push(() => makeCharacter(
  11217. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11218. {
  11219. front: {
  11220. height: math.unit(6, "feet"),
  11221. weight: math.unit(110, "lb"),
  11222. name: "Front",
  11223. image: {
  11224. source: "./media/characters/mel/front.svg",
  11225. extra: 736 / 617,
  11226. bottom: 0.017
  11227. }
  11228. },
  11229. },
  11230. [
  11231. {
  11232. name: "Pico",
  11233. height: math.unit(3, "pm")
  11234. },
  11235. {
  11236. name: "Nano",
  11237. height: math.unit(3, "nm")
  11238. },
  11239. {
  11240. name: "Micro",
  11241. height: math.unit(0.3, "mm"),
  11242. default: true
  11243. },
  11244. {
  11245. name: "Micro+",
  11246. height: math.unit(3, "mm")
  11247. },
  11248. {
  11249. name: "Normal",
  11250. height: math.unit(5 + 10.5 / 12, "feet")
  11251. },
  11252. ]
  11253. ))
  11254. characterMakers.push(() => makeCharacter(
  11255. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11256. {
  11257. kaiju: {
  11258. height: math.unit(1.75, "meters"),
  11259. weight: math.unit(55, "kg"),
  11260. name: "Kaiju",
  11261. image: {
  11262. source: "./media/characters/lykonous/kaiju.svg",
  11263. extra: 1055 / 946,
  11264. bottom: 0.135
  11265. }
  11266. },
  11267. },
  11268. [
  11269. {
  11270. name: "Normal",
  11271. height: math.unit(2.5, "meters"),
  11272. default: true
  11273. },
  11274. {
  11275. name: "Kaiju Dragon",
  11276. height: math.unit(60, "meters")
  11277. },
  11278. {
  11279. name: "Mega Kaiju",
  11280. height: math.unit(120, "km")
  11281. },
  11282. {
  11283. name: "Giga Kaiju",
  11284. height: math.unit(200, "megameters")
  11285. },
  11286. {
  11287. name: "Terra Kaiju",
  11288. height: math.unit(400, "gigameters")
  11289. },
  11290. {
  11291. name: "Kaiju Dragon God",
  11292. height: math.unit(13000, "exaparsecs")
  11293. },
  11294. ]
  11295. ))
  11296. characterMakers.push(() => makeCharacter(
  11297. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11298. {
  11299. front: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(150, "lb"),
  11302. name: "Front",
  11303. image: {
  11304. source: "./media/characters/blü/front.svg",
  11305. extra: 1883 / 1564,
  11306. bottom: 0.031
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Normal",
  11313. height: math.unit(13, "feet"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Big Boi",
  11318. height: math.unit(150, "meters")
  11319. },
  11320. {
  11321. name: "Mini Stomper",
  11322. height: math.unit(300, "meters")
  11323. },
  11324. {
  11325. name: "Macro",
  11326. height: math.unit(1000, "meters")
  11327. },
  11328. {
  11329. name: "Megamacro",
  11330. height: math.unit(11000, "meters")
  11331. },
  11332. {
  11333. name: "Gigamacro",
  11334. height: math.unit(11000, "km")
  11335. },
  11336. {
  11337. name: "Teramacro",
  11338. height: math.unit(420000, "km")
  11339. },
  11340. {
  11341. name: "Examacro",
  11342. height: math.unit(120, "parsecs")
  11343. },
  11344. {
  11345. name: "God Tho",
  11346. height: math.unit(98000000000, "parsecs")
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11352. {
  11353. taurFront: {
  11354. height: math.unit(6, "feet"),
  11355. weight: math.unit(200, "lb"),
  11356. name: "Taur (Front)",
  11357. image: {
  11358. source: "./media/characters/scales/taur-front.svg",
  11359. extra: 1,
  11360. bottom: 0.05
  11361. }
  11362. },
  11363. taurBack: {
  11364. height: math.unit(6, "feet"),
  11365. weight: math.unit(200, "lb"),
  11366. name: "Taur (Back)",
  11367. image: {
  11368. source: "./media/characters/scales/taur-back.svg",
  11369. extra: 1,
  11370. bottom: 0.08
  11371. }
  11372. },
  11373. anthro: {
  11374. height: math.unit(6 * 7 / 12, "feet"),
  11375. weight: math.unit(100, "lb"),
  11376. name: "Anthro",
  11377. image: {
  11378. source: "./media/characters/scales/anthro.svg",
  11379. extra: 1,
  11380. bottom: 0.06
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Normal",
  11387. height: math.unit(12, "feet"),
  11388. default: true
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11394. {
  11395. front: {
  11396. height: math.unit(6, "feet"),
  11397. weight: math.unit(150, "lb"),
  11398. name: "Front",
  11399. image: {
  11400. source: "./media/characters/koragos/front.svg",
  11401. extra: 841 / 794,
  11402. bottom: 0.035
  11403. }
  11404. },
  11405. back: {
  11406. height: math.unit(6, "feet"),
  11407. weight: math.unit(150, "lb"),
  11408. name: "Back",
  11409. image: {
  11410. source: "./media/characters/koragos/back.svg",
  11411. extra: 841 / 810,
  11412. bottom: 0.022
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Normal",
  11419. height: math.unit(6 + 11 / 12, "feet"),
  11420. default: true
  11421. },
  11422. {
  11423. name: "Macro",
  11424. height: math.unit(490, "feet")
  11425. },
  11426. {
  11427. name: "Megamacro",
  11428. height: math.unit(10, "miles")
  11429. },
  11430. {
  11431. name: "Gigamacro",
  11432. height: math.unit(50, "miles")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(6, "feet"),
  11441. weight: math.unit(250, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/xylrem/front.svg",
  11445. extra: 3323 / 3050,
  11446. bottom: 0.065
  11447. }
  11448. },
  11449. },
  11450. [
  11451. {
  11452. name: "Micro",
  11453. height: math.unit(4, "feet")
  11454. },
  11455. {
  11456. name: "Normal",
  11457. height: math.unit(16, "feet"),
  11458. default: true
  11459. },
  11460. {
  11461. name: "Macro",
  11462. height: math.unit(2720, "feet")
  11463. },
  11464. {
  11465. name: "Megamacro",
  11466. height: math.unit(25000, "miles")
  11467. },
  11468. ]
  11469. ))
  11470. characterMakers.push(() => makeCharacter(
  11471. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11472. {
  11473. front: {
  11474. height: math.unit(8, "feet"),
  11475. weight: math.unit(250, "kg"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/ikideru/front.svg",
  11479. extra: 930 / 870,
  11480. bottom: 0.087
  11481. }
  11482. },
  11483. back: {
  11484. height: math.unit(8, "feet"),
  11485. weight: math.unit(250, "kg"),
  11486. name: "Back",
  11487. image: {
  11488. source: "./media/characters/ikideru/back.svg",
  11489. extra: 919 / 852,
  11490. bottom: 0.055
  11491. }
  11492. },
  11493. },
  11494. [
  11495. {
  11496. name: "Rare",
  11497. height: math.unit(8, "feet"),
  11498. default: true
  11499. },
  11500. {
  11501. name: "Playful Loom",
  11502. height: math.unit(80, "feet")
  11503. },
  11504. {
  11505. name: "City Leaner",
  11506. height: math.unit(230, "feet")
  11507. },
  11508. {
  11509. name: "Megamacro",
  11510. height: math.unit(2500, "feet")
  11511. },
  11512. {
  11513. name: "Gigamacro",
  11514. height: math.unit(26400, "feet")
  11515. },
  11516. {
  11517. name: "Tectonic Shifter",
  11518. height: math.unit(1.7, "megameters")
  11519. },
  11520. {
  11521. name: "Planet Carer",
  11522. height: math.unit(21, "megameters")
  11523. },
  11524. {
  11525. name: "God",
  11526. height: math.unit(11157.22, "parsecs")
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11532. {
  11533. front: {
  11534. height: math.unit(6, "feet"),
  11535. weight: math.unit(120, "lb"),
  11536. name: "Front",
  11537. image: {
  11538. source: "./media/characters/neo/front.svg"
  11539. }
  11540. },
  11541. },
  11542. [
  11543. {
  11544. name: "Micro",
  11545. height: math.unit(2, "inches"),
  11546. default: true
  11547. },
  11548. {
  11549. name: "Human Size",
  11550. height: math.unit(5 + 8 / 12, "feet")
  11551. },
  11552. ]
  11553. ))
  11554. characterMakers.push(() => makeCharacter(
  11555. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11556. {
  11557. front: {
  11558. height: math.unit(13 + 10 / 12, "feet"),
  11559. weight: math.unit(5320, "lb"),
  11560. name: "Front",
  11561. image: {
  11562. source: "./media/characters/chauncey-chantz/front.svg",
  11563. extra: 1587 / 1435,
  11564. bottom: 0.02
  11565. }
  11566. },
  11567. },
  11568. [
  11569. {
  11570. name: "Normal",
  11571. height: math.unit(13 + 10 / 12, "feet"),
  11572. default: true
  11573. },
  11574. {
  11575. name: "Macro",
  11576. height: math.unit(45, "feet")
  11577. },
  11578. {
  11579. name: "Megamacro",
  11580. height: math.unit(250, "miles")
  11581. },
  11582. {
  11583. name: "Planetary",
  11584. height: math.unit(10000, "miles")
  11585. },
  11586. {
  11587. name: "Galactic",
  11588. height: math.unit(40000, "parsecs")
  11589. },
  11590. {
  11591. name: "Universal",
  11592. height: math.unit(1, "yottameter")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11598. {
  11599. front: {
  11600. height: math.unit(6, "feet"),
  11601. weight: math.unit(150, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/epifox/front.svg",
  11605. extra: 1,
  11606. bottom: 0.075
  11607. }
  11608. },
  11609. },
  11610. [
  11611. {
  11612. name: "Micro",
  11613. height: math.unit(6, "inches")
  11614. },
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(12, "feet"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Macro",
  11622. height: math.unit(3810, "feet")
  11623. },
  11624. {
  11625. name: "Megamacro",
  11626. height: math.unit(500, "miles")
  11627. },
  11628. ]
  11629. ))
  11630. characterMakers.push(() => makeCharacter(
  11631. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11632. {
  11633. front: {
  11634. height: math.unit(1.8796, "m"),
  11635. weight: math.unit(230, "lb"),
  11636. name: "Front",
  11637. image: {
  11638. source: "./media/characters/colin-t/front.svg",
  11639. extra: 1272 / 1193,
  11640. bottom: 0.07
  11641. }
  11642. },
  11643. },
  11644. [
  11645. {
  11646. name: "Micro",
  11647. height: math.unit(0.571, "meters")
  11648. },
  11649. {
  11650. name: "Normal",
  11651. height: math.unit(1.8796, "meters"),
  11652. default: true
  11653. },
  11654. {
  11655. name: "Tall",
  11656. height: math.unit(4, "meters")
  11657. },
  11658. {
  11659. name: "Macro",
  11660. height: math.unit(67.241, "meters")
  11661. },
  11662. {
  11663. name: "Megamacro",
  11664. height: math.unit(371.856, "meters")
  11665. },
  11666. {
  11667. name: "Planetary",
  11668. height: math.unit(12631.5689, "km")
  11669. },
  11670. ]
  11671. ))
  11672. characterMakers.push(() => makeCharacter(
  11673. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11674. {
  11675. front: {
  11676. height: math.unit(1.85, "meters"),
  11677. weight: math.unit(80, "kg"),
  11678. name: "Front",
  11679. image: {
  11680. source: "./media/characters/matvei/front.svg",
  11681. extra: 614 / 594,
  11682. bottom: 0.01
  11683. }
  11684. },
  11685. },
  11686. [
  11687. {
  11688. name: "Normal",
  11689. height: math.unit(1.85, "meters"),
  11690. default: true
  11691. },
  11692. ]
  11693. ))
  11694. characterMakers.push(() => makeCharacter(
  11695. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11696. {
  11697. front: {
  11698. height: math.unit(5 + 9 / 12, "feet"),
  11699. weight: math.unit(70, "lb"),
  11700. name: "Front",
  11701. image: {
  11702. source: "./media/characters/quincy/front.svg",
  11703. extra: 3041 / 2751
  11704. }
  11705. },
  11706. back: {
  11707. height: math.unit(5 + 9 / 12, "feet"),
  11708. weight: math.unit(70, "lb"),
  11709. name: "Back",
  11710. image: {
  11711. source: "./media/characters/quincy/back.svg",
  11712. extra: 3041 / 2751
  11713. }
  11714. },
  11715. flying: {
  11716. height: math.unit(5 + 4 / 12, "feet"),
  11717. weight: math.unit(70, "lb"),
  11718. name: "Flying",
  11719. image: {
  11720. source: "./media/characters/quincy/flying.svg",
  11721. extra: 1044 / 930
  11722. }
  11723. },
  11724. },
  11725. [
  11726. {
  11727. name: "Micro",
  11728. height: math.unit(3, "cm")
  11729. },
  11730. {
  11731. name: "Normal",
  11732. height: math.unit(5 + 9 / 12, "feet")
  11733. },
  11734. {
  11735. name: "Macro",
  11736. height: math.unit(200, "meters"),
  11737. default: true
  11738. },
  11739. {
  11740. name: "Megamacro",
  11741. height: math.unit(1000, "meters")
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11747. {
  11748. front: {
  11749. height: math.unit(4 + 7 / 12, "feet"),
  11750. weight: math.unit(50, "lb"),
  11751. name: "Front",
  11752. image: {
  11753. source: "./media/characters/vanrel/front.svg",
  11754. extra: 1,
  11755. bottom: 0.02
  11756. }
  11757. },
  11758. frontAlt: {
  11759. height: math.unit(4 + 7 / 12, "feet"),
  11760. weight: math.unit(50, "lb"),
  11761. name: "Front-alt",
  11762. image: {
  11763. source: "./media/characters/vanrel/front-alt.svg",
  11764. extra: 1,
  11765. bottom: 15 / 1511
  11766. }
  11767. },
  11768. elemental: {
  11769. height: math.unit(3, "feet"),
  11770. weight: math.unit(50, "lb"),
  11771. name: "Elemental",
  11772. image: {
  11773. source: "./media/characters/vanrel/elemental.svg",
  11774. extra: 192.3 / 162.8,
  11775. bottom: 1.79 / 194.17
  11776. }
  11777. },
  11778. side: {
  11779. height: math.unit(4 + 7 / 12, "feet"),
  11780. weight: math.unit(50, "lb"),
  11781. name: "Side",
  11782. image: {
  11783. source: "./media/characters/vanrel/side.svg",
  11784. extra: 1,
  11785. bottom: 0.025
  11786. }
  11787. },
  11788. tome: {
  11789. height: math.unit(1.35, "feet"),
  11790. weight: math.unit(10, "lb"),
  11791. name: "Vanrel's Tome",
  11792. rename: true,
  11793. image: {
  11794. source: "./media/characters/vanrel/tome.svg"
  11795. }
  11796. },
  11797. beans: {
  11798. height: math.unit(0.89, "feet"),
  11799. name: "Beans",
  11800. image: {
  11801. source: "./media/characters/vanrel/beans.svg"
  11802. }
  11803. },
  11804. },
  11805. [
  11806. {
  11807. name: "Normal",
  11808. height: math.unit(4 + 7 / 12, "feet"),
  11809. default: true
  11810. },
  11811. ]
  11812. ))
  11813. characterMakers.push(() => makeCharacter(
  11814. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11815. {
  11816. front: {
  11817. height: math.unit(7 + 5 / 12, "feet"),
  11818. weight: math.unit(150, "lb"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/kuiper-vanrel/front.svg",
  11822. extra: 1118 / 1068,
  11823. bottom: 0.09
  11824. }
  11825. },
  11826. foot: {
  11827. height: math.unit(0.55, "meters"),
  11828. name: "Foot",
  11829. image: {
  11830. source: "./media/characters/kuiper-vanrel/foot.svg",
  11831. }
  11832. },
  11833. battle: {
  11834. height: math.unit(6.824, "feet"),
  11835. weight: math.unit(150, "lb"),
  11836. name: "Battle",
  11837. image: {
  11838. source: "./media/characters/kuiper-vanrel/battle.svg",
  11839. extra: 1466 / 1327,
  11840. bottom: 29 / 1492.5
  11841. }
  11842. },
  11843. battleAlt: {
  11844. height: math.unit(6.824, "feet"),
  11845. weight: math.unit(150, "lb"),
  11846. name: "Battle (Alt)",
  11847. image: {
  11848. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11849. extra: 2081 / 1965,
  11850. bottom: 40 / 2121
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Normal",
  11857. height: math.unit(7 + 5 / 12, "feet"),
  11858. default: true
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11864. {
  11865. front: {
  11866. height: math.unit(8 + 5 / 12, "feet"),
  11867. weight: math.unit(150, "lb"),
  11868. name: "Front",
  11869. image: {
  11870. source: "./media/characters/keset-vanrel/front.svg",
  11871. extra: 1150 / 1084,
  11872. bottom: 0.05
  11873. }
  11874. },
  11875. hand: {
  11876. height: math.unit(0.6, "meters"),
  11877. name: "Hand",
  11878. image: {
  11879. source: "./media/characters/keset-vanrel/hand.svg"
  11880. }
  11881. },
  11882. foot: {
  11883. height: math.unit(0.94978, "meters"),
  11884. name: "Foot",
  11885. image: {
  11886. source: "./media/characters/keset-vanrel/foot.svg"
  11887. }
  11888. },
  11889. battle: {
  11890. height: math.unit(7.408, "feet"),
  11891. weight: math.unit(150, "lb"),
  11892. name: "Battle",
  11893. image: {
  11894. source: "./media/characters/keset-vanrel/battle.svg",
  11895. extra: 1890 / 1386,
  11896. bottom: 73.28 / 1970
  11897. }
  11898. },
  11899. },
  11900. [
  11901. {
  11902. name: "Normal",
  11903. height: math.unit(8 + 5 / 12, "feet"),
  11904. default: true
  11905. },
  11906. ]
  11907. ))
  11908. characterMakers.push(() => makeCharacter(
  11909. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11910. {
  11911. front: {
  11912. height: math.unit(6, "feet"),
  11913. weight: math.unit(150, "lb"),
  11914. name: "Front",
  11915. image: {
  11916. source: "./media/characters/neos/front.svg",
  11917. extra: 1696 / 992,
  11918. bottom: 0.14
  11919. }
  11920. },
  11921. },
  11922. [
  11923. {
  11924. name: "Normal",
  11925. height: math.unit(54, "cm"),
  11926. default: true
  11927. },
  11928. {
  11929. name: "Macro",
  11930. height: math.unit(100, "m")
  11931. },
  11932. {
  11933. name: "Megamacro",
  11934. height: math.unit(10, "km")
  11935. },
  11936. {
  11937. name: "Megamacro+",
  11938. height: math.unit(100, "km")
  11939. },
  11940. {
  11941. name: "Gigamacro",
  11942. height: math.unit(100, "Mm")
  11943. },
  11944. {
  11945. name: "Teramacro",
  11946. height: math.unit(100, "Gm")
  11947. },
  11948. {
  11949. name: "Examacro",
  11950. height: math.unit(100, "Em")
  11951. },
  11952. {
  11953. name: "Godly",
  11954. height: math.unit(10000, "Ym")
  11955. },
  11956. {
  11957. name: "Beyond Godly",
  11958. height: math.unit(25, "multiverses")
  11959. },
  11960. ]
  11961. ))
  11962. characterMakers.push(() => makeCharacter(
  11963. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11964. {
  11965. feminine: {
  11966. height: math.unit(5, "feet"),
  11967. weight: math.unit(100, "lb"),
  11968. name: "Feminine",
  11969. image: {
  11970. source: "./media/characters/sammy-mouse/feminine.svg",
  11971. extra: 2526 / 2425,
  11972. bottom: 0.123
  11973. }
  11974. },
  11975. masculine: {
  11976. height: math.unit(5, "feet"),
  11977. weight: math.unit(100, "lb"),
  11978. name: "Masculine",
  11979. image: {
  11980. source: "./media/characters/sammy-mouse/masculine.svg",
  11981. extra: 2526 / 2425,
  11982. bottom: 0.123
  11983. }
  11984. },
  11985. },
  11986. [
  11987. {
  11988. name: "Micro",
  11989. height: math.unit(5, "inches")
  11990. },
  11991. {
  11992. name: "Normal",
  11993. height: math.unit(5, "feet"),
  11994. default: true
  11995. },
  11996. {
  11997. name: "Macro",
  11998. height: math.unit(60, "feet")
  11999. },
  12000. ]
  12001. ))
  12002. characterMakers.push(() => makeCharacter(
  12003. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12004. {
  12005. front: {
  12006. height: math.unit(4, "feet"),
  12007. weight: math.unit(50, "lb"),
  12008. name: "Front",
  12009. image: {
  12010. source: "./media/characters/kole/front.svg",
  12011. extra: 1423 / 1303,
  12012. bottom: 0.025
  12013. }
  12014. },
  12015. back: {
  12016. height: math.unit(4, "feet"),
  12017. weight: math.unit(50, "lb"),
  12018. name: "Back",
  12019. image: {
  12020. source: "./media/characters/kole/back.svg",
  12021. extra: 1426 / 1280,
  12022. bottom: 0.02
  12023. }
  12024. },
  12025. },
  12026. [
  12027. {
  12028. name: "Normal",
  12029. height: math.unit(4, "feet"),
  12030. default: true
  12031. },
  12032. ]
  12033. ))
  12034. characterMakers.push(() => makeCharacter(
  12035. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12036. {
  12037. front: {
  12038. height: math.unit(2 + 6 / 12, "feet"),
  12039. weight: math.unit(20, "lb"),
  12040. name: "Front",
  12041. image: {
  12042. source: "./media/characters/rufran/front.svg",
  12043. extra: 2041 / 1839,
  12044. bottom: 0.055
  12045. }
  12046. },
  12047. back: {
  12048. height: math.unit(2 + 6 / 12, "feet"),
  12049. weight: math.unit(20, "lb"),
  12050. name: "Back",
  12051. image: {
  12052. source: "./media/characters/rufran/back.svg",
  12053. extra: 2054 / 1839,
  12054. bottom: 0.01
  12055. }
  12056. },
  12057. hand: {
  12058. height: math.unit(0.2166, "meters"),
  12059. name: "Hand",
  12060. image: {
  12061. source: "./media/characters/rufran/hand.svg"
  12062. }
  12063. },
  12064. foot: {
  12065. height: math.unit(0.185, "meters"),
  12066. name: "Foot",
  12067. image: {
  12068. source: "./media/characters/rufran/foot.svg"
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Micro",
  12075. height: math.unit(1, "inch")
  12076. },
  12077. {
  12078. name: "Normal",
  12079. height: math.unit(2 + 6 / 12, "feet"),
  12080. default: true
  12081. },
  12082. {
  12083. name: "Big",
  12084. height: math.unit(60, "feet")
  12085. },
  12086. {
  12087. name: "Macro",
  12088. height: math.unit(325, "feet")
  12089. },
  12090. ]
  12091. ))
  12092. characterMakers.push(() => makeCharacter(
  12093. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12094. {
  12095. front: {
  12096. height: math.unit(0.3, "meters"),
  12097. weight: math.unit(3.5, "kg"),
  12098. name: "Front",
  12099. image: {
  12100. source: "./media/characters/chip/front.svg",
  12101. extra: 748 / 674
  12102. }
  12103. },
  12104. },
  12105. [
  12106. {
  12107. name: "Micro",
  12108. height: math.unit(1, "inch"),
  12109. default: true
  12110. },
  12111. ]
  12112. ))
  12113. characterMakers.push(() => makeCharacter(
  12114. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12115. {
  12116. side: {
  12117. height: math.unit(2.3, "meters"),
  12118. weight: math.unit(3500, "lb"),
  12119. name: "Side",
  12120. image: {
  12121. source: "./media/characters/torvid/side.svg",
  12122. extra: 1972 / 722,
  12123. bottom: 0.035
  12124. }
  12125. },
  12126. },
  12127. [
  12128. {
  12129. name: "Normal",
  12130. height: math.unit(2.3, "meters"),
  12131. default: true
  12132. },
  12133. ]
  12134. ))
  12135. characterMakers.push(() => makeCharacter(
  12136. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12137. {
  12138. front: {
  12139. height: math.unit(2, "meters"),
  12140. weight: math.unit(150.5, "kg"),
  12141. name: "Front",
  12142. image: {
  12143. source: "./media/characters/susan/front.svg",
  12144. extra: 693 / 635,
  12145. bottom: 0.05
  12146. }
  12147. },
  12148. },
  12149. [
  12150. {
  12151. name: "Megamacro",
  12152. height: math.unit(505, "miles"),
  12153. default: true
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(150, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/raindrops/front.svg",
  12166. extra: 2655 / 2461,
  12167. bottom: 49 / 2705
  12168. }
  12169. },
  12170. back: {
  12171. height: math.unit(6, "feet"),
  12172. weight: math.unit(150, "lb"),
  12173. name: "Back",
  12174. image: {
  12175. source: "./media/characters/raindrops/back.svg",
  12176. extra: 2574 / 2400,
  12177. bottom: 65 / 2634
  12178. }
  12179. },
  12180. },
  12181. [
  12182. {
  12183. name: "Micro",
  12184. height: math.unit(6, "inches")
  12185. },
  12186. {
  12187. name: "Normal",
  12188. height: math.unit(6 + 2 / 12, "feet")
  12189. },
  12190. {
  12191. name: "Macro",
  12192. height: math.unit(131, "feet"),
  12193. default: true
  12194. },
  12195. {
  12196. name: "Megamacro",
  12197. height: math.unit(15, "miles")
  12198. },
  12199. {
  12200. name: "Gigamacro",
  12201. height: math.unit(4000, "miles")
  12202. },
  12203. {
  12204. name: "Teramacro",
  12205. height: math.unit(315000, "miles")
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(2.794, "meters"),
  12214. weight: math.unit(325, "kg"),
  12215. name: "Front",
  12216. image: {
  12217. source: "./media/characters/tezwa/front.svg",
  12218. extra: 2083 / 1906,
  12219. bottom: 0.031
  12220. }
  12221. },
  12222. foot: {
  12223. height: math.unit(0.687, "meters"),
  12224. name: "Foot",
  12225. image: {
  12226. source: "./media/characters/tezwa/foot.svg"
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Normal",
  12233. height: math.unit(9 + 2 / 12, "feet"),
  12234. default: true
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(58, "feet"),
  12243. weight: math.unit(89000, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/typhus/front.svg",
  12247. extra: 816 / 800,
  12248. bottom: 0.065
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Macro",
  12255. height: math.unit(58, "feet"),
  12256. default: true
  12257. },
  12258. ]
  12259. ))
  12260. characterMakers.push(() => makeCharacter(
  12261. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12262. {
  12263. front: {
  12264. height: math.unit(12, "feet"),
  12265. weight: math.unit(6, "tonnes"),
  12266. name: "Front",
  12267. image: {
  12268. source: "./media/characters/lyra-von-wulf/front.svg",
  12269. extra: 1,
  12270. bottom: 0.10
  12271. }
  12272. },
  12273. frontMecha: {
  12274. height: math.unit(12, "feet"),
  12275. weight: math.unit(12, "tonnes"),
  12276. name: "Front (Mecha)",
  12277. image: {
  12278. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12279. extra: 1,
  12280. bottom: 0.042
  12281. }
  12282. },
  12283. maw: {
  12284. height: math.unit(2.2, "feet"),
  12285. name: "Maw",
  12286. image: {
  12287. source: "./media/characters/lyra-von-wulf/maw.svg"
  12288. }
  12289. },
  12290. },
  12291. [
  12292. {
  12293. name: "Normal",
  12294. height: math.unit(12, "feet"),
  12295. default: true
  12296. },
  12297. {
  12298. name: "Classic",
  12299. height: math.unit(50, "feet")
  12300. },
  12301. {
  12302. name: "Macro",
  12303. height: math.unit(500, "feet")
  12304. },
  12305. {
  12306. name: "Megamacro",
  12307. height: math.unit(1, "mile")
  12308. },
  12309. {
  12310. name: "Gigamacro",
  12311. height: math.unit(400, "miles")
  12312. },
  12313. {
  12314. name: "Teramacro",
  12315. height: math.unit(22000, "miles")
  12316. },
  12317. {
  12318. name: "Solarmacro",
  12319. height: math.unit(8600000, "miles")
  12320. },
  12321. {
  12322. name: "Galactic",
  12323. height: math.unit(1057000, "lightyears")
  12324. },
  12325. ]
  12326. ))
  12327. characterMakers.push(() => makeCharacter(
  12328. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12329. {
  12330. front: {
  12331. height: math.unit(6 + 10 / 12, "feet"),
  12332. weight: math.unit(150, "lb"),
  12333. name: "Front",
  12334. image: {
  12335. source: "./media/characters/dixon/front.svg",
  12336. extra: 3361 / 3209,
  12337. bottom: 0.01
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Normal",
  12344. height: math.unit(6 + 10 / 12, "feet"),
  12345. default: true
  12346. },
  12347. {
  12348. name: "Big",
  12349. height: math.unit(12, "meters")
  12350. },
  12351. {
  12352. name: "Macro",
  12353. height: math.unit(500, "meters")
  12354. },
  12355. {
  12356. name: "Megamacro",
  12357. height: math.unit(2, "km")
  12358. },
  12359. ]
  12360. ))
  12361. characterMakers.push(() => makeCharacter(
  12362. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12363. {
  12364. front: {
  12365. height: math.unit(185, "cm"),
  12366. weight: math.unit(68, "kg"),
  12367. name: "Front",
  12368. image: {
  12369. source: "./media/characters/kauko/front.svg",
  12370. extra: 1455 / 1421,
  12371. bottom: 0.03
  12372. }
  12373. },
  12374. back: {
  12375. height: math.unit(185, "cm"),
  12376. weight: math.unit(68, "kg"),
  12377. name: "Back",
  12378. image: {
  12379. source: "./media/characters/kauko/back.svg",
  12380. extra: 1455 / 1421,
  12381. bottom: 0.004
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Normal",
  12388. height: math.unit(185, "cm"),
  12389. default: true
  12390. },
  12391. ]
  12392. ))
  12393. characterMakers.push(() => makeCharacter(
  12394. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12395. {
  12396. front: {
  12397. height: math.unit(6, "feet"),
  12398. weight: math.unit(150, "kg"),
  12399. name: "Front",
  12400. image: {
  12401. source: "./media/characters/varg/front.svg",
  12402. extra: 1108 / 1018,
  12403. bottom: 0.0375
  12404. }
  12405. },
  12406. },
  12407. [
  12408. {
  12409. name: "Normal",
  12410. height: math.unit(5, "meters")
  12411. },
  12412. {
  12413. name: "Macro",
  12414. height: math.unit(200, "meters")
  12415. },
  12416. {
  12417. name: "Megamacro",
  12418. height: math.unit(20, "kilometers")
  12419. },
  12420. {
  12421. name: "True Size",
  12422. height: math.unit(211, "km"),
  12423. default: true
  12424. },
  12425. {
  12426. name: "Gigamacro",
  12427. height: math.unit(1000, "km")
  12428. },
  12429. {
  12430. name: "Gigamacro+",
  12431. height: math.unit(8000, "km")
  12432. },
  12433. {
  12434. name: "Teramacro",
  12435. height: math.unit(1000000, "km")
  12436. },
  12437. ]
  12438. ))
  12439. characterMakers.push(() => makeCharacter(
  12440. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12441. {
  12442. front: {
  12443. height: math.unit(7 + 7 / 12, "feet"),
  12444. weight: math.unit(267, "lb"),
  12445. name: "Front",
  12446. image: {
  12447. source: "./media/characters/dayza/front.svg",
  12448. extra: 1262 / 1200,
  12449. bottom: 0.035
  12450. }
  12451. },
  12452. side: {
  12453. height: math.unit(7 + 7 / 12, "feet"),
  12454. weight: math.unit(267, "lb"),
  12455. name: "Side",
  12456. image: {
  12457. source: "./media/characters/dayza/side.svg",
  12458. extra: 1295 / 1245,
  12459. bottom: 0.05
  12460. }
  12461. },
  12462. back: {
  12463. height: math.unit(7 + 7 / 12, "feet"),
  12464. weight: math.unit(267, "lb"),
  12465. name: "Back",
  12466. image: {
  12467. source: "./media/characters/dayza/back.svg",
  12468. extra: 1241 / 1170
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Normal",
  12475. height: math.unit(7 + 7 / 12, "feet"),
  12476. default: true
  12477. },
  12478. {
  12479. name: "Macro",
  12480. height: math.unit(155, "feet")
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12486. {
  12487. front: {
  12488. height: math.unit(6 + 5 / 12, "feet"),
  12489. weight: math.unit(160, "lb"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/xanthos/front.svg",
  12493. extra: 1,
  12494. bottom: 0.04
  12495. }
  12496. },
  12497. back: {
  12498. height: math.unit(6 + 5 / 12, "feet"),
  12499. weight: math.unit(160, "lb"),
  12500. name: "Back",
  12501. image: {
  12502. source: "./media/characters/xanthos/back.svg",
  12503. extra: 1,
  12504. bottom: 0.03
  12505. }
  12506. },
  12507. hand: {
  12508. height: math.unit(0.928, "feet"),
  12509. name: "Hand",
  12510. image: {
  12511. source: "./media/characters/xanthos/hand.svg"
  12512. }
  12513. },
  12514. foot: {
  12515. height: math.unit(1.286, "feet"),
  12516. name: "Foot",
  12517. image: {
  12518. source: "./media/characters/xanthos/foot.svg"
  12519. }
  12520. },
  12521. },
  12522. [
  12523. {
  12524. name: "Normal",
  12525. height: math.unit(6 + 5 / 12, "feet"),
  12526. default: true
  12527. },
  12528. {
  12529. name: "Normal+",
  12530. height: math.unit(6, "meters")
  12531. },
  12532. {
  12533. name: "Macro",
  12534. height: math.unit(40, "feet")
  12535. },
  12536. {
  12537. name: "Macro+",
  12538. height: math.unit(200, "meters")
  12539. },
  12540. {
  12541. name: "Megamacro",
  12542. height: math.unit(20, "km")
  12543. },
  12544. {
  12545. name: "Megamacro+",
  12546. height: math.unit(100, "km")
  12547. },
  12548. ]
  12549. ))
  12550. characterMakers.push(() => makeCharacter(
  12551. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12552. {
  12553. front: {
  12554. height: math.unit(6 + 3 / 12, "feet"),
  12555. weight: math.unit(215, "lb"),
  12556. name: "Front",
  12557. image: {
  12558. source: "./media/characters/grynn/front.svg",
  12559. extra: 4627 / 4209,
  12560. bottom: 0.047
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Micro",
  12567. height: math.unit(6, "inches")
  12568. },
  12569. {
  12570. name: "Normal",
  12571. height: math.unit(6 + 3 / 12, "feet"),
  12572. default: true
  12573. },
  12574. {
  12575. name: "Big",
  12576. height: math.unit(104, "feet")
  12577. },
  12578. {
  12579. name: "Macro",
  12580. height: math.unit(944, "feet")
  12581. },
  12582. {
  12583. name: "Macro+",
  12584. height: math.unit(9480, "feet")
  12585. },
  12586. {
  12587. name: "Megamacro",
  12588. height: math.unit(78752, "feet")
  12589. },
  12590. {
  12591. name: "Megamacro+",
  12592. height: math.unit(630128, "feet")
  12593. },
  12594. {
  12595. name: "Megamacro++",
  12596. height: math.unit(3150695, "feet")
  12597. },
  12598. ]
  12599. ))
  12600. characterMakers.push(() => makeCharacter(
  12601. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12602. {
  12603. front: {
  12604. height: math.unit(7 + 5 / 12, "feet"),
  12605. weight: math.unit(450, "lb"),
  12606. name: "Front",
  12607. image: {
  12608. source: "./media/characters/mocha-aura/front.svg",
  12609. extra: 1907 / 1817,
  12610. bottom: 0.04
  12611. }
  12612. },
  12613. back: {
  12614. height: math.unit(7 + 5 / 12, "feet"),
  12615. weight: math.unit(450, "lb"),
  12616. name: "Back",
  12617. image: {
  12618. source: "./media/characters/mocha-aura/back.svg",
  12619. extra: 1900 / 1825,
  12620. bottom: 0.045
  12621. }
  12622. },
  12623. },
  12624. [
  12625. {
  12626. name: "Nano",
  12627. height: math.unit(1, "nm")
  12628. },
  12629. {
  12630. name: "Megamicro",
  12631. height: math.unit(1, "mm")
  12632. },
  12633. {
  12634. name: "Micro",
  12635. height: math.unit(3, "inches")
  12636. },
  12637. {
  12638. name: "Normal",
  12639. height: math.unit(7 + 5 / 12, "feet"),
  12640. default: true
  12641. },
  12642. {
  12643. name: "Macro",
  12644. height: math.unit(30, "feet")
  12645. },
  12646. {
  12647. name: "Megamacro",
  12648. height: math.unit(3500, "feet")
  12649. },
  12650. {
  12651. name: "Teramacro",
  12652. height: math.unit(500000, "miles")
  12653. },
  12654. {
  12655. name: "Petamacro",
  12656. height: math.unit(50000000000000000, "parsecs")
  12657. },
  12658. ]
  12659. ))
  12660. characterMakers.push(() => makeCharacter(
  12661. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12662. {
  12663. front: {
  12664. height: math.unit(6, "feet"),
  12665. weight: math.unit(150, "lb"),
  12666. name: "Front",
  12667. image: {
  12668. source: "./media/characters/ilisha-devya/front.svg",
  12669. extra: 1,
  12670. bottom: 0.175
  12671. }
  12672. },
  12673. back: {
  12674. height: math.unit(6, "feet"),
  12675. weight: math.unit(150, "lb"),
  12676. name: "Back",
  12677. image: {
  12678. source: "./media/characters/ilisha-devya/back.svg",
  12679. extra: 1,
  12680. bottom: 0.015
  12681. }
  12682. },
  12683. },
  12684. [
  12685. {
  12686. name: "Macro",
  12687. height: math.unit(500, "feet"),
  12688. default: true
  12689. },
  12690. {
  12691. name: "Megamacro",
  12692. height: math.unit(10, "miles")
  12693. },
  12694. {
  12695. name: "Gigamacro",
  12696. height: math.unit(100000, "miles")
  12697. },
  12698. {
  12699. name: "Examacro",
  12700. height: math.unit(1e9, "lightyears")
  12701. },
  12702. {
  12703. name: "Omniversal",
  12704. height: math.unit(1e33, "lightyears")
  12705. },
  12706. {
  12707. name: "Beyond Infinite",
  12708. height: math.unit(1e100, "lightyears")
  12709. },
  12710. ]
  12711. ))
  12712. characterMakers.push(() => makeCharacter(
  12713. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12714. {
  12715. Side: {
  12716. height: math.unit(6, "feet"),
  12717. weight: math.unit(150, "lb"),
  12718. name: "Side",
  12719. image: {
  12720. source: "./media/characters/mira/side.svg",
  12721. extra: 900 / 799,
  12722. bottom: 0.02
  12723. }
  12724. },
  12725. },
  12726. [
  12727. {
  12728. name: "Human Size",
  12729. height: math.unit(6, "feet")
  12730. },
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(100, "feet"),
  12734. default: true
  12735. },
  12736. {
  12737. name: "Megamacro",
  12738. height: math.unit(10, "miles")
  12739. },
  12740. {
  12741. name: "Gigamacro",
  12742. height: math.unit(25000, "miles")
  12743. },
  12744. {
  12745. name: "Teramacro",
  12746. height: math.unit(300, "AU")
  12747. },
  12748. {
  12749. name: "Full Size",
  12750. height: math.unit(4.5e10, "lightyears")
  12751. },
  12752. ]
  12753. ))
  12754. characterMakers.push(() => makeCharacter(
  12755. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12756. {
  12757. front: {
  12758. height: math.unit(6, "feet"),
  12759. weight: math.unit(150, "lb"),
  12760. name: "Front",
  12761. image: {
  12762. source: "./media/characters/holly/front.svg",
  12763. extra: 639 / 606
  12764. }
  12765. },
  12766. back: {
  12767. height: math.unit(6, "feet"),
  12768. weight: math.unit(150, "lb"),
  12769. name: "Back",
  12770. image: {
  12771. source: "./media/characters/holly/back.svg",
  12772. extra: 623 / 598
  12773. }
  12774. },
  12775. frontWorking: {
  12776. height: math.unit(6, "feet"),
  12777. weight: math.unit(150, "lb"),
  12778. name: "Front (Working)",
  12779. image: {
  12780. source: "./media/characters/holly/front-working.svg",
  12781. extra: 607 / 577,
  12782. bottom: 0.048
  12783. }
  12784. },
  12785. },
  12786. [
  12787. {
  12788. name: "Normal",
  12789. height: math.unit(12 + 3 / 12, "feet"),
  12790. default: true
  12791. },
  12792. ]
  12793. ))
  12794. characterMakers.push(() => makeCharacter(
  12795. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12796. {
  12797. front: {
  12798. height: math.unit(6, "feet"),
  12799. weight: math.unit(150, "lb"),
  12800. name: "Front",
  12801. image: {
  12802. source: "./media/characters/porter/front.svg",
  12803. extra: 1,
  12804. bottom: 0.01
  12805. }
  12806. },
  12807. frontRobes: {
  12808. height: math.unit(6, "feet"),
  12809. weight: math.unit(150, "lb"),
  12810. name: "Front (Robes)",
  12811. image: {
  12812. source: "./media/characters/porter/front-robes.svg",
  12813. extra: 1.01,
  12814. bottom: 0.01
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Normal",
  12821. height: math.unit(11 + 9 / 12, "feet"),
  12822. default: true
  12823. },
  12824. ]
  12825. ))
  12826. characterMakers.push(() => makeCharacter(
  12827. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12828. {
  12829. legendary: {
  12830. height: math.unit(6, "feet"),
  12831. weight: math.unit(150, "lb"),
  12832. name: "Legendary",
  12833. image: {
  12834. source: "./media/characters/lucy/legendary.svg",
  12835. extra: 1355 / 1100,
  12836. bottom: 0.045
  12837. }
  12838. },
  12839. },
  12840. [
  12841. {
  12842. name: "Legendary",
  12843. height: math.unit(86882 * 2, "miles"),
  12844. default: true
  12845. },
  12846. ]
  12847. ))
  12848. characterMakers.push(() => makeCharacter(
  12849. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12850. {
  12851. front: {
  12852. height: math.unit(6, "feet"),
  12853. weight: math.unit(150, "lb"),
  12854. name: "Front",
  12855. image: {
  12856. source: "./media/characters/drusilla/front.svg",
  12857. extra: 678 / 635,
  12858. bottom: 0.03
  12859. }
  12860. },
  12861. back: {
  12862. height: math.unit(6, "feet"),
  12863. weight: math.unit(150, "lb"),
  12864. name: "Back",
  12865. image: {
  12866. source: "./media/characters/drusilla/back.svg",
  12867. extra: 678 / 635,
  12868. bottom: 0.005
  12869. }
  12870. },
  12871. },
  12872. [
  12873. {
  12874. name: "Macro",
  12875. height: math.unit(100, "feet")
  12876. },
  12877. {
  12878. name: "Canon Height",
  12879. height: math.unit(2000, "feet"),
  12880. default: true
  12881. },
  12882. ]
  12883. ))
  12884. characterMakers.push(() => makeCharacter(
  12885. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12886. {
  12887. front: {
  12888. height: math.unit(6, "feet"),
  12889. weight: math.unit(180, "lb"),
  12890. name: "Front",
  12891. image: {
  12892. source: "./media/characters/renard-thatch/front.svg",
  12893. extra: 2411 / 2275,
  12894. bottom: 0.01
  12895. }
  12896. },
  12897. frontPosing: {
  12898. height: math.unit(6, "feet"),
  12899. weight: math.unit(180, "lb"),
  12900. name: "Front (Posing)",
  12901. image: {
  12902. source: "./media/characters/renard-thatch/front-posing.svg",
  12903. extra: 2381 / 2261,
  12904. bottom: 0.01
  12905. }
  12906. },
  12907. back: {
  12908. height: math.unit(6, "feet"),
  12909. weight: math.unit(180, "lb"),
  12910. name: "Back",
  12911. image: {
  12912. source: "./media/characters/renard-thatch/back.svg",
  12913. extra: 2428 / 2288
  12914. }
  12915. },
  12916. },
  12917. [
  12918. {
  12919. name: "Micro",
  12920. height: math.unit(3, "inches")
  12921. },
  12922. {
  12923. name: "Default",
  12924. height: math.unit(6, "feet"),
  12925. default: true
  12926. },
  12927. {
  12928. name: "Macro",
  12929. height: math.unit(75, "feet")
  12930. },
  12931. ]
  12932. ))
  12933. characterMakers.push(() => makeCharacter(
  12934. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12935. {
  12936. front: {
  12937. height: math.unit(1450, "feet"),
  12938. weight: math.unit(1.21e6, "tons"),
  12939. name: "Front",
  12940. image: {
  12941. source: "./media/characters/sekvra/front.svg",
  12942. extra: 1,
  12943. bottom: 0.03
  12944. }
  12945. },
  12946. frontClothed: {
  12947. height: math.unit(1450, "feet"),
  12948. weight: math.unit(1.21e6, "tons"),
  12949. name: "Front (Clothed)",
  12950. image: {
  12951. source: "./media/characters/sekvra/front-clothed.svg",
  12952. extra: 1,
  12953. bottom: 0.03
  12954. }
  12955. },
  12956. side: {
  12957. height: math.unit(1450, "feet"),
  12958. weight: math.unit(1.21e6, "tons"),
  12959. name: "Side",
  12960. image: {
  12961. source: "./media/characters/sekvra/side.svg",
  12962. extra: 1,
  12963. bottom: 0.025
  12964. }
  12965. },
  12966. back: {
  12967. height: math.unit(1450, "feet"),
  12968. weight: math.unit(1.21e6, "tons"),
  12969. name: "Back",
  12970. image: {
  12971. source: "./media/characters/sekvra/back.svg",
  12972. extra: 1,
  12973. bottom: 0.005
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Macro",
  12980. height: math.unit(1450, "feet"),
  12981. default: true
  12982. },
  12983. {
  12984. name: "Megamacro",
  12985. height: math.unit(15000, "feet")
  12986. },
  12987. ]
  12988. ))
  12989. characterMakers.push(() => makeCharacter(
  12990. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12991. {
  12992. front: {
  12993. height: math.unit(6, "feet"),
  12994. weight: math.unit(150, "lb"),
  12995. name: "Front",
  12996. image: {
  12997. source: "./media/characters/carmine/front.svg",
  12998. extra: 1,
  12999. bottom: 0.035
  13000. }
  13001. },
  13002. frontArmor: {
  13003. height: math.unit(6, "feet"),
  13004. weight: math.unit(150, "lb"),
  13005. name: "Front (Armor)",
  13006. image: {
  13007. source: "./media/characters/carmine/front-armor.svg",
  13008. extra: 1,
  13009. bottom: 0.035
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Large",
  13016. height: math.unit(1, "mile")
  13017. },
  13018. {
  13019. name: "Huge",
  13020. height: math.unit(40, "miles"),
  13021. default: true
  13022. },
  13023. {
  13024. name: "Colossal",
  13025. height: math.unit(2500, "miles")
  13026. },
  13027. ]
  13028. ))
  13029. characterMakers.push(() => makeCharacter(
  13030. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13031. {
  13032. front: {
  13033. height: math.unit(6, "feet"),
  13034. weight: math.unit(150, "lb"),
  13035. name: "Front",
  13036. image: {
  13037. source: "./media/characters/elyssia/front.svg",
  13038. extra: 2201 / 2035,
  13039. bottom: 0.05
  13040. }
  13041. },
  13042. frontClothed: {
  13043. height: math.unit(6, "feet"),
  13044. weight: math.unit(150, "lb"),
  13045. name: "Front (Clothed)",
  13046. image: {
  13047. source: "./media/characters/elyssia/front-clothed.svg",
  13048. extra: 2201 / 2035,
  13049. bottom: 0.05
  13050. }
  13051. },
  13052. back: {
  13053. height: math.unit(6, "feet"),
  13054. weight: math.unit(150, "lb"),
  13055. name: "Back",
  13056. image: {
  13057. source: "./media/characters/elyssia/back.svg",
  13058. extra: 2201 / 2035,
  13059. bottom: 0.013
  13060. }
  13061. },
  13062. },
  13063. [
  13064. {
  13065. name: "Smaller",
  13066. height: math.unit(150, "feet")
  13067. },
  13068. {
  13069. name: "Standard",
  13070. height: math.unit(1400, "feet"),
  13071. default: true
  13072. },
  13073. {
  13074. name: "Distracted",
  13075. height: math.unit(15000, "feet")
  13076. },
  13077. ]
  13078. ))
  13079. characterMakers.push(() => makeCharacter(
  13080. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13081. {
  13082. front: {
  13083. height: math.unit(7 + 4 / 12, "feet"),
  13084. weight: math.unit(500, "lb"),
  13085. name: "Front",
  13086. image: {
  13087. source: "./media/characters/geno-maxwell/front.svg",
  13088. extra: 2207 / 2040,
  13089. bottom: 0.015
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Micro",
  13096. height: math.unit(3, "inches")
  13097. },
  13098. {
  13099. name: "Normal",
  13100. height: math.unit(7 + 4 / 12, "feet"),
  13101. default: true
  13102. },
  13103. {
  13104. name: "Macro",
  13105. height: math.unit(220, "feet")
  13106. },
  13107. {
  13108. name: "Megamacro",
  13109. height: math.unit(11, "miles")
  13110. },
  13111. ]
  13112. ))
  13113. characterMakers.push(() => makeCharacter(
  13114. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13115. {
  13116. front: {
  13117. height: math.unit(7 + 4 / 12, "feet"),
  13118. weight: math.unit(500, "lb"),
  13119. name: "Front",
  13120. image: {
  13121. source: "./media/characters/regena-maxwell/front.svg",
  13122. extra: 3115 / 2770,
  13123. bottom: 0.02
  13124. }
  13125. },
  13126. },
  13127. [
  13128. {
  13129. name: "Normal",
  13130. height: math.unit(7 + 4 / 12, "feet"),
  13131. default: true
  13132. },
  13133. {
  13134. name: "Macro",
  13135. height: math.unit(220, "feet")
  13136. },
  13137. {
  13138. name: "Megamacro",
  13139. height: math.unit(11, "miles")
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13145. {
  13146. front: {
  13147. height: math.unit(6, "feet"),
  13148. weight: math.unit(150, "lb"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13152. extra: 860 / 690,
  13153. bottom: 0.03
  13154. }
  13155. },
  13156. },
  13157. [
  13158. {
  13159. name: "Normal",
  13160. height: math.unit(1.7, "meters"),
  13161. default: true
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13167. {
  13168. front: {
  13169. height: math.unit(6, "feet"),
  13170. weight: math.unit(150, "lb"),
  13171. name: "Front",
  13172. image: {
  13173. source: "./media/characters/quilly/front.svg",
  13174. extra: 890 / 776
  13175. }
  13176. },
  13177. },
  13178. [
  13179. {
  13180. name: "Gigamacro",
  13181. height: math.unit(404090, "miles"),
  13182. default: true
  13183. },
  13184. ]
  13185. ))
  13186. characterMakers.push(() => makeCharacter(
  13187. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13188. {
  13189. front: {
  13190. height: math.unit(7 + 8 / 12, "feet"),
  13191. weight: math.unit(350, "lb"),
  13192. name: "Front",
  13193. image: {
  13194. source: "./media/characters/tempest/front.svg",
  13195. extra: 1175 / 1086,
  13196. bottom: 0.02
  13197. }
  13198. },
  13199. },
  13200. [
  13201. {
  13202. name: "Normal",
  13203. height: math.unit(7 + 8 / 12, "feet"),
  13204. default: true
  13205. },
  13206. ]
  13207. ))
  13208. characterMakers.push(() => makeCharacter(
  13209. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13210. {
  13211. side: {
  13212. height: math.unit(4 + 5 / 12, "feet"),
  13213. weight: math.unit(80, "lb"),
  13214. name: "Side",
  13215. image: {
  13216. source: "./media/characters/rodger/side.svg",
  13217. extra: 1235 / 1118
  13218. }
  13219. },
  13220. },
  13221. [
  13222. {
  13223. name: "Micro",
  13224. height: math.unit(1, "inch")
  13225. },
  13226. {
  13227. name: "Normal",
  13228. height: math.unit(4 + 5 / 12, "feet"),
  13229. default: true
  13230. },
  13231. {
  13232. name: "Macro",
  13233. height: math.unit(120, "feet")
  13234. },
  13235. ]
  13236. ))
  13237. characterMakers.push(() => makeCharacter(
  13238. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13239. {
  13240. front: {
  13241. height: math.unit(6, "feet"),
  13242. weight: math.unit(150, "lb"),
  13243. name: "Front",
  13244. image: {
  13245. source: "./media/characters/danyel/front.svg",
  13246. extra: 1185 / 1123,
  13247. bottom: 0.05
  13248. }
  13249. },
  13250. },
  13251. [
  13252. {
  13253. name: "Shrunken",
  13254. height: math.unit(0.5, "mm")
  13255. },
  13256. {
  13257. name: "Micro",
  13258. height: math.unit(1, "mm"),
  13259. default: true
  13260. },
  13261. {
  13262. name: "Upsized",
  13263. height: math.unit(5 + 5 / 12, "feet")
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13269. {
  13270. front: {
  13271. height: math.unit(5 + 6 / 12, "feet"),
  13272. weight: math.unit(200, "lb"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/vivian-bijoux/front.svg",
  13276. extra: 1,
  13277. bottom: 0.072
  13278. }
  13279. },
  13280. },
  13281. [
  13282. {
  13283. name: "Normal",
  13284. height: math.unit(5 + 6 / 12, "feet"),
  13285. default: true
  13286. },
  13287. {
  13288. name: "Bad Dream",
  13289. height: math.unit(500, "feet")
  13290. },
  13291. {
  13292. name: "Nightmare",
  13293. height: math.unit(500, "miles")
  13294. },
  13295. ]
  13296. ))
  13297. characterMakers.push(() => makeCharacter(
  13298. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13299. {
  13300. front: {
  13301. height: math.unit(6 + 1 / 12, "feet"),
  13302. weight: math.unit(260, "lb"),
  13303. name: "Front",
  13304. image: {
  13305. source: "./media/characters/zeta/front.svg",
  13306. extra: 1968 / 1889,
  13307. bottom: 0.06
  13308. }
  13309. },
  13310. back: {
  13311. height: math.unit(6 + 1 / 12, "feet"),
  13312. weight: math.unit(260, "lb"),
  13313. name: "Back",
  13314. image: {
  13315. source: "./media/characters/zeta/back.svg",
  13316. extra: 1944 / 1858,
  13317. bottom: 0.03
  13318. }
  13319. },
  13320. hand: {
  13321. height: math.unit(1.112, "feet"),
  13322. name: "Hand",
  13323. image: {
  13324. source: "./media/characters/zeta/hand.svg"
  13325. }
  13326. },
  13327. foot: {
  13328. height: math.unit(1.48, "feet"),
  13329. name: "Foot",
  13330. image: {
  13331. source: "./media/characters/zeta/foot.svg"
  13332. }
  13333. },
  13334. },
  13335. [
  13336. {
  13337. name: "Micro",
  13338. height: math.unit(6, "inches")
  13339. },
  13340. {
  13341. name: "Normal",
  13342. height: math.unit(6 + 1 / 12, "feet"),
  13343. default: true
  13344. },
  13345. {
  13346. name: "Macro",
  13347. height: math.unit(20, "feet")
  13348. },
  13349. ]
  13350. ))
  13351. characterMakers.push(() => makeCharacter(
  13352. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13353. {
  13354. front: {
  13355. height: math.unit(6, "feet"),
  13356. weight: math.unit(150, "lb"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/jamie-larsen/front.svg",
  13360. extra: 962 / 933,
  13361. bottom: 0.02
  13362. }
  13363. },
  13364. back: {
  13365. height: math.unit(6, "feet"),
  13366. weight: math.unit(150, "lb"),
  13367. name: "Back",
  13368. image: {
  13369. source: "./media/characters/jamie-larsen/back.svg",
  13370. extra: 997 / 946
  13371. }
  13372. },
  13373. },
  13374. [
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(28 + 7 / 12, "feet"),
  13378. default: true
  13379. },
  13380. {
  13381. name: "Macro+",
  13382. height: math.unit(180, "feet")
  13383. },
  13384. {
  13385. name: "Megamacro",
  13386. height: math.unit(10, "miles")
  13387. },
  13388. {
  13389. name: "Gigamacro",
  13390. height: math.unit(200000, "miles")
  13391. },
  13392. ]
  13393. ))
  13394. characterMakers.push(() => makeCharacter(
  13395. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13396. {
  13397. front: {
  13398. height: math.unit(6, "feet"),
  13399. weight: math.unit(120, "lb"),
  13400. name: "Front",
  13401. image: {
  13402. source: "./media/characters/vance/front.svg",
  13403. extra: 1980 / 1890,
  13404. bottom: 0.09
  13405. }
  13406. },
  13407. back: {
  13408. height: math.unit(6, "feet"),
  13409. weight: math.unit(120, "lb"),
  13410. name: "Back",
  13411. image: {
  13412. source: "./media/characters/vance/back.svg",
  13413. extra: 2081 / 1994,
  13414. bottom: 0.014
  13415. }
  13416. },
  13417. hand: {
  13418. height: math.unit(0.88, "feet"),
  13419. name: "Hand",
  13420. image: {
  13421. source: "./media/characters/vance/hand.svg"
  13422. }
  13423. },
  13424. foot: {
  13425. height: math.unit(0.64, "feet"),
  13426. name: "Foot",
  13427. image: {
  13428. source: "./media/characters/vance/foot.svg"
  13429. }
  13430. },
  13431. },
  13432. [
  13433. {
  13434. name: "Small",
  13435. height: math.unit(90, "feet"),
  13436. default: true
  13437. },
  13438. {
  13439. name: "Macro",
  13440. height: math.unit(100, "meters")
  13441. },
  13442. {
  13443. name: "Megamacro",
  13444. height: math.unit(15, "miles")
  13445. },
  13446. ]
  13447. ))
  13448. characterMakers.push(() => makeCharacter(
  13449. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13450. {
  13451. front: {
  13452. height: math.unit(6, "feet"),
  13453. weight: math.unit(180, "lb"),
  13454. name: "Front",
  13455. image: {
  13456. source: "./media/characters/xochitl/front.svg",
  13457. extra: 2297 / 2261,
  13458. bottom: 0.065
  13459. }
  13460. },
  13461. back: {
  13462. height: math.unit(6, "feet"),
  13463. weight: math.unit(180, "lb"),
  13464. name: "Back",
  13465. image: {
  13466. source: "./media/characters/xochitl/back.svg",
  13467. extra: 2386 / 2354,
  13468. bottom: 0.01
  13469. }
  13470. },
  13471. foot: {
  13472. height: math.unit(6 / 5 * 1.15, "feet"),
  13473. weight: math.unit(150, "lb"),
  13474. name: "Foot",
  13475. image: {
  13476. source: "./media/characters/xochitl/foot.svg"
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Macro",
  13483. height: math.unit(80, "feet")
  13484. },
  13485. {
  13486. name: "Macro+",
  13487. height: math.unit(400, "feet"),
  13488. default: true
  13489. },
  13490. {
  13491. name: "Gigamacro",
  13492. height: math.unit(80000, "miles")
  13493. },
  13494. {
  13495. name: "Gigamacro+",
  13496. height: math.unit(400000, "miles")
  13497. },
  13498. {
  13499. name: "Teramacro",
  13500. height: math.unit(300, "AU")
  13501. },
  13502. ]
  13503. ))
  13504. characterMakers.push(() => makeCharacter(
  13505. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13506. {
  13507. front: {
  13508. height: math.unit(6, "feet"),
  13509. weight: math.unit(150, "lb"),
  13510. name: "Front",
  13511. image: {
  13512. source: "./media/characters/vincent/front.svg",
  13513. extra: 1130 / 1080,
  13514. bottom: 0.055
  13515. }
  13516. },
  13517. beak: {
  13518. height: math.unit(6 * 0.1, "feet"),
  13519. name: "Beak",
  13520. image: {
  13521. source: "./media/characters/vincent/beak.svg"
  13522. }
  13523. },
  13524. hand: {
  13525. height: math.unit(6 * 0.85, "feet"),
  13526. weight: math.unit(150, "lb"),
  13527. name: "Hand",
  13528. image: {
  13529. source: "./media/characters/vincent/hand.svg"
  13530. }
  13531. },
  13532. foot: {
  13533. height: math.unit(6 * 0.19, "feet"),
  13534. weight: math.unit(150, "lb"),
  13535. name: "Foot",
  13536. image: {
  13537. source: "./media/characters/vincent/foot.svg"
  13538. }
  13539. },
  13540. },
  13541. [
  13542. {
  13543. name: "Base",
  13544. height: math.unit(6 + 5 / 12, "feet"),
  13545. default: true
  13546. },
  13547. {
  13548. name: "Macro",
  13549. height: math.unit(300, "feet")
  13550. },
  13551. {
  13552. name: "Megamacro",
  13553. height: math.unit(2, "miles")
  13554. },
  13555. {
  13556. name: "Gigamacro",
  13557. height: math.unit(1000, "miles")
  13558. },
  13559. ]
  13560. ))
  13561. characterMakers.push(() => makeCharacter(
  13562. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13563. {
  13564. front: {
  13565. height: math.unit(2, "meters"),
  13566. weight: math.unit(500, "kg"),
  13567. name: "Front",
  13568. image: {
  13569. source: "./media/characters/coatl/front.svg",
  13570. extra: 3948 / 3500,
  13571. bottom: 0.082
  13572. }
  13573. },
  13574. },
  13575. [
  13576. {
  13577. name: "Normal",
  13578. height: math.unit(4, "meters")
  13579. },
  13580. {
  13581. name: "Macro",
  13582. height: math.unit(100, "meters"),
  13583. default: true
  13584. },
  13585. {
  13586. name: "Macro+",
  13587. height: math.unit(300, "meters")
  13588. },
  13589. {
  13590. name: "Megamacro",
  13591. height: math.unit(3, "gigameters")
  13592. },
  13593. {
  13594. name: "Megamacro+",
  13595. height: math.unit(300, "terameters")
  13596. },
  13597. {
  13598. name: "Megamacro++",
  13599. height: math.unit(3, "lightyears")
  13600. },
  13601. ]
  13602. ))
  13603. characterMakers.push(() => makeCharacter(
  13604. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13605. {
  13606. front: {
  13607. height: math.unit(6, "feet"),
  13608. weight: math.unit(50, "kg"),
  13609. name: "front",
  13610. image: {
  13611. source: "./media/characters/shiroryu/front.svg",
  13612. extra: 1990 / 1935
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Mortal Mingling",
  13619. height: math.unit(3, "meters")
  13620. },
  13621. {
  13622. name: "Kaiju-ish",
  13623. height: math.unit(250, "meters")
  13624. },
  13625. {
  13626. name: "Somewhat Godly",
  13627. height: math.unit(400, "km"),
  13628. default: true
  13629. },
  13630. {
  13631. name: "Planetary",
  13632. height: math.unit(300, "megameters")
  13633. },
  13634. {
  13635. name: "Galaxy-dwarfing",
  13636. height: math.unit(450, "kiloparsecs")
  13637. },
  13638. {
  13639. name: "Universe Eater",
  13640. height: math.unit(150, "gigaparsecs")
  13641. },
  13642. {
  13643. name: "Almost Immeasurable",
  13644. height: math.unit(1.3e266, "yottaparsecs")
  13645. },
  13646. ]
  13647. ))
  13648. characterMakers.push(() => makeCharacter(
  13649. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13650. {
  13651. front: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(150, "lb"),
  13654. name: "Front",
  13655. image: {
  13656. source: "./media/characters/umeko/front.svg",
  13657. extra: 1,
  13658. bottom: 0.019
  13659. }
  13660. },
  13661. frontArmored: {
  13662. height: math.unit(6, "feet"),
  13663. weight: math.unit(150, "lb"),
  13664. name: "Front (Armored)",
  13665. image: {
  13666. source: "./media/characters/umeko/front-armored.svg",
  13667. extra: 1,
  13668. bottom: 0.021
  13669. }
  13670. },
  13671. },
  13672. [
  13673. {
  13674. name: "Macro",
  13675. height: math.unit(220, "feet"),
  13676. default: true
  13677. },
  13678. {
  13679. name: "Guardian Dragon",
  13680. height: math.unit(50, "miles")
  13681. },
  13682. {
  13683. name: "Cosmic",
  13684. height: math.unit(800000, "miles")
  13685. },
  13686. ]
  13687. ))
  13688. characterMakers.push(() => makeCharacter(
  13689. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13690. {
  13691. front: {
  13692. height: math.unit(6, "feet"),
  13693. weight: math.unit(150, "lb"),
  13694. name: "Front",
  13695. image: {
  13696. source: "./media/characters/cassidy/front.svg",
  13697. extra: 1,
  13698. bottom: 0.043
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Canon Height",
  13705. height: math.unit(120, "feet"),
  13706. default: true
  13707. },
  13708. {
  13709. name: "Macro+",
  13710. height: math.unit(400, "feet")
  13711. },
  13712. {
  13713. name: "Macro++",
  13714. height: math.unit(4000, "feet")
  13715. },
  13716. {
  13717. name: "Megamacro",
  13718. height: math.unit(3, "miles")
  13719. },
  13720. ]
  13721. ))
  13722. characterMakers.push(() => makeCharacter(
  13723. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13724. {
  13725. front: {
  13726. height: math.unit(6, "feet"),
  13727. weight: math.unit(150, "lb"),
  13728. name: "Front",
  13729. image: {
  13730. source: "./media/characters/isaac/front.svg",
  13731. extra: 896 / 815,
  13732. bottom: 0.11
  13733. }
  13734. },
  13735. },
  13736. [
  13737. {
  13738. name: "Human Size",
  13739. height: math.unit(8, "feet"),
  13740. default: true
  13741. },
  13742. {
  13743. name: "Macro",
  13744. height: math.unit(400, "feet")
  13745. },
  13746. {
  13747. name: "Megamacro",
  13748. height: math.unit(50, "miles")
  13749. },
  13750. {
  13751. name: "Canon Height",
  13752. height: math.unit(200, "AU")
  13753. },
  13754. ]
  13755. ))
  13756. characterMakers.push(() => makeCharacter(
  13757. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13758. {
  13759. front: {
  13760. height: math.unit(6, "feet"),
  13761. weight: math.unit(72, "kg"),
  13762. name: "Front",
  13763. image: {
  13764. source: "./media/characters/sleekit/front.svg",
  13765. extra: 4693 / 4487,
  13766. bottom: 0.012
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Minimum Height",
  13773. height: math.unit(10, "meters")
  13774. },
  13775. {
  13776. name: "Smaller",
  13777. height: math.unit(25, "meters")
  13778. },
  13779. {
  13780. name: "Larger",
  13781. height: math.unit(38, "meters"),
  13782. default: true
  13783. },
  13784. {
  13785. name: "Maximum height",
  13786. height: math.unit(100, "meters")
  13787. },
  13788. ]
  13789. ))
  13790. characterMakers.push(() => makeCharacter(
  13791. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13792. {
  13793. front: {
  13794. height: math.unit(6, "feet"),
  13795. weight: math.unit(150, "lb"),
  13796. name: "Front",
  13797. image: {
  13798. source: "./media/characters/nillia/front.svg",
  13799. extra: 2195 / 2037,
  13800. bottom: 0.005
  13801. }
  13802. },
  13803. back: {
  13804. height: math.unit(6, "feet"),
  13805. weight: math.unit(150, "lb"),
  13806. name: "Back",
  13807. image: {
  13808. source: "./media/characters/nillia/back.svg",
  13809. extra: 2195 / 2037,
  13810. bottom: 0.005
  13811. }
  13812. },
  13813. },
  13814. [
  13815. {
  13816. name: "Canon Height",
  13817. height: math.unit(489, "feet"),
  13818. default: true
  13819. }
  13820. ]
  13821. ))
  13822. characterMakers.push(() => makeCharacter(
  13823. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13824. {
  13825. front: {
  13826. height: math.unit(6, "feet"),
  13827. weight: math.unit(150, "lb"),
  13828. name: "Front",
  13829. image: {
  13830. source: "./media/characters/mesmyriza/front.svg",
  13831. extra: 2067 / 1784,
  13832. bottom: 0.035
  13833. }
  13834. },
  13835. foot: {
  13836. height: math.unit(6 / (250 / 35), "feet"),
  13837. name: "Foot",
  13838. image: {
  13839. source: "./media/characters/mesmyriza/foot.svg"
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Macro",
  13846. height: math.unit(457, "meters"),
  13847. default: true
  13848. },
  13849. {
  13850. name: "Megamacro",
  13851. height: math.unit(8, "megameters")
  13852. },
  13853. ]
  13854. ))
  13855. characterMakers.push(() => makeCharacter(
  13856. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13857. {
  13858. front: {
  13859. height: math.unit(6, "feet"),
  13860. weight: math.unit(250, "lb"),
  13861. name: "Front",
  13862. image: {
  13863. source: "./media/characters/saudade/front.svg",
  13864. extra: 1172 / 1139,
  13865. bottom: 0.035
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "Micro",
  13872. height: math.unit(3, "inches")
  13873. },
  13874. {
  13875. name: "Normal",
  13876. height: math.unit(6, "feet"),
  13877. default: true
  13878. },
  13879. {
  13880. name: "Macro",
  13881. height: math.unit(50, "feet")
  13882. },
  13883. {
  13884. name: "Megamacro",
  13885. height: math.unit(2800, "feet")
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(5 + 4 / 12, "feet"),
  13894. weight: math.unit(100, "lb"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/keireer/front.svg",
  13898. extra: 716 / 666,
  13899. bottom: 0.05
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Normal",
  13906. height: math.unit(5 + 4 / 12, "feet"),
  13907. default: true
  13908. },
  13909. ]
  13910. ))
  13911. characterMakers.push(() => makeCharacter(
  13912. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13913. {
  13914. front: {
  13915. height: math.unit(6, "feet"),
  13916. weight: math.unit(90, "kg"),
  13917. name: "Front",
  13918. image: {
  13919. source: "./media/characters/mirja/front.svg",
  13920. extra: 1789 / 1683,
  13921. bottom: 0.05
  13922. }
  13923. },
  13924. frontDressed: {
  13925. height: math.unit(6, "feet"),
  13926. weight: math.unit(90, "lb"),
  13927. name: "Front (Dressed)",
  13928. image: {
  13929. source: "./media/characters/mirja/front-dressed.svg",
  13930. extra: 1789 / 1683,
  13931. bottom: 0.05
  13932. }
  13933. },
  13934. back: {
  13935. height: math.unit(6, "feet"),
  13936. weight: math.unit(90, "lb"),
  13937. name: "Back",
  13938. image: {
  13939. source: "./media/characters/mirja/back.svg",
  13940. extra: 953 / 917,
  13941. bottom: 0.017
  13942. }
  13943. },
  13944. },
  13945. [
  13946. {
  13947. name: "\"Incognito\"",
  13948. height: math.unit(3, "meters")
  13949. },
  13950. {
  13951. name: "Strolling Size",
  13952. height: math.unit(15, "km")
  13953. },
  13954. {
  13955. name: "Larger Strolling Size",
  13956. height: math.unit(400, "km")
  13957. },
  13958. {
  13959. name: "Preferred Size",
  13960. height: math.unit(5000, "km")
  13961. },
  13962. {
  13963. name: "True Size",
  13964. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13965. default: true
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13971. {
  13972. front: {
  13973. height: math.unit(15, "feet"),
  13974. weight: math.unit(880, "kg"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/nightraver/front.svg",
  13978. extra: 2444 / 2160,
  13979. bottom: 0.027
  13980. }
  13981. },
  13982. back: {
  13983. height: math.unit(15, "feet"),
  13984. weight: math.unit(880, "kg"),
  13985. name: "Back",
  13986. image: {
  13987. source: "./media/characters/nightraver/back.svg",
  13988. extra: 2309 / 2180,
  13989. bottom: 0.005
  13990. }
  13991. },
  13992. sole: {
  13993. height: math.unit(2.878, "feet"),
  13994. name: "Sole",
  13995. image: {
  13996. source: "./media/characters/nightraver/sole.svg"
  13997. }
  13998. },
  13999. foot: {
  14000. height: math.unit(2.285, "feet"),
  14001. name: "Foot",
  14002. image: {
  14003. source: "./media/characters/nightraver/foot.svg"
  14004. }
  14005. },
  14006. maw: {
  14007. height: math.unit(2.67, "feet"),
  14008. name: "Maw",
  14009. image: {
  14010. source: "./media/characters/nightraver/maw.svg"
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Micro",
  14017. height: math.unit(1, "cm")
  14018. },
  14019. {
  14020. name: "Normal",
  14021. height: math.unit(15, "feet"),
  14022. default: true
  14023. },
  14024. {
  14025. name: "Macro",
  14026. height: math.unit(300, "feet")
  14027. },
  14028. {
  14029. name: "Megamacro",
  14030. height: math.unit(300, "miles")
  14031. },
  14032. {
  14033. name: "Gigamacro",
  14034. height: math.unit(10000, "miles")
  14035. },
  14036. ]
  14037. ))
  14038. characterMakers.push(() => makeCharacter(
  14039. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14040. {
  14041. side: {
  14042. height: math.unit(2, "inches"),
  14043. weight: math.unit(5, "grams"),
  14044. name: "Side",
  14045. image: {
  14046. source: "./media/characters/arc/side.svg"
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Micro",
  14053. height: math.unit(2, "inches"),
  14054. default: true
  14055. },
  14056. ]
  14057. ))
  14058. characterMakers.push(() => makeCharacter(
  14059. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14060. {
  14061. front: {
  14062. height: math.unit(1.1938, "meters"),
  14063. weight: math.unit(54, "kg"),
  14064. name: "Front",
  14065. image: {
  14066. source: "./media/characters/nebula-shahar/front.svg",
  14067. extra: 1642 / 1436,
  14068. bottom: 0.06
  14069. }
  14070. },
  14071. },
  14072. [
  14073. {
  14074. name: "Megamicro",
  14075. height: math.unit(0.3, "mm")
  14076. },
  14077. {
  14078. name: "Micro",
  14079. height: math.unit(3, "cm")
  14080. },
  14081. {
  14082. name: "Normal",
  14083. height: math.unit(138, "cm"),
  14084. default: true
  14085. },
  14086. {
  14087. name: "Macro",
  14088. height: math.unit(30, "m")
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14094. {
  14095. front: {
  14096. height: math.unit(5.24, "feet"),
  14097. weight: math.unit(150, "lb"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/shayla/front.svg",
  14101. extra: 1512 / 1414,
  14102. bottom: 0.01
  14103. }
  14104. },
  14105. back: {
  14106. height: math.unit(5.24, "feet"),
  14107. weight: math.unit(150, "lb"),
  14108. name: "Back",
  14109. image: {
  14110. source: "./media/characters/shayla/back.svg",
  14111. extra: 1512 / 1414
  14112. }
  14113. },
  14114. hand: {
  14115. height: math.unit(0.7781496062992126, "feet"),
  14116. name: "Hand",
  14117. image: {
  14118. source: "./media/characters/shayla/hand.svg"
  14119. }
  14120. },
  14121. foot: {
  14122. height: math.unit(1.4206036745406823, "feet"),
  14123. name: "Foot",
  14124. image: {
  14125. source: "./media/characters/shayla/foot.svg"
  14126. }
  14127. },
  14128. },
  14129. [
  14130. {
  14131. name: "Micro",
  14132. height: math.unit(0.32, "feet")
  14133. },
  14134. {
  14135. name: "Normal",
  14136. height: math.unit(5.24, "feet"),
  14137. default: true
  14138. },
  14139. {
  14140. name: "Macro",
  14141. height: math.unit(492.12, "feet")
  14142. },
  14143. {
  14144. name: "Megamacro",
  14145. height: math.unit(186.41, "miles")
  14146. },
  14147. ]
  14148. ))
  14149. characterMakers.push(() => makeCharacter(
  14150. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14151. {
  14152. front: {
  14153. height: math.unit(2.2, "m"),
  14154. weight: math.unit(120, "kg"),
  14155. name: "Front",
  14156. image: {
  14157. source: "./media/characters/pia-jr/front.svg",
  14158. extra: 1000 / 970,
  14159. bottom: 0.035
  14160. }
  14161. },
  14162. hand: {
  14163. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14164. name: "Hand",
  14165. image: {
  14166. source: "./media/characters/pia-jr/hand.svg"
  14167. }
  14168. },
  14169. paw: {
  14170. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14171. name: "Paw",
  14172. image: {
  14173. source: "./media/characters/pia-jr/paw.svg"
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "Micro",
  14180. height: math.unit(1.2, "cm")
  14181. },
  14182. {
  14183. name: "Normal",
  14184. height: math.unit(2.2, "m"),
  14185. default: true
  14186. },
  14187. {
  14188. name: "Macro",
  14189. height: math.unit(180, "m")
  14190. },
  14191. {
  14192. name: "Megamacro",
  14193. height: math.unit(420, "km")
  14194. },
  14195. ]
  14196. ))
  14197. characterMakers.push(() => makeCharacter(
  14198. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14199. {
  14200. front: {
  14201. height: math.unit(2, "m"),
  14202. weight: math.unit(115, "kg"),
  14203. name: "Front",
  14204. image: {
  14205. source: "./media/characters/pia-sr/front.svg",
  14206. extra: 760 / 730,
  14207. bottom: 0.015
  14208. }
  14209. },
  14210. back: {
  14211. height: math.unit(2, "m"),
  14212. weight: math.unit(115, "kg"),
  14213. name: "Back",
  14214. image: {
  14215. source: "./media/characters/pia-sr/back.svg",
  14216. extra: 760 / 730,
  14217. bottom: 0.01
  14218. }
  14219. },
  14220. hand: {
  14221. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14222. name: "Hand",
  14223. image: {
  14224. source: "./media/characters/pia-sr/hand.svg"
  14225. }
  14226. },
  14227. foot: {
  14228. height: math.unit(1.83, "feet"),
  14229. name: "Foot",
  14230. image: {
  14231. source: "./media/characters/pia-sr/foot.svg"
  14232. }
  14233. },
  14234. },
  14235. [
  14236. {
  14237. name: "Micro",
  14238. height: math.unit(88, "mm")
  14239. },
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(2, "m"),
  14243. default: true
  14244. },
  14245. {
  14246. name: "Macro",
  14247. height: math.unit(200, "m")
  14248. },
  14249. {
  14250. name: "Megamacro",
  14251. height: math.unit(420, "km")
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14257. {
  14258. front: {
  14259. height: math.unit(8 + 2 / 12, "feet"),
  14260. weight: math.unit(300, "lb"),
  14261. name: "Front",
  14262. image: {
  14263. source: "./media/characters/kibibyte/front.svg",
  14264. extra: 2221 / 2098,
  14265. bottom: 0.04
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Normal",
  14272. height: math.unit(8 + 2 / 12, "feet"),
  14273. default: true
  14274. },
  14275. {
  14276. name: "Socialable Macro",
  14277. height: math.unit(50, "feet")
  14278. },
  14279. {
  14280. name: "Macro",
  14281. height: math.unit(300, "feet")
  14282. },
  14283. {
  14284. name: "Megamacro",
  14285. height: math.unit(500, "miles")
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(6, "feet"),
  14294. weight: math.unit(150, "lb"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/felix/front.svg",
  14298. extra: 762 / 722,
  14299. bottom: 0.02
  14300. }
  14301. },
  14302. frontClothed: {
  14303. height: math.unit(6, "feet"),
  14304. weight: math.unit(150, "lb"),
  14305. name: "Front (Clothed)",
  14306. image: {
  14307. source: "./media/characters/felix/front-clothed.svg",
  14308. extra: 762 / 722,
  14309. bottom: 0.02
  14310. }
  14311. },
  14312. },
  14313. [
  14314. {
  14315. name: "Normal",
  14316. height: math.unit(6 + 8 / 12, "feet"),
  14317. default: true
  14318. },
  14319. {
  14320. name: "Macro",
  14321. height: math.unit(2600, "feet")
  14322. },
  14323. {
  14324. name: "Megamacro",
  14325. height: math.unit(450, "miles")
  14326. },
  14327. ]
  14328. ))
  14329. characterMakers.push(() => makeCharacter(
  14330. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14331. {
  14332. front: {
  14333. height: math.unit(6 + 1 / 12, "feet"),
  14334. weight: math.unit(250, "lb"),
  14335. name: "Front",
  14336. image: {
  14337. source: "./media/characters/tobo/front.svg",
  14338. extra: 608 / 586,
  14339. bottom: 0.023
  14340. }
  14341. },
  14342. back: {
  14343. height: math.unit(6 + 1 / 12, "feet"),
  14344. weight: math.unit(250, "lb"),
  14345. name: "Back",
  14346. image: {
  14347. source: "./media/characters/tobo/back.svg",
  14348. extra: 608 / 586
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Nano",
  14355. height: math.unit(2, "nm")
  14356. },
  14357. {
  14358. name: "Megamicro",
  14359. height: math.unit(0.1, "mm")
  14360. },
  14361. {
  14362. name: "Micro",
  14363. height: math.unit(1, "inch"),
  14364. default: true
  14365. },
  14366. {
  14367. name: "Human-sized",
  14368. height: math.unit(6 + 1 / 12, "feet")
  14369. },
  14370. {
  14371. name: "Macro",
  14372. height: math.unit(250, "feet")
  14373. },
  14374. {
  14375. name: "Megamacro",
  14376. height: math.unit(75, "miles")
  14377. },
  14378. {
  14379. name: "Texas-sized",
  14380. height: math.unit(750, "miles")
  14381. },
  14382. {
  14383. name: "Teramacro",
  14384. height: math.unit(50000, "miles")
  14385. },
  14386. ]
  14387. ))
  14388. characterMakers.push(() => makeCharacter(
  14389. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14390. {
  14391. front: {
  14392. height: math.unit(6, "feet"),
  14393. weight: math.unit(269, "lb"),
  14394. name: "Front",
  14395. image: {
  14396. source: "./media/characters/danny-kapowsky/front.svg",
  14397. extra: 766 / 736,
  14398. bottom: 0.044
  14399. }
  14400. },
  14401. back: {
  14402. height: math.unit(6, "feet"),
  14403. weight: math.unit(269, "lb"),
  14404. name: "Back",
  14405. image: {
  14406. source: "./media/characters/danny-kapowsky/back.svg",
  14407. extra: 797 / 760,
  14408. bottom: 0.025
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Macro",
  14415. height: math.unit(150, "feet"),
  14416. default: true
  14417. },
  14418. {
  14419. name: "Macro+",
  14420. height: math.unit(200, "feet")
  14421. },
  14422. {
  14423. name: "Macro++",
  14424. height: math.unit(300, "feet")
  14425. },
  14426. {
  14427. name: "Macro+++",
  14428. height: math.unit(400, "feet")
  14429. },
  14430. ]
  14431. ))
  14432. characterMakers.push(() => makeCharacter(
  14433. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14434. {
  14435. side: {
  14436. height: math.unit(6, "feet"),
  14437. weight: math.unit(170, "lb"),
  14438. name: "Side",
  14439. image: {
  14440. source: "./media/characters/finn/side.svg",
  14441. extra: 1953 / 1807,
  14442. bottom: 0.057
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Megamacro",
  14449. height: math.unit(14445, "feet"),
  14450. default: true
  14451. },
  14452. ]
  14453. ))
  14454. characterMakers.push(() => makeCharacter(
  14455. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14456. {
  14457. front: {
  14458. height: math.unit(5 + 6 / 12, "feet"),
  14459. weight: math.unit(125, "lb"),
  14460. name: "Front",
  14461. image: {
  14462. source: "./media/characters/roy/front.svg",
  14463. extra: 1,
  14464. bottom: 0.11
  14465. }
  14466. },
  14467. },
  14468. [
  14469. {
  14470. name: "Micro",
  14471. height: math.unit(3, "inches"),
  14472. default: true
  14473. },
  14474. {
  14475. name: "Normal",
  14476. height: math.unit(5 + 6 / 12, "feet")
  14477. },
  14478. {
  14479. name: "Lesser Macro",
  14480. height: math.unit(60, "feet")
  14481. },
  14482. {
  14483. name: "Greater Macro",
  14484. height: math.unit(120, "feet")
  14485. },
  14486. ]
  14487. ))
  14488. characterMakers.push(() => makeCharacter(
  14489. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14490. {
  14491. front: {
  14492. height: math.unit(6, "feet"),
  14493. weight: math.unit(100, "lb"),
  14494. name: "Front",
  14495. image: {
  14496. source: "./media/characters/aevsivs/front.svg",
  14497. extra: 1,
  14498. bottom: 0.03
  14499. }
  14500. },
  14501. back: {
  14502. height: math.unit(6, "feet"),
  14503. weight: math.unit(100, "lb"),
  14504. name: "Back",
  14505. image: {
  14506. source: "./media/characters/aevsivs/back.svg"
  14507. }
  14508. },
  14509. },
  14510. [
  14511. {
  14512. name: "Micro",
  14513. height: math.unit(2, "inches"),
  14514. default: true
  14515. },
  14516. {
  14517. name: "Normal",
  14518. height: math.unit(5, "feet")
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14524. {
  14525. front: {
  14526. height: math.unit(5 + 7 / 12, "feet"),
  14527. weight: math.unit(159, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/hildegard/front.svg",
  14531. extra: 289 / 269,
  14532. bottom: 7.63 / 297.8
  14533. }
  14534. },
  14535. back: {
  14536. height: math.unit(5 + 7 / 12, "feet"),
  14537. weight: math.unit(159, "lb"),
  14538. name: "Back",
  14539. image: {
  14540. source: "./media/characters/hildegard/back.svg",
  14541. extra: 280 / 260,
  14542. bottom: 2.3 / 282
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Normal",
  14549. height: math.unit(5 + 7 / 12, "feet"),
  14550. default: true
  14551. },
  14552. ]
  14553. ))
  14554. characterMakers.push(() => makeCharacter(
  14555. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14556. {
  14557. bernard: {
  14558. height: math.unit(2 + 7 / 12, "feet"),
  14559. weight: math.unit(66, "lb"),
  14560. name: "Bernard",
  14561. rename: true,
  14562. image: {
  14563. source: "./media/characters/bernard-wilder/bernard.svg",
  14564. extra: 192 / 128,
  14565. bottom: 0.05
  14566. }
  14567. },
  14568. wilder: {
  14569. height: math.unit(5 + 8 / 12, "feet"),
  14570. weight: math.unit(143, "lb"),
  14571. name: "Wilder",
  14572. rename: true,
  14573. image: {
  14574. source: "./media/characters/bernard-wilder/wilder.svg",
  14575. extra: 361 / 312,
  14576. bottom: 0.02
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Normal",
  14583. height: math.unit(2 + 7 / 12, "feet"),
  14584. default: true
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14590. {
  14591. anthro: {
  14592. height: math.unit(6 + 1 / 12, "feet"),
  14593. weight: math.unit(155, "lb"),
  14594. name: "Anthro",
  14595. image: {
  14596. source: "./media/characters/hearth/anthro.svg",
  14597. extra: 260 / 250,
  14598. bottom: 0.02
  14599. }
  14600. },
  14601. feral: {
  14602. height: math.unit(3.78, "feet"),
  14603. weight: math.unit(35, "kg"),
  14604. name: "Feral",
  14605. image: {
  14606. source: "./media/characters/hearth/feral.svg",
  14607. extra: 153 / 135,
  14608. bottom: 0.03
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Normal",
  14615. height: math.unit(6 + 1 / 12, "feet"),
  14616. default: true
  14617. },
  14618. ]
  14619. ))
  14620. characterMakers.push(() => makeCharacter(
  14621. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14622. {
  14623. front: {
  14624. height: math.unit(6, "feet"),
  14625. weight: math.unit(182, "lb"),
  14626. name: "Front",
  14627. image: {
  14628. source: "./media/characters/ingrid/front.svg",
  14629. extra: 294 / 268,
  14630. bottom: 0.027
  14631. }
  14632. },
  14633. },
  14634. [
  14635. {
  14636. name: "Normal",
  14637. height: math.unit(6, "feet"),
  14638. default: true
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14644. {
  14645. eevee: {
  14646. height: math.unit(2 + 10 / 12, "feet"),
  14647. weight: math.unit(86, "lb"),
  14648. name: "Malgam",
  14649. image: {
  14650. source: "./media/characters/malgam/eevee.svg",
  14651. extra: 218 / 180,
  14652. bottom: 0.2
  14653. }
  14654. },
  14655. sylveon: {
  14656. height: math.unit(4, "feet"),
  14657. weight: math.unit(101, "lb"),
  14658. name: "Future Malgam",
  14659. rename: true,
  14660. image: {
  14661. source: "./media/characters/malgam/sylveon.svg",
  14662. extra: 371 / 325,
  14663. bottom: 0.015
  14664. }
  14665. },
  14666. gigantamax: {
  14667. height: math.unit(50, "feet"),
  14668. name: "Gigantamax Malgam",
  14669. rename: true,
  14670. image: {
  14671. source: "./media/characters/malgam/gigantamax.svg"
  14672. }
  14673. },
  14674. },
  14675. [
  14676. {
  14677. name: "Normal",
  14678. height: math.unit(2 + 10 / 12, "feet"),
  14679. default: true
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(5 + 11 / 12, "feet"),
  14688. weight: math.unit(188, "lb"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/fleur/front.svg",
  14692. extra: 309 / 283,
  14693. bottom: 0.007
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Normal",
  14700. height: math.unit(5 + 11 / 12, "feet"),
  14701. default: true
  14702. },
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14707. {
  14708. front: {
  14709. height: math.unit(5 + 4 / 12, "feet"),
  14710. weight: math.unit(122, "lb"),
  14711. name: "Front",
  14712. image: {
  14713. source: "./media/characters/jude/front.svg",
  14714. extra: 288 / 273,
  14715. bottom: 0.03
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Normal",
  14722. height: math.unit(5 + 4 / 12, "feet"),
  14723. default: true
  14724. },
  14725. ]
  14726. ))
  14727. characterMakers.push(() => makeCharacter(
  14728. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14729. {
  14730. front: {
  14731. height: math.unit(5 + 11 / 12, "feet"),
  14732. weight: math.unit(190, "lb"),
  14733. name: "Front",
  14734. image: {
  14735. source: "./media/characters/seara/front.svg",
  14736. extra: 1,
  14737. bottom: 0.05
  14738. }
  14739. },
  14740. },
  14741. [
  14742. {
  14743. name: "Normal",
  14744. height: math.unit(5 + 11 / 12, "feet"),
  14745. default: true
  14746. },
  14747. ]
  14748. ))
  14749. characterMakers.push(() => makeCharacter(
  14750. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14751. {
  14752. front: {
  14753. height: math.unit(16 + 5 / 12, "feet"),
  14754. weight: math.unit(524, "lb"),
  14755. name: "Front",
  14756. image: {
  14757. source: "./media/characters/caspian/front.svg",
  14758. extra: 1,
  14759. bottom: 0.04
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Normal",
  14766. height: math.unit(16 + 5 / 12, "feet"),
  14767. default: true
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14773. {
  14774. front: {
  14775. height: math.unit(5 + 7 / 12, "feet"),
  14776. weight: math.unit(170, "lb"),
  14777. name: "Front",
  14778. image: {
  14779. source: "./media/characters/mika/front.svg",
  14780. extra: 1,
  14781. bottom: 0.016
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Normal",
  14788. height: math.unit(5 + 7 / 12, "feet"),
  14789. default: true
  14790. },
  14791. ]
  14792. ))
  14793. characterMakers.push(() => makeCharacter(
  14794. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14795. {
  14796. front: {
  14797. height: math.unit(6 + 2 / 12, "feet"),
  14798. weight: math.unit(268, "lb"),
  14799. name: "Front",
  14800. image: {
  14801. source: "./media/characters/sol/front.svg",
  14802. extra: 247 / 231,
  14803. bottom: 0.05
  14804. }
  14805. },
  14806. },
  14807. [
  14808. {
  14809. name: "Normal",
  14810. height: math.unit(6 + 2 / 12, "feet"),
  14811. default: true
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14817. {
  14818. buizel: {
  14819. height: math.unit(2 + 5 / 12, "feet"),
  14820. weight: math.unit(87, "lb"),
  14821. name: "Buizel",
  14822. image: {
  14823. source: "./media/characters/umiko/buizel.svg",
  14824. extra: 172 / 157,
  14825. bottom: 0.01
  14826. }
  14827. },
  14828. floatzel: {
  14829. height: math.unit(5 + 9 / 12, "feet"),
  14830. weight: math.unit(250, "lb"),
  14831. name: "Floatzel",
  14832. image: {
  14833. source: "./media/characters/umiko/floatzel.svg",
  14834. extra: 262 / 248
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Normal",
  14841. height: math.unit(2 + 5 / 12, "feet"),
  14842. default: true
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14848. {
  14849. front: {
  14850. height: math.unit(6 + 2 / 12, "feet"),
  14851. weight: math.unit(146, "lb"),
  14852. name: "Front",
  14853. image: {
  14854. source: "./media/characters/iliac/front.svg",
  14855. extra: 389 / 365,
  14856. bottom: 0.035
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Normal",
  14863. height: math.unit(6 + 2 / 12, "feet"),
  14864. default: true
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(6, "feet"),
  14873. weight: math.unit(170, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/topaz/front.svg",
  14877. extra: 317 / 303,
  14878. bottom: 0.055
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Normal",
  14885. height: math.unit(6, "feet"),
  14886. default: true
  14887. },
  14888. ]
  14889. ))
  14890. characterMakers.push(() => makeCharacter(
  14891. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14892. {
  14893. front: {
  14894. height: math.unit(5 + 11 / 12, "feet"),
  14895. weight: math.unit(144, "lb"),
  14896. name: "Front",
  14897. image: {
  14898. source: "./media/characters/gabriel/front.svg",
  14899. extra: 285 / 262,
  14900. bottom: 0.004
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Normal",
  14907. height: math.unit(5 + 11 / 12, "feet"),
  14908. default: true
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14914. {
  14915. side: {
  14916. height: math.unit(6 + 5 / 12, "feet"),
  14917. weight: math.unit(300, "lb"),
  14918. name: "Side",
  14919. image: {
  14920. source: "./media/characters/tempest-suicune/side.svg",
  14921. extra: 195 / 154,
  14922. bottom: 0.04
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Normal",
  14929. height: math.unit(6 + 5 / 12, "feet"),
  14930. default: true
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(7 + 2 / 12, "feet"),
  14939. weight: math.unit(322, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/vulcan/front.svg",
  14943. extra: 154 / 147,
  14944. bottom: 0.04
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Normal",
  14951. height: math.unit(7 + 2 / 12, "feet"),
  14952. default: true
  14953. },
  14954. ]
  14955. ))
  14956. characterMakers.push(() => makeCharacter(
  14957. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14958. {
  14959. front: {
  14960. height: math.unit(5 + 10 / 12, "feet"),
  14961. weight: math.unit(264, "lb"),
  14962. name: "Front",
  14963. image: {
  14964. source: "./media/characters/gault/front.svg",
  14965. extra: 161 / 140,
  14966. bottom: 0.028
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Normal",
  14973. height: math.unit(5 + 10 / 12, "feet"),
  14974. default: true
  14975. },
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14980. {
  14981. front: {
  14982. height: math.unit(6, "feet"),
  14983. weight: math.unit(150, "lb"),
  14984. name: "Front",
  14985. image: {
  14986. source: "./media/characters/shard/front.svg",
  14987. extra: 273 / 238,
  14988. bottom: 0.02
  14989. }
  14990. },
  14991. },
  14992. [
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(3 + 6 / 12, "feet"),
  14996. default: true
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15002. {
  15003. front: {
  15004. height: math.unit(5 + 11 / 12, "feet"),
  15005. weight: math.unit(146, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/ashe/front.svg",
  15009. extra: 400 / 373,
  15010. bottom: 0.01
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Normal",
  15017. height: math.unit(5 + 11 / 12, "feet"),
  15018. default: true
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(5 + 5 / 12, "feet"),
  15027. weight: math.unit(135, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/beatrix/front.svg",
  15031. extra: 392 / 379,
  15032. bottom: 0.01
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Normal",
  15039. height: math.unit(6, "feet"),
  15040. default: true
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15046. {
  15047. front: {
  15048. height: math.unit(6, "feet"),
  15049. weight: math.unit(150, "lb"),
  15050. name: "Front",
  15051. image: {
  15052. source: "./media/characters/ignatius/front.svg",
  15053. extra: 245 / 222,
  15054. bottom: 0.01
  15055. }
  15056. },
  15057. },
  15058. [
  15059. {
  15060. name: "Normal",
  15061. height: math.unit(5 + 5 / 12, "feet"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15068. {
  15069. front: {
  15070. height: math.unit(6 + 2 / 12, "feet"),
  15071. weight: math.unit(138, "lb"),
  15072. name: "Front",
  15073. image: {
  15074. source: "./media/characters/mei-li/front.svg",
  15075. extra: 237 / 229,
  15076. bottom: 0.03
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(6 + 2 / 12, "feet"),
  15084. default: true
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15090. {
  15091. front: {
  15092. height: math.unit(2 + 4 / 12, "feet"),
  15093. weight: math.unit(62, "lb"),
  15094. name: "Front",
  15095. image: {
  15096. source: "./media/characters/puru/front.svg",
  15097. extra: 206 / 149,
  15098. bottom: 0.06
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(2 + 4 / 12, "feet"),
  15106. default: true
  15107. },
  15108. ]
  15109. ))
  15110. characterMakers.push(() => makeCharacter(
  15111. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15112. {
  15113. anthro: {
  15114. height: math.unit(5 + 8/12, "feet"),
  15115. weight: math.unit(200, "lb"),
  15116. energyNeed: math.unit(2000, "kcal"),
  15117. name: "Anthro",
  15118. image: {
  15119. source: "./media/characters/kee/anthro.svg",
  15120. extra: 3251/3184,
  15121. bottom: 250/3501
  15122. }
  15123. },
  15124. taur: {
  15125. height: math.unit(11, "feet"),
  15126. weight: math.unit(500, "lb"),
  15127. energyNeed: math.unit(5000, "kcal"),
  15128. name: "Taur",
  15129. image: {
  15130. source: "./media/characters/kee/taur.svg",
  15131. extra: 1362/1320,
  15132. bottom: 83/1445
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(5 + 8/12, "feet"),
  15140. default: true
  15141. },
  15142. {
  15143. name: "Macro",
  15144. height: math.unit(35, "feet")
  15145. },
  15146. ]
  15147. ))
  15148. characterMakers.push(() => makeCharacter(
  15149. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15150. {
  15151. anthro: {
  15152. height: math.unit(7, "feet"),
  15153. weight: math.unit(190, "lb"),
  15154. name: "Anthro",
  15155. image: {
  15156. source: "./media/characters/cobalt-dracha/anthro.svg",
  15157. extra: 231 / 225,
  15158. bottom: 0.04
  15159. }
  15160. },
  15161. feral: {
  15162. height: math.unit(9 + 7 / 12, "feet"),
  15163. weight: math.unit(294, "lb"),
  15164. name: "Feral",
  15165. image: {
  15166. source: "./media/characters/cobalt-dracha/feral.svg",
  15167. extra: 692 / 633,
  15168. bottom: 0.05
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Normal",
  15175. height: math.unit(7, "feet"),
  15176. default: true
  15177. },
  15178. ]
  15179. ))
  15180. characterMakers.push(() => makeCharacter(
  15181. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15182. {
  15183. fallen: {
  15184. height: math.unit(11 + 8 / 12, "feet"),
  15185. weight: math.unit(485, "lb"),
  15186. name: "Java (Fallen)",
  15187. rename: true,
  15188. image: {
  15189. source: "./media/characters/java/fallen.svg",
  15190. extra: 226 / 208,
  15191. bottom: 0.005
  15192. }
  15193. },
  15194. godkin: {
  15195. height: math.unit(10 + 6 / 12, "feet"),
  15196. weight: math.unit(328, "lb"),
  15197. name: "Java (Godkin)",
  15198. rename: true,
  15199. image: {
  15200. source: "./media/characters/java/godkin.svg",
  15201. extra: 270 / 262,
  15202. bottom: 0.02
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(11 + 8 / 12, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15216. {
  15217. front: {
  15218. height: math.unit(7 + 8 / 12, "feet"),
  15219. weight: math.unit(320, "lb"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/skoll/front.svg",
  15223. extra: 232 / 220,
  15224. bottom: 0.02
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Normal",
  15231. height: math.unit(7 + 8 / 12, "feet"),
  15232. default: true
  15233. },
  15234. ]
  15235. ))
  15236. characterMakers.push(() => makeCharacter(
  15237. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15238. {
  15239. front: {
  15240. height: math.unit(5 + 9 / 12, "feet"),
  15241. weight: math.unit(170, "lb"),
  15242. name: "Front",
  15243. image: {
  15244. source: "./media/characters/purna/front.svg",
  15245. extra: 239 / 229,
  15246. bottom: 0.01
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Normal",
  15253. height: math.unit(5 + 9 / 12, "feet"),
  15254. default: true
  15255. },
  15256. ]
  15257. ))
  15258. characterMakers.push(() => makeCharacter(
  15259. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15260. {
  15261. front: {
  15262. height: math.unit(5 + 9 / 12, "feet"),
  15263. weight: math.unit(142, "lb"),
  15264. name: "Front",
  15265. image: {
  15266. source: "./media/characters/kuva/front.svg",
  15267. extra: 281 / 271,
  15268. bottom: 0.006
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Normal",
  15275. height: math.unit(5 + 9 / 12, "feet"),
  15276. default: true
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15282. {
  15283. anthro: {
  15284. height: math.unit(9 + 2 / 12, "feet"),
  15285. weight: math.unit(270, "lb"),
  15286. name: "Anthro",
  15287. image: {
  15288. source: "./media/characters/embra/anthro.svg",
  15289. extra: 200 / 187,
  15290. bottom: 0.02
  15291. }
  15292. },
  15293. feral: {
  15294. height: math.unit(18 + 8 / 12, "feet"),
  15295. weight: math.unit(576, "lb"),
  15296. name: "Feral",
  15297. image: {
  15298. source: "./media/characters/embra/feral.svg",
  15299. extra: 152 / 137,
  15300. bottom: 0.037
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Normal",
  15307. height: math.unit(9 + 2 / 12, "feet"),
  15308. default: true
  15309. },
  15310. ]
  15311. ))
  15312. characterMakers.push(() => makeCharacter(
  15313. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15314. {
  15315. anthro: {
  15316. height: math.unit(10 + 9 / 12, "feet"),
  15317. weight: math.unit(224, "lb"),
  15318. name: "Anthro",
  15319. image: {
  15320. source: "./media/characters/grottos/anthro.svg",
  15321. extra: 350 / 332,
  15322. bottom: 0.045
  15323. }
  15324. },
  15325. feral: {
  15326. height: math.unit(20 + 7 / 12, "feet"),
  15327. weight: math.unit(629, "lb"),
  15328. name: "Feral",
  15329. image: {
  15330. source: "./media/characters/grottos/feral.svg",
  15331. extra: 207 / 190,
  15332. bottom: 0.05
  15333. }
  15334. },
  15335. },
  15336. [
  15337. {
  15338. name: "Normal",
  15339. height: math.unit(10 + 9 / 12, "feet"),
  15340. default: true
  15341. },
  15342. ]
  15343. ))
  15344. characterMakers.push(() => makeCharacter(
  15345. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15346. {
  15347. anthro: {
  15348. height: math.unit(9 + 6 / 12, "feet"),
  15349. weight: math.unit(298, "lb"),
  15350. name: "Anthro",
  15351. image: {
  15352. source: "./media/characters/frifna/anthro.svg",
  15353. extra: 282 / 269,
  15354. bottom: 0.015
  15355. }
  15356. },
  15357. feral: {
  15358. height: math.unit(16 + 2 / 12, "feet"),
  15359. weight: math.unit(624, "lb"),
  15360. name: "Feral",
  15361. image: {
  15362. source: "./media/characters/frifna/feral.svg"
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Normal",
  15369. height: math.unit(9 + 6 / 12, "feet"),
  15370. default: true
  15371. },
  15372. ]
  15373. ))
  15374. characterMakers.push(() => makeCharacter(
  15375. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15376. {
  15377. front: {
  15378. height: math.unit(6 + 2 / 12, "feet"),
  15379. weight: math.unit(168, "lb"),
  15380. name: "Front",
  15381. image: {
  15382. source: "./media/characters/elise/front.svg",
  15383. extra: 276 / 271
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Normal",
  15390. height: math.unit(6 + 2 / 12, "feet"),
  15391. default: true
  15392. },
  15393. ]
  15394. ))
  15395. characterMakers.push(() => makeCharacter(
  15396. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15397. {
  15398. front: {
  15399. height: math.unit(5 + 10 / 12, "feet"),
  15400. weight: math.unit(210, "lb"),
  15401. name: "Front",
  15402. image: {
  15403. source: "./media/characters/glade/front.svg",
  15404. extra: 258 / 247,
  15405. bottom: 0.008
  15406. }
  15407. },
  15408. },
  15409. [
  15410. {
  15411. name: "Normal",
  15412. height: math.unit(5 + 10 / 12, "feet"),
  15413. default: true
  15414. },
  15415. ]
  15416. ))
  15417. characterMakers.push(() => makeCharacter(
  15418. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15419. {
  15420. front: {
  15421. height: math.unit(5 + 10 / 12, "feet"),
  15422. weight: math.unit(129, "lb"),
  15423. name: "Front",
  15424. image: {
  15425. source: "./media/characters/rina/front.svg",
  15426. extra: 266 / 255,
  15427. bottom: 0.005
  15428. }
  15429. },
  15430. },
  15431. [
  15432. {
  15433. name: "Normal",
  15434. height: math.unit(5 + 10 / 12, "feet"),
  15435. default: true
  15436. },
  15437. ]
  15438. ))
  15439. characterMakers.push(() => makeCharacter(
  15440. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15441. {
  15442. front: {
  15443. height: math.unit(6 + 1 / 12, "feet"),
  15444. weight: math.unit(192, "lb"),
  15445. name: "Front",
  15446. image: {
  15447. source: "./media/characters/veronica/front.svg",
  15448. extra: 319 / 309,
  15449. bottom: 0.005
  15450. }
  15451. },
  15452. },
  15453. [
  15454. {
  15455. name: "Normal",
  15456. height: math.unit(6 + 1 / 12, "feet"),
  15457. default: true
  15458. },
  15459. ]
  15460. ))
  15461. characterMakers.push(() => makeCharacter(
  15462. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15463. {
  15464. front: {
  15465. height: math.unit(9 + 3 / 12, "feet"),
  15466. weight: math.unit(1100, "lb"),
  15467. name: "Front",
  15468. image: {
  15469. source: "./media/characters/braxton/front.svg",
  15470. extra: 1057 / 984,
  15471. bottom: 0.05
  15472. }
  15473. },
  15474. },
  15475. [
  15476. {
  15477. name: "Normal",
  15478. height: math.unit(9 + 3 / 12, "feet")
  15479. },
  15480. {
  15481. name: "Giant",
  15482. height: math.unit(300, "feet"),
  15483. default: true
  15484. },
  15485. {
  15486. name: "Macro",
  15487. height: math.unit(700, "feet")
  15488. },
  15489. {
  15490. name: "Megamacro",
  15491. height: math.unit(6000, "feet")
  15492. },
  15493. ]
  15494. ))
  15495. characterMakers.push(() => makeCharacter(
  15496. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15497. {
  15498. front: {
  15499. height: math.unit(6 + 7 / 12, "feet"),
  15500. weight: math.unit(150, "lb"),
  15501. name: "Front",
  15502. image: {
  15503. source: "./media/characters/blue-feyonics/front.svg",
  15504. extra: 1403 / 1306,
  15505. bottom: 0.047
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Normal",
  15512. height: math.unit(6 + 7 / 12, "feet"),
  15513. default: true
  15514. },
  15515. ]
  15516. ))
  15517. characterMakers.push(() => makeCharacter(
  15518. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15519. {
  15520. front: {
  15521. height: math.unit(1.8, "meters"),
  15522. weight: math.unit(60, "kg"),
  15523. name: "Front",
  15524. image: {
  15525. source: "./media/characters/maxwell/front.svg",
  15526. extra: 2060 / 1873
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Micro",
  15533. height: math.unit(1, "mm")
  15534. },
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(1.8, "meter"),
  15538. default: true
  15539. },
  15540. {
  15541. name: "Macro",
  15542. height: math.unit(30, "meters")
  15543. },
  15544. {
  15545. name: "Megamacro",
  15546. height: math.unit(10, "km")
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15552. {
  15553. front: {
  15554. height: math.unit(6, "feet"),
  15555. weight: math.unit(150, "lb"),
  15556. name: "Front",
  15557. image: {
  15558. source: "./media/characters/jack/front.svg",
  15559. extra: 1754 / 1640,
  15560. bottom: 0.01
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Normal",
  15567. height: math.unit(80000, "feet"),
  15568. default: true
  15569. },
  15570. {
  15571. name: "Max size",
  15572. height: math.unit(10, "lightyears")
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15578. {
  15579. upright: {
  15580. height: math.unit(7, "feet"),
  15581. weight: math.unit(170, "lb"),
  15582. name: "Upright",
  15583. image: {
  15584. source: "./media/characters/cafat/upright.svg",
  15585. bottom: 0.01
  15586. }
  15587. },
  15588. uprightFull: {
  15589. height: math.unit(7, "feet"),
  15590. weight: math.unit(170, "lb"),
  15591. name: "Upright (Full)",
  15592. image: {
  15593. source: "./media/characters/cafat/upright-full.svg",
  15594. bottom: 0.01
  15595. }
  15596. },
  15597. side: {
  15598. height: math.unit(5, "feet"),
  15599. weight: math.unit(150, "lb"),
  15600. name: "Side",
  15601. image: {
  15602. source: "./media/characters/cafat/side.svg"
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Small",
  15609. height: math.unit(7, "feet"),
  15610. default: true
  15611. },
  15612. {
  15613. name: "Large",
  15614. height: math.unit(15.5, "feet")
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15620. {
  15621. front: {
  15622. height: math.unit(6, "feet"),
  15623. weight: math.unit(150, "lb"),
  15624. name: "Front",
  15625. image: {
  15626. source: "./media/characters/verin-raharra/front.svg",
  15627. extra: 5019 / 4835,
  15628. bottom: 0.023
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(7 + 5 / 12, "feet"),
  15636. default: true
  15637. },
  15638. {
  15639. name: "Upsized",
  15640. height: math.unit(20, "feet")
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(7, "feet"),
  15649. weight: math.unit(230, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/nakata/front.svg",
  15653. extra: 1.005,
  15654. bottom: 0.01
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(7, "feet"),
  15662. default: true
  15663. },
  15664. {
  15665. name: "Big",
  15666. height: math.unit(14, "feet")
  15667. },
  15668. {
  15669. name: "Macro",
  15670. height: math.unit(400, "feet")
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15676. {
  15677. front: {
  15678. height: math.unit(4.91, "feet"),
  15679. weight: math.unit(100, "lb"),
  15680. name: "Front",
  15681. image: {
  15682. source: "./media/characters/lily/front.svg",
  15683. extra: 1585 / 1415,
  15684. bottom: 0.02
  15685. }
  15686. },
  15687. },
  15688. [
  15689. {
  15690. name: "Normal",
  15691. height: math.unit(4.91, "feet"),
  15692. default: true
  15693. },
  15694. ]
  15695. ))
  15696. characterMakers.push(() => makeCharacter(
  15697. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15698. {
  15699. laying: {
  15700. height: math.unit(4 + 4 / 12, "feet"),
  15701. weight: math.unit(600, "lb"),
  15702. name: "Laying",
  15703. image: {
  15704. source: "./media/characters/sheila/laying.svg",
  15705. extra: 1333 / 1265,
  15706. bottom: 0.16
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(4 + 4 / 12, "feet"),
  15714. default: true
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15720. {
  15721. front: {
  15722. height: math.unit(6, "feet"),
  15723. weight: math.unit(190, "lb"),
  15724. name: "Front",
  15725. image: {
  15726. source: "./media/characters/sax/front.svg",
  15727. extra: 1187 / 973,
  15728. bottom: 0.042
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Micro",
  15735. height: math.unit(4, "inches"),
  15736. default: true
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15742. {
  15743. front: {
  15744. height: math.unit(6, "feet"),
  15745. weight: math.unit(150, "lb"),
  15746. name: "Front",
  15747. image: {
  15748. source: "./media/characters/pandora/front.svg",
  15749. extra: 2720 / 2556,
  15750. bottom: 0.015
  15751. }
  15752. },
  15753. back: {
  15754. height: math.unit(6, "feet"),
  15755. weight: math.unit(150, "lb"),
  15756. name: "Back",
  15757. image: {
  15758. source: "./media/characters/pandora/back.svg",
  15759. extra: 2720 / 2556,
  15760. bottom: 0.01
  15761. }
  15762. },
  15763. beans: {
  15764. height: math.unit(6 / 8, "feet"),
  15765. name: "Beans",
  15766. image: {
  15767. source: "./media/characters/pandora/beans.svg"
  15768. }
  15769. },
  15770. collar: {
  15771. height: math.unit(0.31, "feet"),
  15772. name: "Collar",
  15773. image: {
  15774. source: "./media/characters/pandora/collar.svg"
  15775. }
  15776. },
  15777. skirt: {
  15778. height: math.unit(6, "feet"),
  15779. weight: math.unit(150, "lb"),
  15780. name: "Skirt",
  15781. image: {
  15782. source: "./media/characters/pandora/skirt.svg",
  15783. extra: 1622 / 1525,
  15784. bottom: 0.015
  15785. }
  15786. },
  15787. hoodie: {
  15788. height: math.unit(6, "feet"),
  15789. weight: math.unit(150, "lb"),
  15790. name: "Hoodie",
  15791. image: {
  15792. source: "./media/characters/pandora/hoodie.svg",
  15793. extra: 1622 / 1525,
  15794. bottom: 0.015
  15795. }
  15796. },
  15797. casual: {
  15798. height: math.unit(6, "feet"),
  15799. weight: math.unit(150, "lb"),
  15800. name: "Casual",
  15801. image: {
  15802. source: "./media/characters/pandora/casual.svg",
  15803. extra: 1622 / 1525,
  15804. bottom: 0.015
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(6, "feet")
  15812. },
  15813. {
  15814. name: "Big Steppy",
  15815. height: math.unit(1, "km"),
  15816. default: true
  15817. },
  15818. {
  15819. name: "Galactic Steppy",
  15820. height: math.unit(2, "gigameters")
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15826. {
  15827. side: {
  15828. height: math.unit(10, "feet"),
  15829. weight: math.unit(800, "kg"),
  15830. name: "Side",
  15831. image: {
  15832. source: "./media/characters/venio-darcony/side.svg",
  15833. extra: 1373 / 1003,
  15834. bottom: 0.037
  15835. }
  15836. },
  15837. front: {
  15838. height: math.unit(19, "feet"),
  15839. weight: math.unit(800, "kg"),
  15840. name: "Front",
  15841. image: {
  15842. source: "./media/characters/venio-darcony/front.svg"
  15843. }
  15844. },
  15845. back: {
  15846. height: math.unit(19, "feet"),
  15847. weight: math.unit(800, "kg"),
  15848. name: "Back",
  15849. image: {
  15850. source: "./media/characters/venio-darcony/back.svg"
  15851. }
  15852. },
  15853. sideNsfw: {
  15854. height: math.unit(10, "feet"),
  15855. weight: math.unit(800, "kg"),
  15856. name: "Side (NSFW)",
  15857. image: {
  15858. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15859. extra: 1373 / 1003,
  15860. bottom: 0.037
  15861. }
  15862. },
  15863. frontNsfw: {
  15864. height: math.unit(19, "feet"),
  15865. weight: math.unit(800, "kg"),
  15866. name: "Front (NSFW)",
  15867. image: {
  15868. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15869. }
  15870. },
  15871. backNsfw: {
  15872. height: math.unit(19, "feet"),
  15873. weight: math.unit(800, "kg"),
  15874. name: "Back (NSFW)",
  15875. image: {
  15876. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15877. }
  15878. },
  15879. sideArmored: {
  15880. height: math.unit(10, "feet"),
  15881. weight: math.unit(800, "kg"),
  15882. name: "Side (Armored)",
  15883. image: {
  15884. source: "./media/characters/venio-darcony/side-armored.svg",
  15885. extra: 1373 / 1003,
  15886. bottom: 0.037
  15887. }
  15888. },
  15889. frontArmored: {
  15890. height: math.unit(19, "feet"),
  15891. weight: math.unit(900, "kg"),
  15892. name: "Front (Armored)",
  15893. image: {
  15894. source: "./media/characters/venio-darcony/front-armored.svg"
  15895. }
  15896. },
  15897. backArmored: {
  15898. height: math.unit(19, "feet"),
  15899. weight: math.unit(900, "kg"),
  15900. name: "Back (Armored)",
  15901. image: {
  15902. source: "./media/characters/venio-darcony/back-armored.svg"
  15903. }
  15904. },
  15905. sword: {
  15906. height: math.unit(10, "feet"),
  15907. weight: math.unit(50, "lb"),
  15908. name: "Sword",
  15909. image: {
  15910. source: "./media/characters/venio-darcony/sword.svg"
  15911. }
  15912. },
  15913. },
  15914. [
  15915. {
  15916. name: "Normal",
  15917. height: math.unit(10, "feet")
  15918. },
  15919. {
  15920. name: "Macro",
  15921. height: math.unit(130, "feet"),
  15922. default: true
  15923. },
  15924. {
  15925. name: "Macro+",
  15926. height: math.unit(240, "feet")
  15927. },
  15928. ]
  15929. ))
  15930. characterMakers.push(() => makeCharacter(
  15931. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15932. {
  15933. front: {
  15934. height: math.unit(6, "feet"),
  15935. weight: math.unit(150, "lb"),
  15936. name: "Front",
  15937. image: {
  15938. source: "./media/characters/veski/front.svg",
  15939. extra: 1299 / 1225,
  15940. bottom: 0.04
  15941. }
  15942. },
  15943. back: {
  15944. height: math.unit(6, "feet"),
  15945. weight: math.unit(150, "lb"),
  15946. name: "Back",
  15947. image: {
  15948. source: "./media/characters/veski/back.svg",
  15949. extra: 1299 / 1225,
  15950. bottom: 0.008
  15951. }
  15952. },
  15953. maw: {
  15954. height: math.unit(1.5 * 1.21, "feet"),
  15955. name: "Maw",
  15956. image: {
  15957. source: "./media/characters/veski/maw.svg"
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Macro",
  15964. height: math.unit(2, "km"),
  15965. default: true
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(5 + 7 / 12, "feet"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/isabelle/front.svg",
  15977. extra: 2130 / 1976,
  15978. bottom: 0.05
  15979. }
  15980. },
  15981. },
  15982. [
  15983. {
  15984. name: "Supermicro",
  15985. height: math.unit(10, "micrometers")
  15986. },
  15987. {
  15988. name: "Micro",
  15989. height: math.unit(1, "inch")
  15990. },
  15991. {
  15992. name: "Tiny",
  15993. height: math.unit(5, "inches")
  15994. },
  15995. {
  15996. name: "Standard",
  15997. height: math.unit(5 + 7 / 12, "inches")
  15998. },
  15999. {
  16000. name: "Macro",
  16001. height: math.unit(80, "meters"),
  16002. default: true
  16003. },
  16004. {
  16005. name: "Megamacro",
  16006. height: math.unit(250, "meters")
  16007. },
  16008. {
  16009. name: "Gigamacro",
  16010. height: math.unit(5, "km")
  16011. },
  16012. {
  16013. name: "Cosmic",
  16014. height: math.unit(2.5e6, "miles")
  16015. },
  16016. ]
  16017. ))
  16018. characterMakers.push(() => makeCharacter(
  16019. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16020. {
  16021. front: {
  16022. height: math.unit(6, "feet"),
  16023. weight: math.unit(150, "lb"),
  16024. name: "Front",
  16025. image: {
  16026. source: "./media/characters/hanzo/front.svg",
  16027. extra: 374 / 344,
  16028. bottom: 0.02
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Normal",
  16035. height: math.unit(8, "feet"),
  16036. default: true
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16042. {
  16043. front: {
  16044. height: math.unit(7, "feet"),
  16045. weight: math.unit(130, "lb"),
  16046. name: "Front",
  16047. image: {
  16048. source: "./media/characters/anna/front.svg",
  16049. extra: 169 / 145,
  16050. bottom: 0.06
  16051. }
  16052. },
  16053. full: {
  16054. height: math.unit(4.96, "feet"),
  16055. weight: math.unit(220, "lb"),
  16056. name: "Full",
  16057. image: {
  16058. source: "./media/characters/anna/full.svg",
  16059. extra: 138 / 114,
  16060. bottom: 0.15
  16061. }
  16062. },
  16063. tongue: {
  16064. height: math.unit(2.53, "feet"),
  16065. name: "Tongue",
  16066. image: {
  16067. source: "./media/characters/anna/tongue.svg"
  16068. }
  16069. },
  16070. },
  16071. [
  16072. {
  16073. name: "Normal",
  16074. height: math.unit(7, "feet"),
  16075. default: true
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16081. {
  16082. front: {
  16083. height: math.unit(7, "feet"),
  16084. weight: math.unit(150, "lb"),
  16085. name: "Front",
  16086. image: {
  16087. source: "./media/characters/ian-corvid/front.svg",
  16088. extra: 150 / 142,
  16089. bottom: 0.02
  16090. }
  16091. },
  16092. back: {
  16093. height: math.unit(7, "feet"),
  16094. weight: math.unit(150, "lb"),
  16095. name: "Back",
  16096. image: {
  16097. source: "./media/characters/ian-corvid/back.svg",
  16098. extra: 150 / 143,
  16099. bottom: 0.01
  16100. }
  16101. },
  16102. stomping: {
  16103. height: math.unit(7, "feet"),
  16104. weight: math.unit(150, "lb"),
  16105. name: "Stomping",
  16106. image: {
  16107. source: "./media/characters/ian-corvid/stomping.svg",
  16108. extra: 76 / 72
  16109. }
  16110. },
  16111. sitting: {
  16112. height: math.unit(7 / 1.8, "feet"),
  16113. weight: math.unit(150, "lb"),
  16114. name: "Sitting",
  16115. image: {
  16116. source: "./media/characters/ian-corvid/sitting.svg",
  16117. extra: 1400 / 1269,
  16118. bottom: 0.15
  16119. }
  16120. },
  16121. },
  16122. [
  16123. {
  16124. name: "Tiny Microw",
  16125. height: math.unit(1, "inch")
  16126. },
  16127. {
  16128. name: "Microw",
  16129. height: math.unit(6, "inches")
  16130. },
  16131. {
  16132. name: "Crow",
  16133. height: math.unit(7 + 1 / 12, "feet"),
  16134. default: true
  16135. },
  16136. {
  16137. name: "Macrow",
  16138. height: math.unit(176, "feet")
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16144. {
  16145. front: {
  16146. height: math.unit(5 + 7 / 12, "feet"),
  16147. weight: math.unit(147, "lb"),
  16148. name: "Front",
  16149. image: {
  16150. source: "./media/characters/natalie-kellon/front.svg",
  16151. extra: 1214 / 1141,
  16152. bottom: 0.02
  16153. }
  16154. },
  16155. },
  16156. [
  16157. {
  16158. name: "Micro",
  16159. height: math.unit(1 / 16, "inch")
  16160. },
  16161. {
  16162. name: "Tiny",
  16163. height: math.unit(4, "inches")
  16164. },
  16165. {
  16166. name: "Normal",
  16167. height: math.unit(5 + 7 / 12, "feet"),
  16168. default: true
  16169. },
  16170. {
  16171. name: "Amazon",
  16172. height: math.unit(12, "feet")
  16173. },
  16174. {
  16175. name: "Giantess",
  16176. height: math.unit(160, "meters")
  16177. },
  16178. {
  16179. name: "Titaness",
  16180. height: math.unit(800, "meters")
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(6, "feet"),
  16189. weight: math.unit(150, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/alluria/front.svg",
  16193. extra: 806 / 738,
  16194. bottom: 0.01
  16195. }
  16196. },
  16197. side: {
  16198. height: math.unit(6, "feet"),
  16199. weight: math.unit(150, "lb"),
  16200. name: "Side",
  16201. image: {
  16202. source: "./media/characters/alluria/side.svg",
  16203. extra: 800 / 750,
  16204. }
  16205. },
  16206. back: {
  16207. height: math.unit(6, "feet"),
  16208. weight: math.unit(150, "lb"),
  16209. name: "Back",
  16210. image: {
  16211. source: "./media/characters/alluria/back.svg",
  16212. extra: 806 / 738,
  16213. }
  16214. },
  16215. frontMaid: {
  16216. height: math.unit(6, "feet"),
  16217. weight: math.unit(150, "lb"),
  16218. name: "Front (Maid)",
  16219. image: {
  16220. source: "./media/characters/alluria/front-maid.svg",
  16221. extra: 806 / 738,
  16222. bottom: 0.01
  16223. }
  16224. },
  16225. sideMaid: {
  16226. height: math.unit(6, "feet"),
  16227. weight: math.unit(150, "lb"),
  16228. name: "Side (Maid)",
  16229. image: {
  16230. source: "./media/characters/alluria/side-maid.svg",
  16231. extra: 800 / 750,
  16232. bottom: 0.005
  16233. }
  16234. },
  16235. backMaid: {
  16236. height: math.unit(6, "feet"),
  16237. weight: math.unit(150, "lb"),
  16238. name: "Back (Maid)",
  16239. image: {
  16240. source: "./media/characters/alluria/back-maid.svg",
  16241. extra: 806 / 738,
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Micro",
  16248. height: math.unit(6, "inches"),
  16249. default: true
  16250. },
  16251. ]
  16252. ))
  16253. characterMakers.push(() => makeCharacter(
  16254. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16255. {
  16256. front: {
  16257. height: math.unit(6, "feet"),
  16258. weight: math.unit(150, "lb"),
  16259. name: "Front",
  16260. image: {
  16261. source: "./media/characters/kyle/front.svg",
  16262. extra: 1069 / 962,
  16263. bottom: 77.228 / 1727.45
  16264. }
  16265. },
  16266. },
  16267. [
  16268. {
  16269. name: "Macro",
  16270. height: math.unit(150, "feet"),
  16271. default: true
  16272. },
  16273. ]
  16274. ))
  16275. characterMakers.push(() => makeCharacter(
  16276. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16277. {
  16278. front: {
  16279. height: math.unit(6, "feet"),
  16280. weight: math.unit(300, "lb"),
  16281. name: "Front",
  16282. image: {
  16283. source: "./media/characters/duncan/front.svg",
  16284. extra: 1650 / 1482,
  16285. bottom: 0.05
  16286. }
  16287. },
  16288. },
  16289. [
  16290. {
  16291. name: "Macro",
  16292. height: math.unit(100, "feet"),
  16293. default: true
  16294. },
  16295. ]
  16296. ))
  16297. characterMakers.push(() => makeCharacter(
  16298. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16299. {
  16300. front: {
  16301. height: math.unit(5 + 4 / 12, "feet"),
  16302. weight: math.unit(220, "lb"),
  16303. name: "Front",
  16304. image: {
  16305. source: "./media/characters/memory/front.svg",
  16306. extra: 3641 / 3545,
  16307. bottom: 0.03
  16308. }
  16309. },
  16310. back: {
  16311. height: math.unit(5 + 4 / 12, "feet"),
  16312. weight: math.unit(220, "lb"),
  16313. name: "Back",
  16314. image: {
  16315. source: "./media/characters/memory/back.svg",
  16316. extra: 3641 / 3545,
  16317. bottom: 0.025
  16318. }
  16319. },
  16320. frontSkirt: {
  16321. height: math.unit(5 + 4 / 12, "feet"),
  16322. weight: math.unit(220, "lb"),
  16323. name: "Front (Skirt)",
  16324. image: {
  16325. source: "./media/characters/memory/front-skirt.svg",
  16326. extra: 3641 / 3545,
  16327. bottom: 0.03
  16328. }
  16329. },
  16330. frontDress: {
  16331. height: math.unit(5 + 4 / 12, "feet"),
  16332. weight: math.unit(220, "lb"),
  16333. name: "Front (Dress)",
  16334. image: {
  16335. source: "./media/characters/memory/front-dress.svg",
  16336. extra: 3641 / 3545,
  16337. bottom: 0.03
  16338. }
  16339. },
  16340. },
  16341. [
  16342. {
  16343. name: "Micro",
  16344. height: math.unit(6, "inches"),
  16345. default: true
  16346. },
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(5 + 4 / 12, "feet")
  16350. },
  16351. ]
  16352. ))
  16353. characterMakers.push(() => makeCharacter(
  16354. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16355. {
  16356. front: {
  16357. height: math.unit(4 + 11 / 12, "feet"),
  16358. weight: math.unit(100, "lb"),
  16359. name: "Front",
  16360. image: {
  16361. source: "./media/characters/luno/front.svg",
  16362. extra: 1535 / 1487,
  16363. bottom: 0.03
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Micro",
  16370. height: math.unit(3, "inches")
  16371. },
  16372. {
  16373. name: "Normal",
  16374. height: math.unit(4 + 11 / 12, "feet"),
  16375. default: true
  16376. },
  16377. {
  16378. name: "Macro",
  16379. height: math.unit(300, "feet")
  16380. },
  16381. {
  16382. name: "Megamacro",
  16383. height: math.unit(700, "miles")
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(6 + 2 / 12, "feet"),
  16392. weight: math.unit(170, "lb"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/jamesy/front.svg",
  16396. extra: 440 / 382,
  16397. bottom: 0.005
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Micro",
  16404. height: math.unit(3, "inches")
  16405. },
  16406. {
  16407. name: "Normal",
  16408. height: math.unit(6 + 2 / 12, "feet"),
  16409. default: true
  16410. },
  16411. {
  16412. name: "Macro",
  16413. height: math.unit(300, "feet")
  16414. },
  16415. {
  16416. name: "Megamacro",
  16417. height: math.unit(700, "miles")
  16418. },
  16419. ]
  16420. ))
  16421. characterMakers.push(() => makeCharacter(
  16422. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16423. {
  16424. front: {
  16425. height: math.unit(6, "feet"),
  16426. weight: math.unit(160, "lb"),
  16427. name: "Front",
  16428. image: {
  16429. source: "./media/characters/mark/front.svg",
  16430. extra: 3300 / 3100,
  16431. bottom: 136.42 / 3440.47
  16432. }
  16433. },
  16434. },
  16435. [
  16436. {
  16437. name: "Macro",
  16438. height: math.unit(120, "meters")
  16439. },
  16440. {
  16441. name: "Bigger Macro",
  16442. height: math.unit(350, "meters")
  16443. },
  16444. {
  16445. name: "Megamacro",
  16446. height: math.unit(8, "km"),
  16447. default: true
  16448. },
  16449. {
  16450. name: "Continental",
  16451. height: math.unit(4550, "km")
  16452. },
  16453. {
  16454. name: "Planetary",
  16455. height: math.unit(65000, "km")
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16461. {
  16462. front: {
  16463. height: math.unit(6, "feet"),
  16464. weight: math.unit(400, "lb"),
  16465. name: "Front",
  16466. image: {
  16467. source: "./media/characters/mac/front.svg",
  16468. extra: 1048 / 987.7,
  16469. bottom: 60 / 1107.6,
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Macro",
  16476. height: math.unit(500, "feet"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16483. {
  16484. front: {
  16485. height: math.unit(5 + 2 / 12, "feet"),
  16486. weight: math.unit(190, "lb"),
  16487. name: "Front",
  16488. image: {
  16489. source: "./media/characters/bari/front.svg",
  16490. extra: 3156 / 2880,
  16491. bottom: 0.03
  16492. }
  16493. },
  16494. back: {
  16495. height: math.unit(5 + 2 / 12, "feet"),
  16496. weight: math.unit(190, "lb"),
  16497. name: "Back",
  16498. image: {
  16499. source: "./media/characters/bari/back.svg",
  16500. extra: 3260 / 2834,
  16501. bottom: 0.025
  16502. }
  16503. },
  16504. frontPlush: {
  16505. height: math.unit(5 + 2 / 12, "feet"),
  16506. weight: math.unit(190, "lb"),
  16507. name: "Front (Plush)",
  16508. image: {
  16509. source: "./media/characters/bari/front-plush.svg",
  16510. extra: 1112 / 1061,
  16511. bottom: 0.002
  16512. }
  16513. },
  16514. },
  16515. [
  16516. {
  16517. name: "Micro",
  16518. height: math.unit(3, "inches")
  16519. },
  16520. {
  16521. name: "Normal",
  16522. height: math.unit(5 + 2 / 12, "feet"),
  16523. default: true
  16524. },
  16525. {
  16526. name: "Macro",
  16527. height: math.unit(20, "feet")
  16528. },
  16529. ]
  16530. ))
  16531. characterMakers.push(() => makeCharacter(
  16532. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16533. {
  16534. front: {
  16535. height: math.unit(6 + 1 / 12, "feet"),
  16536. weight: math.unit(275, "lb"),
  16537. name: "Front",
  16538. image: {
  16539. source: "./media/characters/hunter-misha-raven/front.svg"
  16540. }
  16541. },
  16542. },
  16543. [
  16544. {
  16545. name: "Mortal",
  16546. height: math.unit(6 + 1 / 12, "feet")
  16547. },
  16548. {
  16549. name: "Divine",
  16550. height: math.unit(1.12134e34, "parsecs"),
  16551. default: true
  16552. },
  16553. ]
  16554. ))
  16555. characterMakers.push(() => makeCharacter(
  16556. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16557. {
  16558. front: {
  16559. height: math.unit(6 + 3 / 12, "feet"),
  16560. weight: math.unit(220, "lb"),
  16561. name: "Front",
  16562. image: {
  16563. source: "./media/characters/max-calore/front.svg",
  16564. extra: 1700 / 1648,
  16565. bottom: 0.01
  16566. }
  16567. },
  16568. back: {
  16569. height: math.unit(6 + 3 / 12, "feet"),
  16570. weight: math.unit(220, "lb"),
  16571. name: "Back",
  16572. image: {
  16573. source: "./media/characters/max-calore/back.svg",
  16574. extra: 1700 / 1648,
  16575. bottom: 0.01
  16576. }
  16577. },
  16578. },
  16579. [
  16580. {
  16581. name: "Normal",
  16582. height: math.unit(6 + 3 / 12, "feet"),
  16583. default: true
  16584. },
  16585. ]
  16586. ))
  16587. characterMakers.push(() => makeCharacter(
  16588. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16589. {
  16590. side: {
  16591. height: math.unit(2 + 8 / 12, "feet"),
  16592. weight: math.unit(99, "lb"),
  16593. name: "Side",
  16594. image: {
  16595. source: "./media/characters/aspen/side.svg",
  16596. extra: 152 / 138,
  16597. bottom: 0.032
  16598. }
  16599. },
  16600. },
  16601. [
  16602. {
  16603. name: "Normal",
  16604. height: math.unit(2 + 8 / 12, "feet"),
  16605. default: true
  16606. },
  16607. ]
  16608. ))
  16609. characterMakers.push(() => makeCharacter(
  16610. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16611. {
  16612. side: {
  16613. height: math.unit(3 + 2 / 12, "feet"),
  16614. weight: math.unit(224, "lb"),
  16615. name: "Side",
  16616. image: {
  16617. source: "./media/characters/sheila-feral-wolf/side.svg",
  16618. extra: 179 / 166,
  16619. bottom: 0.03
  16620. }
  16621. },
  16622. },
  16623. [
  16624. {
  16625. name: "Normal",
  16626. height: math.unit(3 + 2 / 12, "feet"),
  16627. default: true
  16628. },
  16629. ]
  16630. ))
  16631. characterMakers.push(() => makeCharacter(
  16632. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16633. {
  16634. side: {
  16635. height: math.unit(1 + 9 / 12, "feet"),
  16636. weight: math.unit(38, "lb"),
  16637. name: "Side",
  16638. image: {
  16639. source: "./media/characters/michelle/side.svg",
  16640. extra: 147 / 136.7,
  16641. bottom: 0.03
  16642. }
  16643. },
  16644. },
  16645. [
  16646. {
  16647. name: "Normal",
  16648. height: math.unit(1 + 9 / 12, "feet"),
  16649. default: true
  16650. },
  16651. ]
  16652. ))
  16653. characterMakers.push(() => makeCharacter(
  16654. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16655. {
  16656. front: {
  16657. height: math.unit(1 + 1 / 12, "feet"),
  16658. weight: math.unit(18, "lb"),
  16659. name: "Front",
  16660. image: {
  16661. source: "./media/characters/nino/front.svg"
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(1 + 1 / 12, "feet"),
  16669. default: true
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16675. {
  16676. front: {
  16677. height: math.unit(1, "feet"),
  16678. weight: math.unit(16, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/viola/front.svg"
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(1, "feet"),
  16689. default: true
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(6 + 5 / 12, "feet"),
  16698. weight: math.unit(580, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/atlas/front.svg",
  16702. extra: 298.5 / 290,
  16703. bottom: 0.015
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Normal",
  16710. height: math.unit(6 + 5 / 12, "feet"),
  16711. default: true
  16712. },
  16713. ]
  16714. ))
  16715. characterMakers.push(() => makeCharacter(
  16716. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16717. {
  16718. side: {
  16719. height: math.unit(1 + 10 / 12, "feet"),
  16720. weight: math.unit(25, "lb"),
  16721. name: "Side",
  16722. image: {
  16723. source: "./media/characters/davy/side.svg",
  16724. extra: 200 / 170,
  16725. bottom: 0.01
  16726. }
  16727. },
  16728. },
  16729. [
  16730. {
  16731. name: "Normal",
  16732. height: math.unit(1 + 10 / 12, "feet"),
  16733. default: true
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16739. {
  16740. side: {
  16741. height: math.unit(4 + 8 / 12, "feet"),
  16742. weight: math.unit(166, "lb"),
  16743. name: "Side",
  16744. image: {
  16745. source: "./media/characters/fiona/side.svg",
  16746. extra: 232 / 220,
  16747. bottom: 0.03
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(4 + 8 / 12, "feet"),
  16755. default: true
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16761. {
  16762. front: {
  16763. height: math.unit(2, "feet"),
  16764. weight: math.unit(62, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/lyla/front.svg",
  16768. bottom: 0.1
  16769. }
  16770. },
  16771. },
  16772. [
  16773. {
  16774. name: "Normal",
  16775. height: math.unit(2, "feet"),
  16776. default: true
  16777. },
  16778. ]
  16779. ))
  16780. characterMakers.push(() => makeCharacter(
  16781. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16782. {
  16783. side: {
  16784. height: math.unit(1.8, "feet"),
  16785. weight: math.unit(44, "lb"),
  16786. name: "Side",
  16787. image: {
  16788. source: "./media/characters/perseus/side.svg",
  16789. bottom: 0.21
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Normal",
  16796. height: math.unit(1.8, "feet"),
  16797. default: true
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16803. {
  16804. side: {
  16805. height: math.unit(4 + 2 / 12, "feet"),
  16806. weight: math.unit(20, "lb"),
  16807. name: "Side",
  16808. image: {
  16809. source: "./media/characters/remus/side.svg"
  16810. }
  16811. },
  16812. },
  16813. [
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(4 + 2 / 12, "feet"),
  16817. default: true
  16818. },
  16819. ]
  16820. ))
  16821. characterMakers.push(() => makeCharacter(
  16822. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16823. {
  16824. front: {
  16825. height: math.unit(4 + 11 / 12, "feet"),
  16826. weight: math.unit(114, "lb"),
  16827. name: "Front",
  16828. image: {
  16829. source: "./media/characters/raf/front.svg",
  16830. bottom: 20.5 / 1863
  16831. }
  16832. },
  16833. side: {
  16834. height: math.unit(4 + 11 / 12, "feet"),
  16835. weight: math.unit(114, "lb"),
  16836. name: "Side",
  16837. image: {
  16838. source: "./media/characters/raf/side.svg",
  16839. bottom: 22 / 1822
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Micro",
  16846. height: math.unit(2, "inches")
  16847. },
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(4 + 11 / 12, "feet"),
  16851. default: true
  16852. },
  16853. {
  16854. name: "Macro",
  16855. height: math.unit(70, "feet")
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16861. {
  16862. front: {
  16863. height: math.unit(1.5, "meters"),
  16864. weight: math.unit(68, "kg"),
  16865. name: "Front",
  16866. image: {
  16867. source: "./media/characters/liam-einarr/front.svg",
  16868. extra: 2822 / 2666
  16869. }
  16870. },
  16871. back: {
  16872. height: math.unit(1.5, "meters"),
  16873. weight: math.unit(68, "kg"),
  16874. name: "Back",
  16875. image: {
  16876. source: "./media/characters/liam-einarr/back.svg",
  16877. extra: 2822 / 2666,
  16878. bottom: 0.015
  16879. }
  16880. },
  16881. },
  16882. [
  16883. {
  16884. name: "Normal",
  16885. height: math.unit(1.5, "meters"),
  16886. default: true
  16887. },
  16888. {
  16889. name: "Macro",
  16890. height: math.unit(150, "meters")
  16891. },
  16892. {
  16893. name: "Megamacro",
  16894. height: math.unit(35, "km")
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16900. {
  16901. front: {
  16902. height: math.unit(6, "feet"),
  16903. weight: math.unit(75, "kg"),
  16904. name: "Front",
  16905. image: {
  16906. source: "./media/characters/linda/front.svg",
  16907. extra: 930 / 874,
  16908. bottom: 0.004
  16909. }
  16910. },
  16911. },
  16912. [
  16913. {
  16914. name: "Normal",
  16915. height: math.unit(6, "feet"),
  16916. default: true
  16917. },
  16918. ]
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16922. {
  16923. front: {
  16924. height: math.unit(6 + 8 / 12, "feet"),
  16925. weight: math.unit(220, "lb"),
  16926. name: "Front",
  16927. image: {
  16928. source: "./media/characters/caylex/front.svg",
  16929. extra: 821 / 772,
  16930. bottom: 0.07
  16931. }
  16932. },
  16933. back: {
  16934. height: math.unit(6 + 8 / 12, "feet"),
  16935. weight: math.unit(220, "lb"),
  16936. name: "Back",
  16937. image: {
  16938. source: "./media/characters/caylex/back.svg",
  16939. extra: 821 / 772,
  16940. bottom: 0.022
  16941. }
  16942. },
  16943. hand: {
  16944. height: math.unit(1.25, "feet"),
  16945. name: "Hand",
  16946. image: {
  16947. source: "./media/characters/caylex/hand.svg"
  16948. }
  16949. },
  16950. foot: {
  16951. height: math.unit(1.6, "feet"),
  16952. name: "Foot",
  16953. image: {
  16954. source: "./media/characters/caylex/foot.svg"
  16955. }
  16956. },
  16957. armored: {
  16958. height: math.unit(6 + 8 / 12, "feet"),
  16959. weight: math.unit(250, "lb"),
  16960. name: "Armored",
  16961. image: {
  16962. source: "./media/characters/caylex/armored.svg",
  16963. extra: 1420 / 1310,
  16964. bottom: 0.045
  16965. }
  16966. },
  16967. },
  16968. [
  16969. {
  16970. name: "Normal",
  16971. height: math.unit(6 + 8 / 12, "feet"),
  16972. default: true
  16973. },
  16974. {
  16975. name: "Normal+",
  16976. height: math.unit(12, "feet")
  16977. },
  16978. ]
  16979. ))
  16980. characterMakers.push(() => makeCharacter(
  16981. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16982. {
  16983. front: {
  16984. height: math.unit(7 + 6 / 12, "feet"),
  16985. weight: math.unit(288, "lb"),
  16986. name: "Front",
  16987. image: {
  16988. source: "./media/characters/alana/front.svg",
  16989. extra: 679 / 653,
  16990. bottom: 22.5 / 701
  16991. }
  16992. },
  16993. },
  16994. [
  16995. {
  16996. name: "Normal",
  16997. height: math.unit(7 + 6 / 12, "feet")
  16998. },
  16999. {
  17000. name: "Large",
  17001. height: math.unit(50, "feet")
  17002. },
  17003. {
  17004. name: "Macro",
  17005. height: math.unit(100, "feet"),
  17006. default: true
  17007. },
  17008. {
  17009. name: "Macro+",
  17010. height: math.unit(200, "feet")
  17011. },
  17012. ]
  17013. ))
  17014. characterMakers.push(() => makeCharacter(
  17015. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17016. {
  17017. front: {
  17018. height: math.unit(6 + 1 / 12, "feet"),
  17019. weight: math.unit(210, "lb"),
  17020. name: "Front",
  17021. image: {
  17022. source: "./media/characters/hasani/front.svg",
  17023. extra: 244 / 232,
  17024. bottom: 0.01
  17025. }
  17026. },
  17027. back: {
  17028. height: math.unit(6 + 1 / 12, "feet"),
  17029. weight: math.unit(210, "lb"),
  17030. name: "Back",
  17031. image: {
  17032. source: "./media/characters/hasani/back.svg",
  17033. extra: 244 / 232,
  17034. bottom: 0.01
  17035. }
  17036. },
  17037. },
  17038. [
  17039. {
  17040. name: "Normal",
  17041. height: math.unit(6 + 1 / 12, "feet")
  17042. },
  17043. {
  17044. name: "Macro",
  17045. height: math.unit(175, "feet"),
  17046. default: true
  17047. },
  17048. ]
  17049. ))
  17050. characterMakers.push(() => makeCharacter(
  17051. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17052. {
  17053. front: {
  17054. height: math.unit(1.82, "meters"),
  17055. weight: math.unit(140, "lb"),
  17056. name: "Front",
  17057. image: {
  17058. source: "./media/characters/nita/front.svg",
  17059. extra: 2473 / 2363,
  17060. bottom: 0.01
  17061. }
  17062. },
  17063. },
  17064. [
  17065. {
  17066. name: "Normal",
  17067. height: math.unit(1.82, "m")
  17068. },
  17069. {
  17070. name: "Macro",
  17071. height: math.unit(300, "m")
  17072. },
  17073. {
  17074. name: "Mistake Canon",
  17075. height: math.unit(0.5, "miles"),
  17076. default: true
  17077. },
  17078. {
  17079. name: "Big Mistake",
  17080. height: math.unit(13, "miles")
  17081. },
  17082. {
  17083. name: "Playing God",
  17084. height: math.unit(2450, "miles")
  17085. },
  17086. ]
  17087. ))
  17088. characterMakers.push(() => makeCharacter(
  17089. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17090. {
  17091. front: {
  17092. height: math.unit(4, "feet"),
  17093. weight: math.unit(120, "lb"),
  17094. name: "Front",
  17095. image: {
  17096. source: "./media/characters/shiriko/front.svg",
  17097. extra: 195 / 188
  17098. }
  17099. },
  17100. },
  17101. [
  17102. {
  17103. name: "Normal",
  17104. height: math.unit(4, "feet"),
  17105. default: true
  17106. },
  17107. ]
  17108. ))
  17109. characterMakers.push(() => makeCharacter(
  17110. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17111. {
  17112. front: {
  17113. height: math.unit(6, "feet"),
  17114. name: "front",
  17115. image: {
  17116. source: "./media/characters/deja/front.svg",
  17117. extra: 926 / 840,
  17118. bottom: 0.07
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Planck Length",
  17125. height: math.unit(1.6e-35, "meters")
  17126. },
  17127. {
  17128. name: "Normal",
  17129. height: math.unit(30.48, "meters"),
  17130. default: true
  17131. },
  17132. {
  17133. name: "Universal",
  17134. height: math.unit(8.8e26, "meters")
  17135. },
  17136. ]
  17137. ))
  17138. characterMakers.push(() => makeCharacter(
  17139. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17140. {
  17141. side: {
  17142. height: math.unit(8, "feet"),
  17143. weight: math.unit(6300, "lb"),
  17144. name: "Side",
  17145. image: {
  17146. source: "./media/characters/anima/side.svg",
  17147. bottom: 0.035
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(8, "feet"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(8, "feet"),
  17164. weight: math.unit(350, "lb"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/bianca/front.svg",
  17168. extra: 234 / 225,
  17169. bottom: 0.03
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(8, "feet"),
  17177. default: true
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17183. {
  17184. front: {
  17185. height: math.unit(6, "feet"),
  17186. weight: math.unit(150, "lb"),
  17187. name: "Front",
  17188. image: {
  17189. source: "./media/characters/adinia/front.svg",
  17190. extra: 1845 / 1672,
  17191. bottom: 0.02
  17192. }
  17193. },
  17194. back: {
  17195. height: math.unit(6, "feet"),
  17196. weight: math.unit(150, "lb"),
  17197. name: "Back",
  17198. image: {
  17199. source: "./media/characters/adinia/back.svg",
  17200. extra: 1845 / 1672,
  17201. bottom: 0.002
  17202. }
  17203. },
  17204. },
  17205. [
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(11 + 5 / 12, "feet"),
  17209. default: true
  17210. },
  17211. ]
  17212. ))
  17213. characterMakers.push(() => makeCharacter(
  17214. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17215. {
  17216. front: {
  17217. height: math.unit(3, "meters"),
  17218. weight: math.unit(200, "kg"),
  17219. name: "Front",
  17220. image: {
  17221. source: "./media/characters/lykasa/front.svg",
  17222. extra: 1076 / 976,
  17223. bottom: 0.06
  17224. }
  17225. },
  17226. },
  17227. [
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(3, "meters")
  17231. },
  17232. {
  17233. name: "Kaiju",
  17234. height: math.unit(120, "meters"),
  17235. default: true
  17236. },
  17237. {
  17238. name: "Mega Kaiju",
  17239. height: math.unit(240, "km")
  17240. },
  17241. {
  17242. name: "Giga Kaiju",
  17243. height: math.unit(400, "megameters")
  17244. },
  17245. {
  17246. name: "Tera Kaiju",
  17247. height: math.unit(800, "gigameters")
  17248. },
  17249. {
  17250. name: "Kaiju Dragon Goddess",
  17251. height: math.unit(26, "zettaparsecs")
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17257. {
  17258. side: {
  17259. height: math.unit(283 / 124 * 6, "feet"),
  17260. weight: math.unit(35000, "lb"),
  17261. name: "Side",
  17262. image: {
  17263. source: "./media/characters/malfaren/side.svg",
  17264. extra: 2500 / 1010,
  17265. bottom: 0.01
  17266. }
  17267. },
  17268. front: {
  17269. height: math.unit(22.36, "feet"),
  17270. weight: math.unit(35000, "lb"),
  17271. name: "Front",
  17272. image: {
  17273. source: "./media/characters/malfaren/front.svg",
  17274. extra: 1631 / 1476,
  17275. bottom: 0.01
  17276. }
  17277. },
  17278. maw: {
  17279. height: math.unit(6.9, "feet"),
  17280. name: "Maw",
  17281. image: {
  17282. source: "./media/characters/malfaren/maw.svg"
  17283. }
  17284. },
  17285. },
  17286. [
  17287. {
  17288. name: "Big",
  17289. height: math.unit(283 / 162 * 6, "feet"),
  17290. },
  17291. {
  17292. name: "Bigger",
  17293. height: math.unit(283 / 124 * 6, "feet")
  17294. },
  17295. {
  17296. name: "Massive",
  17297. height: math.unit(283 / 92 * 6, "feet"),
  17298. default: true
  17299. },
  17300. {
  17301. name: "👀💦",
  17302. height: math.unit(283 / 73 * 6, "feet"),
  17303. },
  17304. ]
  17305. ))
  17306. characterMakers.push(() => makeCharacter(
  17307. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17308. {
  17309. front: {
  17310. height: math.unit(1.7, "m"),
  17311. weight: math.unit(70, "kg"),
  17312. name: "Front",
  17313. image: {
  17314. source: "./media/characters/kernel/front.svg",
  17315. extra: 222 / 210,
  17316. bottom: 0.007
  17317. }
  17318. },
  17319. },
  17320. [
  17321. {
  17322. name: "Nano",
  17323. height: math.unit(17, "micrometers")
  17324. },
  17325. {
  17326. name: "Micro",
  17327. height: math.unit(1.7, "mm")
  17328. },
  17329. {
  17330. name: "Small",
  17331. height: math.unit(1.7, "cm")
  17332. },
  17333. {
  17334. name: "Normal",
  17335. height: math.unit(1.7, "m"),
  17336. default: true
  17337. },
  17338. ]
  17339. ))
  17340. characterMakers.push(() => makeCharacter(
  17341. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17342. {
  17343. front: {
  17344. height: math.unit(1.75, "meters"),
  17345. weight: math.unit(65, "kg"),
  17346. name: "Front",
  17347. image: {
  17348. source: "./media/characters/jayne-folest/front.svg",
  17349. extra: 2115 / 2007,
  17350. bottom: 0.02
  17351. }
  17352. },
  17353. back: {
  17354. height: math.unit(1.75, "meters"),
  17355. weight: math.unit(65, "kg"),
  17356. name: "Back",
  17357. image: {
  17358. source: "./media/characters/jayne-folest/back.svg",
  17359. extra: 2115 / 2007,
  17360. bottom: 0.005
  17361. }
  17362. },
  17363. frontClothed: {
  17364. height: math.unit(1.75, "meters"),
  17365. weight: math.unit(65, "kg"),
  17366. name: "Front (Clothed)",
  17367. image: {
  17368. source: "./media/characters/jayne-folest/front-clothed.svg",
  17369. extra: 2115 / 2007,
  17370. bottom: 0.035
  17371. }
  17372. },
  17373. hand: {
  17374. height: math.unit(1 / 1.260, "feet"),
  17375. name: "Hand",
  17376. image: {
  17377. source: "./media/characters/jayne-folest/hand.svg"
  17378. }
  17379. },
  17380. foot: {
  17381. height: math.unit(1 / 0.918, "feet"),
  17382. name: "Foot",
  17383. image: {
  17384. source: "./media/characters/jayne-folest/foot.svg"
  17385. }
  17386. },
  17387. },
  17388. [
  17389. {
  17390. name: "Micro",
  17391. height: math.unit(4, "cm")
  17392. },
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(1.75, "meters")
  17396. },
  17397. {
  17398. name: "Macro",
  17399. height: math.unit(47.5, "meters"),
  17400. default: true
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17406. {
  17407. front: {
  17408. height: math.unit(180, "cm"),
  17409. weight: math.unit(70, "kg"),
  17410. name: "Front",
  17411. image: {
  17412. source: "./media/characters/algier/front.svg",
  17413. extra: 596 / 572,
  17414. bottom: 0.04
  17415. }
  17416. },
  17417. back: {
  17418. height: math.unit(180, "cm"),
  17419. weight: math.unit(70, "kg"),
  17420. name: "Back",
  17421. image: {
  17422. source: "./media/characters/algier/back.svg",
  17423. extra: 596 / 572,
  17424. bottom: 0.025
  17425. }
  17426. },
  17427. frontdressed: {
  17428. height: math.unit(180, "cm"),
  17429. weight: math.unit(150, "kg"),
  17430. name: "Front-dressed",
  17431. image: {
  17432. source: "./media/characters/algier/front-dressed.svg",
  17433. extra: 596 / 572,
  17434. bottom: 0.038
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Micro",
  17441. height: math.unit(5, "cm")
  17442. },
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(180, "cm"),
  17446. default: true
  17447. },
  17448. {
  17449. name: "Macro",
  17450. height: math.unit(64, "m")
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17456. {
  17457. upright: {
  17458. height: math.unit(7, "feet"),
  17459. weight: math.unit(300, "lb"),
  17460. name: "Upright",
  17461. image: {
  17462. source: "./media/characters/pretzel/upright.svg",
  17463. extra: 534 / 522,
  17464. bottom: 0.065
  17465. }
  17466. },
  17467. sprawling: {
  17468. height: math.unit(3.75, "feet"),
  17469. weight: math.unit(300, "lb"),
  17470. name: "Sprawling",
  17471. image: {
  17472. source: "./media/characters/pretzel/sprawling.svg",
  17473. extra: 314 / 281,
  17474. bottom: 0.1
  17475. }
  17476. },
  17477. tongue: {
  17478. height: math.unit(2, "feet"),
  17479. name: "Tongue",
  17480. image: {
  17481. source: "./media/characters/pretzel/tongue.svg"
  17482. }
  17483. },
  17484. },
  17485. [
  17486. {
  17487. name: "Normal",
  17488. height: math.unit(7, "feet"),
  17489. default: true
  17490. },
  17491. {
  17492. name: "Oversized",
  17493. height: math.unit(15, "feet")
  17494. },
  17495. {
  17496. name: "Huge",
  17497. height: math.unit(30, "feet")
  17498. },
  17499. {
  17500. name: "Macro",
  17501. height: math.unit(250, "feet")
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17507. {
  17508. sideFront: {
  17509. height: math.unit(5 + 2 / 12, "feet"),
  17510. weight: math.unit(120, "lb"),
  17511. name: "Front Side",
  17512. image: {
  17513. source: "./media/characters/roxi/side-front.svg",
  17514. extra: 2924 / 2717,
  17515. bottom: 0.08
  17516. }
  17517. },
  17518. sideBack: {
  17519. height: math.unit(5 + 2 / 12, "feet"),
  17520. weight: math.unit(120, "lb"),
  17521. name: "Back Side",
  17522. image: {
  17523. source: "./media/characters/roxi/side-back.svg",
  17524. extra: 2904 / 2693,
  17525. bottom: 0.06
  17526. }
  17527. },
  17528. front: {
  17529. height: math.unit(5 + 2 / 12, "feet"),
  17530. weight: math.unit(120, "lb"),
  17531. name: "Front",
  17532. image: {
  17533. source: "./media/characters/roxi/front.svg",
  17534. extra: 2028 / 1907,
  17535. bottom: 0.01
  17536. }
  17537. },
  17538. frontAlt: {
  17539. height: math.unit(5 + 2 / 12, "feet"),
  17540. weight: math.unit(120, "lb"),
  17541. name: "Front (Alt)",
  17542. image: {
  17543. source: "./media/characters/roxi/front-alt.svg",
  17544. extra: 1828 / 1798,
  17545. bottom: 0.01
  17546. }
  17547. },
  17548. sitting: {
  17549. height: math.unit(2.8, "feet"),
  17550. weight: math.unit(120, "lb"),
  17551. name: "Sitting",
  17552. image: {
  17553. source: "./media/characters/roxi/sitting.svg",
  17554. extra: 2660 / 2462,
  17555. bottom: 0.1
  17556. }
  17557. },
  17558. },
  17559. [
  17560. {
  17561. name: "Normal",
  17562. height: math.unit(5 + 2 / 12, "feet"),
  17563. default: true
  17564. },
  17565. ]
  17566. ))
  17567. characterMakers.push(() => makeCharacter(
  17568. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17569. {
  17570. side: {
  17571. height: math.unit(55, "feet"),
  17572. weight: math.unit(153, "tons"),
  17573. name: "Side",
  17574. image: {
  17575. source: "./media/characters/shadow/side.svg",
  17576. extra: 701 / 628,
  17577. bottom: 0.02
  17578. }
  17579. },
  17580. flying: {
  17581. height: math.unit(145, "feet"),
  17582. weight: math.unit(153, "tons"),
  17583. name: "Flying",
  17584. image: {
  17585. source: "./media/characters/shadow/flying.svg"
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Normal",
  17592. height: math.unit(55, "feet"),
  17593. default: true
  17594. },
  17595. ]
  17596. ))
  17597. characterMakers.push(() => makeCharacter(
  17598. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17599. {
  17600. front: {
  17601. height: math.unit(6, "feet"),
  17602. weight: math.unit(200, "lb"),
  17603. name: "Front",
  17604. image: {
  17605. source: "./media/characters/marcie/front.svg",
  17606. extra: 960 / 876,
  17607. bottom: 58 / 1017.87
  17608. }
  17609. },
  17610. },
  17611. [
  17612. {
  17613. name: "Macro",
  17614. height: math.unit(1, "mile"),
  17615. default: true
  17616. },
  17617. ]
  17618. ))
  17619. characterMakers.push(() => makeCharacter(
  17620. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17621. {
  17622. front: {
  17623. height: math.unit(7, "feet"),
  17624. weight: math.unit(200, "lb"),
  17625. name: "Front",
  17626. image: {
  17627. source: "./media/characters/kachina/front.svg",
  17628. extra: 1290.68 / 1119,
  17629. bottom: 36.5 / 1327.18
  17630. }
  17631. },
  17632. },
  17633. [
  17634. {
  17635. name: "Normal",
  17636. height: math.unit(7, "feet"),
  17637. default: true
  17638. },
  17639. ]
  17640. ))
  17641. characterMakers.push(() => makeCharacter(
  17642. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17643. {
  17644. looking: {
  17645. height: math.unit(2, "meters"),
  17646. weight: math.unit(300, "kg"),
  17647. name: "Looking",
  17648. image: {
  17649. source: "./media/characters/kash/looking.svg",
  17650. extra: 474 / 344,
  17651. bottom: 0.03
  17652. }
  17653. },
  17654. side: {
  17655. height: math.unit(2, "meters"),
  17656. weight: math.unit(300, "kg"),
  17657. name: "Side",
  17658. image: {
  17659. source: "./media/characters/kash/side.svg",
  17660. extra: 302 / 251,
  17661. bottom: 0.03
  17662. }
  17663. },
  17664. front: {
  17665. height: math.unit(2, "meters"),
  17666. weight: math.unit(300, "kg"),
  17667. name: "Front",
  17668. image: {
  17669. source: "./media/characters/kash/front.svg",
  17670. extra: 495 / 360,
  17671. bottom: 0.015
  17672. }
  17673. },
  17674. },
  17675. [
  17676. {
  17677. name: "Normal",
  17678. height: math.unit(2, "meters"),
  17679. default: true
  17680. },
  17681. {
  17682. name: "Big",
  17683. height: math.unit(3, "meters")
  17684. },
  17685. {
  17686. name: "Large",
  17687. height: math.unit(5, "meters")
  17688. },
  17689. ]
  17690. ))
  17691. characterMakers.push(() => makeCharacter(
  17692. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17693. {
  17694. feeding: {
  17695. height: math.unit(6.7, "feet"),
  17696. weight: math.unit(350, "lb"),
  17697. name: "Feeding",
  17698. image: {
  17699. source: "./media/characters/lalim/feeding.svg",
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Normal",
  17706. height: math.unit(6.7, "feet"),
  17707. default: true
  17708. },
  17709. ]
  17710. ))
  17711. characterMakers.push(() => makeCharacter(
  17712. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17713. {
  17714. front: {
  17715. height: math.unit(9.5, "feet"),
  17716. weight: math.unit(600, "lb"),
  17717. name: "Front",
  17718. image: {
  17719. source: "./media/characters/de'vout/front.svg",
  17720. extra: 1443 / 1328,
  17721. bottom: 0.025
  17722. }
  17723. },
  17724. back: {
  17725. height: math.unit(9.5, "feet"),
  17726. weight: math.unit(600, "lb"),
  17727. name: "Back",
  17728. image: {
  17729. source: "./media/characters/de'vout/back.svg",
  17730. extra: 1443 / 1328
  17731. }
  17732. },
  17733. frontDressed: {
  17734. height: math.unit(9.5, "feet"),
  17735. weight: math.unit(600, "lb"),
  17736. name: "Front (Dressed",
  17737. image: {
  17738. source: "./media/characters/de'vout/front-dressed.svg",
  17739. extra: 1443 / 1328,
  17740. bottom: 0.025
  17741. }
  17742. },
  17743. backDressed: {
  17744. height: math.unit(9.5, "feet"),
  17745. weight: math.unit(600, "lb"),
  17746. name: "Back (Dressed",
  17747. image: {
  17748. source: "./media/characters/de'vout/back-dressed.svg",
  17749. extra: 1443 / 1328
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(9.5, "feet"),
  17757. default: true
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17763. {
  17764. front: {
  17765. height: math.unit(8, "feet"),
  17766. weight: math.unit(225, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/talana/front.svg",
  17770. extra: 1410 / 1300,
  17771. bottom: 0.015
  17772. }
  17773. },
  17774. frontDressed: {
  17775. height: math.unit(8, "feet"),
  17776. weight: math.unit(225, "lb"),
  17777. name: "Front (Dressed",
  17778. image: {
  17779. source: "./media/characters/talana/front-dressed.svg",
  17780. extra: 1410 / 1300,
  17781. bottom: 0.015
  17782. }
  17783. },
  17784. },
  17785. [
  17786. {
  17787. name: "Normal",
  17788. height: math.unit(8, "feet"),
  17789. default: true
  17790. },
  17791. ]
  17792. ))
  17793. characterMakers.push(() => makeCharacter(
  17794. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17795. {
  17796. side: {
  17797. height: math.unit(7.2, "feet"),
  17798. weight: math.unit(150, "lb"),
  17799. name: "Side",
  17800. image: {
  17801. source: "./media/characters/xeauvok/side.svg",
  17802. extra: 1975 / 1523,
  17803. bottom: 0.07
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Normal",
  17810. height: math.unit(7.2, "feet"),
  17811. default: true
  17812. },
  17813. ]
  17814. ))
  17815. characterMakers.push(() => makeCharacter(
  17816. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17817. {
  17818. side: {
  17819. height: math.unit(10, "feet"),
  17820. weight: math.unit(900, "kg"),
  17821. name: "Side",
  17822. image: {
  17823. source: "./media/characters/zara/side.svg",
  17824. extra: 504 / 498
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(10, "feet"),
  17832. default: true
  17833. },
  17834. ]
  17835. ))
  17836. characterMakers.push(() => makeCharacter(
  17837. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17838. {
  17839. side: {
  17840. height: math.unit(6, "feet"),
  17841. weight: math.unit(150, "lb"),
  17842. name: "Side",
  17843. image: {
  17844. source: "./media/characters/richard-dragon/side.svg",
  17845. extra: 845 / 340,
  17846. bottom: 0.017
  17847. }
  17848. },
  17849. maw: {
  17850. height: math.unit(2.97, "feet"),
  17851. name: "Maw",
  17852. image: {
  17853. source: "./media/characters/richard-dragon/maw.svg"
  17854. }
  17855. },
  17856. },
  17857. [
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17862. {
  17863. front: {
  17864. height: math.unit(4, "feet"),
  17865. weight: math.unit(100, "lb"),
  17866. name: "Front",
  17867. image: {
  17868. source: "./media/characters/richard-smeargle/front.svg",
  17869. extra: 2952 / 2820,
  17870. bottom: 0.028
  17871. }
  17872. },
  17873. },
  17874. [
  17875. {
  17876. name: "Normal",
  17877. height: math.unit(4, "feet"),
  17878. default: true
  17879. },
  17880. {
  17881. name: "Dynamax",
  17882. height: math.unit(20, "meters")
  17883. },
  17884. ]
  17885. ))
  17886. characterMakers.push(() => makeCharacter(
  17887. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17888. {
  17889. front: {
  17890. height: math.unit(6, "feet"),
  17891. weight: math.unit(110, "lb"),
  17892. name: "Front",
  17893. image: {
  17894. source: "./media/characters/klay/front.svg",
  17895. extra: 962 / 883,
  17896. bottom: 0.04
  17897. }
  17898. },
  17899. back: {
  17900. height: math.unit(6, "feet"),
  17901. weight: math.unit(110, "lb"),
  17902. name: "Back",
  17903. image: {
  17904. source: "./media/characters/klay/back.svg",
  17905. extra: 962 / 883
  17906. }
  17907. },
  17908. beans: {
  17909. height: math.unit(1.15, "feet"),
  17910. name: "Beans",
  17911. image: {
  17912. source: "./media/characters/klay/beans.svg"
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Micro",
  17919. height: math.unit(6, "inches")
  17920. },
  17921. {
  17922. name: "Mini",
  17923. height: math.unit(3, "feet")
  17924. },
  17925. {
  17926. name: "Normal",
  17927. height: math.unit(6, "feet"),
  17928. default: true
  17929. },
  17930. {
  17931. name: "Big",
  17932. height: math.unit(25, "feet")
  17933. },
  17934. {
  17935. name: "Macro",
  17936. height: math.unit(100, "feet")
  17937. },
  17938. {
  17939. name: "Megamacro",
  17940. height: math.unit(400, "feet")
  17941. },
  17942. ]
  17943. ))
  17944. characterMakers.push(() => makeCharacter(
  17945. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17946. {
  17947. front: {
  17948. height: math.unit(6, "feet"),
  17949. weight: math.unit(160, "lb"),
  17950. name: "Front",
  17951. image: {
  17952. source: "./media/characters/marcus/front.svg",
  17953. extra: 734 / 676,
  17954. bottom: 0.03
  17955. }
  17956. },
  17957. },
  17958. [
  17959. {
  17960. name: "Little",
  17961. height: math.unit(6, "feet")
  17962. },
  17963. {
  17964. name: "Normal",
  17965. height: math.unit(110, "feet"),
  17966. default: true
  17967. },
  17968. {
  17969. name: "Macro",
  17970. height: math.unit(250, "feet")
  17971. },
  17972. {
  17973. name: "Megamacro",
  17974. height: math.unit(1000, "feet")
  17975. },
  17976. ]
  17977. ))
  17978. characterMakers.push(() => makeCharacter(
  17979. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17980. {
  17981. front: {
  17982. height: math.unit(7, "feet"),
  17983. weight: math.unit(275, "lb"),
  17984. name: "Front",
  17985. image: {
  17986. source: "./media/characters/claude-delroute/front.svg",
  17987. extra: 230 / 214,
  17988. bottom: 0.007
  17989. }
  17990. },
  17991. side: {
  17992. height: math.unit(7, "feet"),
  17993. weight: math.unit(275, "lb"),
  17994. name: "Side",
  17995. image: {
  17996. source: "./media/characters/claude-delroute/side.svg",
  17997. extra: 222 / 214,
  17998. bottom: 0.01
  17999. }
  18000. },
  18001. back: {
  18002. height: math.unit(7, "feet"),
  18003. weight: math.unit(275, "lb"),
  18004. name: "Back",
  18005. image: {
  18006. source: "./media/characters/claude-delroute/back.svg",
  18007. extra: 230 / 214,
  18008. bottom: 0.015
  18009. }
  18010. },
  18011. maw: {
  18012. height: math.unit(0.6407, "meters"),
  18013. name: "Maw",
  18014. image: {
  18015. source: "./media/characters/claude-delroute/maw.svg"
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Normal",
  18022. height: math.unit(7, "feet"),
  18023. default: true
  18024. },
  18025. {
  18026. name: "Lorge",
  18027. height: math.unit(20, "feet")
  18028. },
  18029. ]
  18030. ))
  18031. characterMakers.push(() => makeCharacter(
  18032. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18033. {
  18034. front: {
  18035. height: math.unit(8 + 4 / 12, "feet"),
  18036. weight: math.unit(600, "lb"),
  18037. name: "Front",
  18038. image: {
  18039. source: "./media/characters/dragonien/front.svg",
  18040. extra: 100 / 94,
  18041. bottom: 3.3 / 103.3445
  18042. }
  18043. },
  18044. back: {
  18045. height: math.unit(8 + 4 / 12, "feet"),
  18046. weight: math.unit(600, "lb"),
  18047. name: "Back",
  18048. image: {
  18049. source: "./media/characters/dragonien/back.svg",
  18050. extra: 776 / 746,
  18051. bottom: 6.4 / 782.0616
  18052. }
  18053. },
  18054. foot: {
  18055. height: math.unit(1.54, "feet"),
  18056. name: "Foot",
  18057. image: {
  18058. source: "./media/characters/dragonien/foot.svg",
  18059. }
  18060. },
  18061. },
  18062. [
  18063. {
  18064. name: "Normal",
  18065. height: math.unit(8 + 4 / 12, "feet"),
  18066. default: true
  18067. },
  18068. {
  18069. name: "Macro",
  18070. height: math.unit(200, "feet")
  18071. },
  18072. {
  18073. name: "Megamacro",
  18074. height: math.unit(1, "mile")
  18075. },
  18076. {
  18077. name: "Gigamacro",
  18078. height: math.unit(1000, "miles")
  18079. },
  18080. ]
  18081. ))
  18082. characterMakers.push(() => makeCharacter(
  18083. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18084. {
  18085. front: {
  18086. height: math.unit(5 + 2 / 12, "feet"),
  18087. weight: math.unit(110, "lb"),
  18088. name: "Front",
  18089. image: {
  18090. source: "./media/characters/desta/front.svg",
  18091. extra: 767 / 726,
  18092. bottom: 11.7 / 779
  18093. }
  18094. },
  18095. back: {
  18096. height: math.unit(5 + 2 / 12, "feet"),
  18097. weight: math.unit(110, "lb"),
  18098. name: "Back",
  18099. image: {
  18100. source: "./media/characters/desta/back.svg",
  18101. extra: 777 / 728,
  18102. bottom: 6 / 784
  18103. }
  18104. },
  18105. frontAlt: {
  18106. height: math.unit(5 + 2 / 12, "feet"),
  18107. weight: math.unit(110, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/desta/front-alt.svg",
  18111. extra: 1482 / 1417
  18112. }
  18113. },
  18114. side: {
  18115. height: math.unit(5 + 2 / 12, "feet"),
  18116. weight: math.unit(110, "lb"),
  18117. name: "Side",
  18118. image: {
  18119. source: "./media/characters/desta/side.svg",
  18120. extra: 2579 / 2491,
  18121. bottom: 0.053
  18122. }
  18123. },
  18124. },
  18125. [
  18126. {
  18127. name: "Micro",
  18128. height: math.unit(6, "inches")
  18129. },
  18130. {
  18131. name: "Normal",
  18132. height: math.unit(5 + 2 / 12, "feet"),
  18133. default: true
  18134. },
  18135. {
  18136. name: "Macro",
  18137. height: math.unit(62, "feet")
  18138. },
  18139. {
  18140. name: "Megamacro",
  18141. height: math.unit(1800, "feet")
  18142. },
  18143. ]
  18144. ))
  18145. characterMakers.push(() => makeCharacter(
  18146. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18147. {
  18148. front: {
  18149. height: math.unit(10, "feet"),
  18150. weight: math.unit(700, "lb"),
  18151. name: "Front",
  18152. image: {
  18153. source: "./media/characters/storm-alystar/front.svg",
  18154. extra: 2112 / 1898,
  18155. bottom: 0.034
  18156. }
  18157. },
  18158. },
  18159. [
  18160. {
  18161. name: "Micro",
  18162. height: math.unit(3.5, "inches")
  18163. },
  18164. {
  18165. name: "Normal",
  18166. height: math.unit(10, "feet"),
  18167. default: true
  18168. },
  18169. {
  18170. name: "Macro",
  18171. height: math.unit(400, "feet")
  18172. },
  18173. {
  18174. name: "Deific",
  18175. height: math.unit(60, "miles")
  18176. },
  18177. ]
  18178. ))
  18179. characterMakers.push(() => makeCharacter(
  18180. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18181. {
  18182. front: {
  18183. height: math.unit(2.35, "meters"),
  18184. weight: math.unit(119, "kg"),
  18185. name: "Front",
  18186. image: {
  18187. source: "./media/characters/ilia/front.svg",
  18188. extra: 1285 / 1255,
  18189. bottom: 0.06
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Normal",
  18196. height: math.unit(2.35, "meters")
  18197. },
  18198. {
  18199. name: "Macro",
  18200. height: math.unit(140, "meters"),
  18201. default: true
  18202. },
  18203. {
  18204. name: "Megamacro",
  18205. height: math.unit(100, "miles")
  18206. },
  18207. ]
  18208. ))
  18209. characterMakers.push(() => makeCharacter(
  18210. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18211. {
  18212. front: {
  18213. height: math.unit(6 + 5 / 12, "feet"),
  18214. weight: math.unit(190, "lb"),
  18215. name: "Front",
  18216. image: {
  18217. source: "./media/characters/kingdead/front.svg",
  18218. extra: 1228 / 1177
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Micro",
  18225. height: math.unit(7, "inches")
  18226. },
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(6 + 5 / 12, "feet")
  18230. },
  18231. {
  18232. name: "Macro",
  18233. height: math.unit(150, "feet"),
  18234. default: true
  18235. },
  18236. {
  18237. name: "Megamacro",
  18238. height: math.unit(200, "miles")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(8, "feet"),
  18247. weight: math.unit(600, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/kyrehx/front.svg",
  18251. extra: 1195 / 1095,
  18252. bottom: 0.034
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Micro",
  18259. height: math.unit(2, "inches")
  18260. },
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(8, "feet"),
  18264. default: true
  18265. },
  18266. {
  18267. name: "Macro",
  18268. height: math.unit(255, "feet")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18277. weight: math.unit(184, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/xang/front.svg",
  18281. extra: 845 / 755
  18282. }
  18283. },
  18284. },
  18285. [
  18286. {
  18287. name: "Normal",
  18288. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18289. default: true
  18290. },
  18291. {
  18292. name: "Macro",
  18293. height: math.unit(0.935 * 146, "feet")
  18294. },
  18295. {
  18296. name: "Megamacro",
  18297. height: math.unit(0.935 * 3, "miles")
  18298. },
  18299. ]
  18300. ))
  18301. characterMakers.push(() => makeCharacter(
  18302. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18303. {
  18304. frontDressed: {
  18305. height: math.unit(5 + 7 / 12, "feet"),
  18306. weight: math.unit(140, "lb"),
  18307. name: "Front (Dressed)",
  18308. image: {
  18309. source: "./media/characters/doc-weardno/front-dressed.svg",
  18310. extra: 263 / 234
  18311. }
  18312. },
  18313. backDressed: {
  18314. height: math.unit(5 + 7 / 12, "feet"),
  18315. weight: math.unit(140, "lb"),
  18316. name: "Back (Dressed)",
  18317. image: {
  18318. source: "./media/characters/doc-weardno/back-dressed.svg",
  18319. extra: 266 / 238
  18320. }
  18321. },
  18322. front: {
  18323. height: math.unit(5 + 7 / 12, "feet"),
  18324. weight: math.unit(140, "lb"),
  18325. name: "Front",
  18326. image: {
  18327. source: "./media/characters/doc-weardno/front.svg",
  18328. extra: 254 / 233
  18329. }
  18330. },
  18331. },
  18332. [
  18333. {
  18334. name: "Micro",
  18335. height: math.unit(3, "inches")
  18336. },
  18337. {
  18338. name: "Normal",
  18339. height: math.unit(5 + 7 / 12, "feet"),
  18340. default: true
  18341. },
  18342. {
  18343. name: "Macro",
  18344. height: math.unit(25, "feet")
  18345. },
  18346. {
  18347. name: "Megamacro",
  18348. height: math.unit(2, "miles")
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18354. {
  18355. front: {
  18356. height: math.unit(6 + 2 / 12, "feet"),
  18357. weight: math.unit(153, "lb"),
  18358. name: "Front",
  18359. image: {
  18360. source: "./media/characters/seth-whilst/front.svg",
  18361. bottom: 0.07
  18362. }
  18363. },
  18364. },
  18365. [
  18366. {
  18367. name: "Micro",
  18368. height: math.unit(5, "inches")
  18369. },
  18370. {
  18371. name: "Normal",
  18372. height: math.unit(6 + 2 / 12, "feet"),
  18373. default: true
  18374. },
  18375. ]
  18376. ))
  18377. characterMakers.push(() => makeCharacter(
  18378. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18379. {
  18380. front: {
  18381. height: math.unit(3, "inches"),
  18382. weight: math.unit(8, "grams"),
  18383. name: "Front",
  18384. image: {
  18385. source: "./media/characters/pocket-jabari/front.svg",
  18386. extra: 1024 / 974,
  18387. bottom: 0.039
  18388. }
  18389. },
  18390. },
  18391. [
  18392. {
  18393. name: "Minimicro",
  18394. height: math.unit(8, "mm")
  18395. },
  18396. {
  18397. name: "Micro",
  18398. height: math.unit(3, "inches"),
  18399. default: true
  18400. },
  18401. {
  18402. name: "Normal",
  18403. height: math.unit(3, "feet")
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18409. {
  18410. front: {
  18411. height: math.unit(15, "feet"),
  18412. weight: math.unit(3280, "lb"),
  18413. name: "Front",
  18414. image: {
  18415. source: "./media/characters/sapphy/front.svg",
  18416. extra: 671 / 577,
  18417. bottom: 0.085
  18418. }
  18419. },
  18420. back: {
  18421. height: math.unit(15, "feet"),
  18422. weight: math.unit(3280, "lb"),
  18423. name: "Back",
  18424. image: {
  18425. source: "./media/characters/sapphy/back.svg",
  18426. extra: 631 / 607,
  18427. bottom: 0.045
  18428. }
  18429. },
  18430. },
  18431. [
  18432. {
  18433. name: "Normal",
  18434. height: math.unit(15, "feet")
  18435. },
  18436. {
  18437. name: "Casual Macro",
  18438. height: math.unit(120, "feet")
  18439. },
  18440. {
  18441. name: "Macro",
  18442. height: math.unit(2150, "feet"),
  18443. default: true
  18444. },
  18445. {
  18446. name: "Megamacro",
  18447. height: math.unit(8, "miles")
  18448. },
  18449. {
  18450. name: "Galaxy Mom",
  18451. height: math.unit(6, "megalightyears")
  18452. },
  18453. ]
  18454. ))
  18455. characterMakers.push(() => makeCharacter(
  18456. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18457. {
  18458. front: {
  18459. height: math.unit(6, "feet"),
  18460. weight: math.unit(170, "lb"),
  18461. name: "Front",
  18462. image: {
  18463. source: "./media/characters/kiro/front.svg",
  18464. extra: 1064 / 1012,
  18465. bottom: 0.052
  18466. }
  18467. },
  18468. },
  18469. [
  18470. {
  18471. name: "Micro",
  18472. height: math.unit(6, "inches")
  18473. },
  18474. {
  18475. name: "Normal",
  18476. height: math.unit(6, "feet"),
  18477. default: true
  18478. },
  18479. {
  18480. name: "Macro",
  18481. height: math.unit(72, "feet")
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18487. {
  18488. front: {
  18489. height: math.unit(5 + 9 / 12, "feet"),
  18490. weight: math.unit(175, "lb"),
  18491. name: "Front",
  18492. image: {
  18493. source: "./media/characters/irishfox/front.svg",
  18494. extra: 1912 / 1680,
  18495. bottom: 0.02
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Nano",
  18502. height: math.unit(1, "mm")
  18503. },
  18504. {
  18505. name: "Micro",
  18506. height: math.unit(2, "inches")
  18507. },
  18508. {
  18509. name: "Normal",
  18510. height: math.unit(5 + 9 / 12, "feet"),
  18511. default: true
  18512. },
  18513. {
  18514. name: "Macro",
  18515. height: math.unit(45, "feet")
  18516. },
  18517. ]
  18518. ))
  18519. characterMakers.push(() => makeCharacter(
  18520. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18521. {
  18522. front: {
  18523. height: math.unit(6 + 1 / 12, "feet"),
  18524. weight: math.unit(75, "lb"),
  18525. name: "Front",
  18526. image: {
  18527. source: "./media/characters/aronai-sieyes/front.svg",
  18528. extra: 1556 / 1480,
  18529. bottom: 0.015
  18530. }
  18531. },
  18532. side: {
  18533. height: math.unit(6 + 1 / 12, "feet"),
  18534. weight: math.unit(75, "lb"),
  18535. name: "Side",
  18536. image: {
  18537. source: "./media/characters/aronai-sieyes/side.svg",
  18538. extra: 1433 / 1390,
  18539. bottom: 0.0393
  18540. }
  18541. },
  18542. back: {
  18543. height: math.unit(6 + 1 / 12, "feet"),
  18544. weight: math.unit(75, "lb"),
  18545. name: "Back",
  18546. image: {
  18547. source: "./media/characters/aronai-sieyes/back.svg",
  18548. extra: 1544 / 1494,
  18549. bottom: 0.02
  18550. }
  18551. },
  18552. frontClothed: {
  18553. height: math.unit(6 + 1 / 12, "feet"),
  18554. weight: math.unit(75, "lb"),
  18555. name: "Front (Clothed)",
  18556. image: {
  18557. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18558. extra: 1582 / 1527
  18559. }
  18560. },
  18561. feral: {
  18562. height: math.unit(18, "feet"),
  18563. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18564. name: "Feral",
  18565. image: {
  18566. source: "./media/characters/aronai-sieyes/feral.svg",
  18567. extra: 1530 / 1240,
  18568. bottom: 0.035
  18569. }
  18570. },
  18571. },
  18572. [
  18573. {
  18574. name: "Micro",
  18575. height: math.unit(2, "inches")
  18576. },
  18577. {
  18578. name: "Normal",
  18579. height: math.unit(6 + 1 / 12, "feet"),
  18580. default: true
  18581. }
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18586. {
  18587. front: {
  18588. height: math.unit(12, "feet"),
  18589. weight: math.unit(410, "kg"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/xuna/front.svg",
  18593. extra: 2184 / 1980
  18594. }
  18595. },
  18596. side: {
  18597. height: math.unit(12, "feet"),
  18598. weight: math.unit(410, "kg"),
  18599. name: "Side",
  18600. image: {
  18601. source: "./media/characters/xuna/side.svg",
  18602. extra: 2184 / 1980
  18603. }
  18604. },
  18605. back: {
  18606. height: math.unit(12, "feet"),
  18607. weight: math.unit(410, "kg"),
  18608. name: "Back",
  18609. image: {
  18610. source: "./media/characters/xuna/back.svg",
  18611. extra: 2184 / 1980
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Nano glow",
  18618. height: math.unit(10, "nm")
  18619. },
  18620. {
  18621. name: "Micro floof",
  18622. height: math.unit(0.3, "m")
  18623. },
  18624. {
  18625. name: "Huggable softy boi",
  18626. height: math.unit(3.6576, "m"),
  18627. default: true
  18628. },
  18629. {
  18630. name: "Admirable floof",
  18631. height: math.unit(80, "meters")
  18632. },
  18633. {
  18634. name: "Gentle macro",
  18635. height: math.unit(300, "meters")
  18636. },
  18637. {
  18638. name: "Very careful floof",
  18639. height: math.unit(3200, "meters")
  18640. },
  18641. {
  18642. name: "The mega floof",
  18643. height: math.unit(36000, "meters")
  18644. },
  18645. {
  18646. name: "Giga-fur-Wicker",
  18647. height: math.unit(4800000, "meters")
  18648. },
  18649. {
  18650. name: "Licky world",
  18651. height: math.unit(20000000, "meters")
  18652. },
  18653. {
  18654. name: "Floofy cyan sun",
  18655. height: math.unit(1500000000, "meters")
  18656. },
  18657. {
  18658. name: "Milky Wicker",
  18659. height: math.unit(1000000000000000000000, "meters")
  18660. },
  18661. {
  18662. name: "The observing Wicker",
  18663. height: math.unit(999999999999999999999999999, "meters")
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(5 + 9 / 12, "feet"),
  18672. weight: math.unit(150, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/arokha-sieyes/front.svg",
  18676. extra: 1425 / 1284,
  18677. bottom: 0.05
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(5 + 9 / 12, "feet")
  18685. },
  18686. {
  18687. name: "Macro",
  18688. height: math.unit(30, "meters"),
  18689. default: true
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18695. {
  18696. front: {
  18697. height: math.unit(6, "feet"),
  18698. weight: math.unit(180, "lb"),
  18699. name: "Front",
  18700. image: {
  18701. source: "./media/characters/arokh-sieyes/front.svg",
  18702. extra: 1830 / 1769,
  18703. bottom: 0.01
  18704. }
  18705. },
  18706. },
  18707. [
  18708. {
  18709. name: "Normal",
  18710. height: math.unit(6, "feet")
  18711. },
  18712. {
  18713. name: "Macro",
  18714. height: math.unit(30, "meters"),
  18715. default: true
  18716. },
  18717. ]
  18718. ))
  18719. characterMakers.push(() => makeCharacter(
  18720. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18721. {
  18722. side: {
  18723. height: math.unit(13 + 1 / 12, "feet"),
  18724. weight: math.unit(8.5, "tonnes"),
  18725. name: "Side",
  18726. image: {
  18727. source: "./media/characters/goldeneye/side.svg",
  18728. extra: 1182 / 778,
  18729. bottom: 0.067
  18730. }
  18731. },
  18732. paw: {
  18733. height: math.unit(3.4, "feet"),
  18734. name: "Paw",
  18735. image: {
  18736. source: "./media/characters/goldeneye/paw.svg"
  18737. }
  18738. },
  18739. },
  18740. [
  18741. {
  18742. name: "Normal",
  18743. height: math.unit(13 + 1 / 12, "feet"),
  18744. default: true
  18745. },
  18746. ]
  18747. ))
  18748. characterMakers.push(() => makeCharacter(
  18749. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18750. {
  18751. front: {
  18752. height: math.unit(6 + 1 / 12, "feet"),
  18753. weight: math.unit(210, "lb"),
  18754. name: "Front",
  18755. image: {
  18756. source: "./media/characters/leonardo-lycheborne/front.svg",
  18757. extra: 390 / 365,
  18758. bottom: 0.032
  18759. }
  18760. },
  18761. side: {
  18762. height: math.unit(6 + 1 / 12, "feet"),
  18763. weight: math.unit(210, "lb"),
  18764. name: "Side",
  18765. image: {
  18766. source: "./media/characters/leonardo-lycheborne/side.svg",
  18767. extra: 390 / 365,
  18768. bottom: 0.005
  18769. }
  18770. },
  18771. back: {
  18772. height: math.unit(6 + 1 / 12, "feet"),
  18773. weight: math.unit(210, "lb"),
  18774. name: "Back",
  18775. image: {
  18776. source: "./media/characters/leonardo-lycheborne/back.svg",
  18777. extra: 392 / 366,
  18778. bottom: 0.01
  18779. }
  18780. },
  18781. hand: {
  18782. height: math.unit(1.08, "feet"),
  18783. name: "Hand",
  18784. image: {
  18785. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18786. }
  18787. },
  18788. foot: {
  18789. height: math.unit(1.32, "feet"),
  18790. name: "Foot",
  18791. image: {
  18792. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18793. }
  18794. },
  18795. were: {
  18796. height: math.unit(20, "feet"),
  18797. weight: math.unit(7800, "lb"),
  18798. name: "Were",
  18799. image: {
  18800. source: "./media/characters/leonardo-lycheborne/were.svg",
  18801. extra: 308 / 294,
  18802. bottom: 0.048
  18803. }
  18804. },
  18805. feral: {
  18806. height: math.unit(7.5, "feet"),
  18807. weight: math.unit(600, "lb"),
  18808. name: "Feral",
  18809. image: {
  18810. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18811. extra: 210 / 186,
  18812. bottom: 0.108
  18813. }
  18814. },
  18815. taur: {
  18816. height: math.unit(11, "feet"),
  18817. weight: math.unit(3300, "lb"),
  18818. name: "Taur",
  18819. image: {
  18820. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18821. extra: 320 / 303,
  18822. bottom: 0.025
  18823. }
  18824. },
  18825. barghest: {
  18826. height: math.unit(11, "feet"),
  18827. weight: math.unit(1300, "lb"),
  18828. name: "Barghest",
  18829. image: {
  18830. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18831. extra: 323 / 302,
  18832. bottom: 0.027
  18833. }
  18834. },
  18835. dick: {
  18836. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18837. name: "Dick",
  18838. image: {
  18839. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18840. }
  18841. },
  18842. dickWere: {
  18843. height: math.unit((20) / 3.8, "feet"),
  18844. name: "Dick (Were)",
  18845. image: {
  18846. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Normal",
  18853. height: math.unit(6 + 1 / 12, "feet"),
  18854. default: true
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18860. {
  18861. front: {
  18862. height: math.unit(10, "feet"),
  18863. weight: math.unit(350, "lb"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/jet/front.svg",
  18867. extra: 2050 / 1980,
  18868. bottom: 0.013
  18869. }
  18870. },
  18871. back: {
  18872. height: math.unit(10, "feet"),
  18873. weight: math.unit(350, "lb"),
  18874. name: "Back",
  18875. image: {
  18876. source: "./media/characters/jet/back.svg",
  18877. extra: 2050 / 1980,
  18878. bottom: 0.013
  18879. }
  18880. },
  18881. },
  18882. [
  18883. {
  18884. name: "Micro",
  18885. height: math.unit(6, "inches")
  18886. },
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(10, "feet"),
  18890. default: true
  18891. },
  18892. {
  18893. name: "Macro",
  18894. height: math.unit(100, "feet")
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(15, "feet"),
  18903. weight: math.unit(2800, "lb"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/tanarath/front.svg",
  18907. extra: 2392 / 2220,
  18908. bottom: 0.03
  18909. }
  18910. },
  18911. back: {
  18912. height: math.unit(15, "feet"),
  18913. weight: math.unit(2800, "lb"),
  18914. name: "Back",
  18915. image: {
  18916. source: "./media/characters/tanarath/back.svg",
  18917. extra: 2392 / 2220,
  18918. bottom: 0.03
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(15, "feet"),
  18926. default: true
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(7 + 1 / 12, "feet"),
  18935. weight: math.unit(175, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/patty-cattybatty/front.svg",
  18939. extra: 908 / 874,
  18940. bottom: 0.025
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Micro",
  18947. height: math.unit(1, "inch")
  18948. },
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(7 + 1 / 12, "feet")
  18952. },
  18953. {
  18954. name: "Mini Macro",
  18955. height: math.unit(155, "feet")
  18956. },
  18957. {
  18958. name: "Macro",
  18959. height: math.unit(1077, "feet")
  18960. },
  18961. {
  18962. name: "Mega Macro",
  18963. height: math.unit(47650, "feet"),
  18964. default: true
  18965. },
  18966. {
  18967. name: "Giga Macro",
  18968. height: math.unit(440, "miles")
  18969. },
  18970. {
  18971. name: "Tera Macro",
  18972. height: math.unit(8700, "miles")
  18973. },
  18974. {
  18975. name: "Planetary Macro",
  18976. height: math.unit(32700, "miles")
  18977. },
  18978. {
  18979. name: "Solar Macro",
  18980. height: math.unit(550000, "miles")
  18981. },
  18982. {
  18983. name: "Celestial Macro",
  18984. height: math.unit(2.5, "AU")
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18990. {
  18991. front: {
  18992. height: math.unit(4 + 5 / 12, "feet"),
  18993. weight: math.unit(90, "lb"),
  18994. name: "Front",
  18995. image: {
  18996. source: "./media/characters/cappu/front.svg",
  18997. extra: 1247 / 1152,
  18998. bottom: 0.012
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(4 + 5 / 12, "feet"),
  19006. default: true
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19012. {
  19013. frontDressed: {
  19014. height: math.unit(70, "cm"),
  19015. weight: math.unit(6, "kg"),
  19016. name: "Front (Dressed)",
  19017. image: {
  19018. source: "./media/characters/sebi/front-dressed.svg",
  19019. extra: 713.5 / 686.5,
  19020. bottom: 0.003
  19021. }
  19022. },
  19023. front: {
  19024. height: math.unit(70, "cm"),
  19025. weight: math.unit(5, "kg"),
  19026. name: "Front",
  19027. image: {
  19028. source: "./media/characters/sebi/front.svg",
  19029. extra: 713.5 / 686.5,
  19030. bottom: 0.003
  19031. }
  19032. }
  19033. },
  19034. [
  19035. {
  19036. name: "Normal",
  19037. height: math.unit(70, "cm"),
  19038. default: true
  19039. },
  19040. {
  19041. name: "Macro",
  19042. height: math.unit(8, "meters")
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19048. {
  19049. front: {
  19050. height: math.unit(6, "feet"),
  19051. weight: math.unit(150, "lb"),
  19052. name: "Front",
  19053. image: {
  19054. source: "./media/characters/typhek/front.svg",
  19055. extra: 1948 / 1929,
  19056. bottom: 0.025
  19057. }
  19058. },
  19059. side: {
  19060. height: math.unit(6, "feet"),
  19061. weight: math.unit(150, "lb"),
  19062. name: "Side",
  19063. image: {
  19064. source: "./media/characters/typhek/side.svg",
  19065. extra: 2034 / 2010,
  19066. bottom: 0.003
  19067. }
  19068. },
  19069. back: {
  19070. height: math.unit(6, "feet"),
  19071. weight: math.unit(150, "lb"),
  19072. name: "Back",
  19073. image: {
  19074. source: "./media/characters/typhek/back.svg",
  19075. extra: 2005 / 1978,
  19076. bottom: 0.004
  19077. }
  19078. },
  19079. palm: {
  19080. height: math.unit(1.2, "feet"),
  19081. name: "Palm",
  19082. image: {
  19083. source: "./media/characters/typhek/palm.svg"
  19084. }
  19085. },
  19086. fist: {
  19087. height: math.unit(1.1, "feet"),
  19088. name: "Fist",
  19089. image: {
  19090. source: "./media/characters/typhek/fist.svg"
  19091. }
  19092. },
  19093. foot: {
  19094. height: math.unit(1.57, "feet"),
  19095. name: "Foot",
  19096. image: {
  19097. source: "./media/characters/typhek/foot.svg"
  19098. }
  19099. },
  19100. sole: {
  19101. height: math.unit(2.05, "feet"),
  19102. name: "Sole",
  19103. image: {
  19104. source: "./media/characters/typhek/sole.svg"
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Macro",
  19111. height: math.unit(40, "stories"),
  19112. default: true
  19113. },
  19114. {
  19115. name: "Megamacro",
  19116. height: math.unit(1, "mile")
  19117. },
  19118. {
  19119. name: "Gigamacro",
  19120. height: math.unit(4000, "solarradii")
  19121. },
  19122. {
  19123. name: "Universal",
  19124. height: math.unit(1.1, "universes")
  19125. }
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19130. {
  19131. side: {
  19132. height: math.unit(5 + 7 / 12, "feet"),
  19133. weight: math.unit(150, "lb"),
  19134. name: "Side",
  19135. image: {
  19136. source: "./media/characters/kassy/side.svg",
  19137. extra: 1280 / 1225,
  19138. bottom: 0.002
  19139. }
  19140. },
  19141. front: {
  19142. height: math.unit(5 + 7 / 12, "feet"),
  19143. weight: math.unit(150, "lb"),
  19144. name: "Front",
  19145. image: {
  19146. source: "./media/characters/kassy/front.svg",
  19147. extra: 1280 / 1225,
  19148. bottom: 0.025
  19149. }
  19150. },
  19151. back: {
  19152. height: math.unit(5 + 7 / 12, "feet"),
  19153. weight: math.unit(150, "lb"),
  19154. name: "Back",
  19155. image: {
  19156. source: "./media/characters/kassy/back.svg",
  19157. extra: 1280 / 1225,
  19158. bottom: 0.002
  19159. }
  19160. },
  19161. foot: {
  19162. height: math.unit(1.266, "feet"),
  19163. name: "Foot",
  19164. image: {
  19165. source: "./media/characters/kassy/foot.svg"
  19166. }
  19167. },
  19168. },
  19169. [
  19170. {
  19171. name: "Normal",
  19172. height: math.unit(5 + 7 / 12, "feet")
  19173. },
  19174. {
  19175. name: "Macro",
  19176. height: math.unit(137, "feet"),
  19177. default: true
  19178. },
  19179. {
  19180. name: "Megamacro",
  19181. height: math.unit(1, "mile")
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19187. {
  19188. front: {
  19189. height: math.unit(6 + 1 / 12, "feet"),
  19190. weight: math.unit(200, "lb"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/neil/front.svg",
  19194. extra: 1326 / 1250,
  19195. bottom: 0.023
  19196. }
  19197. },
  19198. },
  19199. [
  19200. {
  19201. name: "Normal",
  19202. height: math.unit(6 + 1 / 12, "feet"),
  19203. default: true
  19204. },
  19205. {
  19206. name: "Macro",
  19207. height: math.unit(200, "feet")
  19208. },
  19209. ]
  19210. ))
  19211. characterMakers.push(() => makeCharacter(
  19212. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19213. {
  19214. front: {
  19215. height: math.unit(5 + 9 / 12, "feet"),
  19216. weight: math.unit(190, "lb"),
  19217. name: "Front",
  19218. image: {
  19219. source: "./media/characters/atticus/front.svg",
  19220. extra: 2934 / 2785,
  19221. bottom: 0.025
  19222. }
  19223. },
  19224. },
  19225. [
  19226. {
  19227. name: "Normal",
  19228. height: math.unit(5 + 9 / 12, "feet"),
  19229. default: true
  19230. },
  19231. {
  19232. name: "Macro",
  19233. height: math.unit(180, "feet")
  19234. },
  19235. ]
  19236. ))
  19237. characterMakers.push(() => makeCharacter(
  19238. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19239. {
  19240. side: {
  19241. height: math.unit(9, "feet"),
  19242. weight: math.unit(650, "lb"),
  19243. name: "Side",
  19244. image: {
  19245. source: "./media/characters/milo/side.svg",
  19246. extra: 2644 / 2310,
  19247. bottom: 0.032
  19248. }
  19249. },
  19250. },
  19251. [
  19252. {
  19253. name: "Normal",
  19254. height: math.unit(9, "feet"),
  19255. default: true
  19256. },
  19257. {
  19258. name: "Macro",
  19259. height: math.unit(300, "feet")
  19260. },
  19261. ]
  19262. ))
  19263. characterMakers.push(() => makeCharacter(
  19264. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19265. {
  19266. side: {
  19267. height: math.unit(8, "meters"),
  19268. weight: math.unit(90000, "kg"),
  19269. name: "Side",
  19270. image: {
  19271. source: "./media/characters/ijzer/side.svg",
  19272. extra: 2756 / 1600,
  19273. bottom: 0.01
  19274. }
  19275. },
  19276. },
  19277. [
  19278. {
  19279. name: "Small",
  19280. height: math.unit(3, "meters")
  19281. },
  19282. {
  19283. name: "Normal",
  19284. height: math.unit(8, "meters"),
  19285. default: true
  19286. },
  19287. {
  19288. name: "Normal+",
  19289. height: math.unit(10, "meters")
  19290. },
  19291. {
  19292. name: "Bigger",
  19293. height: math.unit(24, "meters")
  19294. },
  19295. {
  19296. name: "Huge",
  19297. height: math.unit(80, "meters")
  19298. },
  19299. ]
  19300. ))
  19301. characterMakers.push(() => makeCharacter(
  19302. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19303. {
  19304. front: {
  19305. height: math.unit(6 + 2 / 12, "feet"),
  19306. weight: math.unit(153, "lb"),
  19307. name: "Front",
  19308. image: {
  19309. source: "./media/characters/luca-cervicum/front.svg",
  19310. extra: 370 / 327,
  19311. bottom: 0.015
  19312. }
  19313. },
  19314. back: {
  19315. height: math.unit(6 + 2 / 12, "feet"),
  19316. weight: math.unit(153, "lb"),
  19317. name: "Back",
  19318. image: {
  19319. source: "./media/characters/luca-cervicum/back.svg",
  19320. extra: 367 / 333,
  19321. bottom: 0.005
  19322. }
  19323. },
  19324. frontGear: {
  19325. height: math.unit(6 + 2 / 12, "feet"),
  19326. weight: math.unit(173, "lb"),
  19327. name: "Front (Gear)",
  19328. image: {
  19329. source: "./media/characters/luca-cervicum/front-gear.svg",
  19330. extra: 377 / 333,
  19331. bottom: 0.006
  19332. }
  19333. },
  19334. },
  19335. [
  19336. {
  19337. name: "Normal",
  19338. height: math.unit(6 + 2 / 12, "feet"),
  19339. default: true
  19340. },
  19341. ]
  19342. ))
  19343. characterMakers.push(() => makeCharacter(
  19344. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19345. {
  19346. front: {
  19347. height: math.unit(6 + 1 / 12, "feet"),
  19348. weight: math.unit(304, "lb"),
  19349. name: "Front",
  19350. image: {
  19351. source: "./media/characters/oliver/front.svg",
  19352. extra: 157 / 143,
  19353. bottom: 0.08
  19354. }
  19355. },
  19356. },
  19357. [
  19358. {
  19359. name: "Normal",
  19360. height: math.unit(6 + 1 / 12, "feet"),
  19361. default: true
  19362. },
  19363. ]
  19364. ))
  19365. characterMakers.push(() => makeCharacter(
  19366. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19367. {
  19368. front: {
  19369. height: math.unit(5 + 7 / 12, "feet"),
  19370. weight: math.unit(140, "lb"),
  19371. name: "Front",
  19372. image: {
  19373. source: "./media/characters/shane/front.svg",
  19374. extra: 304 / 289,
  19375. bottom: 0.005
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Normal",
  19382. height: math.unit(5 + 7 / 12, "feet"),
  19383. default: true
  19384. },
  19385. ]
  19386. ))
  19387. characterMakers.push(() => makeCharacter(
  19388. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19389. {
  19390. front: {
  19391. height: math.unit(5 + 9 / 12, "feet"),
  19392. weight: math.unit(178, "lb"),
  19393. name: "Front",
  19394. image: {
  19395. source: "./media/characters/shin/front.svg",
  19396. extra: 159 / 151,
  19397. bottom: 0.015
  19398. }
  19399. },
  19400. },
  19401. [
  19402. {
  19403. name: "Normal",
  19404. height: math.unit(5 + 9 / 12, "feet"),
  19405. default: true
  19406. },
  19407. ]
  19408. ))
  19409. characterMakers.push(() => makeCharacter(
  19410. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19411. {
  19412. front: {
  19413. height: math.unit(5 + 10 / 12, "feet"),
  19414. weight: math.unit(168, "lb"),
  19415. name: "Front",
  19416. image: {
  19417. source: "./media/characters/xerxes/front.svg",
  19418. extra: 282 / 260,
  19419. bottom: 0.045
  19420. }
  19421. },
  19422. },
  19423. [
  19424. {
  19425. name: "Normal",
  19426. height: math.unit(5 + 10 / 12, "feet"),
  19427. default: true
  19428. },
  19429. ]
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19433. {
  19434. front: {
  19435. height: math.unit(6 + 7 / 12, "feet"),
  19436. weight: math.unit(208, "lb"),
  19437. name: "Front",
  19438. image: {
  19439. source: "./media/characters/chaska/front.svg",
  19440. extra: 332 / 319,
  19441. bottom: 0.015
  19442. }
  19443. },
  19444. },
  19445. [
  19446. {
  19447. name: "Normal",
  19448. height: math.unit(6 + 7 / 12, "feet"),
  19449. default: true
  19450. },
  19451. ]
  19452. ))
  19453. characterMakers.push(() => makeCharacter(
  19454. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19455. {
  19456. front: {
  19457. height: math.unit(5 + 8 / 12, "feet"),
  19458. weight: math.unit(208, "lb"),
  19459. name: "Front",
  19460. image: {
  19461. source: "./media/characters/enuk/front.svg",
  19462. extra: 437 / 406,
  19463. bottom: 0.02
  19464. }
  19465. },
  19466. },
  19467. [
  19468. {
  19469. name: "Normal",
  19470. height: math.unit(5 + 8 / 12, "feet"),
  19471. default: true
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19477. {
  19478. front: {
  19479. height: math.unit(5 + 10 / 12, "feet"),
  19480. weight: math.unit(252, "lb"),
  19481. name: "Front",
  19482. image: {
  19483. source: "./media/characters/bruun/front.svg",
  19484. extra: 197 / 187,
  19485. bottom: 0.012
  19486. }
  19487. },
  19488. },
  19489. [
  19490. {
  19491. name: "Normal",
  19492. height: math.unit(5 + 10 / 12, "feet"),
  19493. default: true
  19494. },
  19495. ]
  19496. ))
  19497. characterMakers.push(() => makeCharacter(
  19498. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19499. {
  19500. front: {
  19501. height: math.unit(6 + 10 / 12, "feet"),
  19502. weight: math.unit(255, "lb"),
  19503. name: "Front",
  19504. image: {
  19505. source: "./media/characters/alexeev/front.svg",
  19506. extra: 213 / 200,
  19507. bottom: 0.05
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(6 + 10 / 12, "feet"),
  19515. default: true
  19516. },
  19517. ]
  19518. ))
  19519. characterMakers.push(() => makeCharacter(
  19520. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19521. {
  19522. front: {
  19523. height: math.unit(2 + 8 / 12, "feet"),
  19524. weight: math.unit(22, "lb"),
  19525. name: "Front",
  19526. image: {
  19527. source: "./media/characters/evelyn/front.svg",
  19528. extra: 208 / 180
  19529. }
  19530. },
  19531. },
  19532. [
  19533. {
  19534. name: "Normal",
  19535. height: math.unit(2 + 8 / 12, "feet"),
  19536. default: true
  19537. },
  19538. ]
  19539. ))
  19540. characterMakers.push(() => makeCharacter(
  19541. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19542. {
  19543. front: {
  19544. height: math.unit(5 + 9 / 12, "feet"),
  19545. weight: math.unit(139, "lb"),
  19546. name: "Front",
  19547. image: {
  19548. source: "./media/characters/inca/front.svg",
  19549. extra: 294 / 291,
  19550. bottom: 0.03
  19551. }
  19552. },
  19553. },
  19554. [
  19555. {
  19556. name: "Normal",
  19557. height: math.unit(5 + 9 / 12, "feet"),
  19558. default: true
  19559. },
  19560. ]
  19561. ))
  19562. characterMakers.push(() => makeCharacter(
  19563. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19564. {
  19565. front: {
  19566. height: math.unit(5 + 1 / 12, "feet"),
  19567. weight: math.unit(84, "lb"),
  19568. name: "Front",
  19569. image: {
  19570. source: "./media/characters/magdalene/front.svg",
  19571. extra: 293 / 273
  19572. }
  19573. },
  19574. },
  19575. [
  19576. {
  19577. name: "Normal",
  19578. height: math.unit(5 + 1 / 12, "feet"),
  19579. default: true
  19580. },
  19581. ]
  19582. ))
  19583. characterMakers.push(() => makeCharacter(
  19584. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19585. {
  19586. front: {
  19587. height: math.unit(6 + 3 / 12, "feet"),
  19588. weight: math.unit(185, "lb"),
  19589. name: "Front",
  19590. image: {
  19591. source: "./media/characters/mera/front.svg",
  19592. extra: 291 / 277,
  19593. bottom: 0.03
  19594. }
  19595. },
  19596. },
  19597. [
  19598. {
  19599. name: "Normal",
  19600. height: math.unit(6 + 3 / 12, "feet"),
  19601. default: true
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(6 + 7 / 12, "feet"),
  19610. weight: math.unit(160, "lb"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/ceres/front.svg",
  19614. extra: 1023 / 950,
  19615. bottom: 0.027
  19616. }
  19617. },
  19618. back: {
  19619. height: math.unit(6 + 7 / 12, "feet"),
  19620. weight: math.unit(160, "lb"),
  19621. name: "Back",
  19622. image: {
  19623. source: "./media/characters/ceres/back.svg",
  19624. extra: 1023 / 950
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(6 + 7 / 12, "feet"),
  19632. default: true
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(5 + 10 / 12, "feet"),
  19641. weight: math.unit(150, "lb"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/kris/front.svg",
  19645. extra: 885 / 803,
  19646. bottom: 0.03
  19647. }
  19648. },
  19649. },
  19650. [
  19651. {
  19652. name: "Normal",
  19653. height: math.unit(5 + 10 / 12, "feet"),
  19654. default: true
  19655. },
  19656. ]
  19657. ))
  19658. characterMakers.push(() => makeCharacter(
  19659. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19660. {
  19661. front: {
  19662. height: math.unit(7, "feet"),
  19663. weight: math.unit(120, "kg"),
  19664. name: "Front",
  19665. image: {
  19666. source: "./media/characters/taluthus/front.svg",
  19667. extra: 903 / 833,
  19668. bottom: 0.015
  19669. }
  19670. },
  19671. },
  19672. [
  19673. {
  19674. name: "Normal",
  19675. height: math.unit(7, "feet"),
  19676. default: true
  19677. },
  19678. {
  19679. name: "Macro",
  19680. height: math.unit(300, "feet")
  19681. },
  19682. ]
  19683. ))
  19684. characterMakers.push(() => makeCharacter(
  19685. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19686. {
  19687. front: {
  19688. height: math.unit(5 + 9 / 12, "feet"),
  19689. weight: math.unit(145, "lb"),
  19690. name: "Front",
  19691. image: {
  19692. source: "./media/characters/dawn/front.svg",
  19693. extra: 2094 / 2016,
  19694. bottom: 0.025
  19695. }
  19696. },
  19697. back: {
  19698. height: math.unit(5 + 9 / 12, "feet"),
  19699. weight: math.unit(160, "lb"),
  19700. name: "Back",
  19701. image: {
  19702. source: "./media/characters/dawn/back.svg",
  19703. extra: 2112 / 2080,
  19704. bottom: 0.005
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(6 + 7 / 12, "feet"),
  19712. default: true
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19718. {
  19719. anthro: {
  19720. height: math.unit(8 + 3 / 12, "feet"),
  19721. weight: math.unit(450, "lb"),
  19722. name: "Anthro",
  19723. image: {
  19724. source: "./media/characters/arador/anthro.svg",
  19725. extra: 1835 / 1718,
  19726. bottom: 0.025
  19727. }
  19728. },
  19729. feral: {
  19730. height: math.unit(4, "feet"),
  19731. weight: math.unit(200, "lb"),
  19732. name: "Feral",
  19733. image: {
  19734. source: "./media/characters/arador/feral.svg",
  19735. extra: 1683 / 1514,
  19736. bottom: 0.07
  19737. }
  19738. },
  19739. },
  19740. [
  19741. {
  19742. name: "Normal",
  19743. height: math.unit(8 + 3 / 12, "feet")
  19744. },
  19745. {
  19746. name: "Macro",
  19747. height: math.unit(82.5, "feet"),
  19748. default: true
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(5 + 10 / 12, "feet"),
  19757. weight: math.unit(125, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/dharsi/front.svg",
  19761. extra: 716 / 630,
  19762. bottom: 0.035
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Nano",
  19769. height: math.unit(100, "nm")
  19770. },
  19771. {
  19772. name: "Micro",
  19773. height: math.unit(2, "inches")
  19774. },
  19775. {
  19776. name: "Normal",
  19777. height: math.unit(5 + 10 / 12, "feet"),
  19778. default: true
  19779. },
  19780. {
  19781. name: "Macro",
  19782. height: math.unit(1000, "feet")
  19783. },
  19784. {
  19785. name: "Megamacro",
  19786. height: math.unit(10, "miles")
  19787. },
  19788. {
  19789. name: "Gigamacro",
  19790. height: math.unit(3000, "miles")
  19791. },
  19792. {
  19793. name: "Teramacro",
  19794. height: math.unit(500000, "miles")
  19795. },
  19796. {
  19797. name: "Teramacro+",
  19798. height: math.unit(30, "galaxies")
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19804. {
  19805. front: {
  19806. height: math.unit(6, "feet"),
  19807. weight: math.unit(150, "lb"),
  19808. name: "Front",
  19809. image: {
  19810. source: "./media/characters/deathy/front.svg",
  19811. extra: 1552 / 1463,
  19812. bottom: 0.025
  19813. }
  19814. },
  19815. side: {
  19816. height: math.unit(6, "feet"),
  19817. weight: math.unit(150, "lb"),
  19818. name: "Side",
  19819. image: {
  19820. source: "./media/characters/deathy/side.svg",
  19821. extra: 1604 / 1455,
  19822. bottom: 0.025
  19823. }
  19824. },
  19825. back: {
  19826. height: math.unit(6, "feet"),
  19827. weight: math.unit(150, "lb"),
  19828. name: "Back",
  19829. image: {
  19830. source: "./media/characters/deathy/back.svg",
  19831. extra: 1580 / 1463,
  19832. bottom: 0.005
  19833. }
  19834. },
  19835. },
  19836. [
  19837. {
  19838. name: "Micro",
  19839. height: math.unit(5, "millimeters")
  19840. },
  19841. {
  19842. name: "Normal",
  19843. height: math.unit(6 + 5 / 12, "feet"),
  19844. default: true
  19845. },
  19846. ]
  19847. ))
  19848. characterMakers.push(() => makeCharacter(
  19849. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19850. {
  19851. front: {
  19852. height: math.unit(16, "feet"),
  19853. weight: math.unit(4000, "lb"),
  19854. name: "Front",
  19855. image: {
  19856. source: "./media/characters/juniper/front.svg",
  19857. bottom: 0.04
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Normal",
  19864. height: math.unit(16, "feet"),
  19865. default: true
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19871. {
  19872. front: {
  19873. height: math.unit(6, "feet"),
  19874. weight: math.unit(150, "lb"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/hipster/front.svg",
  19878. extra: 1312 / 1209,
  19879. bottom: 0.025
  19880. }
  19881. },
  19882. back: {
  19883. height: math.unit(6, "feet"),
  19884. weight: math.unit(150, "lb"),
  19885. name: "Back",
  19886. image: {
  19887. source: "./media/characters/hipster/back.svg",
  19888. extra: 1281 / 1196,
  19889. bottom: 0.01
  19890. }
  19891. },
  19892. },
  19893. [
  19894. {
  19895. name: "Micro",
  19896. height: math.unit(1, "mm")
  19897. },
  19898. {
  19899. name: "Normal",
  19900. height: math.unit(4, "inches"),
  19901. default: true
  19902. },
  19903. {
  19904. name: "Macro",
  19905. height: math.unit(500, "feet")
  19906. },
  19907. {
  19908. name: "Megamacro",
  19909. height: math.unit(1000, "miles")
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19915. {
  19916. front: {
  19917. height: math.unit(6, "feet"),
  19918. weight: math.unit(150, "lb"),
  19919. name: "Front",
  19920. image: {
  19921. source: "./media/characters/tendirmuldr/front.svg",
  19922. extra: 1878 / 1772,
  19923. bottom: 0.015
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Megamacro",
  19930. height: math.unit(1500, "miles"),
  19931. default: true
  19932. },
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19937. {
  19938. front: {
  19939. height: math.unit(14, "feet"),
  19940. weight: math.unit(12000, "lb"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/mort/front.svg",
  19944. extra: 365 / 318,
  19945. bottom: 0.01
  19946. }
  19947. },
  19948. side: {
  19949. height: math.unit(14, "feet"),
  19950. weight: math.unit(12000, "lb"),
  19951. name: "Side",
  19952. image: {
  19953. source: "./media/characters/mort/side.svg",
  19954. extra: 365 / 318,
  19955. bottom: 0.052
  19956. },
  19957. default: true
  19958. },
  19959. back: {
  19960. height: math.unit(14, "feet"),
  19961. weight: math.unit(12000, "lb"),
  19962. name: "Back",
  19963. image: {
  19964. source: "./media/characters/mort/back.svg",
  19965. extra: 371 / 332,
  19966. bottom: 0.18
  19967. }
  19968. },
  19969. },
  19970. [
  19971. {
  19972. name: "Normal",
  19973. height: math.unit(14, "feet"),
  19974. default: true
  19975. },
  19976. ]
  19977. ))
  19978. characterMakers.push(() => makeCharacter(
  19979. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19980. {
  19981. front: {
  19982. height: math.unit(8, "feet"),
  19983. weight: math.unit(1, "ton"),
  19984. name: "Front",
  19985. image: {
  19986. source: "./media/characters/lycoa/front.svg",
  19987. extra: 1875 / 1789,
  19988. bottom: 0.022
  19989. }
  19990. },
  19991. back: {
  19992. height: math.unit(8, "feet"),
  19993. weight: math.unit(1, "ton"),
  19994. name: "Back",
  19995. image: {
  19996. source: "./media/characters/lycoa/back.svg",
  19997. extra: 1835 / 1781,
  19998. bottom: 0.03
  19999. }
  20000. },
  20001. head: {
  20002. height: math.unit(2.1, "feet"),
  20003. name: "Head",
  20004. image: {
  20005. source: "./media/characters/lycoa/head.svg"
  20006. }
  20007. },
  20008. tailmaw: {
  20009. height: math.unit(1.9, "feet"),
  20010. name: "Tailmaw",
  20011. image: {
  20012. source: "./media/characters/lycoa/tailmaw.svg"
  20013. }
  20014. },
  20015. tentacles: {
  20016. height: math.unit(2.1, "feet"),
  20017. name: "Tentacles",
  20018. image: {
  20019. source: "./media/characters/lycoa/tentacles.svg"
  20020. }
  20021. },
  20022. dick: {
  20023. height: math.unit(1.73, "feet"),
  20024. name: "Dick",
  20025. image: {
  20026. source: "./media/characters/lycoa/dick.svg"
  20027. }
  20028. },
  20029. },
  20030. [
  20031. {
  20032. name: "Normal",
  20033. height: math.unit(8, "feet"),
  20034. default: true
  20035. },
  20036. {
  20037. name: "Macro",
  20038. height: math.unit(30, "feet")
  20039. },
  20040. ]
  20041. ))
  20042. characterMakers.push(() => makeCharacter(
  20043. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20044. {
  20045. front: {
  20046. height: math.unit(4 + 2 / 12, "feet"),
  20047. weight: math.unit(70, "lb"),
  20048. name: "Front",
  20049. image: {
  20050. source: "./media/characters/naldara/front.svg",
  20051. extra: 841 / 720,
  20052. bottom: 0.04
  20053. }
  20054. },
  20055. naga: {
  20056. height: math.unit(23, "feet"),
  20057. weight: math.unit(15000, "kg"),
  20058. name: "Naga",
  20059. image: {
  20060. source: "./media/characters/naldara/naga.svg",
  20061. extra: 3290 / 2959,
  20062. bottom: 124 / 3432
  20063. }
  20064. },
  20065. },
  20066. [
  20067. {
  20068. name: "Normal",
  20069. height: math.unit(4 + 2 / 12, "feet"),
  20070. default: true
  20071. },
  20072. ]
  20073. ))
  20074. characterMakers.push(() => makeCharacter(
  20075. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20076. {
  20077. front: {
  20078. height: math.unit(13 + 7 / 12, "feet"),
  20079. weight: math.unit(1500, "lb"),
  20080. name: "Front",
  20081. image: {
  20082. source: "./media/characters/briar/front.svg",
  20083. extra: 626 / 596,
  20084. bottom: 0.08
  20085. }
  20086. },
  20087. },
  20088. [
  20089. {
  20090. name: "Normal",
  20091. height: math.unit(13 + 7 / 12, "feet"),
  20092. default: true
  20093. },
  20094. ]
  20095. ))
  20096. characterMakers.push(() => makeCharacter(
  20097. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20098. {
  20099. side: {
  20100. height: math.unit(10, "feet"),
  20101. weight: math.unit(500, "lb"),
  20102. name: "Side",
  20103. image: {
  20104. source: "./media/characters/vanguard/side.svg",
  20105. extra: 502 / 425,
  20106. bottom: 0.087
  20107. }
  20108. },
  20109. },
  20110. [
  20111. {
  20112. name: "Normal",
  20113. height: math.unit(10, "feet"),
  20114. default: true
  20115. },
  20116. ]
  20117. ))
  20118. characterMakers.push(() => makeCharacter(
  20119. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20120. {
  20121. front: {
  20122. height: math.unit(7.5, "feet"),
  20123. weight: math.unit(2, "lb"),
  20124. name: "Front",
  20125. image: {
  20126. source: "./media/characters/artemis/front.svg",
  20127. extra: 1192 / 1075,
  20128. bottom: 0.07
  20129. }
  20130. },
  20131. frontNsfw: {
  20132. height: math.unit(7.5, "feet"),
  20133. weight: math.unit(2, "lb"),
  20134. name: "Front (NSFW)",
  20135. image: {
  20136. source: "./media/characters/artemis/front-nsfw.svg",
  20137. extra: 1192 / 1075,
  20138. bottom: 0.07
  20139. }
  20140. },
  20141. frontNsfwer: {
  20142. height: math.unit(7.5, "feet"),
  20143. weight: math.unit(2, "lb"),
  20144. name: "Front (NSFW-er)",
  20145. image: {
  20146. source: "./media/characters/artemis/front-nsfwer.svg",
  20147. extra: 1192 / 1075,
  20148. bottom: 0.07
  20149. }
  20150. },
  20151. side: {
  20152. height: math.unit(7.5, "feet"),
  20153. weight: math.unit(2, "lb"),
  20154. name: "Side",
  20155. image: {
  20156. source: "./media/characters/artemis/side.svg",
  20157. extra: 1192 / 1075,
  20158. bottom: 0.07
  20159. }
  20160. },
  20161. sideNsfw: {
  20162. height: math.unit(7.5, "feet"),
  20163. weight: math.unit(2, "lb"),
  20164. name: "Side (NSFW)",
  20165. image: {
  20166. source: "./media/characters/artemis/side-nsfw.svg",
  20167. extra: 1192 / 1075,
  20168. bottom: 0.07
  20169. }
  20170. },
  20171. sideNsfwer: {
  20172. height: math.unit(7.5, "feet"),
  20173. weight: math.unit(2, "lb"),
  20174. name: "Side (NSFW-er)",
  20175. image: {
  20176. source: "./media/characters/artemis/side-nsfwer.svg",
  20177. extra: 1192 / 1075,
  20178. bottom: 0.07
  20179. }
  20180. },
  20181. maw: {
  20182. height: math.unit(1.1, "feet"),
  20183. name: "Maw",
  20184. image: {
  20185. source: "./media/characters/artemis/maw.svg"
  20186. }
  20187. },
  20188. stomach: {
  20189. height: math.unit(0.95, "feet"),
  20190. name: "Stomach",
  20191. image: {
  20192. source: "./media/characters/artemis/stomach.svg"
  20193. }
  20194. },
  20195. dickCanine: {
  20196. height: math.unit(1, "feet"),
  20197. name: "Dick (Canine)",
  20198. image: {
  20199. source: "./media/characters/artemis/dick-canine.svg"
  20200. }
  20201. },
  20202. dickEquine: {
  20203. height: math.unit(0.85, "feet"),
  20204. name: "Dick (Equine)",
  20205. image: {
  20206. source: "./media/characters/artemis/dick-equine.svg"
  20207. }
  20208. },
  20209. dickExotic: {
  20210. height: math.unit(0.85, "feet"),
  20211. name: "Dick (Exotic)",
  20212. image: {
  20213. source: "./media/characters/artemis/dick-exotic.svg"
  20214. }
  20215. },
  20216. },
  20217. [
  20218. {
  20219. name: "Normal",
  20220. height: math.unit(7.5, "feet"),
  20221. default: true
  20222. },
  20223. {
  20224. name: "Enlarged",
  20225. height: math.unit(12, "feet")
  20226. },
  20227. ]
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20231. {
  20232. front: {
  20233. height: math.unit(5 + 3 / 12, "feet"),
  20234. weight: math.unit(160, "lb"),
  20235. name: "Front",
  20236. image: {
  20237. source: "./media/characters/kira/front.svg",
  20238. extra: 906 / 786,
  20239. bottom: 0.01
  20240. }
  20241. },
  20242. back: {
  20243. height: math.unit(5 + 3 / 12, "feet"),
  20244. weight: math.unit(160, "lb"),
  20245. name: "Back",
  20246. image: {
  20247. source: "./media/characters/kira/back.svg",
  20248. extra: 882 / 757,
  20249. bottom: 0.005
  20250. }
  20251. },
  20252. frontDressed: {
  20253. height: math.unit(5 + 3 / 12, "feet"),
  20254. weight: math.unit(160, "lb"),
  20255. name: "Front (Dressed)",
  20256. image: {
  20257. source: "./media/characters/kira/front-dressed.svg",
  20258. extra: 906 / 786,
  20259. bottom: 0.01
  20260. }
  20261. },
  20262. beans: {
  20263. height: math.unit(0.92, "feet"),
  20264. name: "Beans",
  20265. image: {
  20266. source: "./media/characters/kira/beans.svg"
  20267. }
  20268. },
  20269. },
  20270. [
  20271. {
  20272. name: "Normal",
  20273. height: math.unit(5 + 3 / 12, "feet"),
  20274. default: true
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20280. {
  20281. front: {
  20282. height: math.unit(5 + 4 / 12, "feet"),
  20283. weight: math.unit(145, "lb"),
  20284. name: "Front",
  20285. image: {
  20286. source: "./media/characters/scramble/front.svg",
  20287. extra: 763 / 727,
  20288. bottom: 0.05
  20289. }
  20290. },
  20291. back: {
  20292. height: math.unit(5 + 4 / 12, "feet"),
  20293. weight: math.unit(145, "lb"),
  20294. name: "Back",
  20295. image: {
  20296. source: "./media/characters/scramble/back.svg",
  20297. extra: 826 / 737,
  20298. bottom: 0.002
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(5 + 4 / 12, "feet"),
  20306. default: true
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20312. {
  20313. side: {
  20314. height: math.unit(6 + 2 / 12, "feet"),
  20315. weight: math.unit(190, "lb"),
  20316. name: "Side",
  20317. image: {
  20318. source: "./media/characters/biscuit/side.svg",
  20319. extra: 858 / 791,
  20320. bottom: 0.044
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Normal",
  20327. height: math.unit(6 + 2 / 12, "feet"),
  20328. default: true
  20329. },
  20330. ]
  20331. ))
  20332. characterMakers.push(() => makeCharacter(
  20333. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20334. {
  20335. front: {
  20336. height: math.unit(5 + 2 / 12, "feet"),
  20337. weight: math.unit(120, "lb"),
  20338. name: "Front",
  20339. image: {
  20340. source: "./media/characters/poffin/front.svg",
  20341. extra: 786 / 680,
  20342. bottom: 0.005
  20343. }
  20344. },
  20345. },
  20346. [
  20347. {
  20348. name: "Normal",
  20349. height: math.unit(5 + 2 / 12, "feet"),
  20350. default: true
  20351. },
  20352. ]
  20353. ))
  20354. characterMakers.push(() => makeCharacter(
  20355. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20356. {
  20357. front: {
  20358. height: math.unit(6 + 3 / 12, "feet"),
  20359. weight: math.unit(519, "lb"),
  20360. name: "Front",
  20361. image: {
  20362. source: "./media/characters/dhari/front.svg",
  20363. extra: 1048 / 946,
  20364. bottom: 0.015
  20365. }
  20366. },
  20367. back: {
  20368. height: math.unit(6 + 3 / 12, "feet"),
  20369. weight: math.unit(519, "lb"),
  20370. name: "Back",
  20371. image: {
  20372. source: "./media/characters/dhari/back.svg",
  20373. extra: 1048 / 931,
  20374. bottom: 0.005
  20375. }
  20376. },
  20377. frontDressed: {
  20378. height: math.unit(6 + 3 / 12, "feet"),
  20379. weight: math.unit(519, "lb"),
  20380. name: "Front (Dressed)",
  20381. image: {
  20382. source: "./media/characters/dhari/front-dressed.svg",
  20383. extra: 1713 / 1546,
  20384. bottom: 0.02
  20385. }
  20386. },
  20387. backDressed: {
  20388. height: math.unit(6 + 3 / 12, "feet"),
  20389. weight: math.unit(519, "lb"),
  20390. name: "Back (Dressed)",
  20391. image: {
  20392. source: "./media/characters/dhari/back-dressed.svg",
  20393. extra: 1699 / 1537,
  20394. bottom: 0.01
  20395. }
  20396. },
  20397. maw: {
  20398. height: math.unit(0.95, "feet"),
  20399. name: "Maw",
  20400. image: {
  20401. source: "./media/characters/dhari/maw.svg"
  20402. }
  20403. },
  20404. wereFront: {
  20405. height: math.unit(12 + 8 / 12, "feet"),
  20406. weight: math.unit(4000, "lb"),
  20407. name: "Front (Were)",
  20408. image: {
  20409. source: "./media/characters/dhari/were-front.svg",
  20410. extra: 1065 / 969,
  20411. bottom: 0.015
  20412. }
  20413. },
  20414. wereBack: {
  20415. height: math.unit(12 + 8 / 12, "feet"),
  20416. weight: math.unit(4000, "lb"),
  20417. name: "Back (Were)",
  20418. image: {
  20419. source: "./media/characters/dhari/were-back.svg",
  20420. extra: 1065 / 969,
  20421. bottom: 0.012
  20422. }
  20423. },
  20424. wereMaw: {
  20425. height: math.unit(0.625, "meters"),
  20426. name: "Maw (Were)",
  20427. image: {
  20428. source: "./media/characters/dhari/were-maw.svg"
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(6 + 3 / 12, "feet"),
  20436. default: true
  20437. },
  20438. ]
  20439. ))
  20440. characterMakers.push(() => makeCharacter(
  20441. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20442. {
  20443. anthro: {
  20444. height: math.unit(5 + 7 / 12, "feet"),
  20445. weight: math.unit(175, "lb"),
  20446. name: "Anthro",
  20447. image: {
  20448. source: "./media/characters/rena-dyne/anthro.svg",
  20449. extra: 1849 / 1785,
  20450. bottom: 0.005
  20451. }
  20452. },
  20453. taur: {
  20454. height: math.unit(15 + 6 / 12, "feet"),
  20455. weight: math.unit(8000, "lb"),
  20456. name: "Taur",
  20457. image: {
  20458. source: "./media/characters/rena-dyne/taur.svg",
  20459. extra: 2315 / 2234,
  20460. bottom: 0.033
  20461. }
  20462. },
  20463. },
  20464. [
  20465. {
  20466. name: "Normal",
  20467. height: math.unit(5 + 7 / 12, "feet"),
  20468. default: true
  20469. },
  20470. ]
  20471. ))
  20472. characterMakers.push(() => makeCharacter(
  20473. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20474. {
  20475. front: {
  20476. height: math.unit(8, "feet"),
  20477. weight: math.unit(600, "lb"),
  20478. name: "Front",
  20479. image: {
  20480. source: "./media/characters/weremeep/front.svg",
  20481. extra: 967 / 862,
  20482. bottom: 0.01
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(8, "feet"),
  20490. default: true
  20491. },
  20492. {
  20493. name: "Lorg",
  20494. height: math.unit(12, "feet")
  20495. },
  20496. {
  20497. name: "Oh Lawd She Comin'",
  20498. height: math.unit(20, "feet")
  20499. },
  20500. ]
  20501. ))
  20502. characterMakers.push(() => makeCharacter(
  20503. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20504. {
  20505. front: {
  20506. height: math.unit(4, "feet"),
  20507. weight: math.unit(90, "lb"),
  20508. name: "Front",
  20509. image: {
  20510. source: "./media/characters/reza/front.svg",
  20511. extra: 1183 / 1111,
  20512. bottom: 0.017
  20513. }
  20514. },
  20515. back: {
  20516. height: math.unit(4, "feet"),
  20517. weight: math.unit(90, "lb"),
  20518. name: "Back",
  20519. image: {
  20520. source: "./media/characters/reza/back.svg",
  20521. extra: 1183 / 1111,
  20522. bottom: 0.01
  20523. }
  20524. },
  20525. drake: {
  20526. height: math.unit(30, "feet"),
  20527. weight: math.unit(246960, "lb"),
  20528. name: "Drake",
  20529. image: {
  20530. source: "./media/characters/reza/drake.svg",
  20531. extra: 2350 / 2024,
  20532. bottom: 60.7 / 2403
  20533. }
  20534. },
  20535. },
  20536. [
  20537. {
  20538. name: "Normal",
  20539. height: math.unit(4, "feet"),
  20540. default: true
  20541. },
  20542. ]
  20543. ))
  20544. characterMakers.push(() => makeCharacter(
  20545. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20546. {
  20547. side: {
  20548. height: math.unit(15, "feet"),
  20549. weight: math.unit(14, "tons"),
  20550. name: "Side",
  20551. image: {
  20552. source: "./media/characters/athea/side.svg",
  20553. extra: 960 / 540,
  20554. bottom: 0.003
  20555. }
  20556. },
  20557. sitting: {
  20558. height: math.unit(6 * 2.85, "feet"),
  20559. weight: math.unit(14, "tons"),
  20560. name: "Sitting",
  20561. image: {
  20562. source: "./media/characters/athea/sitting.svg",
  20563. extra: 621 / 581,
  20564. bottom: 0.075
  20565. }
  20566. },
  20567. maw: {
  20568. height: math.unit(7.59498031496063, "feet"),
  20569. name: "Maw",
  20570. image: {
  20571. source: "./media/characters/athea/maw.svg"
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Lap Cat",
  20578. height: math.unit(2.5, "feet")
  20579. },
  20580. {
  20581. name: "Minimacro",
  20582. height: math.unit(15, "feet"),
  20583. default: true
  20584. },
  20585. {
  20586. name: "Macro",
  20587. height: math.unit(120, "feet")
  20588. },
  20589. {
  20590. name: "Macro+",
  20591. height: math.unit(640, "feet")
  20592. },
  20593. {
  20594. name: "Colossus",
  20595. height: math.unit(2.2, "miles")
  20596. },
  20597. ]
  20598. ))
  20599. characterMakers.push(() => makeCharacter(
  20600. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20601. {
  20602. front: {
  20603. height: math.unit(8 + 8 / 12, "feet"),
  20604. weight: math.unit(130, "kg"),
  20605. name: "Front",
  20606. image: {
  20607. source: "./media/characters/seroko/front.svg",
  20608. extra: 1385 / 1280,
  20609. bottom: 0.025
  20610. }
  20611. },
  20612. back: {
  20613. height: math.unit(8 + 8 / 12, "feet"),
  20614. weight: math.unit(130, "kg"),
  20615. name: "Back",
  20616. image: {
  20617. source: "./media/characters/seroko/back.svg",
  20618. extra: 1369 / 1238,
  20619. bottom: 0.018
  20620. }
  20621. },
  20622. frontDressed: {
  20623. height: math.unit(8 + 8 / 12, "feet"),
  20624. weight: math.unit(130, "kg"),
  20625. name: "Front (Dressed)",
  20626. image: {
  20627. source: "./media/characters/seroko/front-dressed.svg",
  20628. extra: 1366 / 1275,
  20629. bottom: 0.03
  20630. }
  20631. },
  20632. },
  20633. [
  20634. {
  20635. name: "Normal",
  20636. height: math.unit(8 + 8 / 12, "feet"),
  20637. default: true
  20638. },
  20639. ]
  20640. ))
  20641. characterMakers.push(() => makeCharacter(
  20642. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20643. {
  20644. front: {
  20645. height: math.unit(5.5, "feet"),
  20646. weight: math.unit(160, "lb"),
  20647. name: "Front",
  20648. image: {
  20649. source: "./media/characters/quatzi/front.svg",
  20650. extra: 2346 / 2242,
  20651. bottom: 0.015
  20652. }
  20653. },
  20654. },
  20655. [
  20656. {
  20657. name: "Normal",
  20658. height: math.unit(5.5, "feet"),
  20659. default: true
  20660. },
  20661. {
  20662. name: "Big",
  20663. height: math.unit(7.7, "feet")
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20669. {
  20670. front: {
  20671. height: math.unit(5 + 11 / 12, "feet"),
  20672. weight: math.unit(180, "lb"),
  20673. name: "Front",
  20674. image: {
  20675. source: "./media/characters/sen/front.svg",
  20676. extra: 1321 / 1254,
  20677. bottom: 0.015
  20678. }
  20679. },
  20680. side: {
  20681. height: math.unit(5 + 11 / 12, "feet"),
  20682. weight: math.unit(180, "lb"),
  20683. name: "Side",
  20684. image: {
  20685. source: "./media/characters/sen/side.svg",
  20686. extra: 1321 / 1254,
  20687. bottom: 0.007
  20688. }
  20689. },
  20690. back: {
  20691. height: math.unit(5 + 11 / 12, "feet"),
  20692. weight: math.unit(180, "lb"),
  20693. name: "Back",
  20694. image: {
  20695. source: "./media/characters/sen/back.svg",
  20696. extra: 1321 / 1254
  20697. }
  20698. },
  20699. },
  20700. [
  20701. {
  20702. name: "Normal",
  20703. height: math.unit(5 + 11 / 12, "feet"),
  20704. default: true
  20705. },
  20706. ]
  20707. ))
  20708. characterMakers.push(() => makeCharacter(
  20709. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20710. {
  20711. front: {
  20712. height: math.unit(166.6, "cm"),
  20713. weight: math.unit(66.6, "kg"),
  20714. name: "Front",
  20715. image: {
  20716. source: "./media/characters/fruity/front.svg",
  20717. extra: 1510 / 1386,
  20718. bottom: 0.04
  20719. }
  20720. },
  20721. back: {
  20722. height: math.unit(166.6, "cm"),
  20723. weight: math.unit(66.6, "lb"),
  20724. name: "Back",
  20725. image: {
  20726. source: "./media/characters/fruity/back.svg",
  20727. extra: 1563 / 1435,
  20728. bottom: 0.005
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Normal",
  20735. height: math.unit(166.6, "cm"),
  20736. default: true
  20737. },
  20738. {
  20739. name: "Demonic",
  20740. height: math.unit(166.6, "feet")
  20741. },
  20742. ]
  20743. ))
  20744. characterMakers.push(() => makeCharacter(
  20745. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20746. {
  20747. side: {
  20748. height: math.unit(10, "feet"),
  20749. weight: math.unit(500, "lb"),
  20750. name: "Side",
  20751. image: {
  20752. source: "./media/characters/zost/side.svg",
  20753. extra: 966 / 880,
  20754. bottom: 0.075
  20755. }
  20756. },
  20757. mawFront: {
  20758. height: math.unit(1.08, "meters"),
  20759. name: "Maw (Front)",
  20760. image: {
  20761. source: "./media/characters/zost/maw-front.svg"
  20762. }
  20763. },
  20764. mawSide: {
  20765. height: math.unit(2.66, "feet"),
  20766. name: "Maw (Side)",
  20767. image: {
  20768. source: "./media/characters/zost/maw-side.svg"
  20769. }
  20770. },
  20771. },
  20772. [
  20773. {
  20774. name: "Normal",
  20775. height: math.unit(10, "feet"),
  20776. default: true
  20777. },
  20778. ]
  20779. ))
  20780. characterMakers.push(() => makeCharacter(
  20781. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20782. {
  20783. front: {
  20784. height: math.unit(5 + 4 / 12, "feet"),
  20785. weight: math.unit(120, "lb"),
  20786. name: "Front",
  20787. image: {
  20788. source: "./media/characters/luci/front.svg",
  20789. extra: 1985 / 1884,
  20790. bottom: 0.04
  20791. }
  20792. },
  20793. back: {
  20794. height: math.unit(5 + 4 / 12, "feet"),
  20795. weight: math.unit(120, "lb"),
  20796. name: "Back",
  20797. image: {
  20798. source: "./media/characters/luci/back.svg",
  20799. extra: 1892 / 1791,
  20800. bottom: 0.002
  20801. }
  20802. },
  20803. },
  20804. [
  20805. {
  20806. name: "Normal",
  20807. height: math.unit(5 + 4 / 12, "feet"),
  20808. default: true
  20809. },
  20810. ]
  20811. ))
  20812. characterMakers.push(() => makeCharacter(
  20813. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20814. {
  20815. front: {
  20816. height: math.unit(1500, "feet"),
  20817. weight: math.unit(3.8e6, "tons"),
  20818. name: "Front",
  20819. image: {
  20820. source: "./media/characters/2th/front.svg",
  20821. extra: 3489 / 3350,
  20822. bottom: 0.1
  20823. }
  20824. },
  20825. foot: {
  20826. height: math.unit(461, "feet"),
  20827. name: "Foot",
  20828. image: {
  20829. source: "./media/characters/2th/foot.svg"
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "\"Micro\"",
  20836. height: math.unit(15 + 7 / 12, "feet")
  20837. },
  20838. {
  20839. name: "Normal",
  20840. height: math.unit(1500, "feet"),
  20841. default: true
  20842. },
  20843. {
  20844. name: "Macro",
  20845. height: math.unit(5000, "feet")
  20846. },
  20847. {
  20848. name: "Megamacro",
  20849. height: math.unit(15, "miles")
  20850. },
  20851. {
  20852. name: "Gigamacro",
  20853. height: math.unit(4000, "miles")
  20854. },
  20855. {
  20856. name: "Galactic",
  20857. height: math.unit(50, "AU")
  20858. },
  20859. ]
  20860. ))
  20861. characterMakers.push(() => makeCharacter(
  20862. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20863. {
  20864. front: {
  20865. height: math.unit(5 + 6 / 12, "feet"),
  20866. weight: math.unit(220, "lb"),
  20867. name: "Front",
  20868. image: {
  20869. source: "./media/characters/amethyst/front.svg",
  20870. extra: 2078 / 2040,
  20871. bottom: 0.045
  20872. }
  20873. },
  20874. back: {
  20875. height: math.unit(5 + 6 / 12, "feet"),
  20876. weight: math.unit(220, "lb"),
  20877. name: "Back",
  20878. image: {
  20879. source: "./media/characters/amethyst/back.svg",
  20880. extra: 2021 / 1989,
  20881. bottom: 0.02
  20882. }
  20883. },
  20884. },
  20885. [
  20886. {
  20887. name: "Normal",
  20888. height: math.unit(5 + 6 / 12, "feet"),
  20889. default: true
  20890. },
  20891. ]
  20892. ))
  20893. characterMakers.push(() => makeCharacter(
  20894. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20895. {
  20896. front: {
  20897. height: math.unit(4 + 11 / 12, "feet"),
  20898. weight: math.unit(120, "lb"),
  20899. name: "Front",
  20900. image: {
  20901. source: "./media/characters/yumi-akiyama/front.svg",
  20902. extra: 1327 / 1235,
  20903. bottom: 0.02
  20904. }
  20905. },
  20906. back: {
  20907. height: math.unit(4 + 11 / 12, "feet"),
  20908. weight: math.unit(120, "lb"),
  20909. name: "Back",
  20910. image: {
  20911. source: "./media/characters/yumi-akiyama/back.svg",
  20912. extra: 1287 / 1245,
  20913. bottom: 0.002
  20914. }
  20915. },
  20916. },
  20917. [
  20918. {
  20919. name: "Galactic",
  20920. height: math.unit(50, "galaxies"),
  20921. default: true
  20922. },
  20923. {
  20924. name: "Universal",
  20925. height: math.unit(100, "universes")
  20926. },
  20927. ]
  20928. ))
  20929. characterMakers.push(() => makeCharacter(
  20930. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20931. {
  20932. front: {
  20933. height: math.unit(8, "feet"),
  20934. weight: math.unit(500, "lb"),
  20935. name: "Front",
  20936. image: {
  20937. source: "./media/characters/rifter-yrmori/front.svg",
  20938. extra: 1180 / 1125,
  20939. bottom: 0.02
  20940. }
  20941. },
  20942. back: {
  20943. height: math.unit(8, "feet"),
  20944. weight: math.unit(500, "lb"),
  20945. name: "Back",
  20946. image: {
  20947. source: "./media/characters/rifter-yrmori/back.svg",
  20948. extra: 1190 / 1145,
  20949. bottom: 0.001
  20950. }
  20951. },
  20952. wings: {
  20953. height: math.unit(7.75, "feet"),
  20954. weight: math.unit(500, "lb"),
  20955. name: "Wings",
  20956. image: {
  20957. source: "./media/characters/rifter-yrmori/wings.svg",
  20958. extra: 1357 / 1285
  20959. }
  20960. },
  20961. maw: {
  20962. height: math.unit(0.8, "feet"),
  20963. name: "Maw",
  20964. image: {
  20965. source: "./media/characters/rifter-yrmori/maw.svg"
  20966. }
  20967. },
  20968. mawfront: {
  20969. height: math.unit(1.45, "feet"),
  20970. name: "Maw (Front)",
  20971. image: {
  20972. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Normal",
  20979. height: math.unit(8, "feet"),
  20980. default: true
  20981. },
  20982. {
  20983. name: "Macro",
  20984. height: math.unit(42, "meters")
  20985. },
  20986. ]
  20987. ))
  20988. characterMakers.push(() => makeCharacter(
  20989. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20990. {
  20991. were: {
  20992. height: math.unit(25 + 6 / 12, "feet"),
  20993. weight: math.unit(10000, "lb"),
  20994. name: "Were",
  20995. image: {
  20996. source: "./media/characters/tahajin/were.svg",
  20997. extra: 801 / 770,
  20998. bottom: 0.042
  20999. }
  21000. },
  21001. aquatic: {
  21002. height: math.unit(6 + 4 / 12, "feet"),
  21003. weight: math.unit(160, "lb"),
  21004. name: "Aquatic",
  21005. image: {
  21006. source: "./media/characters/tahajin/aquatic.svg",
  21007. extra: 572 / 542,
  21008. bottom: 0.04
  21009. }
  21010. },
  21011. chow: {
  21012. height: math.unit(8 + 11 / 12, "feet"),
  21013. weight: math.unit(450, "lb"),
  21014. name: "Chow",
  21015. image: {
  21016. source: "./media/characters/tahajin/chow.svg",
  21017. extra: 660 / 640,
  21018. bottom: 0.015
  21019. }
  21020. },
  21021. demiNaga: {
  21022. height: math.unit(6 + 8 / 12, "feet"),
  21023. weight: math.unit(300, "lb"),
  21024. name: "Demi Naga",
  21025. image: {
  21026. source: "./media/characters/tahajin/demi-naga.svg",
  21027. extra: 643 / 615,
  21028. bottom: 0.1
  21029. }
  21030. },
  21031. data: {
  21032. height: math.unit(5, "inches"),
  21033. weight: math.unit(0.1, "lb"),
  21034. name: "Data",
  21035. image: {
  21036. source: "./media/characters/tahajin/data.svg"
  21037. }
  21038. },
  21039. fluu: {
  21040. height: math.unit(5 + 7 / 12, "feet"),
  21041. weight: math.unit(140, "lb"),
  21042. name: "Fluu",
  21043. image: {
  21044. source: "./media/characters/tahajin/fluu.svg",
  21045. extra: 628 / 592,
  21046. bottom: 0.02
  21047. }
  21048. },
  21049. starWarrior: {
  21050. height: math.unit(4 + 5 / 12, "feet"),
  21051. weight: math.unit(50, "lb"),
  21052. name: "Star Warrior",
  21053. image: {
  21054. source: "./media/characters/tahajin/star-warrior.svg"
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(25 + 6 / 12, "feet"),
  21062. default: true
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21068. {
  21069. front: {
  21070. height: math.unit(8, "feet"),
  21071. weight: math.unit(350, "lb"),
  21072. name: "Front",
  21073. image: {
  21074. source: "./media/characters/gabira/front.svg",
  21075. extra: 608 / 580,
  21076. bottom: 0.03
  21077. }
  21078. },
  21079. back: {
  21080. height: math.unit(8, "feet"),
  21081. weight: math.unit(350, "lb"),
  21082. name: "Back",
  21083. image: {
  21084. source: "./media/characters/gabira/back.svg",
  21085. extra: 608 / 580,
  21086. bottom: 0.03
  21087. }
  21088. },
  21089. },
  21090. [
  21091. {
  21092. name: "Normal",
  21093. height: math.unit(8, "feet"),
  21094. default: true
  21095. },
  21096. ]
  21097. ))
  21098. characterMakers.push(() => makeCharacter(
  21099. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21100. {
  21101. front: {
  21102. height: math.unit(5 + 3 / 12, "feet"),
  21103. weight: math.unit(137, "lb"),
  21104. name: "Front",
  21105. image: {
  21106. source: "./media/characters/sasha-katraine/front.svg",
  21107. bottom: 0.045
  21108. }
  21109. },
  21110. },
  21111. [
  21112. {
  21113. name: "Micro",
  21114. height: math.unit(5, "inches")
  21115. },
  21116. {
  21117. name: "Normal",
  21118. height: math.unit(5 + 3 / 12, "feet"),
  21119. default: true
  21120. },
  21121. ]
  21122. ))
  21123. characterMakers.push(() => makeCharacter(
  21124. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21125. {
  21126. side: {
  21127. height: math.unit(4, "inches"),
  21128. weight: math.unit(200, "grams"),
  21129. name: "Side",
  21130. image: {
  21131. source: "./media/characters/der/side.svg",
  21132. extra: 719 / 400,
  21133. bottom: 30.6 / 749.9187
  21134. }
  21135. },
  21136. },
  21137. [
  21138. {
  21139. name: "Micro",
  21140. height: math.unit(4, "inches"),
  21141. default: true
  21142. },
  21143. ]
  21144. ))
  21145. characterMakers.push(() => makeCharacter(
  21146. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21147. {
  21148. side: {
  21149. height: math.unit(30, "meters"),
  21150. weight: math.unit(700, "tonnes"),
  21151. name: "Side",
  21152. image: {
  21153. source: "./media/characters/fixerdragon/side.svg",
  21154. extra: (1293.0514 - 116.03) / 1106.86,
  21155. bottom: 116.03 / 1293.0514
  21156. }
  21157. },
  21158. },
  21159. [
  21160. {
  21161. name: "Planck",
  21162. height: math.unit(1.6e-35, "meters")
  21163. },
  21164. {
  21165. name: "Micro",
  21166. height: math.unit(0.4, "meters")
  21167. },
  21168. {
  21169. name: "Normal",
  21170. height: math.unit(30, "meters"),
  21171. default: true
  21172. },
  21173. {
  21174. name: "Megamacro",
  21175. height: math.unit(1.2, "megameters")
  21176. },
  21177. {
  21178. name: "Teramacro",
  21179. height: math.unit(130, "terameters")
  21180. },
  21181. {
  21182. name: "Yottamacro",
  21183. height: math.unit(6200, "yottameters")
  21184. },
  21185. ]
  21186. ));
  21187. characterMakers.push(() => makeCharacter(
  21188. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21189. {
  21190. front: {
  21191. height: math.unit(8, "feet"),
  21192. weight: math.unit(250, "lb"),
  21193. name: "Front",
  21194. image: {
  21195. source: "./media/characters/kite/front.svg",
  21196. extra: 2796 / 2659,
  21197. bottom: 0.002
  21198. }
  21199. },
  21200. },
  21201. [
  21202. {
  21203. name: "Normal",
  21204. height: math.unit(8, "feet"),
  21205. default: true
  21206. },
  21207. {
  21208. name: "Macro",
  21209. height: math.unit(360, "feet")
  21210. },
  21211. {
  21212. name: "Megamacro",
  21213. height: math.unit(1500, "feet")
  21214. },
  21215. ]
  21216. ))
  21217. characterMakers.push(() => makeCharacter(
  21218. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21219. {
  21220. front: {
  21221. height: math.unit(5 + 10 / 12, "feet"),
  21222. weight: math.unit(150, "lb"),
  21223. name: "Front",
  21224. image: {
  21225. source: "./media/characters/poojawa-vynar/front.svg",
  21226. extra: (1506.1547 - 55) / 1356.6,
  21227. bottom: 55 / 1506.1547
  21228. }
  21229. },
  21230. frontTailless: {
  21231. height: math.unit(5 + 10 / 12, "feet"),
  21232. weight: math.unit(150, "lb"),
  21233. name: "Front (Tailless)",
  21234. image: {
  21235. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21236. extra: (1506.1547 - 55) / 1356.6,
  21237. bottom: 55 / 1506.1547
  21238. }
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Normal",
  21244. height: math.unit(5 + 10 / 12, "feet"),
  21245. default: true
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21251. {
  21252. front: {
  21253. height: math.unit(293, "meters"),
  21254. weight: math.unit(70400, "tons"),
  21255. name: "Front",
  21256. image: {
  21257. source: "./media/characters/violette/front.svg",
  21258. extra: 1227 / 1180,
  21259. bottom: 0.005
  21260. }
  21261. },
  21262. back: {
  21263. height: math.unit(293, "meters"),
  21264. weight: math.unit(70400, "tons"),
  21265. name: "Back",
  21266. image: {
  21267. source: "./media/characters/violette/back.svg",
  21268. extra: 1227 / 1180,
  21269. bottom: 0.005
  21270. }
  21271. },
  21272. },
  21273. [
  21274. {
  21275. name: "Macro",
  21276. height: math.unit(293, "meters"),
  21277. default: true
  21278. },
  21279. ]
  21280. ))
  21281. characterMakers.push(() => makeCharacter(
  21282. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21283. {
  21284. front: {
  21285. height: math.unit(1050, "feet"),
  21286. weight: math.unit(200000, "tons"),
  21287. name: "Front",
  21288. image: {
  21289. source: "./media/characters/alessandra/front.svg",
  21290. extra: 960 / 912,
  21291. bottom: 0.06
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Macro",
  21298. height: math.unit(1050, "feet")
  21299. },
  21300. {
  21301. name: "Macro+",
  21302. height: math.unit(900, "meters"),
  21303. default: true
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21309. {
  21310. front: {
  21311. height: math.unit(5, "feet"),
  21312. weight: math.unit(187, "lb"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/person/front.svg",
  21316. extra: 3087 / 2945,
  21317. bottom: 91 / 3181
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Micro",
  21324. height: math.unit(3, "inches")
  21325. },
  21326. {
  21327. name: "Normal",
  21328. height: math.unit(5, "feet"),
  21329. default: true
  21330. },
  21331. {
  21332. name: "Macro",
  21333. height: math.unit(90, "feet")
  21334. },
  21335. {
  21336. name: "Max Size",
  21337. height: math.unit(280, "feet")
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21343. {
  21344. front: {
  21345. height: math.unit(4.5, "meters"),
  21346. weight: math.unit(3200, "lb"),
  21347. name: "Front",
  21348. image: {
  21349. source: "./media/characters/ty/front.svg",
  21350. extra: 1038 / 960,
  21351. bottom: 31.156 / 1068
  21352. }
  21353. },
  21354. back: {
  21355. height: math.unit(4.5, "meters"),
  21356. weight: math.unit(3200, "lb"),
  21357. name: "Back",
  21358. image: {
  21359. source: "./media/characters/ty/back.svg",
  21360. extra: 1044 / 966,
  21361. bottom: 7.48 / 1049
  21362. }
  21363. },
  21364. },
  21365. [
  21366. {
  21367. name: "Normal",
  21368. height: math.unit(4.5, "meters"),
  21369. default: true
  21370. },
  21371. ]
  21372. ))
  21373. characterMakers.push(() => makeCharacter(
  21374. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21375. {
  21376. front: {
  21377. height: math.unit(5 + 4 / 12, "feet"),
  21378. weight: math.unit(115, "lb"),
  21379. name: "Front",
  21380. image: {
  21381. source: "./media/characters/rocky/front.svg",
  21382. extra: 1012 / 975,
  21383. bottom: 54 / 1066
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Normal",
  21390. height: math.unit(5 + 4 / 12, "feet"),
  21391. default: true
  21392. },
  21393. ]
  21394. ))
  21395. characterMakers.push(() => makeCharacter(
  21396. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21397. {
  21398. upright: {
  21399. height: math.unit(6, "meters"),
  21400. weight: math.unit(4000, "kg"),
  21401. name: "Upright",
  21402. image: {
  21403. source: "./media/characters/ruin/upright.svg",
  21404. extra: 668 / 661,
  21405. bottom: 42 / 799.8396
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Normal",
  21412. height: math.unit(6, "meters"),
  21413. default: true
  21414. },
  21415. ]
  21416. ))
  21417. characterMakers.push(() => makeCharacter(
  21418. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21419. {
  21420. front: {
  21421. height: math.unit(5, "feet"),
  21422. weight: math.unit(106, "lb"),
  21423. name: "Front",
  21424. image: {
  21425. source: "./media/characters/robin/front.svg",
  21426. extra: 862 / 799,
  21427. bottom: 42.4 / 914.8856
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(5, "feet"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21441. {
  21442. side: {
  21443. height: math.unit(3, "feet"),
  21444. weight: math.unit(225, "lb"),
  21445. name: "Side",
  21446. image: {
  21447. source: "./media/characters/saian/side.svg",
  21448. extra: 566 / 356,
  21449. bottom: 79.7 / 643
  21450. }
  21451. },
  21452. maw: {
  21453. height: math.unit(2.85, "feet"),
  21454. name: "Maw",
  21455. image: {
  21456. source: "./media/characters/saian/maw.svg"
  21457. }
  21458. },
  21459. },
  21460. [
  21461. {
  21462. name: "Normal",
  21463. height: math.unit(3, "feet"),
  21464. default: true
  21465. },
  21466. ]
  21467. ))
  21468. characterMakers.push(() => makeCharacter(
  21469. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21470. {
  21471. side: {
  21472. height: math.unit(8, "feet"),
  21473. weight: math.unit(300, "lb"),
  21474. name: "Side",
  21475. image: {
  21476. source: "./media/characters/equus-silvermane/side.svg",
  21477. extra: 2176 / 2050,
  21478. bottom: 65.7 / 2245
  21479. }
  21480. },
  21481. front: {
  21482. height: math.unit(8, "feet"),
  21483. weight: math.unit(300, "lb"),
  21484. name: "Front",
  21485. image: {
  21486. source: "./media/characters/equus-silvermane/front.svg",
  21487. extra: 4633 / 4400,
  21488. bottom: 71.3 / 4706.915
  21489. }
  21490. },
  21491. sideStepping: {
  21492. height: math.unit(8, "feet"),
  21493. weight: math.unit(300, "lb"),
  21494. name: "Side (Stepping)",
  21495. image: {
  21496. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21497. extra: 1968 / 1860,
  21498. bottom: 16.4 / 1989
  21499. }
  21500. },
  21501. },
  21502. [
  21503. {
  21504. name: "Normal",
  21505. height: math.unit(8, "feet")
  21506. },
  21507. {
  21508. name: "Minimacro",
  21509. height: math.unit(75, "feet"),
  21510. default: true
  21511. },
  21512. {
  21513. name: "Macro",
  21514. height: math.unit(150, "feet")
  21515. },
  21516. {
  21517. name: "Macro+",
  21518. height: math.unit(1000, "feet")
  21519. },
  21520. {
  21521. name: "Megamacro",
  21522. height: math.unit(1, "mile")
  21523. },
  21524. ]
  21525. ))
  21526. characterMakers.push(() => makeCharacter(
  21527. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21528. {
  21529. side: {
  21530. height: math.unit(20, "feet"),
  21531. weight: math.unit(30000, "kg"),
  21532. name: "Side",
  21533. image: {
  21534. source: "./media/characters/windar/side.svg",
  21535. extra: 1491 / 1248,
  21536. bottom: 82.56 / 1568
  21537. }
  21538. },
  21539. },
  21540. [
  21541. {
  21542. name: "Normal",
  21543. height: math.unit(20, "feet"),
  21544. default: true
  21545. },
  21546. ]
  21547. ))
  21548. characterMakers.push(() => makeCharacter(
  21549. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21550. {
  21551. side: {
  21552. height: math.unit(15.66, "feet"),
  21553. weight: math.unit(150, "lb"),
  21554. name: "Side",
  21555. image: {
  21556. source: "./media/characters/melody/side.svg",
  21557. extra: 1097 / 944,
  21558. bottom: 11.8 / 1109
  21559. }
  21560. },
  21561. sideOutfit: {
  21562. height: math.unit(15.66, "feet"),
  21563. weight: math.unit(150, "lb"),
  21564. name: "Side (Outfit)",
  21565. image: {
  21566. source: "./media/characters/melody/side-outfit.svg",
  21567. extra: 1097 / 944,
  21568. bottom: 11.8 / 1109
  21569. }
  21570. },
  21571. },
  21572. [
  21573. {
  21574. name: "Normal",
  21575. height: math.unit(15.66, "feet"),
  21576. default: true
  21577. },
  21578. ]
  21579. ))
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21582. {
  21583. front: {
  21584. height: math.unit(8, "feet"),
  21585. weight: math.unit(325, "lb"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/windera/front.svg",
  21589. extra: 3180 / 2845,
  21590. bottom: 178 / 3365
  21591. }
  21592. },
  21593. },
  21594. [
  21595. {
  21596. name: "Normal",
  21597. height: math.unit(8, "feet"),
  21598. default: true
  21599. },
  21600. ]
  21601. ))
  21602. characterMakers.push(() => makeCharacter(
  21603. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21604. {
  21605. front: {
  21606. height: math.unit(28.75, "feet"),
  21607. weight: math.unit(2000, "kg"),
  21608. name: "Front",
  21609. image: {
  21610. source: "./media/characters/sonear/front.svg",
  21611. extra: 1041.1 / 964.9,
  21612. bottom: 53.7 / 1096.6
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(28.75, "feet"),
  21620. default: true
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21626. {
  21627. side: {
  21628. height: math.unit(25.5, "feet"),
  21629. weight: math.unit(23000, "kg"),
  21630. name: "Side",
  21631. image: {
  21632. source: "./media/characters/kanara/side.svg"
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(25.5, "feet"),
  21640. default: true
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21646. {
  21647. side: {
  21648. height: math.unit(10, "feet"),
  21649. weight: math.unit(1000, "kg"),
  21650. name: "Side",
  21651. image: {
  21652. source: "./media/characters/ereus/side.svg",
  21653. extra: 1157 / 959,
  21654. bottom: 153 / 1312.5
  21655. }
  21656. },
  21657. },
  21658. [
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(10, "feet"),
  21662. default: true
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21668. {
  21669. side: {
  21670. height: math.unit(4.5, "feet"),
  21671. weight: math.unit(500, "lb"),
  21672. name: "Side",
  21673. image: {
  21674. source: "./media/characters/e-ter/side.svg",
  21675. extra: 1550 / 1248,
  21676. bottom: 146 / 1694
  21677. }
  21678. },
  21679. },
  21680. [
  21681. {
  21682. name: "Normal",
  21683. height: math.unit(4.5, "feet"),
  21684. default: true
  21685. },
  21686. ]
  21687. ))
  21688. characterMakers.push(() => makeCharacter(
  21689. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21690. {
  21691. side: {
  21692. height: math.unit(9.7, "feet"),
  21693. weight: math.unit(4000, "kg"),
  21694. name: "Side",
  21695. image: {
  21696. source: "./media/characters/yamie/side.svg"
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Normal",
  21703. height: math.unit(9.7, "feet"),
  21704. default: true
  21705. },
  21706. ]
  21707. ))
  21708. characterMakers.push(() => makeCharacter(
  21709. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21710. {
  21711. front: {
  21712. height: math.unit(50, "feet"),
  21713. weight: math.unit(50000, "kg"),
  21714. name: "Front",
  21715. image: {
  21716. source: "./media/characters/anders/front.svg",
  21717. extra: 570 / 539,
  21718. bottom: 14.7 / 586.7
  21719. }
  21720. },
  21721. },
  21722. [
  21723. {
  21724. name: "Large",
  21725. height: math.unit(50, "feet")
  21726. },
  21727. {
  21728. name: "Macro",
  21729. height: math.unit(2000, "feet"),
  21730. default: true
  21731. },
  21732. {
  21733. name: "Megamacro",
  21734. height: math.unit(12, "miles")
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21740. {
  21741. front: {
  21742. height: math.unit(7 + 2 / 12, "feet"),
  21743. weight: math.unit(300, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/reban/front.svg",
  21747. extra: 516 / 487,
  21748. bottom: 42.82 / 558.356
  21749. }
  21750. },
  21751. dick: {
  21752. height: math.unit(7 / 5, "feet"),
  21753. name: "Dick",
  21754. image: {
  21755. source: "./media/characters/reban/dick.svg"
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Natural Height",
  21762. height: math.unit(7 + 2 / 12, "feet")
  21763. },
  21764. {
  21765. name: "Macro",
  21766. height: math.unit(500, "feet"),
  21767. default: true
  21768. },
  21769. {
  21770. name: "Canon Height",
  21771. height: math.unit(50, "AU")
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21777. {
  21778. front: {
  21779. height: math.unit(6, "feet"),
  21780. weight: math.unit(150, "lb"),
  21781. name: "Front",
  21782. image: {
  21783. source: "./media/characters/terrance-keayes/front.svg",
  21784. extra: 1.005,
  21785. bottom: 151 / 1615
  21786. }
  21787. },
  21788. side: {
  21789. height: math.unit(6, "feet"),
  21790. weight: math.unit(150, "lb"),
  21791. name: "Side",
  21792. image: {
  21793. source: "./media/characters/terrance-keayes/side.svg",
  21794. extra: 1.005,
  21795. bottom: 129.4 / 1544
  21796. }
  21797. },
  21798. back: {
  21799. height: math.unit(6, "feet"),
  21800. weight: math.unit(150, "lb"),
  21801. name: "Back",
  21802. image: {
  21803. source: "./media/characters/terrance-keayes/back.svg",
  21804. extra: 1.005,
  21805. bottom: 58.4 / 1557.3
  21806. }
  21807. },
  21808. dick: {
  21809. height: math.unit(6 * 0.208, "feet"),
  21810. name: "Dick",
  21811. image: {
  21812. source: "./media/characters/terrance-keayes/dick.svg"
  21813. }
  21814. },
  21815. },
  21816. [
  21817. {
  21818. name: "Canon Height",
  21819. height: math.unit(35, "miles"),
  21820. default: true
  21821. },
  21822. ]
  21823. ))
  21824. characterMakers.push(() => makeCharacter(
  21825. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21826. {
  21827. front: {
  21828. height: math.unit(6, "feet"),
  21829. weight: math.unit(150, "lb"),
  21830. name: "Front",
  21831. image: {
  21832. source: "./media/characters/ofelia/front.svg",
  21833. extra: 546 / 541,
  21834. bottom: 39 / 583
  21835. }
  21836. },
  21837. back: {
  21838. height: math.unit(6, "feet"),
  21839. weight: math.unit(150, "lb"),
  21840. name: "Back",
  21841. image: {
  21842. source: "./media/characters/ofelia/back.svg",
  21843. extra: 564 / 559.5,
  21844. bottom: 8.69 / 573.02
  21845. }
  21846. },
  21847. maw: {
  21848. height: math.unit(1, "feet"),
  21849. name: "Maw",
  21850. image: {
  21851. source: "./media/characters/ofelia/maw.svg"
  21852. }
  21853. },
  21854. foot: {
  21855. height: math.unit(1.949, "feet"),
  21856. name: "Foot",
  21857. image: {
  21858. source: "./media/characters/ofelia/foot.svg"
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Canon Height",
  21865. height: math.unit(2000, "miles"),
  21866. default: true
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21872. {
  21873. front: {
  21874. height: math.unit(6, "feet"),
  21875. weight: math.unit(150, "lb"),
  21876. name: "Front",
  21877. image: {
  21878. source: "./media/characters/samuel/front.svg",
  21879. extra: 265 / 258,
  21880. bottom: 2 / 266.1566
  21881. }
  21882. },
  21883. },
  21884. [
  21885. {
  21886. name: "Macro",
  21887. height: math.unit(100, "feet"),
  21888. default: true
  21889. },
  21890. {
  21891. name: "Full Size",
  21892. height: math.unit(1000, "miles")
  21893. },
  21894. ]
  21895. ))
  21896. characterMakers.push(() => makeCharacter(
  21897. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21898. {
  21899. front: {
  21900. height: math.unit(6, "feet"),
  21901. weight: math.unit(300, "lb"),
  21902. name: "Front",
  21903. image: {
  21904. source: "./media/characters/beishir-kiel/front.svg",
  21905. extra: 569 / 547,
  21906. bottom: 41.9 / 609
  21907. }
  21908. },
  21909. maw: {
  21910. height: math.unit(6 * 0.202, "feet"),
  21911. name: "Maw",
  21912. image: {
  21913. source: "./media/characters/beishir-kiel/maw.svg"
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Macro",
  21920. height: math.unit(300, "feet"),
  21921. default: true
  21922. },
  21923. ]
  21924. ))
  21925. characterMakers.push(() => makeCharacter(
  21926. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21927. {
  21928. front: {
  21929. height: math.unit(5 + 7/12, "feet"),
  21930. weight: math.unit(120, "lb"),
  21931. name: "Front",
  21932. image: {
  21933. source: "./media/characters/logan-grey/front.svg",
  21934. extra: 1836/1738,
  21935. bottom: 108/1944
  21936. }
  21937. },
  21938. back: {
  21939. height: math.unit(5 + 7/12, "feet"),
  21940. weight: math.unit(120, "lb"),
  21941. name: "Back",
  21942. image: {
  21943. source: "./media/characters/logan-grey/back.svg",
  21944. extra: 1880/1794,
  21945. bottom: 24/1904
  21946. }
  21947. },
  21948. frontSfw: {
  21949. height: math.unit(5 + 7/12, "feet"),
  21950. weight: math.unit(120, "lb"),
  21951. name: "Front (SFW)",
  21952. image: {
  21953. source: "./media/characters/logan-grey/front-sfw.svg",
  21954. extra: 1836/1738,
  21955. bottom: 108/1944
  21956. }
  21957. },
  21958. backSfw: {
  21959. height: math.unit(5 + 7/12, "feet"),
  21960. weight: math.unit(120, "lb"),
  21961. name: "Back (SFW)",
  21962. image: {
  21963. source: "./media/characters/logan-grey/back-sfw.svg",
  21964. extra: 1880/1794,
  21965. bottom: 24/1904
  21966. }
  21967. },
  21968. hands: {
  21969. height: math.unit(0.84, "feet"),
  21970. name: "Hands",
  21971. image: {
  21972. source: "./media/characters/logan-grey/hands.svg"
  21973. }
  21974. },
  21975. paws: {
  21976. height: math.unit(0.72, "feet"),
  21977. name: "Paws",
  21978. image: {
  21979. source: "./media/characters/logan-grey/paws.svg"
  21980. }
  21981. },
  21982. cock: {
  21983. height: math.unit(1.45, "feet"),
  21984. name: "Cock",
  21985. image: {
  21986. source: "./media/characters/logan-grey/cock.svg"
  21987. }
  21988. },
  21989. cockAlt: {
  21990. height: math.unit(1.437, "feet"),
  21991. name: "Cock (alt)",
  21992. image: {
  21993. source: "./media/characters/logan-grey/cock-alt.svg"
  21994. }
  21995. },
  21996. },
  21997. [
  21998. {
  21999. name: "Normal",
  22000. height: math.unit(5 + 8 / 12, "feet")
  22001. },
  22002. {
  22003. name: "The 500 Foot Femboy",
  22004. height: math.unit(500, "feet"),
  22005. default: true
  22006. },
  22007. {
  22008. name: "Megmacro",
  22009. height: math.unit(20, "miles")
  22010. },
  22011. ]
  22012. ))
  22013. characterMakers.push(() => makeCharacter(
  22014. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22015. {
  22016. front: {
  22017. height: math.unit(8 + 2 / 12, "feet"),
  22018. weight: math.unit(275, "lb"),
  22019. name: "Front",
  22020. image: {
  22021. source: "./media/characters/draganta/front.svg",
  22022. extra: 1177 / 1135,
  22023. bottom: 33.46 / 1212.1
  22024. }
  22025. },
  22026. },
  22027. [
  22028. {
  22029. name: "Normal",
  22030. height: math.unit(8 + 6 / 12, "feet"),
  22031. default: true
  22032. },
  22033. {
  22034. name: "Macro",
  22035. height: math.unit(150, "feet")
  22036. },
  22037. {
  22038. name: "Megamacro",
  22039. height: math.unit(1000, "miles")
  22040. },
  22041. ]
  22042. ))
  22043. characterMakers.push(() => makeCharacter(
  22044. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22045. {
  22046. front: {
  22047. height: math.unit(1.72, "m"),
  22048. weight: math.unit(80, "lb"),
  22049. name: "Front",
  22050. image: {
  22051. source: "./media/characters/voski/front.svg",
  22052. extra: 2076.22 / 2022.4,
  22053. bottom: 102.7 / 2177.3866
  22054. }
  22055. },
  22056. frontNsfw: {
  22057. height: math.unit(1.72, "m"),
  22058. weight: math.unit(80, "lb"),
  22059. name: "Front (NSFW)",
  22060. image: {
  22061. source: "./media/characters/voski/front-nsfw.svg",
  22062. extra: 2076.22 / 2022.4,
  22063. bottom: 102.7 / 2177.3866
  22064. }
  22065. },
  22066. back: {
  22067. height: math.unit(1.72, "m"),
  22068. weight: math.unit(80, "lb"),
  22069. name: "Back",
  22070. image: {
  22071. source: "./media/characters/voski/back.svg",
  22072. extra: 2104 / 2051,
  22073. bottom: 10.45 / 2113.63
  22074. }
  22075. },
  22076. },
  22077. [
  22078. {
  22079. name: "Normal",
  22080. height: math.unit(1.72, "m")
  22081. },
  22082. {
  22083. name: "Macro",
  22084. height: math.unit(55, "m"),
  22085. default: true
  22086. },
  22087. {
  22088. name: "Macro+",
  22089. height: math.unit(300, "m")
  22090. },
  22091. {
  22092. name: "Macro++",
  22093. height: math.unit(700, "m")
  22094. },
  22095. {
  22096. name: "Macro+++",
  22097. height: math.unit(4500, "m")
  22098. },
  22099. {
  22100. name: "Macro++++",
  22101. height: math.unit(45, "km")
  22102. },
  22103. {
  22104. name: "Macro+++++",
  22105. height: math.unit(1220, "km")
  22106. },
  22107. ]
  22108. ))
  22109. characterMakers.push(() => makeCharacter(
  22110. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22111. {
  22112. front: {
  22113. height: math.unit(2.3, "m"),
  22114. weight: math.unit(304, "kg"),
  22115. name: "Front",
  22116. image: {
  22117. source: "./media/characters/icowom-lee/front.svg",
  22118. extra: 985 / 955,
  22119. bottom: 25.4 / 1012
  22120. }
  22121. },
  22122. fronttentacles: {
  22123. height: math.unit(2.3, "m"),
  22124. weight: math.unit(304, "kg"),
  22125. name: "Front-tentacles",
  22126. image: {
  22127. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22128. extra: 985 / 955,
  22129. bottom: 25.4 / 1012
  22130. }
  22131. },
  22132. back: {
  22133. height: math.unit(2.3, "m"),
  22134. weight: math.unit(304, "kg"),
  22135. name: "Back",
  22136. image: {
  22137. source: "./media/characters/icowom-lee/back.svg",
  22138. extra: 975 / 954,
  22139. bottom: 9.5 / 985
  22140. }
  22141. },
  22142. backtentacles: {
  22143. height: math.unit(2.3, "m"),
  22144. weight: math.unit(304, "kg"),
  22145. name: "Back-tentacles",
  22146. image: {
  22147. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22148. extra: 975 / 954,
  22149. bottom: 9.5 / 985
  22150. }
  22151. },
  22152. frontDressed: {
  22153. height: math.unit(2.3, "m"),
  22154. weight: math.unit(304, "kg"),
  22155. name: "Front (Dressed)",
  22156. image: {
  22157. source: "./media/characters/icowom-lee/front-dressed.svg",
  22158. extra: 3076 / 2933,
  22159. bottom: 51.4 / 3125.1889
  22160. }
  22161. },
  22162. rump: {
  22163. height: math.unit(0.776, "meters"),
  22164. name: "Rump",
  22165. image: {
  22166. source: "./media/characters/icowom-lee/rump.svg"
  22167. }
  22168. },
  22169. genitals: {
  22170. height: math.unit(0.78, "meters"),
  22171. name: "Genitals",
  22172. image: {
  22173. source: "./media/characters/icowom-lee/genitals.svg"
  22174. }
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "Normal",
  22180. height: math.unit(2.3, "meters"),
  22181. default: true
  22182. },
  22183. {
  22184. name: "Macro",
  22185. height: math.unit(94, "meters"),
  22186. default: true
  22187. },
  22188. ]
  22189. ))
  22190. characterMakers.push(() => makeCharacter(
  22191. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22192. {
  22193. front: {
  22194. height: math.unit(22, "meters"),
  22195. weight: math.unit(21000, "kg"),
  22196. name: "Front",
  22197. image: {
  22198. source: "./media/characters/shock-diamond/front.svg",
  22199. extra: 2204 / 2053,
  22200. bottom: 65 / 2239.47
  22201. }
  22202. },
  22203. frontNude: {
  22204. height: math.unit(22, "meters"),
  22205. weight: math.unit(21000, "kg"),
  22206. name: "Front (Nude)",
  22207. image: {
  22208. source: "./media/characters/shock-diamond/front-nude.svg",
  22209. extra: 2514 / 2285,
  22210. bottom: 13 / 2527.56
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Normal",
  22217. height: math.unit(3, "meters")
  22218. },
  22219. {
  22220. name: "Macro",
  22221. height: math.unit(22, "meters"),
  22222. default: true
  22223. },
  22224. ]
  22225. ))
  22226. characterMakers.push(() => makeCharacter(
  22227. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22228. {
  22229. front: {
  22230. height: math.unit(5 + 4 / 12, "feet"),
  22231. weight: math.unit(120, "lb"),
  22232. name: "Front",
  22233. image: {
  22234. source: "./media/characters/rory/front.svg",
  22235. extra: 589 / 556,
  22236. bottom: 45.7 / 635.76
  22237. }
  22238. },
  22239. frontNude: {
  22240. height: math.unit(5 + 4 / 12, "feet"),
  22241. weight: math.unit(120, "lb"),
  22242. name: "Front (Nude)",
  22243. image: {
  22244. source: "./media/characters/rory/front-nude.svg",
  22245. extra: 589 / 556,
  22246. bottom: 45.7 / 635.76
  22247. }
  22248. },
  22249. side: {
  22250. height: math.unit(5 + 4 / 12, "feet"),
  22251. weight: math.unit(120, "lb"),
  22252. name: "Side",
  22253. image: {
  22254. source: "./media/characters/rory/side.svg",
  22255. extra: 597 / 564,
  22256. bottom: 55 / 653
  22257. }
  22258. },
  22259. back: {
  22260. height: math.unit(5 + 4 / 12, "feet"),
  22261. weight: math.unit(120, "lb"),
  22262. name: "Back",
  22263. image: {
  22264. source: "./media/characters/rory/back.svg",
  22265. extra: 620 / 585,
  22266. bottom: 8.86 / 630.43
  22267. }
  22268. },
  22269. dick: {
  22270. height: math.unit(0.86, "feet"),
  22271. name: "Dick",
  22272. image: {
  22273. source: "./media/characters/rory/dick.svg"
  22274. }
  22275. },
  22276. },
  22277. [
  22278. {
  22279. name: "Normal",
  22280. height: math.unit(5 + 4 / 12, "feet"),
  22281. default: true
  22282. },
  22283. {
  22284. name: "Macro",
  22285. height: math.unit(100, "feet")
  22286. },
  22287. {
  22288. name: "Macro+",
  22289. height: math.unit(140, "feet")
  22290. },
  22291. {
  22292. name: "Macro++",
  22293. height: math.unit(300, "feet")
  22294. },
  22295. ]
  22296. ))
  22297. characterMakers.push(() => makeCharacter(
  22298. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22299. {
  22300. front: {
  22301. height: math.unit(5 + 9 / 12, "feet"),
  22302. weight: math.unit(190, "lb"),
  22303. name: "Front",
  22304. image: {
  22305. source: "./media/characters/sprisk/front.svg",
  22306. extra: 1225 / 1180,
  22307. bottom: 42.7 / 1266.4
  22308. }
  22309. },
  22310. frontNsfw: {
  22311. height: math.unit(5 + 9 / 12, "feet"),
  22312. weight: math.unit(190, "lb"),
  22313. name: "Front (NSFW)",
  22314. image: {
  22315. source: "./media/characters/sprisk/front-nsfw.svg",
  22316. extra: 1225 / 1180,
  22317. bottom: 42.7 / 1266.4
  22318. }
  22319. },
  22320. back: {
  22321. height: math.unit(5 + 9 / 12, "feet"),
  22322. weight: math.unit(190, "lb"),
  22323. name: "Back",
  22324. image: {
  22325. source: "./media/characters/sprisk/back.svg",
  22326. extra: 1247 / 1200,
  22327. bottom: 5.6 / 1253.04
  22328. }
  22329. },
  22330. },
  22331. [
  22332. {
  22333. name: "Tiny",
  22334. height: math.unit(2, "inches")
  22335. },
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(5 + 9 / 12, "feet"),
  22339. default: true
  22340. },
  22341. {
  22342. name: "Mini Macro",
  22343. height: math.unit(18, "feet")
  22344. },
  22345. {
  22346. name: "Macro",
  22347. height: math.unit(100, "feet")
  22348. },
  22349. {
  22350. name: "MACRO",
  22351. height: math.unit(50, "miles")
  22352. },
  22353. {
  22354. name: "M A C R O",
  22355. height: math.unit(300, "miles")
  22356. },
  22357. ]
  22358. ))
  22359. characterMakers.push(() => makeCharacter(
  22360. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22361. {
  22362. side: {
  22363. height: math.unit(15.6, "meters"),
  22364. weight: math.unit(700000, "kg"),
  22365. name: "Side",
  22366. image: {
  22367. source: "./media/characters/bunsen/side.svg",
  22368. extra: 1644 / 358
  22369. }
  22370. },
  22371. foot: {
  22372. height: math.unit(1.611 * 1644 / 358, "meter"),
  22373. name: "Foot",
  22374. image: {
  22375. source: "./media/characters/bunsen/foot.svg"
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Small",
  22382. height: math.unit(10, "feet")
  22383. },
  22384. {
  22385. name: "Normal",
  22386. height: math.unit(15.6, "meters"),
  22387. default: true
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22393. {
  22394. front: {
  22395. height: math.unit(4 + 11 / 12, "feet"),
  22396. weight: math.unit(140, "lb"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/sesh/front.svg",
  22400. extra: 3420 / 3231,
  22401. bottom: 72 / 3949.5
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Normal",
  22408. height: math.unit(4 + 11 / 12, "feet")
  22409. },
  22410. {
  22411. name: "Grown",
  22412. height: math.unit(15, "feet"),
  22413. default: true
  22414. },
  22415. {
  22416. name: "Macro",
  22417. height: math.unit(1500, "feet")
  22418. },
  22419. {
  22420. name: "Megamacro",
  22421. height: math.unit(30, "miles")
  22422. },
  22423. {
  22424. name: "Continental",
  22425. height: math.unit(3000, "miles")
  22426. },
  22427. {
  22428. name: "Gravity Mass",
  22429. height: math.unit(300000, "miles")
  22430. },
  22431. {
  22432. name: "Planet Buster",
  22433. height: math.unit(30000000, "miles")
  22434. },
  22435. {
  22436. name: "Big",
  22437. height: math.unit(3000000000, "miles")
  22438. },
  22439. ]
  22440. ))
  22441. characterMakers.push(() => makeCharacter(
  22442. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22443. {
  22444. front: {
  22445. height: math.unit(9, "feet"),
  22446. weight: math.unit(350, "lb"),
  22447. name: "Front",
  22448. image: {
  22449. source: "./media/characters/pepper/front.svg",
  22450. extra: 1448 / 1312,
  22451. bottom: 9.4 / 1457.88
  22452. }
  22453. },
  22454. back: {
  22455. height: math.unit(9, "feet"),
  22456. weight: math.unit(350, "lb"),
  22457. name: "Back",
  22458. image: {
  22459. source: "./media/characters/pepper/back.svg",
  22460. extra: 1423 / 1300,
  22461. bottom: 4.6 / 1429
  22462. }
  22463. },
  22464. maw: {
  22465. height: math.unit(0.932, "feet"),
  22466. name: "Maw",
  22467. image: {
  22468. source: "./media/characters/pepper/maw.svg"
  22469. }
  22470. },
  22471. },
  22472. [
  22473. {
  22474. name: "Normal",
  22475. height: math.unit(9, "feet"),
  22476. default: true
  22477. },
  22478. ]
  22479. ))
  22480. characterMakers.push(() => makeCharacter(
  22481. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22482. {
  22483. front: {
  22484. height: math.unit(6, "feet"),
  22485. weight: math.unit(150, "lb"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/maelstrom/front.svg",
  22489. extra: 2100 / 1883,
  22490. bottom: 94 / 2196.7
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Less Kaiju",
  22497. height: math.unit(200, "feet")
  22498. },
  22499. {
  22500. name: "Kaiju",
  22501. height: math.unit(400, "feet"),
  22502. default: true
  22503. },
  22504. {
  22505. name: "Kaiju-er",
  22506. height: math.unit(600, "feet")
  22507. },
  22508. ]
  22509. ))
  22510. characterMakers.push(() => makeCharacter(
  22511. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22512. {
  22513. front: {
  22514. height: math.unit(6 + 5 / 12, "feet"),
  22515. weight: math.unit(180, "lb"),
  22516. name: "Front",
  22517. image: {
  22518. source: "./media/characters/lexir/front.svg",
  22519. extra: 180 / 172,
  22520. bottom: 12 / 192
  22521. }
  22522. },
  22523. back: {
  22524. height: math.unit(6 + 5 / 12, "feet"),
  22525. weight: math.unit(180, "lb"),
  22526. name: "Back",
  22527. image: {
  22528. source: "./media/characters/lexir/back.svg",
  22529. extra: 183.84 / 175.5,
  22530. bottom: 3.1 / 187
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Very Smal",
  22537. height: math.unit(1, "nm")
  22538. },
  22539. {
  22540. name: "Normal",
  22541. height: math.unit(6 + 5 / 12, "feet"),
  22542. default: true
  22543. },
  22544. {
  22545. name: "Macro",
  22546. height: math.unit(1, "mile")
  22547. },
  22548. {
  22549. name: "Megamacro",
  22550. height: math.unit(50, "miles")
  22551. },
  22552. ]
  22553. ))
  22554. characterMakers.push(() => makeCharacter(
  22555. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22556. {
  22557. front: {
  22558. height: math.unit(1.5, "meters"),
  22559. weight: math.unit(100, "lb"),
  22560. name: "Front",
  22561. image: {
  22562. source: "./media/characters/maksio/front.svg",
  22563. extra: 1549 / 1531,
  22564. bottom: 123.7 / 1674.5429
  22565. }
  22566. },
  22567. back: {
  22568. height: math.unit(1.5, "meters"),
  22569. weight: math.unit(100, "lb"),
  22570. name: "Back",
  22571. image: {
  22572. source: "./media/characters/maksio/back.svg",
  22573. extra: 1541 / 1509,
  22574. bottom: 97 / 1639
  22575. }
  22576. },
  22577. hand: {
  22578. height: math.unit(0.621, "feet"),
  22579. name: "Hand",
  22580. image: {
  22581. source: "./media/characters/maksio/hand.svg"
  22582. }
  22583. },
  22584. foot: {
  22585. height: math.unit(1.611, "feet"),
  22586. name: "Foot",
  22587. image: {
  22588. source: "./media/characters/maksio/foot.svg"
  22589. }
  22590. },
  22591. },
  22592. [
  22593. {
  22594. name: "Shrunken",
  22595. height: math.unit(10, "cm")
  22596. },
  22597. {
  22598. name: "Normal",
  22599. height: math.unit(150, "cm"),
  22600. default: true
  22601. },
  22602. ]
  22603. ))
  22604. characterMakers.push(() => makeCharacter(
  22605. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22606. {
  22607. front: {
  22608. height: math.unit(100, "feet"),
  22609. name: "Front",
  22610. image: {
  22611. source: "./media/characters/erza-bear/front.svg",
  22612. extra: 2449 / 2390,
  22613. bottom: 46 / 2494
  22614. }
  22615. },
  22616. back: {
  22617. height: math.unit(100, "feet"),
  22618. name: "Back",
  22619. image: {
  22620. source: "./media/characters/erza-bear/back.svg",
  22621. extra: 2489 / 2430,
  22622. bottom: 85.4 / 2480
  22623. }
  22624. },
  22625. tail: {
  22626. height: math.unit(42, "feet"),
  22627. name: "Tail",
  22628. image: {
  22629. source: "./media/characters/erza-bear/tail.svg"
  22630. }
  22631. },
  22632. tongue: {
  22633. height: math.unit(8, "feet"),
  22634. name: "Tongue",
  22635. image: {
  22636. source: "./media/characters/erza-bear/tongue.svg"
  22637. }
  22638. },
  22639. dick: {
  22640. height: math.unit(10.5, "feet"),
  22641. name: "Dick",
  22642. image: {
  22643. source: "./media/characters/erza-bear/dick.svg"
  22644. }
  22645. },
  22646. dickVertical: {
  22647. height: math.unit(16.9, "feet"),
  22648. name: "Dick (Vertical)",
  22649. image: {
  22650. source: "./media/characters/erza-bear/dick-vertical.svg"
  22651. }
  22652. },
  22653. },
  22654. [
  22655. {
  22656. name: "Macro",
  22657. height: math.unit(100, "feet"),
  22658. default: true
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22664. {
  22665. front: {
  22666. height: math.unit(172, "cm"),
  22667. weight: math.unit(73, "kg"),
  22668. name: "Front",
  22669. image: {
  22670. source: "./media/characters/violet-flor/front.svg",
  22671. extra: 1530 / 1442,
  22672. bottom: 61.9 / 1588.8
  22673. }
  22674. },
  22675. back: {
  22676. height: math.unit(180, "cm"),
  22677. weight: math.unit(73, "kg"),
  22678. name: "Back",
  22679. image: {
  22680. source: "./media/characters/violet-flor/back.svg",
  22681. extra: 1692 / 1630,
  22682. bottom: 20 / 1712
  22683. }
  22684. },
  22685. },
  22686. [
  22687. {
  22688. name: "Normal",
  22689. height: math.unit(172, "cm"),
  22690. default: true
  22691. },
  22692. ]
  22693. ))
  22694. characterMakers.push(() => makeCharacter(
  22695. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22696. {
  22697. front: {
  22698. height: math.unit(6, "feet"),
  22699. weight: math.unit(220, "lb"),
  22700. name: "Front",
  22701. image: {
  22702. source: "./media/characters/lynn-rhea/front.svg",
  22703. extra: 310 / 273
  22704. }
  22705. },
  22706. back: {
  22707. height: math.unit(6, "feet"),
  22708. weight: math.unit(220, "lb"),
  22709. name: "Back",
  22710. image: {
  22711. source: "./media/characters/lynn-rhea/back.svg",
  22712. extra: 310 / 273
  22713. }
  22714. },
  22715. dicks: {
  22716. height: math.unit(0.9, "feet"),
  22717. name: "Dicks",
  22718. image: {
  22719. source: "./media/characters/lynn-rhea/dicks.svg"
  22720. }
  22721. },
  22722. slit: {
  22723. height: math.unit(0.4, "feet"),
  22724. name: "Slit",
  22725. image: {
  22726. source: "./media/characters/lynn-rhea/slit.svg"
  22727. }
  22728. },
  22729. },
  22730. [
  22731. {
  22732. name: "Micro",
  22733. height: math.unit(1, "inch")
  22734. },
  22735. {
  22736. name: "Macro",
  22737. height: math.unit(60, "feet"),
  22738. default: true
  22739. },
  22740. {
  22741. name: "Megamacro",
  22742. height: math.unit(2, "miles")
  22743. },
  22744. {
  22745. name: "Gigamacro",
  22746. height: math.unit(3, "earths")
  22747. },
  22748. {
  22749. name: "Galactic",
  22750. height: math.unit(0.8, "galaxies")
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22756. {
  22757. front: {
  22758. height: math.unit(1600, "feet"),
  22759. weight: math.unit(85758785169, "kg"),
  22760. name: "Front",
  22761. image: {
  22762. source: "./media/characters/valathos/front.svg",
  22763. extra: 1451 / 1339
  22764. }
  22765. },
  22766. },
  22767. [
  22768. {
  22769. name: "Macro",
  22770. height: math.unit(1600, "feet"),
  22771. default: true
  22772. },
  22773. ]
  22774. ))
  22775. characterMakers.push(() => makeCharacter(
  22776. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22777. {
  22778. front: {
  22779. height: math.unit(7 + 5 / 12, "feet"),
  22780. weight: math.unit(300, "lb"),
  22781. name: "Front",
  22782. image: {
  22783. source: "./media/characters/azula/front.svg",
  22784. extra: 3208 / 2880,
  22785. bottom: 80.2 / 3277
  22786. }
  22787. },
  22788. back: {
  22789. height: math.unit(7 + 5 / 12, "feet"),
  22790. weight: math.unit(300, "lb"),
  22791. name: "Back",
  22792. image: {
  22793. source: "./media/characters/azula/back.svg",
  22794. extra: 3169 / 2822,
  22795. bottom: 150.6 / 3321
  22796. }
  22797. },
  22798. },
  22799. [
  22800. {
  22801. name: "Normal",
  22802. height: math.unit(7 + 5 / 12, "feet"),
  22803. default: true
  22804. },
  22805. {
  22806. name: "Big",
  22807. height: math.unit(20, "feet")
  22808. },
  22809. ]
  22810. ))
  22811. characterMakers.push(() => makeCharacter(
  22812. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22813. {
  22814. front: {
  22815. height: math.unit(5 + 1 / 12, "feet"),
  22816. weight: math.unit(110, "lb"),
  22817. name: "Front",
  22818. image: {
  22819. source: "./media/characters/rupert/front.svg",
  22820. extra: 1549 / 1495,
  22821. bottom: 54.2 / 1604.4
  22822. }
  22823. },
  22824. },
  22825. [
  22826. {
  22827. name: "Normal",
  22828. height: math.unit(5 + 1 / 12, "feet"),
  22829. default: true
  22830. },
  22831. ]
  22832. ))
  22833. characterMakers.push(() => makeCharacter(
  22834. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22835. {
  22836. front: {
  22837. height: math.unit(8 + 4 / 12, "feet"),
  22838. weight: math.unit(350, "lb"),
  22839. name: "Front",
  22840. image: {
  22841. source: "./media/characters/sheera-castellar/front.svg",
  22842. extra: 1957 / 1894,
  22843. bottom: 26.97 / 1975.017
  22844. }
  22845. },
  22846. side: {
  22847. height: math.unit(8 + 4 / 12, "feet"),
  22848. weight: math.unit(350, "lb"),
  22849. name: "Side",
  22850. image: {
  22851. source: "./media/characters/sheera-castellar/side.svg",
  22852. extra: 1957 / 1894
  22853. }
  22854. },
  22855. back: {
  22856. height: math.unit(8 + 4 / 12, "feet"),
  22857. weight: math.unit(350, "lb"),
  22858. name: "Back",
  22859. image: {
  22860. source: "./media/characters/sheera-castellar/back.svg",
  22861. extra: 1957 / 1894
  22862. }
  22863. },
  22864. angled: {
  22865. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22866. weight: math.unit(350, "lb"),
  22867. name: "Angled",
  22868. image: {
  22869. source: "./media/characters/sheera-castellar/angled.svg",
  22870. extra: 1807 / 1707,
  22871. bottom: 68 / 1875
  22872. }
  22873. },
  22874. genitals: {
  22875. height: math.unit(2.2, "feet"),
  22876. name: "Genitals",
  22877. image: {
  22878. source: "./media/characters/sheera-castellar/genitals.svg"
  22879. }
  22880. },
  22881. taur: {
  22882. height: math.unit(10 + 6/12, "feet"),
  22883. name: "Taur",
  22884. image: {
  22885. source: "./media/characters/sheera-castellar/taur.svg",
  22886. extra: 2017/1909,
  22887. bottom: 185/2202
  22888. }
  22889. },
  22890. },
  22891. [
  22892. {
  22893. name: "Normal",
  22894. height: math.unit(8 + 4 / 12, "feet")
  22895. },
  22896. {
  22897. name: "Macro",
  22898. height: math.unit(150, "feet"),
  22899. default: true
  22900. },
  22901. {
  22902. name: "Macro+",
  22903. height: math.unit(800, "feet")
  22904. },
  22905. ]
  22906. ))
  22907. characterMakers.push(() => makeCharacter(
  22908. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22909. {
  22910. front: {
  22911. height: math.unit(6, "feet"),
  22912. weight: math.unit(150, "lb"),
  22913. name: "Front",
  22914. image: {
  22915. source: "./media/characters/jaipur/front.svg",
  22916. extra: 3860 / 3731,
  22917. bottom: 287 / 4140
  22918. }
  22919. },
  22920. back: {
  22921. height: math.unit(6, "feet"),
  22922. weight: math.unit(150, "lb"),
  22923. name: "Back",
  22924. image: {
  22925. source: "./media/characters/jaipur/back.svg",
  22926. extra: 4060 / 3930,
  22927. bottom: 151 / 4200
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Normal",
  22934. height: math.unit(1.85, "meters"),
  22935. default: true
  22936. },
  22937. {
  22938. name: "Macro",
  22939. height: math.unit(150, "meters")
  22940. },
  22941. {
  22942. name: "Macro+",
  22943. height: math.unit(0.5, "miles")
  22944. },
  22945. {
  22946. name: "Macro++",
  22947. height: math.unit(2.5, "miles")
  22948. },
  22949. {
  22950. name: "Macro+++",
  22951. height: math.unit(12, "miles")
  22952. },
  22953. {
  22954. name: "Macro++++",
  22955. height: math.unit(120, "miles")
  22956. },
  22957. {
  22958. name: "Macro+++++",
  22959. height: math.unit(1200, "miles")
  22960. },
  22961. ]
  22962. ))
  22963. characterMakers.push(() => makeCharacter(
  22964. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22965. {
  22966. front: {
  22967. height: math.unit(6, "feet"),
  22968. weight: math.unit(150, "lb"),
  22969. name: "Front",
  22970. image: {
  22971. source: "./media/characters/sheila-wolf/front.svg",
  22972. extra: 1931 / 1808,
  22973. bottom: 29.5 / 1960
  22974. }
  22975. },
  22976. dick: {
  22977. height: math.unit(1.464, "feet"),
  22978. name: "Dick",
  22979. image: {
  22980. source: "./media/characters/sheila-wolf/dick.svg"
  22981. }
  22982. },
  22983. muzzle: {
  22984. height: math.unit(0.513, "feet"),
  22985. name: "Muzzle",
  22986. image: {
  22987. source: "./media/characters/sheila-wolf/muzzle.svg"
  22988. }
  22989. },
  22990. },
  22991. [
  22992. {
  22993. name: "Macro",
  22994. height: math.unit(70, "feet"),
  22995. default: true
  22996. },
  22997. ]
  22998. ))
  22999. characterMakers.push(() => makeCharacter(
  23000. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23001. {
  23002. front: {
  23003. height: math.unit(32, "meters"),
  23004. weight: math.unit(300000, "kg"),
  23005. name: "Front",
  23006. image: {
  23007. source: "./media/characters/almor/front.svg",
  23008. extra: 1408 / 1322,
  23009. bottom: 94.6 / 1506.5
  23010. }
  23011. },
  23012. },
  23013. [
  23014. {
  23015. name: "Macro",
  23016. height: math.unit(32, "meters"),
  23017. default: true
  23018. },
  23019. ]
  23020. ))
  23021. characterMakers.push(() => makeCharacter(
  23022. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23023. {
  23024. front: {
  23025. height: math.unit(7, "feet"),
  23026. weight: math.unit(200, "lb"),
  23027. name: "Front",
  23028. image: {
  23029. source: "./media/characters/silver/front.svg",
  23030. extra: 472.1 / 450.5,
  23031. bottom: 26.5 / 499.424
  23032. }
  23033. },
  23034. },
  23035. [
  23036. {
  23037. name: "Normal",
  23038. height: math.unit(7, "feet"),
  23039. default: true
  23040. },
  23041. {
  23042. name: "Macro",
  23043. height: math.unit(800, "feet")
  23044. },
  23045. {
  23046. name: "Megamacro",
  23047. height: math.unit(250, "miles")
  23048. },
  23049. ]
  23050. ))
  23051. characterMakers.push(() => makeCharacter(
  23052. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23053. {
  23054. front: {
  23055. height: math.unit(6, "feet"),
  23056. weight: math.unit(150, "lb"),
  23057. name: "Front",
  23058. image: {
  23059. source: "./media/characters/pliskin/front.svg",
  23060. extra: 1469 / 1359,
  23061. bottom: 70 / 1540
  23062. }
  23063. },
  23064. },
  23065. [
  23066. {
  23067. name: "Micro",
  23068. height: math.unit(3, "inches")
  23069. },
  23070. {
  23071. name: "Normal",
  23072. height: math.unit(5 + 11 / 12, "feet"),
  23073. default: true
  23074. },
  23075. {
  23076. name: "Macro",
  23077. height: math.unit(120, "feet")
  23078. },
  23079. ]
  23080. ))
  23081. characterMakers.push(() => makeCharacter(
  23082. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23083. {
  23084. front: {
  23085. height: math.unit(6, "feet"),
  23086. weight: math.unit(150, "lb"),
  23087. name: "Front",
  23088. image: {
  23089. source: "./media/characters/sammy/front.svg",
  23090. extra: 1193 / 1089,
  23091. bottom: 30.5 / 1226
  23092. }
  23093. },
  23094. },
  23095. [
  23096. {
  23097. name: "Macro",
  23098. height: math.unit(1700, "feet"),
  23099. default: true
  23100. },
  23101. {
  23102. name: "Examacro",
  23103. height: math.unit(2.5e9, "lightyears")
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23109. {
  23110. front: {
  23111. height: math.unit(21, "meters"),
  23112. weight: math.unit(12, "tonnes"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/kuru/front.svg",
  23116. extra: 4301 / 3785,
  23117. bottom: 371.3 / 4691
  23118. }
  23119. },
  23120. },
  23121. [
  23122. {
  23123. name: "Macro",
  23124. height: math.unit(21, "meters"),
  23125. default: true
  23126. },
  23127. ]
  23128. ))
  23129. characterMakers.push(() => makeCharacter(
  23130. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23131. {
  23132. front: {
  23133. height: math.unit(23, "meters"),
  23134. weight: math.unit(12.2, "tonnes"),
  23135. name: "Front",
  23136. image: {
  23137. source: "./media/characters/rakka/front.svg",
  23138. extra: 4670 / 4169,
  23139. bottom: 301 / 4968.7
  23140. }
  23141. },
  23142. },
  23143. [
  23144. {
  23145. name: "Macro",
  23146. height: math.unit(23, "meters"),
  23147. default: true
  23148. },
  23149. ]
  23150. ))
  23151. characterMakers.push(() => makeCharacter(
  23152. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23153. {
  23154. front: {
  23155. height: math.unit(6, "feet"),
  23156. weight: math.unit(150, "lb"),
  23157. name: "Front",
  23158. image: {
  23159. source: "./media/characters/rhys-feline/front.svg",
  23160. extra: 2488 / 2308,
  23161. bottom: 35.67 / 2519.19
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Really Small",
  23168. height: math.unit(1, "nm")
  23169. },
  23170. {
  23171. name: "Micro",
  23172. height: math.unit(4, "inches")
  23173. },
  23174. {
  23175. name: "Normal",
  23176. height: math.unit(4 + 10 / 12, "feet"),
  23177. default: true
  23178. },
  23179. {
  23180. name: "Macro",
  23181. height: math.unit(100, "feet")
  23182. },
  23183. {
  23184. name: "Megamacto",
  23185. height: math.unit(50, "miles")
  23186. },
  23187. ]
  23188. ))
  23189. characterMakers.push(() => makeCharacter(
  23190. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23191. {
  23192. side: {
  23193. height: math.unit(30, "feet"),
  23194. weight: math.unit(35000, "kg"),
  23195. name: "Side",
  23196. image: {
  23197. source: "./media/characters/alydar/side.svg",
  23198. extra: 234 / 222,
  23199. bottom: 6.5 / 241
  23200. }
  23201. },
  23202. front: {
  23203. height: math.unit(30, "feet"),
  23204. weight: math.unit(35000, "kg"),
  23205. name: "Front",
  23206. image: {
  23207. source: "./media/characters/alydar/front.svg",
  23208. extra: 223.37 / 210.2,
  23209. bottom: 22.3 / 246.76
  23210. }
  23211. },
  23212. top: {
  23213. height: math.unit(64.54, "feet"),
  23214. weight: math.unit(35000, "kg"),
  23215. name: "Top",
  23216. image: {
  23217. source: "./media/characters/alydar/top.svg"
  23218. }
  23219. },
  23220. anthro: {
  23221. height: math.unit(30, "feet"),
  23222. weight: math.unit(9000, "kg"),
  23223. name: "Anthro",
  23224. image: {
  23225. source: "./media/characters/alydar/anthro.svg",
  23226. extra: 432 / 421,
  23227. bottom: 7.18 / 440
  23228. }
  23229. },
  23230. maw: {
  23231. height: math.unit(11.693, "feet"),
  23232. name: "Maw",
  23233. image: {
  23234. source: "./media/characters/alydar/maw.svg"
  23235. }
  23236. },
  23237. head: {
  23238. height: math.unit(11.693, "feet"),
  23239. name: "Head",
  23240. image: {
  23241. source: "./media/characters/alydar/head.svg"
  23242. }
  23243. },
  23244. headAlt: {
  23245. height: math.unit(12.861, "feet"),
  23246. name: "Head (Alt)",
  23247. image: {
  23248. source: "./media/characters/alydar/head-alt.svg"
  23249. }
  23250. },
  23251. wing: {
  23252. height: math.unit(20.712, "feet"),
  23253. name: "Wing",
  23254. image: {
  23255. source: "./media/characters/alydar/wing.svg"
  23256. }
  23257. },
  23258. wingFeather: {
  23259. height: math.unit(9.662, "feet"),
  23260. name: "Wing Feather",
  23261. image: {
  23262. source: "./media/characters/alydar/wing-feather.svg"
  23263. }
  23264. },
  23265. countourFeather: {
  23266. height: math.unit(4.154, "feet"),
  23267. name: "Contour Feather",
  23268. image: {
  23269. source: "./media/characters/alydar/contour-feather.svg"
  23270. }
  23271. },
  23272. },
  23273. [
  23274. {
  23275. name: "Diplomatic",
  23276. height: math.unit(13, "feet"),
  23277. default: true
  23278. },
  23279. {
  23280. name: "Small",
  23281. height: math.unit(30, "feet")
  23282. },
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(95, "feet"),
  23286. default: true
  23287. },
  23288. {
  23289. name: "Large",
  23290. height: math.unit(285, "feet")
  23291. },
  23292. {
  23293. name: "Incomprehensible",
  23294. height: math.unit(450, "megameters")
  23295. },
  23296. ]
  23297. ))
  23298. characterMakers.push(() => makeCharacter(
  23299. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23300. {
  23301. side: {
  23302. height: math.unit(11, "feet"),
  23303. weight: math.unit(1750, "kg"),
  23304. name: "Side",
  23305. image: {
  23306. source: "./media/characters/selicia/side.svg",
  23307. extra: 440 / 396,
  23308. bottom: 24.8 / 465.979
  23309. }
  23310. },
  23311. maw: {
  23312. height: math.unit(4.665, "feet"),
  23313. name: "Maw",
  23314. image: {
  23315. source: "./media/characters/selicia/maw.svg"
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Normal",
  23322. height: math.unit(11, "feet"),
  23323. default: true
  23324. },
  23325. ]
  23326. ))
  23327. characterMakers.push(() => makeCharacter(
  23328. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23329. {
  23330. side: {
  23331. height: math.unit(2 + 6 / 12, "feet"),
  23332. weight: math.unit(30, "lb"),
  23333. name: "Side",
  23334. image: {
  23335. source: "./media/characters/layla/side.svg",
  23336. extra: 244 / 188,
  23337. bottom: 18.2 / 262.1
  23338. }
  23339. },
  23340. back: {
  23341. height: math.unit(2 + 6 / 12, "feet"),
  23342. weight: math.unit(30, "lb"),
  23343. name: "Back",
  23344. image: {
  23345. source: "./media/characters/layla/back.svg",
  23346. extra: 308 / 241.5,
  23347. bottom: 8.9 / 316.8
  23348. }
  23349. },
  23350. cumming: {
  23351. height: math.unit(2 + 6 / 12, "feet"),
  23352. weight: math.unit(30, "lb"),
  23353. name: "Cumming",
  23354. image: {
  23355. source: "./media/characters/layla/cumming.svg",
  23356. extra: 342 / 279,
  23357. bottom: 595 / 938
  23358. }
  23359. },
  23360. dickFlaccid: {
  23361. height: math.unit(2.595, "feet"),
  23362. name: "Flaccid Genitals",
  23363. image: {
  23364. source: "./media/characters/layla/dick-flaccid.svg"
  23365. }
  23366. },
  23367. dickErect: {
  23368. height: math.unit(2.359, "feet"),
  23369. name: "Erect Genitals",
  23370. image: {
  23371. source: "./media/characters/layla/dick-erect.svg"
  23372. }
  23373. },
  23374. dragon: {
  23375. height: math.unit(40, "feet"),
  23376. name: "Dragon",
  23377. image: {
  23378. source: "./media/characters/layla/dragon.svg",
  23379. extra: 610/535,
  23380. bottom: 367/977
  23381. }
  23382. },
  23383. taur: {
  23384. height: math.unit(30, "feet"),
  23385. name: "Taur",
  23386. image: {
  23387. source: "./media/characters/layla/taur.svg",
  23388. extra: 1268/1199,
  23389. bottom: 112/1380
  23390. }
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Micro",
  23396. height: math.unit(1, "inch")
  23397. },
  23398. {
  23399. name: "Small",
  23400. height: math.unit(1, "foot")
  23401. },
  23402. {
  23403. name: "Normal",
  23404. height: math.unit(2 + 6 / 12, "feet"),
  23405. default: true
  23406. },
  23407. {
  23408. name: "Macro",
  23409. height: math.unit(200, "feet")
  23410. },
  23411. {
  23412. name: "Megamacro",
  23413. height: math.unit(1000, "miles")
  23414. },
  23415. {
  23416. name: "Planetary",
  23417. height: math.unit(8000, "miles")
  23418. },
  23419. {
  23420. name: "True Layla",
  23421. height: math.unit(200000 * 7, "multiverses")
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23427. {
  23428. back: {
  23429. height: math.unit(10.5, "feet"),
  23430. weight: math.unit(800, "lb"),
  23431. name: "Back",
  23432. image: {
  23433. source: "./media/characters/knox/back.svg",
  23434. extra: 1486 / 1089,
  23435. bottom: 107 / 1601.4
  23436. }
  23437. },
  23438. side: {
  23439. height: math.unit(10.5, "feet"),
  23440. weight: math.unit(800, "lb"),
  23441. name: "Side",
  23442. image: {
  23443. source: "./media/characters/knox/side.svg",
  23444. extra: 244 / 218,
  23445. bottom: 14 / 260
  23446. }
  23447. },
  23448. },
  23449. [
  23450. {
  23451. name: "Compact",
  23452. height: math.unit(10.5, "feet"),
  23453. default: true
  23454. },
  23455. {
  23456. name: "Dynamax",
  23457. height: math.unit(210, "feet")
  23458. },
  23459. {
  23460. name: "Full Macro",
  23461. height: math.unit(850, "feet")
  23462. },
  23463. ]
  23464. ))
  23465. characterMakers.push(() => makeCharacter(
  23466. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23467. {
  23468. front: {
  23469. height: math.unit(6, "feet"),
  23470. weight: math.unit(152, "lb"),
  23471. name: "Front",
  23472. image: {
  23473. source: "./media/characters/shin-pikachu/front.svg",
  23474. extra: 1854/1602,
  23475. bottom: 166/2020
  23476. }
  23477. },
  23478. hand: {
  23479. height: math.unit(1.055, "feet"),
  23480. name: "Hand",
  23481. image: {
  23482. source: "./media/characters/shin-pikachu/hand.svg"
  23483. }
  23484. },
  23485. foot: {
  23486. height: math.unit(1.1, "feet"),
  23487. name: "Foot",
  23488. image: {
  23489. source: "./media/characters/shin-pikachu/foot.svg"
  23490. }
  23491. },
  23492. collar: {
  23493. height: math.unit(0.386, "feet"),
  23494. name: "Collar",
  23495. image: {
  23496. source: "./media/characters/shin-pikachu/collar.svg"
  23497. }
  23498. },
  23499. },
  23500. [
  23501. {
  23502. name: "Smallest",
  23503. height: math.unit(0.5, "inches")
  23504. },
  23505. {
  23506. name: "Micro",
  23507. height: math.unit(6, "inches")
  23508. },
  23509. {
  23510. name: "Normal",
  23511. height: math.unit(6, "feet"),
  23512. default: true
  23513. },
  23514. {
  23515. name: "Macro",
  23516. height: math.unit(150, "feet")
  23517. },
  23518. ]
  23519. ))
  23520. characterMakers.push(() => makeCharacter(
  23521. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23522. {
  23523. front: {
  23524. height: math.unit(28, "feet"),
  23525. weight: math.unit(10500, "lb"),
  23526. name: "Front",
  23527. image: {
  23528. source: "./media/characters/kayda/front.svg",
  23529. extra: 1536 / 1428,
  23530. bottom: 68.7 / 1603
  23531. }
  23532. },
  23533. back: {
  23534. height: math.unit(28, "feet"),
  23535. weight: math.unit(10500, "lb"),
  23536. name: "Back",
  23537. image: {
  23538. source: "./media/characters/kayda/back.svg",
  23539. extra: 1557 / 1464,
  23540. bottom: 39.5 / 1597.49
  23541. }
  23542. },
  23543. dick: {
  23544. height: math.unit(3.858, "feet"),
  23545. name: "Dick",
  23546. image: {
  23547. source: "./media/characters/kayda/dick.svg"
  23548. }
  23549. },
  23550. },
  23551. [
  23552. {
  23553. name: "Macro",
  23554. height: math.unit(28, "feet"),
  23555. default: true
  23556. },
  23557. ]
  23558. ))
  23559. characterMakers.push(() => makeCharacter(
  23560. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23561. {
  23562. front: {
  23563. height: math.unit(10 + 11 / 12, "feet"),
  23564. weight: math.unit(1400, "lb"),
  23565. name: "Front",
  23566. image: {
  23567. source: "./media/characters/brian/front.svg",
  23568. extra: 737 / 692,
  23569. bottom: 55.4 / 785
  23570. }
  23571. },
  23572. },
  23573. [
  23574. {
  23575. name: "Normal",
  23576. height: math.unit(10 + 11 / 12, "feet"),
  23577. default: true
  23578. },
  23579. ]
  23580. ))
  23581. characterMakers.push(() => makeCharacter(
  23582. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23583. {
  23584. front: {
  23585. height: math.unit(5 + 8 / 12, "feet"),
  23586. weight: math.unit(140, "lb"),
  23587. name: "Front",
  23588. image: {
  23589. source: "./media/characters/khemri/front.svg",
  23590. extra: 4780 / 4059,
  23591. bottom: 80.1 / 4859.25
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Micro",
  23598. height: math.unit(6, "inches")
  23599. },
  23600. {
  23601. name: "Normal",
  23602. height: math.unit(5 + 8 / 12, "feet"),
  23603. default: true
  23604. },
  23605. ]
  23606. ))
  23607. characterMakers.push(() => makeCharacter(
  23608. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23609. {
  23610. front: {
  23611. height: math.unit(13, "feet"),
  23612. weight: math.unit(1700, "lb"),
  23613. name: "Front",
  23614. image: {
  23615. source: "./media/characters/felix-braveheart/front.svg",
  23616. extra: 1222 / 1157,
  23617. bottom: 53.2 / 1280
  23618. }
  23619. },
  23620. back: {
  23621. height: math.unit(13, "feet"),
  23622. weight: math.unit(1700, "lb"),
  23623. name: "Back",
  23624. image: {
  23625. source: "./media/characters/felix-braveheart/back.svg",
  23626. extra: 1277 / 1203,
  23627. bottom: 50.2 / 1327
  23628. }
  23629. },
  23630. feral: {
  23631. height: math.unit(6, "feet"),
  23632. weight: math.unit(400, "lb"),
  23633. name: "Feral",
  23634. image: {
  23635. source: "./media/characters/felix-braveheart/feral.svg",
  23636. extra: 682 / 625,
  23637. bottom: 6.9 / 688
  23638. }
  23639. },
  23640. },
  23641. [
  23642. {
  23643. name: "Normal",
  23644. height: math.unit(13, "feet"),
  23645. default: true
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23651. {
  23652. side: {
  23653. height: math.unit(5 + 11 / 12, "feet"),
  23654. weight: math.unit(1400, "lb"),
  23655. name: "Side",
  23656. image: {
  23657. source: "./media/characters/shadow-blade/side.svg",
  23658. extra: 1726 / 1267,
  23659. bottom: 58.4 / 1785
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Normal",
  23666. height: math.unit(5 + 11 / 12, "feet"),
  23667. default: true
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(1 + 6 / 12, "feet"),
  23676. weight: math.unit(25, "lb"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/karla-halldor/front.svg",
  23680. extra: 1459 / 1383,
  23681. bottom: 12 / 1472
  23682. }
  23683. },
  23684. },
  23685. [
  23686. {
  23687. name: "Normal",
  23688. height: math.unit(1 + 6 / 12, "feet"),
  23689. default: true
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23695. {
  23696. front: {
  23697. height: math.unit(6 + 2 / 12, "feet"),
  23698. weight: math.unit(160, "lb"),
  23699. name: "Front",
  23700. image: {
  23701. source: "./media/characters/ariam/front.svg",
  23702. extra: 714 / 617,
  23703. bottom: 23.4 / 737,
  23704. }
  23705. },
  23706. squatting: {
  23707. height: math.unit(4.1, "feet"),
  23708. weight: math.unit(160, "lb"),
  23709. name: "Squatting",
  23710. image: {
  23711. source: "./media/characters/ariam/squatting.svg",
  23712. extra: 2617 / 2112,
  23713. bottom: 61.2 / 2681,
  23714. }
  23715. },
  23716. },
  23717. [
  23718. {
  23719. name: "Normal",
  23720. height: math.unit(6 + 2 / 12, "feet"),
  23721. default: true
  23722. },
  23723. {
  23724. name: "Normal+",
  23725. height: math.unit(4, "meters")
  23726. },
  23727. {
  23728. name: "Macro",
  23729. height: math.unit(50, "meters")
  23730. },
  23731. {
  23732. name: "Macro+",
  23733. height: math.unit(100, "meters")
  23734. },
  23735. {
  23736. name: "Megamacro",
  23737. height: math.unit(20, "km")
  23738. },
  23739. ]
  23740. ))
  23741. characterMakers.push(() => makeCharacter(
  23742. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23743. {
  23744. front: {
  23745. height: math.unit(1.67, "meters"),
  23746. weight: math.unit(140, "lb"),
  23747. name: "Front",
  23748. image: {
  23749. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23750. extra: 438 / 410,
  23751. bottom: 0.75 / 439
  23752. }
  23753. },
  23754. },
  23755. [
  23756. {
  23757. name: "Shrunken",
  23758. height: math.unit(7.6, "cm")
  23759. },
  23760. {
  23761. name: "Human Scale",
  23762. height: math.unit(1.67, "meters")
  23763. },
  23764. {
  23765. name: "Wolxi Scale",
  23766. height: math.unit(36.7, "meters"),
  23767. default: true
  23768. },
  23769. ]
  23770. ))
  23771. characterMakers.push(() => makeCharacter(
  23772. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23773. {
  23774. front: {
  23775. height: math.unit(1.73, "meters"),
  23776. weight: math.unit(240, "lb"),
  23777. name: "Front",
  23778. image: {
  23779. source: "./media/characters/izue-two-mothers/front.svg",
  23780. extra: 469 / 437,
  23781. bottom: 1.24 / 470.6
  23782. }
  23783. },
  23784. },
  23785. [
  23786. {
  23787. name: "Shrunken",
  23788. height: math.unit(7.86, "cm")
  23789. },
  23790. {
  23791. name: "Human Scale",
  23792. height: math.unit(1.73, "meters")
  23793. },
  23794. {
  23795. name: "Wolxi Scale",
  23796. height: math.unit(38, "meters"),
  23797. default: true
  23798. },
  23799. ]
  23800. ))
  23801. characterMakers.push(() => makeCharacter(
  23802. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23803. {
  23804. front: {
  23805. height: math.unit(1.55, "meters"),
  23806. weight: math.unit(120, "lb"),
  23807. name: "Front",
  23808. image: {
  23809. source: "./media/characters/teeku-love-shack/front.svg",
  23810. extra: 387 / 362,
  23811. bottom: 1.51 / 388
  23812. }
  23813. },
  23814. },
  23815. [
  23816. {
  23817. name: "Shrunken",
  23818. height: math.unit(7, "cm")
  23819. },
  23820. {
  23821. name: "Human Scale",
  23822. height: math.unit(1.55, "meters")
  23823. },
  23824. {
  23825. name: "Wolxi Scale",
  23826. height: math.unit(34.1, "meters"),
  23827. default: true
  23828. },
  23829. ]
  23830. ))
  23831. characterMakers.push(() => makeCharacter(
  23832. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23833. {
  23834. front: {
  23835. height: math.unit(1.83, "meters"),
  23836. weight: math.unit(135, "lb"),
  23837. name: "Front",
  23838. image: {
  23839. source: "./media/characters/dejma-the-red/front.svg",
  23840. extra: 480 / 458,
  23841. bottom: 1.8 / 482
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Shrunken",
  23848. height: math.unit(8.3, "cm")
  23849. },
  23850. {
  23851. name: "Human Scale",
  23852. height: math.unit(1.83, "meters")
  23853. },
  23854. {
  23855. name: "Wolxi Scale",
  23856. height: math.unit(40, "meters"),
  23857. default: true
  23858. },
  23859. ]
  23860. ))
  23861. characterMakers.push(() => makeCharacter(
  23862. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23863. {
  23864. front: {
  23865. height: math.unit(1.78, "meters"),
  23866. weight: math.unit(65, "kg"),
  23867. name: "Front",
  23868. image: {
  23869. source: "./media/characters/aki/front.svg",
  23870. extra: 452 / 415
  23871. }
  23872. },
  23873. frontNsfw: {
  23874. height: math.unit(1.78, "meters"),
  23875. weight: math.unit(65, "kg"),
  23876. name: "Front (NSFW)",
  23877. image: {
  23878. source: "./media/characters/aki/front-nsfw.svg",
  23879. extra: 452 / 415
  23880. }
  23881. },
  23882. back: {
  23883. height: math.unit(1.78, "meters"),
  23884. weight: math.unit(65, "kg"),
  23885. name: "Back",
  23886. image: {
  23887. source: "./media/characters/aki/back.svg",
  23888. extra: 452 / 415
  23889. }
  23890. },
  23891. rump: {
  23892. height: math.unit(2.05, "feet"),
  23893. name: "Rump",
  23894. image: {
  23895. source: "./media/characters/aki/rump.svg"
  23896. }
  23897. },
  23898. dick: {
  23899. height: math.unit(0.95, "feet"),
  23900. name: "Dick",
  23901. image: {
  23902. source: "./media/characters/aki/dick.svg"
  23903. }
  23904. },
  23905. },
  23906. [
  23907. {
  23908. name: "Micro",
  23909. height: math.unit(15, "cm")
  23910. },
  23911. {
  23912. name: "Normal",
  23913. height: math.unit(178, "cm"),
  23914. default: true
  23915. },
  23916. {
  23917. name: "Macro",
  23918. height: math.unit(214, "m")
  23919. },
  23920. {
  23921. name: "Macro+",
  23922. height: math.unit(534, "m")
  23923. },
  23924. ]
  23925. ))
  23926. characterMakers.push(() => makeCharacter(
  23927. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23928. {
  23929. front: {
  23930. height: math.unit(5 + 5 / 12, "feet"),
  23931. weight: math.unit(120, "lb"),
  23932. name: "Front",
  23933. image: {
  23934. source: "./media/characters/ari/front.svg",
  23935. extra: 714.5 / 682,
  23936. bottom: 8 / 722.5
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Normal",
  23943. height: math.unit(5 + 5 / 12, "feet")
  23944. },
  23945. {
  23946. name: "Macro",
  23947. height: math.unit(100, "feet"),
  23948. default: true
  23949. },
  23950. {
  23951. name: "Megamacro",
  23952. height: math.unit(100, "miles")
  23953. },
  23954. {
  23955. name: "Gigamacro",
  23956. height: math.unit(80000, "miles")
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23962. {
  23963. side: {
  23964. height: math.unit(9, "feet"),
  23965. weight: math.unit(400, "kg"),
  23966. name: "Side",
  23967. image: {
  23968. source: "./media/characters/bolt/side.svg",
  23969. extra: 1126 / 896,
  23970. bottom: 60 / 1187.3,
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Micro",
  23977. height: math.unit(5, "inches")
  23978. },
  23979. {
  23980. name: "Normal",
  23981. height: math.unit(9, "feet"),
  23982. default: true
  23983. },
  23984. {
  23985. name: "Macro",
  23986. height: math.unit(700, "feet")
  23987. },
  23988. {
  23989. name: "Max Size",
  23990. height: math.unit(1.52e22, "yottameters")
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23996. {
  23997. front: {
  23998. height: math.unit(4.53, "meters"),
  23999. weight: math.unit(3, "tons"),
  24000. name: "Front",
  24001. image: {
  24002. source: "./media/characters/draekon-sylviar/front.svg",
  24003. extra: 1228 / 1068,
  24004. bottom: 41 / 1270
  24005. }
  24006. },
  24007. tail: {
  24008. height: math.unit(1.772, "meter"),
  24009. name: "Tail",
  24010. image: {
  24011. source: "./media/characters/draekon-sylviar/tail.svg"
  24012. }
  24013. },
  24014. head: {
  24015. height: math.unit(1.331, "meter"),
  24016. name: "Head",
  24017. image: {
  24018. source: "./media/characters/draekon-sylviar/head.svg"
  24019. }
  24020. },
  24021. hand: {
  24022. height: math.unit(0.564, "meter"),
  24023. name: "Hand",
  24024. image: {
  24025. source: "./media/characters/draekon-sylviar/hand.svg"
  24026. }
  24027. },
  24028. foot: {
  24029. height: math.unit(0.621, "meter"),
  24030. name: "Foot",
  24031. image: {
  24032. source: "./media/characters/draekon-sylviar/foot.svg",
  24033. bottom: 32 / 324
  24034. }
  24035. },
  24036. dick: {
  24037. height: math.unit(61, "cm"),
  24038. name: "Dick",
  24039. image: {
  24040. source: "./media/characters/draekon-sylviar/dick.svg"
  24041. }
  24042. },
  24043. dickseparated: {
  24044. height: math.unit(61, "cm"),
  24045. name: "Dick-separated",
  24046. image: {
  24047. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24048. }
  24049. },
  24050. },
  24051. [
  24052. {
  24053. name: "Small",
  24054. height: math.unit(4.53 / 2, "meters"),
  24055. default: true
  24056. },
  24057. {
  24058. name: "Normal",
  24059. height: math.unit(4.53, "meters"),
  24060. default: true
  24061. },
  24062. {
  24063. name: "Large",
  24064. height: math.unit(4.53 * 2, "meters"),
  24065. },
  24066. ]
  24067. ))
  24068. characterMakers.push(() => makeCharacter(
  24069. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24070. {
  24071. front: {
  24072. height: math.unit(6 + 2 / 12, "feet"),
  24073. weight: math.unit(180, "lb"),
  24074. name: "Front",
  24075. image: {
  24076. source: "./media/characters/brawler/front.svg",
  24077. extra: 3301 / 3027,
  24078. bottom: 138 / 3439
  24079. }
  24080. },
  24081. },
  24082. [
  24083. {
  24084. name: "Normal",
  24085. height: math.unit(6 + 2 / 12, "feet"),
  24086. default: true
  24087. },
  24088. ]
  24089. ))
  24090. characterMakers.push(() => makeCharacter(
  24091. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24092. {
  24093. front: {
  24094. height: math.unit(11, "feet"),
  24095. weight: math.unit(1000, "lb"),
  24096. name: "Front",
  24097. image: {
  24098. source: "./media/characters/alex/front.svg",
  24099. bottom: 44.5 / 620
  24100. }
  24101. },
  24102. },
  24103. [
  24104. {
  24105. name: "Micro",
  24106. height: math.unit(5, "inches")
  24107. },
  24108. {
  24109. name: "Normal",
  24110. height: math.unit(11, "feet"),
  24111. default: true
  24112. },
  24113. {
  24114. name: "Macro",
  24115. height: math.unit(9.5e9, "feet")
  24116. },
  24117. {
  24118. name: "Max Size",
  24119. height: math.unit(1.4e283, "yottameters")
  24120. },
  24121. ]
  24122. ))
  24123. characterMakers.push(() => makeCharacter(
  24124. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24125. {
  24126. female: {
  24127. height: math.unit(29.9, "m"),
  24128. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24129. name: "Female",
  24130. image: {
  24131. source: "./media/characters/zenari/female.svg",
  24132. extra: 3281.6 / 3217,
  24133. bottom: 72.2 / 3353
  24134. }
  24135. },
  24136. male: {
  24137. height: math.unit(27.7, "m"),
  24138. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24139. name: "Male",
  24140. image: {
  24141. source: "./media/characters/zenari/male.svg",
  24142. extra: 3008 / 2991,
  24143. bottom: 54.6 / 3069
  24144. }
  24145. },
  24146. },
  24147. [
  24148. {
  24149. name: "Macro",
  24150. height: math.unit(29.7, "meters"),
  24151. default: true
  24152. },
  24153. ]
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24157. {
  24158. female: {
  24159. height: math.unit(23.8, "m"),
  24160. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24161. name: "Female",
  24162. image: {
  24163. source: "./media/characters/mactarian/female.svg",
  24164. extra: 2662 / 2569,
  24165. bottom: 73 / 2736
  24166. }
  24167. },
  24168. male: {
  24169. height: math.unit(23.8, "m"),
  24170. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24171. name: "Male",
  24172. image: {
  24173. source: "./media/characters/mactarian/male.svg",
  24174. extra: 2673 / 2600,
  24175. bottom: 76 / 2750
  24176. }
  24177. },
  24178. },
  24179. [
  24180. {
  24181. name: "Macro",
  24182. height: math.unit(23.8, "meters"),
  24183. default: true
  24184. },
  24185. ]
  24186. ))
  24187. characterMakers.push(() => makeCharacter(
  24188. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24189. {
  24190. female: {
  24191. height: math.unit(19.3, "m"),
  24192. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24193. name: "Female",
  24194. image: {
  24195. source: "./media/characters/umok/female.svg",
  24196. extra: 2186 / 2078,
  24197. bottom: 87 / 2277
  24198. }
  24199. },
  24200. male: {
  24201. height: math.unit(19.5, "m"),
  24202. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24203. name: "Male",
  24204. image: {
  24205. source: "./media/characters/umok/male.svg",
  24206. extra: 2233 / 2140,
  24207. bottom: 24.4 / 2258
  24208. }
  24209. },
  24210. },
  24211. [
  24212. {
  24213. name: "Macro",
  24214. height: math.unit(19.3, "meters"),
  24215. default: true
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24221. {
  24222. female: {
  24223. height: math.unit(26.15, "m"),
  24224. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24225. name: "Female",
  24226. image: {
  24227. source: "./media/characters/joraxian/female.svg",
  24228. extra: 2912 / 2824,
  24229. bottom: 36 / 2956
  24230. }
  24231. },
  24232. male: {
  24233. height: math.unit(25.4, "m"),
  24234. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24235. name: "Male",
  24236. image: {
  24237. source: "./media/characters/joraxian/male.svg",
  24238. extra: 2877 / 2721,
  24239. bottom: 82 / 2967
  24240. }
  24241. },
  24242. },
  24243. [
  24244. {
  24245. name: "Macro",
  24246. height: math.unit(26.15, "meters"),
  24247. default: true
  24248. },
  24249. ]
  24250. ))
  24251. characterMakers.push(() => makeCharacter(
  24252. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24253. {
  24254. female: {
  24255. height: math.unit(21.6, "m"),
  24256. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24257. name: "Female",
  24258. image: {
  24259. source: "./media/characters/sthara/female.svg",
  24260. extra: 2516 / 2347,
  24261. bottom: 21.5 / 2537
  24262. }
  24263. },
  24264. male: {
  24265. height: math.unit(24, "m"),
  24266. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24267. name: "Male",
  24268. image: {
  24269. source: "./media/characters/sthara/male.svg",
  24270. extra: 2732 / 2607,
  24271. bottom: 23 / 2732
  24272. }
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "Macro",
  24278. height: math.unit(21.6, "meters"),
  24279. default: true
  24280. },
  24281. ]
  24282. ))
  24283. characterMakers.push(() => makeCharacter(
  24284. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24285. {
  24286. front: {
  24287. height: math.unit(6 + 4 / 12, "feet"),
  24288. weight: math.unit(175, "lb"),
  24289. name: "Front",
  24290. image: {
  24291. source: "./media/characters/luka-bryzant/front.svg",
  24292. extra: 311 / 289,
  24293. bottom: 4 / 315
  24294. }
  24295. },
  24296. back: {
  24297. height: math.unit(6 + 4 / 12, "feet"),
  24298. weight: math.unit(175, "lb"),
  24299. name: "Back",
  24300. image: {
  24301. source: "./media/characters/luka-bryzant/back.svg",
  24302. extra: 311 / 289,
  24303. bottom: 3.8 / 313.7
  24304. }
  24305. },
  24306. },
  24307. [
  24308. {
  24309. name: "Micro",
  24310. height: math.unit(10, "inches")
  24311. },
  24312. {
  24313. name: "Normal",
  24314. height: math.unit(6 + 4 / 12, "feet"),
  24315. default: true
  24316. },
  24317. {
  24318. name: "Large",
  24319. height: math.unit(12, "feet")
  24320. },
  24321. ]
  24322. ))
  24323. characterMakers.push(() => makeCharacter(
  24324. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24325. {
  24326. front: {
  24327. height: math.unit(5 + 7 / 12, "feet"),
  24328. weight: math.unit(185, "lb"),
  24329. name: "Front",
  24330. image: {
  24331. source: "./media/characters/aman-aquila/front.svg",
  24332. extra: 1013 / 976,
  24333. bottom: 45.6 / 1057
  24334. }
  24335. },
  24336. side: {
  24337. height: math.unit(5 + 7 / 12, "feet"),
  24338. weight: math.unit(185, "lb"),
  24339. name: "Side",
  24340. image: {
  24341. source: "./media/characters/aman-aquila/side.svg",
  24342. extra: 1054 / 1011,
  24343. bottom: 15 / 1070
  24344. }
  24345. },
  24346. back: {
  24347. height: math.unit(5 + 7 / 12, "feet"),
  24348. weight: math.unit(185, "lb"),
  24349. name: "Back",
  24350. image: {
  24351. source: "./media/characters/aman-aquila/back.svg",
  24352. extra: 1026 / 970,
  24353. bottom: 12 / 1039
  24354. }
  24355. },
  24356. head: {
  24357. height: math.unit(1.211, "feet"),
  24358. name: "Head",
  24359. image: {
  24360. source: "./media/characters/aman-aquila/head.svg",
  24361. }
  24362. },
  24363. },
  24364. [
  24365. {
  24366. name: "Minimicro",
  24367. height: math.unit(0.057, "inches")
  24368. },
  24369. {
  24370. name: "Micro",
  24371. height: math.unit(7, "inches")
  24372. },
  24373. {
  24374. name: "Mini",
  24375. height: math.unit(3 + 7 / 12, "feet")
  24376. },
  24377. {
  24378. name: "Normal",
  24379. height: math.unit(5 + 7 / 12, "feet"),
  24380. default: true
  24381. },
  24382. {
  24383. name: "Macro",
  24384. height: math.unit(157 + 7 / 12, "feet")
  24385. },
  24386. {
  24387. name: "Megamacro",
  24388. height: math.unit(1557 + 7 / 12, "feet")
  24389. },
  24390. {
  24391. name: "Gigamacro",
  24392. height: math.unit(15557 + 7 / 12, "feet")
  24393. },
  24394. ]
  24395. ))
  24396. characterMakers.push(() => makeCharacter(
  24397. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24398. {
  24399. front: {
  24400. height: math.unit(3 + 2 / 12, "inches"),
  24401. weight: math.unit(0.3, "ounces"),
  24402. name: "Front",
  24403. image: {
  24404. source: "./media/characters/hiphae/front.svg",
  24405. extra: 1931 / 1683,
  24406. bottom: 24 / 1955
  24407. }
  24408. },
  24409. },
  24410. [
  24411. {
  24412. name: "Normal",
  24413. height: math.unit(3 + 1 / 2, "inches"),
  24414. default: true
  24415. },
  24416. ]
  24417. ))
  24418. characterMakers.push(() => makeCharacter(
  24419. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24420. {
  24421. front: {
  24422. height: math.unit(5 + 10 / 12, "feet"),
  24423. weight: math.unit(165, "lb"),
  24424. name: "Front",
  24425. image: {
  24426. source: "./media/characters/nicky/front.svg",
  24427. extra: 3144 / 2886,
  24428. bottom: 45.6 / 3192
  24429. }
  24430. },
  24431. back: {
  24432. height: math.unit(5 + 10 / 12, "feet"),
  24433. weight: math.unit(165, "lb"),
  24434. name: "Back",
  24435. image: {
  24436. source: "./media/characters/nicky/back.svg",
  24437. extra: 3055 / 2804,
  24438. bottom: 28.4 / 3087
  24439. }
  24440. },
  24441. frontclothed: {
  24442. height: math.unit(5 + 10 / 12, "feet"),
  24443. weight: math.unit(165, "lb"),
  24444. name: "Front-clothed",
  24445. image: {
  24446. source: "./media/characters/nicky/front-clothed.svg",
  24447. extra: 3184.9 / 2926.9,
  24448. bottom: 86.5 / 3239.9
  24449. }
  24450. },
  24451. foot: {
  24452. height: math.unit(1.16, "feet"),
  24453. name: "Foot",
  24454. image: {
  24455. source: "./media/characters/nicky/foot.svg"
  24456. }
  24457. },
  24458. feet: {
  24459. height: math.unit(1.34, "feet"),
  24460. name: "Feet",
  24461. image: {
  24462. source: "./media/characters/nicky/feet.svg"
  24463. }
  24464. },
  24465. maw: {
  24466. height: math.unit(0.9, "feet"),
  24467. name: "Maw",
  24468. image: {
  24469. source: "./media/characters/nicky/maw.svg"
  24470. }
  24471. },
  24472. },
  24473. [
  24474. {
  24475. name: "Normal",
  24476. height: math.unit(5 + 10 / 12, "feet"),
  24477. default: true
  24478. },
  24479. {
  24480. name: "Macro",
  24481. height: math.unit(60, "feet")
  24482. },
  24483. {
  24484. name: "Megamacro",
  24485. height: math.unit(1, "mile")
  24486. },
  24487. ]
  24488. ))
  24489. characterMakers.push(() => makeCharacter(
  24490. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24491. {
  24492. side: {
  24493. height: math.unit(10, "feet"),
  24494. weight: math.unit(600, "lb"),
  24495. name: "Side",
  24496. image: {
  24497. source: "./media/characters/blair/side.svg",
  24498. bottom: 16.6 / 475,
  24499. extra: 458 / 431
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Micro",
  24506. height: math.unit(8, "inches")
  24507. },
  24508. {
  24509. name: "Normal",
  24510. height: math.unit(10, "feet"),
  24511. default: true
  24512. },
  24513. {
  24514. name: "Macro",
  24515. height: math.unit(180, "feet")
  24516. },
  24517. ]
  24518. ))
  24519. characterMakers.push(() => makeCharacter(
  24520. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24521. {
  24522. front: {
  24523. height: math.unit(5 + 4 / 12, "feet"),
  24524. weight: math.unit(125, "lb"),
  24525. name: "Front",
  24526. image: {
  24527. source: "./media/characters/fisher/front.svg",
  24528. extra: 444 / 390,
  24529. bottom: 2 / 444.8
  24530. }
  24531. },
  24532. },
  24533. [
  24534. {
  24535. name: "Micro",
  24536. height: math.unit(4, "inches")
  24537. },
  24538. {
  24539. name: "Normal",
  24540. height: math.unit(5 + 4 / 12, "feet"),
  24541. default: true
  24542. },
  24543. {
  24544. name: "Macro",
  24545. height: math.unit(100, "feet")
  24546. },
  24547. ]
  24548. ))
  24549. characterMakers.push(() => makeCharacter(
  24550. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24551. {
  24552. front: {
  24553. height: math.unit(6.71, "feet"),
  24554. weight: math.unit(200, "lb"),
  24555. capacity: math.unit(1000000, "people"),
  24556. name: "Front",
  24557. image: {
  24558. source: "./media/characters/gliss/front.svg",
  24559. extra: 2347 / 2231,
  24560. bottom: 113 / 2462
  24561. }
  24562. },
  24563. hammerspaceSize: {
  24564. height: math.unit(6.71 * 717, "feet"),
  24565. weight: math.unit(200, "lb"),
  24566. capacity: math.unit(1000000, "people"),
  24567. name: "Hammerspace Size",
  24568. image: {
  24569. source: "./media/characters/gliss/front.svg",
  24570. extra: 2347 / 2231,
  24571. bottom: 113 / 2462
  24572. }
  24573. },
  24574. },
  24575. [
  24576. {
  24577. name: "Normal",
  24578. height: math.unit(6.71, "feet"),
  24579. default: true
  24580. },
  24581. ]
  24582. ))
  24583. characterMakers.push(() => makeCharacter(
  24584. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24585. {
  24586. side: {
  24587. height: math.unit(1.44, "m"),
  24588. weight: math.unit(80, "kg"),
  24589. name: "Side",
  24590. image: {
  24591. source: "./media/characters/dune-anderson/side.svg",
  24592. bottom: 49 / 1426
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Wolf-sized",
  24599. height: math.unit(1.44, "meters")
  24600. },
  24601. {
  24602. name: "Normal",
  24603. height: math.unit(5.05, "meters"),
  24604. default: true
  24605. },
  24606. {
  24607. name: "Big",
  24608. height: math.unit(14.4, "meters")
  24609. },
  24610. {
  24611. name: "Huge",
  24612. height: math.unit(144, "meters")
  24613. },
  24614. ]
  24615. ))
  24616. characterMakers.push(() => makeCharacter(
  24617. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24618. {
  24619. front: {
  24620. height: math.unit(7, "feet"),
  24621. weight: math.unit(425, "lb"),
  24622. name: "Front",
  24623. image: {
  24624. source: "./media/characters/hind/front.svg",
  24625. extra: 2091 / 1860,
  24626. bottom: 129 / 2220
  24627. }
  24628. },
  24629. back: {
  24630. height: math.unit(7, "feet"),
  24631. weight: math.unit(425, "lb"),
  24632. name: "Back",
  24633. image: {
  24634. source: "./media/characters/hind/back.svg",
  24635. extra: 2091 / 1860,
  24636. bottom: 24.6 / 2309
  24637. }
  24638. },
  24639. tail: {
  24640. height: math.unit(2.8, "feet"),
  24641. name: "Tail",
  24642. image: {
  24643. source: "./media/characters/hind/tail.svg"
  24644. }
  24645. },
  24646. head: {
  24647. height: math.unit(2.55, "feet"),
  24648. name: "Head",
  24649. image: {
  24650. source: "./media/characters/hind/head.svg"
  24651. }
  24652. },
  24653. },
  24654. [
  24655. {
  24656. name: "XS",
  24657. height: math.unit(0.7, "feet")
  24658. },
  24659. {
  24660. name: "Normal",
  24661. height: math.unit(7, "feet"),
  24662. default: true
  24663. },
  24664. {
  24665. name: "XL",
  24666. height: math.unit(70, "feet")
  24667. },
  24668. ]
  24669. ))
  24670. characterMakers.push(() => makeCharacter(
  24671. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24672. {
  24673. front: {
  24674. height: math.unit(6, "feet"),
  24675. weight: math.unit(150, "lb"),
  24676. name: "Front",
  24677. image: {
  24678. source: "./media/characters/dylan-skaven/front.svg",
  24679. extra: 2318 / 2063,
  24680. bottom: 93.4 / 2410
  24681. }
  24682. },
  24683. },
  24684. [
  24685. {
  24686. name: "Nano",
  24687. height: math.unit(1, "mm")
  24688. },
  24689. {
  24690. name: "Micro",
  24691. height: math.unit(1, "cm")
  24692. },
  24693. {
  24694. name: "Normal",
  24695. height: math.unit(2.1, "meters"),
  24696. default: true
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24702. {
  24703. front: {
  24704. height: math.unit(7 + 5 / 12, "feet"),
  24705. weight: math.unit(357, "lb"),
  24706. name: "Front",
  24707. image: {
  24708. source: "./media/characters/solex-draconov/front.svg",
  24709. extra: 1993 / 1865,
  24710. bottom: 117 / 2111
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Natural Height",
  24717. height: math.unit(7 + 5 / 12, "feet"),
  24718. default: true
  24719. },
  24720. {
  24721. name: "Macro",
  24722. height: math.unit(350, "feet")
  24723. },
  24724. {
  24725. name: "Macro+",
  24726. height: math.unit(1000, "feet")
  24727. },
  24728. {
  24729. name: "Megamacro",
  24730. height: math.unit(20, "km")
  24731. },
  24732. {
  24733. name: "Megamacro+",
  24734. height: math.unit(1000, "km")
  24735. },
  24736. {
  24737. name: "Gigamacro",
  24738. height: math.unit(2.5, "Gm")
  24739. },
  24740. {
  24741. name: "Teramacro",
  24742. height: math.unit(15, "Tm")
  24743. },
  24744. {
  24745. name: "Galactic",
  24746. height: math.unit(30, "Zm")
  24747. },
  24748. {
  24749. name: "Universal",
  24750. height: math.unit(21000, "Ym")
  24751. },
  24752. {
  24753. name: "Omniversal",
  24754. height: math.unit(9.861e50, "Ym")
  24755. },
  24756. {
  24757. name: "Existential",
  24758. height: math.unit(1e300, "meters")
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24764. {
  24765. side: {
  24766. height: math.unit(25, "feet"),
  24767. weight: math.unit(90000, "lb"),
  24768. name: "Side",
  24769. image: {
  24770. source: "./media/characters/mandarax/side.svg",
  24771. extra: 614 / 332,
  24772. bottom: 55 / 630
  24773. }
  24774. },
  24775. head: {
  24776. height: math.unit(11.4, "feet"),
  24777. name: "Head",
  24778. image: {
  24779. source: "./media/characters/mandarax/head.svg"
  24780. }
  24781. },
  24782. belly: {
  24783. height: math.unit(33, "feet"),
  24784. name: "Belly",
  24785. capacity: math.unit(500, "people"),
  24786. image: {
  24787. source: "./media/characters/mandarax/belly.svg"
  24788. }
  24789. },
  24790. dick: {
  24791. height: math.unit(8.46, "feet"),
  24792. name: "Dick",
  24793. image: {
  24794. source: "./media/characters/mandarax/dick.svg"
  24795. }
  24796. },
  24797. top: {
  24798. height: math.unit(28, "meters"),
  24799. name: "Top",
  24800. image: {
  24801. source: "./media/characters/mandarax/top.svg"
  24802. }
  24803. },
  24804. },
  24805. [
  24806. {
  24807. name: "Normal",
  24808. height: math.unit(25, "feet"),
  24809. default: true
  24810. },
  24811. ]
  24812. ))
  24813. characterMakers.push(() => makeCharacter(
  24814. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24815. {
  24816. front: {
  24817. height: math.unit(5, "feet"),
  24818. weight: math.unit(90, "lb"),
  24819. name: "Front",
  24820. image: {
  24821. source: "./media/characters/pixil/front.svg",
  24822. extra: 2000 / 1618,
  24823. bottom: 12.3 / 2011
  24824. }
  24825. },
  24826. },
  24827. [
  24828. {
  24829. name: "Normal",
  24830. height: math.unit(5, "feet"),
  24831. default: true
  24832. },
  24833. {
  24834. name: "Megamacro",
  24835. height: math.unit(10, "miles"),
  24836. },
  24837. ]
  24838. ))
  24839. characterMakers.push(() => makeCharacter(
  24840. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24841. {
  24842. front: {
  24843. height: math.unit(7 + 2 / 12, "feet"),
  24844. weight: math.unit(200, "lb"),
  24845. name: "Front",
  24846. image: {
  24847. source: "./media/characters/angel/front.svg",
  24848. extra: 1830 / 1737,
  24849. bottom: 22.6 / 1854,
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Normal",
  24856. height: math.unit(7 + 2 / 12, "feet"),
  24857. default: true
  24858. },
  24859. {
  24860. name: "Macro",
  24861. height: math.unit(1000, "feet")
  24862. },
  24863. {
  24864. name: "Megamacro",
  24865. height: math.unit(2, "miles")
  24866. },
  24867. {
  24868. name: "Gigamacro",
  24869. height: math.unit(20, "earths")
  24870. },
  24871. ]
  24872. ))
  24873. characterMakers.push(() => makeCharacter(
  24874. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24875. {
  24876. front: {
  24877. height: math.unit(5, "feet"),
  24878. weight: math.unit(180, "lb"),
  24879. name: "Front",
  24880. image: {
  24881. source: "./media/characters/mekana/front.svg",
  24882. extra: 1671 / 1605,
  24883. bottom: 3.5 / 1691
  24884. }
  24885. },
  24886. side: {
  24887. height: math.unit(5, "feet"),
  24888. weight: math.unit(180, "lb"),
  24889. name: "Side",
  24890. image: {
  24891. source: "./media/characters/mekana/side.svg",
  24892. extra: 1671 / 1605,
  24893. bottom: 3.5 / 1691
  24894. }
  24895. },
  24896. back: {
  24897. height: math.unit(5, "feet"),
  24898. weight: math.unit(180, "lb"),
  24899. name: "Back",
  24900. image: {
  24901. source: "./media/characters/mekana/back.svg",
  24902. extra: 1671 / 1605,
  24903. bottom: 3.5 / 1691
  24904. }
  24905. },
  24906. },
  24907. [
  24908. {
  24909. name: "Normal",
  24910. height: math.unit(5, "feet"),
  24911. default: true
  24912. },
  24913. ]
  24914. ))
  24915. characterMakers.push(() => makeCharacter(
  24916. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24917. {
  24918. front: {
  24919. height: math.unit(4 + 6 / 12, "feet"),
  24920. weight: math.unit(80, "lb"),
  24921. name: "Front",
  24922. image: {
  24923. source: "./media/characters/pixie/front.svg",
  24924. extra: 1924 / 1825,
  24925. bottom: 22.4 / 1946
  24926. }
  24927. },
  24928. },
  24929. [
  24930. {
  24931. name: "Normal",
  24932. height: math.unit(4 + 6 / 12, "feet"),
  24933. default: true
  24934. },
  24935. {
  24936. name: "Macro",
  24937. height: math.unit(40, "feet")
  24938. },
  24939. ]
  24940. ))
  24941. characterMakers.push(() => makeCharacter(
  24942. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24943. {
  24944. front: {
  24945. height: math.unit(2.1, "meters"),
  24946. weight: math.unit(200, "lb"),
  24947. name: "Front",
  24948. image: {
  24949. source: "./media/characters/the-lascivious/front.svg",
  24950. extra: 1 / 0.893,
  24951. bottom: 3.5 / 573.7
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Human Scale",
  24958. height: math.unit(2.1, "meters")
  24959. },
  24960. {
  24961. name: "Wolxi Scale",
  24962. height: math.unit(46.2, "m"),
  24963. default: true
  24964. },
  24965. {
  24966. name: "Boinker of Buildings",
  24967. height: math.unit(10, "km")
  24968. },
  24969. {
  24970. name: "Shagger of Skyscrapers",
  24971. height: math.unit(40, "km")
  24972. },
  24973. {
  24974. name: "Banger of Boroughs",
  24975. height: math.unit(4000, "km")
  24976. },
  24977. {
  24978. name: "Screwer of States",
  24979. height: math.unit(100000, "km")
  24980. },
  24981. {
  24982. name: "Pounder of Planets",
  24983. height: math.unit(2000000, "km")
  24984. },
  24985. ]
  24986. ))
  24987. characterMakers.push(() => makeCharacter(
  24988. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24989. {
  24990. front: {
  24991. height: math.unit(6, "feet"),
  24992. weight: math.unit(150, "lb"),
  24993. name: "Front",
  24994. image: {
  24995. source: "./media/characters/aj/front.svg",
  24996. extra: 2039 / 1562,
  24997. bottom: 40 / 2079
  24998. }
  24999. },
  25000. },
  25001. [
  25002. {
  25003. name: "Normal",
  25004. height: math.unit(11 + 6 / 12, "feet"),
  25005. default: true
  25006. },
  25007. {
  25008. name: "Megamacro",
  25009. height: math.unit(60, "megameters")
  25010. },
  25011. ]
  25012. ))
  25013. characterMakers.push(() => makeCharacter(
  25014. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25015. {
  25016. side: {
  25017. height: math.unit(31 + 8 / 12, "feet"),
  25018. weight: math.unit(75000, "kg"),
  25019. name: "Side",
  25020. image: {
  25021. source: "./media/characters/koros/side.svg",
  25022. extra: 1442 / 1297,
  25023. bottom: 122.7 / 1562
  25024. }
  25025. },
  25026. dicksKingsCrown: {
  25027. height: math.unit(6, "feet"),
  25028. name: "Dicks (King's Crown)",
  25029. image: {
  25030. source: "./media/characters/koros/dicks-kings-crown.svg"
  25031. }
  25032. },
  25033. dicksTailSet: {
  25034. height: math.unit(3, "feet"),
  25035. name: "Dicks (Tail Set)",
  25036. image: {
  25037. source: "./media/characters/koros/dicks-tail-set.svg"
  25038. }
  25039. },
  25040. dickCumming: {
  25041. height: math.unit(7.98, "feet"),
  25042. name: "Dick (Cumming)",
  25043. image: {
  25044. source: "./media/characters/koros/dick-cumming.svg"
  25045. }
  25046. },
  25047. dicksBack: {
  25048. height: math.unit(5.9, "feet"),
  25049. name: "Dicks (Back)",
  25050. image: {
  25051. source: "./media/characters/koros/dicks-back.svg"
  25052. }
  25053. },
  25054. dicksFront: {
  25055. height: math.unit(3.72, "feet"),
  25056. name: "Dicks (Front)",
  25057. image: {
  25058. source: "./media/characters/koros/dicks-front.svg"
  25059. }
  25060. },
  25061. dicksPeeking: {
  25062. height: math.unit(3.0, "feet"),
  25063. name: "Dicks (Peeking)",
  25064. image: {
  25065. source: "./media/characters/koros/dicks-peeking.svg"
  25066. }
  25067. },
  25068. eye: {
  25069. height: math.unit(1.7, "feet"),
  25070. name: "Eye",
  25071. image: {
  25072. source: "./media/characters/koros/eye.svg"
  25073. }
  25074. },
  25075. headFront: {
  25076. height: math.unit(11.69, "feet"),
  25077. name: "Head (Front)",
  25078. image: {
  25079. source: "./media/characters/koros/head-front.svg"
  25080. }
  25081. },
  25082. headSide: {
  25083. height: math.unit(14, "feet"),
  25084. name: "Head (Side)",
  25085. image: {
  25086. source: "./media/characters/koros/head-side.svg"
  25087. }
  25088. },
  25089. leg: {
  25090. height: math.unit(17, "feet"),
  25091. name: "Leg",
  25092. image: {
  25093. source: "./media/characters/koros/leg.svg"
  25094. }
  25095. },
  25096. mawSide: {
  25097. height: math.unit(12.8, "feet"),
  25098. name: "Maw (Side)",
  25099. image: {
  25100. source: "./media/characters/koros/maw-side.svg"
  25101. }
  25102. },
  25103. mawSpitting: {
  25104. height: math.unit(17, "feet"),
  25105. name: "Maw (Spitting)",
  25106. image: {
  25107. source: "./media/characters/koros/maw-spitting.svg"
  25108. }
  25109. },
  25110. slit: {
  25111. height: math.unit(2.8, "feet"),
  25112. name: "Slit",
  25113. image: {
  25114. source: "./media/characters/koros/slit.svg"
  25115. }
  25116. },
  25117. stomach: {
  25118. height: math.unit(6.8, "feet"),
  25119. capacity: math.unit(20, "people"),
  25120. name: "Stomach",
  25121. image: {
  25122. source: "./media/characters/koros/stomach.svg"
  25123. }
  25124. },
  25125. wingspanBottom: {
  25126. height: math.unit(114, "feet"),
  25127. name: "Wingspan (Bottom)",
  25128. image: {
  25129. source: "./media/characters/koros/wingspan-bottom.svg"
  25130. }
  25131. },
  25132. wingspanTop: {
  25133. height: math.unit(104, "feet"),
  25134. name: "Wingspan (Top)",
  25135. image: {
  25136. source: "./media/characters/koros/wingspan-top.svg"
  25137. }
  25138. },
  25139. },
  25140. [
  25141. {
  25142. name: "Normal",
  25143. height: math.unit(31 + 8 / 12, "feet"),
  25144. default: true
  25145. },
  25146. ]
  25147. ))
  25148. characterMakers.push(() => makeCharacter(
  25149. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25150. {
  25151. front: {
  25152. height: math.unit(18 + 5 / 12, "feet"),
  25153. weight: math.unit(3750, "kg"),
  25154. name: "Front",
  25155. image: {
  25156. source: "./media/characters/vexx/front.svg",
  25157. extra: 426 / 396,
  25158. bottom: 31.5 / 458
  25159. }
  25160. },
  25161. maw: {
  25162. height: math.unit(6, "feet"),
  25163. name: "Maw",
  25164. image: {
  25165. source: "./media/characters/vexx/maw.svg"
  25166. }
  25167. },
  25168. },
  25169. [
  25170. {
  25171. name: "Normal",
  25172. height: math.unit(18 + 5 / 12, "feet"),
  25173. default: true
  25174. },
  25175. ]
  25176. ))
  25177. characterMakers.push(() => makeCharacter(
  25178. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25179. {
  25180. front: {
  25181. height: math.unit(17 + 6 / 12, "feet"),
  25182. weight: math.unit(150, "lb"),
  25183. name: "Front",
  25184. image: {
  25185. source: "./media/characters/baadra/front.svg",
  25186. extra: 3137 / 2890,
  25187. bottom: 168.4 / 3305
  25188. }
  25189. },
  25190. back: {
  25191. height: math.unit(17 + 6 / 12, "feet"),
  25192. weight: math.unit(150, "lb"),
  25193. name: "Back",
  25194. image: {
  25195. source: "./media/characters/baadra/back.svg",
  25196. extra: 3142 / 2890,
  25197. bottom: 220 / 3371
  25198. }
  25199. },
  25200. head: {
  25201. height: math.unit(5.45, "feet"),
  25202. name: "Head",
  25203. image: {
  25204. source: "./media/characters/baadra/head.svg"
  25205. }
  25206. },
  25207. headAngry: {
  25208. height: math.unit(4.95, "feet"),
  25209. name: "Head (Angry)",
  25210. image: {
  25211. source: "./media/characters/baadra/head-angry.svg"
  25212. }
  25213. },
  25214. headOpen: {
  25215. height: math.unit(6, "feet"),
  25216. name: "Head (Open)",
  25217. image: {
  25218. source: "./media/characters/baadra/head-open.svg"
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(17 + 6 / 12, "feet"),
  25226. default: true
  25227. },
  25228. ]
  25229. ))
  25230. characterMakers.push(() => makeCharacter(
  25231. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25232. {
  25233. front: {
  25234. height: math.unit(7 + 3 / 12, "feet"),
  25235. weight: math.unit(180, "lb"),
  25236. name: "Front",
  25237. image: {
  25238. source: "./media/characters/juri/front.svg",
  25239. extra: 1401 / 1237,
  25240. bottom: 18.5 / 1418
  25241. }
  25242. },
  25243. side: {
  25244. height: math.unit(7 + 3 / 12, "feet"),
  25245. weight: math.unit(180, "lb"),
  25246. name: "Side",
  25247. image: {
  25248. source: "./media/characters/juri/side.svg",
  25249. extra: 1424 / 1242,
  25250. bottom: 18.5 / 1447
  25251. }
  25252. },
  25253. sitting: {
  25254. height: math.unit(6, "feet"),
  25255. weight: math.unit(180, "lb"),
  25256. name: "Sitting",
  25257. image: {
  25258. source: "./media/characters/juri/sitting.svg",
  25259. extra: 1270 / 1143,
  25260. bottom: 100 / 1343
  25261. }
  25262. },
  25263. back: {
  25264. height: math.unit(7 + 3 / 12, "feet"),
  25265. weight: math.unit(180, "lb"),
  25266. name: "Back",
  25267. image: {
  25268. source: "./media/characters/juri/back.svg",
  25269. extra: 1377 / 1240,
  25270. bottom: 23.7 / 1405
  25271. }
  25272. },
  25273. maw: {
  25274. height: math.unit(2.8, "feet"),
  25275. name: "Maw",
  25276. image: {
  25277. source: "./media/characters/juri/maw.svg"
  25278. }
  25279. },
  25280. stomach: {
  25281. height: math.unit(0.89, "feet"),
  25282. capacity: math.unit(4, "liters"),
  25283. name: "Stomach",
  25284. image: {
  25285. source: "./media/characters/juri/stomach.svg"
  25286. }
  25287. },
  25288. },
  25289. [
  25290. {
  25291. name: "Normal",
  25292. height: math.unit(7 + 3 / 12, "feet"),
  25293. default: true
  25294. },
  25295. ]
  25296. ))
  25297. characterMakers.push(() => makeCharacter(
  25298. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25299. {
  25300. fox: {
  25301. height: math.unit(5 + 6 / 12, "feet"),
  25302. weight: math.unit(140, "lb"),
  25303. name: "Fox",
  25304. image: {
  25305. source: "./media/characters/maxene-sita/fox.svg",
  25306. extra: 146 / 138,
  25307. bottom: 2.1 / 148.19
  25308. }
  25309. },
  25310. foxLaying: {
  25311. height: math.unit(1.70, "feet"),
  25312. weight: math.unit(140, "lb"),
  25313. name: "Fox (Laying)",
  25314. image: {
  25315. source: "./media/characters/maxene-sita/fox-laying.svg",
  25316. extra: 910 / 572,
  25317. bottom: 71 / 981
  25318. }
  25319. },
  25320. kitsune: {
  25321. height: math.unit(10, "feet"),
  25322. weight: math.unit(800, "lb"),
  25323. name: "Kitsune",
  25324. image: {
  25325. source: "./media/characters/maxene-sita/kitsune.svg",
  25326. extra: 185 / 176,
  25327. bottom: 4.7 / 189.9
  25328. }
  25329. },
  25330. hellhound: {
  25331. height: math.unit(10, "feet"),
  25332. weight: math.unit(700, "lb"),
  25333. name: "Hellhound",
  25334. image: {
  25335. source: "./media/characters/maxene-sita/hellhound.svg",
  25336. extra: 1600 / 1545,
  25337. bottom: 81 / 1681
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Normal",
  25344. height: math.unit(5 + 6 / 12, "feet"),
  25345. default: true
  25346. },
  25347. ]
  25348. ))
  25349. characterMakers.push(() => makeCharacter(
  25350. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25351. {
  25352. front: {
  25353. height: math.unit(3 + 4 / 12, "feet"),
  25354. weight: math.unit(70, "lb"),
  25355. name: "Front",
  25356. image: {
  25357. source: "./media/characters/maia/front.svg",
  25358. extra: 227 / 219.5,
  25359. bottom: 40 / 267
  25360. }
  25361. },
  25362. back: {
  25363. height: math.unit(3 + 4 / 12, "feet"),
  25364. weight: math.unit(70, "lb"),
  25365. name: "Back",
  25366. image: {
  25367. source: "./media/characters/maia/back.svg",
  25368. extra: 237 / 225
  25369. }
  25370. },
  25371. },
  25372. [
  25373. {
  25374. name: "Normal",
  25375. height: math.unit(3 + 4 / 12, "feet"),
  25376. default: true
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25382. {
  25383. front: {
  25384. height: math.unit(5 + 10 / 12, "feet"),
  25385. weight: math.unit(197, "lb"),
  25386. name: "Front",
  25387. image: {
  25388. source: "./media/characters/jabaro/front.svg",
  25389. extra: 225 / 216,
  25390. bottom: 5.06 / 230
  25391. }
  25392. },
  25393. back: {
  25394. height: math.unit(5 + 10 / 12, "feet"),
  25395. weight: math.unit(197, "lb"),
  25396. name: "Back",
  25397. image: {
  25398. source: "./media/characters/jabaro/back.svg",
  25399. extra: 225 / 219,
  25400. bottom: 1.9 / 227
  25401. }
  25402. },
  25403. },
  25404. [
  25405. {
  25406. name: "Normal",
  25407. height: math.unit(5 + 10 / 12, "feet"),
  25408. default: true
  25409. },
  25410. ]
  25411. ))
  25412. characterMakers.push(() => makeCharacter(
  25413. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25414. {
  25415. front: {
  25416. height: math.unit(5 + 8 / 12, "feet"),
  25417. weight: math.unit(139, "lb"),
  25418. name: "Front",
  25419. image: {
  25420. source: "./media/characters/risa/front.svg",
  25421. extra: 270 / 260,
  25422. bottom: 11.2 / 282
  25423. }
  25424. },
  25425. back: {
  25426. height: math.unit(5 + 8 / 12, "feet"),
  25427. weight: math.unit(139, "lb"),
  25428. name: "Back",
  25429. image: {
  25430. source: "./media/characters/risa/back.svg",
  25431. extra: 264 / 255,
  25432. bottom: 4 / 268
  25433. }
  25434. },
  25435. },
  25436. [
  25437. {
  25438. name: "Normal",
  25439. height: math.unit(5 + 8 / 12, "feet"),
  25440. default: true
  25441. },
  25442. ]
  25443. ))
  25444. characterMakers.push(() => makeCharacter(
  25445. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25446. {
  25447. front: {
  25448. height: math.unit(2 + 11 / 12, "feet"),
  25449. weight: math.unit(30, "lb"),
  25450. name: "Front",
  25451. image: {
  25452. source: "./media/characters/weatley/front.svg",
  25453. bottom: 10.7 / 414,
  25454. extra: 403.5 / 362
  25455. }
  25456. },
  25457. back: {
  25458. height: math.unit(2 + 11 / 12, "feet"),
  25459. weight: math.unit(30, "lb"),
  25460. name: "Back",
  25461. image: {
  25462. source: "./media/characters/weatley/back.svg",
  25463. bottom: 10.7 / 414,
  25464. extra: 403.5 / 362
  25465. }
  25466. },
  25467. },
  25468. [
  25469. {
  25470. name: "Normal",
  25471. height: math.unit(2 + 11 / 12, "feet"),
  25472. default: true
  25473. },
  25474. ]
  25475. ))
  25476. characterMakers.push(() => makeCharacter(
  25477. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25478. {
  25479. front: {
  25480. height: math.unit(5 + 2 / 12, "feet"),
  25481. weight: math.unit(50, "kg"),
  25482. name: "Front",
  25483. image: {
  25484. source: "./media/characters/mercury-crescent/front.svg",
  25485. extra: 1088 / 1033,
  25486. bottom: 18.9 / 1109
  25487. }
  25488. },
  25489. },
  25490. [
  25491. {
  25492. name: "Normal",
  25493. height: math.unit(5 + 2 / 12, "feet"),
  25494. default: true
  25495. },
  25496. ]
  25497. ))
  25498. characterMakers.push(() => makeCharacter(
  25499. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25500. {
  25501. front: {
  25502. height: math.unit(2, "feet"),
  25503. weight: math.unit(15, "kg"),
  25504. name: "Front",
  25505. image: {
  25506. source: "./media/characters/diamond-jones/front.svg",
  25507. extra: 727/723,
  25508. bottom: 46/773
  25509. }
  25510. },
  25511. },
  25512. [
  25513. {
  25514. name: "Normal",
  25515. height: math.unit(2, "feet"),
  25516. default: true
  25517. },
  25518. ]
  25519. ))
  25520. characterMakers.push(() => makeCharacter(
  25521. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25522. {
  25523. front: {
  25524. height: math.unit(3, "feet"),
  25525. weight: math.unit(30, "kg"),
  25526. name: "Front",
  25527. image: {
  25528. source: "./media/characters/sweet-bit/front.svg",
  25529. extra: 675 / 567,
  25530. bottom: 27.7 / 703
  25531. }
  25532. },
  25533. },
  25534. [
  25535. {
  25536. name: "Normal",
  25537. height: math.unit(3, "feet"),
  25538. default: true
  25539. },
  25540. ]
  25541. ))
  25542. characterMakers.push(() => makeCharacter(
  25543. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25544. {
  25545. side: {
  25546. height: math.unit(9.178, "feet"),
  25547. weight: math.unit(500, "lb"),
  25548. name: "Side",
  25549. image: {
  25550. source: "./media/characters/umbrazen/side.svg",
  25551. extra: 1730 / 1473,
  25552. bottom: 34.6 / 1765
  25553. }
  25554. },
  25555. },
  25556. [
  25557. {
  25558. name: "Normal",
  25559. height: math.unit(9.178, "feet"),
  25560. default: true
  25561. },
  25562. ]
  25563. ))
  25564. characterMakers.push(() => makeCharacter(
  25565. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25566. {
  25567. front: {
  25568. height: math.unit(10, "feet"),
  25569. weight: math.unit(750, "lb"),
  25570. name: "Front",
  25571. image: {
  25572. source: "./media/characters/arlist/front.svg",
  25573. extra: 961 / 778,
  25574. bottom: 6.2 / 986
  25575. }
  25576. },
  25577. },
  25578. [
  25579. {
  25580. name: "Normal",
  25581. height: math.unit(10, "feet"),
  25582. default: true
  25583. },
  25584. ]
  25585. ))
  25586. characterMakers.push(() => makeCharacter(
  25587. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25588. {
  25589. front: {
  25590. height: math.unit(5 + 1 / 12, "feet"),
  25591. weight: math.unit(110, "lb"),
  25592. name: "Front",
  25593. image: {
  25594. source: "./media/characters/aradel/front.svg",
  25595. extra: 324 / 303,
  25596. bottom: 3.6 / 329.4
  25597. }
  25598. },
  25599. },
  25600. [
  25601. {
  25602. name: "Normal",
  25603. height: math.unit(5 + 1 / 12, "feet"),
  25604. default: true
  25605. },
  25606. ]
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25610. {
  25611. front: {
  25612. height: math.unit(3 + 8 / 12, "feet"),
  25613. weight: math.unit(50, "lb"),
  25614. name: "Front",
  25615. image: {
  25616. source: "./media/characters/serryn/front.svg",
  25617. extra: 1792 / 1656,
  25618. bottom: 43.5 / 1840
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(3 + 8 / 12, "feet"),
  25626. default: true
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25632. {
  25633. front: {
  25634. height: math.unit(7 + 10 / 12, "feet"),
  25635. weight: math.unit(255, "lb"),
  25636. name: "Front",
  25637. image: {
  25638. source: "./media/characters/xavier-thyme/front.svg",
  25639. extra: 3733 / 3642,
  25640. bottom: 131 / 3869
  25641. }
  25642. },
  25643. frontRaven: {
  25644. height: math.unit(7 + 10 / 12, "feet"),
  25645. weight: math.unit(255, "lb"),
  25646. name: "Front (Raven)",
  25647. image: {
  25648. source: "./media/characters/xavier-thyme/front-raven.svg",
  25649. extra: 4385 / 3642,
  25650. bottom: 131 / 4517
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Normal",
  25657. height: math.unit(7 + 10 / 12, "feet"),
  25658. default: true
  25659. },
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25664. {
  25665. front: {
  25666. height: math.unit(1.6, "m"),
  25667. weight: math.unit(50, "kg"),
  25668. name: "Front",
  25669. image: {
  25670. source: "./media/characters/kiki/front.svg",
  25671. extra: 4682 / 3610,
  25672. bottom: 115 / 4777
  25673. }
  25674. },
  25675. },
  25676. [
  25677. {
  25678. name: "Normal",
  25679. height: math.unit(1.6, "meters"),
  25680. default: true
  25681. },
  25682. ]
  25683. ))
  25684. characterMakers.push(() => makeCharacter(
  25685. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25686. {
  25687. front: {
  25688. height: math.unit(50, "m"),
  25689. weight: math.unit(500, "tonnes"),
  25690. name: "Front",
  25691. image: {
  25692. source: "./media/characters/ryoko/front.svg",
  25693. extra: 4632 / 3926,
  25694. bottom: 193 / 4823
  25695. }
  25696. },
  25697. },
  25698. [
  25699. {
  25700. name: "Normal",
  25701. height: math.unit(50, "meters"),
  25702. default: true
  25703. },
  25704. ]
  25705. ))
  25706. characterMakers.push(() => makeCharacter(
  25707. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25708. {
  25709. front: {
  25710. height: math.unit(30, "m"),
  25711. weight: math.unit(22, "tonnes"),
  25712. name: "Front",
  25713. image: {
  25714. source: "./media/characters/elio/front.svg",
  25715. extra: 4582 / 3720,
  25716. bottom: 236 / 4828
  25717. }
  25718. },
  25719. },
  25720. [
  25721. {
  25722. name: "Normal",
  25723. height: math.unit(30, "meters"),
  25724. default: true
  25725. },
  25726. ]
  25727. ))
  25728. characterMakers.push(() => makeCharacter(
  25729. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25730. {
  25731. front: {
  25732. height: math.unit(6 + 3 / 12, "feet"),
  25733. weight: math.unit(120, "lb"),
  25734. name: "Front",
  25735. image: {
  25736. source: "./media/characters/azura/front.svg",
  25737. extra: 1149 / 1135,
  25738. bottom: 45 / 1194
  25739. }
  25740. },
  25741. frontClothed: {
  25742. height: math.unit(6 + 3 / 12, "feet"),
  25743. weight: math.unit(120, "lb"),
  25744. name: "Front (Clothed)",
  25745. image: {
  25746. source: "./media/characters/azura/front-clothed.svg",
  25747. extra: 1149 / 1135,
  25748. bottom: 45 / 1194
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "Normal",
  25755. height: math.unit(6 + 3 / 12, "feet"),
  25756. default: true
  25757. },
  25758. {
  25759. name: "Macro",
  25760. height: math.unit(20 + 6 / 12, "feet")
  25761. },
  25762. {
  25763. name: "Megamacro",
  25764. height: math.unit(12, "miles")
  25765. },
  25766. {
  25767. name: "Gigamacro",
  25768. height: math.unit(10000, "miles")
  25769. },
  25770. {
  25771. name: "Teramacro",
  25772. height: math.unit(900000, "miles")
  25773. },
  25774. ]
  25775. ))
  25776. characterMakers.push(() => makeCharacter(
  25777. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25778. {
  25779. front: {
  25780. height: math.unit(12, "feet"),
  25781. weight: math.unit(1, "ton"),
  25782. capacity: math.unit(660000, "gallons"),
  25783. name: "Front",
  25784. image: {
  25785. source: "./media/characters/zeus/front.svg",
  25786. extra: 5005 / 4717,
  25787. bottom: 363 / 5388
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Normal",
  25794. height: math.unit(12, "feet")
  25795. },
  25796. {
  25797. name: "Preferred Size",
  25798. height: math.unit(0.5, "miles"),
  25799. default: true
  25800. },
  25801. {
  25802. name: "Giga Horse",
  25803. height: math.unit(300, "miles")
  25804. },
  25805. {
  25806. name: "Riding Planets",
  25807. height: math.unit(30, "megameters")
  25808. },
  25809. {
  25810. name: "Cosmic Giant",
  25811. height: math.unit(3, "zettameters")
  25812. },
  25813. {
  25814. name: "Breeding God",
  25815. height: math.unit(9.92e22, "yottameters")
  25816. },
  25817. ]
  25818. ))
  25819. characterMakers.push(() => makeCharacter(
  25820. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25821. {
  25822. side: {
  25823. height: math.unit(9, "feet"),
  25824. weight: math.unit(1500, "kg"),
  25825. name: "Side",
  25826. image: {
  25827. source: "./media/characters/fang/side.svg",
  25828. extra: 924 / 866,
  25829. bottom: 47.5 / 972.3
  25830. }
  25831. },
  25832. },
  25833. [
  25834. {
  25835. name: "Normal",
  25836. height: math.unit(9, "feet"),
  25837. default: true
  25838. },
  25839. {
  25840. name: "Macro",
  25841. height: math.unit(75 + 6 / 12, "feet")
  25842. },
  25843. {
  25844. name: "Teramacro",
  25845. height: math.unit(50000, "miles")
  25846. },
  25847. ]
  25848. ))
  25849. characterMakers.push(() => makeCharacter(
  25850. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25851. {
  25852. front: {
  25853. height: math.unit(10, "feet"),
  25854. weight: math.unit(2, "tons"),
  25855. name: "Front",
  25856. image: {
  25857. source: "./media/characters/rekhit/front.svg",
  25858. extra: 2796 / 2590,
  25859. bottom: 225 / 3022
  25860. }
  25861. },
  25862. },
  25863. [
  25864. {
  25865. name: "Normal",
  25866. height: math.unit(10, "feet"),
  25867. default: true
  25868. },
  25869. {
  25870. name: "Macro",
  25871. height: math.unit(500, "feet")
  25872. },
  25873. ]
  25874. ))
  25875. characterMakers.push(() => makeCharacter(
  25876. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25877. {
  25878. front: {
  25879. height: math.unit(7 + 6.451 / 12, "feet"),
  25880. weight: math.unit(310, "lb"),
  25881. name: "Front",
  25882. image: {
  25883. source: "./media/characters/dahlia-verrick/front.svg",
  25884. extra: 1488 / 1365,
  25885. bottom: 6.2 / 1495
  25886. }
  25887. },
  25888. back: {
  25889. height: math.unit(7 + 6.451 / 12, "feet"),
  25890. weight: math.unit(310, "lb"),
  25891. name: "Back",
  25892. image: {
  25893. source: "./media/characters/dahlia-verrick/back.svg",
  25894. extra: 1472 / 1351,
  25895. bottom: 5.28 / 1477
  25896. }
  25897. },
  25898. frontBusiness: {
  25899. height: math.unit(7 + 6.451 / 12, "feet"),
  25900. weight: math.unit(200, "lb"),
  25901. name: "Front (Business)",
  25902. image: {
  25903. source: "./media/characters/dahlia-verrick/front-business.svg",
  25904. extra: 1478 / 1381,
  25905. bottom: 5.5 / 1484
  25906. }
  25907. },
  25908. frontCasual: {
  25909. height: math.unit(7 + 6.451 / 12, "feet"),
  25910. weight: math.unit(200, "lb"),
  25911. name: "Front (Casual)",
  25912. image: {
  25913. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25914. extra: 1478 / 1381,
  25915. bottom: 5.5 / 1484
  25916. }
  25917. },
  25918. },
  25919. [
  25920. {
  25921. name: "Travel-Sized",
  25922. height: math.unit(7.45, "inches")
  25923. },
  25924. {
  25925. name: "Normal",
  25926. height: math.unit(7 + 6.451 / 12, "feet"),
  25927. default: true
  25928. },
  25929. {
  25930. name: "Hitting the Town",
  25931. height: math.unit(37 + 8 / 12, "feet")
  25932. },
  25933. {
  25934. name: "Stomp in the Suburbs",
  25935. height: math.unit(964 + 9.728 / 12, "feet")
  25936. },
  25937. {
  25938. name: "Sit on the City",
  25939. height: math.unit(61747 + 10.592 / 12, "feet")
  25940. },
  25941. {
  25942. name: "Glomp the Globe",
  25943. height: math.unit(252919327 + 4.832 / 12, "feet")
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25949. {
  25950. front: {
  25951. height: math.unit(6 + 4 / 12, "feet"),
  25952. weight: math.unit(320, "lb"),
  25953. name: "Front",
  25954. image: {
  25955. source: "./media/characters/balina-mahigan/front.svg",
  25956. extra: 447 / 428,
  25957. bottom: 18 / 466
  25958. }
  25959. },
  25960. back: {
  25961. height: math.unit(6 + 4 / 12, "feet"),
  25962. weight: math.unit(320, "lb"),
  25963. name: "Back",
  25964. image: {
  25965. source: "./media/characters/balina-mahigan/back.svg",
  25966. extra: 445 / 428,
  25967. bottom: 4.07 / 448
  25968. }
  25969. },
  25970. arm: {
  25971. height: math.unit(1.88, "feet"),
  25972. name: "Arm",
  25973. image: {
  25974. source: "./media/characters/balina-mahigan/arm.svg"
  25975. }
  25976. },
  25977. backPort: {
  25978. height: math.unit(0.685, "feet"),
  25979. name: "Back Port",
  25980. image: {
  25981. source: "./media/characters/balina-mahigan/back-port.svg"
  25982. }
  25983. },
  25984. hoofpaw: {
  25985. height: math.unit(1.41, "feet"),
  25986. name: "Hoofpaw",
  25987. image: {
  25988. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25989. }
  25990. },
  25991. leftHandBack: {
  25992. height: math.unit(0.938, "feet"),
  25993. name: "Left Hand (Back)",
  25994. image: {
  25995. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25996. }
  25997. },
  25998. leftHandFront: {
  25999. height: math.unit(0.938, "feet"),
  26000. name: "Left Hand (Front)",
  26001. image: {
  26002. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26003. }
  26004. },
  26005. rightHandBack: {
  26006. height: math.unit(0.95, "feet"),
  26007. name: "Right Hand (Back)",
  26008. image: {
  26009. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26010. }
  26011. },
  26012. rightHandFront: {
  26013. height: math.unit(0.95, "feet"),
  26014. name: "Right Hand (Front)",
  26015. image: {
  26016. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26017. }
  26018. },
  26019. },
  26020. [
  26021. {
  26022. name: "Normal",
  26023. height: math.unit(6 + 4 / 12, "feet"),
  26024. default: true
  26025. },
  26026. ]
  26027. ))
  26028. characterMakers.push(() => makeCharacter(
  26029. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26030. {
  26031. front: {
  26032. height: math.unit(6, "feet"),
  26033. weight: math.unit(320, "lb"),
  26034. name: "Front",
  26035. image: {
  26036. source: "./media/characters/balina-mejeri/front.svg",
  26037. extra: 517 / 488,
  26038. bottom: 44.2 / 561
  26039. }
  26040. },
  26041. },
  26042. [
  26043. {
  26044. name: "Normal",
  26045. height: math.unit(6 + 4 / 12, "feet")
  26046. },
  26047. {
  26048. name: "Business",
  26049. height: math.unit(155, "feet"),
  26050. default: true
  26051. },
  26052. ]
  26053. ))
  26054. characterMakers.push(() => makeCharacter(
  26055. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26056. {
  26057. kneeling: {
  26058. height: math.unit(6 + 4 / 12, "feet"),
  26059. weight: math.unit(300 * 20, "lb"),
  26060. name: "Kneeling",
  26061. image: {
  26062. source: "./media/characters/balbarian/kneeling.svg",
  26063. extra: 922 / 862,
  26064. bottom: 42.4 / 965
  26065. }
  26066. },
  26067. },
  26068. [
  26069. {
  26070. name: "Normal",
  26071. height: math.unit(6 + 4 / 12, "feet")
  26072. },
  26073. {
  26074. name: "Treasured",
  26075. height: math.unit(18 + 9 / 12, "feet"),
  26076. default: true
  26077. },
  26078. {
  26079. name: "Macro",
  26080. height: math.unit(900, "feet")
  26081. },
  26082. ]
  26083. ))
  26084. characterMakers.push(() => makeCharacter(
  26085. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26086. {
  26087. front: {
  26088. height: math.unit(6 + 4 / 12, "feet"),
  26089. weight: math.unit(325, "lb"),
  26090. name: "Front",
  26091. image: {
  26092. source: "./media/characters/balina-amarini/front.svg",
  26093. extra: 415 / 403,
  26094. bottom: 19 / 433.4
  26095. }
  26096. },
  26097. back: {
  26098. height: math.unit(6 + 4 / 12, "feet"),
  26099. weight: math.unit(325, "lb"),
  26100. name: "Back",
  26101. image: {
  26102. source: "./media/characters/balina-amarini/back.svg",
  26103. extra: 415 / 403,
  26104. bottom: 13.5 / 432
  26105. }
  26106. },
  26107. overdrive: {
  26108. height: math.unit(6 + 4 / 12, "feet"),
  26109. weight: math.unit(400, "lb"),
  26110. name: "Overdrive",
  26111. image: {
  26112. source: "./media/characters/balina-amarini/overdrive.svg",
  26113. extra: 269 / 259,
  26114. bottom: 12 / 282
  26115. }
  26116. },
  26117. },
  26118. [
  26119. {
  26120. name: "Boom",
  26121. height: math.unit(9 + 10 / 12, "feet"),
  26122. default: true
  26123. },
  26124. {
  26125. name: "Macro",
  26126. height: math.unit(280, "feet")
  26127. },
  26128. ]
  26129. ))
  26130. characterMakers.push(() => makeCharacter(
  26131. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26132. {
  26133. goddess: {
  26134. height: math.unit(600, "feet"),
  26135. weight: math.unit(2000000, "tons"),
  26136. name: "Goddess",
  26137. image: {
  26138. source: "./media/characters/lady-kubwa/goddess.svg",
  26139. extra: 1240.5 / 1223,
  26140. bottom: 22 / 1263
  26141. }
  26142. },
  26143. goddesser: {
  26144. height: math.unit(900, "feet"),
  26145. weight: math.unit(20000000, "lb"),
  26146. name: "Goddess-er",
  26147. image: {
  26148. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26149. extra: 899 / 888,
  26150. bottom: 12.6 / 912
  26151. }
  26152. },
  26153. },
  26154. [
  26155. {
  26156. name: "Macro",
  26157. height: math.unit(600, "feet"),
  26158. default: true
  26159. },
  26160. {
  26161. name: "Megamacro",
  26162. height: math.unit(250, "miles")
  26163. },
  26164. ]
  26165. ))
  26166. characterMakers.push(() => makeCharacter(
  26167. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26168. {
  26169. front: {
  26170. height: math.unit(7 + 7 / 12, "feet"),
  26171. weight: math.unit(250, "lb"),
  26172. name: "Front",
  26173. image: {
  26174. source: "./media/characters/tala-grovehorn/front.svg",
  26175. extra: 2636 / 2525,
  26176. bottom: 147 / 2781
  26177. }
  26178. },
  26179. back: {
  26180. height: math.unit(7 + 7 / 12, "feet"),
  26181. weight: math.unit(250, "lb"),
  26182. name: "Back",
  26183. image: {
  26184. source: "./media/characters/tala-grovehorn/back.svg",
  26185. extra: 2635 / 2539,
  26186. bottom: 100 / 2732.8
  26187. }
  26188. },
  26189. mouth: {
  26190. height: math.unit(1.15, "feet"),
  26191. name: "Mouth",
  26192. image: {
  26193. source: "./media/characters/tala-grovehorn/mouth.svg"
  26194. }
  26195. },
  26196. dick: {
  26197. height: math.unit(2.36, "feet"),
  26198. name: "Dick",
  26199. image: {
  26200. source: "./media/characters/tala-grovehorn/dick.svg"
  26201. }
  26202. },
  26203. slit: {
  26204. height: math.unit(0.61, "feet"),
  26205. name: "Slit",
  26206. image: {
  26207. source: "./media/characters/tala-grovehorn/slit.svg"
  26208. }
  26209. },
  26210. },
  26211. [
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26216. {
  26217. front: {
  26218. height: math.unit(7 + 7 / 12, "feet"),
  26219. weight: math.unit(225, "lb"),
  26220. name: "Front",
  26221. image: {
  26222. source: "./media/characters/epona/front.svg",
  26223. extra: 2445 / 2290,
  26224. bottom: 251 / 2696
  26225. }
  26226. },
  26227. back: {
  26228. height: math.unit(7 + 7 / 12, "feet"),
  26229. weight: math.unit(225, "lb"),
  26230. name: "Back",
  26231. image: {
  26232. source: "./media/characters/epona/back.svg",
  26233. extra: 2546 / 2408,
  26234. bottom: 44 / 2589
  26235. }
  26236. },
  26237. genitals: {
  26238. height: math.unit(1.5, "feet"),
  26239. name: "Genitals",
  26240. image: {
  26241. source: "./media/characters/epona/genitals.svg"
  26242. }
  26243. },
  26244. },
  26245. [
  26246. {
  26247. name: "Normal",
  26248. height: math.unit(7 + 7 / 12, "feet"),
  26249. default: true
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26255. {
  26256. front: {
  26257. height: math.unit(7, "feet"),
  26258. weight: math.unit(518, "lb"),
  26259. name: "Front",
  26260. image: {
  26261. source: "./media/characters/avia-bloodbourn/front.svg",
  26262. extra: 1466 / 1350,
  26263. bottom: 65 / 1527
  26264. }
  26265. },
  26266. },
  26267. [
  26268. ]
  26269. ))
  26270. characterMakers.push(() => makeCharacter(
  26271. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26272. {
  26273. front: {
  26274. height: math.unit(9.35, "feet"),
  26275. weight: math.unit(600, "lb"),
  26276. name: "Front",
  26277. image: {
  26278. source: "./media/characters/amera/front.svg",
  26279. extra: 891 / 818,
  26280. bottom: 30 / 922.7
  26281. }
  26282. },
  26283. back: {
  26284. height: math.unit(9.35, "feet"),
  26285. weight: math.unit(600, "lb"),
  26286. name: "Back",
  26287. image: {
  26288. source: "./media/characters/amera/back.svg",
  26289. extra: 876 / 824,
  26290. bottom: 6.8 / 884
  26291. }
  26292. },
  26293. dick: {
  26294. height: math.unit(2.14, "feet"),
  26295. name: "Dick",
  26296. image: {
  26297. source: "./media/characters/amera/dick.svg"
  26298. }
  26299. },
  26300. },
  26301. [
  26302. {
  26303. name: "Normal",
  26304. height: math.unit(9.35, "feet"),
  26305. default: true
  26306. },
  26307. ]
  26308. ))
  26309. characterMakers.push(() => makeCharacter(
  26310. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26311. {
  26312. kneeling: {
  26313. height: math.unit(3 + 4 / 12, "feet"),
  26314. weight: math.unit(90, "lb"),
  26315. name: "Kneeling",
  26316. image: {
  26317. source: "./media/characters/rosewen/kneeling.svg",
  26318. extra: 1835 / 1571,
  26319. bottom: 27.7 / 1862
  26320. }
  26321. },
  26322. },
  26323. [
  26324. {
  26325. name: "Normal",
  26326. height: math.unit(3 + 4 / 12, "feet"),
  26327. default: true
  26328. },
  26329. ]
  26330. ))
  26331. characterMakers.push(() => makeCharacter(
  26332. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26333. {
  26334. front: {
  26335. height: math.unit(5 + 10 / 12, "feet"),
  26336. weight: math.unit(200, "lb"),
  26337. name: "Front",
  26338. image: {
  26339. source: "./media/characters/sabah/front.svg",
  26340. extra: 849 / 763,
  26341. bottom: 33.9 / 881
  26342. }
  26343. },
  26344. },
  26345. [
  26346. {
  26347. name: "Normal",
  26348. height: math.unit(5 + 10 / 12, "feet"),
  26349. default: true
  26350. },
  26351. ]
  26352. ))
  26353. characterMakers.push(() => makeCharacter(
  26354. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26355. {
  26356. front: {
  26357. height: math.unit(3 + 5 / 12, "feet"),
  26358. weight: math.unit(40, "kg"),
  26359. name: "Front",
  26360. image: {
  26361. source: "./media/characters/purple-flame/front.svg",
  26362. extra: 1577 / 1412,
  26363. bottom: 97 / 1694
  26364. }
  26365. },
  26366. frontDressed: {
  26367. height: math.unit(3 + 5 / 12, "feet"),
  26368. weight: math.unit(40, "kg"),
  26369. name: "Front (Dressed)",
  26370. image: {
  26371. source: "./media/characters/purple-flame/front-dressed.svg",
  26372. extra: 1577 / 1412,
  26373. bottom: 97 / 1694
  26374. }
  26375. },
  26376. headphones: {
  26377. height: math.unit(0.85, "feet"),
  26378. name: "Headphones",
  26379. image: {
  26380. source: "./media/characters/purple-flame/headphones.svg"
  26381. }
  26382. },
  26383. },
  26384. [
  26385. {
  26386. name: "Really Small",
  26387. height: math.unit(5, "cm")
  26388. },
  26389. {
  26390. name: "Micro",
  26391. height: math.unit(1 + 5 / 12, "feet")
  26392. },
  26393. {
  26394. name: "Normal",
  26395. height: math.unit(3 + 5 / 12, "feet"),
  26396. default: true
  26397. },
  26398. {
  26399. name: "Minimacro",
  26400. height: math.unit(125, "feet")
  26401. },
  26402. {
  26403. name: "Macro",
  26404. height: math.unit(0.5, "miles")
  26405. },
  26406. {
  26407. name: "Megamacro",
  26408. height: math.unit(50, "miles")
  26409. },
  26410. {
  26411. name: "Gigantic",
  26412. height: math.unit(750, "miles")
  26413. },
  26414. {
  26415. name: "Planetary",
  26416. height: math.unit(15000, "miles")
  26417. },
  26418. ]
  26419. ))
  26420. characterMakers.push(() => makeCharacter(
  26421. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26422. {
  26423. front: {
  26424. height: math.unit(14, "feet"),
  26425. weight: math.unit(959, "lb"),
  26426. name: "Front",
  26427. image: {
  26428. source: "./media/characters/arsenal/front.svg",
  26429. extra: 2357 / 2157,
  26430. bottom: 93 / 2458
  26431. }
  26432. },
  26433. },
  26434. [
  26435. {
  26436. name: "Normal",
  26437. height: math.unit(14, "feet"),
  26438. default: true
  26439. },
  26440. ]
  26441. ))
  26442. characterMakers.push(() => makeCharacter(
  26443. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26444. {
  26445. front: {
  26446. height: math.unit(6, "feet"),
  26447. weight: math.unit(150, "lb"),
  26448. name: "Front",
  26449. image: {
  26450. source: "./media/characters/adira/front.svg",
  26451. extra: 1078 / 1029,
  26452. bottom: 87 / 1166
  26453. }
  26454. },
  26455. },
  26456. [
  26457. {
  26458. name: "Micro",
  26459. height: math.unit(4, "inches"),
  26460. default: true
  26461. },
  26462. {
  26463. name: "Macro",
  26464. height: math.unit(50, "feet")
  26465. },
  26466. ]
  26467. ))
  26468. characterMakers.push(() => makeCharacter(
  26469. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26470. {
  26471. front: {
  26472. height: math.unit(16, "feet"),
  26473. weight: math.unit(1000, "lb"),
  26474. name: "Front",
  26475. image: {
  26476. source: "./media/characters/grim/front.svg",
  26477. extra: 622 / 614,
  26478. bottom: 18.1 / 642
  26479. }
  26480. },
  26481. back: {
  26482. height: math.unit(16, "feet"),
  26483. weight: math.unit(1000, "lb"),
  26484. name: "Back",
  26485. image: {
  26486. source: "./media/characters/grim/back.svg",
  26487. extra: 610.6 / 602,
  26488. bottom: 40.8 / 652
  26489. }
  26490. },
  26491. hunched: {
  26492. height: math.unit(9.75, "feet"),
  26493. weight: math.unit(1000, "lb"),
  26494. name: "Hunched",
  26495. image: {
  26496. source: "./media/characters/grim/hunched.svg",
  26497. extra: 304 / 297,
  26498. bottom: 35.4 / 394
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "Normal",
  26505. height: math.unit(16, "feet"),
  26506. default: true
  26507. },
  26508. ]
  26509. ))
  26510. characterMakers.push(() => makeCharacter(
  26511. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26512. {
  26513. front: {
  26514. height: math.unit(2.3, "meters"),
  26515. weight: math.unit(300, "lb"),
  26516. name: "Front",
  26517. image: {
  26518. source: "./media/characters/sinja/front-sfw.svg",
  26519. extra: 1393 / 1294,
  26520. bottom: 70 / 1463
  26521. }
  26522. },
  26523. frontNsfw: {
  26524. height: math.unit(2.3, "meters"),
  26525. weight: math.unit(300, "lb"),
  26526. name: "Front (NSFW)",
  26527. image: {
  26528. source: "./media/characters/sinja/front-nsfw.svg",
  26529. extra: 1393 / 1294,
  26530. bottom: 70 / 1463
  26531. }
  26532. },
  26533. back: {
  26534. height: math.unit(2.3, "meters"),
  26535. weight: math.unit(300, "lb"),
  26536. name: "Back",
  26537. image: {
  26538. source: "./media/characters/sinja/back.svg",
  26539. extra: 1393 / 1294,
  26540. bottom: 70 / 1463
  26541. }
  26542. },
  26543. head: {
  26544. height: math.unit(1.771, "feet"),
  26545. name: "Head",
  26546. image: {
  26547. source: "./media/characters/sinja/head.svg"
  26548. }
  26549. },
  26550. slit: {
  26551. height: math.unit(0.8, "feet"),
  26552. name: "Slit",
  26553. image: {
  26554. source: "./media/characters/sinja/slit.svg"
  26555. }
  26556. },
  26557. },
  26558. [
  26559. {
  26560. name: "Normal",
  26561. height: math.unit(2.3, "meters")
  26562. },
  26563. {
  26564. name: "Macro",
  26565. height: math.unit(91, "meters"),
  26566. default: true
  26567. },
  26568. {
  26569. name: "Megamacro",
  26570. height: math.unit(91440, "meters")
  26571. },
  26572. {
  26573. name: "Gigamacro",
  26574. height: math.unit(60960000, "meters")
  26575. },
  26576. {
  26577. name: "Teramacro",
  26578. height: math.unit(9144000000, "meters")
  26579. },
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26584. {
  26585. front: {
  26586. height: math.unit(1.7, "meters"),
  26587. weight: math.unit(130, "lb"),
  26588. name: "Front",
  26589. image: {
  26590. source: "./media/characters/kyu/front.svg",
  26591. extra: 415 / 395,
  26592. bottom: 5 / 420
  26593. }
  26594. },
  26595. head: {
  26596. height: math.unit(1.75, "feet"),
  26597. name: "Head",
  26598. image: {
  26599. source: "./media/characters/kyu/head.svg"
  26600. }
  26601. },
  26602. foot: {
  26603. height: math.unit(0.81, "feet"),
  26604. name: "Foot",
  26605. image: {
  26606. source: "./media/characters/kyu/foot.svg"
  26607. }
  26608. },
  26609. },
  26610. [
  26611. {
  26612. name: "Normal",
  26613. height: math.unit(1.7, "meters")
  26614. },
  26615. {
  26616. name: "Macro",
  26617. height: math.unit(131, "feet"),
  26618. default: true
  26619. },
  26620. {
  26621. name: "Megamacro",
  26622. height: math.unit(91440, "meters")
  26623. },
  26624. {
  26625. name: "Gigamacro",
  26626. height: math.unit(60960000, "meters")
  26627. },
  26628. {
  26629. name: "Teramacro",
  26630. height: math.unit(9144000000, "meters")
  26631. },
  26632. ]
  26633. ))
  26634. characterMakers.push(() => makeCharacter(
  26635. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26636. {
  26637. front: {
  26638. height: math.unit(7 + 1 / 12, "feet"),
  26639. weight: math.unit(250, "lb"),
  26640. name: "Front",
  26641. image: {
  26642. source: "./media/characters/joey/front.svg",
  26643. extra: 1791 / 1537,
  26644. bottom: 28 / 1816
  26645. }
  26646. },
  26647. },
  26648. [
  26649. {
  26650. name: "Micro",
  26651. height: math.unit(3, "inches")
  26652. },
  26653. {
  26654. name: "Normal",
  26655. height: math.unit(7 + 1 / 12, "feet"),
  26656. default: true
  26657. },
  26658. ]
  26659. ))
  26660. characterMakers.push(() => makeCharacter(
  26661. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26662. {
  26663. front: {
  26664. height: math.unit(165, "cm"),
  26665. weight: math.unit(140, "lb"),
  26666. name: "Front",
  26667. image: {
  26668. source: "./media/characters/sam-evans/front.svg",
  26669. extra: 3417 / 3230,
  26670. bottom: 41.3 / 3417
  26671. }
  26672. },
  26673. frontSixTails: {
  26674. height: math.unit(165, "cm"),
  26675. weight: math.unit(140, "lb"),
  26676. name: "Front-six-tails",
  26677. image: {
  26678. source: "./media/characters/sam-evans/front-six-tails.svg",
  26679. extra: 3417 / 3230,
  26680. bottom: 41.3 / 3417
  26681. }
  26682. },
  26683. back: {
  26684. height: math.unit(165, "cm"),
  26685. weight: math.unit(140, "lb"),
  26686. name: "Back",
  26687. image: {
  26688. source: "./media/characters/sam-evans/back.svg",
  26689. extra: 3227 / 3032,
  26690. bottom: 6.8 / 3234
  26691. }
  26692. },
  26693. face: {
  26694. height: math.unit(0.68, "feet"),
  26695. name: "Face",
  26696. image: {
  26697. source: "./media/characters/sam-evans/face.svg"
  26698. }
  26699. },
  26700. },
  26701. [
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(165, "cm"),
  26705. default: true
  26706. },
  26707. {
  26708. name: "Macro",
  26709. height: math.unit(100, "meters")
  26710. },
  26711. {
  26712. name: "Macro+",
  26713. height: math.unit(800, "meters")
  26714. },
  26715. {
  26716. name: "Macro++",
  26717. height: math.unit(3, "km")
  26718. },
  26719. {
  26720. name: "Macro+++",
  26721. height: math.unit(30, "km")
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26727. {
  26728. front: {
  26729. height: math.unit(10, "feet"),
  26730. weight: math.unit(750, "lb"),
  26731. name: "Front",
  26732. image: {
  26733. source: "./media/characters/juliet-a/front.svg",
  26734. extra: 1766 / 1720,
  26735. bottom: 43 / 1809
  26736. }
  26737. },
  26738. back: {
  26739. height: math.unit(10, "feet"),
  26740. weight: math.unit(750, "lb"),
  26741. name: "Back",
  26742. image: {
  26743. source: "./media/characters/juliet-a/back.svg",
  26744. extra: 1781 / 1734,
  26745. bottom: 35 / 1810,
  26746. }
  26747. },
  26748. },
  26749. [
  26750. {
  26751. name: "Normal",
  26752. height: math.unit(10, "feet"),
  26753. default: true
  26754. },
  26755. {
  26756. name: "Dragon Form",
  26757. height: math.unit(250, "feet")
  26758. },
  26759. {
  26760. name: "Macro",
  26761. height: math.unit(1000, "feet")
  26762. },
  26763. {
  26764. name: "Megamacro",
  26765. height: math.unit(10000, "feet")
  26766. }
  26767. ]
  26768. ))
  26769. characterMakers.push(() => makeCharacter(
  26770. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26771. {
  26772. regular: {
  26773. height: math.unit(7 + 3 / 12, "feet"),
  26774. weight: math.unit(260, "lb"),
  26775. name: "Regular",
  26776. image: {
  26777. source: "./media/characters/wild/regular.svg",
  26778. extra: 97.45 / 92,
  26779. bottom: 6.8 / 104.3
  26780. }
  26781. },
  26782. biggums: {
  26783. height: math.unit(8 + 6 / 12, "feet"),
  26784. weight: math.unit(425, "lb"),
  26785. name: "Biggums",
  26786. image: {
  26787. source: "./media/characters/wild/biggums.svg",
  26788. extra: 97.45 / 92,
  26789. bottom: 7.5 / 132.34
  26790. }
  26791. },
  26792. mawRegular: {
  26793. height: math.unit(1.24, "feet"),
  26794. name: "Maw (Regular)",
  26795. image: {
  26796. source: "./media/characters/wild/maw.svg"
  26797. }
  26798. },
  26799. mawBiggums: {
  26800. height: math.unit(1.47, "feet"),
  26801. name: "Maw (Biggums)",
  26802. image: {
  26803. source: "./media/characters/wild/maw.svg"
  26804. }
  26805. },
  26806. },
  26807. [
  26808. {
  26809. name: "Normal",
  26810. height: math.unit(7 + 3 / 12, "feet"),
  26811. default: true
  26812. },
  26813. ]
  26814. ))
  26815. characterMakers.push(() => makeCharacter(
  26816. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26817. {
  26818. front: {
  26819. height: math.unit(2.5, "meters"),
  26820. weight: math.unit(200, "kg"),
  26821. name: "Front",
  26822. image: {
  26823. source: "./media/characters/vidar/front.svg",
  26824. extra: 2994 / 2795,
  26825. bottom: 56 / 3061
  26826. }
  26827. },
  26828. back: {
  26829. height: math.unit(2.5, "meters"),
  26830. weight: math.unit(200, "kg"),
  26831. name: "Back",
  26832. image: {
  26833. source: "./media/characters/vidar/back.svg",
  26834. extra: 3131 / 2928,
  26835. bottom: 13.5 / 3141.5
  26836. }
  26837. },
  26838. feral: {
  26839. height: math.unit(2.5, "meters"),
  26840. weight: math.unit(2000, "kg"),
  26841. name: "Feral",
  26842. image: {
  26843. source: "./media/characters/vidar/feral.svg",
  26844. extra: 2790 / 1765,
  26845. bottom: 6 / 2796
  26846. }
  26847. },
  26848. },
  26849. [
  26850. {
  26851. name: "Normal",
  26852. height: math.unit(2.5, "meters"),
  26853. default: true
  26854. },
  26855. {
  26856. name: "Macro",
  26857. height: math.unit(100, "meters")
  26858. },
  26859. ]
  26860. ))
  26861. characterMakers.push(() => makeCharacter(
  26862. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26863. {
  26864. front: {
  26865. height: math.unit(5 + 9 / 12, "feet"),
  26866. weight: math.unit(120, "lb"),
  26867. name: "Front",
  26868. image: {
  26869. source: "./media/characters/ash/front.svg",
  26870. extra: 2189 / 1961,
  26871. bottom: 5.2 / 2194
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Normal",
  26878. height: math.unit(5 + 9 / 12, "feet"),
  26879. default: true
  26880. },
  26881. ]
  26882. ))
  26883. characterMakers.push(() => makeCharacter(
  26884. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26885. {
  26886. front: {
  26887. height: math.unit(9, "feet"),
  26888. weight: math.unit(10000, "lb"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/gygabite/front.svg",
  26892. bottom: 31.7 / 537.8,
  26893. extra: 505 / 370
  26894. }
  26895. },
  26896. },
  26897. [
  26898. {
  26899. name: "Normal",
  26900. height: math.unit(9, "feet"),
  26901. default: true
  26902. },
  26903. ]
  26904. ))
  26905. characterMakers.push(() => makeCharacter(
  26906. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26907. {
  26908. front: {
  26909. height: math.unit(12, "feet"),
  26910. weight: math.unit(35000, "lb"),
  26911. name: "Front",
  26912. image: {
  26913. source: "./media/characters/p0tat0/front.svg",
  26914. extra: 1065 / 921,
  26915. bottom: 55.7 / 1121.25
  26916. }
  26917. },
  26918. },
  26919. [
  26920. {
  26921. name: "Normal",
  26922. height: math.unit(12, "feet"),
  26923. default: true
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26929. {
  26930. side: {
  26931. height: math.unit(6.5, "feet"),
  26932. weight: math.unit(800, "lb"),
  26933. name: "Side",
  26934. image: {
  26935. source: "./media/characters/dusk/side.svg",
  26936. extra: 615 / 373,
  26937. bottom: 53 / 664
  26938. }
  26939. },
  26940. sitting: {
  26941. height: math.unit(7, "feet"),
  26942. weight: math.unit(800, "lb"),
  26943. name: "Sitting",
  26944. image: {
  26945. source: "./media/characters/dusk/sitting.svg",
  26946. extra: 753 / 425,
  26947. bottom: 33 / 774
  26948. }
  26949. },
  26950. head: {
  26951. height: math.unit(6.1, "feet"),
  26952. name: "Head",
  26953. image: {
  26954. source: "./media/characters/dusk/head.svg"
  26955. }
  26956. },
  26957. },
  26958. [
  26959. {
  26960. name: "Normal",
  26961. height: math.unit(7, "feet"),
  26962. default: true
  26963. },
  26964. ]
  26965. ))
  26966. characterMakers.push(() => makeCharacter(
  26967. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26968. {
  26969. front: {
  26970. height: math.unit(15, "feet"),
  26971. weight: math.unit(7000, "lb"),
  26972. name: "Front",
  26973. image: {
  26974. source: "./media/characters/jay-direwolf/front.svg",
  26975. extra: 1810 / 1732,
  26976. bottom: 66 / 1892
  26977. }
  26978. },
  26979. },
  26980. [
  26981. {
  26982. name: "Normal",
  26983. height: math.unit(15, "feet"),
  26984. default: true
  26985. },
  26986. ]
  26987. ))
  26988. characterMakers.push(() => makeCharacter(
  26989. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26990. {
  26991. front: {
  26992. height: math.unit(4 + 9 / 12, "feet"),
  26993. weight: math.unit(130, "lb"),
  26994. name: "Front",
  26995. image: {
  26996. source: "./media/characters/anchovie/front.svg",
  26997. extra: 382 / 350,
  26998. bottom: 25 / 409
  26999. }
  27000. },
  27001. back: {
  27002. height: math.unit(4 + 9 / 12, "feet"),
  27003. weight: math.unit(130, "lb"),
  27004. name: "Back",
  27005. image: {
  27006. source: "./media/characters/anchovie/back.svg",
  27007. extra: 385 / 352,
  27008. bottom: 16.6 / 402
  27009. }
  27010. },
  27011. frontDressed: {
  27012. height: math.unit(4 + 9 / 12, "feet"),
  27013. weight: math.unit(130, "lb"),
  27014. name: "Front (Dressed)",
  27015. image: {
  27016. source: "./media/characters/anchovie/front-dressed.svg",
  27017. extra: 382 / 350,
  27018. bottom: 25 / 409
  27019. }
  27020. },
  27021. backDressed: {
  27022. height: math.unit(4 + 9 / 12, "feet"),
  27023. weight: math.unit(130, "lb"),
  27024. name: "Back (Dressed)",
  27025. image: {
  27026. source: "./media/characters/anchovie/back-dressed.svg",
  27027. extra: 385 / 352,
  27028. bottom: 16.6 / 402
  27029. }
  27030. },
  27031. },
  27032. [
  27033. {
  27034. name: "Micro",
  27035. height: math.unit(6.4, "inches")
  27036. },
  27037. {
  27038. name: "Normal",
  27039. height: math.unit(4 + 9 / 12, "feet"),
  27040. default: true
  27041. },
  27042. ]
  27043. ))
  27044. characterMakers.push(() => makeCharacter(
  27045. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27046. {
  27047. front: {
  27048. height: math.unit(2, "meters"),
  27049. weight: math.unit(180, "lb"),
  27050. name: "Front",
  27051. image: {
  27052. source: "./media/characters/acidrenamon/front.svg",
  27053. extra: 987 / 890,
  27054. bottom: 22.8 / 1009
  27055. }
  27056. },
  27057. back: {
  27058. height: math.unit(2, "meters"),
  27059. weight: math.unit(180, "lb"),
  27060. name: "Back",
  27061. image: {
  27062. source: "./media/characters/acidrenamon/back.svg",
  27063. extra: 983 / 891,
  27064. bottom: 8.4 / 992
  27065. }
  27066. },
  27067. head: {
  27068. height: math.unit(1.92, "feet"),
  27069. name: "Head",
  27070. image: {
  27071. source: "./media/characters/acidrenamon/head.svg"
  27072. }
  27073. },
  27074. rump: {
  27075. height: math.unit(1.72, "feet"),
  27076. name: "Rump",
  27077. image: {
  27078. source: "./media/characters/acidrenamon/rump.svg"
  27079. }
  27080. },
  27081. tail: {
  27082. height: math.unit(4.2, "feet"),
  27083. name: "Tail",
  27084. image: {
  27085. source: "./media/characters/acidrenamon/tail.svg"
  27086. }
  27087. },
  27088. },
  27089. [
  27090. {
  27091. name: "Normal",
  27092. height: math.unit(2, "meters"),
  27093. default: true
  27094. },
  27095. {
  27096. name: "Minimacro",
  27097. height: math.unit(7, "meters")
  27098. },
  27099. {
  27100. name: "Macro",
  27101. height: math.unit(200, "meters")
  27102. },
  27103. {
  27104. name: "Gigamacro",
  27105. height: math.unit(0.2, "earths")
  27106. },
  27107. ]
  27108. ))
  27109. characterMakers.push(() => makeCharacter(
  27110. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27111. {
  27112. front: {
  27113. height: math.unit(6, "feet"),
  27114. weight: math.unit(150, "lb"),
  27115. name: "Front",
  27116. image: {
  27117. source: "./media/characters/kenzie-lee/front.svg",
  27118. extra: 1525 / 1465,
  27119. bottom: 45 / 1570
  27120. }
  27121. },
  27122. side: {
  27123. height: math.unit(6, "feet"),
  27124. weight: math.unit(150, "lb"),
  27125. name: "Side",
  27126. image: {
  27127. source: "./media/characters/kenzie-lee/side.svg",
  27128. extra: 5505 / 5383,
  27129. bottom: 60 / 5573
  27130. }
  27131. },
  27132. paw: {
  27133. height: math.unit(0.57, "feet"),
  27134. name: "Paw",
  27135. image: {
  27136. source: "./media/characters/kenzie-lee/paw.svg"
  27137. }
  27138. },
  27139. },
  27140. [
  27141. {
  27142. name: "Normal",
  27143. height: math.unit(152, "feet"),
  27144. default: true
  27145. },
  27146. {
  27147. name: "Megamacro",
  27148. height: math.unit(7, "miles")
  27149. },
  27150. {
  27151. name: "Gigamacro",
  27152. height: math.unit(8000, "miles")
  27153. },
  27154. ]
  27155. ))
  27156. characterMakers.push(() => makeCharacter(
  27157. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27158. {
  27159. side: {
  27160. height: math.unit(6, "feet"),
  27161. weight: math.unit(150, "lb"),
  27162. name: "Side",
  27163. image: {
  27164. source: "./media/characters/withers/side.svg",
  27165. extra: 1830 / 1728,
  27166. bottom: 96 / 1927
  27167. }
  27168. },
  27169. front: {
  27170. height: math.unit(6, "feet"),
  27171. weight: math.unit(150, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/withers/front.svg",
  27175. extra: 1514 / 1438,
  27176. bottom: 118 / 1632
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Macro",
  27183. height: math.unit(168, "feet"),
  27184. default: true
  27185. },
  27186. {
  27187. name: "Megamacro",
  27188. height: math.unit(15, "miles")
  27189. }
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(6 + 7 / 12, "feet"),
  27197. weight: math.unit(250, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/nemoskii/front.svg",
  27201. extra: 2270 / 1734,
  27202. bottom: 86 / 2354
  27203. }
  27204. },
  27205. back: {
  27206. height: math.unit(6 + 7 / 12, "feet"),
  27207. weight: math.unit(250, "lb"),
  27208. name: "Back",
  27209. image: {
  27210. source: "./media/characters/nemoskii/back.svg",
  27211. extra: 1845 / 1788,
  27212. bottom: 10.5 / 1852
  27213. }
  27214. },
  27215. head: {
  27216. height: math.unit(1.31, "feet"),
  27217. name: "Head",
  27218. image: {
  27219. source: "./media/characters/nemoskii/head.svg"
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Micro",
  27226. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27227. },
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(6 + 7 / 12, "feet"),
  27231. default: true
  27232. },
  27233. {
  27234. name: "Macro",
  27235. height: math.unit((6 + 7 / 12) * 150, "feet")
  27236. },
  27237. {
  27238. name: "Macro+",
  27239. height: math.unit((6 + 7 / 12) * 500, "feet")
  27240. },
  27241. {
  27242. name: "Megamacro",
  27243. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27249. {
  27250. front: {
  27251. height: math.unit(1, "mile"),
  27252. weight: math.unit(265261.9, "lb"),
  27253. name: "Front",
  27254. image: {
  27255. source: "./media/characters/shui/front.svg",
  27256. extra: 1633 / 1564,
  27257. bottom: 91.5 / 1726
  27258. }
  27259. },
  27260. },
  27261. [
  27262. {
  27263. name: "Macro",
  27264. height: math.unit(1, "mile"),
  27265. default: true
  27266. },
  27267. ]
  27268. ))
  27269. characterMakers.push(() => makeCharacter(
  27270. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27271. {
  27272. front: {
  27273. height: math.unit(12 + 6 / 12, "feet"),
  27274. weight: math.unit(1342, "lb"),
  27275. name: "Front",
  27276. image: {
  27277. source: "./media/characters/arokh-takakura/front.svg",
  27278. extra: 1089 / 1043,
  27279. bottom: 77.4 / 1176.7
  27280. }
  27281. },
  27282. back: {
  27283. height: math.unit(12 + 6 / 12, "feet"),
  27284. weight: math.unit(1342, "lb"),
  27285. name: "Back",
  27286. image: {
  27287. source: "./media/characters/arokh-takakura/back.svg",
  27288. extra: 1046 / 1019,
  27289. bottom: 102 / 1150
  27290. }
  27291. },
  27292. },
  27293. [
  27294. {
  27295. name: "Big",
  27296. height: math.unit(12 + 6 / 12, "feet"),
  27297. default: true
  27298. },
  27299. ]
  27300. ))
  27301. characterMakers.push(() => makeCharacter(
  27302. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27303. {
  27304. front: {
  27305. height: math.unit(5 + 6 / 12, "feet"),
  27306. weight: math.unit(150, "lb"),
  27307. name: "Front",
  27308. image: {
  27309. source: "./media/characters/theo/front.svg",
  27310. extra: 1184 / 1131,
  27311. bottom: 7.4 / 1191
  27312. }
  27313. },
  27314. },
  27315. [
  27316. {
  27317. name: "Micro",
  27318. height: math.unit(5, "inches")
  27319. },
  27320. {
  27321. name: "Normal",
  27322. height: math.unit(5 + 6 / 12, "feet"),
  27323. default: true
  27324. },
  27325. ]
  27326. ))
  27327. characterMakers.push(() => makeCharacter(
  27328. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27329. {
  27330. front: {
  27331. height: math.unit(5 + 9 / 12, "feet"),
  27332. weight: math.unit(130, "lb"),
  27333. name: "Front",
  27334. image: {
  27335. source: "./media/characters/cecelia-swift/front.svg",
  27336. extra: 502 / 484,
  27337. bottom: 23 / 523
  27338. }
  27339. },
  27340. back: {
  27341. height: math.unit(5 + 9 / 12, "feet"),
  27342. weight: math.unit(130, "lb"),
  27343. name: "Back",
  27344. image: {
  27345. source: "./media/characters/cecelia-swift/back.svg",
  27346. extra: 499 / 485,
  27347. bottom: 12 / 511
  27348. }
  27349. },
  27350. head: {
  27351. height: math.unit(0.90, "feet"),
  27352. name: "Head",
  27353. image: {
  27354. source: "./media/characters/cecelia-swift/head.svg"
  27355. }
  27356. },
  27357. rump: {
  27358. height: math.unit(1.75, "feet"),
  27359. name: "Rump",
  27360. image: {
  27361. source: "./media/characters/cecelia-swift/rump.svg"
  27362. }
  27363. },
  27364. },
  27365. [
  27366. {
  27367. name: "Normal",
  27368. height: math.unit(5 + 9 / 12, "feet"),
  27369. default: true
  27370. },
  27371. {
  27372. name: "Big",
  27373. height: math.unit(50, "feet")
  27374. },
  27375. {
  27376. name: "Macro",
  27377. height: math.unit(100, "feet")
  27378. },
  27379. {
  27380. name: "Macro+",
  27381. height: math.unit(500, "feet")
  27382. },
  27383. {
  27384. name: "Macro++",
  27385. height: math.unit(1000, "feet")
  27386. },
  27387. ]
  27388. ))
  27389. characterMakers.push(() => makeCharacter(
  27390. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27391. {
  27392. front: {
  27393. height: math.unit(6, "feet"),
  27394. weight: math.unit(150, "lb"),
  27395. name: "Front",
  27396. image: {
  27397. source: "./media/characters/kaunan/front.svg",
  27398. extra: 2890 / 2523,
  27399. bottom: 49 / 2939
  27400. }
  27401. },
  27402. },
  27403. [
  27404. {
  27405. name: "Macro",
  27406. height: math.unit(150, "feet"),
  27407. default: true
  27408. },
  27409. ]
  27410. ))
  27411. characterMakers.push(() => makeCharacter(
  27412. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27413. {
  27414. front: {
  27415. height: math.unit(175, "cm"),
  27416. weight: math.unit(60, "kg"),
  27417. name: "Front",
  27418. image: {
  27419. source: "./media/characters/fei/front.svg",
  27420. extra: 1873/1723,
  27421. bottom: 53/1926
  27422. }
  27423. },
  27424. },
  27425. [
  27426. {
  27427. name: "Mortal",
  27428. height: math.unit(175, "cm")
  27429. },
  27430. {
  27431. name: "Normal",
  27432. height: math.unit(3500, "m"),
  27433. default: true
  27434. },
  27435. {
  27436. name: "Stroll",
  27437. height: math.unit(17.5, "km")
  27438. },
  27439. {
  27440. name: "Showoff",
  27441. height: math.unit(175, "km")
  27442. },
  27443. ]
  27444. ))
  27445. characterMakers.push(() => makeCharacter(
  27446. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27447. {
  27448. front: {
  27449. height: math.unit(7, "feet"),
  27450. weight: math.unit(1000, "kg"),
  27451. name: "Front",
  27452. image: {
  27453. source: "./media/characters/edrax/front.svg",
  27454. extra: 2838 / 2550,
  27455. bottom: 130 / 2968
  27456. }
  27457. },
  27458. },
  27459. [
  27460. {
  27461. name: "Small",
  27462. height: math.unit(7, "feet")
  27463. },
  27464. {
  27465. name: "Normal",
  27466. height: math.unit(1500, "meters")
  27467. },
  27468. {
  27469. name: "Mega",
  27470. height: math.unit(12000000, "km"),
  27471. default: true
  27472. },
  27473. {
  27474. name: "Megamacro",
  27475. height: math.unit(10600000, "lightyears")
  27476. },
  27477. {
  27478. name: "Hypermacro",
  27479. height: math.unit(256, "yottameters")
  27480. },
  27481. ]
  27482. ))
  27483. characterMakers.push(() => makeCharacter(
  27484. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27485. {
  27486. front: {
  27487. height: math.unit(10, "feet"),
  27488. weight: math.unit(750, "lb"),
  27489. name: "Front",
  27490. image: {
  27491. source: "./media/characters/clove/front.svg",
  27492. extra: 2031 / 1860,
  27493. bottom: 47.8 / 2080
  27494. }
  27495. },
  27496. back: {
  27497. height: math.unit(10, "feet"),
  27498. weight: math.unit(750, "lb"),
  27499. name: "Back",
  27500. image: {
  27501. source: "./media/characters/clove/back.svg",
  27502. extra: 2025 / 1859,
  27503. bottom: 46 / 2071
  27504. }
  27505. },
  27506. },
  27507. [
  27508. {
  27509. name: "Normal",
  27510. height: math.unit(10, "feet"),
  27511. default: true
  27512. },
  27513. ]
  27514. ))
  27515. characterMakers.push(() => makeCharacter(
  27516. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27517. {
  27518. front: {
  27519. height: math.unit(4, "feet"),
  27520. weight: math.unit(50, "lb"),
  27521. name: "Front",
  27522. image: {
  27523. source: "./media/characters/alex-rabbit/front.svg",
  27524. extra: 507 / 458,
  27525. bottom: 18.5 / 527
  27526. }
  27527. },
  27528. back: {
  27529. height: math.unit(4, "feet"),
  27530. weight: math.unit(50, "lb"),
  27531. name: "Back",
  27532. image: {
  27533. source: "./media/characters/alex-rabbit/back.svg",
  27534. extra: 502 / 460,
  27535. bottom: 18.9 / 521
  27536. }
  27537. },
  27538. },
  27539. [
  27540. {
  27541. name: "Normal",
  27542. height: math.unit(4, "feet"),
  27543. default: true
  27544. },
  27545. ]
  27546. ))
  27547. characterMakers.push(() => makeCharacter(
  27548. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27549. {
  27550. front: {
  27551. height: math.unit(1 + 3 / 12, "feet"),
  27552. weight: math.unit(80, "lb"),
  27553. name: "Front",
  27554. image: {
  27555. source: "./media/characters/zander-rose/front.svg",
  27556. extra: 916 / 797,
  27557. bottom: 17 / 933
  27558. }
  27559. },
  27560. back: {
  27561. height: math.unit(1 + 3 / 12, "feet"),
  27562. weight: math.unit(80, "lb"),
  27563. name: "Back",
  27564. image: {
  27565. source: "./media/characters/zander-rose/back.svg",
  27566. extra: 903 / 779,
  27567. bottom: 31 / 934
  27568. }
  27569. },
  27570. },
  27571. [
  27572. {
  27573. name: "Normal",
  27574. height: math.unit(1 + 3 / 12, "feet"),
  27575. default: true
  27576. },
  27577. ]
  27578. ))
  27579. characterMakers.push(() => makeCharacter(
  27580. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27581. {
  27582. anthro: {
  27583. height: math.unit(6, "feet"),
  27584. weight: math.unit(150, "lb"),
  27585. name: "Anthro",
  27586. image: {
  27587. source: "./media/characters/razz/anthro.svg",
  27588. extra: 1437 / 1343,
  27589. bottom: 48 / 1485
  27590. }
  27591. },
  27592. feral: {
  27593. height: math.unit(6, "feet"),
  27594. weight: math.unit(150, "lb"),
  27595. name: "Feral",
  27596. image: {
  27597. source: "./media/characters/razz/feral.svg",
  27598. extra: 2569 / 1385,
  27599. bottom: 95 / 2664
  27600. }
  27601. },
  27602. },
  27603. [
  27604. {
  27605. name: "Normal",
  27606. height: math.unit(6, "feet"),
  27607. default: true
  27608. },
  27609. ]
  27610. ))
  27611. characterMakers.push(() => makeCharacter(
  27612. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27613. {
  27614. front: {
  27615. height: math.unit(9 + 4 / 12, "feet"),
  27616. weight: math.unit(500, "lb"),
  27617. name: "Front",
  27618. image: {
  27619. source: "./media/characters/morrigan/front.svg",
  27620. extra: 2707 / 2579,
  27621. bottom: 156 / 2863
  27622. }
  27623. },
  27624. },
  27625. [
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(9 + 4 / 12, "feet"),
  27629. default: true
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27635. {
  27636. front: {
  27637. height: math.unit(5, "stories"),
  27638. weight: math.unit(4000, "lb"),
  27639. name: "Front",
  27640. image: {
  27641. source: "./media/characters/jenene/front.svg",
  27642. extra: 1780 / 1710,
  27643. bottom: 57 / 1837
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Normal",
  27650. height: math.unit(5, "stories"),
  27651. default: true
  27652. },
  27653. ]
  27654. ))
  27655. characterMakers.push(() => makeCharacter(
  27656. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27657. {
  27658. taurSfw: {
  27659. height: math.unit(10, "meters"),
  27660. weight: math.unit(17500, "kg"),
  27661. name: "Taur",
  27662. image: {
  27663. source: "./media/characters/faey/taur-sfw.svg",
  27664. extra: 1200 / 968,
  27665. bottom: 41 / 1241
  27666. }
  27667. },
  27668. chestmaw: {
  27669. height: math.unit(2.01, "meters"),
  27670. name: "Chestmaw",
  27671. image: {
  27672. source: "./media/characters/faey/chestmaw.svg"
  27673. }
  27674. },
  27675. foot: {
  27676. height: math.unit(2.43, "meters"),
  27677. name: "Foot",
  27678. image: {
  27679. source: "./media/characters/faey/foot.svg"
  27680. }
  27681. },
  27682. jaws: {
  27683. height: math.unit(1.66, "meters"),
  27684. name: "Jaws",
  27685. image: {
  27686. source: "./media/characters/faey/jaws.svg"
  27687. }
  27688. },
  27689. tongues: {
  27690. height: math.unit(2.01, "meters"),
  27691. name: "Tongues",
  27692. image: {
  27693. source: "./media/characters/faey/tongues.svg"
  27694. }
  27695. },
  27696. },
  27697. [
  27698. {
  27699. name: "Small",
  27700. height: math.unit(10, "meters"),
  27701. default: true
  27702. },
  27703. {
  27704. name: "Big",
  27705. height: math.unit(500000, "km")
  27706. },
  27707. ]
  27708. ))
  27709. characterMakers.push(() => makeCharacter(
  27710. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27711. {
  27712. front: {
  27713. height: math.unit(7, "feet"),
  27714. weight: math.unit(275, "lb"),
  27715. name: "Front",
  27716. image: {
  27717. source: "./media/characters/roku/front.svg",
  27718. extra: 903 / 878,
  27719. bottom: 37 / 940
  27720. }
  27721. },
  27722. },
  27723. [
  27724. {
  27725. name: "Normal",
  27726. height: math.unit(7, "feet"),
  27727. default: true
  27728. },
  27729. {
  27730. name: "Macro",
  27731. height: math.unit(500, "feet")
  27732. },
  27733. {
  27734. name: "Megamacro",
  27735. height: math.unit(200, "miles")
  27736. },
  27737. ]
  27738. ))
  27739. characterMakers.push(() => makeCharacter(
  27740. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27741. {
  27742. front: {
  27743. height: math.unit(6 + 2 / 12, "feet"),
  27744. weight: math.unit(150, "lb"),
  27745. name: "Front",
  27746. image: {
  27747. source: "./media/characters/lira/front.svg",
  27748. extra: 1727 / 1605,
  27749. bottom: 26 / 1753
  27750. }
  27751. },
  27752. back: {
  27753. height: math.unit(6 + 2 / 12, "feet"),
  27754. weight: math.unit(150, "lb"),
  27755. name: "Back",
  27756. image: {
  27757. source: "./media/characters/lira/back.svg",
  27758. extra: 1713/1621,
  27759. bottom: 20/1733
  27760. }
  27761. },
  27762. hand: {
  27763. height: math.unit(0.75, "feet"),
  27764. name: "Hand",
  27765. image: {
  27766. source: "./media/characters/lira/hand.svg"
  27767. }
  27768. },
  27769. maw: {
  27770. height: math.unit(0.65, "feet"),
  27771. name: "Maw",
  27772. image: {
  27773. source: "./media/characters/lira/maw.svg"
  27774. }
  27775. },
  27776. pawDigi: {
  27777. height: math.unit(1.6, "feet"),
  27778. name: "Paw Digi",
  27779. image: {
  27780. source: "./media/characters/lira/paw-digi.svg"
  27781. }
  27782. },
  27783. pawPlanti: {
  27784. height: math.unit(1.4, "feet"),
  27785. name: "Paw Planti",
  27786. image: {
  27787. source: "./media/characters/lira/paw-planti.svg"
  27788. }
  27789. },
  27790. },
  27791. [
  27792. {
  27793. name: "Normal",
  27794. height: math.unit(6 + 2 / 12, "feet"),
  27795. default: true
  27796. },
  27797. {
  27798. name: "Macro",
  27799. height: math.unit(100, "feet")
  27800. },
  27801. {
  27802. name: "Macro²",
  27803. height: math.unit(1600, "feet")
  27804. },
  27805. {
  27806. name: "Planetary",
  27807. height: math.unit(20, "earths")
  27808. },
  27809. ]
  27810. ))
  27811. characterMakers.push(() => makeCharacter(
  27812. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27813. {
  27814. front: {
  27815. height: math.unit(6, "feet"),
  27816. weight: math.unit(150, "lb"),
  27817. name: "Front",
  27818. image: {
  27819. source: "./media/characters/hadjet/front.svg",
  27820. extra: 1480 / 1346,
  27821. bottom: 26 / 1506
  27822. }
  27823. },
  27824. frontNsfw: {
  27825. height: math.unit(6, "feet"),
  27826. weight: math.unit(150, "lb"),
  27827. name: "Front (NSFW)",
  27828. image: {
  27829. source: "./media/characters/hadjet/front-nsfw.svg",
  27830. extra: 1440 / 1358,
  27831. bottom: 52 / 1492
  27832. }
  27833. },
  27834. },
  27835. [
  27836. {
  27837. name: "Macro",
  27838. height: math.unit(10, "stories"),
  27839. default: true
  27840. },
  27841. {
  27842. name: "Megamacro",
  27843. height: math.unit(1.5, "miles")
  27844. },
  27845. {
  27846. name: "Megamacro+",
  27847. height: math.unit(5, "miles")
  27848. },
  27849. ]
  27850. ))
  27851. characterMakers.push(() => makeCharacter(
  27852. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27853. {
  27854. side: {
  27855. height: math.unit(106, "feet"),
  27856. weight: math.unit(500, "tonnes"),
  27857. name: "Side",
  27858. image: {
  27859. source: "./media/characters/kodran/side.svg",
  27860. extra: 553 / 480,
  27861. bottom: 33 / 586
  27862. }
  27863. },
  27864. front: {
  27865. height: math.unit(132, "feet"),
  27866. weight: math.unit(500, "tonnes"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/kodran/front.svg",
  27870. extra: 667 / 643,
  27871. bottom: 42 / 709
  27872. }
  27873. },
  27874. flying: {
  27875. height: math.unit(350, "feet"),
  27876. weight: math.unit(500, "tonnes"),
  27877. name: "Flying",
  27878. image: {
  27879. source: "./media/characters/kodran/flying.svg"
  27880. }
  27881. },
  27882. foot: {
  27883. height: math.unit(33, "feet"),
  27884. name: "Foot",
  27885. image: {
  27886. source: "./media/characters/kodran/foot.svg"
  27887. }
  27888. },
  27889. footFront: {
  27890. height: math.unit(19, "feet"),
  27891. name: "Foot (Front)",
  27892. image: {
  27893. source: "./media/characters/kodran/foot-front.svg",
  27894. extra: 261 / 261,
  27895. bottom: 91 / 352
  27896. }
  27897. },
  27898. headFront: {
  27899. height: math.unit(53, "feet"),
  27900. name: "Head (Front)",
  27901. image: {
  27902. source: "./media/characters/kodran/head-front.svg"
  27903. }
  27904. },
  27905. headSide: {
  27906. height: math.unit(65, "feet"),
  27907. name: "Head (Side)",
  27908. image: {
  27909. source: "./media/characters/kodran/head-side.svg"
  27910. }
  27911. },
  27912. throat: {
  27913. height: math.unit(79, "feet"),
  27914. name: "Throat",
  27915. image: {
  27916. source: "./media/characters/kodran/throat.svg"
  27917. }
  27918. },
  27919. },
  27920. [
  27921. {
  27922. name: "Large",
  27923. height: math.unit(106, "feet"),
  27924. default: true
  27925. },
  27926. ]
  27927. ))
  27928. characterMakers.push(() => makeCharacter(
  27929. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27930. {
  27931. side: {
  27932. height: math.unit(11, "feet"),
  27933. weight: math.unit(150, "lb"),
  27934. name: "Side",
  27935. image: {
  27936. source: "./media/characters/pyxaron/side.svg",
  27937. extra: 305 / 195,
  27938. bottom: 17 / 322
  27939. }
  27940. },
  27941. },
  27942. [
  27943. {
  27944. name: "Normal",
  27945. height: math.unit(11, "feet"),
  27946. default: true
  27947. },
  27948. ]
  27949. ))
  27950. characterMakers.push(() => makeCharacter(
  27951. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27952. {
  27953. front: {
  27954. height: math.unit(6, "feet"),
  27955. weight: math.unit(150, "lb"),
  27956. name: "Front",
  27957. image: {
  27958. source: "./media/characters/meep/front.svg",
  27959. extra: 88 / 80,
  27960. bottom: 6 / 94
  27961. }
  27962. },
  27963. },
  27964. [
  27965. {
  27966. name: "Fun Sized",
  27967. height: math.unit(2, "inches"),
  27968. default: true
  27969. },
  27970. {
  27971. name: "Friend Sized",
  27972. height: math.unit(8, "inches")
  27973. },
  27974. ]
  27975. ))
  27976. characterMakers.push(() => makeCharacter(
  27977. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27978. {
  27979. front: {
  27980. height: math.unit(15, "feet"),
  27981. weight: math.unit(2500, "lb"),
  27982. name: "Front",
  27983. image: {
  27984. source: "./media/characters/holly-rabbit/front.svg",
  27985. extra: 1433 / 1233,
  27986. bottom: 125 / 1558
  27987. }
  27988. },
  27989. dick: {
  27990. height: math.unit(4.6, "feet"),
  27991. name: "Dick",
  27992. image: {
  27993. source: "./media/characters/holly-rabbit/dick.svg"
  27994. }
  27995. },
  27996. },
  27997. [
  27998. {
  27999. name: "Normal",
  28000. height: math.unit(15, "feet"),
  28001. default: true
  28002. },
  28003. {
  28004. name: "Macro",
  28005. height: math.unit(250, "feet")
  28006. },
  28007. {
  28008. name: "Macro+",
  28009. height: math.unit(2500, "feet")
  28010. },
  28011. ]
  28012. ))
  28013. characterMakers.push(() => makeCharacter(
  28014. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28015. {
  28016. front: {
  28017. height: math.unit(3.02, "meters"),
  28018. weight: math.unit(500, "kg"),
  28019. name: "Front",
  28020. image: {
  28021. source: "./media/characters/drena/front.svg",
  28022. extra: 282 / 243,
  28023. bottom: 8 / 290
  28024. }
  28025. },
  28026. side: {
  28027. height: math.unit(3.02, "meters"),
  28028. weight: math.unit(500, "kg"),
  28029. name: "Side",
  28030. image: {
  28031. source: "./media/characters/drena/side.svg",
  28032. extra: 280 / 245,
  28033. bottom: 10 / 290
  28034. }
  28035. },
  28036. back: {
  28037. height: math.unit(3.02, "meters"),
  28038. weight: math.unit(500, "kg"),
  28039. name: "Back",
  28040. image: {
  28041. source: "./media/characters/drena/back.svg",
  28042. extra: 278 / 243,
  28043. bottom: 2 / 280
  28044. }
  28045. },
  28046. foot: {
  28047. height: math.unit(0.75, "meters"),
  28048. name: "Foot",
  28049. image: {
  28050. source: "./media/characters/drena/foot.svg"
  28051. }
  28052. },
  28053. maw: {
  28054. height: math.unit(0.82, "meters"),
  28055. name: "Maw",
  28056. image: {
  28057. source: "./media/characters/drena/maw.svg"
  28058. }
  28059. },
  28060. rump: {
  28061. height: math.unit(0.93, "meters"),
  28062. name: "Rump",
  28063. image: {
  28064. source: "./media/characters/drena/rump.svg"
  28065. }
  28066. },
  28067. },
  28068. [
  28069. {
  28070. name: "Normal",
  28071. height: math.unit(3.02, "meters"),
  28072. default: true
  28073. },
  28074. ]
  28075. ))
  28076. characterMakers.push(() => makeCharacter(
  28077. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28078. {
  28079. front: {
  28080. height: math.unit(6 + 4 / 12, "feet"),
  28081. weight: math.unit(250, "lb"),
  28082. name: "Front",
  28083. image: {
  28084. source: "./media/characters/remmyzilla/front.svg",
  28085. extra: 4033 / 3588,
  28086. bottom: 123 / 4156
  28087. }
  28088. },
  28089. back: {
  28090. height: math.unit(6 + 4 / 12, "feet"),
  28091. weight: math.unit(250, "lb"),
  28092. name: "Back",
  28093. image: {
  28094. source: "./media/characters/remmyzilla/back.svg",
  28095. extra: 2687 / 2555,
  28096. bottom: 48 / 2735
  28097. }
  28098. },
  28099. paw: {
  28100. height: math.unit(1.73, "feet"),
  28101. name: "Paw",
  28102. image: {
  28103. source: "./media/characters/remmyzilla/paw.svg"
  28104. }
  28105. },
  28106. maw: {
  28107. height: math.unit(1.73, "feet"),
  28108. name: "Maw",
  28109. image: {
  28110. source: "./media/characters/remmyzilla/maw.svg"
  28111. }
  28112. },
  28113. },
  28114. [
  28115. {
  28116. name: "Normal",
  28117. height: math.unit(6 + 4 / 12, "feet")
  28118. },
  28119. {
  28120. name: "Minimacro",
  28121. height: math.unit(12 + 8 / 12, "feet")
  28122. },
  28123. {
  28124. name: "Normal",
  28125. height: math.unit(640, "feet"),
  28126. default: true
  28127. },
  28128. {
  28129. name: "Megamacro",
  28130. height: math.unit(6400, "feet")
  28131. },
  28132. {
  28133. name: "Gigamacro",
  28134. height: math.unit(64000, "miles")
  28135. },
  28136. ]
  28137. ))
  28138. characterMakers.push(() => makeCharacter(
  28139. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28140. {
  28141. front: {
  28142. height: math.unit(2.5, "meters"),
  28143. weight: math.unit(300, "lb"),
  28144. name: "Front",
  28145. image: {
  28146. source: "./media/characters/lawrence/front.svg",
  28147. extra: 357 / 335,
  28148. bottom: 30 / 387
  28149. }
  28150. },
  28151. back: {
  28152. height: math.unit(2.5, "meters"),
  28153. weight: math.unit(300, "lb"),
  28154. name: "Back",
  28155. image: {
  28156. source: "./media/characters/lawrence/back.svg",
  28157. extra: 357 / 338,
  28158. bottom: 16 / 373
  28159. }
  28160. },
  28161. head: {
  28162. height: math.unit(0.9, "meter"),
  28163. name: "Head",
  28164. image: {
  28165. source: "./media/characters/lawrence/head.svg"
  28166. }
  28167. },
  28168. maw: {
  28169. height: math.unit(0.7, "meter"),
  28170. name: "Maw",
  28171. image: {
  28172. source: "./media/characters/lawrence/maw.svg"
  28173. }
  28174. },
  28175. footBottom: {
  28176. height: math.unit(0.5, "meter"),
  28177. name: "Foot (Bottom)",
  28178. image: {
  28179. source: "./media/characters/lawrence/foot-bottom.svg"
  28180. }
  28181. },
  28182. footTop: {
  28183. height: math.unit(0.5, "meter"),
  28184. name: "Foot (Top)",
  28185. image: {
  28186. source: "./media/characters/lawrence/foot-top.svg"
  28187. }
  28188. },
  28189. },
  28190. [
  28191. {
  28192. name: "Normal",
  28193. height: math.unit(2.5, "meters"),
  28194. default: true
  28195. },
  28196. {
  28197. name: "Macro",
  28198. height: math.unit(95, "meters")
  28199. },
  28200. {
  28201. name: "Megamacro",
  28202. height: math.unit(150, "km")
  28203. },
  28204. ]
  28205. ))
  28206. characterMakers.push(() => makeCharacter(
  28207. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28208. {
  28209. front: {
  28210. height: math.unit(4.2, "meters"),
  28211. name: "Front",
  28212. image: {
  28213. source: "./media/characters/sydney/front.svg",
  28214. extra: 1323 / 1277,
  28215. bottom: 111 / 1434
  28216. }
  28217. },
  28218. },
  28219. [
  28220. {
  28221. name: "Normal",
  28222. height: math.unit(4.2, "meters"),
  28223. default: true
  28224. },
  28225. ]
  28226. ))
  28227. characterMakers.push(() => makeCharacter(
  28228. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28229. {
  28230. back: {
  28231. height: math.unit(201, "feet"),
  28232. name: "Back",
  28233. image: {
  28234. source: "./media/characters/jessica/back.svg",
  28235. extra: 273 / 259,
  28236. bottom: 7 / 280
  28237. }
  28238. },
  28239. },
  28240. [
  28241. {
  28242. name: "Normal",
  28243. height: math.unit(201, "feet"),
  28244. default: true
  28245. },
  28246. {
  28247. name: "Megamacro",
  28248. height: math.unit(8, "miles")
  28249. },
  28250. ]
  28251. ))
  28252. characterMakers.push(() => makeCharacter(
  28253. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28254. {
  28255. side: {
  28256. height: math.unit(320, "cm"),
  28257. name: "Side",
  28258. image: {
  28259. source: "./media/characters/victoria/side.svg",
  28260. extra: 778 / 346,
  28261. bottom: 56 / 834
  28262. }
  28263. },
  28264. maw: {
  28265. height: math.unit(5.9, "feet"),
  28266. name: "Maw",
  28267. image: {
  28268. source: "./media/characters/victoria/maw.svg"
  28269. }
  28270. },
  28271. },
  28272. [
  28273. {
  28274. name: "Normal",
  28275. height: math.unit(320, "cm"),
  28276. default: true
  28277. },
  28278. ]
  28279. ))
  28280. characterMakers.push(() => makeCharacter(
  28281. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28282. {
  28283. front: {
  28284. height: math.unit(5 + 6 / 12, "feet"),
  28285. name: "Front",
  28286. image: {
  28287. source: "./media/characters/cat/front.svg",
  28288. extra: 1374 / 1257,
  28289. bottom: 59 / 1433
  28290. }
  28291. },
  28292. back: {
  28293. height: math.unit(5 + 6 / 12, "feet"),
  28294. name: "Back",
  28295. image: {
  28296. source: "./media/characters/cat/back.svg",
  28297. extra: 1337 / 1226,
  28298. bottom: 34 / 1371
  28299. }
  28300. },
  28301. taur: {
  28302. height: math.unit(7, "feet"),
  28303. name: "Taur",
  28304. image: {
  28305. source: "./media/characters/cat/taur.svg",
  28306. extra: 1345 / 1231,
  28307. bottom: 66 / 1411
  28308. }
  28309. },
  28310. lucario: {
  28311. height: math.unit(4, "feet"),
  28312. name: "Lucario",
  28313. image: {
  28314. source: "./media/characters/cat/lucario.svg",
  28315. extra: 1470 / 1318,
  28316. bottom: 65 / 1535
  28317. }
  28318. },
  28319. megaLucario: {
  28320. height: math.unit(4, "feet"),
  28321. name: "Mega Lucario",
  28322. image: {
  28323. source: "./media/characters/cat/mega-lucario.svg",
  28324. extra: 1515 / 1319,
  28325. bottom: 63 / 1578
  28326. }
  28327. },
  28328. nickit: {
  28329. height: math.unit(2, "feet"),
  28330. name: "Nickit",
  28331. image: {
  28332. source: "./media/characters/cat/nickit.svg",
  28333. extra: 1980 / 1585,
  28334. bottom: 102 / 2082
  28335. }
  28336. },
  28337. lopunnyFront: {
  28338. height: math.unit(5, "feet"),
  28339. name: "Lopunny (Front)",
  28340. image: {
  28341. source: "./media/characters/cat/lopunny-front.svg",
  28342. extra: 1782 / 1469,
  28343. bottom: 38 / 1820
  28344. }
  28345. },
  28346. lopunnyBack: {
  28347. height: math.unit(5, "feet"),
  28348. name: "Lopunny (Back)",
  28349. image: {
  28350. source: "./media/characters/cat/lopunny-back.svg",
  28351. extra: 1660 / 1490,
  28352. bottom: 25 / 1685
  28353. }
  28354. },
  28355. },
  28356. [
  28357. {
  28358. name: "Really small",
  28359. height: math.unit(1, "nm")
  28360. },
  28361. {
  28362. name: "Micro",
  28363. height: math.unit(5, "inches")
  28364. },
  28365. {
  28366. name: "Normal",
  28367. height: math.unit(5 + 6 / 12, "feet"),
  28368. default: true
  28369. },
  28370. {
  28371. name: "Macro",
  28372. height: math.unit(50, "feet")
  28373. },
  28374. {
  28375. name: "Macro+",
  28376. height: math.unit(150, "feet")
  28377. },
  28378. {
  28379. name: "Megamacro",
  28380. height: math.unit(100, "miles")
  28381. },
  28382. ]
  28383. ))
  28384. characterMakers.push(() => makeCharacter(
  28385. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28386. {
  28387. front: {
  28388. height: math.unit(63.4, "meters"),
  28389. weight: math.unit(3.28349e+6, "kilograms"),
  28390. name: "Front",
  28391. image: {
  28392. source: "./media/characters/kirina-violet/front.svg",
  28393. extra: 2812 / 2725,
  28394. bottom: 0 / 2812
  28395. }
  28396. },
  28397. back: {
  28398. height: math.unit(63.4, "meters"),
  28399. weight: math.unit(3.28349e+6, "kilograms"),
  28400. name: "Back",
  28401. image: {
  28402. source: "./media/characters/kirina-violet/back.svg",
  28403. extra: 2812 / 2725,
  28404. bottom: 0 / 2812
  28405. }
  28406. },
  28407. mouth: {
  28408. height: math.unit(4.35, "meters"),
  28409. name: "Mouth",
  28410. image: {
  28411. source: "./media/characters/kirina-violet/mouth.svg"
  28412. }
  28413. },
  28414. paw: {
  28415. height: math.unit(5.6, "meters"),
  28416. name: "Paw",
  28417. image: {
  28418. source: "./media/characters/kirina-violet/paw.svg"
  28419. }
  28420. },
  28421. tail: {
  28422. height: math.unit(18, "meters"),
  28423. name: "Tail",
  28424. image: {
  28425. source: "./media/characters/kirina-violet/tail.svg"
  28426. }
  28427. },
  28428. },
  28429. [
  28430. {
  28431. name: "Macro",
  28432. height: math.unit(63.4, "meters"),
  28433. default: true
  28434. },
  28435. ]
  28436. ))
  28437. characterMakers.push(() => makeCharacter(
  28438. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28439. {
  28440. front: {
  28441. height: math.unit(75, "feet"),
  28442. name: "Front",
  28443. image: {
  28444. source: "./media/characters/cat-gigachu/front.svg",
  28445. extra: 1239/1027,
  28446. bottom: 32/1271
  28447. }
  28448. },
  28449. back: {
  28450. height: math.unit(75, "feet"),
  28451. name: "Back",
  28452. image: {
  28453. source: "./media/characters/cat-gigachu/back.svg",
  28454. extra: 1229/1030,
  28455. bottom: 9/1238
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Dynamax",
  28462. height: math.unit(75, "feet"),
  28463. default: true
  28464. },
  28465. ]
  28466. ))
  28467. characterMakers.push(() => makeCharacter(
  28468. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28469. {
  28470. front: {
  28471. height: math.unit(6, "feet"),
  28472. weight: math.unit(150, "lb"),
  28473. name: "Front",
  28474. image: {
  28475. source: "./media/characters/sfaiyan/front.svg",
  28476. extra: 999 / 978,
  28477. bottom: 5 / 1004
  28478. }
  28479. },
  28480. },
  28481. [
  28482. {
  28483. name: "Normal",
  28484. height: math.unit(1.82, "meters")
  28485. },
  28486. {
  28487. name: "Giant",
  28488. height: math.unit(2.27, "km"),
  28489. default: true
  28490. },
  28491. ]
  28492. ))
  28493. characterMakers.push(() => makeCharacter(
  28494. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28495. {
  28496. front: {
  28497. height: math.unit(179, "cm"),
  28498. weight: math.unit(100, "kg"),
  28499. name: "Front",
  28500. image: {
  28501. source: "./media/characters/raunehkeli/front.svg",
  28502. extra: 1934 / 1926,
  28503. bottom: 0 / 1934
  28504. }
  28505. },
  28506. },
  28507. [
  28508. {
  28509. name: "Normal",
  28510. height: math.unit(179, "cm")
  28511. },
  28512. {
  28513. name: "Maximum",
  28514. height: math.unit(575, "meters"),
  28515. default: true
  28516. },
  28517. ]
  28518. ))
  28519. characterMakers.push(() => makeCharacter(
  28520. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28521. {
  28522. front: {
  28523. height: math.unit(6, "feet"),
  28524. weight: math.unit(150, "lb"),
  28525. name: "Front",
  28526. image: {
  28527. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28528. extra: 2625 / 2518,
  28529. bottom: 60 / 2685
  28530. }
  28531. },
  28532. },
  28533. [
  28534. {
  28535. name: "Normal",
  28536. height: math.unit(6 + 2 / 12, "feet")
  28537. },
  28538. {
  28539. name: "Macro",
  28540. height: math.unit(1180, "feet"),
  28541. default: true
  28542. },
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28547. {
  28548. front: {
  28549. height: math.unit(5 + 6 / 12, "feet"),
  28550. weight: math.unit(108, "lb"),
  28551. name: "Front",
  28552. image: {
  28553. source: "./media/characters/lilith-zott/front.svg",
  28554. extra: 2510 / 2238,
  28555. bottom: 100 / 2610
  28556. }
  28557. },
  28558. frontDressed: {
  28559. height: math.unit(5 + 6 / 12, "feet"),
  28560. weight: math.unit(108, "lb"),
  28561. name: "Front (Dressed)",
  28562. image: {
  28563. source: "./media/characters/lilith-zott/front-dressed.svg",
  28564. extra: 2510 / 2238,
  28565. bottom: 100 / 2610
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Normal",
  28572. height: math.unit(5 + 6 / 12, "feet")
  28573. },
  28574. {
  28575. name: "Macro",
  28576. height: math.unit(1030, "feet"),
  28577. default: true
  28578. },
  28579. ]
  28580. ))
  28581. characterMakers.push(() => makeCharacter(
  28582. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28583. {
  28584. front: {
  28585. height: math.unit(6, "feet"),
  28586. weight: math.unit(150, "lb"),
  28587. name: "Front",
  28588. image: {
  28589. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28590. extra: 2567 / 2435,
  28591. bottom: 39 / 2606
  28592. }
  28593. },
  28594. frontSuper: {
  28595. height: math.unit(6, "feet"),
  28596. name: "Front (Super)",
  28597. image: {
  28598. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28599. extra: 2567 / 2435,
  28600. bottom: 39 / 2606
  28601. }
  28602. },
  28603. },
  28604. [
  28605. {
  28606. name: "Normal",
  28607. height: math.unit(5 + 10 / 12, "feet")
  28608. },
  28609. {
  28610. name: "Macro",
  28611. height: math.unit(1100, "feet"),
  28612. default: true
  28613. },
  28614. ]
  28615. ))
  28616. characterMakers.push(() => makeCharacter(
  28617. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28618. {
  28619. front: {
  28620. height: math.unit(100, "miles"),
  28621. name: "Front",
  28622. image: {
  28623. source: "./media/characters/sona/front.svg",
  28624. extra: 2433 / 2201,
  28625. bottom: 53 / 2486
  28626. }
  28627. },
  28628. foot: {
  28629. height: math.unit(16.1, "miles"),
  28630. name: "Foot",
  28631. image: {
  28632. source: "./media/characters/sona/foot.svg"
  28633. }
  28634. },
  28635. },
  28636. [
  28637. {
  28638. name: "Macro",
  28639. height: math.unit(100, "miles"),
  28640. default: true
  28641. },
  28642. ]
  28643. ))
  28644. characterMakers.push(() => makeCharacter(
  28645. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28646. {
  28647. front: {
  28648. height: math.unit(6, "feet"),
  28649. weight: math.unit(150, "lb"),
  28650. name: "Front",
  28651. image: {
  28652. source: "./media/characters/bailey/front.svg",
  28653. extra: 1778 / 1724,
  28654. bottom: 30 / 1808
  28655. }
  28656. },
  28657. },
  28658. [
  28659. {
  28660. name: "Micro",
  28661. height: math.unit(4, "inches")
  28662. },
  28663. {
  28664. name: "Normal",
  28665. height: math.unit(5 + 5 / 12, "feet"),
  28666. default: true
  28667. },
  28668. {
  28669. name: "Macro",
  28670. height: math.unit(250, "feet")
  28671. },
  28672. {
  28673. name: "Megamacro",
  28674. height: math.unit(100, "miles")
  28675. },
  28676. ]
  28677. ))
  28678. characterMakers.push(() => makeCharacter(
  28679. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28680. {
  28681. front: {
  28682. height: math.unit(5 + 2 / 12, "feet"),
  28683. weight: math.unit(120, "lb"),
  28684. name: "Front",
  28685. image: {
  28686. source: "./media/characters/snaps/front.svg",
  28687. extra: 2370 / 2177,
  28688. bottom: 48 / 2418
  28689. }
  28690. },
  28691. back: {
  28692. height: math.unit(5 + 2 / 12, "feet"),
  28693. weight: math.unit(120, "lb"),
  28694. name: "Back",
  28695. image: {
  28696. source: "./media/characters/snaps/back.svg",
  28697. extra: 2408 / 2258,
  28698. bottom: 15 / 2423
  28699. }
  28700. },
  28701. },
  28702. [
  28703. {
  28704. name: "Micro",
  28705. height: math.unit(9, "inches")
  28706. },
  28707. {
  28708. name: "Normal",
  28709. height: math.unit(5 + 2 / 12, "feet"),
  28710. default: true
  28711. },
  28712. {
  28713. name: "Mini Macro",
  28714. height: math.unit(10, "feet")
  28715. },
  28716. ]
  28717. ))
  28718. characterMakers.push(() => makeCharacter(
  28719. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28720. {
  28721. front: {
  28722. height: math.unit(1.8, "meters"),
  28723. weight: math.unit(85, "kg"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/azteck/front.svg",
  28727. extra: 2815 / 2625,
  28728. bottom: 89 / 2904
  28729. }
  28730. },
  28731. back: {
  28732. height: math.unit(1.8, "meters"),
  28733. weight: math.unit(85, "kg"),
  28734. name: "Back",
  28735. image: {
  28736. source: "./media/characters/azteck/back.svg",
  28737. extra: 2856 / 2648,
  28738. bottom: 85 / 2941
  28739. }
  28740. },
  28741. frontDressed: {
  28742. height: math.unit(1.8, "meters"),
  28743. weight: math.unit(85, "kg"),
  28744. name: "Front (Dressed)",
  28745. image: {
  28746. source: "./media/characters/azteck/front-dressed.svg",
  28747. extra: 2147 / 2003,
  28748. bottom: 68 / 2215
  28749. }
  28750. },
  28751. head: {
  28752. height: math.unit(0.47, "meters"),
  28753. weight: math.unit(85, "kg"),
  28754. name: "Head",
  28755. image: {
  28756. source: "./media/characters/azteck/head.svg"
  28757. }
  28758. },
  28759. },
  28760. [
  28761. {
  28762. name: "Bite sized",
  28763. height: math.unit(16, "cm")
  28764. },
  28765. {
  28766. name: "Normal",
  28767. height: math.unit(1.8, "meters"),
  28768. default: true
  28769. },
  28770. ]
  28771. ))
  28772. characterMakers.push(() => makeCharacter(
  28773. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28774. {
  28775. front: {
  28776. height: math.unit(6, "feet"),
  28777. weight: math.unit(150, "lb"),
  28778. name: "Front",
  28779. image: {
  28780. source: "./media/characters/pidge/front.svg",
  28781. extra: 620 / 588,
  28782. bottom: 9 / 629
  28783. }
  28784. },
  28785. back: {
  28786. height: math.unit(6, "feet"),
  28787. weight: math.unit(150, "lb"),
  28788. name: "Back",
  28789. image: {
  28790. source: "./media/characters/pidge/back.svg",
  28791. extra: 620 / 588,
  28792. bottom: 9 / 629
  28793. }
  28794. },
  28795. },
  28796. [
  28797. {
  28798. name: "Macro",
  28799. height: math.unit(1, "mile"),
  28800. default: true
  28801. },
  28802. ]
  28803. ))
  28804. characterMakers.push(() => makeCharacter(
  28805. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28806. {
  28807. front: {
  28808. height: math.unit(6, "feet"),
  28809. weight: math.unit(150, "lb"),
  28810. name: "Front",
  28811. image: {
  28812. source: "./media/characters/en/front.svg",
  28813. extra: 1697 / 1563,
  28814. bottom: 103 / 1800
  28815. }
  28816. },
  28817. back: {
  28818. height: math.unit(6, "feet"),
  28819. weight: math.unit(150, "lb"),
  28820. name: "Back",
  28821. image: {
  28822. source: "./media/characters/en/back.svg",
  28823. extra: 1700 / 1570,
  28824. bottom: 51 / 1751
  28825. }
  28826. },
  28827. frontDressed: {
  28828. height: math.unit(6, "feet"),
  28829. weight: math.unit(150, "lb"),
  28830. name: "Front (Dressed)",
  28831. image: {
  28832. source: "./media/characters/en/front-dressed.svg",
  28833. extra: 1697 / 1563,
  28834. bottom: 103 / 1800
  28835. }
  28836. },
  28837. backDressed: {
  28838. height: math.unit(6, "feet"),
  28839. weight: math.unit(150, "lb"),
  28840. name: "Back (Dressed)",
  28841. image: {
  28842. source: "./media/characters/en/back-dressed.svg",
  28843. extra: 1700 / 1570,
  28844. bottom: 51 / 1751
  28845. }
  28846. },
  28847. },
  28848. [
  28849. {
  28850. name: "Macro",
  28851. height: math.unit(210, "feet"),
  28852. default: true
  28853. },
  28854. ]
  28855. ))
  28856. characterMakers.push(() => makeCharacter(
  28857. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28858. {
  28859. front: {
  28860. height: math.unit(6, "feet"),
  28861. weight: math.unit(150, "lb"),
  28862. name: "Front",
  28863. image: {
  28864. source: "./media/characters/haze-orris/front.svg",
  28865. extra: 3975 / 3525,
  28866. bottom: 137 / 4112
  28867. }
  28868. },
  28869. },
  28870. [
  28871. {
  28872. name: "Micro",
  28873. height: math.unit(150, "mm"),
  28874. default: true
  28875. },
  28876. ]
  28877. ))
  28878. characterMakers.push(() => makeCharacter(
  28879. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28880. {
  28881. front: {
  28882. height: math.unit(6, "feet"),
  28883. weight: math.unit(150, "lb"),
  28884. name: "Front",
  28885. image: {
  28886. source: "./media/characters/casselene-yaro/front.svg",
  28887. extra: 4721 / 4541,
  28888. bottom: 82 / 4803
  28889. }
  28890. },
  28891. back: {
  28892. height: math.unit(6, "feet"),
  28893. weight: math.unit(150, "lb"),
  28894. name: "Back",
  28895. image: {
  28896. source: "./media/characters/casselene-yaro/back.svg",
  28897. extra: 4569 / 4377,
  28898. bottom: 69 / 4638
  28899. }
  28900. },
  28901. frontDressed: {
  28902. height: math.unit(6, "feet"),
  28903. weight: math.unit(150, "lb"),
  28904. name: "Front-dressed",
  28905. image: {
  28906. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28907. extra: 4721 / 4541,
  28908. bottom: 82 / 4803
  28909. }
  28910. },
  28911. },
  28912. [
  28913. {
  28914. name: "Macro",
  28915. height: math.unit(190, "feet"),
  28916. default: true
  28917. },
  28918. ]
  28919. ))
  28920. characterMakers.push(() => makeCharacter(
  28921. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28922. {
  28923. front: {
  28924. height: math.unit(6, "feet"),
  28925. weight: math.unit(150, "lb"),
  28926. name: "Front",
  28927. image: {
  28928. source: "./media/characters/myra-rue-delore/front.svg",
  28929. extra: 1340 / 1308,
  28930. bottom: 67 / 1407
  28931. }
  28932. },
  28933. back: {
  28934. height: math.unit(6, "feet"),
  28935. weight: math.unit(150, "lb"),
  28936. name: "Back",
  28937. image: {
  28938. source: "./media/characters/myra-rue-delore/back.svg",
  28939. extra: 1341 / 1310,
  28940. bottom: 40 / 1381
  28941. }
  28942. },
  28943. frontDressed: {
  28944. height: math.unit(6, "feet"),
  28945. weight: math.unit(150, "lb"),
  28946. name: "Front (Dressed)",
  28947. image: {
  28948. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28949. extra: 1340 / 1308,
  28950. bottom: 67 / 1407
  28951. }
  28952. },
  28953. },
  28954. [
  28955. {
  28956. name: "Macro",
  28957. height: math.unit(150, "feet"),
  28958. default: true
  28959. },
  28960. ]
  28961. ))
  28962. characterMakers.push(() => makeCharacter(
  28963. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28964. {
  28965. front: {
  28966. height: math.unit(10, "feet"),
  28967. weight: math.unit(15015, "lb"),
  28968. name: "Front",
  28969. image: {
  28970. source: "./media/characters/fem!plat/front.svg",
  28971. extra: 2799 / 2604,
  28972. bottom: 149 / 2948
  28973. }
  28974. },
  28975. },
  28976. [
  28977. {
  28978. name: "Normal",
  28979. height: math.unit(10, "feet"),
  28980. default: true
  28981. },
  28982. {
  28983. name: "Macro",
  28984. height: math.unit(100, "feet")
  28985. },
  28986. {
  28987. name: "Megamacro",
  28988. height: math.unit(1000, "feet")
  28989. },
  28990. ]
  28991. ))
  28992. characterMakers.push(() => makeCharacter(
  28993. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28994. {
  28995. front: {
  28996. height: math.unit(15 + 5 / 12, "feet"),
  28997. weight: math.unit(4600, "lb"),
  28998. name: "Front",
  28999. image: {
  29000. source: "./media/characters/neapolitan-ananassa/front.svg",
  29001. extra: 2903 / 2736,
  29002. bottom: 0 / 2903
  29003. }
  29004. },
  29005. side: {
  29006. height: math.unit(15 + 5 / 12, "feet"),
  29007. weight: math.unit(4600, "lb"),
  29008. name: "Side",
  29009. image: {
  29010. source: "./media/characters/neapolitan-ananassa/side.svg",
  29011. extra: 2925 / 2719,
  29012. bottom: 0 / 2925
  29013. }
  29014. },
  29015. back: {
  29016. height: math.unit(15 + 5 / 12, "feet"),
  29017. weight: math.unit(4600, "lb"),
  29018. name: "Back",
  29019. image: {
  29020. source: "./media/characters/neapolitan-ananassa/back.svg",
  29021. extra: 2903 / 2736,
  29022. bottom: 0 / 2903
  29023. }
  29024. },
  29025. },
  29026. [
  29027. {
  29028. name: "Normal",
  29029. height: math.unit(15 + 5 / 12, "feet"),
  29030. default: true
  29031. },
  29032. {
  29033. name: "Post-Millenium",
  29034. height: math.unit(35 + 5 / 12, "feet")
  29035. },
  29036. {
  29037. name: "Post-Era",
  29038. height: math.unit(450 + 5 / 12, "feet")
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(300, "meters"),
  29047. weight: math.unit(125000, "tonnes"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/pazuzu/front.svg",
  29051. extra: 877 / 794,
  29052. bottom: 47 / 924
  29053. }
  29054. },
  29055. },
  29056. [
  29057. {
  29058. name: "Macro",
  29059. height: math.unit(300, "meters"),
  29060. default: true
  29061. },
  29062. ]
  29063. ))
  29064. characterMakers.push(() => makeCharacter(
  29065. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29066. {
  29067. side: {
  29068. height: math.unit(10 + 7 / 12, "feet"),
  29069. weight: math.unit(2.5, "tons"),
  29070. name: "Side",
  29071. image: {
  29072. source: "./media/characters/aasha/side.svg",
  29073. extra: 1345 / 1245,
  29074. bottom: 111 / 1456
  29075. }
  29076. },
  29077. back: {
  29078. height: math.unit(10 + 7 / 12, "feet"),
  29079. weight: math.unit(2.5, "tons"),
  29080. name: "Back",
  29081. image: {
  29082. source: "./media/characters/aasha/back.svg",
  29083. extra: 1133 / 1057,
  29084. bottom: 257 / 1390
  29085. }
  29086. },
  29087. },
  29088. [
  29089. {
  29090. name: "Normal",
  29091. height: math.unit(10 + 7 / 12, "feet"),
  29092. default: true
  29093. },
  29094. ]
  29095. ))
  29096. characterMakers.push(() => makeCharacter(
  29097. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29098. {
  29099. front: {
  29100. height: math.unit(6 + 3 / 12, "feet"),
  29101. name: "Front",
  29102. image: {
  29103. source: "./media/characters/nevan/front.svg",
  29104. extra: 704 / 704,
  29105. bottom: 28 / 732
  29106. }
  29107. },
  29108. back: {
  29109. height: math.unit(6 + 3 / 12, "feet"),
  29110. name: "Back",
  29111. image: {
  29112. source: "./media/characters/nevan/back.svg",
  29113. extra: 714 / 714,
  29114. bottom: 21 / 735
  29115. }
  29116. },
  29117. frontFlaccid: {
  29118. height: math.unit(6 + 3 / 12, "feet"),
  29119. name: "Front (Flaccid)",
  29120. image: {
  29121. source: "./media/characters/nevan/front-flaccid.svg",
  29122. extra: 704 / 704,
  29123. bottom: 28 / 732
  29124. }
  29125. },
  29126. frontErect: {
  29127. height: math.unit(6 + 3 / 12, "feet"),
  29128. name: "Front (Erect)",
  29129. image: {
  29130. source: "./media/characters/nevan/front-erect.svg",
  29131. extra: 704 / 704,
  29132. bottom: 28 / 732
  29133. }
  29134. },
  29135. backFlaccid: {
  29136. height: math.unit(6 + 3 / 12, "feet"),
  29137. name: "Back (Flaccid)",
  29138. image: {
  29139. source: "./media/characters/nevan/back-flaccid.svg",
  29140. extra: 714 / 714,
  29141. bottom: 21 / 735
  29142. }
  29143. },
  29144. },
  29145. [
  29146. {
  29147. name: "Normal",
  29148. height: math.unit(6 + 3 / 12, "feet"),
  29149. default: true
  29150. },
  29151. ]
  29152. ))
  29153. characterMakers.push(() => makeCharacter(
  29154. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29155. {
  29156. front: {
  29157. height: math.unit(4, "feet"),
  29158. name: "Front",
  29159. image: {
  29160. source: "./media/characters/arhan/front.svg",
  29161. extra: 3368 / 3133,
  29162. bottom: 0 / 3368
  29163. }
  29164. },
  29165. side: {
  29166. height: math.unit(4, "feet"),
  29167. name: "Side",
  29168. image: {
  29169. source: "./media/characters/arhan/side.svg",
  29170. extra: 3347 / 3105,
  29171. bottom: 0 / 3347
  29172. }
  29173. },
  29174. tongue: {
  29175. height: math.unit(1.42, "feet"),
  29176. name: "Tongue",
  29177. image: {
  29178. source: "./media/characters/arhan/tongue.svg"
  29179. }
  29180. },
  29181. head: {
  29182. height: math.unit(0.85, "feet"),
  29183. name: "Head",
  29184. image: {
  29185. source: "./media/characters/arhan/head.svg"
  29186. }
  29187. },
  29188. },
  29189. [
  29190. {
  29191. name: "Normal",
  29192. height: math.unit(4, "feet"),
  29193. default: true
  29194. },
  29195. ]
  29196. ))
  29197. characterMakers.push(() => makeCharacter(
  29198. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29199. {
  29200. front: {
  29201. height: math.unit(5 + 7.5 / 12, "feet"),
  29202. weight: math.unit(120, "lb"),
  29203. name: "Front",
  29204. image: {
  29205. source: "./media/characters/digi-duncan/front.svg",
  29206. extra: 330 / 326,
  29207. bottom: 16 / 346
  29208. }
  29209. },
  29210. side: {
  29211. height: math.unit(5 + 7.5 / 12, "feet"),
  29212. weight: math.unit(120, "lb"),
  29213. name: "Side",
  29214. image: {
  29215. source: "./media/characters/digi-duncan/side.svg",
  29216. extra: 341 / 337,
  29217. bottom: 1 / 342
  29218. }
  29219. },
  29220. back: {
  29221. height: math.unit(5 + 7.5 / 12, "feet"),
  29222. weight: math.unit(120, "lb"),
  29223. name: "Back",
  29224. image: {
  29225. source: "./media/characters/digi-duncan/back.svg",
  29226. extra: 330 / 326,
  29227. bottom: 12 / 342
  29228. }
  29229. },
  29230. },
  29231. [
  29232. {
  29233. name: "Speck",
  29234. height: math.unit(0.25, "mm")
  29235. },
  29236. {
  29237. name: "Micro",
  29238. height: math.unit(5, "mm")
  29239. },
  29240. {
  29241. name: "Tiny",
  29242. height: math.unit(0.5, "inches"),
  29243. default: true
  29244. },
  29245. {
  29246. name: "Human",
  29247. height: math.unit(5 + 7.5 / 12, "feet")
  29248. },
  29249. {
  29250. name: "Minigiant",
  29251. height: math.unit(8 + 5.25, "feet")
  29252. },
  29253. {
  29254. name: "Giant",
  29255. height: math.unit(2000, "feet")
  29256. },
  29257. {
  29258. name: "Mega",
  29259. height: math.unit(371.1, "miles")
  29260. },
  29261. ]
  29262. ))
  29263. characterMakers.push(() => makeCharacter(
  29264. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29265. {
  29266. front: {
  29267. height: math.unit(2, "meters"),
  29268. weight: math.unit(350, "kg"),
  29269. name: "Front",
  29270. image: {
  29271. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29272. extra: 898 / 838,
  29273. bottom: 9 / 907
  29274. }
  29275. },
  29276. },
  29277. [
  29278. {
  29279. name: "Micro",
  29280. height: math.unit(8, "meters")
  29281. },
  29282. {
  29283. name: "Normal",
  29284. height: math.unit(50, "meters"),
  29285. default: true
  29286. },
  29287. {
  29288. name: "Macro",
  29289. height: math.unit(500, "meters")
  29290. },
  29291. ]
  29292. ))
  29293. characterMakers.push(() => makeCharacter(
  29294. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29295. {
  29296. front: {
  29297. height: math.unit(6 + 6 / 12, "feet"),
  29298. name: "Front",
  29299. image: {
  29300. source: "./media/characters/khardesh/front.svg",
  29301. extra: 888 / 797,
  29302. bottom: 25 / 913
  29303. }
  29304. },
  29305. },
  29306. [
  29307. {
  29308. name: "Normal",
  29309. height: math.unit(6 + 6 / 12, "feet"),
  29310. default: true
  29311. },
  29312. {
  29313. name: "Normal+",
  29314. height: math.unit(4, "meters")
  29315. },
  29316. {
  29317. name: "Macro",
  29318. height: math.unit(50, "meters")
  29319. },
  29320. {
  29321. name: "Macro+",
  29322. height: math.unit(100, "meters")
  29323. },
  29324. {
  29325. name: "Megamacro",
  29326. height: math.unit(20, "km")
  29327. },
  29328. ]
  29329. ))
  29330. characterMakers.push(() => makeCharacter(
  29331. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29332. {
  29333. front: {
  29334. height: math.unit(6, "feet"),
  29335. weight: math.unit(150, "lb"),
  29336. name: "Front",
  29337. image: {
  29338. source: "./media/characters/kosho/front.svg",
  29339. extra: 1847 / 1847,
  29340. bottom: 86 / 1933
  29341. }
  29342. },
  29343. },
  29344. [
  29345. {
  29346. name: "Second-stage micro",
  29347. height: math.unit(0.5, "inches")
  29348. },
  29349. {
  29350. name: "First-stage micro",
  29351. height: math.unit(6, "inches")
  29352. },
  29353. {
  29354. name: "Normal",
  29355. height: math.unit(6, "feet"),
  29356. default: true
  29357. },
  29358. {
  29359. name: "First-stage macro",
  29360. height: math.unit(72, "feet")
  29361. },
  29362. {
  29363. name: "Second-stage macro",
  29364. height: math.unit(864, "feet")
  29365. },
  29366. ]
  29367. ))
  29368. characterMakers.push(() => makeCharacter(
  29369. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29370. {
  29371. normal: {
  29372. height: math.unit(4 + 6 / 12, "feet"),
  29373. name: "Normal",
  29374. image: {
  29375. source: "./media/characters/hydra/normal.svg",
  29376. extra: 2833 / 2634,
  29377. bottom: 68 / 2901
  29378. }
  29379. },
  29380. smol: {
  29381. height: math.unit(0.705, "inches"),
  29382. name: "Smol",
  29383. image: {
  29384. source: "./media/characters/hydra/smol.svg",
  29385. extra: 2715 / 2540,
  29386. bottom: 0 / 2715
  29387. }
  29388. },
  29389. },
  29390. [
  29391. {
  29392. name: "Normal",
  29393. height: math.unit(4 + 6 / 12, "feet"),
  29394. default: true
  29395. }
  29396. ]
  29397. ))
  29398. characterMakers.push(() => makeCharacter(
  29399. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29400. {
  29401. front: {
  29402. height: math.unit(0.6, "cm"),
  29403. name: "Front",
  29404. image: {
  29405. source: "./media/characters/daz/front.svg",
  29406. extra: 1682 / 1164,
  29407. bottom: 42 / 1724
  29408. }
  29409. },
  29410. },
  29411. [
  29412. {
  29413. name: "Normal",
  29414. height: math.unit(0.6, "cm"),
  29415. default: true
  29416. },
  29417. ]
  29418. ))
  29419. characterMakers.push(() => makeCharacter(
  29420. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29421. {
  29422. front: {
  29423. height: math.unit(6, "feet"),
  29424. weight: math.unit(235, "lb"),
  29425. name: "Front",
  29426. image: {
  29427. source: "./media/characters/theo-pangolin/front.svg",
  29428. extra: 1996 / 1969,
  29429. bottom: 115 / 2111
  29430. }
  29431. },
  29432. back: {
  29433. height: math.unit(6, "feet"),
  29434. weight: math.unit(235, "lb"),
  29435. name: "Back",
  29436. image: {
  29437. source: "./media/characters/theo-pangolin/back.svg",
  29438. extra: 1979 / 1979,
  29439. bottom: 40 / 2019
  29440. }
  29441. },
  29442. feral: {
  29443. height: math.unit(2, "feet"),
  29444. weight: math.unit(30, "lb"),
  29445. name: "Feral",
  29446. image: {
  29447. source: "./media/characters/theo-pangolin/feral.svg",
  29448. extra: 803 / 791,
  29449. bottom: 181 / 984
  29450. }
  29451. },
  29452. footFive: {
  29453. height: math.unit(1.43, "feet"),
  29454. name: "Foot (Five Toes)",
  29455. image: {
  29456. source: "./media/characters/theo-pangolin/foot-five.svg"
  29457. }
  29458. },
  29459. footFour: {
  29460. height: math.unit(1.43, "feet"),
  29461. name: "Foot (Four Toes)",
  29462. image: {
  29463. source: "./media/characters/theo-pangolin/foot-four.svg"
  29464. }
  29465. },
  29466. handFour: {
  29467. height: math.unit(0.81, "feet"),
  29468. name: "Hand (Four Fingers)",
  29469. image: {
  29470. source: "./media/characters/theo-pangolin/hand-four.svg"
  29471. }
  29472. },
  29473. handThree: {
  29474. height: math.unit(0.81, "feet"),
  29475. name: "Hand (Three Fingers)",
  29476. image: {
  29477. source: "./media/characters/theo-pangolin/hand-three.svg"
  29478. }
  29479. },
  29480. headFront: {
  29481. height: math.unit(1.37, "feet"),
  29482. name: "Head (Front)",
  29483. image: {
  29484. source: "./media/characters/theo-pangolin/head-front.svg"
  29485. }
  29486. },
  29487. headSide: {
  29488. height: math.unit(1.43, "feet"),
  29489. name: "Head (Side)",
  29490. image: {
  29491. source: "./media/characters/theo-pangolin/head-side.svg"
  29492. }
  29493. },
  29494. tongue: {
  29495. height: math.unit(2.29, "feet"),
  29496. name: "Tongue",
  29497. image: {
  29498. source: "./media/characters/theo-pangolin/tongue.svg"
  29499. }
  29500. },
  29501. },
  29502. [
  29503. {
  29504. name: "Normal",
  29505. height: math.unit(6, "feet")
  29506. },
  29507. {
  29508. name: "Macro",
  29509. height: math.unit(400, "feet"),
  29510. default: true
  29511. },
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29516. {
  29517. front: {
  29518. height: math.unit(6, "inches"),
  29519. weight: math.unit(0.036, "kg"),
  29520. name: "Front",
  29521. image: {
  29522. source: "./media/characters/renée/front.svg",
  29523. extra: 900 / 886,
  29524. bottom: 8 / 908
  29525. }
  29526. },
  29527. },
  29528. [
  29529. {
  29530. name: "Nano",
  29531. height: math.unit(1, "nm")
  29532. },
  29533. {
  29534. name: "Micro",
  29535. height: math.unit(1, "mm")
  29536. },
  29537. {
  29538. name: "Normal",
  29539. height: math.unit(6, "inches")
  29540. },
  29541. {
  29542. name: "Macro",
  29543. height: math.unit(2000, "feet"),
  29544. default: true
  29545. },
  29546. {
  29547. name: "Megamacro",
  29548. height: math.unit(2, "km")
  29549. },
  29550. {
  29551. name: "Gigamacro",
  29552. height: math.unit(2000, "km")
  29553. },
  29554. {
  29555. name: "Teramacro",
  29556. height: math.unit(250000, "km")
  29557. },
  29558. ]
  29559. ))
  29560. characterMakers.push(() => makeCharacter(
  29561. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29562. {
  29563. front: {
  29564. height: math.unit(4, "meters"),
  29565. weight: math.unit(150, "kg"),
  29566. name: "Front",
  29567. image: {
  29568. source: "./media/characters/caledvwlch/front.svg",
  29569. extra: 1760 / 1551,
  29570. bottom: 28 / 1788
  29571. }
  29572. },
  29573. side: {
  29574. height: math.unit(4, "meters"),
  29575. weight: math.unit(150, "kg"),
  29576. name: "Side",
  29577. image: {
  29578. source: "./media/characters/caledvwlch/side.svg",
  29579. extra: 1605 / 1536,
  29580. bottom: 31 / 1636
  29581. }
  29582. },
  29583. back: {
  29584. height: math.unit(4, "meters"),
  29585. weight: math.unit(150, "kg"),
  29586. name: "Back",
  29587. image: {
  29588. source: "./media/characters/caledvwlch/back.svg",
  29589. extra: 1635 / 1565,
  29590. bottom: 27 / 1662
  29591. }
  29592. },
  29593. },
  29594. [
  29595. {
  29596. name: "\"Incognito\"",
  29597. height: math.unit(4, "meters")
  29598. },
  29599. {
  29600. name: "Small rampage",
  29601. height: math.unit(600, "meters")
  29602. },
  29603. {
  29604. name: "Mega",
  29605. height: math.unit(30, "km")
  29606. },
  29607. {
  29608. name: "Home-size",
  29609. height: math.unit(50, "km"),
  29610. default: true
  29611. },
  29612. {
  29613. name: "Giga",
  29614. height: math.unit(300, "km")
  29615. },
  29616. {
  29617. name: "Lounging",
  29618. height: math.unit(11000, "km")
  29619. },
  29620. {
  29621. name: "Planet snacking",
  29622. height: math.unit(2000000, "km")
  29623. },
  29624. ]
  29625. ))
  29626. characterMakers.push(() => makeCharacter(
  29627. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29628. {
  29629. front: {
  29630. height: math.unit(6, "feet"),
  29631. weight: math.unit(215, "lb"),
  29632. name: "Front",
  29633. image: {
  29634. source: "./media/characters/sapphire-svell/front.svg",
  29635. extra: 495 / 455,
  29636. bottom: 20 / 515
  29637. }
  29638. },
  29639. back: {
  29640. height: math.unit(6, "feet"),
  29641. weight: math.unit(216, "lb"),
  29642. name: "Back",
  29643. image: {
  29644. source: "./media/characters/sapphire-svell/back.svg",
  29645. extra: 497 / 477,
  29646. bottom: 7 / 504
  29647. }
  29648. },
  29649. maw: {
  29650. height: math.unit(1.57, "feet"),
  29651. name: "Maw",
  29652. image: {
  29653. source: "./media/characters/sapphire-svell/maw.svg"
  29654. }
  29655. },
  29656. foot: {
  29657. height: math.unit(1.07, "feet"),
  29658. name: "Foot",
  29659. image: {
  29660. source: "./media/characters/sapphire-svell/foot.svg"
  29661. }
  29662. },
  29663. toering: {
  29664. height: math.unit(1.7, "inch"),
  29665. name: "Toering",
  29666. image: {
  29667. source: "./media/characters/sapphire-svell/toering.svg"
  29668. }
  29669. },
  29670. },
  29671. [
  29672. {
  29673. name: "Normal",
  29674. height: math.unit(300, "feet"),
  29675. default: true
  29676. },
  29677. {
  29678. name: "Augmented",
  29679. height: math.unit(1250, "feet")
  29680. },
  29681. {
  29682. name: "Unleashed",
  29683. height: math.unit(3000, "feet")
  29684. },
  29685. ]
  29686. ))
  29687. characterMakers.push(() => makeCharacter(
  29688. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29689. {
  29690. side: {
  29691. height: math.unit(2 + 3 / 12, "feet"),
  29692. weight: math.unit(110, "lb"),
  29693. name: "Side",
  29694. image: {
  29695. source: "./media/characters/glitch-flux/side.svg",
  29696. extra: 997 / 805,
  29697. bottom: 20 / 1017
  29698. }
  29699. },
  29700. },
  29701. [
  29702. {
  29703. name: "Normal",
  29704. height: math.unit(2 + 3 / 12, "feet"),
  29705. default: true
  29706. },
  29707. ]
  29708. ))
  29709. characterMakers.push(() => makeCharacter(
  29710. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29711. {
  29712. front: {
  29713. height: math.unit(4, "meters"),
  29714. name: "Front",
  29715. image: {
  29716. source: "./media/characters/mid/front.svg",
  29717. extra: 507 / 476,
  29718. bottom: 17 / 524
  29719. }
  29720. },
  29721. back: {
  29722. height: math.unit(4, "meters"),
  29723. name: "Back",
  29724. image: {
  29725. source: "./media/characters/mid/back.svg",
  29726. extra: 519 / 487,
  29727. bottom: 7 / 526
  29728. }
  29729. },
  29730. stuck: {
  29731. height: math.unit(2.2, "meters"),
  29732. name: "Stuck",
  29733. image: {
  29734. source: "./media/characters/mid/stuck.svg",
  29735. extra: 1951 / 1869,
  29736. bottom: 88 / 2039
  29737. }
  29738. }
  29739. },
  29740. [
  29741. {
  29742. name: "Normal",
  29743. height: math.unit(4, "meters"),
  29744. default: true
  29745. },
  29746. {
  29747. name: "Big",
  29748. height: math.unit(10, "meters")
  29749. },
  29750. {
  29751. name: "Macro",
  29752. height: math.unit(800, "meters")
  29753. },
  29754. {
  29755. name: "Megamacro",
  29756. height: math.unit(100, "km")
  29757. },
  29758. {
  29759. name: "Overgrown",
  29760. height: math.unit(1, "parsec")
  29761. },
  29762. ]
  29763. ))
  29764. characterMakers.push(() => makeCharacter(
  29765. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29766. {
  29767. front: {
  29768. height: math.unit(2.5, "meters"),
  29769. weight: math.unit(225, "kg"),
  29770. name: "Front",
  29771. image: {
  29772. source: "./media/characters/iris/front.svg",
  29773. extra: 3348 / 3251,
  29774. bottom: 205 / 3553
  29775. }
  29776. },
  29777. maw: {
  29778. height: math.unit(0.56, "meter"),
  29779. name: "Maw",
  29780. image: {
  29781. source: "./media/characters/iris/maw.svg"
  29782. }
  29783. },
  29784. },
  29785. [
  29786. {
  29787. name: "Mewter cat",
  29788. height: math.unit(1.2, "meters")
  29789. },
  29790. {
  29791. name: "Minimacro",
  29792. height: math.unit(2.5, "meters"),
  29793. default: true
  29794. },
  29795. {
  29796. name: "Macro",
  29797. height: math.unit(180, "meters")
  29798. },
  29799. {
  29800. name: "Megamacro",
  29801. height: math.unit(2746, "meters")
  29802. },
  29803. ]
  29804. ))
  29805. characterMakers.push(() => makeCharacter(
  29806. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29807. {
  29808. front: {
  29809. height: math.unit(6, "feet"),
  29810. weight: math.unit(135, "lb"),
  29811. name: "Front",
  29812. image: {
  29813. source: "./media/characters/axel/front.svg",
  29814. extra: 908 / 908,
  29815. bottom: 58 / 966
  29816. }
  29817. },
  29818. side: {
  29819. height: math.unit(6, "feet"),
  29820. weight: math.unit(135, "lb"),
  29821. name: "Side",
  29822. image: {
  29823. source: "./media/characters/axel/side.svg",
  29824. extra: 958 / 958,
  29825. bottom: 11 / 969
  29826. }
  29827. },
  29828. back: {
  29829. height: math.unit(6, "feet"),
  29830. weight: math.unit(135, "lb"),
  29831. name: "Back",
  29832. image: {
  29833. source: "./media/characters/axel/back.svg",
  29834. extra: 887 / 887,
  29835. bottom: 34 / 921
  29836. }
  29837. },
  29838. head: {
  29839. height: math.unit(1.07, "feet"),
  29840. name: "Head",
  29841. image: {
  29842. source: "./media/characters/axel/head.svg"
  29843. }
  29844. },
  29845. beak: {
  29846. height: math.unit(1.4, "feet"),
  29847. name: "Beak",
  29848. image: {
  29849. source: "./media/characters/axel/beak.svg"
  29850. }
  29851. },
  29852. beakSide: {
  29853. height: math.unit(1.4, "feet"),
  29854. name: "Beak Side",
  29855. image: {
  29856. source: "./media/characters/axel/beak-side.svg"
  29857. }
  29858. },
  29859. sheath: {
  29860. height: math.unit(0.5, "feet"),
  29861. name: "Sheath",
  29862. image: {
  29863. source: "./media/characters/axel/sheath.svg"
  29864. }
  29865. },
  29866. dick: {
  29867. height: math.unit(0.98, "feet"),
  29868. name: "Dick",
  29869. image: {
  29870. source: "./media/characters/axel/dick.svg"
  29871. }
  29872. },
  29873. },
  29874. [
  29875. {
  29876. name: "Macro",
  29877. height: math.unit(68, "meters"),
  29878. default: true
  29879. },
  29880. ]
  29881. ))
  29882. characterMakers.push(() => makeCharacter(
  29883. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29884. {
  29885. front: {
  29886. height: math.unit(3.5, "meters"),
  29887. weight: math.unit(1200, "kg"),
  29888. name: "Front",
  29889. image: {
  29890. source: "./media/characters/joanna/front.svg",
  29891. extra: 1596 / 1488,
  29892. bottom: 29 / 1625
  29893. }
  29894. },
  29895. back: {
  29896. height: math.unit(3.5, "meters"),
  29897. weight: math.unit(1200, "kg"),
  29898. name: "Back",
  29899. image: {
  29900. source: "./media/characters/joanna/back.svg",
  29901. extra: 1594 / 1495,
  29902. bottom: 26 / 1620
  29903. }
  29904. },
  29905. frontShorts: {
  29906. height: math.unit(3.5, "meters"),
  29907. weight: math.unit(1200, "kg"),
  29908. name: "Front (Shorts)",
  29909. image: {
  29910. source: "./media/characters/joanna/front-shorts.svg",
  29911. extra: 1596 / 1488,
  29912. bottom: 29 / 1625
  29913. }
  29914. },
  29915. frontBiker: {
  29916. height: math.unit(3.5, "meters"),
  29917. weight: math.unit(1200, "kg"),
  29918. name: "Front (Biker)",
  29919. image: {
  29920. source: "./media/characters/joanna/front-biker.svg",
  29921. extra: 1596 / 1488,
  29922. bottom: 29 / 1625
  29923. }
  29924. },
  29925. backBiker: {
  29926. height: math.unit(3.5, "meters"),
  29927. weight: math.unit(1200, "kg"),
  29928. name: "Back (Biker)",
  29929. image: {
  29930. source: "./media/characters/joanna/back-biker.svg",
  29931. extra: 1594 / 1495,
  29932. bottom: 88 / 1682
  29933. }
  29934. },
  29935. bikeLeft: {
  29936. height: math.unit(2.4, "meters"),
  29937. weight: math.unit(1600, "kg"),
  29938. name: "Bike (Left)",
  29939. image: {
  29940. source: "./media/characters/joanna/bike-left.svg",
  29941. extra: 720 / 720,
  29942. bottom: 8 / 728
  29943. }
  29944. },
  29945. bikeRight: {
  29946. height: math.unit(2.4, "meters"),
  29947. weight: math.unit(1600, "kg"),
  29948. name: "Bike (Right)",
  29949. image: {
  29950. source: "./media/characters/joanna/bike-right.svg",
  29951. extra: 720 / 720,
  29952. bottom: 8 / 728
  29953. }
  29954. },
  29955. },
  29956. [
  29957. {
  29958. name: "Incognito",
  29959. height: math.unit(3.5, "meters")
  29960. },
  29961. {
  29962. name: "Casual Big",
  29963. height: math.unit(200, "meters")
  29964. },
  29965. {
  29966. name: "Macro",
  29967. height: math.unit(600, "meters")
  29968. },
  29969. {
  29970. name: "Original",
  29971. height: math.unit(20, "km"),
  29972. default: true
  29973. },
  29974. {
  29975. name: "Giga",
  29976. height: math.unit(400, "km")
  29977. },
  29978. {
  29979. name: "Lounging",
  29980. height: math.unit(1500, "km")
  29981. },
  29982. {
  29983. name: "Planetary",
  29984. height: math.unit(200000, "km")
  29985. },
  29986. ]
  29987. ))
  29988. characterMakers.push(() => makeCharacter(
  29989. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29990. {
  29991. front: {
  29992. height: math.unit(6, "feet"),
  29993. weight: math.unit(150, "lb"),
  29994. name: "Front",
  29995. image: {
  29996. source: "./media/characters/hugo-sigil/front.svg",
  29997. extra: 522 / 500,
  29998. bottom: 2 / 524
  29999. }
  30000. },
  30001. back: {
  30002. height: math.unit(6, "feet"),
  30003. weight: math.unit(150, "lb"),
  30004. name: "Back",
  30005. image: {
  30006. source: "./media/characters/hugo-sigil/back.svg",
  30007. extra: 519 / 495,
  30008. bottom: 5 / 524
  30009. }
  30010. },
  30011. maw: {
  30012. height: math.unit(1.4, "feet"),
  30013. weight: math.unit(150, "lb"),
  30014. name: "Maw",
  30015. image: {
  30016. source: "./media/characters/hugo-sigil/maw.svg"
  30017. }
  30018. },
  30019. feet: {
  30020. height: math.unit(1.56, "feet"),
  30021. weight: math.unit(150, "lb"),
  30022. name: "Feet",
  30023. image: {
  30024. source: "./media/characters/hugo-sigil/feet.svg",
  30025. extra: 177 / 177,
  30026. bottom: 12 / 189
  30027. }
  30028. },
  30029. },
  30030. [
  30031. {
  30032. name: "Normal",
  30033. height: math.unit(6, "feet")
  30034. },
  30035. {
  30036. name: "Macro",
  30037. height: math.unit(200, "feet"),
  30038. default: true
  30039. },
  30040. ]
  30041. ))
  30042. characterMakers.push(() => makeCharacter(
  30043. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30044. {
  30045. front: {
  30046. height: math.unit(6, "feet"),
  30047. weight: math.unit(150, "lb"),
  30048. name: "Front",
  30049. image: {
  30050. source: "./media/characters/peri/front.svg",
  30051. extra: 2354 / 2233,
  30052. bottom: 49 / 2403
  30053. }
  30054. },
  30055. },
  30056. [
  30057. {
  30058. name: "Really Small",
  30059. height: math.unit(1, "nm")
  30060. },
  30061. {
  30062. name: "Micro",
  30063. height: math.unit(4, "inches")
  30064. },
  30065. {
  30066. name: "Normal",
  30067. height: math.unit(7, "inches"),
  30068. default: true
  30069. },
  30070. {
  30071. name: "Macro",
  30072. height: math.unit(400, "feet")
  30073. },
  30074. {
  30075. name: "Megamacro",
  30076. height: math.unit(100, "miles")
  30077. },
  30078. ]
  30079. ))
  30080. characterMakers.push(() => makeCharacter(
  30081. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30082. {
  30083. frontSlim: {
  30084. height: math.unit(7, "feet"),
  30085. name: "Front (Slim)",
  30086. image: {
  30087. source: "./media/characters/issilora/front-slim.svg",
  30088. extra: 529 / 449,
  30089. bottom: 53 / 582
  30090. }
  30091. },
  30092. sideSlim: {
  30093. height: math.unit(7, "feet"),
  30094. name: "Side (Slim)",
  30095. image: {
  30096. source: "./media/characters/issilora/side-slim.svg",
  30097. extra: 570 / 480,
  30098. bottom: 30 / 600
  30099. }
  30100. },
  30101. backSlim: {
  30102. height: math.unit(7, "feet"),
  30103. name: "Back (Slim)",
  30104. image: {
  30105. source: "./media/characters/issilora/back-slim.svg",
  30106. extra: 537 / 455,
  30107. bottom: 46 / 583
  30108. }
  30109. },
  30110. frontBuff: {
  30111. height: math.unit(7, "feet"),
  30112. name: "Front (Buff)",
  30113. image: {
  30114. source: "./media/characters/issilora/front-buff.svg",
  30115. extra: 2310 / 2035,
  30116. bottom: 335 / 2645
  30117. }
  30118. },
  30119. head: {
  30120. height: math.unit(1.94, "feet"),
  30121. name: "Head",
  30122. image: {
  30123. source: "./media/characters/issilora/head.svg"
  30124. }
  30125. },
  30126. },
  30127. [
  30128. {
  30129. name: "Minimum",
  30130. height: math.unit(7, "feet")
  30131. },
  30132. {
  30133. name: "Comfortable",
  30134. height: math.unit(17, "feet")
  30135. },
  30136. {
  30137. name: "Fun Size",
  30138. height: math.unit(47, "feet")
  30139. },
  30140. {
  30141. name: "Natural Macro",
  30142. height: math.unit(137, "feet"),
  30143. default: true
  30144. },
  30145. {
  30146. name: "Maximum Kaiju",
  30147. height: math.unit(397, "feet")
  30148. },
  30149. ]
  30150. ))
  30151. characterMakers.push(() => makeCharacter(
  30152. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30153. {
  30154. front: {
  30155. height: math.unit(50 + 9/12, "feet"),
  30156. weight: math.unit(32.8, "tons"),
  30157. name: "Front",
  30158. image: {
  30159. source: "./media/characters/irb'iiritaahn/front.svg",
  30160. extra: 1878/1826,
  30161. bottom: 326/2204
  30162. }
  30163. },
  30164. back: {
  30165. height: math.unit(50 + 9/12, "feet"),
  30166. weight: math.unit(32.8, "tons"),
  30167. name: "Back",
  30168. image: {
  30169. source: "./media/characters/irb'iiritaahn/back.svg",
  30170. extra: 2052/2018,
  30171. bottom: 152/2204
  30172. }
  30173. },
  30174. head: {
  30175. height: math.unit(12.86, "feet"),
  30176. name: "Head",
  30177. image: {
  30178. source: "./media/characters/irb'iiritaahn/head.svg"
  30179. }
  30180. },
  30181. maw: {
  30182. height: math.unit(9.66, "feet"),
  30183. name: "Maw",
  30184. image: {
  30185. source: "./media/characters/irb'iiritaahn/maw.svg"
  30186. }
  30187. },
  30188. frontDick: {
  30189. height: math.unit(8.78461, "feet"),
  30190. name: "Front Dick",
  30191. image: {
  30192. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30193. }
  30194. },
  30195. rearDick: {
  30196. height: math.unit(8.78461, "feet"),
  30197. name: "Rear Dick",
  30198. image: {
  30199. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30200. }
  30201. },
  30202. rearDickUnfolded: {
  30203. height: math.unit(8.78, "feet"),
  30204. name: "Rear Dick (Unfolded)",
  30205. image: {
  30206. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30207. }
  30208. },
  30209. wings: {
  30210. height: math.unit(43, "feet"),
  30211. name: "Wings",
  30212. image: {
  30213. source: "./media/characters/irb'iiritaahn/wings.svg"
  30214. }
  30215. },
  30216. },
  30217. [
  30218. {
  30219. name: "Macro",
  30220. height: math.unit(50 + 9/12, "feet"),
  30221. default: true
  30222. },
  30223. ]
  30224. ))
  30225. characterMakers.push(() => makeCharacter(
  30226. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30227. {
  30228. front: {
  30229. height: math.unit(205, "cm"),
  30230. weight: math.unit(102, "kg"),
  30231. name: "Front",
  30232. image: {
  30233. source: "./media/characters/irbisgreif/front.svg",
  30234. extra: 785/706,
  30235. bottom: 13/798
  30236. }
  30237. },
  30238. back: {
  30239. height: math.unit(205, "cm"),
  30240. weight: math.unit(102, "kg"),
  30241. name: "Back",
  30242. image: {
  30243. source: "./media/characters/irbisgreif/back.svg",
  30244. extra: 713/701,
  30245. bottom: 26/739
  30246. }
  30247. },
  30248. frontDressed: {
  30249. height: math.unit(216, "cm"),
  30250. weight: math.unit(102, "kg"),
  30251. name: "Front-dressed",
  30252. image: {
  30253. source: "./media/characters/irbisgreif/front-dressed.svg",
  30254. extra: 902/776,
  30255. bottom: 14/916
  30256. }
  30257. },
  30258. sideDressed: {
  30259. height: math.unit(195, "cm"),
  30260. weight: math.unit(102, "kg"),
  30261. name: "Side-dressed",
  30262. image: {
  30263. source: "./media/characters/irbisgreif/side-dressed.svg",
  30264. extra: 788/688,
  30265. bottom: 21/809
  30266. }
  30267. },
  30268. backDressed: {
  30269. height: math.unit(216, "cm"),
  30270. weight: math.unit(102, "kg"),
  30271. name: "Back-dressed",
  30272. image: {
  30273. source: "./media/characters/irbisgreif/back-dressed.svg",
  30274. extra: 901/783,
  30275. bottom: 10/911
  30276. }
  30277. },
  30278. dick: {
  30279. height: math.unit(0.49, "feet"),
  30280. name: "Dick",
  30281. image: {
  30282. source: "./media/characters/irbisgreif/dick.svg"
  30283. }
  30284. },
  30285. wingTop: {
  30286. height: math.unit(1.93 , "feet"),
  30287. name: "Wing-top",
  30288. image: {
  30289. source: "./media/characters/irbisgreif/wing-top.svg"
  30290. }
  30291. },
  30292. wingBottom: {
  30293. height: math.unit(1.93 , "feet"),
  30294. name: "Wing-bottom",
  30295. image: {
  30296. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30297. }
  30298. },
  30299. },
  30300. [
  30301. {
  30302. name: "Normal",
  30303. height: math.unit(216, "cm"),
  30304. default: true
  30305. },
  30306. ]
  30307. ))
  30308. characterMakers.push(() => makeCharacter(
  30309. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30310. {
  30311. front: {
  30312. height: math.unit(6, "feet"),
  30313. weight: math.unit(150, "lb"),
  30314. name: "Front",
  30315. image: {
  30316. source: "./media/characters/pride/front.svg",
  30317. extra: 1299/1230,
  30318. bottom: 18/1317
  30319. }
  30320. },
  30321. },
  30322. [
  30323. {
  30324. name: "Normal",
  30325. height: math.unit(7, "feet")
  30326. },
  30327. {
  30328. name: "Mini-macro",
  30329. height: math.unit(11, "feet")
  30330. },
  30331. {
  30332. name: "Macro",
  30333. height: math.unit(15, "meters"),
  30334. default: true
  30335. },
  30336. {
  30337. name: "Macro+",
  30338. height: math.unit(40, "meters")
  30339. },
  30340. ]
  30341. ))
  30342. characterMakers.push(() => makeCharacter(
  30343. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30344. {
  30345. front: {
  30346. height: math.unit(4 + 2 / 12, "feet"),
  30347. weight: math.unit(95, "lb"),
  30348. name: "Front",
  30349. image: {
  30350. source: "./media/characters/vaelophis-nyx/front.svg",
  30351. extra: 2532/2330,
  30352. bottom: 0/2532
  30353. }
  30354. },
  30355. back: {
  30356. height: math.unit(4 + 2 / 12, "feet"),
  30357. weight: math.unit(95, "lb"),
  30358. name: "Back",
  30359. image: {
  30360. source: "./media/characters/vaelophis-nyx/back.svg",
  30361. extra: 2484/2361,
  30362. bottom: 0/2484
  30363. }
  30364. },
  30365. feralSide: {
  30366. height: math.unit(2 + 1/12, "feet"),
  30367. weight: math.unit(20, "lb"),
  30368. name: "Feral (Side)",
  30369. image: {
  30370. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30371. extra: 1721/1581,
  30372. bottom: 70/1791
  30373. }
  30374. },
  30375. feralLazing: {
  30376. height: math.unit(1.08, "feet"),
  30377. weight: math.unit(20, "lb"),
  30378. name: "Feral (Lazing)",
  30379. image: {
  30380. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30381. extra: 822/822,
  30382. bottom: 248/1070
  30383. }
  30384. },
  30385. ear: {
  30386. height: math.unit(0.416, "feet"),
  30387. name: "Ear",
  30388. image: {
  30389. source: "./media/characters/vaelophis-nyx/ear.svg"
  30390. }
  30391. },
  30392. eye: {
  30393. height: math.unit(0.0748, "feet"),
  30394. name: "Eye",
  30395. image: {
  30396. source: "./media/characters/vaelophis-nyx/eye.svg"
  30397. }
  30398. },
  30399. mouth: {
  30400. height: math.unit(0.378, "feet"),
  30401. name: "Mouth",
  30402. image: {
  30403. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30404. }
  30405. },
  30406. spade: {
  30407. height: math.unit(0.55, "feet"),
  30408. name: "Spade",
  30409. image: {
  30410. source: "./media/characters/vaelophis-nyx/spade.svg"
  30411. }
  30412. },
  30413. },
  30414. [
  30415. {
  30416. name: "Normal",
  30417. height: math.unit(4 + 2/12, "feet"),
  30418. default: true
  30419. },
  30420. ]
  30421. ))
  30422. characterMakers.push(() => makeCharacter(
  30423. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30424. {
  30425. front: {
  30426. height: math.unit(7, "feet"),
  30427. weight: math.unit(231, "lb"),
  30428. name: "Front",
  30429. image: {
  30430. source: "./media/characters/flux/front.svg",
  30431. extra: 919/871,
  30432. bottom: 0/919
  30433. }
  30434. },
  30435. back: {
  30436. height: math.unit(7, "feet"),
  30437. weight: math.unit(231, "lb"),
  30438. name: "Back",
  30439. image: {
  30440. source: "./media/characters/flux/back.svg",
  30441. extra: 1040/992,
  30442. bottom: 0/1040
  30443. }
  30444. },
  30445. frontDressed: {
  30446. height: math.unit(7, "feet"),
  30447. weight: math.unit(231, "lb"),
  30448. name: "Front (Dressed)",
  30449. image: {
  30450. source: "./media/characters/flux/front-dressed.svg",
  30451. extra: 919/871,
  30452. bottom: 0/919
  30453. }
  30454. },
  30455. feralSide: {
  30456. height: math.unit(5, "feet"),
  30457. weight: math.unit(150, "lb"),
  30458. name: "Feral (Side)",
  30459. image: {
  30460. source: "./media/characters/flux/feral-side.svg",
  30461. extra: 598/528,
  30462. bottom: 28/626
  30463. }
  30464. },
  30465. head: {
  30466. height: math.unit(1.585, "feet"),
  30467. name: "Head",
  30468. image: {
  30469. source: "./media/characters/flux/head.svg"
  30470. }
  30471. },
  30472. headSide: {
  30473. height: math.unit(1.74, "feet"),
  30474. name: "Head (Side)",
  30475. image: {
  30476. source: "./media/characters/flux/head-side.svg"
  30477. }
  30478. },
  30479. headSideFire: {
  30480. height: math.unit(1.76, "feet"),
  30481. name: "Head (Side, Fire)",
  30482. image: {
  30483. source: "./media/characters/flux/head-side-fire.svg"
  30484. }
  30485. },
  30486. },
  30487. [
  30488. {
  30489. name: "Normal",
  30490. height: math.unit(7, "feet"),
  30491. default: true
  30492. },
  30493. ]
  30494. ))
  30495. characterMakers.push(() => makeCharacter(
  30496. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30497. {
  30498. front: {
  30499. height: math.unit(9, "feet"),
  30500. weight: math.unit(1012, "lb"),
  30501. name: "Front",
  30502. image: {
  30503. source: "./media/characters/ulfra-lupae/front.svg",
  30504. extra: 1083/1011,
  30505. bottom: 67/1150
  30506. }
  30507. },
  30508. },
  30509. [
  30510. {
  30511. name: "Micro",
  30512. height: math.unit(6, "inches")
  30513. },
  30514. {
  30515. name: "Socializing",
  30516. height: math.unit(6 + 5/12, "feet")
  30517. },
  30518. {
  30519. name: "Normal",
  30520. height: math.unit(9, "feet"),
  30521. default: true
  30522. },
  30523. {
  30524. name: "Macro",
  30525. height: math.unit(150, "feet")
  30526. },
  30527. ]
  30528. ))
  30529. characterMakers.push(() => makeCharacter(
  30530. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30531. {
  30532. front: {
  30533. height: math.unit(5 + 2/12, "feet"),
  30534. weight: math.unit(120, "lb"),
  30535. name: "Front",
  30536. image: {
  30537. source: "./media/characters/timber/front.svg",
  30538. extra: 2814/2705,
  30539. bottom: 181/2995
  30540. }
  30541. },
  30542. },
  30543. [
  30544. {
  30545. name: "Normal",
  30546. height: math.unit(5 + 2/12, "feet"),
  30547. default: true
  30548. },
  30549. ]
  30550. ))
  30551. characterMakers.push(() => makeCharacter(
  30552. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30553. {
  30554. front: {
  30555. height: math.unit(5 + 7/12, "feet"),
  30556. weight: math.unit(220, "lb"),
  30557. name: "Front",
  30558. image: {
  30559. source: "./media/characters/nicki/front.svg",
  30560. extra: 453/419,
  30561. bottom: 7/460
  30562. }
  30563. },
  30564. frontAlt: {
  30565. height: math.unit(5 + 7/12, "feet"),
  30566. weight: math.unit(220, "lb"),
  30567. name: "Front-alt",
  30568. image: {
  30569. source: "./media/characters/nicki/front-alt.svg",
  30570. extra: 435/411,
  30571. bottom: 12/447
  30572. }
  30573. },
  30574. back: {
  30575. height: math.unit(5 + 7/12, "feet"),
  30576. weight: math.unit(220, "lb"),
  30577. name: "Back",
  30578. image: {
  30579. source: "./media/characters/nicki/back.svg",
  30580. extra: 440/413,
  30581. bottom: 19/459
  30582. }
  30583. },
  30584. taur: {
  30585. height: math.unit(7 + 6/12, "feet"),
  30586. weight: math.unit(700, "lb"),
  30587. name: "Taur",
  30588. image: {
  30589. source: "./media/characters/nicki/taur.svg",
  30590. extra: 975/773,
  30591. bottom: 0/975
  30592. }
  30593. },
  30594. frontNsfw: {
  30595. height: math.unit(5 + 7/12, "feet"),
  30596. weight: math.unit(220, "lb"),
  30597. name: "Front (NSFW)",
  30598. image: {
  30599. source: "./media/characters/nicki/front-nsfw.svg",
  30600. extra: 453/419,
  30601. bottom: 7/460
  30602. }
  30603. },
  30604. frontNsfwAlt: {
  30605. height: math.unit(5 + 7/12, "feet"),
  30606. weight: math.unit(220, "lb"),
  30607. name: "Front (Alt, NSFW)",
  30608. image: {
  30609. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30610. extra: 435/411,
  30611. bottom: 12/447
  30612. }
  30613. },
  30614. backNsfw: {
  30615. height: math.unit(5 + 7/12, "feet"),
  30616. weight: math.unit(220, "lb"),
  30617. name: "Back (NSFW)",
  30618. image: {
  30619. source: "./media/characters/nicki/back-nsfw.svg",
  30620. extra: 440/413,
  30621. bottom: 19/459
  30622. }
  30623. },
  30624. head: {
  30625. height: math.unit(2.1, "feet"),
  30626. name: "Head",
  30627. image: {
  30628. source: "./media/characters/nicki/head.svg"
  30629. }
  30630. },
  30631. paw: {
  30632. height: math.unit(1.88, "feet"),
  30633. name: "Paw",
  30634. image: {
  30635. source: "./media/characters/nicki/paw.svg"
  30636. }
  30637. },
  30638. },
  30639. [
  30640. {
  30641. name: "Normal",
  30642. height: math.unit(5 + 7/12, "feet"),
  30643. default: true
  30644. },
  30645. ]
  30646. ))
  30647. characterMakers.push(() => makeCharacter(
  30648. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30649. {
  30650. front: {
  30651. height: math.unit(7 + 10/12, "feet"),
  30652. weight: math.unit(3.5, "tons"),
  30653. name: "Front",
  30654. image: {
  30655. source: "./media/characters/lee/front.svg",
  30656. extra: 1773/1615,
  30657. bottom: 86/1859
  30658. }
  30659. },
  30660. hand: {
  30661. height: math.unit(1.78, "feet"),
  30662. name: "Hand",
  30663. image: {
  30664. source: "./media/characters/lee/hand.svg"
  30665. }
  30666. },
  30667. maw: {
  30668. height: math.unit(1.18, "feet"),
  30669. name: "Maw",
  30670. image: {
  30671. source: "./media/characters/lee/maw.svg"
  30672. }
  30673. },
  30674. },
  30675. [
  30676. {
  30677. name: "Normal",
  30678. height: math.unit(7 + 10/12, "feet"),
  30679. default: true
  30680. },
  30681. ]
  30682. ))
  30683. characterMakers.push(() => makeCharacter(
  30684. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30685. {
  30686. front: {
  30687. height: math.unit(9, "feet"),
  30688. name: "Front",
  30689. image: {
  30690. source: "./media/characters/guti/front.svg",
  30691. extra: 4551/4355,
  30692. bottom: 123/4674
  30693. }
  30694. },
  30695. tongue: {
  30696. height: math.unit(1, "feet"),
  30697. name: "Tongue",
  30698. image: {
  30699. source: "./media/characters/guti/tongue.svg"
  30700. }
  30701. },
  30702. paw: {
  30703. height: math.unit(1.18, "feet"),
  30704. name: "Paw",
  30705. image: {
  30706. source: "./media/characters/guti/paw.svg"
  30707. }
  30708. },
  30709. },
  30710. [
  30711. {
  30712. name: "Normal",
  30713. height: math.unit(9, "feet"),
  30714. default: true
  30715. },
  30716. ]
  30717. ))
  30718. characterMakers.push(() => makeCharacter(
  30719. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30720. {
  30721. side: {
  30722. height: math.unit(5, "meters"),
  30723. name: "Side",
  30724. image: {
  30725. source: "./media/characters/vesper/side.svg",
  30726. extra: 1605/1518,
  30727. bottom: 0/1605
  30728. }
  30729. },
  30730. },
  30731. [
  30732. {
  30733. name: "Small",
  30734. height: math.unit(5, "meters")
  30735. },
  30736. {
  30737. name: "Sage",
  30738. height: math.unit(100, "meters"),
  30739. default: true
  30740. },
  30741. {
  30742. name: "Fun Size",
  30743. height: math.unit(600, "meters")
  30744. },
  30745. {
  30746. name: "Goddess",
  30747. height: math.unit(20000, "km")
  30748. },
  30749. {
  30750. name: "Maximum",
  30751. height: math.unit(5, "galaxies")
  30752. },
  30753. ]
  30754. ))
  30755. characterMakers.push(() => makeCharacter(
  30756. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30757. {
  30758. front: {
  30759. height: math.unit(6 + 3/12, "feet"),
  30760. weight: math.unit(190, "lb"),
  30761. name: "Front",
  30762. image: {
  30763. source: "./media/characters/gawain/front.svg",
  30764. extra: 2222/2139,
  30765. bottom: 90/2312
  30766. }
  30767. },
  30768. back: {
  30769. height: math.unit(6 + 3/12, "feet"),
  30770. weight: math.unit(190, "lb"),
  30771. name: "Back",
  30772. image: {
  30773. source: "./media/characters/gawain/back.svg",
  30774. extra: 2199/2111,
  30775. bottom: 73/2272
  30776. }
  30777. },
  30778. },
  30779. [
  30780. {
  30781. name: "Normal",
  30782. height: math.unit(6 + 3/12, "feet"),
  30783. default: true
  30784. },
  30785. ]
  30786. ))
  30787. characterMakers.push(() => makeCharacter(
  30788. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30789. {
  30790. side: {
  30791. height: math.unit(3.5, "meters"),
  30792. weight: math.unit(16000, "lb"),
  30793. name: "Side",
  30794. image: {
  30795. source: "./media/characters/dascalti/side.svg",
  30796. extra: 392/273,
  30797. bottom: 47/439
  30798. }
  30799. },
  30800. breath: {
  30801. height: math.unit(7.4, "feet"),
  30802. name: "Breath",
  30803. image: {
  30804. source: "./media/characters/dascalti/breath.svg"
  30805. }
  30806. },
  30807. fed: {
  30808. height: math.unit(3.6, "meters"),
  30809. weight: math.unit(16000, "lb"),
  30810. name: "Fed",
  30811. image: {
  30812. source: "./media/characters/dascalti/fed.svg",
  30813. extra: 1419/820,
  30814. bottom: 95/1514
  30815. }
  30816. },
  30817. },
  30818. [
  30819. {
  30820. name: "Normal",
  30821. height: math.unit(3.5, "meters"),
  30822. default: true
  30823. },
  30824. ]
  30825. ))
  30826. characterMakers.push(() => makeCharacter(
  30827. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30828. {
  30829. front: {
  30830. height: math.unit(3 + 5/12, "feet"),
  30831. name: "Front",
  30832. image: {
  30833. source: "./media/characters/mauve/front.svg",
  30834. extra: 1126/1033,
  30835. bottom: 65/1191
  30836. }
  30837. },
  30838. side: {
  30839. height: math.unit(3 + 5/12, "feet"),
  30840. name: "Side",
  30841. image: {
  30842. source: "./media/characters/mauve/side.svg",
  30843. extra: 1089/1001,
  30844. bottom: 29/1118
  30845. }
  30846. },
  30847. back: {
  30848. height: math.unit(3 + 5/12, "feet"),
  30849. name: "Back",
  30850. image: {
  30851. source: "./media/characters/mauve/back.svg",
  30852. extra: 1173/1053,
  30853. bottom: 109/1282
  30854. }
  30855. },
  30856. },
  30857. [
  30858. {
  30859. name: "Normal",
  30860. height: math.unit(3 + 5/12, "feet"),
  30861. default: true
  30862. },
  30863. ]
  30864. ))
  30865. characterMakers.push(() => makeCharacter(
  30866. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30867. {
  30868. front: {
  30869. height: math.unit(6 + 3/12, "feet"),
  30870. weight: math.unit(430, "lb"),
  30871. name: "Front",
  30872. image: {
  30873. source: "./media/characters/carlos/front.svg",
  30874. extra: 1964/1913,
  30875. bottom: 70/2034
  30876. }
  30877. },
  30878. },
  30879. [
  30880. {
  30881. name: "Normal",
  30882. height: math.unit(6 + 3/12, "feet"),
  30883. default: true
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30889. {
  30890. back: {
  30891. height: math.unit(5 + 10/12, "feet"),
  30892. weight: math.unit(200, "lb"),
  30893. name: "Back",
  30894. image: {
  30895. source: "./media/characters/jax/back.svg",
  30896. extra: 764/739,
  30897. bottom: 25/789
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Normal",
  30904. height: math.unit(5 + 10/12, "feet"),
  30905. default: true
  30906. },
  30907. ]
  30908. ))
  30909. characterMakers.push(() => makeCharacter(
  30910. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30911. {
  30912. front: {
  30913. height: math.unit(8, "feet"),
  30914. weight: math.unit(250, "lb"),
  30915. name: "Front",
  30916. image: {
  30917. source: "./media/characters/eikthynir/front.svg",
  30918. extra: 1332/1166,
  30919. bottom: 82/1414
  30920. }
  30921. },
  30922. back: {
  30923. height: math.unit(8, "feet"),
  30924. weight: math.unit(250, "lb"),
  30925. name: "Back",
  30926. image: {
  30927. source: "./media/characters/eikthynir/back.svg",
  30928. extra: 1342/1190,
  30929. bottom: 19/1361
  30930. }
  30931. },
  30932. dick: {
  30933. height: math.unit(2.35, "feet"),
  30934. name: "Dick",
  30935. image: {
  30936. source: "./media/characters/eikthynir/dick.svg"
  30937. }
  30938. },
  30939. },
  30940. [
  30941. {
  30942. name: "Normal",
  30943. height: math.unit(8, "feet"),
  30944. default: true
  30945. },
  30946. ]
  30947. ))
  30948. characterMakers.push(() => makeCharacter(
  30949. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30950. {
  30951. front: {
  30952. height: math.unit(99, "meters"),
  30953. weight: math.unit(13000, "tons"),
  30954. name: "Front",
  30955. image: {
  30956. source: "./media/characters/zlmos/front.svg",
  30957. extra: 2202/1992,
  30958. bottom: 315/2517
  30959. }
  30960. },
  30961. },
  30962. [
  30963. {
  30964. name: "Macro",
  30965. height: math.unit(99, "meters"),
  30966. default: true
  30967. },
  30968. ]
  30969. ))
  30970. characterMakers.push(() => makeCharacter(
  30971. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30972. {
  30973. front: {
  30974. height: math.unit(6 + 5/12, "feet"),
  30975. name: "Front",
  30976. image: {
  30977. source: "./media/characters/purri/front.svg",
  30978. extra: 1698/1610,
  30979. bottom: 32/1730
  30980. }
  30981. },
  30982. frontAlt: {
  30983. height: math.unit(6 + 5/12, "feet"),
  30984. name: "Front (Alt)",
  30985. image: {
  30986. source: "./media/characters/purri/front-alt.svg",
  30987. extra: 450/420,
  30988. bottom: 26/476
  30989. }
  30990. },
  30991. boots: {
  30992. height: math.unit(5.5, "feet"),
  30993. name: "Boots",
  30994. image: {
  30995. source: "./media/characters/purri/boots.svg",
  30996. extra: 905/853,
  30997. bottom: 18/923
  30998. }
  30999. },
  31000. lying: {
  31001. height: math.unit(2, "feet"),
  31002. name: "Lying",
  31003. image: {
  31004. source: "./media/characters/purri/lying.svg",
  31005. extra: 940/843,
  31006. bottom: 146/1086
  31007. }
  31008. },
  31009. devious: {
  31010. height: math.unit(1.77, "feet"),
  31011. name: "Devious",
  31012. image: {
  31013. source: "./media/characters/purri/devious.svg",
  31014. extra: 1440/1155,
  31015. bottom: 147/1587
  31016. }
  31017. },
  31018. bean: {
  31019. height: math.unit(1.94, "feet"),
  31020. name: "Bean",
  31021. image: {
  31022. source: "./media/characters/purri/bean.svg"
  31023. }
  31024. },
  31025. },
  31026. [
  31027. {
  31028. name: "Micro",
  31029. height: math.unit(1, "mm")
  31030. },
  31031. {
  31032. name: "Normal",
  31033. height: math.unit(6 + 5/12, "feet"),
  31034. default: true
  31035. },
  31036. {
  31037. name: "Macro :3c",
  31038. height: math.unit(2, "miles")
  31039. },
  31040. ]
  31041. ))
  31042. characterMakers.push(() => makeCharacter(
  31043. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31044. {
  31045. front: {
  31046. height: math.unit(6 + 2/12, "feet"),
  31047. weight: math.unit(250, "lb"),
  31048. name: "Front",
  31049. image: {
  31050. source: "./media/characters/moonlight/front.svg",
  31051. extra: 1044/908,
  31052. bottom: 56/1100
  31053. }
  31054. },
  31055. feral: {
  31056. height: math.unit(3 + 1/12, "feet"),
  31057. weight: math.unit(50, "kg"),
  31058. name: "Feral",
  31059. image: {
  31060. source: "./media/characters/moonlight/feral.svg",
  31061. extra: 3705/2791,
  31062. bottom: 145/3850
  31063. }
  31064. },
  31065. paw: {
  31066. height: math.unit(1, "feet"),
  31067. name: "Paw",
  31068. image: {
  31069. source: "./media/characters/moonlight/paw.svg"
  31070. }
  31071. },
  31072. paws: {
  31073. height: math.unit(0.98, "feet"),
  31074. name: "Paws",
  31075. image: {
  31076. source: "./media/characters/moonlight/paws.svg",
  31077. extra: 939/939,
  31078. bottom: 50/989
  31079. }
  31080. },
  31081. mouth: {
  31082. height: math.unit(0.48, "feet"),
  31083. name: "Mouth",
  31084. image: {
  31085. source: "./media/characters/moonlight/mouth.svg"
  31086. }
  31087. },
  31088. dick: {
  31089. height: math.unit(1.46, "feet"),
  31090. name: "Dick",
  31091. image: {
  31092. source: "./media/characters/moonlight/dick.svg"
  31093. }
  31094. },
  31095. },
  31096. [
  31097. {
  31098. name: "Normal",
  31099. height: math.unit(6 + 2/12, "feet"),
  31100. default: true
  31101. },
  31102. {
  31103. name: "Macro",
  31104. height: math.unit(300, "feet")
  31105. },
  31106. {
  31107. name: "Macro+",
  31108. height: math.unit(1, "mile")
  31109. },
  31110. {
  31111. name: "Mt. Moon",
  31112. height: math.unit(5, "miles")
  31113. },
  31114. {
  31115. name: "Megamacro",
  31116. height: math.unit(15, "miles")
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31122. {
  31123. back: {
  31124. height: math.unit(6, "feet"),
  31125. weight: math.unit(150, "lb"),
  31126. name: "Back",
  31127. image: {
  31128. source: "./media/characters/sylen/back.svg",
  31129. extra: 1335/1273,
  31130. bottom: 107/1442
  31131. }
  31132. },
  31133. },
  31134. [
  31135. {
  31136. name: "Normal",
  31137. height: math.unit(5 + 5/12, "feet")
  31138. },
  31139. {
  31140. name: "Megamacro",
  31141. height: math.unit(3, "miles"),
  31142. default: true
  31143. },
  31144. ]
  31145. ))
  31146. characterMakers.push(() => makeCharacter(
  31147. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31148. {
  31149. front: {
  31150. height: math.unit(6, "feet"),
  31151. weight: math.unit(190, "lb"),
  31152. name: "Front",
  31153. image: {
  31154. source: "./media/characters/huttser/front.svg",
  31155. extra: 1152/1058,
  31156. bottom: 23/1175
  31157. }
  31158. },
  31159. side: {
  31160. height: math.unit(6, "feet"),
  31161. weight: math.unit(190, "lb"),
  31162. name: "Side",
  31163. image: {
  31164. source: "./media/characters/huttser/side.svg",
  31165. extra: 1174/1065,
  31166. bottom: 18/1192
  31167. }
  31168. },
  31169. back: {
  31170. height: math.unit(6, "feet"),
  31171. weight: math.unit(190, "lb"),
  31172. name: "Back",
  31173. image: {
  31174. source: "./media/characters/huttser/back.svg",
  31175. extra: 1158/1056,
  31176. bottom: 12/1170
  31177. }
  31178. },
  31179. },
  31180. [
  31181. ]
  31182. ))
  31183. characterMakers.push(() => makeCharacter(
  31184. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31185. {
  31186. side: {
  31187. height: math.unit(12 + 9/12, "feet"),
  31188. weight: math.unit(15000, "lb"),
  31189. name: "Side",
  31190. image: {
  31191. source: "./media/characters/faan/side.svg",
  31192. extra: 2747/2697,
  31193. bottom: 0/2747
  31194. }
  31195. },
  31196. front: {
  31197. height: math.unit(12 + 9/12, "feet"),
  31198. weight: math.unit(15000, "lb"),
  31199. name: "Front",
  31200. image: {
  31201. source: "./media/characters/faan/front.svg",
  31202. extra: 607/571,
  31203. bottom: 24/631
  31204. }
  31205. },
  31206. head: {
  31207. height: math.unit(2.85, "feet"),
  31208. name: "Head",
  31209. image: {
  31210. source: "./media/characters/faan/head.svg"
  31211. }
  31212. },
  31213. headAlt: {
  31214. height: math.unit(3.13, "feet"),
  31215. name: "Head-alt",
  31216. image: {
  31217. source: "./media/characters/faan/head-alt.svg"
  31218. }
  31219. },
  31220. },
  31221. [
  31222. {
  31223. name: "Normal",
  31224. height: math.unit(12 + 9/12, "feet"),
  31225. default: true
  31226. },
  31227. ]
  31228. ))
  31229. characterMakers.push(() => makeCharacter(
  31230. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31231. {
  31232. front: {
  31233. height: math.unit(6, "feet"),
  31234. weight: math.unit(300, "lb"),
  31235. name: "Front",
  31236. image: {
  31237. source: "./media/characters/tanio/front.svg",
  31238. extra: 711/673,
  31239. bottom: 25/736
  31240. }
  31241. },
  31242. },
  31243. [
  31244. {
  31245. name: "Normal",
  31246. height: math.unit(6, "feet"),
  31247. default: true
  31248. },
  31249. ]
  31250. ))
  31251. characterMakers.push(() => makeCharacter(
  31252. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31253. {
  31254. front: {
  31255. height: math.unit(3, "inches"),
  31256. name: "Front",
  31257. image: {
  31258. source: "./media/characters/noboru/front.svg",
  31259. extra: 1039/932,
  31260. bottom: 18/1057
  31261. }
  31262. },
  31263. },
  31264. [
  31265. {
  31266. name: "Micro",
  31267. height: math.unit(3, "inches"),
  31268. default: true
  31269. },
  31270. ]
  31271. ))
  31272. characterMakers.push(() => makeCharacter(
  31273. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31274. {
  31275. front: {
  31276. height: math.unit(1.85, "meters"),
  31277. weight: math.unit(80, "kg"),
  31278. name: "Front",
  31279. image: {
  31280. source: "./media/characters/daniel-barrett/front.svg",
  31281. extra: 355/337,
  31282. bottom: 9/364
  31283. }
  31284. },
  31285. },
  31286. [
  31287. {
  31288. name: "Pico",
  31289. height: math.unit(0.0433, "mm")
  31290. },
  31291. {
  31292. name: "Nano",
  31293. height: math.unit(1.5, "mm")
  31294. },
  31295. {
  31296. name: "Micro",
  31297. height: math.unit(5.3, "cm"),
  31298. default: true
  31299. },
  31300. {
  31301. name: "Normal",
  31302. height: math.unit(1.85, "meters")
  31303. },
  31304. {
  31305. name: "Macro",
  31306. height: math.unit(64.7, "meters")
  31307. },
  31308. {
  31309. name: "Megamacro",
  31310. height: math.unit(2.26, "km")
  31311. },
  31312. {
  31313. name: "Gigamacro",
  31314. height: math.unit(79, "km")
  31315. },
  31316. {
  31317. name: "Teramacro",
  31318. height: math.unit(2765, "km")
  31319. },
  31320. {
  31321. name: "Petamacro",
  31322. height: math.unit(96678, "km")
  31323. },
  31324. ]
  31325. ))
  31326. characterMakers.push(() => makeCharacter(
  31327. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31328. {
  31329. front: {
  31330. height: math.unit(30, "meters"),
  31331. weight: math.unit(400, "tons"),
  31332. name: "Front",
  31333. image: {
  31334. source: "./media/characters/zeel/front.svg",
  31335. extra: 2599/2599,
  31336. bottom: 226/2825
  31337. }
  31338. },
  31339. },
  31340. [
  31341. {
  31342. name: "Macro",
  31343. height: math.unit(30, "meters"),
  31344. default: true
  31345. },
  31346. ]
  31347. ))
  31348. characterMakers.push(() => makeCharacter(
  31349. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31350. {
  31351. front: {
  31352. height: math.unit(6 + 7/12, "feet"),
  31353. weight: math.unit(210, "lb"),
  31354. name: "Front",
  31355. image: {
  31356. source: "./media/characters/tarn/front.svg",
  31357. extra: 3517/3220,
  31358. bottom: 91/3608
  31359. }
  31360. },
  31361. back: {
  31362. height: math.unit(6 + 7/12, "feet"),
  31363. weight: math.unit(210, "lb"),
  31364. name: "Back",
  31365. image: {
  31366. source: "./media/characters/tarn/back.svg",
  31367. extra: 3566/3241,
  31368. bottom: 34/3600
  31369. }
  31370. },
  31371. dick: {
  31372. height: math.unit(1.65, "feet"),
  31373. name: "Dick",
  31374. image: {
  31375. source: "./media/characters/tarn/dick.svg"
  31376. }
  31377. },
  31378. paw: {
  31379. height: math.unit(1.80, "feet"),
  31380. name: "Paw",
  31381. image: {
  31382. source: "./media/characters/tarn/paw.svg"
  31383. }
  31384. },
  31385. tongue: {
  31386. height: math.unit(0.97, "feet"),
  31387. name: "Tongue",
  31388. image: {
  31389. source: "./media/characters/tarn/tongue.svg"
  31390. }
  31391. },
  31392. },
  31393. [
  31394. {
  31395. name: "Micro",
  31396. height: math.unit(4, "inches")
  31397. },
  31398. {
  31399. name: "Normal",
  31400. height: math.unit(6 + 7/12, "feet"),
  31401. default: true
  31402. },
  31403. {
  31404. name: "Macro",
  31405. height: math.unit(300, "feet")
  31406. },
  31407. ]
  31408. ))
  31409. characterMakers.push(() => makeCharacter(
  31410. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31411. {
  31412. front: {
  31413. height: math.unit(5 + 7/12, "feet"),
  31414. weight: math.unit(80, "kg"),
  31415. name: "Front",
  31416. image: {
  31417. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31418. extra: 3023/2865,
  31419. bottom: 33/3056
  31420. }
  31421. },
  31422. back: {
  31423. height: math.unit(5 + 7/12, "feet"),
  31424. weight: math.unit(80, "kg"),
  31425. name: "Back",
  31426. image: {
  31427. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31428. extra: 3020/2886,
  31429. bottom: 30/3050
  31430. }
  31431. },
  31432. dick: {
  31433. height: math.unit(0.98, "feet"),
  31434. name: "Dick",
  31435. image: {
  31436. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31437. }
  31438. },
  31439. anatomy: {
  31440. height: math.unit(2.86, "feet"),
  31441. name: "Anatomy",
  31442. image: {
  31443. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31444. }
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Really Small",
  31450. height: math.unit(2, "inches")
  31451. },
  31452. {
  31453. name: "Micro",
  31454. height: math.unit(5.583, "inches")
  31455. },
  31456. {
  31457. name: "Normal",
  31458. height: math.unit(5 + 7/12, "feet"),
  31459. default: true
  31460. },
  31461. {
  31462. name: "Macro",
  31463. height: math.unit(67, "feet")
  31464. },
  31465. {
  31466. name: "Megamacro",
  31467. height: math.unit(134, "feet")
  31468. },
  31469. ]
  31470. ))
  31471. characterMakers.push(() => makeCharacter(
  31472. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31473. {
  31474. front: {
  31475. height: math.unit(9, "feet"),
  31476. weight: math.unit(120, "lb"),
  31477. name: "Front",
  31478. image: {
  31479. source: "./media/characters/sally/front.svg",
  31480. extra: 1506/1349,
  31481. bottom: 66/1572
  31482. }
  31483. },
  31484. },
  31485. [
  31486. {
  31487. name: "Normal",
  31488. height: math.unit(9, "feet"),
  31489. default: true
  31490. },
  31491. ]
  31492. ))
  31493. characterMakers.push(() => makeCharacter(
  31494. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31495. {
  31496. front: {
  31497. height: math.unit(8, "feet"),
  31498. weight: math.unit(900, "lb"),
  31499. name: "Front",
  31500. image: {
  31501. source: "./media/characters/owen/front.svg",
  31502. extra: 1761/1657,
  31503. bottom: 74/1835
  31504. }
  31505. },
  31506. side: {
  31507. height: math.unit(8, "feet"),
  31508. weight: math.unit(900, "lb"),
  31509. name: "Side",
  31510. image: {
  31511. source: "./media/characters/owen/side.svg",
  31512. extra: 1797/1734,
  31513. bottom: 30/1827
  31514. }
  31515. },
  31516. back: {
  31517. height: math.unit(8, "feet"),
  31518. weight: math.unit(900, "lb"),
  31519. name: "Back",
  31520. image: {
  31521. source: "./media/characters/owen/back.svg",
  31522. extra: 1796/1706,
  31523. bottom: 59/1855
  31524. }
  31525. },
  31526. maw: {
  31527. height: math.unit(1.76, "feet"),
  31528. name: "Maw",
  31529. image: {
  31530. source: "./media/characters/owen/maw.svg"
  31531. }
  31532. },
  31533. },
  31534. [
  31535. {
  31536. name: "Normal",
  31537. height: math.unit(8, "feet"),
  31538. default: true
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31544. {
  31545. front: {
  31546. height: math.unit(4, "feet"),
  31547. weight: math.unit(400, "lb"),
  31548. name: "Front",
  31549. image: {
  31550. source: "./media/characters/ryth/front.svg",
  31551. extra: 876/691,
  31552. bottom: 25/901
  31553. }
  31554. },
  31555. goia: {
  31556. height: math.unit(12, "feet"),
  31557. weight: math.unit(10800, "lb"),
  31558. name: "Goia",
  31559. image: {
  31560. source: "./media/characters/ryth/goia.svg",
  31561. extra: 3450/3198,
  31562. bottom: 61/3511
  31563. }
  31564. },
  31565. },
  31566. [
  31567. {
  31568. name: "Normal",
  31569. height: math.unit(4, "feet"),
  31570. default: true
  31571. },
  31572. ]
  31573. ))
  31574. characterMakers.push(() => makeCharacter(
  31575. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31576. {
  31577. front: {
  31578. height: math.unit(7, "feet"),
  31579. weight: math.unit(180, "lb"),
  31580. name: "Front",
  31581. image: {
  31582. source: "./media/characters/necrolance/front.svg",
  31583. extra: 1062/947,
  31584. bottom: 41/1103
  31585. }
  31586. },
  31587. back: {
  31588. height: math.unit(7, "feet"),
  31589. weight: math.unit(180, "lb"),
  31590. name: "Back",
  31591. image: {
  31592. source: "./media/characters/necrolance/back.svg",
  31593. extra: 1045/984,
  31594. bottom: 14/1059
  31595. }
  31596. },
  31597. wing: {
  31598. height: math.unit(2.67, "feet"),
  31599. name: "Wing",
  31600. image: {
  31601. source: "./media/characters/necrolance/wing.svg"
  31602. }
  31603. },
  31604. },
  31605. [
  31606. {
  31607. name: "Normal",
  31608. height: math.unit(7, "feet"),
  31609. default: true
  31610. },
  31611. ]
  31612. ))
  31613. characterMakers.push(() => makeCharacter(
  31614. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31615. {
  31616. front: {
  31617. height: math.unit(76, "meters"),
  31618. weight: math.unit(30000, "tons"),
  31619. name: "Front",
  31620. image: {
  31621. source: "./media/characters/tyler/front.svg",
  31622. extra: 1640/1640,
  31623. bottom: 114/1754
  31624. }
  31625. },
  31626. },
  31627. [
  31628. {
  31629. name: "Macro",
  31630. height: math.unit(76, "meters"),
  31631. default: true
  31632. },
  31633. ]
  31634. ))
  31635. characterMakers.push(() => makeCharacter(
  31636. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31637. {
  31638. front: {
  31639. height: math.unit(4 + 11/12, "feet"),
  31640. weight: math.unit(132, "lb"),
  31641. name: "Front",
  31642. image: {
  31643. source: "./media/characters/icey/front.svg",
  31644. extra: 2750/2550,
  31645. bottom: 33/2783
  31646. }
  31647. },
  31648. back: {
  31649. height: math.unit(4 + 11/12, "feet"),
  31650. weight: math.unit(132, "lb"),
  31651. name: "Back",
  31652. image: {
  31653. source: "./media/characters/icey/back.svg",
  31654. extra: 2624/2481,
  31655. bottom: 35/2659
  31656. }
  31657. },
  31658. },
  31659. [
  31660. {
  31661. name: "Normal",
  31662. height: math.unit(4 + 11/12, "feet"),
  31663. default: true
  31664. },
  31665. ]
  31666. ))
  31667. characterMakers.push(() => makeCharacter(
  31668. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31669. {
  31670. front: {
  31671. height: math.unit(100, "feet"),
  31672. weight: math.unit(0, "lb"),
  31673. name: "Front",
  31674. image: {
  31675. source: "./media/characters/smile/front.svg",
  31676. extra: 2983/2912,
  31677. bottom: 162/3145
  31678. }
  31679. },
  31680. back: {
  31681. height: math.unit(100, "feet"),
  31682. weight: math.unit(0, "lb"),
  31683. name: "Back",
  31684. image: {
  31685. source: "./media/characters/smile/back.svg",
  31686. extra: 3143/3031,
  31687. bottom: 91/3234
  31688. }
  31689. },
  31690. head: {
  31691. height: math.unit(26.3, "feet"),
  31692. weight: math.unit(0, "lb"),
  31693. name: "Head",
  31694. image: {
  31695. source: "./media/characters/smile/head.svg"
  31696. }
  31697. },
  31698. collar: {
  31699. height: math.unit(5.3, "feet"),
  31700. weight: math.unit(0, "lb"),
  31701. name: "Collar",
  31702. image: {
  31703. source: "./media/characters/smile/collar.svg"
  31704. }
  31705. },
  31706. },
  31707. [
  31708. {
  31709. name: "Macro",
  31710. height: math.unit(100, "feet"),
  31711. default: true
  31712. },
  31713. ]
  31714. ))
  31715. characterMakers.push(() => makeCharacter(
  31716. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31717. {
  31718. dragon: {
  31719. height: math.unit(26, "feet"),
  31720. weight: math.unit(36, "tons"),
  31721. name: "Dragon",
  31722. image: {
  31723. source: "./media/characters/arimphae/dragon.svg",
  31724. extra: 1574/983,
  31725. bottom: 357/1931
  31726. }
  31727. },
  31728. drake: {
  31729. height: math.unit(9, "feet"),
  31730. weight: math.unit(1.5, "tons"),
  31731. name: "Drake",
  31732. image: {
  31733. source: "./media/characters/arimphae/drake.svg",
  31734. extra: 1120/925,
  31735. bottom: 435/1555
  31736. }
  31737. },
  31738. },
  31739. [
  31740. {
  31741. name: "Small",
  31742. height: math.unit(26*5/9, "feet")
  31743. },
  31744. {
  31745. name: "Normal",
  31746. height: math.unit(26, "feet"),
  31747. default: true
  31748. },
  31749. ]
  31750. ))
  31751. characterMakers.push(() => makeCharacter(
  31752. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31753. {
  31754. front: {
  31755. height: math.unit(8 + 9/12, "feet"),
  31756. name: "Front",
  31757. image: {
  31758. source: "./media/characters/xander/front.svg",
  31759. extra: 848/673,
  31760. bottom: 62/910
  31761. }
  31762. },
  31763. },
  31764. [
  31765. {
  31766. name: "Normal",
  31767. height: math.unit(8 + 9/12, "feet"),
  31768. default: true
  31769. },
  31770. {
  31771. name: "Gaze Grabber",
  31772. height: math.unit(13 + 8/12, "feet")
  31773. },
  31774. {
  31775. name: "Jaw Dropper",
  31776. height: math.unit(27, "feet")
  31777. },
  31778. {
  31779. name: "Show Stopper",
  31780. height: math.unit(136, "feet")
  31781. },
  31782. {
  31783. name: "Superstar",
  31784. height: math.unit(1.9e6, "miles")
  31785. },
  31786. ]
  31787. ))
  31788. characterMakers.push(() => makeCharacter(
  31789. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31790. {
  31791. side: {
  31792. height: math.unit(2100, "feet"),
  31793. name: "Side",
  31794. image: {
  31795. source: "./media/characters/osiris/side.svg",
  31796. extra: 1105/939,
  31797. bottom: 167/1272
  31798. }
  31799. },
  31800. },
  31801. [
  31802. {
  31803. name: "Macro",
  31804. height: math.unit(2100, "feet"),
  31805. default: true
  31806. },
  31807. ]
  31808. ))
  31809. characterMakers.push(() => makeCharacter(
  31810. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31811. {
  31812. front: {
  31813. height: math.unit(6 + 8/12, "feet"),
  31814. weight: math.unit(225, "lb"),
  31815. name: "Front",
  31816. image: {
  31817. source: "./media/characters/rhys-londe/front.svg",
  31818. extra: 2258/2141,
  31819. bottom: 188/2446
  31820. }
  31821. },
  31822. back: {
  31823. height: math.unit(6 + 8/12, "feet"),
  31824. weight: math.unit(225, "lb"),
  31825. name: "Back",
  31826. image: {
  31827. source: "./media/characters/rhys-londe/back.svg",
  31828. extra: 2237/2137,
  31829. bottom: 63/2300
  31830. }
  31831. },
  31832. frontNsfw: {
  31833. height: math.unit(6 + 8/12, "feet"),
  31834. weight: math.unit(225, "lb"),
  31835. name: "Front (NSFW)",
  31836. image: {
  31837. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31838. extra: 2258/2141,
  31839. bottom: 188/2446
  31840. }
  31841. },
  31842. backNsfw: {
  31843. height: math.unit(6 + 8/12, "feet"),
  31844. weight: math.unit(225, "lb"),
  31845. name: "Back (NSFW)",
  31846. image: {
  31847. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31848. extra: 2237/2137,
  31849. bottom: 63/2300
  31850. }
  31851. },
  31852. dick: {
  31853. height: math.unit(30, "inches"),
  31854. name: "Dick",
  31855. image: {
  31856. source: "./media/characters/rhys-londe/dick.svg"
  31857. }
  31858. },
  31859. maw: {
  31860. height: math.unit(1.6, "feet"),
  31861. name: "Maw",
  31862. image: {
  31863. source: "./media/characters/rhys-londe/maw.svg"
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Normal",
  31870. height: math.unit(6 + 8/12, "feet"),
  31871. default: true
  31872. },
  31873. ]
  31874. ))
  31875. characterMakers.push(() => makeCharacter(
  31876. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31877. {
  31878. front: {
  31879. height: math.unit(3 + 10/12, "feet"),
  31880. weight: math.unit(90, "lb"),
  31881. name: "Front",
  31882. image: {
  31883. source: "./media/characters/taivas-ensim/front.svg",
  31884. extra: 1327/1216,
  31885. bottom: 96/1423
  31886. }
  31887. },
  31888. back: {
  31889. height: math.unit(3 + 10/12, "feet"),
  31890. weight: math.unit(90, "lb"),
  31891. name: "Back",
  31892. image: {
  31893. source: "./media/characters/taivas-ensim/back.svg",
  31894. extra: 1355/1247,
  31895. bottom: 11/1366
  31896. }
  31897. },
  31898. frontNsfw: {
  31899. height: math.unit(3 + 10/12, "feet"),
  31900. weight: math.unit(90, "lb"),
  31901. name: "Front (NSFW)",
  31902. image: {
  31903. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31904. extra: 1327/1216,
  31905. bottom: 96/1423
  31906. }
  31907. },
  31908. backNsfw: {
  31909. height: math.unit(3 + 10/12, "feet"),
  31910. weight: math.unit(90, "lb"),
  31911. name: "Back (NSFW)",
  31912. image: {
  31913. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31914. extra: 1355/1247,
  31915. bottom: 11/1366
  31916. }
  31917. },
  31918. },
  31919. [
  31920. {
  31921. name: "Normal",
  31922. height: math.unit(3 + 10/12, "feet"),
  31923. default: true
  31924. },
  31925. ]
  31926. ))
  31927. characterMakers.push(() => makeCharacter(
  31928. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31929. {
  31930. front: {
  31931. height: math.unit(9 + 6/12, "feet"),
  31932. weight: math.unit(940, "lb"),
  31933. name: "Front",
  31934. image: {
  31935. source: "./media/characters/byliss/front.svg",
  31936. extra: 1327/1290,
  31937. bottom: 82/1409
  31938. }
  31939. },
  31940. back: {
  31941. height: math.unit(9 + 6/12, "feet"),
  31942. weight: math.unit(940, "lb"),
  31943. name: "Back",
  31944. image: {
  31945. source: "./media/characters/byliss/back.svg",
  31946. extra: 1376/1349,
  31947. bottom: 9/1385
  31948. }
  31949. },
  31950. frontNsfw: {
  31951. height: math.unit(9 + 6/12, "feet"),
  31952. weight: math.unit(940, "lb"),
  31953. name: "Front (NSFW)",
  31954. image: {
  31955. source: "./media/characters/byliss/front-nsfw.svg",
  31956. extra: 1327/1290,
  31957. bottom: 82/1409
  31958. }
  31959. },
  31960. backNsfw: {
  31961. height: math.unit(9 + 6/12, "feet"),
  31962. weight: math.unit(940, "lb"),
  31963. name: "Back (NSFW)",
  31964. image: {
  31965. source: "./media/characters/byliss/back-nsfw.svg",
  31966. extra: 1376/1349,
  31967. bottom: 9/1385
  31968. }
  31969. },
  31970. },
  31971. [
  31972. {
  31973. name: "Normal",
  31974. height: math.unit(9 + 6/12, "feet"),
  31975. default: true
  31976. },
  31977. ]
  31978. ))
  31979. characterMakers.push(() => makeCharacter(
  31980. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31981. {
  31982. front: {
  31983. height: math.unit(5 + 2/12, "feet"),
  31984. weight: math.unit(200, "lb"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/noraly/front.svg",
  31988. extra: 4985/4773,
  31989. bottom: 150/5135
  31990. }
  31991. },
  31992. full: {
  31993. height: math.unit(5 + 2/12, "feet"),
  31994. weight: math.unit(164, "lb"),
  31995. name: "Full",
  31996. image: {
  31997. source: "./media/characters/noraly/full.svg",
  31998. extra: 1114/1059,
  31999. bottom: 35/1149
  32000. }
  32001. },
  32002. fuller: {
  32003. height: math.unit(5 + 2/12, "feet"),
  32004. weight: math.unit(230, "lb"),
  32005. name: "Fuller",
  32006. image: {
  32007. source: "./media/characters/noraly/fuller.svg",
  32008. extra: 1114/1059,
  32009. bottom: 35/1149
  32010. }
  32011. },
  32012. fullest: {
  32013. height: math.unit(5 + 2/12, "feet"),
  32014. weight: math.unit(300, "lb"),
  32015. name: "Fullest",
  32016. image: {
  32017. source: "./media/characters/noraly/fullest.svg",
  32018. extra: 1114/1059,
  32019. bottom: 35/1149
  32020. }
  32021. },
  32022. },
  32023. [
  32024. {
  32025. name: "Normal",
  32026. height: math.unit(5 + 2/12, "feet"),
  32027. default: true
  32028. },
  32029. ]
  32030. ))
  32031. characterMakers.push(() => makeCharacter(
  32032. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32033. {
  32034. front: {
  32035. height: math.unit(5 + 2/12, "feet"),
  32036. weight: math.unit(210, "lb"),
  32037. name: "Front",
  32038. image: {
  32039. source: "./media/characters/pera/front.svg",
  32040. extra: 1560/1531,
  32041. bottom: 165/1725
  32042. }
  32043. },
  32044. back: {
  32045. height: math.unit(5 + 2/12, "feet"),
  32046. weight: math.unit(210, "lb"),
  32047. name: "Back",
  32048. image: {
  32049. source: "./media/characters/pera/back.svg",
  32050. extra: 1523/1493,
  32051. bottom: 152/1675
  32052. }
  32053. },
  32054. dick: {
  32055. height: math.unit(2.4, "feet"),
  32056. name: "Dick",
  32057. image: {
  32058. source: "./media/characters/pera/dick.svg"
  32059. }
  32060. },
  32061. },
  32062. [
  32063. {
  32064. name: "Normal",
  32065. height: math.unit(5 + 2/12, "feet"),
  32066. default: true
  32067. },
  32068. ]
  32069. ))
  32070. characterMakers.push(() => makeCharacter(
  32071. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32072. {
  32073. front: {
  32074. height: math.unit(12, "feet"),
  32075. weight: math.unit(3200, "lb"),
  32076. name: "Front",
  32077. image: {
  32078. source: "./media/characters/julian/front.svg",
  32079. extra: 2962/2701,
  32080. bottom: 184/3146
  32081. }
  32082. },
  32083. maw: {
  32084. height: math.unit(5.35, "feet"),
  32085. name: "Maw",
  32086. image: {
  32087. source: "./media/characters/julian/maw.svg"
  32088. }
  32089. },
  32090. paw: {
  32091. height: math.unit(3.07, "feet"),
  32092. name: "Paw",
  32093. image: {
  32094. source: "./media/characters/julian/paw.svg"
  32095. }
  32096. },
  32097. },
  32098. [
  32099. {
  32100. name: "Default",
  32101. height: math.unit(12, "feet"),
  32102. default: true
  32103. },
  32104. {
  32105. name: "Big",
  32106. height: math.unit(50, "feet")
  32107. },
  32108. {
  32109. name: "Really Big",
  32110. height: math.unit(1, "mile")
  32111. },
  32112. {
  32113. name: "Extremely Big",
  32114. height: math.unit(100, "miles")
  32115. },
  32116. {
  32117. name: "Planet Hugger",
  32118. height: math.unit(200, "megameters")
  32119. },
  32120. {
  32121. name: "Unreasonably Big",
  32122. height: math.unit(1e300, "meters")
  32123. },
  32124. ]
  32125. ))
  32126. characterMakers.push(() => makeCharacter(
  32127. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32128. {
  32129. solgooleo: {
  32130. height: math.unit(4, "meters"),
  32131. weight: math.unit(6000*1.5, "kg"),
  32132. volume: math.unit(6000, "liters"),
  32133. name: "Solgooleo",
  32134. image: {
  32135. source: "./media/characters/pi/solgooleo.svg",
  32136. extra: 388/331,
  32137. bottom: 29/417
  32138. }
  32139. },
  32140. },
  32141. [
  32142. {
  32143. name: "Normal",
  32144. height: math.unit(4, "meters"),
  32145. default: true
  32146. },
  32147. ]
  32148. ))
  32149. characterMakers.push(() => makeCharacter(
  32150. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32151. {
  32152. front: {
  32153. height: math.unit(8 + 2/12, "feet"),
  32154. weight: math.unit(4, "tons"),
  32155. name: "Front",
  32156. image: {
  32157. source: "./media/characters/shaun/front.svg",
  32158. extra: 1550/1505,
  32159. bottom: 353/1903
  32160. }
  32161. },
  32162. },
  32163. [
  32164. {
  32165. name: "Lorg",
  32166. height: math.unit(8 + 2/12, "feet"),
  32167. default: true
  32168. },
  32169. ]
  32170. ))
  32171. characterMakers.push(() => makeCharacter(
  32172. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32173. {
  32174. front: {
  32175. height: math.unit(7, "feet"),
  32176. name: "Front",
  32177. image: {
  32178. source: "./media/characters/sini/front.svg",
  32179. extra: 726/678,
  32180. bottom: 35/761
  32181. }
  32182. },
  32183. back: {
  32184. height: math.unit(7, "feet"),
  32185. name: "Back",
  32186. image: {
  32187. source: "./media/characters/sini/back.svg",
  32188. extra: 743/701,
  32189. bottom: 12/755
  32190. }
  32191. },
  32192. mawAnthro: {
  32193. height: math.unit(2.14, "feet"),
  32194. name: "Maw (Anthro)",
  32195. image: {
  32196. source: "./media/characters/sini/maw-anthro.svg"
  32197. }
  32198. },
  32199. dick: {
  32200. height: math.unit(1.45, "feet"),
  32201. name: "Dick (Anthro)",
  32202. image: {
  32203. source: "./media/characters/sini/dick-anthro.svg"
  32204. }
  32205. },
  32206. feral: {
  32207. height: math.unit(16, "feet"),
  32208. name: "Feral",
  32209. image: {
  32210. source: "./media/characters/sini/feral.svg",
  32211. extra: 814/605,
  32212. bottom: 11/825
  32213. }
  32214. },
  32215. mawFeral: {
  32216. height: math.unit(5.66, "feet"),
  32217. name: "Maw-feral",
  32218. image: {
  32219. source: "./media/characters/sini/maw-feral.svg"
  32220. }
  32221. },
  32222. footFeral: {
  32223. height: math.unit(5.17, "feet"),
  32224. name: "Foot-feral",
  32225. image: {
  32226. source: "./media/characters/sini/foot-feral.svg"
  32227. }
  32228. },
  32229. },
  32230. [
  32231. {
  32232. name: "Normal",
  32233. height: math.unit(7, "feet"),
  32234. default: true
  32235. },
  32236. ]
  32237. ))
  32238. characterMakers.push(() => makeCharacter(
  32239. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32240. {
  32241. side: {
  32242. height: math.unit(13, "meters"),
  32243. weight: math.unit(9072, "kg"),
  32244. name: "Side",
  32245. image: {
  32246. source: "./media/characters/raylldo/side.svg",
  32247. extra: 403/344,
  32248. bottom: 42/445
  32249. }
  32250. },
  32251. leaping: {
  32252. height: math.unit(12.3, "meters"),
  32253. weight: math.unit(9072, "kg"),
  32254. name: "Leaping",
  32255. image: {
  32256. source: "./media/characters/raylldo/leaping.svg",
  32257. extra: 470/249,
  32258. bottom: 13/483
  32259. }
  32260. },
  32261. flying: {
  32262. height: math.unit(18, "meters"),
  32263. weight: math.unit(9072, "kg"),
  32264. name: "Flying",
  32265. image: {
  32266. source: "./media/characters/raylldo/flying.svg"
  32267. }
  32268. },
  32269. head: {
  32270. height: math.unit(5.85, "meters"),
  32271. name: "Head",
  32272. image: {
  32273. source: "./media/characters/raylldo/head.svg"
  32274. }
  32275. },
  32276. maw: {
  32277. height: math.unit(5.32, "meters"),
  32278. name: "Maw",
  32279. image: {
  32280. source: "./media/characters/raylldo/maw.svg"
  32281. }
  32282. },
  32283. eye: {
  32284. height: math.unit(0.54, "meters"),
  32285. name: "Eye",
  32286. image: {
  32287. source: "./media/characters/raylldo/eye.svg"
  32288. }
  32289. },
  32290. },
  32291. [
  32292. {
  32293. name: "Normal",
  32294. height: math.unit(13, "meters"),
  32295. default: true
  32296. },
  32297. ]
  32298. ))
  32299. characterMakers.push(() => makeCharacter(
  32300. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32301. {
  32302. anthroFront: {
  32303. height: math.unit(9, "feet"),
  32304. weight: math.unit(600, "lb"),
  32305. name: "Anthro (Front)",
  32306. image: {
  32307. source: "./media/characters/glint/anthro-front.svg",
  32308. extra: 1097/1018,
  32309. bottom: 28/1125
  32310. }
  32311. },
  32312. anthroBack: {
  32313. height: math.unit(9, "feet"),
  32314. weight: math.unit(600, "lb"),
  32315. name: "Anthro (Back)",
  32316. image: {
  32317. source: "./media/characters/glint/anthro-back.svg",
  32318. extra: 1154/997,
  32319. bottom: 36/1190
  32320. }
  32321. },
  32322. feral: {
  32323. height: math.unit(11, "feet"),
  32324. weight: math.unit(50000, "lb"),
  32325. name: "Feral",
  32326. image: {
  32327. source: "./media/characters/glint/feral.svg",
  32328. extra: 3035/1585,
  32329. bottom: 1169/4204
  32330. }
  32331. },
  32332. dickAnthro: {
  32333. height: math.unit(0.7, "meters"),
  32334. name: "Dick (Anthro)",
  32335. image: {
  32336. source: "./media/characters/glint/dick-anthro.svg"
  32337. }
  32338. },
  32339. dickFeral: {
  32340. height: math.unit(2.65, "meters"),
  32341. name: "Dick (Feral)",
  32342. image: {
  32343. source: "./media/characters/glint/dick-feral.svg"
  32344. }
  32345. },
  32346. slitHidden: {
  32347. height: math.unit(5.85, "meters"),
  32348. name: "Slit (Hidden)",
  32349. image: {
  32350. source: "./media/characters/glint/slit-hidden.svg"
  32351. }
  32352. },
  32353. slitErect: {
  32354. height: math.unit(5.85, "meters"),
  32355. name: "Slit (Erect)",
  32356. image: {
  32357. source: "./media/characters/glint/slit-erect.svg"
  32358. }
  32359. },
  32360. mawAnthro: {
  32361. height: math.unit(0.63, "meters"),
  32362. name: "Maw (Anthro)",
  32363. image: {
  32364. source: "./media/characters/glint/maw.svg"
  32365. }
  32366. },
  32367. mawFeral: {
  32368. height: math.unit(2.89, "meters"),
  32369. name: "Maw (Feral)",
  32370. image: {
  32371. source: "./media/characters/glint/maw.svg"
  32372. }
  32373. },
  32374. },
  32375. [
  32376. {
  32377. name: "Normal",
  32378. height: math.unit(9, "feet"),
  32379. default: true
  32380. },
  32381. ]
  32382. ))
  32383. characterMakers.push(() => makeCharacter(
  32384. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32385. {
  32386. side: {
  32387. height: math.unit(15, "feet"),
  32388. weight: math.unit(5000, "kg"),
  32389. name: "Side",
  32390. image: {
  32391. source: "./media/characters/kairne/side.svg",
  32392. extra: 979/811,
  32393. bottom: 13/992
  32394. }
  32395. },
  32396. front: {
  32397. height: math.unit(15, "feet"),
  32398. weight: math.unit(5000, "kg"),
  32399. name: "Front",
  32400. image: {
  32401. source: "./media/characters/kairne/front.svg",
  32402. extra: 908/814,
  32403. bottom: 26/934
  32404. }
  32405. },
  32406. sideNsfw: {
  32407. height: math.unit(15, "feet"),
  32408. weight: math.unit(5000, "kg"),
  32409. name: "Side (NSFW)",
  32410. image: {
  32411. source: "./media/characters/kairne/side-nsfw.svg",
  32412. extra: 979/811,
  32413. bottom: 13/992
  32414. }
  32415. },
  32416. frontNsfw: {
  32417. height: math.unit(15, "feet"),
  32418. weight: math.unit(5000, "kg"),
  32419. name: "Front (NSFW)",
  32420. image: {
  32421. source: "./media/characters/kairne/front-nsfw.svg",
  32422. extra: 908/814,
  32423. bottom: 26/934
  32424. }
  32425. },
  32426. dickCaged: {
  32427. height: math.unit(0.65, "meters"),
  32428. name: "Dick-caged",
  32429. image: {
  32430. source: "./media/characters/kairne/dick-caged.svg"
  32431. }
  32432. },
  32433. dick: {
  32434. height: math.unit(0.79, "meters"),
  32435. name: "Dick",
  32436. image: {
  32437. source: "./media/characters/kairne/dick.svg"
  32438. }
  32439. },
  32440. genitals: {
  32441. height: math.unit(1.29, "meters"),
  32442. name: "Genitals",
  32443. image: {
  32444. source: "./media/characters/kairne/genitals.svg"
  32445. }
  32446. },
  32447. maw: {
  32448. height: math.unit(1.73, "meters"),
  32449. name: "Maw",
  32450. image: {
  32451. source: "./media/characters/kairne/maw.svg"
  32452. }
  32453. },
  32454. },
  32455. [
  32456. {
  32457. name: "Normal",
  32458. height: math.unit(15, "feet"),
  32459. default: true
  32460. },
  32461. ]
  32462. ))
  32463. characterMakers.push(() => makeCharacter(
  32464. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32465. {
  32466. front: {
  32467. height: math.unit(5 + 8/12, "feet"),
  32468. weight: math.unit(139, "lb"),
  32469. name: "Front",
  32470. image: {
  32471. source: "./media/characters/biscuit-jackal/front.svg",
  32472. extra: 2106/1961,
  32473. bottom: 58/2164
  32474. }
  32475. },
  32476. back: {
  32477. height: math.unit(5 + 8/12, "feet"),
  32478. weight: math.unit(139, "lb"),
  32479. name: "Back",
  32480. image: {
  32481. source: "./media/characters/biscuit-jackal/back.svg",
  32482. extra: 2132/1976,
  32483. bottom: 57/2189
  32484. }
  32485. },
  32486. werejackal: {
  32487. height: math.unit(6 + 3/12, "feet"),
  32488. weight: math.unit(188, "lb"),
  32489. name: "Werejackal",
  32490. image: {
  32491. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32492. extra: 2373/2178,
  32493. bottom: 53/2426
  32494. }
  32495. },
  32496. },
  32497. [
  32498. {
  32499. name: "Normal",
  32500. height: math.unit(5 + 8/12, "feet"),
  32501. default: true
  32502. },
  32503. ]
  32504. ))
  32505. characterMakers.push(() => makeCharacter(
  32506. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32507. {
  32508. front: {
  32509. height: math.unit(140, "cm"),
  32510. weight: math.unit(45, "kg"),
  32511. name: "Front",
  32512. image: {
  32513. source: "./media/characters/tayra-white/front.svg",
  32514. extra: 2229/2192,
  32515. bottom: 75/2304
  32516. }
  32517. },
  32518. },
  32519. [
  32520. {
  32521. name: "Normal",
  32522. height: math.unit(140, "cm"),
  32523. default: true
  32524. },
  32525. ]
  32526. ))
  32527. characterMakers.push(() => makeCharacter(
  32528. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32529. {
  32530. front: {
  32531. height: math.unit(4 + 5/12, "feet"),
  32532. name: "Front",
  32533. image: {
  32534. source: "./media/characters/scoop/front.svg",
  32535. extra: 1257/1136,
  32536. bottom: 69/1326
  32537. }
  32538. },
  32539. back: {
  32540. height: math.unit(4 + 5/12, "feet"),
  32541. name: "Back",
  32542. image: {
  32543. source: "./media/characters/scoop/back.svg",
  32544. extra: 1321/1152,
  32545. bottom: 32/1353
  32546. }
  32547. },
  32548. maw: {
  32549. height: math.unit(0.68, "feet"),
  32550. name: "Maw",
  32551. image: {
  32552. source: "./media/characters/scoop/maw.svg"
  32553. }
  32554. },
  32555. },
  32556. [
  32557. {
  32558. name: "Really Small",
  32559. height: math.unit(1, "mm")
  32560. },
  32561. {
  32562. name: "Micro",
  32563. height: math.unit(1, "inch")
  32564. },
  32565. {
  32566. name: "Normal",
  32567. height: math.unit(4 + 5/12, "feet"),
  32568. default: true
  32569. },
  32570. {
  32571. name: "Macro",
  32572. height: math.unit(200, "feet")
  32573. },
  32574. {
  32575. name: "Megamacro",
  32576. height: math.unit(3240, "feet")
  32577. },
  32578. {
  32579. name: "Teramacro",
  32580. height: math.unit(2500, "miles")
  32581. },
  32582. ]
  32583. ))
  32584. characterMakers.push(() => makeCharacter(
  32585. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32586. {
  32587. front: {
  32588. height: math.unit(15 + 7/12, "feet"),
  32589. name: "Front",
  32590. image: {
  32591. source: "./media/characters/saphinara/front.svg",
  32592. extra: 604/546,
  32593. bottom: 19/623
  32594. }
  32595. },
  32596. side: {
  32597. height: math.unit(15 + 7/12, "feet"),
  32598. name: "Side",
  32599. image: {
  32600. source: "./media/characters/saphinara/side.svg",
  32601. extra: 605/547,
  32602. bottom: 6/611
  32603. }
  32604. },
  32605. back: {
  32606. height: math.unit(15 + 7/12, "feet"),
  32607. name: "Back",
  32608. image: {
  32609. source: "./media/characters/saphinara/back.svg",
  32610. extra: 591/531,
  32611. bottom: 13/604
  32612. }
  32613. },
  32614. frontTail: {
  32615. height: math.unit(15 + 7/12, "feet"),
  32616. name: "Front (Full Tail)",
  32617. image: {
  32618. source: "./media/characters/saphinara/front-tail.svg",
  32619. extra: 748/547,
  32620. bottom: 66/814
  32621. }
  32622. },
  32623. },
  32624. [
  32625. {
  32626. name: "Normal",
  32627. height: math.unit(15 + 7/12, "feet"),
  32628. default: true
  32629. },
  32630. {
  32631. name: "Angry",
  32632. height: math.unit(30 + 6/12, "feet")
  32633. },
  32634. {
  32635. name: "Enraged",
  32636. height: math.unit(102 + 1/12, "feet")
  32637. },
  32638. ]
  32639. ))
  32640. characterMakers.push(() => makeCharacter(
  32641. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32642. {
  32643. front: {
  32644. height: math.unit(6 + 8/12, "feet"),
  32645. weight: math.unit(300, "lb"),
  32646. name: "Front",
  32647. image: {
  32648. source: "./media/characters/jrain/front.svg",
  32649. extra: 3039/2865,
  32650. bottom: 399/3438
  32651. }
  32652. },
  32653. back: {
  32654. height: math.unit(6 + 8/12, "feet"),
  32655. weight: math.unit(300, "lb"),
  32656. name: "Back",
  32657. image: {
  32658. source: "./media/characters/jrain/back.svg",
  32659. extra: 3089/2938,
  32660. bottom: 172/3261
  32661. }
  32662. },
  32663. head: {
  32664. height: math.unit(2.14, "feet"),
  32665. name: "Head",
  32666. image: {
  32667. source: "./media/characters/jrain/head.svg"
  32668. }
  32669. },
  32670. maw: {
  32671. height: math.unit(1.77, "feet"),
  32672. name: "Maw",
  32673. image: {
  32674. source: "./media/characters/jrain/maw.svg"
  32675. }
  32676. },
  32677. leftHand: {
  32678. height: math.unit(1.1, "feet"),
  32679. name: "Left Hand",
  32680. image: {
  32681. source: "./media/characters/jrain/left-hand.svg"
  32682. }
  32683. },
  32684. rightHand: {
  32685. height: math.unit(1.1, "feet"),
  32686. name: "Right Hand",
  32687. image: {
  32688. source: "./media/characters/jrain/right-hand.svg"
  32689. }
  32690. },
  32691. eye: {
  32692. height: math.unit(0.35, "feet"),
  32693. name: "Eye",
  32694. image: {
  32695. source: "./media/characters/jrain/eye.svg"
  32696. }
  32697. },
  32698. },
  32699. [
  32700. {
  32701. name: "Normal",
  32702. height: math.unit(6 + 8/12, "feet"),
  32703. default: true
  32704. },
  32705. {
  32706. name: "Casually Large",
  32707. height: math.unit(25, "feet")
  32708. },
  32709. {
  32710. name: "Giant",
  32711. height: math.unit(100, "feet")
  32712. },
  32713. {
  32714. name: "Kaiju",
  32715. height: math.unit(300, "feet")
  32716. },
  32717. ]
  32718. ))
  32719. characterMakers.push(() => makeCharacter(
  32720. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32721. {
  32722. dragon: {
  32723. height: math.unit(5, "meters"),
  32724. name: "Dragon",
  32725. image: {
  32726. source: "./media/characters/sabrina/dragon.svg",
  32727. extra: 3670 / 2365,
  32728. bottom: 333 / 4003
  32729. }
  32730. },
  32731. gryphon: {
  32732. height: math.unit(3, "meters"),
  32733. name: "Gryphon",
  32734. image: {
  32735. source: "./media/characters/sabrina/gryphon.svg",
  32736. extra: 1576 / 945,
  32737. bottom: 71 / 1647
  32738. }
  32739. },
  32740. snake: {
  32741. height: math.unit(12, "meters"),
  32742. name: "Snake",
  32743. image: {
  32744. source: "./media/characters/sabrina/snake.svg",
  32745. extra: 1758 / 1320,
  32746. bottom: 186 / 1944
  32747. }
  32748. },
  32749. collar: {
  32750. height: math.unit(1.86, "meters"),
  32751. name: "Collar",
  32752. image: {
  32753. source: "./media/characters/sabrina/collar.svg"
  32754. }
  32755. },
  32756. eye: {
  32757. height: math.unit(0.53, "meters"),
  32758. name: "Eye",
  32759. image: {
  32760. source: "./media/characters/sabrina/eye.svg"
  32761. }
  32762. },
  32763. foot: {
  32764. height: math.unit(1.86, "meters"),
  32765. name: "Foot",
  32766. image: {
  32767. source: "./media/characters/sabrina/foot.svg"
  32768. }
  32769. },
  32770. hand: {
  32771. height: math.unit(1.32, "meters"),
  32772. name: "Hand",
  32773. image: {
  32774. source: "./media/characters/sabrina/hand.svg"
  32775. }
  32776. },
  32777. head: {
  32778. height: math.unit(2.44, "meters"),
  32779. name: "Head",
  32780. image: {
  32781. source: "./media/characters/sabrina/head.svg"
  32782. }
  32783. },
  32784. headAngry: {
  32785. height: math.unit(2.44, "meters"),
  32786. name: "Head (Angry))",
  32787. image: {
  32788. source: "./media/characters/sabrina/head-angry.svg"
  32789. }
  32790. },
  32791. maw: {
  32792. height: math.unit(1.65, "meters"),
  32793. name: "Maw",
  32794. image: {
  32795. source: "./media/characters/sabrina/maw.svg"
  32796. }
  32797. },
  32798. spikes: {
  32799. height: math.unit(1.69, "meters"),
  32800. name: "Spikes",
  32801. image: {
  32802. source: "./media/characters/sabrina/spikes.svg"
  32803. }
  32804. },
  32805. stomach: {
  32806. height: math.unit(1.15, "meters"),
  32807. name: "Stomach",
  32808. image: {
  32809. source: "./media/characters/sabrina/stomach.svg"
  32810. }
  32811. },
  32812. tongue: {
  32813. height: math.unit(1.27, "meters"),
  32814. name: "Tongue",
  32815. image: {
  32816. source: "./media/characters/sabrina/tongue.svg"
  32817. }
  32818. },
  32819. wingDorsal: {
  32820. height: math.unit(4.85, "meters"),
  32821. name: "Wing (Dorsal)",
  32822. image: {
  32823. source: "./media/characters/sabrina/wing-dorsal.svg"
  32824. }
  32825. },
  32826. wingVentral: {
  32827. height: math.unit(4.85, "meters"),
  32828. name: "Wing (Ventral)",
  32829. image: {
  32830. source: "./media/characters/sabrina/wing-ventral.svg"
  32831. }
  32832. },
  32833. },
  32834. [
  32835. {
  32836. name: "Normal",
  32837. height: math.unit(5, "meters"),
  32838. default: true
  32839. },
  32840. ]
  32841. ))
  32842. characterMakers.push(() => makeCharacter(
  32843. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32844. {
  32845. frontMaid: {
  32846. height: math.unit(5 + 5/12, "feet"),
  32847. weight: math.unit(130, "lb"),
  32848. name: "Front (Maid)",
  32849. image: {
  32850. source: "./media/characters/midnight-tales/front-maid.svg",
  32851. extra: 489/454,
  32852. bottom: 61/550
  32853. }
  32854. },
  32855. frontFormal: {
  32856. height: math.unit(5 + 5/12, "feet"),
  32857. weight: math.unit(130, "lb"),
  32858. name: "Front (Formal)",
  32859. image: {
  32860. source: "./media/characters/midnight-tales/front-formal.svg",
  32861. extra: 489/454,
  32862. bottom: 61/550
  32863. }
  32864. },
  32865. back: {
  32866. height: math.unit(5 + 5/12, "feet"),
  32867. weight: math.unit(130, "lb"),
  32868. name: "Back",
  32869. image: {
  32870. source: "./media/characters/midnight-tales/back.svg",
  32871. extra: 498/456,
  32872. bottom: 33/531
  32873. }
  32874. },
  32875. frontBeast: {
  32876. height: math.unit(40, "feet"),
  32877. weight: math.unit(64000, "lb"),
  32878. name: "Front (Beast)",
  32879. image: {
  32880. source: "./media/characters/midnight-tales/front-beast.svg",
  32881. extra: 927/860,
  32882. bottom: 53/980
  32883. }
  32884. },
  32885. backBeast: {
  32886. height: math.unit(40, "feet"),
  32887. weight: math.unit(64000, "lb"),
  32888. name: "Back (Beast)",
  32889. image: {
  32890. source: "./media/characters/midnight-tales/back-beast.svg",
  32891. extra: 929/855,
  32892. bottom: 16/945
  32893. }
  32894. },
  32895. footBeast: {
  32896. height: math.unit(6.7, "feet"),
  32897. name: "Foot (Beast)",
  32898. image: {
  32899. source: "./media/characters/midnight-tales/foot-beast.svg"
  32900. }
  32901. },
  32902. headBeast: {
  32903. height: math.unit(8, "feet"),
  32904. name: "Head (Beast)",
  32905. image: {
  32906. source: "./media/characters/midnight-tales/head-beast.svg"
  32907. }
  32908. },
  32909. },
  32910. [
  32911. {
  32912. name: "Normal",
  32913. height: math.unit(5 + 5 / 12, "feet"),
  32914. default: true
  32915. },
  32916. {
  32917. name: "Macro",
  32918. height: math.unit(25, "feet")
  32919. },
  32920. ]
  32921. ))
  32922. characterMakers.push(() => makeCharacter(
  32923. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32924. {
  32925. front: {
  32926. height: math.unit(5 + 10/12, "feet"),
  32927. name: "Front",
  32928. image: {
  32929. source: "./media/characters/argon/front.svg",
  32930. extra: 2009/1935,
  32931. bottom: 118/2127
  32932. }
  32933. },
  32934. back: {
  32935. height: math.unit(5 + 10/12, "feet"),
  32936. name: "Back",
  32937. image: {
  32938. source: "./media/characters/argon/back.svg",
  32939. extra: 2047/1992,
  32940. bottom: 20/2067
  32941. }
  32942. },
  32943. frontDressed: {
  32944. height: math.unit(5 + 10/12, "feet"),
  32945. name: "Front (Dressed)",
  32946. image: {
  32947. source: "./media/characters/argon/front-dressed.svg",
  32948. extra: 2009/1935,
  32949. bottom: 118/2127
  32950. }
  32951. },
  32952. },
  32953. [
  32954. {
  32955. name: "Normal",
  32956. height: math.unit(5 + 10/12, "feet"),
  32957. default: true
  32958. },
  32959. ]
  32960. ))
  32961. characterMakers.push(() => makeCharacter(
  32962. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32963. {
  32964. front: {
  32965. height: math.unit(8 + 6/12, "feet"),
  32966. weight: math.unit(1150, "lb"),
  32967. name: "Front",
  32968. image: {
  32969. source: "./media/characters/kichi/front.svg",
  32970. extra: 1267/1164,
  32971. bottom: 61/1328
  32972. }
  32973. },
  32974. back: {
  32975. height: math.unit(8 + 6/12, "feet"),
  32976. weight: math.unit(1150, "lb"),
  32977. name: "Back",
  32978. image: {
  32979. source: "./media/characters/kichi/back.svg",
  32980. extra: 1273/1166,
  32981. bottom: 33/1306
  32982. }
  32983. },
  32984. },
  32985. [
  32986. {
  32987. name: "Normal",
  32988. height: math.unit(8 + 6/12, "feet"),
  32989. default: true
  32990. },
  32991. ]
  32992. ))
  32993. characterMakers.push(() => makeCharacter(
  32994. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32995. {
  32996. front: {
  32997. height: math.unit(6, "feet"),
  32998. weight: math.unit(210, "lb"),
  32999. name: "Front",
  33000. image: {
  33001. source: "./media/characters/manetel-greyscale/front.svg",
  33002. extra: 350/312,
  33003. bottom: 8/358
  33004. }
  33005. },
  33006. },
  33007. [
  33008. {
  33009. name: "Micro",
  33010. height: math.unit(2, "inches")
  33011. },
  33012. {
  33013. name: "Normal",
  33014. height: math.unit(6, "feet"),
  33015. default: true
  33016. },
  33017. {
  33018. name: "Minimacro",
  33019. height: math.unit(17, "feet")
  33020. },
  33021. {
  33022. name: "Macro",
  33023. height: math.unit(117, "feet")
  33024. },
  33025. ]
  33026. ))
  33027. characterMakers.push(() => makeCharacter(
  33028. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33029. {
  33030. side: {
  33031. height: math.unit(5 + 1/12, "feet"),
  33032. weight: math.unit(418, "lb"),
  33033. name: "Side",
  33034. image: {
  33035. source: "./media/characters/softpurr/side.svg",
  33036. extra: 1993/1945,
  33037. bottom: 134/2127
  33038. }
  33039. },
  33040. front: {
  33041. height: math.unit(5 + 1/12, "feet"),
  33042. weight: math.unit(418, "lb"),
  33043. name: "Front",
  33044. image: {
  33045. source: "./media/characters/softpurr/front.svg",
  33046. extra: 1950/1856,
  33047. bottom: 174/2124
  33048. }
  33049. },
  33050. paw: {
  33051. height: math.unit(1, "feet"),
  33052. name: "Paw",
  33053. image: {
  33054. source: "./media/characters/softpurr/paw.svg"
  33055. }
  33056. },
  33057. },
  33058. [
  33059. {
  33060. name: "Normal",
  33061. height: math.unit(5 + 1/12, "feet"),
  33062. default: true
  33063. },
  33064. ]
  33065. ))
  33066. characterMakers.push(() => makeCharacter(
  33067. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33068. {
  33069. front: {
  33070. height: math.unit(260, "meters"),
  33071. name: "Front",
  33072. image: {
  33073. source: "./media/characters/anahita/front.svg",
  33074. extra: 665/635,
  33075. bottom: 89/754
  33076. }
  33077. },
  33078. },
  33079. [
  33080. {
  33081. name: "Macro",
  33082. height: math.unit(260, "meters"),
  33083. default: true
  33084. },
  33085. ]
  33086. ))
  33087. characterMakers.push(() => makeCharacter(
  33088. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33089. {
  33090. front: {
  33091. height: math.unit(4 + 10/12, "feet"),
  33092. weight: math.unit(160, "lb"),
  33093. name: "Front",
  33094. image: {
  33095. source: "./media/characters/chip-mouse/front.svg",
  33096. extra: 3528/3408,
  33097. bottom: 0/3528
  33098. }
  33099. },
  33100. frontNsfw: {
  33101. height: math.unit(4 + 10/12, "feet"),
  33102. weight: math.unit(160, "lb"),
  33103. name: "Front (NSFW)",
  33104. image: {
  33105. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33106. extra: 3528/3408,
  33107. bottom: 0/3528
  33108. }
  33109. },
  33110. },
  33111. [
  33112. {
  33113. name: "Normal",
  33114. height: math.unit(4 + 10/12, "feet"),
  33115. default: true
  33116. },
  33117. ]
  33118. ))
  33119. characterMakers.push(() => makeCharacter(
  33120. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33121. {
  33122. side: {
  33123. height: math.unit(10, "feet"),
  33124. weight: math.unit(14000, "lb"),
  33125. name: "Side",
  33126. image: {
  33127. source: "./media/characters/kremm/side.svg",
  33128. extra: 1390/1053,
  33129. bottom: 90/1480
  33130. }
  33131. },
  33132. gut: {
  33133. height: math.unit(5.8, "feet"),
  33134. name: "Gut",
  33135. image: {
  33136. source: "./media/characters/kremm/gut.svg"
  33137. }
  33138. },
  33139. ass: {
  33140. height: math.unit(6.1, "feet"),
  33141. name: "Ass",
  33142. image: {
  33143. source: "./media/characters/kremm/ass.svg"
  33144. }
  33145. },
  33146. jaws: {
  33147. height: math.unit(2.2, "feet"),
  33148. name: "Jaws",
  33149. image: {
  33150. source: "./media/characters/kremm/jaws.svg"
  33151. }
  33152. },
  33153. dick: {
  33154. height: math.unit(4.26, "feet"),
  33155. name: "Dick",
  33156. image: {
  33157. source: "./media/characters/kremm/dick.svg"
  33158. }
  33159. },
  33160. },
  33161. [
  33162. {
  33163. name: "Normal",
  33164. height: math.unit(10, "feet"),
  33165. default: true
  33166. },
  33167. ]
  33168. ))
  33169. characterMakers.push(() => makeCharacter(
  33170. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33171. {
  33172. front: {
  33173. height: math.unit(30, "stories"),
  33174. name: "Front",
  33175. image: {
  33176. source: "./media/characters/kai/front.svg",
  33177. extra: 1892/1718,
  33178. bottom: 162/2054
  33179. }
  33180. },
  33181. },
  33182. [
  33183. {
  33184. name: "Macro",
  33185. height: math.unit(30, "stories"),
  33186. default: true
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(6 + 4/12, "feet"),
  33195. weight: math.unit(145, "lb"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/sykes/front.svg",
  33199. extra: 1321 / 1187,
  33200. bottom: 66 / 1387
  33201. }
  33202. },
  33203. back: {
  33204. height: math.unit(6 + 4/12, "feet"),
  33205. weight: math.unit(145, "lb"),
  33206. name: "Back",
  33207. image: {
  33208. source: "./media/characters/sykes/back.svg",
  33209. extra: 1326/1181,
  33210. bottom: 31/1357
  33211. }
  33212. },
  33213. handBack: {
  33214. height: math.unit(0.9, "feet"),
  33215. name: "Hand (Back)",
  33216. image: {
  33217. source: "./media/characters/sykes/hand-back.svg"
  33218. }
  33219. },
  33220. handFront: {
  33221. height: math.unit(0.839, "feet"),
  33222. name: "Hand (Front)",
  33223. image: {
  33224. source: "./media/characters/sykes/hand-front.svg"
  33225. }
  33226. },
  33227. leftFoot: {
  33228. height: math.unit(1.2, "feet"),
  33229. name: "Foot (Left)",
  33230. image: {
  33231. source: "./media/characters/sykes/foot-left.svg"
  33232. }
  33233. },
  33234. rightFoot: {
  33235. height: math.unit(1.2, "feet"),
  33236. name: "Foot (Right)",
  33237. image: {
  33238. source: "./media/characters/sykes/foot-right.svg"
  33239. }
  33240. },
  33241. maw: {
  33242. height: math.unit(1.93, "feet"),
  33243. name: "Maw",
  33244. image: {
  33245. source: "./media/characters/sykes/maw.svg"
  33246. }
  33247. },
  33248. teeth: {
  33249. height: math.unit(0.51, "feet"),
  33250. name: "Teeth",
  33251. image: {
  33252. source: "./media/characters/sykes/teeth.svg"
  33253. }
  33254. },
  33255. tongue: {
  33256. height: math.unit(2.13, "feet"),
  33257. name: "Tongue",
  33258. image: {
  33259. source: "./media/characters/sykes/tongue.svg"
  33260. }
  33261. },
  33262. uvula: {
  33263. height: math.unit(0.16, "feet"),
  33264. name: "Uvula",
  33265. image: {
  33266. source: "./media/characters/sykes/uvula.svg"
  33267. }
  33268. },
  33269. collar: {
  33270. height: math.unit(0.287, "feet"),
  33271. name: "Collar",
  33272. image: {
  33273. source: "./media/characters/sykes/collar.svg"
  33274. }
  33275. },
  33276. },
  33277. [
  33278. {
  33279. name: "Shrunken",
  33280. height: math.unit(5, "inches")
  33281. },
  33282. {
  33283. name: "Normal",
  33284. height: math.unit(6 + 4 / 12, "feet"),
  33285. default: true
  33286. },
  33287. {
  33288. name: "Big",
  33289. height: math.unit(15, "feet")
  33290. },
  33291. ]
  33292. ))
  33293. characterMakers.push(() => makeCharacter(
  33294. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33295. {
  33296. front: {
  33297. height: math.unit(5 + 8/12, "feet"),
  33298. weight: math.unit(190, "lb"),
  33299. name: "Front",
  33300. image: {
  33301. source: "./media/characters/oven-otter/front.svg",
  33302. extra: 1809/1740,
  33303. bottom: 181/1990
  33304. }
  33305. },
  33306. back: {
  33307. height: math.unit(5 + 8/12, "feet"),
  33308. weight: math.unit(190, "lb"),
  33309. name: "Back",
  33310. image: {
  33311. source: "./media/characters/oven-otter/back.svg",
  33312. extra: 1709/1635,
  33313. bottom: 118/1827
  33314. }
  33315. },
  33316. hand: {
  33317. height: math.unit(1.07, "feet"),
  33318. name: "Hand",
  33319. image: {
  33320. source: "./media/characters/oven-otter/hand.svg"
  33321. }
  33322. },
  33323. beans: {
  33324. height: math.unit(1.74, "feet"),
  33325. name: "Beans",
  33326. image: {
  33327. source: "./media/characters/oven-otter/beans.svg"
  33328. }
  33329. },
  33330. },
  33331. [
  33332. {
  33333. name: "Micro",
  33334. height: math.unit(0.5, "inches")
  33335. },
  33336. {
  33337. name: "Normal",
  33338. height: math.unit(5 + 8/12, "feet"),
  33339. default: true
  33340. },
  33341. {
  33342. name: "Macro",
  33343. height: math.unit(250, "feet")
  33344. },
  33345. {
  33346. name: "Really High",
  33347. height: math.unit(420, "feet")
  33348. },
  33349. ]
  33350. ))
  33351. characterMakers.push(() => makeCharacter(
  33352. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33353. {
  33354. front: {
  33355. height: math.unit(5, "meters"),
  33356. weight: math.unit(292000000000000, "kg"),
  33357. name: "Front",
  33358. image: {
  33359. source: "./media/characters/devourer/front.svg",
  33360. extra: 1800/1733,
  33361. bottom: 211/2011
  33362. }
  33363. },
  33364. maw: {
  33365. height: math.unit(1.1, "meter"),
  33366. name: "Maw",
  33367. image: {
  33368. source: "./media/characters/devourer/maw.svg"
  33369. }
  33370. },
  33371. },
  33372. [
  33373. {
  33374. name: "Small",
  33375. height: math.unit(3, "meters")
  33376. },
  33377. {
  33378. name: "Large",
  33379. height: math.unit(5, "meters"),
  33380. default: true
  33381. },
  33382. ]
  33383. ))
  33384. characterMakers.push(() => makeCharacter(
  33385. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33386. {
  33387. front: {
  33388. height: math.unit(6, "feet"),
  33389. weight: math.unit(400, "lb"),
  33390. name: "Front",
  33391. image: {
  33392. source: "./media/characters/ellarby/front.svg",
  33393. extra: 1909/1763,
  33394. bottom: 80/1989
  33395. }
  33396. },
  33397. back: {
  33398. height: math.unit(6, "feet"),
  33399. weight: math.unit(400, "lb"),
  33400. name: "Back",
  33401. image: {
  33402. source: "./media/characters/ellarby/back.svg",
  33403. extra: 1914/1784,
  33404. bottom: 172/2086
  33405. }
  33406. },
  33407. },
  33408. [
  33409. {
  33410. name: "Mischief",
  33411. height: math.unit(18, "inches")
  33412. },
  33413. {
  33414. name: "Trouble",
  33415. height: math.unit(12, "feet")
  33416. },
  33417. {
  33418. name: "Havoc",
  33419. height: math.unit(200, "feet"),
  33420. default: true
  33421. },
  33422. {
  33423. name: "Pandemonium",
  33424. height: math.unit(1, "mile")
  33425. },
  33426. {
  33427. name: "Catastrophe",
  33428. height: math.unit(100, "miles")
  33429. },
  33430. ]
  33431. ))
  33432. characterMakers.push(() => makeCharacter(
  33433. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33434. {
  33435. front: {
  33436. height: math.unit(4.7, "meters"),
  33437. weight: math.unit(6500, "kg"),
  33438. name: "Front",
  33439. image: {
  33440. source: "./media/characters/vex/front.svg",
  33441. extra: 1288/1140,
  33442. bottom: 100/1388
  33443. }
  33444. },
  33445. },
  33446. [
  33447. {
  33448. name: "Normal",
  33449. height: math.unit(4.7, "meters"),
  33450. default: true
  33451. },
  33452. ]
  33453. ))
  33454. characterMakers.push(() => makeCharacter(
  33455. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33456. {
  33457. normal: {
  33458. height: math.unit(6, "feet"),
  33459. weight: math.unit(350, "lb"),
  33460. name: "Normal",
  33461. image: {
  33462. source: "./media/characters/teshy/normal.svg",
  33463. extra: 1795/1735,
  33464. bottom: 16/1811
  33465. }
  33466. },
  33467. monsterFront: {
  33468. height: math.unit(12, "feet"),
  33469. weight: math.unit(4700, "lb"),
  33470. name: "Monster (Front)",
  33471. image: {
  33472. source: "./media/characters/teshy/monster-front.svg",
  33473. extra: 2042/2034,
  33474. bottom: 128/2170
  33475. }
  33476. },
  33477. monsterSide: {
  33478. height: math.unit(12, "feet"),
  33479. weight: math.unit(4700, "lb"),
  33480. name: "Monster (Side)",
  33481. image: {
  33482. source: "./media/characters/teshy/monster-side.svg",
  33483. extra: 2067/2056,
  33484. bottom: 70/2137
  33485. }
  33486. },
  33487. monsterBack: {
  33488. height: math.unit(12, "feet"),
  33489. weight: math.unit(4700, "lb"),
  33490. name: "Monster (Back)",
  33491. image: {
  33492. source: "./media/characters/teshy/monster-back.svg",
  33493. extra: 1921/1914,
  33494. bottom: 171/2092
  33495. }
  33496. },
  33497. },
  33498. [
  33499. {
  33500. name: "Normal",
  33501. height: math.unit(6, "feet"),
  33502. default: true
  33503. },
  33504. ]
  33505. ))
  33506. characterMakers.push(() => makeCharacter(
  33507. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33508. {
  33509. front: {
  33510. height: math.unit(6, "feet"),
  33511. name: "Front",
  33512. image: {
  33513. source: "./media/characters/ramey/front.svg",
  33514. extra: 790/787,
  33515. bottom: 27/817
  33516. }
  33517. },
  33518. },
  33519. [
  33520. {
  33521. name: "Normal",
  33522. height: math.unit(6, "feet"),
  33523. default: true
  33524. },
  33525. ]
  33526. ))
  33527. characterMakers.push(() => makeCharacter(
  33528. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33529. {
  33530. front: {
  33531. height: math.unit(5 + 5/12, "feet"),
  33532. weight: math.unit(120, "lb"),
  33533. name: "Front",
  33534. image: {
  33535. source: "./media/characters/phirae/front.svg",
  33536. extra: 2491/2436,
  33537. bottom: 38/2529
  33538. }
  33539. },
  33540. },
  33541. [
  33542. {
  33543. name: "Normal",
  33544. height: math.unit(5 + 5/12, "feet"),
  33545. default: true
  33546. },
  33547. ]
  33548. ))
  33549. characterMakers.push(() => makeCharacter(
  33550. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33551. {
  33552. front: {
  33553. height: math.unit(6, "feet"),
  33554. weight: math.unit(150, "lb"),
  33555. name: "Front",
  33556. image: {
  33557. source: "./media/characters/stagglas/front.svg",
  33558. extra: 962/882,
  33559. bottom: 53/1015
  33560. }
  33561. },
  33562. },
  33563. [
  33564. {
  33565. name: "Normal",
  33566. height: math.unit(5 + 3/12, "feet"),
  33567. default: true
  33568. },
  33569. ]
  33570. ))
  33571. characterMakers.push(() => makeCharacter(
  33572. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33573. {
  33574. front: {
  33575. height: math.unit(5 + 4/12, "feet"),
  33576. weight: math.unit(145, "lb"),
  33577. name: "Front",
  33578. image: {
  33579. source: "./media/characters/starra/front.svg",
  33580. extra: 1790/1691,
  33581. bottom: 91/1881
  33582. }
  33583. },
  33584. },
  33585. [
  33586. {
  33587. name: "Normal",
  33588. height: math.unit(5 + 4/12, "feet"),
  33589. default: true
  33590. },
  33591. ]
  33592. ))
  33593. characterMakers.push(() => makeCharacter(
  33594. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33595. {
  33596. front: {
  33597. height: math.unit(2.2, "meters"),
  33598. name: "Front",
  33599. image: {
  33600. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33601. extra: 1194/1005,
  33602. bottom: 25/1219
  33603. }
  33604. },
  33605. },
  33606. [
  33607. {
  33608. name: "Normal",
  33609. height: math.unit(2.2, "meters"),
  33610. default: true
  33611. },
  33612. ]
  33613. ))
  33614. characterMakers.push(() => makeCharacter(
  33615. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33616. {
  33617. side: {
  33618. height: math.unit(8 + 2/12, "feet"),
  33619. weight: math.unit(1240, "lb"),
  33620. name: "Side",
  33621. image: {
  33622. source: "./media/characters/mika-valentine/side.svg",
  33623. extra: 2670/2501,
  33624. bottom: 250/2920
  33625. }
  33626. },
  33627. },
  33628. [
  33629. {
  33630. name: "Normal",
  33631. height: math.unit(8 + 2/12, "feet"),
  33632. default: true
  33633. },
  33634. ]
  33635. ))
  33636. characterMakers.push(() => makeCharacter(
  33637. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33638. {
  33639. front: {
  33640. height: math.unit(7 + 2/12, "feet"),
  33641. name: "Front",
  33642. image: {
  33643. source: "./media/characters/xoltol/front.svg",
  33644. extra: 2212/2124,
  33645. bottom: 84/2296
  33646. }
  33647. },
  33648. side: {
  33649. height: math.unit(7 + 2/12, "feet"),
  33650. name: "Side",
  33651. image: {
  33652. source: "./media/characters/xoltol/side.svg",
  33653. extra: 2273/2197,
  33654. bottom: 26/2299
  33655. }
  33656. },
  33657. hand: {
  33658. height: math.unit(2.5, "feet"),
  33659. name: "Hand",
  33660. image: {
  33661. source: "./media/characters/xoltol/hand.svg"
  33662. }
  33663. },
  33664. },
  33665. [
  33666. {
  33667. name: "Small-ish",
  33668. height: math.unit(5 + 11/12, "feet")
  33669. },
  33670. {
  33671. name: "Normal",
  33672. height: math.unit(7 + 2/12, "feet")
  33673. },
  33674. {
  33675. name: "\"Macro\"",
  33676. height: math.unit(14 + 9/12, "feet"),
  33677. default: true
  33678. },
  33679. {
  33680. name: "Alternate Height",
  33681. height: math.unit(20, "feet")
  33682. },
  33683. {
  33684. name: "Actually Macro",
  33685. height: math.unit(100, "feet")
  33686. },
  33687. ]
  33688. ))
  33689. characterMakers.push(() => makeCharacter(
  33690. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33691. {
  33692. front: {
  33693. height: math.unit(5 + 2/12, "feet"),
  33694. name: "Front",
  33695. image: {
  33696. source: "./media/characters/kotetsu-redwood/front.svg",
  33697. extra: 1053/942,
  33698. bottom: 60/1113
  33699. }
  33700. },
  33701. },
  33702. [
  33703. {
  33704. name: "Normal",
  33705. height: math.unit(5 + 2/12, "feet"),
  33706. default: true
  33707. },
  33708. ]
  33709. ))
  33710. characterMakers.push(() => makeCharacter(
  33711. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33712. {
  33713. front: {
  33714. height: math.unit(2.4, "meters"),
  33715. weight: math.unit(125, "kg"),
  33716. name: "Front",
  33717. image: {
  33718. source: "./media/characters/lilith/front.svg",
  33719. extra: 1590/1513,
  33720. bottom: 203/1793
  33721. }
  33722. },
  33723. },
  33724. [
  33725. {
  33726. name: "Humanoid",
  33727. height: math.unit(2.4, "meters")
  33728. },
  33729. {
  33730. name: "Normal",
  33731. height: math.unit(6, "meters"),
  33732. default: true
  33733. },
  33734. {
  33735. name: "Largest",
  33736. height: math.unit(55, "meters")
  33737. },
  33738. ]
  33739. ))
  33740. characterMakers.push(() => makeCharacter(
  33741. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33742. {
  33743. front: {
  33744. height: math.unit(8 + 4/12, "feet"),
  33745. weight: math.unit(535, "lb"),
  33746. name: "Front",
  33747. image: {
  33748. source: "./media/characters/beh'kah-bolger/front.svg",
  33749. extra: 1660/1603,
  33750. bottom: 37/1697
  33751. }
  33752. },
  33753. },
  33754. [
  33755. {
  33756. name: "Normal",
  33757. height: math.unit(8 + 4/12, "feet"),
  33758. default: true
  33759. },
  33760. {
  33761. name: "Kaiju",
  33762. height: math.unit(250, "feet")
  33763. },
  33764. {
  33765. name: "Still Growing",
  33766. height: math.unit(10, "miles")
  33767. },
  33768. {
  33769. name: "Continental",
  33770. height: math.unit(5000, "miles")
  33771. },
  33772. {
  33773. name: "Final Form",
  33774. height: math.unit(2500000, "miles")
  33775. },
  33776. ]
  33777. ))
  33778. characterMakers.push(() => makeCharacter(
  33779. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33780. {
  33781. front: {
  33782. height: math.unit(7 + 2/12, "feet"),
  33783. weight: math.unit(230, "kg"),
  33784. name: "Front",
  33785. image: {
  33786. source: "./media/characters/tatyana-milewska/front.svg",
  33787. extra: 1199/1150,
  33788. bottom: 86/1285
  33789. }
  33790. },
  33791. },
  33792. [
  33793. {
  33794. name: "Normal",
  33795. height: math.unit(7 + 2/12, "feet"),
  33796. default: true
  33797. },
  33798. {
  33799. name: "Big",
  33800. height: math.unit(12, "feet")
  33801. },
  33802. {
  33803. name: "Minimacro",
  33804. height: math.unit(20, "feet")
  33805. },
  33806. {
  33807. name: "Macro",
  33808. height: math.unit(120, "feet")
  33809. },
  33810. ]
  33811. ))
  33812. characterMakers.push(() => makeCharacter(
  33813. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33814. {
  33815. front: {
  33816. height: math.unit(7 + 8/12, "feet"),
  33817. weight: math.unit(152, "kg"),
  33818. name: "Front",
  33819. image: {
  33820. source: "./media/characters/helen-arri/front.svg",
  33821. extra: 440/423,
  33822. bottom: 14/454
  33823. }
  33824. },
  33825. back: {
  33826. height: math.unit(7 + 8/12, "feet"),
  33827. weight: math.unit(152, "kg"),
  33828. name: "Back",
  33829. image: {
  33830. source: "./media/characters/helen-arri/back.svg",
  33831. extra: 443/426,
  33832. bottom: 8/451
  33833. }
  33834. },
  33835. },
  33836. [
  33837. {
  33838. name: "Normal",
  33839. height: math.unit(7 + 8/12, "feet"),
  33840. default: true
  33841. },
  33842. {
  33843. name: "Big",
  33844. height: math.unit(14, "feet")
  33845. },
  33846. {
  33847. name: "Minimacro",
  33848. height: math.unit(24, "feet")
  33849. },
  33850. {
  33851. name: "Macro",
  33852. height: math.unit(140, "feet")
  33853. },
  33854. ]
  33855. ))
  33856. characterMakers.push(() => makeCharacter(
  33857. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33858. {
  33859. front: {
  33860. height: math.unit(6, "meters"),
  33861. name: "Front",
  33862. image: {
  33863. source: "./media/characters/ehanu-rehu/front.svg",
  33864. extra: 1800/1800,
  33865. bottom: 59/1859
  33866. }
  33867. },
  33868. },
  33869. [
  33870. {
  33871. name: "Normal",
  33872. height: math.unit(6, "meters"),
  33873. default: true
  33874. },
  33875. ]
  33876. ))
  33877. characterMakers.push(() => makeCharacter(
  33878. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33879. {
  33880. front: {
  33881. height: math.unit(7 + 3/12, "feet"),
  33882. name: "Front",
  33883. image: {
  33884. source: "./media/characters/renholder/front.svg",
  33885. extra: 3096/2960,
  33886. bottom: 250/3346
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Normal Bat",
  33893. height: math.unit(7 + 3/12, "feet"),
  33894. default: true
  33895. },
  33896. {
  33897. name: "Slightly Tall Bat",
  33898. height: math.unit(100, "feet")
  33899. },
  33900. {
  33901. name: "Big Bat",
  33902. height: math.unit(1000, "feet")
  33903. },
  33904. {
  33905. name: "City-Sized Bat",
  33906. height: math.unit(200000, "feet")
  33907. },
  33908. {
  33909. name: "Bigger Bat",
  33910. height: math.unit(10000, "miles")
  33911. },
  33912. {
  33913. name: "Solar Sized Bat",
  33914. height: math.unit(100, "AU")
  33915. },
  33916. {
  33917. name: "Galactic Bat",
  33918. height: math.unit(200000, "lightyears")
  33919. },
  33920. {
  33921. name: "Universally Known Bat",
  33922. height: math.unit(1, "universe")
  33923. },
  33924. ]
  33925. ))
  33926. characterMakers.push(() => makeCharacter(
  33927. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33928. {
  33929. front: {
  33930. height: math.unit(6 + 11/12, "feet"),
  33931. weight: math.unit(250, "lb"),
  33932. name: "Front",
  33933. image: {
  33934. source: "./media/characters/cookiecat/front.svg",
  33935. extra: 893/827,
  33936. bottom: 14/907
  33937. }
  33938. },
  33939. },
  33940. [
  33941. {
  33942. name: "Micro",
  33943. height: math.unit(3, "inches")
  33944. },
  33945. {
  33946. name: "Normal",
  33947. height: math.unit(6 + 11/12, "feet"),
  33948. default: true
  33949. },
  33950. {
  33951. name: "Macro",
  33952. height: math.unit(100, "feet")
  33953. },
  33954. {
  33955. name: "Macro+",
  33956. height: math.unit(404, "feet")
  33957. },
  33958. {
  33959. name: "Megamacro",
  33960. height: math.unit(165, "miles")
  33961. },
  33962. {
  33963. name: "Planetary",
  33964. height: math.unit(4600, "miles")
  33965. },
  33966. ]
  33967. ))
  33968. characterMakers.push(() => makeCharacter(
  33969. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33970. {
  33971. front: {
  33972. height: math.unit(10 + 3/12, "feet"),
  33973. weight: math.unit(1500, "lb"),
  33974. name: "Front",
  33975. image: {
  33976. source: "./media/characters/tux-kusanagi/front.svg",
  33977. extra: 944/840,
  33978. bottom: 39/983
  33979. }
  33980. },
  33981. back: {
  33982. height: math.unit(10 + 3/12, "feet"),
  33983. weight: math.unit(1500, "lb"),
  33984. name: "Back",
  33985. image: {
  33986. source: "./media/characters/tux-kusanagi/back.svg",
  33987. extra: 941/842,
  33988. bottom: 28/969
  33989. }
  33990. },
  33991. rump: {
  33992. height: math.unit(5.25, "feet"),
  33993. name: "Rump",
  33994. image: {
  33995. source: "./media/characters/tux-kusanagi/rump.svg"
  33996. }
  33997. },
  33998. beak: {
  33999. height: math.unit(1.54, "feet"),
  34000. name: "Beak",
  34001. image: {
  34002. source: "./media/characters/tux-kusanagi/beak.svg"
  34003. }
  34004. },
  34005. },
  34006. [
  34007. {
  34008. name: "Normal",
  34009. height: math.unit(10 + 3/12, "feet"),
  34010. default: true
  34011. },
  34012. ]
  34013. ))
  34014. characterMakers.push(() => makeCharacter(
  34015. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34016. {
  34017. front: {
  34018. height: math.unit(58, "feet"),
  34019. weight: math.unit(200, "tons"),
  34020. name: "Front",
  34021. image: {
  34022. source: "./media/characters/uzarmazari/front.svg",
  34023. extra: 1575/1455,
  34024. bottom: 152/1727
  34025. }
  34026. },
  34027. back: {
  34028. height: math.unit(58, "feet"),
  34029. weight: math.unit(200, "tons"),
  34030. name: "Back",
  34031. image: {
  34032. source: "./media/characters/uzarmazari/back.svg",
  34033. extra: 1585/1510,
  34034. bottom: 157/1742
  34035. }
  34036. },
  34037. head: {
  34038. height: math.unit(26, "feet"),
  34039. name: "Head",
  34040. image: {
  34041. source: "./media/characters/uzarmazari/head.svg"
  34042. }
  34043. },
  34044. },
  34045. [
  34046. {
  34047. name: "Normal",
  34048. height: math.unit(58, "feet"),
  34049. default: true
  34050. },
  34051. ]
  34052. ))
  34053. characterMakers.push(() => makeCharacter(
  34054. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34055. {
  34056. side: {
  34057. height: math.unit(15, "feet"),
  34058. name: "Side",
  34059. image: {
  34060. source: "./media/characters/akitu/side.svg",
  34061. extra: 1421/1321,
  34062. bottom: 157/1578
  34063. }
  34064. },
  34065. front: {
  34066. height: math.unit(15, "feet"),
  34067. name: "Front",
  34068. image: {
  34069. source: "./media/characters/akitu/front.svg",
  34070. extra: 1435/1326,
  34071. bottom: 232/1667
  34072. }
  34073. },
  34074. },
  34075. [
  34076. {
  34077. name: "Normal",
  34078. height: math.unit(15, "feet"),
  34079. default: true
  34080. },
  34081. ]
  34082. ))
  34083. characterMakers.push(() => makeCharacter(
  34084. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34085. {
  34086. front: {
  34087. height: math.unit(10 + 8/12, "feet"),
  34088. name: "Front",
  34089. image: {
  34090. source: "./media/characters/azalie-croixland/front.svg",
  34091. extra: 1972/1856,
  34092. bottom: 31/2003
  34093. }
  34094. },
  34095. },
  34096. [
  34097. {
  34098. name: "Original Height",
  34099. height: math.unit(5 + 4/12, "feet")
  34100. },
  34101. {
  34102. name: "Normal Height",
  34103. height: math.unit(10 + 8/12, "feet"),
  34104. default: true
  34105. },
  34106. ]
  34107. ))
  34108. characterMakers.push(() => makeCharacter(
  34109. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34110. {
  34111. side: {
  34112. height: math.unit(7 + 1/12, "feet"),
  34113. weight: math.unit(245, "lb"),
  34114. name: "Side",
  34115. image: {
  34116. source: "./media/characters/kavus-kazian/side.svg",
  34117. extra: 349/342,
  34118. bottom: 15/364
  34119. }
  34120. },
  34121. },
  34122. [
  34123. {
  34124. name: "Normal",
  34125. height: math.unit(7 + 1/12, "feet"),
  34126. default: true
  34127. },
  34128. ]
  34129. ))
  34130. characterMakers.push(() => makeCharacter(
  34131. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34132. {
  34133. normal: {
  34134. height: math.unit(5 + 11/12, "feet"),
  34135. name: "Normal",
  34136. image: {
  34137. source: "./media/characters/moonlight-rose/normal.svg",
  34138. extra: 1979/1835,
  34139. bottom: 14/1993
  34140. }
  34141. },
  34142. demon: {
  34143. height: math.unit(5, "km"),
  34144. name: "Demon",
  34145. image: {
  34146. source: "./media/characters/moonlight-rose/demon.svg",
  34147. extra: 986/916,
  34148. bottom: 28/1014
  34149. }
  34150. },
  34151. },
  34152. [
  34153. {
  34154. name: "\"Natural\" height",
  34155. height: math.unit(5 + 11/12, "feet")
  34156. },
  34157. {
  34158. name: "Comfortable Size",
  34159. height: math.unit(40, "meters")
  34160. },
  34161. {
  34162. name: "Common Size",
  34163. height: math.unit(50, "km"),
  34164. default: true
  34165. },
  34166. {
  34167. name: "Demonic",
  34168. height: math.unit(1.24415e+21, "meters")
  34169. },
  34170. ]
  34171. ))
  34172. characterMakers.push(() => makeCharacter(
  34173. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34174. {
  34175. front: {
  34176. height: math.unit(16, "feet"),
  34177. weight: math.unit(610, "kg"),
  34178. name: "Front",
  34179. image: {
  34180. source: "./media/characters/huckle/front.svg",
  34181. extra: 1731/1625,
  34182. bottom: 33/1764
  34183. }
  34184. },
  34185. back: {
  34186. height: math.unit(16, "feet"),
  34187. weight: math.unit(610, "kg"),
  34188. name: "Back",
  34189. image: {
  34190. source: "./media/characters/huckle/back.svg",
  34191. extra: 1738/1651,
  34192. bottom: 37/1775
  34193. }
  34194. },
  34195. laughing: {
  34196. height: math.unit(3.75, "feet"),
  34197. name: "Laughing",
  34198. image: {
  34199. source: "./media/characters/huckle/laughing.svg"
  34200. }
  34201. },
  34202. angry: {
  34203. height: math.unit(4.15, "feet"),
  34204. name: "Angry",
  34205. image: {
  34206. source: "./media/characters/huckle/angry.svg"
  34207. }
  34208. },
  34209. },
  34210. [
  34211. {
  34212. name: "Normal",
  34213. height: math.unit(16, "feet"),
  34214. default: true
  34215. },
  34216. {
  34217. name: "Mini Macro",
  34218. height: math.unit(463, "feet")
  34219. },
  34220. {
  34221. name: "Macro",
  34222. height: math.unit(1680, "meters")
  34223. },
  34224. {
  34225. name: "Mega Macro",
  34226. height: math.unit(175, "km")
  34227. },
  34228. {
  34229. name: "Terra Macro",
  34230. height: math.unit(32, "gigameters")
  34231. },
  34232. {
  34233. name: "Multiverse+",
  34234. height: math.unit(2.56e23, "yottameters")
  34235. },
  34236. ]
  34237. ))
  34238. characterMakers.push(() => makeCharacter(
  34239. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34240. {
  34241. front: {
  34242. height: math.unit(6 + 9/12, "feet"),
  34243. weight: math.unit(280, "lb"),
  34244. name: "Front",
  34245. image: {
  34246. source: "./media/characters/candy/front.svg",
  34247. extra: 234/217,
  34248. bottom: 11/245
  34249. }
  34250. },
  34251. },
  34252. [
  34253. {
  34254. name: "Really Small",
  34255. height: math.unit(0.1, "nm")
  34256. },
  34257. {
  34258. name: "Micro",
  34259. height: math.unit(2, "inches")
  34260. },
  34261. {
  34262. name: "Normal",
  34263. height: math.unit(6 + 9/12, "feet"),
  34264. default: true
  34265. },
  34266. {
  34267. name: "Small Macro",
  34268. height: math.unit(69, "feet")
  34269. },
  34270. {
  34271. name: "Macro",
  34272. height: math.unit(160, "feet")
  34273. },
  34274. {
  34275. name: "Megamacro",
  34276. height: math.unit(22000, "miles")
  34277. },
  34278. {
  34279. name: "Gigamacro",
  34280. height: math.unit(50000, "miles")
  34281. },
  34282. ]
  34283. ))
  34284. characterMakers.push(() => makeCharacter(
  34285. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34286. {
  34287. front: {
  34288. height: math.unit(4, "feet"),
  34289. weight: math.unit(90, "lb"),
  34290. name: "Front",
  34291. image: {
  34292. source: "./media/characters/joey-mcdonald/front.svg",
  34293. extra: 1059/852,
  34294. bottom: 33/1092
  34295. }
  34296. },
  34297. back: {
  34298. height: math.unit(4, "feet"),
  34299. weight: math.unit(90, "lb"),
  34300. name: "Back",
  34301. image: {
  34302. source: "./media/characters/joey-mcdonald/back.svg",
  34303. extra: 1077/879,
  34304. bottom: 5/1082
  34305. }
  34306. },
  34307. },
  34308. [
  34309. {
  34310. name: "Normal",
  34311. height: math.unit(4, "feet"),
  34312. default: true
  34313. },
  34314. ]
  34315. ))
  34316. characterMakers.push(() => makeCharacter(
  34317. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34318. {
  34319. front: {
  34320. height: math.unit(12 + 6/12, "feet"),
  34321. name: "Front",
  34322. image: {
  34323. source: "./media/characters/kass-lockheed/front.svg",
  34324. extra: 354/343,
  34325. bottom: 9/363
  34326. }
  34327. },
  34328. back: {
  34329. height: math.unit(12 + 6/12, "feet"),
  34330. name: "Back",
  34331. image: {
  34332. source: "./media/characters/kass-lockheed/back.svg",
  34333. extra: 364/352,
  34334. bottom: 3/367
  34335. }
  34336. },
  34337. dick: {
  34338. height: math.unit(3.12, "feet"),
  34339. name: "Dick",
  34340. image: {
  34341. source: "./media/characters/kass-lockheed/dick.svg"
  34342. }
  34343. },
  34344. head: {
  34345. height: math.unit(2.6, "feet"),
  34346. name: "Head",
  34347. image: {
  34348. source: "./media/characters/kass-lockheed/head.svg"
  34349. }
  34350. },
  34351. bleh: {
  34352. height: math.unit(2.85, "feet"),
  34353. name: "Bleh",
  34354. image: {
  34355. source: "./media/characters/kass-lockheed/bleh.svg"
  34356. }
  34357. },
  34358. smug: {
  34359. height: math.unit(2.85, "feet"),
  34360. name: "Smug",
  34361. image: {
  34362. source: "./media/characters/kass-lockheed/smug.svg"
  34363. }
  34364. },
  34365. },
  34366. [
  34367. {
  34368. name: "Normal",
  34369. height: math.unit(12 + 6/12, "feet"),
  34370. default: true
  34371. },
  34372. ]
  34373. ))
  34374. characterMakers.push(() => makeCharacter(
  34375. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34376. {
  34377. front: {
  34378. height: math.unit(6 + 2/12, "feet"),
  34379. name: "Front",
  34380. image: {
  34381. source: "./media/characters/taylor/front.svg",
  34382. extra: 639/495,
  34383. bottom: 12/651
  34384. }
  34385. },
  34386. },
  34387. [
  34388. {
  34389. name: "Normal",
  34390. height: math.unit(6 + 2/12, "feet"),
  34391. default: true
  34392. },
  34393. {
  34394. name: "Big",
  34395. height: math.unit(15, "feet")
  34396. },
  34397. {
  34398. name: "Lorg",
  34399. height: math.unit(80, "feet")
  34400. },
  34401. {
  34402. name: "Too Lorg",
  34403. height: math.unit(120, "feet")
  34404. },
  34405. ]
  34406. ))
  34407. characterMakers.push(() => makeCharacter(
  34408. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34409. {
  34410. front: {
  34411. height: math.unit(15, "feet"),
  34412. name: "Front",
  34413. image: {
  34414. source: "./media/characters/kaizer/front.svg",
  34415. extra: 1612/1436,
  34416. bottom: 43/1655
  34417. }
  34418. },
  34419. },
  34420. [
  34421. {
  34422. name: "Normal",
  34423. height: math.unit(15, "feet"),
  34424. default: true
  34425. },
  34426. ]
  34427. ))
  34428. characterMakers.push(() => makeCharacter(
  34429. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34430. {
  34431. front: {
  34432. height: math.unit(2, "feet"),
  34433. weight: math.unit(30, "lb"),
  34434. name: "Front",
  34435. image: {
  34436. source: "./media/characters/sandy/front.svg",
  34437. extra: 1439/1307,
  34438. bottom: 194/1633
  34439. }
  34440. },
  34441. },
  34442. [
  34443. {
  34444. name: "Normal",
  34445. height: math.unit(2, "feet"),
  34446. default: true
  34447. },
  34448. ]
  34449. ))
  34450. characterMakers.push(() => makeCharacter(
  34451. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34452. {
  34453. front: {
  34454. height: math.unit(3, "feet"),
  34455. name: "Front",
  34456. image: {
  34457. source: "./media/characters/mellvi/front.svg",
  34458. extra: 1831/1630,
  34459. bottom: 58/1889
  34460. }
  34461. },
  34462. },
  34463. [
  34464. {
  34465. name: "Normal",
  34466. height: math.unit(3, "feet"),
  34467. default: true
  34468. },
  34469. ]
  34470. ))
  34471. characterMakers.push(() => makeCharacter(
  34472. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34473. {
  34474. front: {
  34475. height: math.unit(5 + 11/12, "feet"),
  34476. weight: math.unit(200, "lb"),
  34477. name: "Front",
  34478. image: {
  34479. source: "./media/characters/shirou/front.svg",
  34480. extra: 2491/2383,
  34481. bottom: 189/2680
  34482. }
  34483. },
  34484. back: {
  34485. height: math.unit(5 + 11/12, "feet"),
  34486. weight: math.unit(200, "lb"),
  34487. name: "Back",
  34488. image: {
  34489. source: "./media/characters/shirou/back.svg",
  34490. extra: 2554/2450,
  34491. bottom: 76/2630
  34492. }
  34493. },
  34494. },
  34495. [
  34496. {
  34497. name: "Normal",
  34498. height: math.unit(5 + 11/12, "feet"),
  34499. default: true
  34500. },
  34501. ]
  34502. ))
  34503. characterMakers.push(() => makeCharacter(
  34504. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34505. {
  34506. front: {
  34507. height: math.unit(6 + 3/12, "feet"),
  34508. weight: math.unit(177, "lb"),
  34509. name: "Front",
  34510. image: {
  34511. source: "./media/characters/noryu/front.svg",
  34512. extra: 973/885,
  34513. bottom: 10/983
  34514. }
  34515. },
  34516. },
  34517. [
  34518. {
  34519. name: "Normal",
  34520. height: math.unit(6 + 3/12, "feet"),
  34521. default: true
  34522. },
  34523. ]
  34524. ))
  34525. characterMakers.push(() => makeCharacter(
  34526. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34527. {
  34528. front: {
  34529. height: math.unit(5 + 6/12, "feet"),
  34530. weight: math.unit(170, "lb"),
  34531. name: "Front",
  34532. image: {
  34533. source: "./media/characters/mevolas-rubenido/front.svg",
  34534. extra: 2109/1901,
  34535. bottom: 96/2205
  34536. }
  34537. },
  34538. },
  34539. [
  34540. {
  34541. name: "Normal",
  34542. height: math.unit(5 + 6/12, "feet"),
  34543. default: true
  34544. },
  34545. ]
  34546. ))
  34547. characterMakers.push(() => makeCharacter(
  34548. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34549. {
  34550. front: {
  34551. height: math.unit(100, "feet"),
  34552. name: "Front",
  34553. image: {
  34554. source: "./media/characters/dee/front.svg",
  34555. extra: 2153/2036,
  34556. bottom: 59/2212
  34557. }
  34558. },
  34559. back: {
  34560. height: math.unit(100, "feet"),
  34561. name: "Back",
  34562. image: {
  34563. source: "./media/characters/dee/back.svg",
  34564. extra: 2183/2058,
  34565. bottom: 75/2258
  34566. }
  34567. },
  34568. foot: {
  34569. height: math.unit(19.43, "feet"),
  34570. name: "Foot",
  34571. image: {
  34572. source: "./media/characters/dee/foot.svg"
  34573. }
  34574. },
  34575. hoof: {
  34576. height: math.unit(20.6, "feet"),
  34577. name: "Hoof",
  34578. image: {
  34579. source: "./media/characters/dee/hoof.svg"
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Macro",
  34586. height: math.unit(100, "feet"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34593. {
  34594. front: {
  34595. height: math.unit(5 + 6/12, "feet"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/teh/front.svg",
  34599. extra: 1002/847,
  34600. bottom: 62/1064
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Normal",
  34607. height: math.unit(5 + 6/12, "feet"),
  34608. default: true
  34609. },
  34610. ]
  34611. ))
  34612. characterMakers.push(() => makeCharacter(
  34613. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34614. {
  34615. side: {
  34616. height: math.unit(6 + 1/12, "feet"),
  34617. weight: math.unit(204, "lb"),
  34618. name: "Side",
  34619. image: {
  34620. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34621. extra: 974/775,
  34622. bottom: 169/1143
  34623. }
  34624. },
  34625. sitting: {
  34626. height: math.unit(6 + 2/12, "feet"),
  34627. weight: math.unit(204, "lb"),
  34628. name: "Sitting",
  34629. image: {
  34630. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34631. extra: 1175/964,
  34632. bottom: 378/1553
  34633. }
  34634. },
  34635. },
  34636. [
  34637. {
  34638. name: "Normal",
  34639. height: math.unit(6 + 1/12, "feet"),
  34640. default: true
  34641. },
  34642. ]
  34643. ))
  34644. characterMakers.push(() => makeCharacter(
  34645. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34646. {
  34647. front: {
  34648. height: math.unit(6, "inches"),
  34649. name: "Front",
  34650. image: {
  34651. source: "./media/characters/tululi/front.svg",
  34652. extra: 1997/1876,
  34653. bottom: 20/2017
  34654. }
  34655. },
  34656. },
  34657. [
  34658. {
  34659. name: "Normal",
  34660. height: math.unit(6, "inches"),
  34661. default: true
  34662. },
  34663. ]
  34664. ))
  34665. characterMakers.push(() => makeCharacter(
  34666. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34667. {
  34668. front: {
  34669. height: math.unit(4 + 1/12, "feet"),
  34670. name: "Front",
  34671. image: {
  34672. source: "./media/characters/star/front.svg",
  34673. extra: 1493/1189,
  34674. bottom: 48/1541
  34675. }
  34676. },
  34677. },
  34678. [
  34679. {
  34680. name: "Normal",
  34681. height: math.unit(4 + 1/12, "feet"),
  34682. default: true
  34683. },
  34684. ]
  34685. ))
  34686. characterMakers.push(() => makeCharacter(
  34687. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34688. {
  34689. front: {
  34690. height: math.unit(6 + 3/12, "feet"),
  34691. name: "Front",
  34692. image: {
  34693. source: "./media/characters/comet/front.svg",
  34694. extra: 1681/1462,
  34695. bottom: 26/1707
  34696. }
  34697. },
  34698. },
  34699. [
  34700. {
  34701. name: "Normal",
  34702. height: math.unit(6 + 3/12, "feet"),
  34703. default: true
  34704. },
  34705. ]
  34706. ))
  34707. characterMakers.push(() => makeCharacter(
  34708. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34709. {
  34710. front: {
  34711. height: math.unit(950, "feet"),
  34712. name: "Front",
  34713. image: {
  34714. source: "./media/characters/vortex/front.svg",
  34715. extra: 1497/1434,
  34716. bottom: 56/1553
  34717. }
  34718. },
  34719. maw: {
  34720. height: math.unit(285, "feet"),
  34721. name: "Maw",
  34722. image: {
  34723. source: "./media/characters/vortex/maw.svg"
  34724. }
  34725. },
  34726. },
  34727. [
  34728. {
  34729. name: "Macro",
  34730. height: math.unit(950, "feet"),
  34731. default: true
  34732. },
  34733. ]
  34734. ))
  34735. characterMakers.push(() => makeCharacter(
  34736. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34737. {
  34738. front: {
  34739. height: math.unit(600, "feet"),
  34740. weight: math.unit(0.02, "grams"),
  34741. name: "Front",
  34742. image: {
  34743. source: "./media/characters/doodle/front.svg",
  34744. extra: 1578/1413,
  34745. bottom: 37/1615
  34746. }
  34747. },
  34748. },
  34749. [
  34750. {
  34751. name: "Macro",
  34752. height: math.unit(600, "feet"),
  34753. default: true
  34754. },
  34755. ]
  34756. ))
  34757. characterMakers.push(() => makeCharacter(
  34758. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34759. {
  34760. front: {
  34761. height: math.unit(6 + 6/12, "feet"),
  34762. name: "Front",
  34763. image: {
  34764. source: "./media/characters/jai/front.svg",
  34765. extra: 1645/1534,
  34766. bottom: 115/1760
  34767. }
  34768. },
  34769. },
  34770. [
  34771. {
  34772. name: "Normal",
  34773. height: math.unit(6 + 6/12, "feet"),
  34774. default: true
  34775. },
  34776. ]
  34777. ))
  34778. characterMakers.push(() => makeCharacter(
  34779. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34780. {
  34781. front: {
  34782. height: math.unit(6 + 8/12, "feet"),
  34783. name: "Front",
  34784. image: {
  34785. source: "./media/characters/pixel/front.svg",
  34786. extra: 1900/1735,
  34787. bottom: 63/1963
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "Normal",
  34794. height: math.unit(6 + 8/12, "feet"),
  34795. default: true
  34796. },
  34797. ]
  34798. ))
  34799. characterMakers.push(() => makeCharacter(
  34800. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34801. {
  34802. front: {
  34803. height: math.unit(4 + 11/12, "feet"),
  34804. weight: math.unit(111, "lb"),
  34805. name: "Front",
  34806. image: {
  34807. source: "./media/characters/rhett/front.svg",
  34808. extra: 1682/1586,
  34809. bottom: 92/1774
  34810. }
  34811. },
  34812. },
  34813. [
  34814. {
  34815. name: "Mini",
  34816. height: math.unit(1 + 1/12, "feet")
  34817. },
  34818. {
  34819. name: "Normal",
  34820. height: math.unit(4 + 11/12, "feet"),
  34821. default: true
  34822. },
  34823. ]
  34824. ))
  34825. characterMakers.push(() => makeCharacter(
  34826. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34827. {
  34828. front: {
  34829. height: math.unit(3 + 3/12, "feet"),
  34830. name: "Front",
  34831. image: {
  34832. source: "./media/characters/penny/front.svg",
  34833. extra: 1406/1311,
  34834. bottom: 26/1432
  34835. }
  34836. },
  34837. },
  34838. [
  34839. {
  34840. name: "Normal",
  34841. height: math.unit(3 + 3/12, "feet"),
  34842. default: true
  34843. },
  34844. ]
  34845. ))
  34846. characterMakers.push(() => makeCharacter(
  34847. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34848. {
  34849. front: {
  34850. height: math.unit(4 + 11/12, "feet"),
  34851. name: "Front",
  34852. image: {
  34853. source: "./media/characters/monty/front.svg",
  34854. extra: 1479/1209,
  34855. bottom: 0/1479
  34856. }
  34857. },
  34858. },
  34859. [
  34860. {
  34861. name: "Normal",
  34862. height: math.unit(4 + 11/12, "feet"),
  34863. default: true
  34864. },
  34865. ]
  34866. ))
  34867. characterMakers.push(() => makeCharacter(
  34868. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34869. {
  34870. front: {
  34871. height: math.unit(8 + 4/12, "feet"),
  34872. name: "Front",
  34873. image: {
  34874. source: "./media/characters/sterling/front.svg",
  34875. extra: 1420/1236,
  34876. bottom: 27/1447
  34877. }
  34878. },
  34879. },
  34880. [
  34881. {
  34882. name: "Normal",
  34883. height: math.unit(8 + 4/12, "feet"),
  34884. default: true
  34885. },
  34886. ]
  34887. ))
  34888. characterMakers.push(() => makeCharacter(
  34889. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34890. {
  34891. front: {
  34892. height: math.unit(15, "feet"),
  34893. name: "Front",
  34894. image: {
  34895. source: "./media/characters/marble/front.svg",
  34896. extra: 973/937,
  34897. bottom: 32/1005
  34898. }
  34899. },
  34900. },
  34901. [
  34902. {
  34903. name: "Normal",
  34904. height: math.unit(15, "feet"),
  34905. default: true
  34906. },
  34907. ]
  34908. ))
  34909. characterMakers.push(() => makeCharacter(
  34910. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34911. {
  34912. front: {
  34913. height: math.unit(3, "inches"),
  34914. name: "Front",
  34915. image: {
  34916. source: "./media/characters/powder/front.svg",
  34917. extra: 1504/1334,
  34918. bottom: 518/2022
  34919. }
  34920. },
  34921. },
  34922. [
  34923. {
  34924. name: "Normal",
  34925. height: math.unit(3, "inches"),
  34926. default: true
  34927. },
  34928. ]
  34929. ))
  34930. characterMakers.push(() => makeCharacter(
  34931. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34932. {
  34933. front: {
  34934. height: math.unit(4 + 5/12, "feet"),
  34935. name: "Front",
  34936. image: {
  34937. source: "./media/characters/joey-raccoon/front.svg",
  34938. extra: 1273/1197,
  34939. bottom: 0/1273
  34940. }
  34941. },
  34942. },
  34943. [
  34944. {
  34945. name: "Normal",
  34946. height: math.unit(4 + 5/12, "feet"),
  34947. default: true
  34948. },
  34949. ]
  34950. ))
  34951. characterMakers.push(() => makeCharacter(
  34952. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34953. {
  34954. front: {
  34955. height: math.unit(8 + 4/12, "feet"),
  34956. name: "Front",
  34957. image: {
  34958. source: "./media/characters/vick/front.svg",
  34959. extra: 2187/2118,
  34960. bottom: 47/2234
  34961. }
  34962. },
  34963. },
  34964. [
  34965. {
  34966. name: "Normal",
  34967. height: math.unit(8 + 4/12, "feet"),
  34968. default: true
  34969. },
  34970. ]
  34971. ))
  34972. characterMakers.push(() => makeCharacter(
  34973. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34974. {
  34975. front: {
  34976. height: math.unit(5 + 5/12, "feet"),
  34977. name: "Front",
  34978. image: {
  34979. source: "./media/characters/mitsy/front.svg",
  34980. extra: 1842/1695,
  34981. bottom: 0/1842
  34982. }
  34983. },
  34984. },
  34985. [
  34986. {
  34987. name: "Normal",
  34988. height: math.unit(5 + 5/12, "feet"),
  34989. default: true
  34990. },
  34991. ]
  34992. ))
  34993. characterMakers.push(() => makeCharacter(
  34994. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34995. {
  34996. front: {
  34997. height: math.unit(6 + 3/12, "feet"),
  34998. name: "Front",
  34999. image: {
  35000. source: "./media/characters/silvy/front.svg",
  35001. extra: 1995/1836,
  35002. bottom: 225/2220
  35003. }
  35004. },
  35005. },
  35006. [
  35007. {
  35008. name: "Normal",
  35009. height: math.unit(6 + 3/12, "feet"),
  35010. default: true
  35011. },
  35012. ]
  35013. ))
  35014. characterMakers.push(() => makeCharacter(
  35015. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35016. {
  35017. front: {
  35018. height: math.unit(3 + 8/12, "feet"),
  35019. name: "Front",
  35020. image: {
  35021. source: "./media/characters/rodney/front.svg",
  35022. extra: 1956/1747,
  35023. bottom: 31/1987
  35024. }
  35025. },
  35026. frontDressed: {
  35027. height: math.unit(2.9, "feet"),
  35028. name: "Front (Dressed)",
  35029. image: {
  35030. source: "./media/characters/rodney/front-dressed.svg",
  35031. extra: 1382/1241,
  35032. bottom: 385/1767
  35033. }
  35034. },
  35035. },
  35036. [
  35037. {
  35038. name: "Normal",
  35039. height: math.unit(3 + 8/12, "feet"),
  35040. default: true
  35041. },
  35042. ]
  35043. ))
  35044. characterMakers.push(() => makeCharacter(
  35045. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35046. {
  35047. front: {
  35048. height: math.unit(5 + 9/12, "feet"),
  35049. weight: math.unit(194, "lbs"),
  35050. name: "Front",
  35051. image: {
  35052. source: "./media/characters/zakail-sudekai/front.svg",
  35053. extra: 2696/2533,
  35054. bottom: 248/2944
  35055. }
  35056. },
  35057. maw: {
  35058. height: math.unit(1.35, "feet"),
  35059. name: "Maw",
  35060. image: {
  35061. source: "./media/characters/zakail-sudekai/maw.svg"
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Normal",
  35068. height: math.unit(5 + 9/12, "feet"),
  35069. default: true
  35070. },
  35071. ]
  35072. ))
  35073. characterMakers.push(() => makeCharacter(
  35074. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35075. {
  35076. front: {
  35077. height: math.unit(8 + 4/12, "feet"),
  35078. weight: math.unit(1200, "lb"),
  35079. name: "Front",
  35080. image: {
  35081. source: "./media/characters/eleanor/front.svg",
  35082. extra: 1226/1192,
  35083. bottom: 52/1278
  35084. }
  35085. },
  35086. back: {
  35087. height: math.unit(8 + 4/12, "feet"),
  35088. weight: math.unit(1200, "lb"),
  35089. name: "Back",
  35090. image: {
  35091. source: "./media/characters/eleanor/back.svg",
  35092. extra: 1242/1184,
  35093. bottom: 60/1302
  35094. }
  35095. },
  35096. head: {
  35097. height: math.unit(2.62, "feet"),
  35098. name: "Head",
  35099. image: {
  35100. source: "./media/characters/eleanor/head.svg"
  35101. }
  35102. },
  35103. },
  35104. [
  35105. {
  35106. name: "Normal",
  35107. height: math.unit(8 + 4/12, "feet"),
  35108. default: true
  35109. },
  35110. ]
  35111. ))
  35112. characterMakers.push(() => makeCharacter(
  35113. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35114. {
  35115. front: {
  35116. height: math.unit(8 + 4/12, "feet"),
  35117. weight: math.unit(750, "lb"),
  35118. name: "Front",
  35119. image: {
  35120. source: "./media/characters/tanya/front.svg",
  35121. extra: 1749/1615,
  35122. bottom: 33/1782
  35123. }
  35124. },
  35125. },
  35126. [
  35127. {
  35128. name: "Normal",
  35129. height: math.unit(8 + 4/12, "feet"),
  35130. default: true
  35131. },
  35132. ]
  35133. ))
  35134. characterMakers.push(() => makeCharacter(
  35135. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35136. {
  35137. front: {
  35138. height: math.unit(5, "feet"),
  35139. weight: math.unit(225, "lb"),
  35140. name: "Front",
  35141. image: {
  35142. source: "./media/characters/cindy/front.svg",
  35143. extra: 1320/1250,
  35144. bottom: 42/1362
  35145. }
  35146. },
  35147. frontDressed: {
  35148. height: math.unit(5, "feet"),
  35149. weight: math.unit(225, "lb"),
  35150. name: "Front (Dressed)",
  35151. image: {
  35152. source: "./media/characters/cindy/front-dressed.svg",
  35153. extra: 1320/1250,
  35154. bottom: 42/1362
  35155. }
  35156. },
  35157. back: {
  35158. height: math.unit(5, "feet"),
  35159. weight: math.unit(225, "lb"),
  35160. name: "Back",
  35161. image: {
  35162. source: "./media/characters/cindy/back.svg",
  35163. extra: 1384/1346,
  35164. bottom: 14/1398
  35165. }
  35166. },
  35167. },
  35168. [
  35169. {
  35170. name: "Normal",
  35171. height: math.unit(5, "feet"),
  35172. default: true
  35173. },
  35174. ]
  35175. ))
  35176. characterMakers.push(() => makeCharacter(
  35177. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35178. {
  35179. front: {
  35180. height: math.unit(6 + 9/12, "feet"),
  35181. weight: math.unit(440, "lb"),
  35182. name: "Front",
  35183. image: {
  35184. source: "./media/characters/wilbur-owen/front.svg",
  35185. extra: 1575/1448,
  35186. bottom: 72/1647
  35187. }
  35188. },
  35189. back: {
  35190. height: math.unit(6 + 9/12, "feet"),
  35191. weight: math.unit(440, "lb"),
  35192. name: "Back",
  35193. image: {
  35194. source: "./media/characters/wilbur-owen/back.svg",
  35195. extra: 1578/1445,
  35196. bottom: 36/1614
  35197. }
  35198. },
  35199. },
  35200. [
  35201. {
  35202. name: "Normal",
  35203. height: math.unit(6 + 9/12, "feet"),
  35204. default: true
  35205. },
  35206. ]
  35207. ))
  35208. characterMakers.push(() => makeCharacter(
  35209. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35210. {
  35211. front: {
  35212. height: math.unit(6 + 5/12, "feet"),
  35213. weight: math.unit(650, "lb"),
  35214. name: "Front",
  35215. image: {
  35216. source: "./media/characters/keegan/front.svg",
  35217. extra: 2387/2198,
  35218. bottom: 33/2420
  35219. }
  35220. },
  35221. side: {
  35222. height: math.unit(6 + 5/12, "feet"),
  35223. weight: math.unit(650, "lb"),
  35224. name: "Side",
  35225. image: {
  35226. source: "./media/characters/keegan/side.svg",
  35227. extra: 2390/2202,
  35228. bottom: 47/2437
  35229. }
  35230. },
  35231. back: {
  35232. height: math.unit(6 + 5/12, "feet"),
  35233. weight: math.unit(650, "lb"),
  35234. name: "Back",
  35235. image: {
  35236. source: "./media/characters/keegan/back.svg",
  35237. extra: 2418/2268,
  35238. bottom: 15/2433
  35239. }
  35240. },
  35241. frontSfw: {
  35242. height: math.unit(6 + 5/12, "feet"),
  35243. weight: math.unit(650, "lb"),
  35244. name: "Front (SFW)",
  35245. image: {
  35246. source: "./media/characters/keegan/front-sfw.svg",
  35247. extra: 2387/2198,
  35248. bottom: 33/2420
  35249. }
  35250. },
  35251. beans: {
  35252. height: math.unit(1.85, "feet"),
  35253. name: "Beans",
  35254. image: {
  35255. source: "./media/characters/keegan/beans.svg"
  35256. }
  35257. },
  35258. },
  35259. [
  35260. {
  35261. name: "Normal",
  35262. height: math.unit(6 + 5/12, "feet"),
  35263. default: true
  35264. },
  35265. ]
  35266. ))
  35267. characterMakers.push(() => makeCharacter(
  35268. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35269. {
  35270. front: {
  35271. height: math.unit(9, "feet"),
  35272. name: "Front",
  35273. image: {
  35274. source: "./media/characters/colton/front.svg",
  35275. extra: 1589/1326,
  35276. bottom: 139/1728
  35277. }
  35278. },
  35279. },
  35280. [
  35281. {
  35282. name: "Normal",
  35283. height: math.unit(9, "feet"),
  35284. default: true
  35285. },
  35286. ]
  35287. ))
  35288. characterMakers.push(() => makeCharacter(
  35289. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35290. {
  35291. front: {
  35292. height: math.unit(2 + 9/12, "feet"),
  35293. name: "Front",
  35294. image: {
  35295. source: "./media/characters/bora/front.svg",
  35296. extra: 1265/1250,
  35297. bottom: 24/1289
  35298. }
  35299. },
  35300. },
  35301. [
  35302. {
  35303. name: "Normal",
  35304. height: math.unit(2 + 9/12, "feet"),
  35305. default: true
  35306. },
  35307. ]
  35308. ))
  35309. characterMakers.push(() => makeCharacter(
  35310. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35311. {
  35312. front: {
  35313. height: math.unit(8, "feet"),
  35314. name: "Front",
  35315. image: {
  35316. source: "./media/characters/myu-myu/front.svg",
  35317. extra: 1949/1857,
  35318. bottom: 90/2039
  35319. }
  35320. },
  35321. },
  35322. [
  35323. {
  35324. name: "Normal",
  35325. height: math.unit(8, "feet"),
  35326. default: true
  35327. },
  35328. {
  35329. name: "Big",
  35330. height: math.unit(15, "feet")
  35331. },
  35332. {
  35333. name: "BIG",
  35334. height: math.unit(25, "feet")
  35335. },
  35336. ]
  35337. ))
  35338. characterMakers.push(() => makeCharacter(
  35339. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35340. {
  35341. side: {
  35342. height: math.unit(7 + 5/12, "feet"),
  35343. weight: math.unit(2800, "lb"),
  35344. name: "Side",
  35345. image: {
  35346. source: "./media/characters/haloren/side.svg",
  35347. extra: 1793/409,
  35348. bottom: 59/1852
  35349. }
  35350. },
  35351. frontPaw: {
  35352. height: math.unit(2.36, "feet"),
  35353. name: "Front paw",
  35354. image: {
  35355. source: "./media/characters/haloren/front-paw.svg"
  35356. }
  35357. },
  35358. hindPaw: {
  35359. height: math.unit(3.18, "feet"),
  35360. name: "Hind paw",
  35361. image: {
  35362. source: "./media/characters/haloren/hind-paw.svg"
  35363. }
  35364. },
  35365. maw: {
  35366. height: math.unit(5.05, "feet"),
  35367. name: "Maw",
  35368. image: {
  35369. source: "./media/characters/haloren/maw.svg"
  35370. }
  35371. },
  35372. dick: {
  35373. height: math.unit(2.90, "feet"),
  35374. name: "Dick",
  35375. image: {
  35376. source: "./media/characters/haloren/dick.svg"
  35377. }
  35378. },
  35379. },
  35380. [
  35381. {
  35382. name: "Normal",
  35383. height: math.unit(7 + 5/12, "feet"),
  35384. default: true
  35385. },
  35386. {
  35387. name: "Enhanced",
  35388. height: math.unit(14 + 3/12, "feet")
  35389. },
  35390. ]
  35391. ))
  35392. characterMakers.push(() => makeCharacter(
  35393. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35394. {
  35395. front: {
  35396. height: math.unit(171, "cm"),
  35397. name: "Front",
  35398. image: {
  35399. source: "./media/characters/kimmy/front.svg",
  35400. extra: 1491/1435,
  35401. bottom: 53/1544
  35402. }
  35403. },
  35404. },
  35405. [
  35406. {
  35407. name: "Small",
  35408. height: math.unit(9, "cm")
  35409. },
  35410. {
  35411. name: "Normal",
  35412. height: math.unit(171, "cm"),
  35413. default: true
  35414. },
  35415. ]
  35416. ))
  35417. characterMakers.push(() => makeCharacter(
  35418. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35419. {
  35420. front: {
  35421. height: math.unit(8, "feet"),
  35422. weight: math.unit(300, "lb"),
  35423. name: "Front",
  35424. image: {
  35425. source: "./media/characters/galeboomer/front.svg",
  35426. extra: 4651/4415,
  35427. bottom: 162/4813
  35428. }
  35429. },
  35430. back: {
  35431. height: math.unit(8, "feet"),
  35432. weight: math.unit(300, "lb"),
  35433. name: "Back",
  35434. image: {
  35435. source: "./media/characters/galeboomer/back.svg",
  35436. extra: 4544/4314,
  35437. bottom: 16/4560
  35438. }
  35439. },
  35440. frontAlt: {
  35441. height: math.unit(8, "feet"),
  35442. weight: math.unit(300, "lb"),
  35443. name: "Front (Alt)",
  35444. image: {
  35445. source: "./media/characters/galeboomer/front-alt.svg",
  35446. extra: 4458/4228,
  35447. bottom: 68/4526
  35448. }
  35449. },
  35450. maw: {
  35451. height: math.unit(1.2, "feet"),
  35452. name: "Maw",
  35453. image: {
  35454. source: "./media/characters/galeboomer/maw.svg"
  35455. }
  35456. },
  35457. },
  35458. [
  35459. {
  35460. name: "Normal",
  35461. height: math.unit(8, "feet"),
  35462. default: true
  35463. },
  35464. ]
  35465. ))
  35466. characterMakers.push(() => makeCharacter(
  35467. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35468. {
  35469. front: {
  35470. height: math.unit(5 + 9/12, "feet"),
  35471. weight: math.unit(120, "lb"),
  35472. name: "Front",
  35473. image: {
  35474. source: "./media/characters/chyr/front.svg",
  35475. extra: 1323/1254,
  35476. bottom: 63/1386
  35477. }
  35478. },
  35479. back: {
  35480. height: math.unit(5 + 9/12, "feet"),
  35481. weight: math.unit(120, "lb"),
  35482. name: "Back",
  35483. image: {
  35484. source: "./media/characters/chyr/back.svg",
  35485. extra: 1323/1252,
  35486. bottom: 48/1371
  35487. }
  35488. },
  35489. },
  35490. [
  35491. {
  35492. name: "Normal",
  35493. height: math.unit(5 + 9/12, "feet"),
  35494. default: true
  35495. },
  35496. ]
  35497. ))
  35498. characterMakers.push(() => makeCharacter(
  35499. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35500. {
  35501. front: {
  35502. height: math.unit(7, "feet"),
  35503. weight: math.unit(310, "lb"),
  35504. name: "Front",
  35505. image: {
  35506. source: "./media/characters/solarus/front.svg",
  35507. extra: 2415/2021,
  35508. bottom: 103/2518
  35509. }
  35510. },
  35511. back: {
  35512. height: math.unit(7, "feet"),
  35513. weight: math.unit(310, "lb"),
  35514. name: "Back",
  35515. image: {
  35516. source: "./media/characters/solarus/back.svg",
  35517. extra: 2463/2089,
  35518. bottom: 79/2542
  35519. }
  35520. },
  35521. },
  35522. [
  35523. {
  35524. name: "Normal",
  35525. height: math.unit(7, "feet"),
  35526. default: true
  35527. },
  35528. ]
  35529. ))
  35530. characterMakers.push(() => makeCharacter(
  35531. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35532. {
  35533. front: {
  35534. height: math.unit(16, "feet"),
  35535. name: "Front",
  35536. image: {
  35537. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35538. extra: 1844/1780,
  35539. bottom: 58/1902
  35540. }
  35541. },
  35542. },
  35543. [
  35544. {
  35545. name: "Normal",
  35546. height: math.unit(16, "feet"),
  35547. default: true
  35548. },
  35549. ]
  35550. ))
  35551. characterMakers.push(() => makeCharacter(
  35552. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35553. {
  35554. front: {
  35555. height: math.unit(11 + 6/12, "feet"),
  35556. weight: math.unit(1366, "lb"),
  35557. name: "Front",
  35558. image: {
  35559. source: "./media/characters/lexor/front.svg",
  35560. extra: 1560/1481,
  35561. bottom: 211/1771
  35562. }
  35563. },
  35564. back: {
  35565. height: math.unit(11 + 6/12, "feet"),
  35566. weight: math.unit(1366, "lb"),
  35567. name: "Back",
  35568. image: {
  35569. source: "./media/characters/lexor/back.svg",
  35570. extra: 1614/1533,
  35571. bottom: 76/1690
  35572. }
  35573. },
  35574. maw: {
  35575. height: math.unit(3, "feet"),
  35576. name: "Maw",
  35577. image: {
  35578. source: "./media/characters/lexor/maw.svg"
  35579. }
  35580. },
  35581. dick: {
  35582. height: math.unit(2.59, "feet"),
  35583. name: "Dick",
  35584. image: {
  35585. source: "./media/characters/lexor/dick.svg"
  35586. }
  35587. },
  35588. },
  35589. [
  35590. {
  35591. name: "Normal",
  35592. height: math.unit(11 + 6/12, "feet"),
  35593. default: true
  35594. },
  35595. ]
  35596. ))
  35597. characterMakers.push(() => makeCharacter(
  35598. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35599. {
  35600. front: {
  35601. height: math.unit(5 + 8/12, "feet"),
  35602. name: "Front",
  35603. image: {
  35604. source: "./media/characters/magnum/front.svg",
  35605. extra: 942/855,
  35606. bottom: 26/968
  35607. }
  35608. },
  35609. },
  35610. [
  35611. {
  35612. name: "Normal",
  35613. height: math.unit(5 + 8/12, "feet"),
  35614. default: true
  35615. },
  35616. ]
  35617. ))
  35618. characterMakers.push(() => makeCharacter(
  35619. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35620. {
  35621. front: {
  35622. height: math.unit(18 + 4/12, "feet"),
  35623. weight: math.unit(1500, "kg"),
  35624. name: "Front",
  35625. image: {
  35626. source: "./media/characters/solas-sharpsman/front.svg",
  35627. extra: 1698/1589,
  35628. bottom: 0/1698
  35629. }
  35630. },
  35631. },
  35632. [
  35633. {
  35634. name: "Normal",
  35635. height: math.unit(18 + 4/12, "feet"),
  35636. default: true
  35637. },
  35638. ]
  35639. ))
  35640. characterMakers.push(() => makeCharacter(
  35641. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35642. {
  35643. front: {
  35644. height: math.unit(5 + 5/12, "feet"),
  35645. weight: math.unit(180, "lb"),
  35646. name: "Front",
  35647. image: {
  35648. source: "./media/characters/october/front.svg",
  35649. extra: 1800/1650,
  35650. bottom: 0/1800
  35651. }
  35652. },
  35653. frontNsfw: {
  35654. height: math.unit(5 + 5/12, "feet"),
  35655. weight: math.unit(180, "lb"),
  35656. name: "Front (NSFW)",
  35657. image: {
  35658. source: "./media/characters/october/front-nsfw.svg",
  35659. extra: 1392/1307,
  35660. bottom: 42/1434
  35661. }
  35662. },
  35663. },
  35664. [
  35665. {
  35666. name: "Normal",
  35667. height: math.unit(5 + 5/12, "feet"),
  35668. default: true
  35669. },
  35670. ]
  35671. ))
  35672. characterMakers.push(() => makeCharacter(
  35673. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35674. {
  35675. front: {
  35676. height: math.unit(8 + 6/12, "feet"),
  35677. name: "Front",
  35678. image: {
  35679. source: "./media/characters/essynkardi/front.svg",
  35680. extra: 1914/1846,
  35681. bottom: 22/1936
  35682. }
  35683. },
  35684. },
  35685. [
  35686. {
  35687. name: "Normal",
  35688. height: math.unit(8 + 6/12, "feet"),
  35689. default: true
  35690. },
  35691. ]
  35692. ))
  35693. characterMakers.push(() => makeCharacter(
  35694. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35695. {
  35696. front: {
  35697. height: math.unit(6 + 6/12, "feet"),
  35698. weight: math.unit(7, "lb"),
  35699. name: "Front",
  35700. image: {
  35701. source: "./media/characters/icky/front.svg",
  35702. extra: 813/782,
  35703. bottom: 66/879
  35704. }
  35705. },
  35706. back: {
  35707. height: math.unit(6 + 6/12, "feet"),
  35708. weight: math.unit(7, "lb"),
  35709. name: "Back",
  35710. image: {
  35711. source: "./media/characters/icky/back.svg",
  35712. extra: 754/735,
  35713. bottom: 56/810
  35714. }
  35715. },
  35716. },
  35717. [
  35718. {
  35719. name: "Normal",
  35720. height: math.unit(6 + 6/12, "feet"),
  35721. default: true
  35722. },
  35723. ]
  35724. ))
  35725. characterMakers.push(() => makeCharacter(
  35726. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35727. {
  35728. front: {
  35729. height: math.unit(15, "feet"),
  35730. name: "Front",
  35731. image: {
  35732. source: "./media/characters/rojas/front.svg",
  35733. extra: 1462/1408,
  35734. bottom: 95/1557
  35735. }
  35736. },
  35737. back: {
  35738. height: math.unit(15, "feet"),
  35739. name: "Back",
  35740. image: {
  35741. source: "./media/characters/rojas/back.svg",
  35742. extra: 1023/954,
  35743. bottom: 28/1051
  35744. }
  35745. },
  35746. },
  35747. [
  35748. {
  35749. name: "Normal",
  35750. height: math.unit(15, "feet"),
  35751. default: true
  35752. },
  35753. ]
  35754. ))
  35755. characterMakers.push(() => makeCharacter(
  35756. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35757. {
  35758. frontHuman: {
  35759. height: math.unit(5 + 7/12, "feet"),
  35760. name: "Front (Human)",
  35761. image: {
  35762. source: "./media/characters/alek-dryagan/front-human.svg",
  35763. extra: 1687/1667,
  35764. bottom: 69/1756
  35765. }
  35766. },
  35767. backHuman: {
  35768. height: math.unit(5 + 7/12, "feet"),
  35769. name: "Back (Human)",
  35770. image: {
  35771. source: "./media/characters/alek-dryagan/back-human.svg",
  35772. extra: 1670/1649,
  35773. bottom: 65/1735
  35774. }
  35775. },
  35776. frontDemi: {
  35777. height: math.unit(65, "feet"),
  35778. name: "Front (Demi)",
  35779. image: {
  35780. source: "./media/characters/alek-dryagan/front-demi.svg",
  35781. extra: 1669/1642,
  35782. bottom: 49/1718
  35783. }
  35784. },
  35785. backDemi: {
  35786. height: math.unit(65, "feet"),
  35787. name: "Back (Demi)",
  35788. image: {
  35789. source: "./media/characters/alek-dryagan/back-demi.svg",
  35790. extra: 1658/1637,
  35791. bottom: 40/1698
  35792. }
  35793. },
  35794. mawHuman: {
  35795. height: math.unit(0.3, "feet"),
  35796. name: "Maw (Human)",
  35797. image: {
  35798. source: "./media/characters/alek-dryagan/maw-human.svg"
  35799. }
  35800. },
  35801. mawDemi: {
  35802. height: math.unit(3.8, "feet"),
  35803. name: "Maw (Demi)",
  35804. image: {
  35805. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35806. }
  35807. },
  35808. },
  35809. [
  35810. {
  35811. name: "Normal",
  35812. height: math.unit(5 + 7/12, "feet"),
  35813. default: true
  35814. },
  35815. ]
  35816. ))
  35817. characterMakers.push(() => makeCharacter(
  35818. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35819. {
  35820. frontHuman: {
  35821. height: math.unit(5 + 2/12, "feet"),
  35822. name: "Front (Human)",
  35823. image: {
  35824. source: "./media/characters/gen/front-human.svg",
  35825. extra: 1627/1538,
  35826. bottom: 71/1698
  35827. }
  35828. },
  35829. backHuman: {
  35830. height: math.unit(5 + 2/12, "feet"),
  35831. name: "Back (Human)",
  35832. image: {
  35833. source: "./media/characters/gen/back-human.svg",
  35834. extra: 1638/1548,
  35835. bottom: 69/1707
  35836. }
  35837. },
  35838. frontDemi: {
  35839. height: math.unit(5 + 2/12, "feet"),
  35840. name: "Front (Demi)",
  35841. image: {
  35842. source: "./media/characters/gen/front-demi.svg",
  35843. extra: 1627/1538,
  35844. bottom: 71/1698
  35845. }
  35846. },
  35847. backDemi: {
  35848. height: math.unit(5 + 2/12, "feet"),
  35849. name: "Back (Demi)",
  35850. image: {
  35851. source: "./media/characters/gen/back-demi.svg",
  35852. extra: 1638/1548,
  35853. bottom: 69/1707
  35854. }
  35855. },
  35856. },
  35857. [
  35858. {
  35859. name: "Normal",
  35860. height: math.unit(5 + 2/12, "feet"),
  35861. default: true
  35862. },
  35863. ]
  35864. ))
  35865. characterMakers.push(() => makeCharacter(
  35866. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35867. {
  35868. frontImp: {
  35869. height: math.unit(1 + 11/12, "feet"),
  35870. name: "Front (Imp)",
  35871. image: {
  35872. source: "./media/characters/max-kobold/front-imp.svg",
  35873. extra: 1238/1134,
  35874. bottom: 81/1319
  35875. }
  35876. },
  35877. backImp: {
  35878. height: math.unit(1 + 11/12, "feet"),
  35879. name: "Back (Imp)",
  35880. image: {
  35881. source: "./media/characters/max-kobold/back-imp.svg",
  35882. extra: 1334/1175,
  35883. bottom: 34/1368
  35884. }
  35885. },
  35886. frontDemi: {
  35887. height: math.unit(5 + 9/12, "feet"),
  35888. name: "Front (Demi)",
  35889. image: {
  35890. source: "./media/characters/max-kobold/front-demi.svg",
  35891. extra: 1715/1685,
  35892. bottom: 54/1769
  35893. }
  35894. },
  35895. backDemi: {
  35896. height: math.unit(5 + 9/12, "feet"),
  35897. name: "Back (Demi)",
  35898. image: {
  35899. source: "./media/characters/max-kobold/back-demi.svg",
  35900. extra: 1752/1729,
  35901. bottom: 41/1793
  35902. }
  35903. },
  35904. handImp: {
  35905. height: math.unit(0.45, "feet"),
  35906. name: "Hand (Imp)",
  35907. image: {
  35908. source: "./media/characters/max-kobold/hand.svg"
  35909. }
  35910. },
  35911. pawImp: {
  35912. height: math.unit(0.46, "feet"),
  35913. name: "Paw (Imp)",
  35914. image: {
  35915. source: "./media/characters/max-kobold/paw.svg"
  35916. }
  35917. },
  35918. handDemi: {
  35919. height: math.unit(0.80, "feet"),
  35920. name: "Hand (Demi)",
  35921. image: {
  35922. source: "./media/characters/max-kobold/hand.svg"
  35923. }
  35924. },
  35925. pawDemi: {
  35926. height: math.unit(1.1, "feet"),
  35927. name: "Paw (Demi)",
  35928. image: {
  35929. source: "./media/characters/max-kobold/paw.svg"
  35930. }
  35931. },
  35932. headImp: {
  35933. height: math.unit(1.33, "feet"),
  35934. name: "Head (Imp)",
  35935. image: {
  35936. source: "./media/characters/max-kobold/head-imp.svg"
  35937. }
  35938. },
  35939. mawImp: {
  35940. height: math.unit(0.75, "feet"),
  35941. name: "Maw (Imp)",
  35942. image: {
  35943. source: "./media/characters/max-kobold/maw-imp.svg"
  35944. }
  35945. },
  35946. mawDemi: {
  35947. height: math.unit(0.42, "feet"),
  35948. name: "Maw (Demi)",
  35949. image: {
  35950. source: "./media/characters/max-kobold/maw-demi.svg"
  35951. }
  35952. },
  35953. },
  35954. [
  35955. {
  35956. name: "Normal",
  35957. height: math.unit(1 + 11/12, "feet"),
  35958. default: true
  35959. },
  35960. ]
  35961. ))
  35962. characterMakers.push(() => makeCharacter(
  35963. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35964. {
  35965. front: {
  35966. height: math.unit(7 + 5/12, "feet"),
  35967. name: "Front",
  35968. image: {
  35969. source: "./media/characters/carbon/front.svg",
  35970. extra: 1754/1689,
  35971. bottom: 65/1819
  35972. }
  35973. },
  35974. back: {
  35975. height: math.unit(7 + 5/12, "feet"),
  35976. name: "Back",
  35977. image: {
  35978. source: "./media/characters/carbon/back.svg",
  35979. extra: 1762/1695,
  35980. bottom: 24/1786
  35981. }
  35982. },
  35983. frontGigantamax: {
  35984. height: math.unit(150, "feet"),
  35985. name: "Front (Gigantamax)",
  35986. image: {
  35987. source: "./media/characters/carbon/front-gigantamax.svg",
  35988. extra: 1826/1669,
  35989. bottom: 59/1885
  35990. }
  35991. },
  35992. backGigantamax: {
  35993. height: math.unit(150, "feet"),
  35994. name: "Back (Gigantamax)",
  35995. image: {
  35996. source: "./media/characters/carbon/back-gigantamax.svg",
  35997. extra: 1796/1653,
  35998. bottom: 53/1849
  35999. }
  36000. },
  36001. maw: {
  36002. height: math.unit(0.48, "feet"),
  36003. name: "Maw",
  36004. image: {
  36005. source: "./media/characters/carbon/maw.svg"
  36006. }
  36007. },
  36008. mawGigantamax: {
  36009. height: math.unit(7.5, "feet"),
  36010. name: "Maw (Gigantamax)",
  36011. image: {
  36012. source: "./media/characters/carbon/maw-gigantamax.svg"
  36013. }
  36014. },
  36015. },
  36016. [
  36017. {
  36018. name: "Normal",
  36019. height: math.unit(7 + 5/12, "feet"),
  36020. default: true
  36021. },
  36022. ]
  36023. ))
  36024. characterMakers.push(() => makeCharacter(
  36025. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36026. {
  36027. front: {
  36028. height: math.unit(6, "feet"),
  36029. name: "Front",
  36030. image: {
  36031. source: "./media/characters/maverick/front.svg",
  36032. extra: 1672/1661,
  36033. bottom: 85/1757
  36034. }
  36035. },
  36036. back: {
  36037. height: math.unit(6, "feet"),
  36038. name: "Back",
  36039. image: {
  36040. source: "./media/characters/maverick/back.svg",
  36041. extra: 1642/1631,
  36042. bottom: 38/1680
  36043. }
  36044. },
  36045. },
  36046. [
  36047. {
  36048. name: "Normal",
  36049. height: math.unit(6, "feet"),
  36050. default: true
  36051. },
  36052. ]
  36053. ))
  36054. characterMakers.push(() => makeCharacter(
  36055. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36056. {
  36057. front: {
  36058. height: math.unit(15, "feet"),
  36059. weight: math.unit(615, "lb"),
  36060. name: "Front",
  36061. image: {
  36062. source: "./media/characters/grockle/front.svg",
  36063. extra: 1535/1427,
  36064. bottom: 56/1591
  36065. }
  36066. },
  36067. },
  36068. [
  36069. {
  36070. name: "Normal",
  36071. height: math.unit(15, "feet"),
  36072. default: true
  36073. },
  36074. {
  36075. name: "Large",
  36076. height: math.unit(150, "feet")
  36077. },
  36078. {
  36079. name: "Macro",
  36080. height: math.unit(1876, "feet")
  36081. },
  36082. {
  36083. name: "Mega Macro",
  36084. height: math.unit(121940, "feet")
  36085. },
  36086. {
  36087. name: "Giga Macro",
  36088. height: math.unit(750, "km")
  36089. },
  36090. {
  36091. name: "Tera Macro",
  36092. height: math.unit(750000, "km")
  36093. },
  36094. {
  36095. name: "Galactic",
  36096. height: math.unit(1.4e5, "km")
  36097. },
  36098. {
  36099. name: "Godlike",
  36100. height: math.unit(9.8e280, "galaxies")
  36101. },
  36102. ]
  36103. ))
  36104. characterMakers.push(() => makeCharacter(
  36105. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36106. {
  36107. front: {
  36108. height: math.unit(11, "meters"),
  36109. weight: math.unit(20, "tonnes"),
  36110. name: "Front",
  36111. image: {
  36112. source: "./media/characters/alistair/front.svg",
  36113. extra: 1265/1009,
  36114. bottom: 93/1358
  36115. }
  36116. },
  36117. },
  36118. [
  36119. {
  36120. name: "Normal",
  36121. height: math.unit(11, "meters"),
  36122. default: true
  36123. },
  36124. ]
  36125. ))
  36126. characterMakers.push(() => makeCharacter(
  36127. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36128. {
  36129. front: {
  36130. height: math.unit(5 + 8/12, "feet"),
  36131. name: "Front",
  36132. image: {
  36133. source: "./media/characters/haruka/front.svg",
  36134. extra: 2012/1952,
  36135. bottom: 0/2012
  36136. }
  36137. },
  36138. },
  36139. [
  36140. {
  36141. name: "Normal",
  36142. height: math.unit(5 + 8/12, "feet"),
  36143. default: true
  36144. },
  36145. ]
  36146. ))
  36147. characterMakers.push(() => makeCharacter(
  36148. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36149. {
  36150. back: {
  36151. height: math.unit(9, "feet"),
  36152. name: "Back",
  36153. image: {
  36154. source: "./media/characters/vivian-sylveon/back.svg",
  36155. extra: 1853/1714,
  36156. bottom: 0/1853
  36157. }
  36158. },
  36159. },
  36160. [
  36161. {
  36162. name: "Normal",
  36163. height: math.unit(9, "feet"),
  36164. default: true
  36165. },
  36166. {
  36167. name: "Macro",
  36168. height: math.unit(500, "feet")
  36169. },
  36170. {
  36171. name: "Megamacro",
  36172. height: math.unit(600, "miles")
  36173. },
  36174. {
  36175. name: "Gigamacro",
  36176. height: math.unit(30000, "miles")
  36177. },
  36178. ]
  36179. ))
  36180. characterMakers.push(() => makeCharacter(
  36181. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36182. {
  36183. anthro: {
  36184. height: math.unit(5 + 10/12, "feet"),
  36185. weight: math.unit(100, "lb"),
  36186. name: "Anthro",
  36187. image: {
  36188. source: "./media/characters/daiki/anthro.svg",
  36189. extra: 1115/1027,
  36190. bottom: 69/1184
  36191. }
  36192. },
  36193. feral: {
  36194. height: math.unit(200, "feet"),
  36195. name: "Feral",
  36196. image: {
  36197. source: "./media/characters/daiki/feral.svg",
  36198. extra: 1256/313,
  36199. bottom: 39/1295
  36200. }
  36201. },
  36202. feralHead: {
  36203. height: math.unit(171, "feet"),
  36204. name: "Feral Head",
  36205. image: {
  36206. source: "./media/characters/daiki/feral-head.svg"
  36207. }
  36208. },
  36209. },
  36210. [
  36211. {
  36212. name: "Normal",
  36213. height: math.unit(5 + 10/12, "feet"),
  36214. default: true
  36215. },
  36216. ]
  36217. ))
  36218. characterMakers.push(() => makeCharacter(
  36219. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36220. {
  36221. fullyEquippedFront: {
  36222. height: math.unit(3 + 1/12, "feet"),
  36223. weight: math.unit(24, "lb"),
  36224. name: "Fully Equipped (Front)",
  36225. image: {
  36226. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36227. extra: 687/605,
  36228. bottom: 18/705
  36229. }
  36230. },
  36231. fullyEquippedBack: {
  36232. height: math.unit(3 + 1/12, "feet"),
  36233. weight: math.unit(24, "lb"),
  36234. name: "Fully Equipped (Back)",
  36235. image: {
  36236. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36237. extra: 689/590,
  36238. bottom: 18/707
  36239. }
  36240. },
  36241. dailyWear: {
  36242. height: math.unit(3 + 1/12, "feet"),
  36243. weight: math.unit(24, "lb"),
  36244. name: "Daily Wear",
  36245. image: {
  36246. source: "./media/characters/tea-spot/daily-wear.svg",
  36247. extra: 701/620,
  36248. bottom: 21/722
  36249. }
  36250. },
  36251. maidWork: {
  36252. height: math.unit(3 + 1/12, "feet"),
  36253. weight: math.unit(24, "lb"),
  36254. name: "Maid Work",
  36255. image: {
  36256. source: "./media/characters/tea-spot/maid-work.svg",
  36257. extra: 693/609,
  36258. bottom: 15/708
  36259. }
  36260. },
  36261. },
  36262. [
  36263. {
  36264. name: "Normal",
  36265. height: math.unit(3 + 1/12, "feet"),
  36266. default: true
  36267. },
  36268. ]
  36269. ))
  36270. characterMakers.push(() => makeCharacter(
  36271. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36272. {
  36273. front: {
  36274. height: math.unit(175, "cm"),
  36275. weight: math.unit(75, "kg"),
  36276. name: "Front",
  36277. image: {
  36278. source: "./media/characters/chee/front.svg",
  36279. extra: 1796/1740,
  36280. bottom: 40/1836
  36281. }
  36282. },
  36283. },
  36284. [
  36285. {
  36286. name: "Micro-Micro",
  36287. height: math.unit(1, "nm")
  36288. },
  36289. {
  36290. name: "Micro-erst",
  36291. height: math.unit(1, "micrometer")
  36292. },
  36293. {
  36294. name: "Micro-er",
  36295. height: math.unit(1, "cm")
  36296. },
  36297. {
  36298. name: "Normal",
  36299. height: math.unit(175, "cm"),
  36300. default: true
  36301. },
  36302. {
  36303. name: "Macro",
  36304. height: math.unit(100, "m")
  36305. },
  36306. {
  36307. name: "Macro-er",
  36308. height: math.unit(1, "km")
  36309. },
  36310. {
  36311. name: "Macro-erst",
  36312. height: math.unit(10, "km")
  36313. },
  36314. {
  36315. name: "Macro-Macro",
  36316. height: math.unit(100, "km")
  36317. },
  36318. ]
  36319. ))
  36320. characterMakers.push(() => makeCharacter(
  36321. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36322. {
  36323. front: {
  36324. height: math.unit(11 + 9/12, "feet"),
  36325. weight: math.unit(935, "lb"),
  36326. name: "Front",
  36327. image: {
  36328. source: "./media/characters/kingsley/front.svg",
  36329. extra: 1803/1674,
  36330. bottom: 127/1930
  36331. }
  36332. },
  36333. frontNude: {
  36334. height: math.unit(11 + 9/12, "feet"),
  36335. weight: math.unit(935, "lb"),
  36336. name: "Front (Nude)",
  36337. image: {
  36338. source: "./media/characters/kingsley/front-nude.svg",
  36339. extra: 1803/1674,
  36340. bottom: 127/1930
  36341. }
  36342. },
  36343. },
  36344. [
  36345. {
  36346. name: "Normal",
  36347. height: math.unit(11 + 9/12, "feet"),
  36348. default: true
  36349. },
  36350. ]
  36351. ))
  36352. characterMakers.push(() => makeCharacter(
  36353. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36354. {
  36355. side: {
  36356. height: math.unit(9, "feet"),
  36357. name: "Side",
  36358. image: {
  36359. source: "./media/characters/rymel/side.svg",
  36360. extra: 792/469,
  36361. bottom: 121/913
  36362. }
  36363. },
  36364. maw: {
  36365. height: math.unit(2.4, "meters"),
  36366. name: "Maw",
  36367. image: {
  36368. source: "./media/characters/rymel/maw.svg"
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "House Drake",
  36375. height: math.unit(2, "feet")
  36376. },
  36377. {
  36378. name: "Reduced",
  36379. height: math.unit(4.5, "feet")
  36380. },
  36381. {
  36382. name: "Normal",
  36383. height: math.unit(9, "feet"),
  36384. default: true
  36385. },
  36386. ]
  36387. ))
  36388. characterMakers.push(() => makeCharacter(
  36389. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36390. {
  36391. front: {
  36392. height: math.unit(1.74, "meters"),
  36393. weight: math.unit(55, "kg"),
  36394. name: "Front",
  36395. image: {
  36396. source: "./media/characters/rubus/front.svg",
  36397. extra: 1894/1742,
  36398. bottom: 44/1938
  36399. }
  36400. },
  36401. },
  36402. [
  36403. {
  36404. name: "Normal",
  36405. height: math.unit(1.74, "meters"),
  36406. default: true
  36407. },
  36408. ]
  36409. ))
  36410. characterMakers.push(() => makeCharacter(
  36411. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36412. {
  36413. front: {
  36414. height: math.unit(5 + 2/12, "feet"),
  36415. weight: math.unit(112, "lb"),
  36416. name: "Front",
  36417. image: {
  36418. source: "./media/characters/cassie-kingston/front.svg",
  36419. extra: 1438/1390,
  36420. bottom: 47/1485
  36421. }
  36422. },
  36423. },
  36424. [
  36425. {
  36426. name: "Normal",
  36427. height: math.unit(5 + 2/12, "feet"),
  36428. default: true
  36429. },
  36430. {
  36431. name: "Macro",
  36432. height: math.unit(128, "feet")
  36433. },
  36434. {
  36435. name: "Megamacro",
  36436. height: math.unit(2.56, "miles")
  36437. },
  36438. ]
  36439. ))
  36440. characterMakers.push(() => makeCharacter(
  36441. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36442. {
  36443. front: {
  36444. height: math.unit(7, "feet"),
  36445. name: "Front",
  36446. image: {
  36447. source: "./media/characters/fox/front.svg",
  36448. extra: 1798/1703,
  36449. bottom: 55/1853
  36450. }
  36451. },
  36452. back: {
  36453. height: math.unit(7, "feet"),
  36454. name: "Back",
  36455. image: {
  36456. source: "./media/characters/fox/back.svg",
  36457. extra: 1748/1649,
  36458. bottom: 32/1780
  36459. }
  36460. },
  36461. head: {
  36462. height: math.unit(1.95, "feet"),
  36463. name: "Head",
  36464. image: {
  36465. source: "./media/characters/fox/head.svg"
  36466. }
  36467. },
  36468. dick: {
  36469. height: math.unit(1.33, "feet"),
  36470. name: "Dick",
  36471. image: {
  36472. source: "./media/characters/fox/dick.svg"
  36473. }
  36474. },
  36475. foot: {
  36476. height: math.unit(1, "feet"),
  36477. name: "Foot",
  36478. image: {
  36479. source: "./media/characters/fox/foot.svg"
  36480. }
  36481. },
  36482. paw: {
  36483. height: math.unit(0.92, "feet"),
  36484. name: "Paw",
  36485. image: {
  36486. source: "./media/characters/fox/paw.svg"
  36487. }
  36488. },
  36489. },
  36490. [
  36491. {
  36492. name: "Small",
  36493. height: math.unit(3, "inches")
  36494. },
  36495. {
  36496. name: "\"Realistic\"",
  36497. height: math.unit(7, "feet")
  36498. },
  36499. {
  36500. name: "Normal",
  36501. height: math.unit(150, "feet"),
  36502. default: true
  36503. },
  36504. {
  36505. name: "BIG",
  36506. height: math.unit(1200, "feet")
  36507. },
  36508. {
  36509. name: "👀",
  36510. height: math.unit(5, "miles")
  36511. },
  36512. {
  36513. name: "👀👀👀",
  36514. height: math.unit(64, "miles")
  36515. },
  36516. ]
  36517. ))
  36518. characterMakers.push(() => makeCharacter(
  36519. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36520. {
  36521. front: {
  36522. height: math.unit(625, "feet"),
  36523. name: "Front",
  36524. image: {
  36525. source: "./media/characters/asonja-rossa/front.svg",
  36526. extra: 1833/1686,
  36527. bottom: 24/1857
  36528. }
  36529. },
  36530. back: {
  36531. height: math.unit(625, "feet"),
  36532. name: "Back",
  36533. image: {
  36534. source: "./media/characters/asonja-rossa/back.svg",
  36535. extra: 1852/1753,
  36536. bottom: 26/1878
  36537. }
  36538. },
  36539. },
  36540. [
  36541. {
  36542. name: "Macro",
  36543. height: math.unit(625, "feet"),
  36544. default: true
  36545. },
  36546. ]
  36547. ))
  36548. characterMakers.push(() => makeCharacter(
  36549. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36550. {
  36551. side: {
  36552. height: math.unit(6, "feet"),
  36553. weight: math.unit(150, "lb"),
  36554. name: "Side",
  36555. image: {
  36556. source: "./media/characters/rezukii/side.svg",
  36557. extra: 979/542,
  36558. bottom: 87/1066
  36559. }
  36560. },
  36561. },
  36562. [
  36563. {
  36564. name: "Tiny",
  36565. height: math.unit(2, "feet")
  36566. },
  36567. {
  36568. name: "Smol",
  36569. height: math.unit(4, "feet")
  36570. },
  36571. {
  36572. name: "Normal",
  36573. height: math.unit(8, "feet"),
  36574. default: true
  36575. },
  36576. {
  36577. name: "Big",
  36578. height: math.unit(12, "feet")
  36579. },
  36580. {
  36581. name: "Macro",
  36582. height: math.unit(30, "feet")
  36583. },
  36584. ]
  36585. ))
  36586. characterMakers.push(() => makeCharacter(
  36587. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36588. {
  36589. front: {
  36590. height: math.unit(14, "feet"),
  36591. weight: math.unit(9.5, "tonnes"),
  36592. name: "Front",
  36593. image: {
  36594. source: "./media/characters/dawnheart/front.svg",
  36595. extra: 2792/2675,
  36596. bottom: 64/2856
  36597. }
  36598. },
  36599. },
  36600. [
  36601. {
  36602. name: "Normal",
  36603. height: math.unit(14, "feet"),
  36604. default: true
  36605. },
  36606. ]
  36607. ))
  36608. characterMakers.push(() => makeCharacter(
  36609. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36610. {
  36611. front: {
  36612. height: math.unit(1.7, "m"),
  36613. name: "Front",
  36614. image: {
  36615. source: "./media/characters/gladi/front.svg",
  36616. extra: 1460/1362,
  36617. bottom: 19/1479
  36618. }
  36619. },
  36620. back: {
  36621. height: math.unit(1.7, "m"),
  36622. name: "Back",
  36623. image: {
  36624. source: "./media/characters/gladi/back.svg",
  36625. extra: 1459/1357,
  36626. bottom: 12/1471
  36627. }
  36628. },
  36629. feral: {
  36630. height: math.unit(2.05, "m"),
  36631. name: "Feral",
  36632. image: {
  36633. source: "./media/characters/gladi/feral.svg",
  36634. extra: 821/557,
  36635. bottom: 91/912
  36636. }
  36637. },
  36638. },
  36639. [
  36640. {
  36641. name: "Shortest",
  36642. height: math.unit(70, "cm")
  36643. },
  36644. {
  36645. name: "Normal",
  36646. height: math.unit(1.7, "m")
  36647. },
  36648. {
  36649. name: "Macro",
  36650. height: math.unit(10, "m"),
  36651. default: true
  36652. },
  36653. {
  36654. name: "Tallest",
  36655. height: math.unit(200, "m")
  36656. },
  36657. ]
  36658. ))
  36659. characterMakers.push(() => makeCharacter(
  36660. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36661. {
  36662. front: {
  36663. height: math.unit(5 + 7/12, "feet"),
  36664. weight: math.unit(92, "kg"),
  36665. name: "Front",
  36666. image: {
  36667. source: "./media/characters/erdno/front.svg",
  36668. extra: 1954/1889,
  36669. bottom: 22/1976
  36670. }
  36671. },
  36672. },
  36673. [
  36674. {
  36675. name: "Normal",
  36676. height: math.unit(5 + 7/12, "feet"),
  36677. default: true
  36678. },
  36679. ]
  36680. ))
  36681. characterMakers.push(() => makeCharacter(
  36682. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36683. {
  36684. front: {
  36685. height: math.unit(5 + 10/12, "feet"),
  36686. weight: math.unit(150, "lb"),
  36687. name: "Front",
  36688. image: {
  36689. source: "./media/characters/jamie/front.svg",
  36690. extra: 1908/1768,
  36691. bottom: 19/1927
  36692. }
  36693. },
  36694. },
  36695. [
  36696. {
  36697. name: "Minimum",
  36698. height: math.unit(2, "cm")
  36699. },
  36700. {
  36701. name: "Micro",
  36702. height: math.unit(3, "inches")
  36703. },
  36704. {
  36705. name: "Normal",
  36706. height: math.unit(5 + 10/12, "feet"),
  36707. default: true
  36708. },
  36709. {
  36710. name: "Macro",
  36711. height: math.unit(150, "feet")
  36712. },
  36713. {
  36714. name: "Megamacro",
  36715. height: math.unit(10000, "m")
  36716. },
  36717. ]
  36718. ))
  36719. characterMakers.push(() => makeCharacter(
  36720. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36721. {
  36722. front: {
  36723. height: math.unit(2, "meters"),
  36724. weight: math.unit(100, "kg"),
  36725. name: "Front",
  36726. image: {
  36727. source: "./media/characters/shiron/front.svg",
  36728. extra: 2103/1985,
  36729. bottom: 98/2201
  36730. }
  36731. },
  36732. back: {
  36733. height: math.unit(2, "meters"),
  36734. weight: math.unit(100, "kg"),
  36735. name: "Back",
  36736. image: {
  36737. source: "./media/characters/shiron/back.svg",
  36738. extra: 2110/2015,
  36739. bottom: 89/2199
  36740. }
  36741. },
  36742. hand: {
  36743. height: math.unit(0.96, "feet"),
  36744. name: "Hand",
  36745. image: {
  36746. source: "./media/characters/shiron/hand.svg"
  36747. }
  36748. },
  36749. foot: {
  36750. height: math.unit(1.464, "feet"),
  36751. name: "Foot",
  36752. image: {
  36753. source: "./media/characters/shiron/foot.svg"
  36754. }
  36755. },
  36756. },
  36757. [
  36758. {
  36759. name: "Normal",
  36760. height: math.unit(2, "meters")
  36761. },
  36762. {
  36763. name: "Macro",
  36764. height: math.unit(500, "meters"),
  36765. default: true
  36766. },
  36767. {
  36768. name: "Megamacro",
  36769. height: math.unit(20, "km")
  36770. },
  36771. ]
  36772. ))
  36773. characterMakers.push(() => makeCharacter(
  36774. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36775. {
  36776. front: {
  36777. height: math.unit(6, "feet"),
  36778. name: "Front",
  36779. image: {
  36780. source: "./media/characters/sam/front.svg",
  36781. extra: 849/826,
  36782. bottom: 19/868
  36783. }
  36784. },
  36785. },
  36786. [
  36787. {
  36788. name: "Normal",
  36789. height: math.unit(6, "feet"),
  36790. default: true
  36791. },
  36792. ]
  36793. ))
  36794. characterMakers.push(() => makeCharacter(
  36795. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36796. {
  36797. front: {
  36798. height: math.unit(8 + 4/12, "feet"),
  36799. weight: math.unit(122, "kg"),
  36800. name: "Front",
  36801. image: {
  36802. source: "./media/characters/namori-kurogawa/front.svg",
  36803. extra: 1894/1576,
  36804. bottom: 34/1928
  36805. }
  36806. },
  36807. },
  36808. [
  36809. {
  36810. name: "Normal",
  36811. height: math.unit(8 + 4/12, "feet"),
  36812. default: true
  36813. },
  36814. ]
  36815. ))
  36816. characterMakers.push(() => makeCharacter(
  36817. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36818. {
  36819. front: {
  36820. height: math.unit(9, "feet"),
  36821. weight: math.unit(621, "lb"),
  36822. name: "Front",
  36823. image: {
  36824. source: "./media/characters/unmru/front.svg",
  36825. extra: 1853/1747,
  36826. bottom: 73/1926
  36827. }
  36828. },
  36829. side: {
  36830. height: math.unit(9, "feet"),
  36831. weight: math.unit(621, "lb"),
  36832. name: "Side",
  36833. image: {
  36834. source: "./media/characters/unmru/side.svg",
  36835. extra: 1781/1671,
  36836. bottom: 127/1908
  36837. }
  36838. },
  36839. back: {
  36840. height: math.unit(9, "feet"),
  36841. weight: math.unit(621, "lb"),
  36842. name: "Back",
  36843. image: {
  36844. source: "./media/characters/unmru/back.svg",
  36845. extra: 1894/1765,
  36846. bottom: 75/1969
  36847. }
  36848. },
  36849. dick: {
  36850. height: math.unit(3, "feet"),
  36851. weight: math.unit(35, "lb"),
  36852. name: "Dick",
  36853. image: {
  36854. source: "./media/characters/unmru/dick.svg"
  36855. }
  36856. },
  36857. },
  36858. [
  36859. {
  36860. name: "Normal",
  36861. height: math.unit(9, "feet")
  36862. },
  36863. {
  36864. name: "Natural",
  36865. height: math.unit(27, "feet"),
  36866. default: true
  36867. },
  36868. {
  36869. name: "Giant",
  36870. height: math.unit(90, "feet")
  36871. },
  36872. {
  36873. name: "Kaiju",
  36874. height: math.unit(270, "feet")
  36875. },
  36876. {
  36877. name: "Macro",
  36878. height: math.unit(900, "feet")
  36879. },
  36880. {
  36881. name: "Macro+",
  36882. height: math.unit(2700, "feet")
  36883. },
  36884. {
  36885. name: "Megamacro",
  36886. height: math.unit(9000, "feet")
  36887. },
  36888. {
  36889. name: "City-Crushing",
  36890. height: math.unit(27000, "feet")
  36891. },
  36892. {
  36893. name: "Mountain-Mashing",
  36894. height: math.unit(90000, "feet")
  36895. },
  36896. {
  36897. name: "Earth-Eclipsing",
  36898. height: math.unit(2.7e8, "feet")
  36899. },
  36900. {
  36901. name: "Sol-Swallowing",
  36902. height: math.unit(9e10, "feet")
  36903. },
  36904. {
  36905. name: "Majoris-Munching",
  36906. height: math.unit(2.7e13, "feet")
  36907. },
  36908. ]
  36909. ))
  36910. characterMakers.push(() => makeCharacter(
  36911. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36912. {
  36913. front: {
  36914. height: math.unit(1, "inch"),
  36915. name: "Front",
  36916. image: {
  36917. source: "./media/characters/squeaks-mouse/front.svg",
  36918. extra: 352/308,
  36919. bottom: 25/377
  36920. }
  36921. },
  36922. },
  36923. [
  36924. {
  36925. name: "Micro",
  36926. height: math.unit(1, "inch"),
  36927. default: true
  36928. },
  36929. ]
  36930. ))
  36931. characterMakers.push(() => makeCharacter(
  36932. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  36933. {
  36934. side: {
  36935. height: math.unit(35, "feet"),
  36936. name: "Side",
  36937. image: {
  36938. source: "./media/characters/sayko/side.svg",
  36939. extra: 1697/1021,
  36940. bottom: 82/1779
  36941. }
  36942. },
  36943. head: {
  36944. height: math.unit(16, "feet"),
  36945. name: "Head",
  36946. image: {
  36947. source: "./media/characters/sayko/head.svg"
  36948. }
  36949. },
  36950. forepaw: {
  36951. height: math.unit(7.85, "feet"),
  36952. name: "Forepaw",
  36953. image: {
  36954. source: "./media/characters/sayko/forepaw.svg"
  36955. }
  36956. },
  36957. hindpaw: {
  36958. height: math.unit(8.8, "feet"),
  36959. name: "Hindpaw",
  36960. image: {
  36961. source: "./media/characters/sayko/hindpaw.svg"
  36962. }
  36963. },
  36964. },
  36965. [
  36966. {
  36967. name: "Normal",
  36968. height: math.unit(35, "feet"),
  36969. default: true
  36970. },
  36971. {
  36972. name: "Colossus",
  36973. height: math.unit(100, "meters")
  36974. },
  36975. {
  36976. name: "\"Small\" Deity",
  36977. height: math.unit(1, "km")
  36978. },
  36979. {
  36980. name: "\"Large\" Deity",
  36981. height: math.unit(15, "km")
  36982. },
  36983. ]
  36984. ))
  36985. characterMakers.push(() => makeCharacter(
  36986. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  36987. {
  36988. front: {
  36989. height: math.unit(6, "feet"),
  36990. weight: math.unit(250, "lb"),
  36991. name: "Front",
  36992. image: {
  36993. source: "./media/characters/mukiro/front.svg",
  36994. extra: 1368/1310,
  36995. bottom: 34/1402
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Normal",
  37002. height: math.unit(6, "feet"),
  37003. default: true
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37009. {
  37010. front: {
  37011. height: math.unit(12 + 4/12, "feet"),
  37012. name: "Front",
  37013. image: {
  37014. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37015. extra: 1346/1311,
  37016. bottom: 65/1411
  37017. }
  37018. },
  37019. },
  37020. [
  37021. {
  37022. name: "Base",
  37023. height: math.unit(12 + 4/12, "feet"),
  37024. default: true
  37025. },
  37026. {
  37027. name: "Macro",
  37028. height: math.unit(150, "feet")
  37029. },
  37030. {
  37031. name: "Mega",
  37032. height: math.unit(2, "miles")
  37033. },
  37034. {
  37035. name: "Demi God",
  37036. height: math.unit(4, "AU")
  37037. },
  37038. {
  37039. name: "God Size",
  37040. height: math.unit(1, "universe")
  37041. },
  37042. ]
  37043. ))
  37044. characterMakers.push(() => makeCharacter(
  37045. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37046. {
  37047. front: {
  37048. height: math.unit(3 + 3/12, "feet"),
  37049. weight: math.unit(88, "lb"),
  37050. name: "Front",
  37051. image: {
  37052. source: "./media/characters/trey/front.svg",
  37053. extra: 1815/1509,
  37054. bottom: 60/1875
  37055. }
  37056. },
  37057. },
  37058. [
  37059. {
  37060. name: "Normal",
  37061. height: math.unit(3 + 3/12, "feet"),
  37062. default: true
  37063. },
  37064. ]
  37065. ))
  37066. characterMakers.push(() => makeCharacter(
  37067. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37068. {
  37069. front: {
  37070. height: math.unit(4, "meters"),
  37071. name: "Front",
  37072. image: {
  37073. source: "./media/characters/adelonda/front.svg",
  37074. extra: 1942/1775,
  37075. bottom: 33/1975
  37076. }
  37077. },
  37078. back: {
  37079. height: math.unit(4, "meters"),
  37080. name: "Back",
  37081. image: {
  37082. source: "./media/characters/adelonda/back.svg",
  37083. extra: 1932/1780,
  37084. bottom: 42/1974
  37085. }
  37086. },
  37087. bust: {
  37088. height: math.unit(1.8, "meter"),
  37089. name: "Bust",
  37090. image: {
  37091. source: "./media/characters/adelonda/bust.svg"
  37092. }
  37093. },
  37094. },
  37095. [
  37096. {
  37097. name: "Normal",
  37098. height: math.unit(4, "meters"),
  37099. default: true
  37100. },
  37101. ]
  37102. ))
  37103. characterMakers.push(() => makeCharacter(
  37104. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37105. {
  37106. front: {
  37107. height: math.unit(8 + 4/12, "feet"),
  37108. weight: math.unit(670, "lb"),
  37109. name: "Front",
  37110. image: {
  37111. source: "./media/characters/acadiel/front.svg",
  37112. extra: 1901/1595,
  37113. bottom: 142/2043
  37114. }
  37115. },
  37116. },
  37117. [
  37118. {
  37119. name: "Normal",
  37120. height: math.unit(8 + 4/12, "feet"),
  37121. default: true
  37122. },
  37123. {
  37124. name: "Macro",
  37125. height: math.unit(200, "feet")
  37126. },
  37127. ]
  37128. ))
  37129. characterMakers.push(() => makeCharacter(
  37130. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37131. {
  37132. front: {
  37133. height: math.unit(6 + 2/12, "feet"),
  37134. weight: math.unit(185, "lb"),
  37135. name: "Front",
  37136. image: {
  37137. source: "./media/characters/kayne-ein/front.svg",
  37138. extra: 1780/1560,
  37139. bottom: 81/1861
  37140. }
  37141. },
  37142. },
  37143. [
  37144. {
  37145. name: "Normal",
  37146. height: math.unit(6 + 2/12, "feet"),
  37147. default: true
  37148. },
  37149. {
  37150. name: "Transformation Stage",
  37151. height: math.unit(15, "feet")
  37152. },
  37153. {
  37154. name: "Macro",
  37155. height: math.unit(150, "feet")
  37156. },
  37157. {
  37158. name: "Earth's Shadow",
  37159. height: math.unit(6200, "miles")
  37160. },
  37161. {
  37162. name: "Universal Demon",
  37163. height: math.unit(28e9, "parsecs")
  37164. },
  37165. {
  37166. name: "Multiverse God",
  37167. height: math.unit(3, "multiverses")
  37168. },
  37169. ]
  37170. ))
  37171. characterMakers.push(() => makeCharacter(
  37172. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37173. {
  37174. front: {
  37175. height: math.unit(5 + 5/12, "feet"),
  37176. name: "Front",
  37177. image: {
  37178. source: "./media/characters/fawn/front.svg",
  37179. extra: 1873/1731,
  37180. bottom: 95/1968
  37181. }
  37182. },
  37183. back: {
  37184. height: math.unit(5 + 5/12, "feet"),
  37185. name: "Back",
  37186. image: {
  37187. source: "./media/characters/fawn/back.svg",
  37188. extra: 1813/1700,
  37189. bottom: 14/1827
  37190. }
  37191. },
  37192. hoof: {
  37193. height: math.unit(1.45, "feet"),
  37194. name: "Hoof",
  37195. image: {
  37196. source: "./media/characters/fawn/hoof.svg"
  37197. }
  37198. },
  37199. },
  37200. [
  37201. {
  37202. name: "Normal",
  37203. height: math.unit(5 + 5/12, "feet"),
  37204. default: true
  37205. },
  37206. ]
  37207. ))
  37208. characterMakers.push(() => makeCharacter(
  37209. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37210. {
  37211. front: {
  37212. height: math.unit(2 + 5/12, "feet"),
  37213. name: "Front",
  37214. image: {
  37215. source: "./media/characters/orion/front.svg",
  37216. extra: 1366/1304,
  37217. bottom: 43/1409
  37218. }
  37219. },
  37220. paw: {
  37221. height: math.unit(0.52, "feet"),
  37222. name: "Paw",
  37223. image: {
  37224. source: "./media/characters/orion/paw.svg"
  37225. }
  37226. },
  37227. },
  37228. [
  37229. {
  37230. name: "Normal",
  37231. height: math.unit(2 + 5/12, "feet"),
  37232. default: true
  37233. },
  37234. ]
  37235. ))
  37236. characterMakers.push(() => makeCharacter(
  37237. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37238. {
  37239. front: {
  37240. height: math.unit(5 + 10/12, "feet"),
  37241. name: "Front",
  37242. image: {
  37243. source: "./media/characters/vera/front.svg",
  37244. extra: 1680/1575,
  37245. bottom: 49/1729
  37246. }
  37247. },
  37248. back: {
  37249. height: math.unit(5 + 10/12, "feet"),
  37250. name: "Back",
  37251. image: {
  37252. source: "./media/characters/vera/back.svg",
  37253. extra: 1700/1588,
  37254. bottom: 18/1718
  37255. }
  37256. },
  37257. arcanine: {
  37258. height: math.unit(6 + 8/12, "feet"),
  37259. name: "Arcanine",
  37260. image: {
  37261. source: "./media/characters/vera/arcanine.svg",
  37262. extra: 1590/1511,
  37263. bottom: 71/1661
  37264. }
  37265. },
  37266. maw: {
  37267. height: math.unit(0.82, "feet"),
  37268. name: "Maw",
  37269. image: {
  37270. source: "./media/characters/vera/maw.svg"
  37271. }
  37272. },
  37273. mawArcanine: {
  37274. height: math.unit(0.97, "feet"),
  37275. name: "Maw (Arcanine)",
  37276. image: {
  37277. source: "./media/characters/vera/maw-arcanine.svg"
  37278. }
  37279. },
  37280. paw: {
  37281. height: math.unit(0.75, "feet"),
  37282. name: "Paw",
  37283. image: {
  37284. source: "./media/characters/vera/paw.svg"
  37285. }
  37286. },
  37287. pawprint: {
  37288. height: math.unit(0.52, "feet"),
  37289. name: "Pawprint",
  37290. image: {
  37291. source: "./media/characters/vera/pawprint.svg"
  37292. }
  37293. },
  37294. },
  37295. [
  37296. {
  37297. name: "Normal",
  37298. height: math.unit(5 + 10/12, "feet"),
  37299. default: true
  37300. },
  37301. {
  37302. name: "Macro",
  37303. height: math.unit(75, "feet")
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37309. {
  37310. front: {
  37311. height: math.unit(4, "feet"),
  37312. weight: math.unit(40, "lb"),
  37313. name: "Front",
  37314. image: {
  37315. source: "./media/characters/orvan-rabbit/front.svg",
  37316. extra: 1896/1642,
  37317. bottom: 29/1925
  37318. }
  37319. },
  37320. },
  37321. [
  37322. {
  37323. name: "Normal",
  37324. height: math.unit(4, "feet"),
  37325. default: true
  37326. },
  37327. ]
  37328. ))
  37329. characterMakers.push(() => makeCharacter(
  37330. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37331. {
  37332. front: {
  37333. height: math.unit(6, "feet"),
  37334. weight: math.unit(168, "lb"),
  37335. name: "Front",
  37336. image: {
  37337. source: "./media/characters/lisa/front.svg",
  37338. extra: 2065/1867,
  37339. bottom: 46/2111
  37340. }
  37341. },
  37342. back: {
  37343. height: math.unit(6, "feet"),
  37344. weight: math.unit(168, "lb"),
  37345. name: "Back",
  37346. image: {
  37347. source: "./media/characters/lisa/back.svg",
  37348. extra: 1982/1838,
  37349. bottom: 29/2011
  37350. }
  37351. },
  37352. maw: {
  37353. height: math.unit(0.81, "feet"),
  37354. name: "Maw",
  37355. image: {
  37356. source: "./media/characters/lisa/maw.svg"
  37357. }
  37358. },
  37359. paw: {
  37360. height: math.unit(0.9, "feet"),
  37361. name: "Paw",
  37362. image: {
  37363. source: "./media/characters/lisa/paw.svg"
  37364. }
  37365. },
  37366. caribousune: {
  37367. height: math.unit(7 + 2/12, "feet"),
  37368. weight: math.unit(268, "lb"),
  37369. name: "Caribousune",
  37370. image: {
  37371. source: "./media/characters/lisa/caribousune.svg",
  37372. extra: 1843/1633,
  37373. bottom: 29/1872
  37374. }
  37375. },
  37376. frontCaribousune: {
  37377. height: math.unit(7 + 2/12, "feet"),
  37378. weight: math.unit(268, "lb"),
  37379. name: "Front (Caribousune)",
  37380. image: {
  37381. source: "./media/characters/lisa/front-caribousune.svg",
  37382. extra: 1818/1638,
  37383. bottom: 52/1870
  37384. }
  37385. },
  37386. sideCaribousune: {
  37387. height: math.unit(7 + 2/12, "feet"),
  37388. weight: math.unit(268, "lb"),
  37389. name: "Side (Caribousune)",
  37390. image: {
  37391. source: "./media/characters/lisa/side-caribousune.svg",
  37392. extra: 1851/1635,
  37393. bottom: 16/1867
  37394. }
  37395. },
  37396. backCaribousune: {
  37397. height: math.unit(7 + 2/12, "feet"),
  37398. weight: math.unit(268, "lb"),
  37399. name: "Back (Caribousune)",
  37400. image: {
  37401. source: "./media/characters/lisa/back-caribousune.svg",
  37402. extra: 1801/1604,
  37403. bottom: 44/1845
  37404. }
  37405. },
  37406. caribou: {
  37407. height: math.unit(7 + 2/12, "feet"),
  37408. weight: math.unit(268, "lb"),
  37409. name: "Caribou",
  37410. image: {
  37411. source: "./media/characters/lisa/caribou.svg",
  37412. extra: 1843/1633,
  37413. bottom: 29/1872
  37414. }
  37415. },
  37416. frontCaribou: {
  37417. height: math.unit(7 + 2/12, "feet"),
  37418. weight: math.unit(268, "lb"),
  37419. name: "Front (Caribou)",
  37420. image: {
  37421. source: "./media/characters/lisa/front-caribou.svg",
  37422. extra: 1818/1638,
  37423. bottom: 52/1870
  37424. }
  37425. },
  37426. sideCaribou: {
  37427. height: math.unit(7 + 2/12, "feet"),
  37428. weight: math.unit(268, "lb"),
  37429. name: "Side (Caribou)",
  37430. image: {
  37431. source: "./media/characters/lisa/side-caribou.svg",
  37432. extra: 1851/1635,
  37433. bottom: 16/1867
  37434. }
  37435. },
  37436. backCaribou: {
  37437. height: math.unit(7 + 2/12, "feet"),
  37438. weight: math.unit(268, "lb"),
  37439. name: "Back (Caribou)",
  37440. image: {
  37441. source: "./media/characters/lisa/back-caribou.svg",
  37442. extra: 1801/1604,
  37443. bottom: 44/1845
  37444. }
  37445. },
  37446. mawCaribou: {
  37447. height: math.unit(1.45, "feet"),
  37448. name: "Maw (Caribou)",
  37449. image: {
  37450. source: "./media/characters/lisa/maw-caribou.svg"
  37451. }
  37452. },
  37453. mawCaribousune: {
  37454. height: math.unit(1.45, "feet"),
  37455. name: "Maw (Caribousune)",
  37456. image: {
  37457. source: "./media/characters/lisa/maw-caribousune.svg"
  37458. }
  37459. },
  37460. pawCaribousune: {
  37461. height: math.unit(1.61, "feet"),
  37462. name: "Paw (Caribou)",
  37463. image: {
  37464. source: "./media/characters/lisa/paw-caribousune.svg"
  37465. }
  37466. },
  37467. },
  37468. [
  37469. {
  37470. name: "Normal",
  37471. height: math.unit(6, "feet")
  37472. },
  37473. {
  37474. name: "God Size",
  37475. height: math.unit(72, "feet"),
  37476. default: true
  37477. },
  37478. {
  37479. name: "Towering",
  37480. height: math.unit(288, "feet")
  37481. },
  37482. {
  37483. name: "City Size",
  37484. height: math.unit(48384, "feet")
  37485. },
  37486. {
  37487. name: "Continental",
  37488. height: math.unit(4200, "miles")
  37489. },
  37490. {
  37491. name: "Planet Eater",
  37492. height: math.unit(42, "earths")
  37493. },
  37494. {
  37495. name: "Star Swallower",
  37496. height: math.unit(42, "solarradii")
  37497. },
  37498. {
  37499. name: "System Swallower",
  37500. height: math.unit(84000, "AU")
  37501. },
  37502. {
  37503. name: "Galaxy Gobbler",
  37504. height: math.unit(42, "galaxies")
  37505. },
  37506. {
  37507. name: "Universe Devourer",
  37508. height: math.unit(42, "universes")
  37509. },
  37510. {
  37511. name: "Multiverse Muncher",
  37512. height: math.unit(42, "multiverses")
  37513. },
  37514. ]
  37515. ))
  37516. characterMakers.push(() => makeCharacter(
  37517. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37518. {
  37519. front: {
  37520. height: math.unit(36, "feet"),
  37521. name: "Front",
  37522. image: {
  37523. source: "./media/characters/shadow-rat/front.svg",
  37524. extra: 1845/1758,
  37525. bottom: 83/1928
  37526. }
  37527. },
  37528. },
  37529. [
  37530. {
  37531. name: "Macro",
  37532. height: math.unit(36, "feet"),
  37533. default: true
  37534. },
  37535. ]
  37536. ))
  37537. characterMakers.push(() => makeCharacter(
  37538. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37539. {
  37540. side: {
  37541. height: math.unit(8, "feet"),
  37542. weight: math.unit(2630, "lb"),
  37543. name: "Side",
  37544. image: {
  37545. source: "./media/characters/torallia/side.svg",
  37546. extra: 2164/2021,
  37547. bottom: 371/2535
  37548. }
  37549. },
  37550. },
  37551. [
  37552. {
  37553. name: "Mortal Interaction",
  37554. height: math.unit(8, "feet")
  37555. },
  37556. {
  37557. name: "Natural",
  37558. height: math.unit(24, "feet"),
  37559. default: true
  37560. },
  37561. {
  37562. name: "Giant",
  37563. height: math.unit(80, "feet")
  37564. },
  37565. {
  37566. name: "Kaiju",
  37567. height: math.unit(240, "feet")
  37568. },
  37569. {
  37570. name: "Macro",
  37571. height: math.unit(800, "feet")
  37572. },
  37573. {
  37574. name: "Macro+",
  37575. height: math.unit(2400, "feet")
  37576. },
  37577. {
  37578. name: "Macro++",
  37579. height: math.unit(8000, "feet")
  37580. },
  37581. {
  37582. name: "City-Crushing",
  37583. height: math.unit(24000, "feet")
  37584. },
  37585. {
  37586. name: "Mountain-Mashing",
  37587. height: math.unit(80000, "feet")
  37588. },
  37589. {
  37590. name: "District Demolisher",
  37591. height: math.unit(240000, "feet")
  37592. },
  37593. {
  37594. name: "Tri-County Terror",
  37595. height: math.unit(800000, "feet")
  37596. },
  37597. {
  37598. name: "State Smasher",
  37599. height: math.unit(2.4e6, "feet")
  37600. },
  37601. {
  37602. name: "Nation Nemesis",
  37603. height: math.unit(8e6, "feet")
  37604. },
  37605. {
  37606. name: "Continent Cracker",
  37607. height: math.unit(2.4e7, "feet")
  37608. },
  37609. {
  37610. name: "Planet-Pillaging",
  37611. height: math.unit(8e7, "feet")
  37612. },
  37613. {
  37614. name: "Earth-Eclipsing",
  37615. height: math.unit(2.4e8, "feet")
  37616. },
  37617. {
  37618. name: "Jovian-Jostling",
  37619. height: math.unit(8e8, "feet")
  37620. },
  37621. {
  37622. name: "Gas Giant Gulper",
  37623. height: math.unit(2.4e9, "feet")
  37624. },
  37625. {
  37626. name: "Astral Annihilator",
  37627. height: math.unit(8e9, "feet")
  37628. },
  37629. {
  37630. name: "Celestial Conqueror",
  37631. height: math.unit(2.4e10, "feet")
  37632. },
  37633. {
  37634. name: "Sol-Swallowing",
  37635. height: math.unit(8e10, "feet")
  37636. },
  37637. {
  37638. name: "Hunter of the Heavens",
  37639. height: math.unit(2.4e13, "feet")
  37640. },
  37641. ]
  37642. ))
  37643. characterMakers.push(() => makeCharacter(
  37644. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37645. {
  37646. front: {
  37647. height: math.unit(6 + 8/12, "feet"),
  37648. name: "Front",
  37649. image: {
  37650. source: "./media/characters/rebecca-pawlson/front.svg",
  37651. extra: 1737/1596,
  37652. bottom: 107/1844
  37653. }
  37654. },
  37655. back: {
  37656. height: math.unit(6 + 8/12, "feet"),
  37657. name: "Back",
  37658. image: {
  37659. source: "./media/characters/rebecca-pawlson/back.svg",
  37660. extra: 1702/1523,
  37661. bottom: 86/1788
  37662. }
  37663. },
  37664. },
  37665. [
  37666. {
  37667. name: "Normal",
  37668. height: math.unit(6 + 8/12, "feet")
  37669. },
  37670. {
  37671. name: "Mini Macro",
  37672. height: math.unit(10, "feet"),
  37673. default: true
  37674. },
  37675. {
  37676. name: "Macro",
  37677. height: math.unit(100, "feet")
  37678. },
  37679. {
  37680. name: "Mega Macro",
  37681. height: math.unit(2500, "feet")
  37682. },
  37683. {
  37684. name: "Giga Macro",
  37685. height: math.unit(50, "miles")
  37686. },
  37687. ]
  37688. ))
  37689. characterMakers.push(() => makeCharacter(
  37690. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37691. {
  37692. front: {
  37693. height: math.unit(7 + 6/12, "feet"),
  37694. weight: math.unit(600, "lb"),
  37695. name: "Front",
  37696. image: {
  37697. source: "./media/characters/moxie-nova/front.svg",
  37698. extra: 1734/1652,
  37699. bottom: 41/1775
  37700. }
  37701. },
  37702. },
  37703. [
  37704. {
  37705. name: "Normal",
  37706. height: math.unit(7 + 6/12, "feet"),
  37707. default: true
  37708. },
  37709. ]
  37710. ))
  37711. characterMakers.push(() => makeCharacter(
  37712. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37713. {
  37714. front: {
  37715. height: math.unit(5, "feet"),
  37716. weight: math.unit(150, "lb"),
  37717. name: "Front",
  37718. image: {
  37719. source: "./media/characters/tiffany/front.svg",
  37720. extra: 1941/1845,
  37721. bottom: 58/1999
  37722. }
  37723. },
  37724. },
  37725. [
  37726. {
  37727. name: "Normal",
  37728. height: math.unit(5, "feet"),
  37729. default: true
  37730. },
  37731. ]
  37732. ))
  37733. characterMakers.push(() => makeCharacter(
  37734. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37735. {
  37736. front: {
  37737. height: math.unit(8, "feet"),
  37738. weight: math.unit(300, "lb"),
  37739. name: "Front",
  37740. image: {
  37741. source: "./media/characters/raxinath/front.svg",
  37742. extra: 1407/1309,
  37743. bottom: 39/1446
  37744. }
  37745. },
  37746. back: {
  37747. height: math.unit(8, "feet"),
  37748. weight: math.unit(300, "lb"),
  37749. name: "Back",
  37750. image: {
  37751. source: "./media/characters/raxinath/back.svg",
  37752. extra: 1405/1315,
  37753. bottom: 9/1414
  37754. }
  37755. },
  37756. },
  37757. [
  37758. {
  37759. name: "Speck",
  37760. height: math.unit(0.5, "nm")
  37761. },
  37762. {
  37763. name: "Micro",
  37764. height: math.unit(3, "inches")
  37765. },
  37766. {
  37767. name: "Kobold",
  37768. height: math.unit(3, "feet")
  37769. },
  37770. {
  37771. name: "Normal",
  37772. height: math.unit(8, "feet"),
  37773. default: true
  37774. },
  37775. {
  37776. name: "Giant",
  37777. height: math.unit(50, "feet")
  37778. },
  37779. {
  37780. name: "Macro",
  37781. height: math.unit(1000, "feet")
  37782. },
  37783. {
  37784. name: "Megamacro",
  37785. height: math.unit(1, "mile")
  37786. },
  37787. ]
  37788. ))
  37789. characterMakers.push(() => makeCharacter(
  37790. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37791. {
  37792. front: {
  37793. height: math.unit(10, "feet"),
  37794. weight: math.unit(1442, "lb"),
  37795. name: "Front",
  37796. image: {
  37797. source: "./media/characters/mal-dragon/front.svg",
  37798. extra: 1515/1444,
  37799. bottom: 113/1628
  37800. }
  37801. },
  37802. back: {
  37803. height: math.unit(10, "feet"),
  37804. weight: math.unit(1442, "lb"),
  37805. name: "Back",
  37806. image: {
  37807. source: "./media/characters/mal-dragon/back.svg",
  37808. extra: 1527/1434,
  37809. bottom: 25/1552
  37810. }
  37811. },
  37812. },
  37813. [
  37814. {
  37815. name: "Mortal Interaction",
  37816. height: math.unit(10, "feet"),
  37817. default: true
  37818. },
  37819. {
  37820. name: "Large",
  37821. height: math.unit(30, "feet")
  37822. },
  37823. {
  37824. name: "Kaiju",
  37825. height: math.unit(300, "feet")
  37826. },
  37827. {
  37828. name: "Megamacro",
  37829. height: math.unit(10000, "feet")
  37830. },
  37831. {
  37832. name: "Continent Cracker",
  37833. height: math.unit(30000000, "feet")
  37834. },
  37835. {
  37836. name: "Sol-Swallowing",
  37837. height: math.unit(1e11, "feet")
  37838. },
  37839. {
  37840. name: "Light Universal",
  37841. height: math.unit(5, "universes")
  37842. },
  37843. {
  37844. name: "Universe Atoms",
  37845. height: math.unit(1.829e9, "universes")
  37846. },
  37847. {
  37848. name: "Light Multiversal",
  37849. height: math.unit(5, "multiverses")
  37850. },
  37851. {
  37852. name: "Multiverse Atoms",
  37853. height: math.unit(1.829e9, "multiverses")
  37854. },
  37855. {
  37856. name: "Fabric of Time",
  37857. height: math.unit(1e262, "multiverses")
  37858. },
  37859. ]
  37860. ))
  37861. characterMakers.push(() => makeCharacter(
  37862. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37863. {
  37864. front: {
  37865. height: math.unit(9, "feet"),
  37866. weight: math.unit(1050, "lb"),
  37867. name: "Front",
  37868. image: {
  37869. source: "./media/characters/tabitha/front.svg",
  37870. extra: 2083/1994,
  37871. bottom: 68/2151
  37872. }
  37873. },
  37874. },
  37875. [
  37876. {
  37877. name: "Baseline",
  37878. height: math.unit(9, "feet"),
  37879. default: true
  37880. },
  37881. {
  37882. name: "Giant",
  37883. height: math.unit(90, "feet")
  37884. },
  37885. {
  37886. name: "Macro",
  37887. height: math.unit(900, "feet")
  37888. },
  37889. {
  37890. name: "Megamacro",
  37891. height: math.unit(9000, "feet")
  37892. },
  37893. {
  37894. name: "City-Crushing",
  37895. height: math.unit(27000, "feet")
  37896. },
  37897. {
  37898. name: "Mountain-Mashing",
  37899. height: math.unit(90000, "feet")
  37900. },
  37901. {
  37902. name: "Nation Nemesis",
  37903. height: math.unit(9e6, "feet")
  37904. },
  37905. {
  37906. name: "Continent Cracker",
  37907. height: math.unit(27e6, "feet")
  37908. },
  37909. {
  37910. name: "Earth-Eclipsing",
  37911. height: math.unit(2.7e8, "feet")
  37912. },
  37913. {
  37914. name: "Gas Giant Gulper",
  37915. height: math.unit(2.7e9, "feet")
  37916. },
  37917. {
  37918. name: "Sol-Swallowing",
  37919. height: math.unit(9e10, "feet")
  37920. },
  37921. {
  37922. name: "Galaxy Gulper",
  37923. height: math.unit(9, "galaxies")
  37924. },
  37925. {
  37926. name: "Cosmos Churner",
  37927. height: math.unit(9, "universes")
  37928. },
  37929. ]
  37930. ))
  37931. characterMakers.push(() => makeCharacter(
  37932. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  37933. {
  37934. front: {
  37935. height: math.unit(160, "cm"),
  37936. weight: math.unit(55, "kg"),
  37937. name: "Front",
  37938. image: {
  37939. source: "./media/characters/tow/front.svg",
  37940. extra: 1751/1722,
  37941. bottom: 74/1825
  37942. }
  37943. },
  37944. },
  37945. [
  37946. {
  37947. name: "Norm",
  37948. height: math.unit(160, "cm")
  37949. },
  37950. {
  37951. name: "Casual",
  37952. height: math.unit(3200, "m"),
  37953. default: true
  37954. },
  37955. {
  37956. name: "Show-Off",
  37957. height: math.unit(160, "km")
  37958. },
  37959. ]
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  37963. {
  37964. front: {
  37965. height: math.unit(7 + 11/12, "feet"),
  37966. weight: math.unit(342.8, "lb"),
  37967. name: "Front",
  37968. image: {
  37969. source: "./media/characters/vivian-orca-dragon/front.svg",
  37970. extra: 1890/1865,
  37971. bottom: 28/1918
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Micro",
  37978. height: math.unit(5, "inches")
  37979. },
  37980. {
  37981. name: "Normal",
  37982. height: math.unit(7 + 11/12, "feet"),
  37983. default: true
  37984. },
  37985. {
  37986. name: "Macro",
  37987. height: math.unit(395 + 7/12, "feet")
  37988. },
  37989. ]
  37990. ))
  37991. characterMakers.push(() => makeCharacter(
  37992. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  37993. {
  37994. side: {
  37995. height: math.unit(10, "feet"),
  37996. weight: math.unit(1442, "lb"),
  37997. name: "Side",
  37998. image: {
  37999. source: "./media/characters/lotherakon/side.svg",
  38000. extra: 1604/1497,
  38001. bottom: 89/1693
  38002. }
  38003. },
  38004. },
  38005. [
  38006. {
  38007. name: "Mortal Interaction",
  38008. height: math.unit(10, "feet")
  38009. },
  38010. {
  38011. name: "Large",
  38012. height: math.unit(30, "feet"),
  38013. default: true
  38014. },
  38015. {
  38016. name: "Giant",
  38017. height: math.unit(100, "feet")
  38018. },
  38019. {
  38020. name: "Kaiju",
  38021. height: math.unit(300, "feet")
  38022. },
  38023. {
  38024. name: "Macro",
  38025. height: math.unit(1000, "feet")
  38026. },
  38027. {
  38028. name: "Macro+",
  38029. height: math.unit(3000, "feet")
  38030. },
  38031. {
  38032. name: "Megamacro",
  38033. height: math.unit(10000, "feet")
  38034. },
  38035. {
  38036. name: "City-Crushing",
  38037. height: math.unit(30000, "feet")
  38038. },
  38039. {
  38040. name: "Continent Cracker",
  38041. height: math.unit(30e6, "feet")
  38042. },
  38043. {
  38044. name: "Earth Eclipsing",
  38045. height: math.unit(3e8, "feet")
  38046. },
  38047. {
  38048. name: "Gas Giant Gulper",
  38049. height: math.unit(3e9, "feet")
  38050. },
  38051. {
  38052. name: "Sol-Swallowing",
  38053. height: math.unit(1e11, "feet")
  38054. },
  38055. {
  38056. name: "System Swallower",
  38057. height: math.unit(3e14, "feet")
  38058. },
  38059. {
  38060. name: "Galaxy Gulper",
  38061. height: math.unit(10, "galaxies")
  38062. },
  38063. {
  38064. name: "Light Universal",
  38065. height: math.unit(5, "universes")
  38066. },
  38067. {
  38068. name: "Universe Palm",
  38069. height: math.unit(20, "universes")
  38070. },
  38071. {
  38072. name: "Light Multiversal",
  38073. height: math.unit(5, "multiverses")
  38074. },
  38075. {
  38076. name: "Multiverse Palm",
  38077. height: math.unit(20, "multiverses")
  38078. },
  38079. {
  38080. name: "Inferno Incarnate",
  38081. height: math.unit(1e7, "multiverses")
  38082. },
  38083. ]
  38084. ))
  38085. characterMakers.push(() => makeCharacter(
  38086. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38087. {
  38088. front: {
  38089. height: math.unit(8, "feet"),
  38090. weight: math.unit(1200, "lb"),
  38091. name: "Front",
  38092. image: {
  38093. source: "./media/characters/malithee/front.svg",
  38094. extra: 1675/1640,
  38095. bottom: 162/1837
  38096. }
  38097. },
  38098. },
  38099. [
  38100. {
  38101. name: "Mortal Interaction",
  38102. height: math.unit(8, "feet"),
  38103. default: true
  38104. },
  38105. {
  38106. name: "Large",
  38107. height: math.unit(24, "feet")
  38108. },
  38109. {
  38110. name: "Kaiju",
  38111. height: math.unit(240, "feet")
  38112. },
  38113. {
  38114. name: "Megamacro",
  38115. height: math.unit(8000, "feet")
  38116. },
  38117. {
  38118. name: "Continent Cracker",
  38119. height: math.unit(24e6, "feet")
  38120. },
  38121. {
  38122. name: "Earth-Eclipsing",
  38123. height: math.unit(2.4e8, "feet")
  38124. },
  38125. {
  38126. name: "Sol-Swallowing",
  38127. height: math.unit(8e10, "feet")
  38128. },
  38129. {
  38130. name: "Galaxy Gulper",
  38131. height: math.unit(8, "galaxies")
  38132. },
  38133. {
  38134. name: "Light Universal",
  38135. height: math.unit(4, "universes")
  38136. },
  38137. {
  38138. name: "Universe Atoms",
  38139. height: math.unit(1.829e9, "universes")
  38140. },
  38141. {
  38142. name: "Light Multiversal",
  38143. height: math.unit(4, "multiverses")
  38144. },
  38145. {
  38146. name: "Multiverse Atoms",
  38147. height: math.unit(1.829e9, "multiverses")
  38148. },
  38149. {
  38150. name: "Nigh-Omnipresence",
  38151. height: math.unit(8e261, "multiverses")
  38152. },
  38153. ]
  38154. ))
  38155. characterMakers.push(() => makeCharacter(
  38156. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38157. {
  38158. front: {
  38159. height: math.unit(10, "feet"),
  38160. weight: math.unit(1500, "lb"),
  38161. name: "Front",
  38162. image: {
  38163. source: "./media/characters/miles-thestia/front.svg",
  38164. extra: 1812/1727,
  38165. bottom: 86/1898
  38166. }
  38167. },
  38168. back: {
  38169. height: math.unit(10, "feet"),
  38170. weight: math.unit(1500, "lb"),
  38171. name: "Back",
  38172. image: {
  38173. source: "./media/characters/miles-thestia/back.svg",
  38174. extra: 1799/1690,
  38175. bottom: 47/1846
  38176. }
  38177. },
  38178. frontNsfw: {
  38179. height: math.unit(10, "feet"),
  38180. weight: math.unit(1500, "lb"),
  38181. name: "Front (NSFW)",
  38182. image: {
  38183. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38184. extra: 1812/1727,
  38185. bottom: 86/1898
  38186. }
  38187. },
  38188. },
  38189. [
  38190. {
  38191. name: "Mini-Macro",
  38192. height: math.unit(10, "feet"),
  38193. default: true
  38194. },
  38195. ]
  38196. ))
  38197. characterMakers.push(() => makeCharacter(
  38198. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38199. {
  38200. front: {
  38201. height: math.unit(25, "feet"),
  38202. name: "Front",
  38203. image: {
  38204. source: "./media/characters/titan-s-wulf/front.svg",
  38205. extra: 1560/1484,
  38206. bottom: 76/1636
  38207. }
  38208. },
  38209. },
  38210. [
  38211. {
  38212. name: "Smallest",
  38213. height: math.unit(25, "feet"),
  38214. default: true
  38215. },
  38216. {
  38217. name: "Normal",
  38218. height: math.unit(200, "feet")
  38219. },
  38220. {
  38221. name: "Macro",
  38222. height: math.unit(200000, "feet")
  38223. },
  38224. {
  38225. name: "Multiversal Original",
  38226. height: math.unit(10000, "multiverses")
  38227. },
  38228. ]
  38229. ))
  38230. characterMakers.push(() => makeCharacter(
  38231. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38232. {
  38233. front: {
  38234. height: math.unit(8, "feet"),
  38235. weight: math.unit(553, "lb"),
  38236. name: "Front",
  38237. image: {
  38238. source: "./media/characters/tawendeh/front.svg",
  38239. extra: 2365/2268,
  38240. bottom: 83/2448
  38241. }
  38242. },
  38243. frontClothed: {
  38244. height: math.unit(8, "feet"),
  38245. weight: math.unit(553, "lb"),
  38246. name: "Front (Clothed)",
  38247. image: {
  38248. source: "./media/characters/tawendeh/front-clothed.svg",
  38249. extra: 2365/2268,
  38250. bottom: 83/2448
  38251. }
  38252. },
  38253. back: {
  38254. height: math.unit(8, "feet"),
  38255. weight: math.unit(553, "lb"),
  38256. name: "Back",
  38257. image: {
  38258. source: "./media/characters/tawendeh/back.svg",
  38259. extra: 2397/2294,
  38260. bottom: 42/2439
  38261. }
  38262. },
  38263. },
  38264. [
  38265. {
  38266. name: "Mortal Interaction",
  38267. height: math.unit(8, "feet"),
  38268. default: true
  38269. },
  38270. {
  38271. name: "Giant",
  38272. height: math.unit(80, "feet")
  38273. },
  38274. {
  38275. name: "Macro",
  38276. height: math.unit(800, "feet")
  38277. },
  38278. {
  38279. name: "Megamacro",
  38280. height: math.unit(8000, "feet")
  38281. },
  38282. {
  38283. name: "City-Crushing",
  38284. height: math.unit(24000, "feet")
  38285. },
  38286. {
  38287. name: "Mountain-Mashing",
  38288. height: math.unit(80000, "feet")
  38289. },
  38290. {
  38291. name: "Nation Nemesis",
  38292. height: math.unit(8e6, "feet")
  38293. },
  38294. {
  38295. name: "Continent Cracker",
  38296. height: math.unit(24e6, "feet")
  38297. },
  38298. {
  38299. name: "Earth-Eclipsing",
  38300. height: math.unit(2.4e8, "feet")
  38301. },
  38302. {
  38303. name: "Gas Giant Gulper",
  38304. height: math.unit(2.4e9, "feet")
  38305. },
  38306. {
  38307. name: "Sol-Swallowing",
  38308. height: math.unit(8e10, "feet")
  38309. },
  38310. {
  38311. name: "Galaxy Gulper",
  38312. height: math.unit(8, "galaxies")
  38313. },
  38314. {
  38315. name: "Cosmos Churner",
  38316. height: math.unit(8, "universes")
  38317. },
  38318. {
  38319. name: "Omnipotent Otter",
  38320. height: math.unit(80, "universes")
  38321. },
  38322. ]
  38323. ))
  38324. characterMakers.push(() => makeCharacter(
  38325. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38326. {
  38327. front: {
  38328. height: math.unit(2.6, "meters"),
  38329. weight: math.unit(900, "kg"),
  38330. name: "Front",
  38331. image: {
  38332. source: "./media/characters/neesha/front.svg",
  38333. extra: 1803/1653,
  38334. bottom: 128/1931
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Normal",
  38341. height: math.unit(2.6, "meters"),
  38342. default: true
  38343. },
  38344. {
  38345. name: "Macro",
  38346. height: math.unit(50, "meters")
  38347. },
  38348. ]
  38349. ))
  38350. characterMakers.push(() => makeCharacter(
  38351. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38352. {
  38353. front: {
  38354. height: math.unit(5, "feet"),
  38355. weight: math.unit(185, "lb"),
  38356. name: "Front",
  38357. image: {
  38358. source: "./media/characters/kyera/front.svg",
  38359. extra: 1875/1790,
  38360. bottom: 96/1971
  38361. }
  38362. },
  38363. },
  38364. [
  38365. {
  38366. name: "Normal",
  38367. height: math.unit(5, "feet"),
  38368. default: true
  38369. },
  38370. ]
  38371. ))
  38372. characterMakers.push(() => makeCharacter(
  38373. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38374. {
  38375. front: {
  38376. height: math.unit(7 + 6/12, "feet"),
  38377. weight: math.unit(540, "lb"),
  38378. name: "Front",
  38379. image: {
  38380. source: "./media/characters/yuko/front.svg",
  38381. extra: 1282/1222,
  38382. bottom: 101/1383
  38383. }
  38384. },
  38385. frontClothed: {
  38386. height: math.unit(7 + 6/12, "feet"),
  38387. weight: math.unit(540, "lb"),
  38388. name: "Front (Clothed)",
  38389. image: {
  38390. source: "./media/characters/yuko/front-clothed.svg",
  38391. extra: 1282/1222,
  38392. bottom: 101/1383
  38393. }
  38394. },
  38395. },
  38396. [
  38397. {
  38398. name: "Normal",
  38399. height: math.unit(7 + 6/12, "feet"),
  38400. default: true
  38401. },
  38402. {
  38403. name: "Macro",
  38404. height: math.unit(26 + 9/12, "feet")
  38405. },
  38406. {
  38407. name: "Megamacro",
  38408. height: math.unit(300, "feet")
  38409. },
  38410. {
  38411. name: "Gigamacro",
  38412. height: math.unit(5000, "feet")
  38413. },
  38414. {
  38415. name: "Planetary",
  38416. height: math.unit(10000, "miles")
  38417. },
  38418. ]
  38419. ))
  38420. characterMakers.push(() => makeCharacter(
  38421. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38422. {
  38423. front: {
  38424. height: math.unit(8 + 2/12, "feet"),
  38425. weight: math.unit(600, "lb"),
  38426. name: "Front",
  38427. image: {
  38428. source: "./media/characters/deam-nitrel/front.svg",
  38429. extra: 1308/1234,
  38430. bottom: 125/1433
  38431. }
  38432. },
  38433. },
  38434. [
  38435. {
  38436. name: "Normal",
  38437. height: math.unit(8 + 2/12, "feet"),
  38438. default: true
  38439. },
  38440. ]
  38441. ))
  38442. characterMakers.push(() => makeCharacter(
  38443. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38444. {
  38445. front: {
  38446. height: math.unit(6.1, "feet"),
  38447. weight: math.unit(180, "lb"),
  38448. name: "Front",
  38449. image: {
  38450. source: "./media/characters/skyress/front.svg",
  38451. extra: 1045/915,
  38452. bottom: 28/1073
  38453. }
  38454. },
  38455. maw: {
  38456. height: math.unit(1, "feet"),
  38457. name: "Maw",
  38458. image: {
  38459. source: "./media/characters/skyress/maw.svg"
  38460. }
  38461. },
  38462. },
  38463. [
  38464. {
  38465. name: "Normal",
  38466. height: math.unit(6.1, "feet"),
  38467. default: true
  38468. },
  38469. {
  38470. name: "Macro",
  38471. height: math.unit(200, "feet")
  38472. },
  38473. ]
  38474. ))
  38475. characterMakers.push(() => makeCharacter(
  38476. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38477. {
  38478. front: {
  38479. height: math.unit(4 + 2/12, "feet"),
  38480. weight: math.unit(40, "kg"),
  38481. name: "Front",
  38482. image: {
  38483. source: "./media/characters/amethyst-jones/front.svg",
  38484. extra: 1220/1150,
  38485. bottom: 101/1321
  38486. }
  38487. },
  38488. },
  38489. [
  38490. {
  38491. name: "Normal",
  38492. height: math.unit(4 + 2/12, "feet"),
  38493. default: true
  38494. },
  38495. ]
  38496. ))
  38497. characterMakers.push(() => makeCharacter(
  38498. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38499. {
  38500. front: {
  38501. height: math.unit(1.7, "m"),
  38502. weight: math.unit(135, "lb"),
  38503. name: "Front",
  38504. image: {
  38505. source: "./media/characters/jade/front.svg",
  38506. extra: 1818/1767,
  38507. bottom: 32/1850
  38508. }
  38509. },
  38510. back: {
  38511. height: math.unit(1.7, "m"),
  38512. weight: math.unit(135, "lb"),
  38513. name: "Back",
  38514. image: {
  38515. source: "./media/characters/jade/back.svg",
  38516. extra: 1869/1809,
  38517. bottom: 35/1904
  38518. }
  38519. },
  38520. hand: {
  38521. height: math.unit(0.24, "m"),
  38522. name: "Hand",
  38523. image: {
  38524. source: "./media/characters/jade/hand.svg"
  38525. }
  38526. },
  38527. foot: {
  38528. height: math.unit(0.263, "m"),
  38529. name: "Foot",
  38530. image: {
  38531. source: "./media/characters/jade/foot.svg"
  38532. }
  38533. },
  38534. dick: {
  38535. height: math.unit(0.47, "m"),
  38536. name: "Dick",
  38537. image: {
  38538. source: "./media/characters/jade/dick.svg"
  38539. }
  38540. },
  38541. },
  38542. [
  38543. {
  38544. name: "Micro",
  38545. height: math.unit(22, "cm")
  38546. },
  38547. {
  38548. name: "Normal",
  38549. height: math.unit(1.7, "m"),
  38550. default: true
  38551. },
  38552. {
  38553. name: "Macro",
  38554. height: math.unit(152, "m")
  38555. },
  38556. ]
  38557. ))
  38558. characterMakers.push(() => makeCharacter(
  38559. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38560. {
  38561. front: {
  38562. height: math.unit(100, "miles"),
  38563. weight: math.unit(20000, "tons"),
  38564. name: "Front",
  38565. image: {
  38566. source: "./media/characters/cookie/front.svg",
  38567. extra: 1125/1070,
  38568. bottom: 30/1155
  38569. }
  38570. },
  38571. },
  38572. [
  38573. {
  38574. name: "Big",
  38575. height: math.unit(50, "feet")
  38576. },
  38577. {
  38578. name: "Macro",
  38579. height: math.unit(100, "miles"),
  38580. default: true
  38581. },
  38582. {
  38583. name: "Megamacro",
  38584. height: math.unit(90000, "miles")
  38585. },
  38586. ]
  38587. ))
  38588. characterMakers.push(() => makeCharacter(
  38589. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38590. {
  38591. front: {
  38592. height: math.unit(6, "feet"),
  38593. weight: math.unit(145, "lb"),
  38594. name: "Front",
  38595. image: {
  38596. source: "./media/characters/farzian/front.svg",
  38597. extra: 1902/1693,
  38598. bottom: 108/2010
  38599. }
  38600. },
  38601. },
  38602. [
  38603. {
  38604. name: "Macro",
  38605. height: math.unit(500, "feet"),
  38606. default: true
  38607. },
  38608. ]
  38609. ))
  38610. characterMakers.push(() => makeCharacter(
  38611. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38612. {
  38613. front: {
  38614. height: math.unit(3 + 6/12, "feet"),
  38615. weight: math.unit(50, "lb"),
  38616. name: "Front",
  38617. image: {
  38618. source: "./media/characters/kimberly-tilson/front.svg",
  38619. extra: 1400/1322,
  38620. bottom: 36/1436
  38621. }
  38622. },
  38623. back: {
  38624. height: math.unit(3 + 6/12, "feet"),
  38625. weight: math.unit(50, "lb"),
  38626. name: "Back",
  38627. image: {
  38628. source: "./media/characters/kimberly-tilson/back.svg",
  38629. extra: 1370/1307,
  38630. bottom: 20/1390
  38631. }
  38632. },
  38633. },
  38634. [
  38635. {
  38636. name: "Normal",
  38637. height: math.unit(3 + 6/12, "feet"),
  38638. default: true
  38639. },
  38640. ]
  38641. ))
  38642. characterMakers.push(() => makeCharacter(
  38643. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38644. {
  38645. front: {
  38646. height: math.unit(1148, "feet"),
  38647. weight: math.unit(34057, "lb"),
  38648. name: "Front",
  38649. image: {
  38650. source: "./media/characters/harthos/front.svg",
  38651. extra: 1391/1339,
  38652. bottom: 13/1404
  38653. }
  38654. },
  38655. },
  38656. [
  38657. {
  38658. name: "Macro",
  38659. height: math.unit(1148, "feet"),
  38660. default: true
  38661. },
  38662. ]
  38663. ))
  38664. characterMakers.push(() => makeCharacter(
  38665. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38666. {
  38667. front: {
  38668. height: math.unit(15, "feet"),
  38669. name: "Front",
  38670. image: {
  38671. source: "./media/characters/hypatia/front.svg",
  38672. extra: 1653/1591,
  38673. bottom: 79/1732
  38674. }
  38675. },
  38676. },
  38677. [
  38678. {
  38679. name: "Normal",
  38680. height: math.unit(15, "feet")
  38681. },
  38682. {
  38683. name: "Small",
  38684. height: math.unit(300, "feet")
  38685. },
  38686. {
  38687. name: "Macro",
  38688. height: math.unit(2500, "feet"),
  38689. default: true
  38690. },
  38691. {
  38692. name: "Mega Macro",
  38693. height: math.unit(1500, "miles")
  38694. },
  38695. {
  38696. name: "Giga Macro",
  38697. height: math.unit(1.5e6, "miles")
  38698. },
  38699. ]
  38700. ))
  38701. characterMakers.push(() => makeCharacter(
  38702. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38703. {
  38704. front: {
  38705. height: math.unit(6, "feet"),
  38706. weight: math.unit(200, "lb"),
  38707. name: "Front",
  38708. image: {
  38709. source: "./media/characters/wulver/front.svg",
  38710. extra: 1724/1632,
  38711. bottom: 130/1854
  38712. }
  38713. },
  38714. frontNsfw: {
  38715. height: math.unit(6, "feet"),
  38716. weight: math.unit(200, "lb"),
  38717. name: "Front (NSFW)",
  38718. image: {
  38719. source: "./media/characters/wulver/front-nsfw.svg",
  38720. extra: 1724/1632,
  38721. bottom: 130/1854
  38722. }
  38723. },
  38724. },
  38725. [
  38726. {
  38727. name: "Human-Sized",
  38728. height: math.unit(6, "feet")
  38729. },
  38730. {
  38731. name: "Normal",
  38732. height: math.unit(4, "meters"),
  38733. default: true
  38734. },
  38735. {
  38736. name: "Large",
  38737. height: math.unit(6, "m")
  38738. },
  38739. ]
  38740. ))
  38741. characterMakers.push(() => makeCharacter(
  38742. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38743. {
  38744. front: {
  38745. height: math.unit(7, "feet"),
  38746. name: "Front",
  38747. image: {
  38748. source: "./media/characters/maru/front.svg",
  38749. extra: 1595/1570,
  38750. bottom: 0/1595
  38751. }
  38752. },
  38753. },
  38754. [
  38755. {
  38756. name: "Normal",
  38757. height: math.unit(7, "feet"),
  38758. default: true
  38759. },
  38760. {
  38761. name: "Macro",
  38762. height: math.unit(700, "feet")
  38763. },
  38764. {
  38765. name: "Mega Macro",
  38766. height: math.unit(25, "miles")
  38767. },
  38768. ]
  38769. ))
  38770. characterMakers.push(() => makeCharacter(
  38771. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38772. {
  38773. front: {
  38774. height: math.unit(6, "feet"),
  38775. weight: math.unit(170, "lb"),
  38776. name: "Front",
  38777. image: {
  38778. source: "./media/characters/xenon/front.svg",
  38779. extra: 1376/1305,
  38780. bottom: 56/1432
  38781. }
  38782. },
  38783. back: {
  38784. height: math.unit(6, "feet"),
  38785. weight: math.unit(170, "lb"),
  38786. name: "Back",
  38787. image: {
  38788. source: "./media/characters/xenon/back.svg",
  38789. extra: 1328/1259,
  38790. bottom: 95/1423
  38791. }
  38792. },
  38793. maw: {
  38794. height: math.unit(0.52, "feet"),
  38795. name: "Maw",
  38796. image: {
  38797. source: "./media/characters/xenon/maw.svg"
  38798. }
  38799. },
  38800. hand: {
  38801. height: math.unit(0.82, "feet"),
  38802. name: "Hand",
  38803. image: {
  38804. source: "./media/characters/xenon/hand.svg"
  38805. }
  38806. },
  38807. foot: {
  38808. height: math.unit(1.13, "feet"),
  38809. name: "Foot",
  38810. image: {
  38811. source: "./media/characters/xenon/foot.svg"
  38812. }
  38813. },
  38814. },
  38815. [
  38816. {
  38817. name: "Micro",
  38818. height: math.unit(0.8, "inches")
  38819. },
  38820. {
  38821. name: "Normal",
  38822. height: math.unit(6, "feet")
  38823. },
  38824. {
  38825. name: "Macro",
  38826. height: math.unit(50, "feet"),
  38827. default: true
  38828. },
  38829. {
  38830. name: "Macro+",
  38831. height: math.unit(250, "feet")
  38832. },
  38833. {
  38834. name: "Megamacro",
  38835. height: math.unit(1500, "feet")
  38836. },
  38837. ]
  38838. ))
  38839. characterMakers.push(() => makeCharacter(
  38840. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38841. {
  38842. front: {
  38843. height: math.unit(7 + 5/12, "feet"),
  38844. name: "Front",
  38845. image: {
  38846. source: "./media/characters/zane/front.svg",
  38847. extra: 1260/1203,
  38848. bottom: 94/1354
  38849. }
  38850. },
  38851. back: {
  38852. height: math.unit(5.05, "feet"),
  38853. name: "Back",
  38854. image: {
  38855. source: "./media/characters/zane/back.svg",
  38856. extra: 893/829,
  38857. bottom: 30/923
  38858. }
  38859. },
  38860. werewolf: {
  38861. height: math.unit(11, "feet"),
  38862. name: "Werewolf",
  38863. image: {
  38864. source: "./media/characters/zane/werewolf.svg",
  38865. extra: 1383/1323,
  38866. bottom: 89/1472
  38867. }
  38868. },
  38869. foot: {
  38870. height: math.unit(1.46, "feet"),
  38871. name: "Foot",
  38872. image: {
  38873. source: "./media/characters/zane/foot.svg"
  38874. }
  38875. },
  38876. footFront: {
  38877. height: math.unit(0.784, "feet"),
  38878. name: "Foot (Front)",
  38879. image: {
  38880. source: "./media/characters/zane/foot-front.svg"
  38881. }
  38882. },
  38883. dick: {
  38884. height: math.unit(1.95, "feet"),
  38885. name: "Dick",
  38886. image: {
  38887. source: "./media/characters/zane/dick.svg"
  38888. }
  38889. },
  38890. dickWerewolf: {
  38891. height: math.unit(3.77, "feet"),
  38892. name: "Dick (Werewolf)",
  38893. image: {
  38894. source: "./media/characters/zane/dick.svg"
  38895. }
  38896. },
  38897. },
  38898. [
  38899. {
  38900. name: "Normal",
  38901. height: math.unit(7 + 5/12, "feet"),
  38902. default: true
  38903. },
  38904. ]
  38905. ))
  38906. characterMakers.push(() => makeCharacter(
  38907. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  38908. {
  38909. front: {
  38910. height: math.unit(6 + 2/12, "feet"),
  38911. weight: math.unit(284, "lb"),
  38912. name: "Front",
  38913. image: {
  38914. source: "./media/characters/benni-desparque/front.svg",
  38915. extra: 1353/1126,
  38916. bottom: 69/1422
  38917. }
  38918. },
  38919. },
  38920. [
  38921. {
  38922. name: "Civilian",
  38923. height: math.unit(6 + 2/12, "feet")
  38924. },
  38925. {
  38926. name: "Normal",
  38927. height: math.unit(98, "feet"),
  38928. default: true
  38929. },
  38930. {
  38931. name: "Kaiju Fighter",
  38932. height: math.unit(268, "feet")
  38933. },
  38934. ]
  38935. ))
  38936. characterMakers.push(() => makeCharacter(
  38937. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  38938. {
  38939. front: {
  38940. height: math.unit(5, "feet"),
  38941. weight: math.unit(105, "lb"),
  38942. name: "Front",
  38943. image: {
  38944. source: "./media/characters/maxine/front.svg",
  38945. extra: 1386/1250,
  38946. bottom: 71/1457
  38947. }
  38948. },
  38949. },
  38950. [
  38951. {
  38952. name: "Normal",
  38953. height: math.unit(5, "feet"),
  38954. default: true
  38955. },
  38956. ]
  38957. ))
  38958. characterMakers.push(() => makeCharacter(
  38959. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  38960. {
  38961. front: {
  38962. height: math.unit(11 + 7/12, "feet"),
  38963. weight: math.unit(9576, "lb"),
  38964. name: "Front",
  38965. image: {
  38966. source: "./media/characters/scaly/front.svg",
  38967. extra: 888/867,
  38968. bottom: 36/924
  38969. }
  38970. },
  38971. },
  38972. [
  38973. {
  38974. name: "Normal",
  38975. height: math.unit(11 + 7/12, "feet"),
  38976. default: true
  38977. },
  38978. ]
  38979. ))
  38980. characterMakers.push(() => makeCharacter(
  38981. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  38982. {
  38983. front: {
  38984. height: math.unit(9, "inches"),
  38985. name: "Front",
  38986. image: {
  38987. source: "./media/characters/saelria/front.svg",
  38988. extra: 662/621,
  38989. bottom: 12/674
  38990. }
  38991. },
  38992. },
  38993. [
  38994. {
  38995. name: "Tiny",
  38996. height: math.unit(9, "inches"),
  38997. default: true
  38998. },
  38999. ]
  39000. ))
  39001. characterMakers.push(() => makeCharacter(
  39002. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39003. {
  39004. front: {
  39005. height: math.unit(80, "meters"),
  39006. weight: math.unit(7000, "tonnes"),
  39007. name: "Front",
  39008. image: {
  39009. source: "./media/characters/tef/front.svg",
  39010. extra: 2036/1991,
  39011. bottom: 54/2090
  39012. }
  39013. },
  39014. back: {
  39015. height: math.unit(80, "meters"),
  39016. weight: math.unit(7000, "tonnes"),
  39017. name: "Back",
  39018. image: {
  39019. source: "./media/characters/tef/back.svg",
  39020. extra: 2036/1991,
  39021. bottom: 54/2090
  39022. }
  39023. },
  39024. },
  39025. [
  39026. {
  39027. name: "Macro",
  39028. height: math.unit(80, "meters"),
  39029. default: true
  39030. },
  39031. ]
  39032. ))
  39033. characterMakers.push(() => makeCharacter(
  39034. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39035. {
  39036. front: {
  39037. height: math.unit(13, "feet"),
  39038. weight: math.unit(6, "tons"),
  39039. name: "Front",
  39040. image: {
  39041. source: "./media/characters/rover/front.svg",
  39042. extra: 1233/1156,
  39043. bottom: 50/1283
  39044. }
  39045. },
  39046. back: {
  39047. height: math.unit(13, "feet"),
  39048. weight: math.unit(6, "tons"),
  39049. name: "Back",
  39050. image: {
  39051. source: "./media/characters/rover/back.svg",
  39052. extra: 1327/1258,
  39053. bottom: 39/1366
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Normal",
  39060. height: math.unit(13, "feet"),
  39061. default: true
  39062. },
  39063. {
  39064. name: "Macro",
  39065. height: math.unit(1300, "feet")
  39066. },
  39067. {
  39068. name: "Megamacro",
  39069. height: math.unit(1300, "miles")
  39070. },
  39071. {
  39072. name: "Gigamacro",
  39073. height: math.unit(1300000, "miles")
  39074. },
  39075. ]
  39076. ))
  39077. characterMakers.push(() => makeCharacter(
  39078. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39079. {
  39080. front: {
  39081. height: math.unit(6, "feet"),
  39082. weight: math.unit(150, "lb"),
  39083. name: "Front",
  39084. image: {
  39085. source: "./media/characters/ariz/front.svg",
  39086. extra: 1401/1346,
  39087. bottom: 5/1406
  39088. }
  39089. },
  39090. },
  39091. [
  39092. {
  39093. name: "Normal",
  39094. height: math.unit(10, "feet"),
  39095. default: true
  39096. },
  39097. ]
  39098. ))
  39099. characterMakers.push(() => makeCharacter(
  39100. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39101. {
  39102. front: {
  39103. height: math.unit(6, "feet"),
  39104. weight: math.unit(140, "lb"),
  39105. name: "Front",
  39106. image: {
  39107. source: "./media/characters/sigrun/front.svg",
  39108. extra: 1418/1359,
  39109. bottom: 27/1445
  39110. }
  39111. },
  39112. },
  39113. [
  39114. {
  39115. name: "Macro",
  39116. height: math.unit(35, "feet"),
  39117. default: true
  39118. },
  39119. ]
  39120. ))
  39121. characterMakers.push(() => makeCharacter(
  39122. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39123. {
  39124. front: {
  39125. height: math.unit(6, "feet"),
  39126. weight: math.unit(150, "lb"),
  39127. name: "Front",
  39128. image: {
  39129. source: "./media/characters/numin/front.svg",
  39130. extra: 1433/1388,
  39131. bottom: 12/1445
  39132. }
  39133. },
  39134. },
  39135. [
  39136. {
  39137. name: "Macro",
  39138. height: math.unit(21.5, "km"),
  39139. default: true
  39140. },
  39141. ]
  39142. ))
  39143. characterMakers.push(() => makeCharacter(
  39144. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39145. {
  39146. front: {
  39147. height: math.unit(6, "feet"),
  39148. weight: math.unit(463, "lb"),
  39149. name: "Front",
  39150. image: {
  39151. source: "./media/characters/melwa/front.svg",
  39152. extra: 1307/1248,
  39153. bottom: 93/1400
  39154. }
  39155. },
  39156. },
  39157. [
  39158. {
  39159. name: "Macro",
  39160. height: math.unit(50, "meters"),
  39161. default: true
  39162. },
  39163. ]
  39164. ))
  39165. characterMakers.push(() => makeCharacter(
  39166. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39167. {
  39168. front: {
  39169. height: math.unit(325, "feet"),
  39170. name: "Front",
  39171. image: {
  39172. source: "./media/characters/zorkaiju/front.svg",
  39173. extra: 1955/1814,
  39174. bottom: 40/1995
  39175. }
  39176. },
  39177. frontExtended: {
  39178. height: math.unit(325, "feet"),
  39179. name: "Front (Extended)",
  39180. image: {
  39181. source: "./media/characters/zorkaiju/front-extended.svg",
  39182. extra: 1955/1814,
  39183. bottom: 40/1995
  39184. }
  39185. },
  39186. side: {
  39187. height: math.unit(325, "feet"),
  39188. name: "Side",
  39189. image: {
  39190. source: "./media/characters/zorkaiju/side.svg",
  39191. extra: 1495/1396,
  39192. bottom: 17/1512
  39193. }
  39194. },
  39195. sideExtended: {
  39196. height: math.unit(325, "feet"),
  39197. name: "Side (Extended)",
  39198. image: {
  39199. source: "./media/characters/zorkaiju/side-extended.svg",
  39200. extra: 1495/1396,
  39201. bottom: 17/1512
  39202. }
  39203. },
  39204. back: {
  39205. height: math.unit(325, "feet"),
  39206. name: "Back",
  39207. image: {
  39208. source: "./media/characters/zorkaiju/back.svg",
  39209. extra: 1959/1821,
  39210. bottom: 31/1990
  39211. }
  39212. },
  39213. backExtended: {
  39214. height: math.unit(325, "feet"),
  39215. name: "Back (Extended)",
  39216. image: {
  39217. source: "./media/characters/zorkaiju/back-extended.svg",
  39218. extra: 1959/1821,
  39219. bottom: 31/1990
  39220. }
  39221. },
  39222. hand: {
  39223. height: math.unit(58.4, "feet"),
  39224. name: "Hand",
  39225. image: {
  39226. source: "./media/characters/zorkaiju/hand.svg"
  39227. }
  39228. },
  39229. handExtended: {
  39230. height: math.unit(61.4, "feet"),
  39231. name: "Hand (Extended)",
  39232. image: {
  39233. source: "./media/characters/zorkaiju/hand-extended.svg"
  39234. }
  39235. },
  39236. foot: {
  39237. height: math.unit(95, "feet"),
  39238. name: "Foot",
  39239. image: {
  39240. source: "./media/characters/zorkaiju/foot.svg"
  39241. }
  39242. },
  39243. leftArm: {
  39244. height: math.unit(59, "feet"),
  39245. name: "Left Arm",
  39246. image: {
  39247. source: "./media/characters/zorkaiju/left-arm.svg"
  39248. }
  39249. },
  39250. rightArm: {
  39251. height: math.unit(59, "feet"),
  39252. name: "Right Arm",
  39253. image: {
  39254. source: "./media/characters/zorkaiju/right-arm.svg"
  39255. }
  39256. },
  39257. tail: {
  39258. height: math.unit(104, "feet"),
  39259. name: "Tail",
  39260. image: {
  39261. source: "./media/characters/zorkaiju/tail.svg"
  39262. }
  39263. },
  39264. tailExtended: {
  39265. height: math.unit(104, "feet"),
  39266. name: "Tail (Extended)",
  39267. image: {
  39268. source: "./media/characters/zorkaiju/tail-extended.svg"
  39269. }
  39270. },
  39271. tailBottom: {
  39272. height: math.unit(104, "feet"),
  39273. name: "Tail Bottom",
  39274. image: {
  39275. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39276. }
  39277. },
  39278. crystal: {
  39279. height: math.unit(27.54, "feet"),
  39280. name: "Crystal",
  39281. image: {
  39282. source: "./media/characters/zorkaiju/crystal.svg"
  39283. }
  39284. },
  39285. },
  39286. [
  39287. {
  39288. name: "Kaiju",
  39289. height: math.unit(325, "feet"),
  39290. default: true
  39291. },
  39292. ]
  39293. ))
  39294. characterMakers.push(() => makeCharacter(
  39295. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39296. {
  39297. front: {
  39298. height: math.unit(6 + 1/12, "feet"),
  39299. weight: math.unit(115, "lb"),
  39300. name: "Front",
  39301. image: {
  39302. source: "./media/characters/bailey-belfry/front.svg",
  39303. extra: 1240/1121,
  39304. bottom: 101/1341
  39305. }
  39306. },
  39307. },
  39308. [
  39309. {
  39310. name: "Normal",
  39311. height: math.unit(6 + 1/12, "feet"),
  39312. default: true
  39313. },
  39314. ]
  39315. ))
  39316. characterMakers.push(() => makeCharacter(
  39317. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39318. {
  39319. side: {
  39320. height: math.unit(4, "meters"),
  39321. weight: math.unit(250, "kg"),
  39322. name: "Side",
  39323. image: {
  39324. source: "./media/characters/blacky/side.svg",
  39325. extra: 1027/919,
  39326. bottom: 43/1070
  39327. }
  39328. },
  39329. maw: {
  39330. height: math.unit(1, "meters"),
  39331. name: "Maw",
  39332. image: {
  39333. source: "./media/characters/blacky/maw.svg"
  39334. }
  39335. },
  39336. paw: {
  39337. height: math.unit(1, "meters"),
  39338. name: "Paw",
  39339. image: {
  39340. source: "./media/characters/blacky/paw.svg"
  39341. }
  39342. },
  39343. },
  39344. [
  39345. {
  39346. name: "Normal",
  39347. height: math.unit(4, "meters"),
  39348. default: true
  39349. },
  39350. ]
  39351. ))
  39352. characterMakers.push(() => makeCharacter(
  39353. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39354. {
  39355. front: {
  39356. height: math.unit(170, "cm"),
  39357. weight: math.unit(66, "kg"),
  39358. name: "Front",
  39359. image: {
  39360. source: "./media/characters/thux-ei/front.svg",
  39361. extra: 1109/1011,
  39362. bottom: 8/1117
  39363. }
  39364. },
  39365. },
  39366. [
  39367. {
  39368. name: "Normal",
  39369. height: math.unit(170, "cm"),
  39370. default: true
  39371. },
  39372. ]
  39373. ))
  39374. characterMakers.push(() => makeCharacter(
  39375. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39376. {
  39377. front: {
  39378. height: math.unit(5, "feet"),
  39379. weight: math.unit(120, "lb"),
  39380. name: "Front",
  39381. image: {
  39382. source: "./media/characters/roxanne-voltaire/front.svg",
  39383. extra: 1901/1779,
  39384. bottom: 53/1954
  39385. }
  39386. },
  39387. },
  39388. [
  39389. {
  39390. name: "Normal",
  39391. height: math.unit(5, "feet"),
  39392. default: true
  39393. },
  39394. {
  39395. name: "Giant",
  39396. height: math.unit(50, "feet")
  39397. },
  39398. {
  39399. name: "Titan",
  39400. height: math.unit(500, "feet")
  39401. },
  39402. {
  39403. name: "Macro",
  39404. height: math.unit(5000, "feet")
  39405. },
  39406. {
  39407. name: "Megamacro",
  39408. height: math.unit(50000, "feet")
  39409. },
  39410. {
  39411. name: "Gigamacro",
  39412. height: math.unit(500000, "feet")
  39413. },
  39414. {
  39415. name: "Teramacro",
  39416. height: math.unit(5e6, "feet")
  39417. },
  39418. ]
  39419. ))
  39420. characterMakers.push(() => makeCharacter(
  39421. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39422. {
  39423. front: {
  39424. height: math.unit(6 + 2/12, "feet"),
  39425. name: "Front",
  39426. image: {
  39427. source: "./media/characters/squeaks/front.svg",
  39428. extra: 1823/1768,
  39429. bottom: 138/1961
  39430. }
  39431. },
  39432. },
  39433. [
  39434. {
  39435. name: "Micro",
  39436. height: math.unit(0.5, "inches")
  39437. },
  39438. {
  39439. name: "Normal",
  39440. height: math.unit(6 + 2/12, "feet"),
  39441. default: true
  39442. },
  39443. {
  39444. name: "Macro",
  39445. height: math.unit(600, "feet")
  39446. },
  39447. ]
  39448. ))
  39449. characterMakers.push(() => makeCharacter(
  39450. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39451. {
  39452. front: {
  39453. height: math.unit(1.72, "meters"),
  39454. name: "Front",
  39455. image: {
  39456. source: "./media/characters/archinger/front.svg",
  39457. extra: 1861/1675,
  39458. bottom: 125/1986
  39459. }
  39460. },
  39461. back: {
  39462. height: math.unit(1.72, "meters"),
  39463. name: "Back",
  39464. image: {
  39465. source: "./media/characters/archinger/back.svg",
  39466. extra: 1844/1701,
  39467. bottom: 104/1948
  39468. }
  39469. },
  39470. cock: {
  39471. height: math.unit(0.59, "feet"),
  39472. name: "Cock",
  39473. image: {
  39474. source: "./media/characters/archinger/cock.svg"
  39475. }
  39476. },
  39477. },
  39478. [
  39479. {
  39480. name: "Normal",
  39481. height: math.unit(1.72, "meters"),
  39482. default: true
  39483. },
  39484. {
  39485. name: "Macro",
  39486. height: math.unit(84, "meters")
  39487. },
  39488. {
  39489. name: "Macro+",
  39490. height: math.unit(112, "meters")
  39491. },
  39492. {
  39493. name: "Macro++",
  39494. height: math.unit(960, "meters")
  39495. },
  39496. {
  39497. name: "Macro+++",
  39498. height: math.unit(4, "km")
  39499. },
  39500. {
  39501. name: "Macro++++",
  39502. height: math.unit(48, "km")
  39503. },
  39504. {
  39505. name: "Macro+++++",
  39506. height: math.unit(4500, "km")
  39507. },
  39508. ]
  39509. ))
  39510. characterMakers.push(() => makeCharacter(
  39511. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39512. {
  39513. front: {
  39514. height: math.unit(5 + 5/12, "feet"),
  39515. name: "Front",
  39516. image: {
  39517. source: "./media/characters/alsnapz/front.svg",
  39518. extra: 1157/1065,
  39519. bottom: 42/1199
  39520. }
  39521. },
  39522. },
  39523. [
  39524. {
  39525. name: "Normal",
  39526. height: math.unit(5 + 5/12, "feet"),
  39527. default: true
  39528. },
  39529. ]
  39530. ))
  39531. characterMakers.push(() => makeCharacter(
  39532. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39533. {
  39534. side: {
  39535. height: math.unit(3.2, "earths"),
  39536. name: "Side",
  39537. image: {
  39538. source: "./media/characters/mag/side.svg",
  39539. extra: 1331/1008,
  39540. bottom: 52/1383
  39541. }
  39542. },
  39543. wing: {
  39544. height: math.unit(1.94, "earths"),
  39545. name: "Wing",
  39546. image: {
  39547. source: "./media/characters/mag/wing.svg"
  39548. }
  39549. },
  39550. dick: {
  39551. height: math.unit(1.8, "earths"),
  39552. name: "Dick",
  39553. image: {
  39554. source: "./media/characters/mag/dick.svg"
  39555. }
  39556. },
  39557. ass: {
  39558. height: math.unit(1.33, "earths"),
  39559. name: "Ass",
  39560. image: {
  39561. source: "./media/characters/mag/ass.svg"
  39562. }
  39563. },
  39564. head: {
  39565. height: math.unit(1.1, "earths"),
  39566. name: "Head",
  39567. image: {
  39568. source: "./media/characters/mag/head.svg"
  39569. }
  39570. },
  39571. maw: {
  39572. height: math.unit(1.62, "earths"),
  39573. name: "Maw",
  39574. image: {
  39575. source: "./media/characters/mag/maw.svg"
  39576. }
  39577. },
  39578. },
  39579. [
  39580. {
  39581. name: "Small",
  39582. height: math.unit(162, "feet")
  39583. },
  39584. {
  39585. name: "Normal",
  39586. height: math.unit(3.2, "earths"),
  39587. default: true
  39588. },
  39589. ]
  39590. ))
  39591. characterMakers.push(() => makeCharacter(
  39592. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39593. {
  39594. front: {
  39595. height: math.unit(512, "feet"),
  39596. weight: math.unit(63509, "tonnes"),
  39597. name: "Front",
  39598. image: {
  39599. source: "./media/characters/vorrel-harroc/front.svg",
  39600. extra: 1075/1063,
  39601. bottom: 62/1137
  39602. }
  39603. },
  39604. },
  39605. [
  39606. {
  39607. name: "Normal",
  39608. height: math.unit(10, "feet")
  39609. },
  39610. {
  39611. name: "Macro",
  39612. height: math.unit(512, "feet"),
  39613. default: true
  39614. },
  39615. {
  39616. name: "Megamacro",
  39617. height: math.unit(256, "miles")
  39618. },
  39619. {
  39620. name: "Gigamacro",
  39621. height: math.unit(4096, "miles")
  39622. },
  39623. ]
  39624. ))
  39625. characterMakers.push(() => makeCharacter(
  39626. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39627. {
  39628. side: {
  39629. height: math.unit(50, "feet"),
  39630. name: "Side",
  39631. image: {
  39632. source: "./media/characters/froimar/side.svg",
  39633. extra: 855/638,
  39634. bottom: 99/954
  39635. }
  39636. },
  39637. },
  39638. [
  39639. {
  39640. name: "Macro",
  39641. height: math.unit(50, "feet"),
  39642. default: true
  39643. },
  39644. ]
  39645. ))
  39646. characterMakers.push(() => makeCharacter(
  39647. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39648. {
  39649. front: {
  39650. height: math.unit(210, "miles"),
  39651. name: "Front",
  39652. image: {
  39653. source: "./media/characters/timothy/front.svg",
  39654. extra: 1007/943,
  39655. bottom: 62/1069
  39656. }
  39657. },
  39658. frontSkirt: {
  39659. height: math.unit(210, "miles"),
  39660. name: "Front (Skirt)",
  39661. image: {
  39662. source: "./media/characters/timothy/front-skirt.svg",
  39663. extra: 1007/943,
  39664. bottom: 62/1069
  39665. }
  39666. },
  39667. frontCoat: {
  39668. height: math.unit(210, "miles"),
  39669. name: "Front (Coat)",
  39670. image: {
  39671. source: "./media/characters/timothy/front-coat.svg",
  39672. extra: 1007/943,
  39673. bottom: 62/1069
  39674. }
  39675. },
  39676. },
  39677. [
  39678. {
  39679. name: "Macro",
  39680. height: math.unit(210, "miles"),
  39681. default: true
  39682. },
  39683. {
  39684. name: "Megamacro",
  39685. height: math.unit(210000, "miles")
  39686. },
  39687. ]
  39688. ))
  39689. characterMakers.push(() => makeCharacter(
  39690. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39691. {
  39692. front: {
  39693. height: math.unit(188, "feet"),
  39694. name: "Front",
  39695. image: {
  39696. source: "./media/characters/pyotr/front.svg",
  39697. extra: 1912/1826,
  39698. bottom: 18/1930
  39699. }
  39700. },
  39701. },
  39702. [
  39703. {
  39704. name: "Macro",
  39705. height: math.unit(188, "feet"),
  39706. default: true
  39707. },
  39708. {
  39709. name: "Megamacro",
  39710. height: math.unit(8, "miles")
  39711. },
  39712. ]
  39713. ))
  39714. characterMakers.push(() => makeCharacter(
  39715. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39716. {
  39717. side: {
  39718. height: math.unit(10, "feet"),
  39719. weight: math.unit(4500, "lb"),
  39720. name: "Side",
  39721. image: {
  39722. source: "./media/characters/ackart/side.svg",
  39723. extra: 1776/1668,
  39724. bottom: 116/1892
  39725. }
  39726. },
  39727. },
  39728. [
  39729. {
  39730. name: "Normal",
  39731. height: math.unit(10, "feet"),
  39732. default: true
  39733. },
  39734. ]
  39735. ))
  39736. characterMakers.push(() => makeCharacter(
  39737. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39738. {
  39739. side: {
  39740. height: math.unit(21, "feet"),
  39741. name: "Side",
  39742. image: {
  39743. source: "./media/characters/nolow/side.svg",
  39744. extra: 1484/1434,
  39745. bottom: 85/1569
  39746. }
  39747. },
  39748. sideErect: {
  39749. height: math.unit(21, "feet"),
  39750. name: "Side-erect",
  39751. image: {
  39752. source: "./media/characters/nolow/side-erect.svg",
  39753. extra: 1484/1434,
  39754. bottom: 85/1569
  39755. }
  39756. },
  39757. },
  39758. [
  39759. {
  39760. name: "Regular",
  39761. height: math.unit(12, "feet")
  39762. },
  39763. {
  39764. name: "Big Chee",
  39765. height: math.unit(21, "feet"),
  39766. default: true
  39767. },
  39768. ]
  39769. ))
  39770. //characters
  39771. function makeCharacters() {
  39772. const results = [];
  39773. characterMakers.forEach(character => {
  39774. results.push(character());
  39775. });
  39776. return results;
  39777. }