less copy protection, more size visualization
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

40330 Zeilen
1014 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "T Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. }
  1675. //species
  1676. function getSpeciesInfo(speciesList) {
  1677. let result = new Set();
  1678. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1679. result.add(entry)
  1680. });
  1681. return Array.from(result);
  1682. };
  1683. function getSpeciesInfoHelper(species) {
  1684. if (!speciesData[species]) {
  1685. console.warn(species + " doesn't exist");
  1686. return [];
  1687. }
  1688. if (speciesData[species].parents) {
  1689. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1690. } else {
  1691. return [species];
  1692. }
  1693. }
  1694. characterMakers.push(() => makeCharacter(
  1695. {
  1696. name: "Fen",
  1697. species: ["crux"],
  1698. description: {
  1699. title: "Bio",
  1700. text: "Very furry. Sheds on everything."
  1701. },
  1702. tags: [
  1703. "anthro",
  1704. "goo"
  1705. ]
  1706. },
  1707. {
  1708. back: {
  1709. height: math.unit(2.2428, "meter"),
  1710. weight: math.unit(124.738, "kg"),
  1711. name: "Back",
  1712. image: {
  1713. source: "./media/characters/fen/back.svg",
  1714. extra: 2024 / 1867,
  1715. bottom: 13 / 2037
  1716. },
  1717. info: {
  1718. description: {
  1719. mode: "append",
  1720. text: "\n\nHe is not currently looking at you."
  1721. }
  1722. }
  1723. },
  1724. full: {
  1725. height: math.unit(1.34, "meter"),
  1726. weight: math.unit(225, "kg"),
  1727. name: "Full",
  1728. image: {
  1729. source: "./media/characters/fen/full.svg"
  1730. },
  1731. info: {
  1732. description: {
  1733. mode: "append",
  1734. text: "\n\nMunch."
  1735. }
  1736. }
  1737. },
  1738. kneeling: {
  1739. height: math.unit(5.4, "feet"),
  1740. weight: math.unit(124.738, "kg"),
  1741. name: "Kneeling",
  1742. image: {
  1743. source: "./media/characters/fen/kneeling.svg",
  1744. extra: 563 / 507
  1745. }
  1746. },
  1747. goo: {
  1748. height: math.unit(2.8, "feet"),
  1749. weight: math.unit(125, "kg"),
  1750. capacity: math.unit(1, "people"),
  1751. name: "Goo",
  1752. image: {
  1753. source: "./media/characters/fen/goo.svg",
  1754. bottom: 116 / 613
  1755. }
  1756. },
  1757. lounging: {
  1758. height: math.unit(6.5, "feet"),
  1759. weight: math.unit(125, "kg"),
  1760. name: "Lounging",
  1761. image: {
  1762. source: "./media/characters/fen/lounging.svg"
  1763. }
  1764. },
  1765. },
  1766. [
  1767. {
  1768. name: "Normal",
  1769. height: math.unit(2.2428, "meter")
  1770. },
  1771. {
  1772. name: "Big",
  1773. height: math.unit(12, "feet")
  1774. },
  1775. {
  1776. name: "Minimacro",
  1777. height: math.unit(40, "feet"),
  1778. default: true,
  1779. info: {
  1780. description: {
  1781. mode: "append",
  1782. text: "\n\nTOO DAMN BIG"
  1783. }
  1784. }
  1785. },
  1786. {
  1787. name: "Macro",
  1788. height: math.unit(100, "feet"),
  1789. info: {
  1790. description: {
  1791. mode: "append",
  1792. text: "\n\nTOO DAMN BIG"
  1793. }
  1794. }
  1795. },
  1796. {
  1797. name: "Macro+",
  1798. height: math.unit(300, "feet")
  1799. },
  1800. {
  1801. name: "Megamacro",
  1802. height: math.unit(2, "miles")
  1803. }
  1804. ]
  1805. ))
  1806. characterMakers.push(() => makeCharacter(
  1807. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1808. {
  1809. front: {
  1810. height: math.unit(183, "cm"),
  1811. weight: math.unit(80, "kg"),
  1812. name: "Front",
  1813. image: {
  1814. source: "./media/characters/sofia-fluttertail/front.svg",
  1815. bottom: 0.01,
  1816. extra: 2154 / 2081
  1817. }
  1818. },
  1819. frontAlt: {
  1820. height: math.unit(183, "cm"),
  1821. weight: math.unit(80, "kg"),
  1822. name: "Front (alt)",
  1823. image: {
  1824. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1825. }
  1826. },
  1827. back: {
  1828. height: math.unit(183, "cm"),
  1829. weight: math.unit(80, "kg"),
  1830. name: "Back",
  1831. image: {
  1832. source: "./media/characters/sofia-fluttertail/back.svg"
  1833. }
  1834. },
  1835. kneeling: {
  1836. height: math.unit(125, "cm"),
  1837. weight: math.unit(80, "kg"),
  1838. name: "Kneeling",
  1839. image: {
  1840. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1841. extra: 1033 / 977,
  1842. bottom: 23.7 / 1057
  1843. }
  1844. },
  1845. maw: {
  1846. height: math.unit(183 / 5, "cm"),
  1847. name: "Maw",
  1848. image: {
  1849. source: "./media/characters/sofia-fluttertail/maw.svg"
  1850. }
  1851. },
  1852. mawcloseup: {
  1853. height: math.unit(183 / 5 * 0.41, "cm"),
  1854. name: "Maw (Closeup)",
  1855. image: {
  1856. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1857. }
  1858. },
  1859. paws: {
  1860. height: math.unit(1.17, "feet"),
  1861. name: "Paws",
  1862. image: {
  1863. source: "./media/characters/sofia-fluttertail/paws.svg",
  1864. extra: 851 / 851,
  1865. bottom: 17 / 868
  1866. }
  1867. },
  1868. },
  1869. [
  1870. {
  1871. name: "Normal",
  1872. height: math.unit(1.83, "meter")
  1873. },
  1874. {
  1875. name: "Size Thief",
  1876. height: math.unit(18, "feet")
  1877. },
  1878. {
  1879. name: "50 Foot Collie",
  1880. height: math.unit(50, "feet")
  1881. },
  1882. {
  1883. name: "Macro",
  1884. height: math.unit(96, "feet"),
  1885. default: true
  1886. },
  1887. {
  1888. name: "Megamerger",
  1889. height: math.unit(650, "feet")
  1890. },
  1891. ]
  1892. ))
  1893. characterMakers.push(() => makeCharacter(
  1894. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1895. {
  1896. front: {
  1897. height: math.unit(7, "feet"),
  1898. weight: math.unit(100, "kg"),
  1899. name: "Front",
  1900. image: {
  1901. source: "./media/characters/march/front.svg",
  1902. extra: 1992/1851,
  1903. bottom: 39/2031
  1904. }
  1905. },
  1906. foot: {
  1907. height: math.unit(0.9, "feet"),
  1908. name: "Foot",
  1909. image: {
  1910. source: "./media/characters/march/foot.svg"
  1911. }
  1912. },
  1913. },
  1914. [
  1915. {
  1916. name: "Normal",
  1917. height: math.unit(7.9, "feet")
  1918. },
  1919. {
  1920. name: "Macro",
  1921. height: math.unit(220, "meters")
  1922. },
  1923. {
  1924. name: "Megamacro",
  1925. height: math.unit(2.98, "km"),
  1926. default: true
  1927. },
  1928. {
  1929. name: "Gigamacro",
  1930. height: math.unit(15963, "km")
  1931. },
  1932. {
  1933. name: "Teramacro",
  1934. height: math.unit(2980000000, "km")
  1935. },
  1936. {
  1937. name: "Examacro",
  1938. height: math.unit(250, "parsecs")
  1939. },
  1940. ]
  1941. ))
  1942. characterMakers.push(() => makeCharacter(
  1943. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1944. {
  1945. front: {
  1946. height: math.unit(6, "feet"),
  1947. weight: math.unit(60, "kg"),
  1948. name: "Front",
  1949. image: {
  1950. source: "./media/characters/noir/front.svg",
  1951. extra: 1,
  1952. bottom: 0.032
  1953. }
  1954. },
  1955. },
  1956. [
  1957. {
  1958. name: "Normal",
  1959. height: math.unit(6.6, "feet")
  1960. },
  1961. {
  1962. name: "Macro",
  1963. height: math.unit(500, "feet")
  1964. },
  1965. {
  1966. name: "Megamacro",
  1967. height: math.unit(2.5, "km"),
  1968. default: true
  1969. },
  1970. {
  1971. name: "Gigamacro",
  1972. height: math.unit(22500, "km")
  1973. },
  1974. {
  1975. name: "Teramacro",
  1976. height: math.unit(2500000000, "km")
  1977. },
  1978. {
  1979. name: "Examacro",
  1980. height: math.unit(200, "parsecs")
  1981. },
  1982. ]
  1983. ))
  1984. characterMakers.push(() => makeCharacter(
  1985. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1986. {
  1987. front: {
  1988. height: math.unit(7, "feet"),
  1989. weight: math.unit(100, "kg"),
  1990. name: "Front",
  1991. image: {
  1992. source: "./media/characters/okuri/front.svg",
  1993. extra: 1,
  1994. bottom: 0.037
  1995. }
  1996. },
  1997. back: {
  1998. height: math.unit(7, "feet"),
  1999. weight: math.unit(100, "kg"),
  2000. name: "Back",
  2001. image: {
  2002. source: "./media/characters/okuri/back.svg",
  2003. extra: 1,
  2004. bottom: 0.007
  2005. }
  2006. },
  2007. },
  2008. [
  2009. {
  2010. name: "Megamacro",
  2011. height: math.unit(100, "miles"),
  2012. default: true
  2013. },
  2014. ]
  2015. ))
  2016. characterMakers.push(() => makeCharacter(
  2017. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2018. {
  2019. front: {
  2020. height: math.unit(7, "feet"),
  2021. weight: math.unit(100, "kg"),
  2022. name: "Front",
  2023. image: {
  2024. source: "./media/characters/manny/front.svg",
  2025. extra: 1,
  2026. bottom: 0.06
  2027. }
  2028. },
  2029. back: {
  2030. height: math.unit(7, "feet"),
  2031. weight: math.unit(100, "kg"),
  2032. name: "Back",
  2033. image: {
  2034. source: "./media/characters/manny/back.svg",
  2035. extra: 1,
  2036. bottom: 0.014
  2037. }
  2038. },
  2039. },
  2040. [
  2041. {
  2042. name: "Normal",
  2043. height: math.unit(7, "feet"),
  2044. },
  2045. {
  2046. name: "Macro",
  2047. height: math.unit(78, "feet"),
  2048. default: true
  2049. },
  2050. {
  2051. name: "Macro+",
  2052. height: math.unit(300, "meters")
  2053. },
  2054. {
  2055. name: "Macro++",
  2056. height: math.unit(2400, "meters")
  2057. },
  2058. {
  2059. name: "Megamacro",
  2060. height: math.unit(5167, "meters")
  2061. },
  2062. {
  2063. name: "Gigamacro",
  2064. height: math.unit(41769, "miles")
  2065. },
  2066. ]
  2067. ))
  2068. characterMakers.push(() => makeCharacter(
  2069. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2070. {
  2071. front: {
  2072. height: math.unit(7, "feet"),
  2073. weight: math.unit(100, "kg"),
  2074. name: "Front",
  2075. image: {
  2076. source: "./media/characters/adake/front-1.svg"
  2077. }
  2078. },
  2079. frontAlt: {
  2080. height: math.unit(7, "feet"),
  2081. weight: math.unit(100, "kg"),
  2082. name: "Front (Alt)",
  2083. image: {
  2084. source: "./media/characters/adake/front-2.svg",
  2085. extra: 1,
  2086. bottom: 0.01
  2087. }
  2088. },
  2089. back: {
  2090. height: math.unit(7, "feet"),
  2091. weight: math.unit(100, "kg"),
  2092. name: "Back",
  2093. image: {
  2094. source: "./media/characters/adake/back.svg",
  2095. }
  2096. },
  2097. kneel: {
  2098. height: math.unit(5.385, "feet"),
  2099. weight: math.unit(100, "kg"),
  2100. name: "Kneeling",
  2101. image: {
  2102. source: "./media/characters/adake/kneel.svg",
  2103. bottom: 0.052
  2104. }
  2105. },
  2106. },
  2107. [
  2108. {
  2109. name: "Normal",
  2110. height: math.unit(7, "feet"),
  2111. },
  2112. {
  2113. name: "Macro",
  2114. height: math.unit(78, "feet"),
  2115. default: true
  2116. },
  2117. {
  2118. name: "Macro+",
  2119. height: math.unit(300, "meters")
  2120. },
  2121. {
  2122. name: "Macro++",
  2123. height: math.unit(2400, "meters")
  2124. },
  2125. {
  2126. name: "Megamacro",
  2127. height: math.unit(5167, "meters")
  2128. },
  2129. {
  2130. name: "Gigamacro",
  2131. height: math.unit(41769, "miles")
  2132. },
  2133. ]
  2134. ))
  2135. characterMakers.push(() => makeCharacter(
  2136. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2137. {
  2138. front: {
  2139. height: math.unit(1.65, "meters"),
  2140. weight: math.unit(50, "kg"),
  2141. name: "Front",
  2142. image: {
  2143. source: "./media/characters/elijah/front.svg",
  2144. extra: 858 / 830,
  2145. bottom: 95.5 / 953.8559
  2146. }
  2147. },
  2148. back: {
  2149. height: math.unit(1.65, "meters"),
  2150. weight: math.unit(50, "kg"),
  2151. name: "Back",
  2152. image: {
  2153. source: "./media/characters/elijah/back.svg",
  2154. extra: 895 / 850,
  2155. bottom: 5.3 / 897.956
  2156. }
  2157. },
  2158. frontNsfw: {
  2159. height: math.unit(1.65, "meters"),
  2160. weight: math.unit(50, "kg"),
  2161. name: "Front (NSFW)",
  2162. image: {
  2163. source: "./media/characters/elijah/front-nsfw.svg",
  2164. extra: 858 / 830,
  2165. bottom: 95.5 / 953.8559
  2166. }
  2167. },
  2168. backNsfw: {
  2169. height: math.unit(1.65, "meters"),
  2170. weight: math.unit(50, "kg"),
  2171. name: "Back (NSFW)",
  2172. image: {
  2173. source: "./media/characters/elijah/back-nsfw.svg",
  2174. extra: 895 / 850,
  2175. bottom: 5.3 / 897.956
  2176. }
  2177. },
  2178. dick: {
  2179. height: math.unit(1, "feet"),
  2180. name: "Dick",
  2181. image: {
  2182. source: "./media/characters/elijah/dick.svg"
  2183. }
  2184. },
  2185. beakOpen: {
  2186. height: math.unit(1.25, "feet"),
  2187. name: "Beak (Open)",
  2188. image: {
  2189. source: "./media/characters/elijah/beak-open.svg"
  2190. }
  2191. },
  2192. beakShut: {
  2193. height: math.unit(1.25, "feet"),
  2194. name: "Beak (Shut)",
  2195. image: {
  2196. source: "./media/characters/elijah/beak-shut.svg"
  2197. }
  2198. },
  2199. footFlexing: {
  2200. height: math.unit(1.61, "feet"),
  2201. name: "Foot (Flexing)",
  2202. image: {
  2203. source: "./media/characters/elijah/foot-flexing.svg"
  2204. }
  2205. },
  2206. footStepping: {
  2207. height: math.unit(1.44, "feet"),
  2208. name: "Foot (Stepping)",
  2209. image: {
  2210. source: "./media/characters/elijah/foot-stepping.svg"
  2211. }
  2212. },
  2213. plantigradeLeg: {
  2214. height: math.unit(2.34, "feet"),
  2215. name: "Plantigrade Leg",
  2216. image: {
  2217. source: "./media/characters/elijah/plantigrade-leg.svg"
  2218. }
  2219. },
  2220. plantigradeFootLeft: {
  2221. height: math.unit(0.9, "feet"),
  2222. name: "Plantigrade Foot (Left)",
  2223. image: {
  2224. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2225. }
  2226. },
  2227. plantigradeFootRight: {
  2228. height: math.unit(0.9, "feet"),
  2229. name: "Plantigrade Foot (Right)",
  2230. image: {
  2231. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(1.65, "meters")
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(55, "meters"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Macro+",
  2247. height: math.unit(105, "meters")
  2248. },
  2249. ]
  2250. ))
  2251. characterMakers.push(() => makeCharacter(
  2252. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2253. {
  2254. front: {
  2255. height: math.unit(11, "feet"),
  2256. weight: math.unit(320, "kg"),
  2257. name: "Front",
  2258. image: {
  2259. source: "./media/characters/rai/front.svg",
  2260. extra: 1802/1696,
  2261. bottom: 68/1870
  2262. }
  2263. },
  2264. frontDressed: {
  2265. height: math.unit(11, "feet"),
  2266. weight: math.unit(320, "kg"),
  2267. name: "Front (Dressed)",
  2268. image: {
  2269. source: "./media/characters/rai/front-dressed.svg",
  2270. extra: 1802/1696,
  2271. bottom: 68/1870
  2272. }
  2273. },
  2274. side: {
  2275. height: math.unit(11, "feet"),
  2276. weight: math.unit(320, "kg"),
  2277. name: "Side",
  2278. image: {
  2279. source: "./media/characters/rai/side.svg",
  2280. extra: 1789/1710,
  2281. bottom: 115/1904
  2282. }
  2283. },
  2284. back: {
  2285. height: math.unit(11, "feet"),
  2286. weight: math.unit(320, "kg"),
  2287. name: "Back",
  2288. image: {
  2289. source: "./media/characters/rai/back.svg",
  2290. extra: 1770/1707,
  2291. bottom: 28/1798
  2292. }
  2293. },
  2294. feral: {
  2295. height: math.unit(11, "feet"),
  2296. weight: math.unit(640, "kg"),
  2297. name: "Feral",
  2298. image: {
  2299. source: "./media/characters/rai/feral.svg",
  2300. extra: 1035/642,
  2301. bottom: 86/1121
  2302. }
  2303. },
  2304. dragon: {
  2305. height: math.unit(23, "feet"),
  2306. weight: math.unit(50000, "lb"),
  2307. name: "Dragon",
  2308. image: {
  2309. source: "./media/characters/rai/dragon.svg",
  2310. extra: 2498 / 2030,
  2311. bottom: 85.2 / 2584
  2312. }
  2313. },
  2314. maw: {
  2315. height: math.unit(6 / 3.81416, "feet"),
  2316. name: "Maw",
  2317. image: {
  2318. source: "./media/characters/rai/maw.svg"
  2319. }
  2320. },
  2321. },
  2322. [
  2323. {
  2324. name: "Normal",
  2325. height: math.unit(11, "feet")
  2326. },
  2327. {
  2328. name: "Macro",
  2329. height: math.unit(302, "feet"),
  2330. default: true
  2331. },
  2332. ]
  2333. ))
  2334. characterMakers.push(() => makeCharacter(
  2335. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2336. {
  2337. frontDressed: {
  2338. height: math.unit(216, "feet"),
  2339. weight: math.unit(7000000, "lb"),
  2340. name: "Front (Dressed)",
  2341. image: {
  2342. source: "./media/characters/jazzy/front-dressed.svg",
  2343. extra: 2738 / 2651,
  2344. bottom: 41.8 / 2786
  2345. }
  2346. },
  2347. backDressed: {
  2348. height: math.unit(216, "feet"),
  2349. weight: math.unit(7000000, "lb"),
  2350. name: "Back (Dressed)",
  2351. image: {
  2352. source: "./media/characters/jazzy/back-dressed.svg",
  2353. extra: 2775 / 2673,
  2354. bottom: 36.8 / 2817
  2355. }
  2356. },
  2357. front: {
  2358. height: math.unit(216, "feet"),
  2359. weight: math.unit(7000000, "lb"),
  2360. name: "Front",
  2361. image: {
  2362. source: "./media/characters/jazzy/front.svg",
  2363. extra: 2738 / 2651,
  2364. bottom: 41.8 / 2786
  2365. }
  2366. },
  2367. back: {
  2368. height: math.unit(216, "feet"),
  2369. weight: math.unit(7000000, "lb"),
  2370. name: "Back",
  2371. image: {
  2372. source: "./media/characters/jazzy/back.svg",
  2373. extra: 2775 / 2673,
  2374. bottom: 36.8 / 2817
  2375. }
  2376. },
  2377. maw: {
  2378. height: math.unit(20, "feet"),
  2379. name: "Maw",
  2380. image: {
  2381. source: "./media/characters/jazzy/maw.svg"
  2382. }
  2383. },
  2384. paws: {
  2385. height: math.unit(27.5, "feet"),
  2386. name: "Paws",
  2387. image: {
  2388. source: "./media/characters/jazzy/paws.svg"
  2389. }
  2390. },
  2391. eye: {
  2392. height: math.unit(4.4, "feet"),
  2393. name: "Eye",
  2394. image: {
  2395. source: "./media/characters/jazzy/eye.svg"
  2396. }
  2397. },
  2398. droneOffense: {
  2399. height: math.unit(9.5, "inches"),
  2400. name: "Drone (Offense)",
  2401. image: {
  2402. source: "./media/characters/jazzy/drone-offense.svg"
  2403. }
  2404. },
  2405. droneRecon: {
  2406. height: math.unit(9.5, "inches"),
  2407. name: "Drone (Recon)",
  2408. image: {
  2409. source: "./media/characters/jazzy/drone-recon.svg"
  2410. }
  2411. },
  2412. droneDefense: {
  2413. height: math.unit(9.5, "inches"),
  2414. name: "Drone (Defense)",
  2415. image: {
  2416. source: "./media/characters/jazzy/drone-defense.svg"
  2417. }
  2418. },
  2419. },
  2420. [
  2421. {
  2422. name: "Macro",
  2423. height: math.unit(216, "feet"),
  2424. default: true
  2425. },
  2426. ]
  2427. ))
  2428. characterMakers.push(() => makeCharacter(
  2429. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2430. {
  2431. front: {
  2432. height: math.unit(9 + 6/12, "feet"),
  2433. weight: math.unit(700, "lb"),
  2434. name: "Front",
  2435. image: {
  2436. source: "./media/characters/flamm/front.svg",
  2437. extra: 1751/1632,
  2438. bottom: 46/1797
  2439. }
  2440. },
  2441. buff: {
  2442. height: math.unit(9 + 6/12, "feet"),
  2443. weight: math.unit(950, "lb"),
  2444. name: "Buff",
  2445. image: {
  2446. source: "./media/characters/flamm/buff.svg",
  2447. extra: 3018/2874,
  2448. bottom: 221/3239
  2449. }
  2450. },
  2451. },
  2452. [
  2453. {
  2454. name: "Normal",
  2455. height: math.unit(9.5, "feet")
  2456. },
  2457. {
  2458. name: "Macro",
  2459. height: math.unit(200, "feet"),
  2460. default: true
  2461. },
  2462. ]
  2463. ))
  2464. characterMakers.push(() => makeCharacter(
  2465. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2466. {
  2467. front: {
  2468. height: math.unit(5 + 3/12, "feet"),
  2469. weight: math.unit(60, "kg"),
  2470. name: "Front",
  2471. image: {
  2472. source: "./media/characters/zephiro/front.svg",
  2473. extra: 2309 / 2162,
  2474. bottom: 0.069
  2475. }
  2476. },
  2477. side: {
  2478. height: math.unit(5 + 3/12, "feet"),
  2479. weight: math.unit(60, "kg"),
  2480. name: "Side",
  2481. image: {
  2482. source: "./media/characters/zephiro/side.svg",
  2483. extra: 2403 / 2279,
  2484. bottom: 0.015
  2485. }
  2486. },
  2487. back: {
  2488. height: math.unit(5 + 3/12, "feet"),
  2489. weight: math.unit(60, "kg"),
  2490. name: "Back",
  2491. image: {
  2492. source: "./media/characters/zephiro/back.svg",
  2493. extra: 2373 / 2244,
  2494. bottom: 0.013
  2495. }
  2496. },
  2497. hand: {
  2498. height: math.unit(0.68, "feet"),
  2499. name: "Hand",
  2500. image: {
  2501. source: "./media/characters/zephiro/hand.svg"
  2502. }
  2503. },
  2504. paw: {
  2505. height: math.unit(1, "feet"),
  2506. name: "Paw",
  2507. image: {
  2508. source: "./media/characters/zephiro/paw.svg"
  2509. }
  2510. },
  2511. beans: {
  2512. height: math.unit(0.93, "feet"),
  2513. name: "Beans",
  2514. image: {
  2515. source: "./media/characters/zephiro/beans.svg"
  2516. }
  2517. },
  2518. },
  2519. [
  2520. {
  2521. name: "Micro",
  2522. height: math.unit(3, "inches")
  2523. },
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(5 + 3 / 12, "feet"),
  2527. default: true
  2528. },
  2529. {
  2530. name: "Macro",
  2531. height: math.unit(118, "feet")
  2532. },
  2533. ]
  2534. ))
  2535. characterMakers.push(() => makeCharacter(
  2536. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2537. {
  2538. front: {
  2539. height: math.unit(5, "feet"),
  2540. weight: math.unit(90, "kg"),
  2541. name: "Front",
  2542. image: {
  2543. source: "./media/characters/fory/front.svg",
  2544. extra: 2862 / 2674,
  2545. bottom: 180 / 3043.8
  2546. }
  2547. },
  2548. back: {
  2549. height: math.unit(5, "feet"),
  2550. weight: math.unit(90, "kg"),
  2551. name: "Back",
  2552. image: {
  2553. source: "./media/characters/fory/back.svg",
  2554. extra: 2962 / 2791,
  2555. bottom: 106 / 3071.8
  2556. }
  2557. },
  2558. foot: {
  2559. height: math.unit(2.14, "feet"),
  2560. name: "Foot",
  2561. image: {
  2562. source: "./media/characters/fory/foot.svg"
  2563. }
  2564. },
  2565. },
  2566. [
  2567. {
  2568. name: "Normal",
  2569. height: math.unit(5, "feet")
  2570. },
  2571. {
  2572. name: "Macro",
  2573. height: math.unit(50, "feet"),
  2574. default: true
  2575. },
  2576. {
  2577. name: "Megamacro",
  2578. height: math.unit(10, "miles")
  2579. },
  2580. {
  2581. name: "Gigamacro",
  2582. height: math.unit(5, "earths")
  2583. },
  2584. ]
  2585. ))
  2586. characterMakers.push(() => makeCharacter(
  2587. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2588. {
  2589. front: {
  2590. height: math.unit(7, "feet"),
  2591. weight: math.unit(90, "kg"),
  2592. name: "Front",
  2593. image: {
  2594. source: "./media/characters/kurrikage/front.svg",
  2595. extra: 1,
  2596. bottom: 0.035
  2597. }
  2598. },
  2599. back: {
  2600. height: math.unit(7, "feet"),
  2601. weight: math.unit(90, "lb"),
  2602. name: "Back",
  2603. image: {
  2604. source: "./media/characters/kurrikage/back.svg"
  2605. }
  2606. },
  2607. paw: {
  2608. height: math.unit(1.5, "feet"),
  2609. name: "Paw",
  2610. image: {
  2611. source: "./media/characters/kurrikage/paw.svg"
  2612. }
  2613. },
  2614. staff: {
  2615. height: math.unit(6.7, "feet"),
  2616. name: "Staff",
  2617. image: {
  2618. source: "./media/characters/kurrikage/staff.svg"
  2619. }
  2620. },
  2621. peek: {
  2622. height: math.unit(1.05, "feet"),
  2623. name: "Peeking",
  2624. image: {
  2625. source: "./media/characters/kurrikage/peek.svg",
  2626. bottom: 0.08
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(12, "feet"),
  2634. default: true
  2635. },
  2636. {
  2637. name: "Big",
  2638. height: math.unit(20, "feet")
  2639. },
  2640. {
  2641. name: "Macro",
  2642. height: math.unit(500, "feet")
  2643. },
  2644. {
  2645. name: "Megamacro",
  2646. height: math.unit(20, "miles")
  2647. },
  2648. ]
  2649. ))
  2650. characterMakers.push(() => makeCharacter(
  2651. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2652. {
  2653. front: {
  2654. height: math.unit(6, "feet"),
  2655. weight: math.unit(75, "kg"),
  2656. name: "Front",
  2657. image: {
  2658. source: "./media/characters/shingo/front.svg",
  2659. extra: 706/681,
  2660. bottom: 11/717
  2661. }
  2662. },
  2663. frontAlt: {
  2664. height: math.unit(6, "feet"),
  2665. weight: math.unit(75, "kg"),
  2666. name: "Front (Alt)",
  2667. image: {
  2668. source: "./media/characters/shingo/front-alt.svg",
  2669. extra: 3511 / 3338,
  2670. bottom: 0.005
  2671. }
  2672. },
  2673. paw: {
  2674. height: math.unit(1, "feet"),
  2675. name: "Paw",
  2676. image: {
  2677. source: "./media/characters/shingo/paw.svg"
  2678. }
  2679. },
  2680. },
  2681. [
  2682. {
  2683. name: "Micro",
  2684. height: math.unit(4, "inches")
  2685. },
  2686. {
  2687. name: "Normal",
  2688. height: math.unit(6, "feet"),
  2689. default: true
  2690. },
  2691. {
  2692. name: "Macro",
  2693. height: math.unit(108, "feet")
  2694. },
  2695. {
  2696. name: "Macro+",
  2697. height: math.unit(1500, "feet")
  2698. },
  2699. ]
  2700. ))
  2701. characterMakers.push(() => makeCharacter(
  2702. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2703. {
  2704. side: {
  2705. height: math.unit(6, "feet"),
  2706. weight: math.unit(75, "kg"),
  2707. name: "Side",
  2708. image: {
  2709. source: "./media/characters/aigey/side.svg"
  2710. }
  2711. },
  2712. },
  2713. [
  2714. {
  2715. name: "Macro",
  2716. height: math.unit(200, "feet"),
  2717. default: true
  2718. },
  2719. {
  2720. name: "Megamacro",
  2721. height: math.unit(100, "miles")
  2722. },
  2723. ]
  2724. )
  2725. )
  2726. characterMakers.push(() => makeCharacter(
  2727. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2728. {
  2729. front: {
  2730. height: math.unit(5 + 5 / 12, "feet"),
  2731. weight: math.unit(75, "kg"),
  2732. name: "Front",
  2733. image: {
  2734. source: "./media/characters/natasha/front.svg",
  2735. extra: 859 / 824,
  2736. bottom: 23 / 879.6
  2737. }
  2738. },
  2739. frontNsfw: {
  2740. height: math.unit(5 + 5 / 12, "feet"),
  2741. weight: math.unit(75, "kg"),
  2742. name: "Front (NSFW)",
  2743. image: {
  2744. source: "./media/characters/natasha/front-nsfw.svg",
  2745. extra: 859 / 824,
  2746. bottom: 23 / 879.6
  2747. }
  2748. },
  2749. frontErect: {
  2750. height: math.unit(5 + 5 / 12, "feet"),
  2751. weight: math.unit(75, "kg"),
  2752. name: "Front (Erect)",
  2753. image: {
  2754. source: "./media/characters/natasha/front-erect.svg",
  2755. extra: 859 / 824,
  2756. bottom: 23 / 879.6
  2757. }
  2758. },
  2759. back: {
  2760. height: math.unit(5 + 5 / 12, "feet"),
  2761. weight: math.unit(75, "kg"),
  2762. name: "Back",
  2763. image: {
  2764. source: "./media/characters/natasha/back.svg",
  2765. extra: 887.9 / 852.6,
  2766. bottom: 9.7 / 896.4
  2767. }
  2768. },
  2769. backAlt: {
  2770. height: math.unit(5 + 5 / 12, "feet"),
  2771. weight: math.unit(75, "kg"),
  2772. name: "Back (Alt)",
  2773. image: {
  2774. source: "./media/characters/natasha/back-alt.svg",
  2775. extra: 1236.7 / 1192,
  2776. bottom: 22.3 / 1258.2
  2777. }
  2778. },
  2779. dick: {
  2780. height: math.unit(1.772, "feet"),
  2781. name: "Dick",
  2782. image: {
  2783. source: "./media/characters/natasha/dick.svg"
  2784. }
  2785. },
  2786. paw: {
  2787. height: math.unit(0.250, "meters"),
  2788. name: "Paw",
  2789. image: {
  2790. source: "./media/characters/natasha/paw.svg"
  2791. }
  2792. },
  2793. },
  2794. [
  2795. {
  2796. name: "Normal",
  2797. height: math.unit(5 + 5 / 12, "feet")
  2798. },
  2799. {
  2800. name: "Large",
  2801. height: math.unit(12, "feet")
  2802. },
  2803. {
  2804. name: "Macro",
  2805. height: math.unit(100, "feet"),
  2806. default: true
  2807. },
  2808. {
  2809. name: "Macro+",
  2810. height: math.unit(260, "feet")
  2811. },
  2812. {
  2813. name: "Macro++",
  2814. height: math.unit(1, "mile")
  2815. },
  2816. ]
  2817. ))
  2818. characterMakers.push(() => makeCharacter(
  2819. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2820. {
  2821. front: {
  2822. height: math.unit(6, "feet"),
  2823. weight: math.unit(75, "kg"),
  2824. name: "Front",
  2825. image: {
  2826. source: "./media/characters/malik/front.svg"
  2827. }
  2828. },
  2829. side: {
  2830. height: math.unit(6, "feet"),
  2831. weight: math.unit(75, "kg"),
  2832. name: "Side",
  2833. image: {
  2834. source: "./media/characters/malik/side.svg",
  2835. extra: 1.1539
  2836. }
  2837. },
  2838. back: {
  2839. height: math.unit(6, "feet"),
  2840. weight: math.unit(75, "kg"),
  2841. name: "Back",
  2842. image: {
  2843. source: "./media/characters/malik/back.svg"
  2844. }
  2845. },
  2846. },
  2847. [
  2848. {
  2849. name: "Macro",
  2850. height: math.unit(156, "feet"),
  2851. default: true
  2852. },
  2853. {
  2854. name: "Macro+",
  2855. height: math.unit(1188, "feet")
  2856. },
  2857. ]
  2858. ))
  2859. characterMakers.push(() => makeCharacter(
  2860. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2861. {
  2862. front: {
  2863. height: math.unit(6, "feet"),
  2864. weight: math.unit(75, "kg"),
  2865. name: "Front",
  2866. image: {
  2867. source: "./media/characters/sefer/front.svg",
  2868. extra: 848 / 659,
  2869. bottom: 28.3 / 876.442
  2870. }
  2871. },
  2872. back: {
  2873. height: math.unit(6, "feet"),
  2874. weight: math.unit(75, "kg"),
  2875. name: "Back",
  2876. image: {
  2877. source: "./media/characters/sefer/back.svg",
  2878. extra: 864 / 695,
  2879. bottom: 10 / 871
  2880. }
  2881. },
  2882. frontDressed: {
  2883. height: math.unit(6, "feet"),
  2884. weight: math.unit(75, "kg"),
  2885. name: "Front (Dressed)",
  2886. image: {
  2887. source: "./media/characters/sefer/front-dressed.svg",
  2888. extra: 839 / 653,
  2889. bottom: 37.6 / 878
  2890. }
  2891. },
  2892. },
  2893. [
  2894. {
  2895. name: "Normal",
  2896. height: math.unit(6, "feet"),
  2897. default: true
  2898. },
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2903. {
  2904. body: {
  2905. height: math.unit(2.2428, "meter"),
  2906. weight: math.unit(124.738, "kg"),
  2907. name: "Body",
  2908. image: {
  2909. extra: 1225 / 1050,
  2910. source: "./media/characters/north/front.svg"
  2911. }
  2912. }
  2913. },
  2914. [
  2915. {
  2916. name: "Micro",
  2917. height: math.unit(4, "inches")
  2918. },
  2919. {
  2920. name: "Macro",
  2921. height: math.unit(63, "meters")
  2922. },
  2923. {
  2924. name: "Megamacro",
  2925. height: math.unit(101, "miles"),
  2926. default: true
  2927. }
  2928. ]
  2929. ))
  2930. characterMakers.push(() => makeCharacter(
  2931. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2932. {
  2933. angled: {
  2934. height: math.unit(4, "meter"),
  2935. weight: math.unit(150, "kg"),
  2936. name: "Angled",
  2937. image: {
  2938. source: "./media/characters/talan/angled-sfw.svg",
  2939. bottom: 29 / 3734
  2940. }
  2941. },
  2942. angledNsfw: {
  2943. height: math.unit(4, "meter"),
  2944. weight: math.unit(150, "kg"),
  2945. name: "Angled (NSFW)",
  2946. image: {
  2947. source: "./media/characters/talan/angled-nsfw.svg",
  2948. bottom: 29 / 3734
  2949. }
  2950. },
  2951. frontNsfw: {
  2952. height: math.unit(4, "meter"),
  2953. weight: math.unit(150, "kg"),
  2954. name: "Front (NSFW)",
  2955. image: {
  2956. source: "./media/characters/talan/front-nsfw.svg",
  2957. bottom: 29 / 3734
  2958. }
  2959. },
  2960. sideNsfw: {
  2961. height: math.unit(4, "meter"),
  2962. weight: math.unit(150, "kg"),
  2963. name: "Side (NSFW)",
  2964. image: {
  2965. source: "./media/characters/talan/side-nsfw.svg",
  2966. bottom: 29 / 3734
  2967. }
  2968. },
  2969. back: {
  2970. height: math.unit(4, "meter"),
  2971. weight: math.unit(150, "kg"),
  2972. name: "Back",
  2973. image: {
  2974. source: "./media/characters/talan/back.svg"
  2975. }
  2976. },
  2977. dickBottom: {
  2978. height: math.unit(0.621, "meter"),
  2979. name: "Dick (Bottom)",
  2980. image: {
  2981. source: "./media/characters/talan/dick-bottom.svg"
  2982. }
  2983. },
  2984. dickTop: {
  2985. height: math.unit(0.621, "meter"),
  2986. name: "Dick (Top)",
  2987. image: {
  2988. source: "./media/characters/talan/dick-top.svg"
  2989. }
  2990. },
  2991. dickSide: {
  2992. height: math.unit(0.305, "meter"),
  2993. name: "Dick (Side)",
  2994. image: {
  2995. source: "./media/characters/talan/dick-side.svg"
  2996. }
  2997. },
  2998. dickFront: {
  2999. height: math.unit(0.305, "meter"),
  3000. name: "Dick (Front)",
  3001. image: {
  3002. source: "./media/characters/talan/dick-front.svg"
  3003. }
  3004. },
  3005. },
  3006. [
  3007. {
  3008. name: "Normal",
  3009. height: math.unit(4, "meters")
  3010. },
  3011. {
  3012. name: "Macro",
  3013. height: math.unit(100, "meters")
  3014. },
  3015. {
  3016. name: "Megamacro",
  3017. height: math.unit(2, "miles"),
  3018. default: true
  3019. },
  3020. {
  3021. name: "Gigamacro",
  3022. height: math.unit(5000, "miles")
  3023. },
  3024. {
  3025. name: "Teramacro",
  3026. height: math.unit(100, "parsecs")
  3027. }
  3028. ]
  3029. ))
  3030. characterMakers.push(() => makeCharacter(
  3031. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3032. {
  3033. front: {
  3034. height: math.unit(2, "meter"),
  3035. weight: math.unit(90, "kg"),
  3036. name: "Front",
  3037. image: {
  3038. source: "./media/characters/gael'rathus/front.svg"
  3039. }
  3040. },
  3041. frontAlt: {
  3042. height: math.unit(2, "meter"),
  3043. weight: math.unit(90, "kg"),
  3044. name: "Front (alt)",
  3045. image: {
  3046. source: "./media/characters/gael'rathus/front-alt.svg"
  3047. }
  3048. },
  3049. frontAlt2: {
  3050. height: math.unit(2, "meter"),
  3051. weight: math.unit(90, "kg"),
  3052. name: "Front (alt 2)",
  3053. image: {
  3054. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3055. }
  3056. }
  3057. },
  3058. [
  3059. {
  3060. name: "Normal",
  3061. height: math.unit(9, "feet"),
  3062. default: true
  3063. },
  3064. {
  3065. name: "Large",
  3066. height: math.unit(25, "feet")
  3067. },
  3068. {
  3069. name: "Macro",
  3070. height: math.unit(0.25, "miles")
  3071. },
  3072. {
  3073. name: "Megamacro",
  3074. height: math.unit(10, "miles")
  3075. }
  3076. ]
  3077. ))
  3078. characterMakers.push(() => makeCharacter(
  3079. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3080. {
  3081. side: {
  3082. height: math.unit(2, "meter"),
  3083. weight: math.unit(140, "kg"),
  3084. name: "Side",
  3085. image: {
  3086. source: "./media/characters/sosha/side.svg",
  3087. bottom: 0.042
  3088. }
  3089. },
  3090. },
  3091. [
  3092. {
  3093. name: "Normal",
  3094. height: math.unit(12, "feet"),
  3095. default: true
  3096. }
  3097. ]
  3098. ))
  3099. characterMakers.push(() => makeCharacter(
  3100. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3101. {
  3102. side: {
  3103. height: math.unit(5 + 5 / 12, "feet"),
  3104. weight: math.unit(170, "kg"),
  3105. name: "Side",
  3106. image: {
  3107. source: "./media/characters/runnola/side.svg",
  3108. extra: 741 / 448,
  3109. bottom: 0.05
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Small",
  3116. height: math.unit(3, "feet")
  3117. },
  3118. {
  3119. name: "Normal",
  3120. height: math.unit(5 + 5 / 12, "feet"),
  3121. default: true
  3122. },
  3123. {
  3124. name: "Big",
  3125. height: math.unit(10, "feet")
  3126. },
  3127. ]
  3128. ))
  3129. characterMakers.push(() => makeCharacter(
  3130. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3131. {
  3132. front: {
  3133. height: math.unit(2, "meter"),
  3134. weight: math.unit(50, "kg"),
  3135. name: "Front",
  3136. image: {
  3137. source: "./media/characters/kurribird/front.svg",
  3138. bottom: 0.015
  3139. }
  3140. },
  3141. frontAlt: {
  3142. height: math.unit(1.5, "meter"),
  3143. weight: math.unit(50, "kg"),
  3144. name: "Front (Alt)",
  3145. image: {
  3146. source: "./media/characters/kurribird/front-alt.svg",
  3147. extra: 1.45
  3148. }
  3149. },
  3150. },
  3151. [
  3152. {
  3153. name: "Normal",
  3154. height: math.unit(7, "feet")
  3155. },
  3156. {
  3157. name: "Big",
  3158. height: math.unit(12, "feet"),
  3159. default: true
  3160. },
  3161. {
  3162. name: "Macro",
  3163. height: math.unit(1500, "feet")
  3164. },
  3165. {
  3166. name: "Megamacro",
  3167. height: math.unit(2, "miles")
  3168. }
  3169. ]
  3170. ))
  3171. characterMakers.push(() => makeCharacter(
  3172. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3173. {
  3174. front: {
  3175. height: math.unit(2, "meter"),
  3176. weight: math.unit(80, "kg"),
  3177. name: "Front",
  3178. image: {
  3179. source: "./media/characters/elbial/front.svg",
  3180. extra: 1643 / 1556,
  3181. bottom: 60.2 / 1696
  3182. }
  3183. },
  3184. side: {
  3185. height: math.unit(2, "meter"),
  3186. weight: math.unit(80, "kg"),
  3187. name: "Side",
  3188. image: {
  3189. source: "./media/characters/elbial/side.svg",
  3190. extra: 1630 / 1565,
  3191. bottom: 71.5 / 1697
  3192. }
  3193. },
  3194. back: {
  3195. height: math.unit(2, "meter"),
  3196. weight: math.unit(80, "kg"),
  3197. name: "Back",
  3198. image: {
  3199. source: "./media/characters/elbial/back.svg",
  3200. extra: 1668 / 1595,
  3201. bottom: 5.6 / 1672
  3202. }
  3203. },
  3204. frontDressed: {
  3205. height: math.unit(2, "meter"),
  3206. weight: math.unit(80, "kg"),
  3207. name: "Front (Dressed)",
  3208. image: {
  3209. source: "./media/characters/elbial/front-dressed.svg",
  3210. extra: 1653 / 1584,
  3211. bottom: 57 / 1708
  3212. }
  3213. },
  3214. genitals: {
  3215. height: math.unit(2 / 3.367, "meter"),
  3216. name: "Genitals",
  3217. image: {
  3218. source: "./media/characters/elbial/genitals.svg"
  3219. }
  3220. },
  3221. },
  3222. [
  3223. {
  3224. name: "Large",
  3225. height: math.unit(100, "feet")
  3226. },
  3227. {
  3228. name: "Macro",
  3229. height: math.unit(500, "feet"),
  3230. default: true
  3231. },
  3232. {
  3233. name: "Megamacro",
  3234. height: math.unit(10, "miles")
  3235. },
  3236. {
  3237. name: "Gigamacro",
  3238. height: math.unit(25000, "miles")
  3239. },
  3240. {
  3241. name: "Full-Size",
  3242. height: math.unit(8000000, "gigaparsecs")
  3243. }
  3244. ]
  3245. ))
  3246. characterMakers.push(() => makeCharacter(
  3247. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3248. {
  3249. front: {
  3250. height: math.unit(2, "meter"),
  3251. weight: math.unit(60, "kg"),
  3252. name: "Front",
  3253. image: {
  3254. source: "./media/characters/noah/front.svg"
  3255. }
  3256. },
  3257. talons: {
  3258. height: math.unit(0.315, "meter"),
  3259. name: "Talons",
  3260. image: {
  3261. source: "./media/characters/noah/talons.svg"
  3262. }
  3263. }
  3264. },
  3265. [
  3266. {
  3267. name: "Large",
  3268. height: math.unit(50, "feet")
  3269. },
  3270. {
  3271. name: "Macro",
  3272. height: math.unit(750, "feet"),
  3273. default: true
  3274. },
  3275. {
  3276. name: "Megamacro",
  3277. height: math.unit(50, "miles")
  3278. },
  3279. {
  3280. name: "Gigamacro",
  3281. height: math.unit(100000, "miles")
  3282. },
  3283. {
  3284. name: "Full-Size",
  3285. height: math.unit(3000000000, "miles")
  3286. }
  3287. ]
  3288. ))
  3289. characterMakers.push(() => makeCharacter(
  3290. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3291. {
  3292. front: {
  3293. height: math.unit(2, "meter"),
  3294. weight: math.unit(80, "kg"),
  3295. name: "Front",
  3296. image: {
  3297. source: "./media/characters/natalya/front.svg"
  3298. }
  3299. },
  3300. back: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(80, "kg"),
  3303. name: "Back",
  3304. image: {
  3305. source: "./media/characters/natalya/back.svg"
  3306. }
  3307. }
  3308. },
  3309. [
  3310. {
  3311. name: "Normal",
  3312. height: math.unit(150, "feet"),
  3313. default: true
  3314. },
  3315. {
  3316. name: "Megamacro",
  3317. height: math.unit(5, "miles")
  3318. },
  3319. {
  3320. name: "Full-Size",
  3321. height: math.unit(600, "kiloparsecs")
  3322. }
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3327. {
  3328. front: {
  3329. height: math.unit(2, "meter"),
  3330. weight: math.unit(50, "kg"),
  3331. name: "Front",
  3332. image: {
  3333. source: "./media/characters/erestrebah/front.svg",
  3334. extra: 208 / 193,
  3335. bottom: 0.055
  3336. }
  3337. },
  3338. back: {
  3339. height: math.unit(2, "meter"),
  3340. weight: math.unit(50, "kg"),
  3341. name: "Back",
  3342. image: {
  3343. source: "./media/characters/erestrebah/back.svg",
  3344. extra: 1.3
  3345. }
  3346. }
  3347. },
  3348. [
  3349. {
  3350. name: "Normal",
  3351. height: math.unit(10, "feet")
  3352. },
  3353. {
  3354. name: "Large",
  3355. height: math.unit(50, "feet"),
  3356. default: true
  3357. },
  3358. {
  3359. name: "Macro",
  3360. height: math.unit(300, "feet")
  3361. },
  3362. {
  3363. name: "Macro+",
  3364. height: math.unit(750, "feet")
  3365. },
  3366. {
  3367. name: "Megamacro",
  3368. height: math.unit(3, "miles")
  3369. }
  3370. ]
  3371. ))
  3372. characterMakers.push(() => makeCharacter(
  3373. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3374. {
  3375. front: {
  3376. height: math.unit(2, "meter"),
  3377. weight: math.unit(80, "kg"),
  3378. name: "Front",
  3379. image: {
  3380. source: "./media/characters/jennifer/front.svg",
  3381. bottom: 0.11,
  3382. extra: 1.16
  3383. }
  3384. },
  3385. frontAlt: {
  3386. height: math.unit(2, "meter"),
  3387. weight: math.unit(80, "kg"),
  3388. name: "Front (Alt)",
  3389. image: {
  3390. source: "./media/characters/jennifer/front-alt.svg"
  3391. }
  3392. }
  3393. },
  3394. [
  3395. {
  3396. name: "Canon Height",
  3397. height: math.unit(120, "feet"),
  3398. default: true
  3399. },
  3400. {
  3401. name: "Macro+",
  3402. height: math.unit(300, "feet")
  3403. },
  3404. {
  3405. name: "Megamacro",
  3406. height: math.unit(20000, "feet")
  3407. }
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(2, "meter"),
  3415. weight: math.unit(50, "kg"),
  3416. name: "Front",
  3417. image: {
  3418. source: "./media/characters/kalista/front.svg",
  3419. extra: 1947 / 1700,
  3420. bottom: 76.6 / 1412.98
  3421. }
  3422. },
  3423. back: {
  3424. height: math.unit(2, "meter"),
  3425. weight: math.unit(50, "kg"),
  3426. name: "Back",
  3427. image: {
  3428. source: "./media/characters/kalista/back.svg",
  3429. extra: 1366 / 1156,
  3430. bottom: 33.9 / 1362.78
  3431. }
  3432. }
  3433. },
  3434. [
  3435. {
  3436. name: "Uncomfortably Small",
  3437. height: math.unit(10, "feet")
  3438. },
  3439. {
  3440. name: "Small",
  3441. height: math.unit(30, "feet")
  3442. },
  3443. {
  3444. name: "Macro",
  3445. height: math.unit(100, "feet"),
  3446. default: true
  3447. },
  3448. {
  3449. name: "Macro+",
  3450. height: math.unit(2000, "feet")
  3451. },
  3452. {
  3453. name: "True Form",
  3454. height: math.unit(8924, "miles")
  3455. }
  3456. ]
  3457. ))
  3458. characterMakers.push(() => makeCharacter(
  3459. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3460. {
  3461. front: {
  3462. height: math.unit(2, "meter"),
  3463. weight: math.unit(120, "kg"),
  3464. name: "Front",
  3465. image: {
  3466. source: "./media/characters/ggv/front.svg"
  3467. }
  3468. },
  3469. side: {
  3470. height: math.unit(2, "meter"),
  3471. weight: math.unit(120, "kg"),
  3472. name: "Side",
  3473. image: {
  3474. source: "./media/characters/ggv/side.svg"
  3475. }
  3476. }
  3477. },
  3478. [
  3479. {
  3480. name: "Extremely Puny",
  3481. height: math.unit(9 + 5 / 12, "feet")
  3482. },
  3483. {
  3484. name: "Horribly Small",
  3485. height: math.unit(47.7, "miles"),
  3486. default: true
  3487. },
  3488. {
  3489. name: "Reasonably Sized",
  3490. height: math.unit(25000, "parsecs")
  3491. },
  3492. {
  3493. name: "Slightly Uncompressed",
  3494. height: math.unit(7.77e31, "parsecs")
  3495. },
  3496. {
  3497. name: "Omniversal",
  3498. height: math.unit(1e300, "meters")
  3499. },
  3500. ]
  3501. ))
  3502. characterMakers.push(() => makeCharacter(
  3503. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3504. {
  3505. front: {
  3506. height: math.unit(2, "meter"),
  3507. weight: math.unit(75, "lb"),
  3508. name: "Front",
  3509. image: {
  3510. source: "./media/characters/napalm/front.svg"
  3511. }
  3512. },
  3513. back: {
  3514. height: math.unit(2, "meter"),
  3515. weight: math.unit(75, "lb"),
  3516. name: "Back",
  3517. image: {
  3518. source: "./media/characters/napalm/back.svg"
  3519. }
  3520. }
  3521. },
  3522. [
  3523. {
  3524. name: "Standard",
  3525. height: math.unit(55, "feet"),
  3526. default: true
  3527. }
  3528. ]
  3529. ))
  3530. characterMakers.push(() => makeCharacter(
  3531. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3532. {
  3533. front: {
  3534. height: math.unit(7 + 5 / 6, "feet"),
  3535. weight: math.unit(325, "lb"),
  3536. name: "Front",
  3537. image: {
  3538. source: "./media/characters/asana/front.svg",
  3539. extra: 1133 / 1060,
  3540. bottom: 15.2 / 1148.6
  3541. }
  3542. },
  3543. back: {
  3544. height: math.unit(7 + 5 / 6, "feet"),
  3545. weight: math.unit(325, "lb"),
  3546. name: "Back",
  3547. image: {
  3548. source: "./media/characters/asana/back.svg",
  3549. extra: 1114 / 1043,
  3550. bottom: 5 / 1120
  3551. }
  3552. },
  3553. dressedDark: {
  3554. height: math.unit(7 + 5 / 6, "feet"),
  3555. weight: math.unit(325, "lb"),
  3556. name: "Dressed (Dark)",
  3557. image: {
  3558. source: "./media/characters/asana/dressed-dark.svg",
  3559. extra: 1133 / 1060,
  3560. bottom: 15.2 / 1148.6
  3561. }
  3562. },
  3563. dressedLight: {
  3564. height: math.unit(7 + 5 / 6, "feet"),
  3565. weight: math.unit(325, "lb"),
  3566. name: "Dressed (Light)",
  3567. image: {
  3568. source: "./media/characters/asana/dressed-light.svg",
  3569. extra: 1133 / 1060,
  3570. bottom: 15.2 / 1148.6
  3571. }
  3572. },
  3573. },
  3574. [
  3575. {
  3576. name: "Standard",
  3577. height: math.unit(7 + 5 / 6, "feet"),
  3578. default: true
  3579. },
  3580. {
  3581. name: "Large",
  3582. height: math.unit(10, "meters")
  3583. },
  3584. {
  3585. name: "Macro",
  3586. height: math.unit(2500, "meters")
  3587. },
  3588. {
  3589. name: "Megamacro",
  3590. height: math.unit(5e6, "meters")
  3591. },
  3592. {
  3593. name: "Examacro",
  3594. height: math.unit(5e12, "lightyears")
  3595. },
  3596. {
  3597. name: "Max Size",
  3598. height: math.unit(1e31, "lightyears")
  3599. }
  3600. ]
  3601. ))
  3602. characterMakers.push(() => makeCharacter(
  3603. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3604. {
  3605. front: {
  3606. height: math.unit(2, "meter"),
  3607. weight: math.unit(60, "kg"),
  3608. name: "Front",
  3609. image: {
  3610. source: "./media/characters/ebony/front.svg",
  3611. bottom: 0.03,
  3612. extra: 1045 / 810 + 0.03
  3613. }
  3614. },
  3615. side: {
  3616. height: math.unit(2, "meter"),
  3617. weight: math.unit(60, "kg"),
  3618. name: "Side",
  3619. image: {
  3620. source: "./media/characters/ebony/side.svg",
  3621. bottom: 0.03,
  3622. extra: 1045 / 810 + 0.03
  3623. }
  3624. },
  3625. back: {
  3626. height: math.unit(2, "meter"),
  3627. weight: math.unit(60, "kg"),
  3628. name: "Back",
  3629. image: {
  3630. source: "./media/characters/ebony/back.svg",
  3631. bottom: 0.01,
  3632. extra: 1045 / 810 + 0.01
  3633. }
  3634. },
  3635. },
  3636. [
  3637. // TODO check why I did this lol
  3638. {
  3639. name: "Standard",
  3640. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3641. default: true
  3642. },
  3643. {
  3644. name: "Macro",
  3645. height: math.unit(200, "feet")
  3646. },
  3647. {
  3648. name: "Gigamacro",
  3649. height: math.unit(13000, "km")
  3650. }
  3651. ]
  3652. ))
  3653. characterMakers.push(() => makeCharacter(
  3654. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3655. {
  3656. front: {
  3657. height: math.unit(6, "feet"),
  3658. weight: math.unit(175, "lb"),
  3659. name: "Front",
  3660. image: {
  3661. source: "./media/characters/mountain/front.svg",
  3662. extra: 972 / 955,
  3663. bottom: 64 / 1036.6
  3664. }
  3665. },
  3666. back: {
  3667. height: math.unit(6, "feet"),
  3668. weight: math.unit(175, "lb"),
  3669. name: "Back",
  3670. image: {
  3671. source: "./media/characters/mountain/back.svg",
  3672. extra: 970 / 950,
  3673. bottom: 28.25 / 999
  3674. }
  3675. },
  3676. },
  3677. [
  3678. {
  3679. name: "Large",
  3680. height: math.unit(20, "meters")
  3681. },
  3682. {
  3683. name: "Macro",
  3684. height: math.unit(300, "meters")
  3685. },
  3686. {
  3687. name: "Gigamacro",
  3688. height: math.unit(10000, "km"),
  3689. default: true
  3690. },
  3691. {
  3692. name: "Examacro",
  3693. height: math.unit(10e9, "lightyears")
  3694. }
  3695. ]
  3696. ))
  3697. characterMakers.push(() => makeCharacter(
  3698. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3699. {
  3700. front: {
  3701. height: math.unit(8, "feet"),
  3702. weight: math.unit(500, "lb"),
  3703. name: "Front",
  3704. image: {
  3705. source: "./media/characters/rick/front.svg"
  3706. }
  3707. }
  3708. },
  3709. [
  3710. {
  3711. name: "Normal",
  3712. height: math.unit(8, "feet"),
  3713. default: true
  3714. },
  3715. {
  3716. name: "Macro",
  3717. height: math.unit(5, "km")
  3718. }
  3719. ]
  3720. ))
  3721. characterMakers.push(() => makeCharacter(
  3722. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3723. {
  3724. front: {
  3725. height: math.unit(8, "feet"),
  3726. weight: math.unit(120, "lb"),
  3727. name: "Front",
  3728. image: {
  3729. source: "./media/characters/ona/front.svg"
  3730. }
  3731. },
  3732. frontAlt: {
  3733. height: math.unit(8, "feet"),
  3734. weight: math.unit(120, "lb"),
  3735. name: "Front (Alt)",
  3736. image: {
  3737. source: "./media/characters/ona/front-alt.svg"
  3738. }
  3739. },
  3740. back: {
  3741. height: math.unit(8, "feet"),
  3742. weight: math.unit(120, "lb"),
  3743. name: "Back",
  3744. image: {
  3745. source: "./media/characters/ona/back.svg"
  3746. }
  3747. },
  3748. foot: {
  3749. height: math.unit(1.1, "feet"),
  3750. name: "Foot",
  3751. image: {
  3752. source: "./media/characters/ona/foot.svg"
  3753. }
  3754. }
  3755. },
  3756. [
  3757. {
  3758. name: "Megamacro",
  3759. height: math.unit(70, "km"),
  3760. default: true
  3761. },
  3762. {
  3763. name: "Gigamacro",
  3764. height: math.unit(681818, "miles")
  3765. },
  3766. {
  3767. name: "Examacro",
  3768. height: math.unit(3800000, "lightyears")
  3769. },
  3770. ]
  3771. ))
  3772. characterMakers.push(() => makeCharacter(
  3773. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3774. {
  3775. front: {
  3776. height: math.unit(12, "feet"),
  3777. weight: math.unit(3000, "lb"),
  3778. name: "Front",
  3779. image: {
  3780. source: "./media/characters/mech/front.svg",
  3781. extra: 2900 / 2770,
  3782. bottom: 110 / 3010
  3783. }
  3784. },
  3785. back: {
  3786. height: math.unit(12, "feet"),
  3787. weight: math.unit(3000, "lb"),
  3788. name: "Back",
  3789. image: {
  3790. source: "./media/characters/mech/back.svg",
  3791. extra: 3011 / 2890,
  3792. bottom: 94 / 3105
  3793. }
  3794. },
  3795. maw: {
  3796. height: math.unit(3.07, "feet"),
  3797. name: "Maw",
  3798. image: {
  3799. source: "./media/characters/mech/maw.svg"
  3800. }
  3801. },
  3802. head: {
  3803. height: math.unit(2.82, "feet"),
  3804. name: "Head",
  3805. image: {
  3806. source: "./media/characters/mech/head.svg"
  3807. }
  3808. },
  3809. dick: {
  3810. height: math.unit(1.43, "feet"),
  3811. name: "Dick",
  3812. image: {
  3813. source: "./media/characters/mech/dick.svg"
  3814. }
  3815. },
  3816. },
  3817. [
  3818. {
  3819. name: "Normal",
  3820. height: math.unit(12, "feet")
  3821. },
  3822. {
  3823. name: "Macro",
  3824. height: math.unit(300, "feet"),
  3825. default: true
  3826. },
  3827. {
  3828. name: "Macro+",
  3829. height: math.unit(1500, "feet")
  3830. },
  3831. ]
  3832. ))
  3833. characterMakers.push(() => makeCharacter(
  3834. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3835. {
  3836. front: {
  3837. height: math.unit(1.3, "meter"),
  3838. weight: math.unit(30, "kg"),
  3839. name: "Front",
  3840. image: {
  3841. source: "./media/characters/gregory/front.svg",
  3842. }
  3843. }
  3844. },
  3845. [
  3846. {
  3847. name: "Normal",
  3848. height: math.unit(1.3, "meter"),
  3849. default: true
  3850. },
  3851. {
  3852. name: "Macro",
  3853. height: math.unit(20, "meter")
  3854. }
  3855. ]
  3856. ))
  3857. characterMakers.push(() => makeCharacter(
  3858. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3859. {
  3860. front: {
  3861. height: math.unit(2.8, "meter"),
  3862. weight: math.unit(200, "kg"),
  3863. name: "Front",
  3864. image: {
  3865. source: "./media/characters/elory/front.svg",
  3866. }
  3867. }
  3868. },
  3869. [
  3870. {
  3871. name: "Normal",
  3872. height: math.unit(2.8, "meter"),
  3873. default: true
  3874. },
  3875. {
  3876. name: "Macro",
  3877. height: math.unit(38, "meter")
  3878. }
  3879. ]
  3880. ))
  3881. characterMakers.push(() => makeCharacter(
  3882. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3883. {
  3884. front: {
  3885. height: math.unit(470, "feet"),
  3886. weight: math.unit(924, "tons"),
  3887. name: "Front",
  3888. image: {
  3889. source: "./media/characters/angelpatamon/front.svg",
  3890. }
  3891. }
  3892. },
  3893. [
  3894. {
  3895. name: "Normal",
  3896. height: math.unit(470, "feet"),
  3897. default: true
  3898. },
  3899. {
  3900. name: "Deity Size I",
  3901. height: math.unit(28651.2, "km")
  3902. },
  3903. {
  3904. name: "Deity Size II",
  3905. height: math.unit(171907.2, "km")
  3906. }
  3907. ]
  3908. ))
  3909. characterMakers.push(() => makeCharacter(
  3910. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3911. {
  3912. side: {
  3913. height: math.unit(7.2, "meter"),
  3914. weight: math.unit(8.2, "tons"),
  3915. name: "Side",
  3916. image: {
  3917. source: "./media/characters/cryae/side.svg",
  3918. extra: 3500 / 1500
  3919. }
  3920. }
  3921. },
  3922. [
  3923. {
  3924. name: "Normal",
  3925. height: math.unit(7.2, "meter"),
  3926. default: true
  3927. }
  3928. ]
  3929. ))
  3930. characterMakers.push(() => makeCharacter(
  3931. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3932. {
  3933. front: {
  3934. height: math.unit(6, "feet"),
  3935. weight: math.unit(175, "lb"),
  3936. name: "Front",
  3937. image: {
  3938. source: "./media/characters/xera/front.svg",
  3939. extra: 2377 / 1972,
  3940. bottom: 75.5 / 2452
  3941. }
  3942. },
  3943. side: {
  3944. height: math.unit(6, "feet"),
  3945. weight: math.unit(175, "lb"),
  3946. name: "Side",
  3947. image: {
  3948. source: "./media/characters/xera/side.svg",
  3949. extra: 2345 / 2019,
  3950. bottom: 39.7 / 2384
  3951. }
  3952. },
  3953. back: {
  3954. height: math.unit(6, "feet"),
  3955. weight: math.unit(175, "lb"),
  3956. name: "Back",
  3957. image: {
  3958. source: "./media/characters/xera/back.svg",
  3959. extra: 2095 / 1984,
  3960. bottom: 67 / 2166
  3961. }
  3962. },
  3963. },
  3964. [
  3965. {
  3966. name: "Small",
  3967. height: math.unit(10, "feet")
  3968. },
  3969. {
  3970. name: "Macro",
  3971. height: math.unit(500, "meters"),
  3972. default: true
  3973. },
  3974. {
  3975. name: "Macro+",
  3976. height: math.unit(10, "km")
  3977. },
  3978. {
  3979. name: "Gigamacro",
  3980. height: math.unit(25000, "km")
  3981. },
  3982. {
  3983. name: "Teramacro",
  3984. height: math.unit(3e6, "km")
  3985. }
  3986. ]
  3987. ))
  3988. characterMakers.push(() => makeCharacter(
  3989. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3990. {
  3991. front: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(175, "lb"),
  3994. name: "Front",
  3995. image: {
  3996. source: "./media/characters/nebula/front.svg",
  3997. extra: 2566 / 2362,
  3998. bottom: 81 / 2644
  3999. }
  4000. }
  4001. },
  4002. [
  4003. {
  4004. name: "Small",
  4005. height: math.unit(4.5, "meters")
  4006. },
  4007. {
  4008. name: "Macro",
  4009. height: math.unit(1500, "meters"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Megamacro",
  4014. height: math.unit(150, "km")
  4015. },
  4016. {
  4017. name: "Gigamacro",
  4018. height: math.unit(27000, "km")
  4019. }
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4024. {
  4025. front: {
  4026. height: math.unit(6, "feet"),
  4027. weight: math.unit(225, "lb"),
  4028. name: "Front",
  4029. image: {
  4030. source: "./media/characters/abysgar/front.svg"
  4031. }
  4032. }
  4033. },
  4034. [
  4035. {
  4036. name: "Small",
  4037. height: math.unit(4.5, "meters")
  4038. },
  4039. {
  4040. name: "Macro",
  4041. height: math.unit(1250, "meters"),
  4042. default: true
  4043. },
  4044. {
  4045. name: "Megamacro",
  4046. height: math.unit(125, "km")
  4047. },
  4048. {
  4049. name: "Gigamacro",
  4050. height: math.unit(26000, "km")
  4051. }
  4052. ]
  4053. ))
  4054. characterMakers.push(() => makeCharacter(
  4055. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4056. {
  4057. front: {
  4058. height: math.unit(6, "feet"),
  4059. weight: math.unit(180, "lb"),
  4060. name: "Front",
  4061. image: {
  4062. source: "./media/characters/yakuz/front.svg"
  4063. }
  4064. }
  4065. },
  4066. [
  4067. {
  4068. name: "Small",
  4069. height: math.unit(5, "meters")
  4070. },
  4071. {
  4072. name: "Macro",
  4073. height: math.unit(1500, "meters"),
  4074. default: true
  4075. },
  4076. {
  4077. name: "Megamacro",
  4078. height: math.unit(200, "km")
  4079. },
  4080. {
  4081. name: "Gigamacro",
  4082. height: math.unit(100000, "km")
  4083. }
  4084. ]
  4085. ))
  4086. characterMakers.push(() => makeCharacter(
  4087. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4088. {
  4089. front: {
  4090. height: math.unit(6, "feet"),
  4091. weight: math.unit(175, "lb"),
  4092. name: "Front",
  4093. image: {
  4094. source: "./media/characters/mirova/front.svg",
  4095. extra: 3334 / 3071,
  4096. bottom: 42 / 3375.6
  4097. }
  4098. }
  4099. },
  4100. [
  4101. {
  4102. name: "Small",
  4103. height: math.unit(5, "meters")
  4104. },
  4105. {
  4106. name: "Macro",
  4107. height: math.unit(900, "meters"),
  4108. default: true
  4109. },
  4110. {
  4111. name: "Megamacro",
  4112. height: math.unit(135, "km")
  4113. },
  4114. {
  4115. name: "Gigamacro",
  4116. height: math.unit(20000, "km")
  4117. }
  4118. ]
  4119. ))
  4120. characterMakers.push(() => makeCharacter(
  4121. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4122. {
  4123. side: {
  4124. height: math.unit(28.35, "feet"),
  4125. weight: math.unit(99.75, "tons"),
  4126. name: "Side",
  4127. image: {
  4128. source: "./media/characters/asana-mech/side.svg",
  4129. extra: 923 / 699,
  4130. bottom: 50 / 975
  4131. }
  4132. },
  4133. chaingun: {
  4134. height: math.unit(7, "feet"),
  4135. weight: math.unit(2400, "lb"),
  4136. name: "Chaingun",
  4137. image: {
  4138. source: "./media/characters/asana-mech/chaingun.svg"
  4139. }
  4140. },
  4141. laser: {
  4142. height: math.unit(7.12, "feet"),
  4143. weight: math.unit(2000, "lb"),
  4144. name: "Laser",
  4145. image: {
  4146. source: "./media/characters/asana-mech/laser.svg"
  4147. }
  4148. },
  4149. },
  4150. [
  4151. {
  4152. name: "Normal",
  4153. height: math.unit(28.35, "feet"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "Macro",
  4158. height: math.unit(2500, "feet")
  4159. },
  4160. {
  4161. name: "Megamacro",
  4162. height: math.unit(25, "miles")
  4163. },
  4164. {
  4165. name: "Examacro",
  4166. height: math.unit(6e8, "lightyears")
  4167. },
  4168. ]
  4169. ))
  4170. characterMakers.push(() => makeCharacter(
  4171. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4172. {
  4173. front: {
  4174. height: math.unit(5, "meters"),
  4175. weight: math.unit(1000, "kg"),
  4176. name: "Front",
  4177. image: {
  4178. source: "./media/characters/asche/front.svg",
  4179. extra: 1258 / 1190,
  4180. bottom: 47 / 1305
  4181. }
  4182. },
  4183. frontUnderwear: {
  4184. height: math.unit(5, "meters"),
  4185. weight: math.unit(1000, "kg"),
  4186. name: "Front (Underwear)",
  4187. image: {
  4188. source: "./media/characters/asche/front-underwear.svg",
  4189. extra: 1258 / 1190,
  4190. bottom: 47 / 1305
  4191. }
  4192. },
  4193. frontDressed: {
  4194. height: math.unit(5, "meters"),
  4195. weight: math.unit(1000, "kg"),
  4196. name: "Front (Dressed)",
  4197. image: {
  4198. source: "./media/characters/asche/front-dressed.svg",
  4199. extra: 1258 / 1190,
  4200. bottom: 47 / 1305
  4201. }
  4202. },
  4203. frontArmor: {
  4204. height: math.unit(5, "meters"),
  4205. weight: math.unit(1000, "kg"),
  4206. name: "Front (Armored)",
  4207. image: {
  4208. source: "./media/characters/asche/front-armored.svg",
  4209. extra: 1374 / 1308,
  4210. bottom: 23 / 1397
  4211. }
  4212. },
  4213. mp724: {
  4214. height: math.unit(0.96, "meters"),
  4215. weight: math.unit(38, "kg"),
  4216. name: "H&K MP724",
  4217. image: {
  4218. source: "./media/characters/asche/h&k-mp724.svg"
  4219. }
  4220. },
  4221. side: {
  4222. height: math.unit(5, "meters"),
  4223. weight: math.unit(1000, "kg"),
  4224. name: "Side",
  4225. image: {
  4226. source: "./media/characters/asche/side.svg",
  4227. extra: 1717 / 1609,
  4228. bottom: 0.005
  4229. }
  4230. },
  4231. back: {
  4232. height: math.unit(5, "meters"),
  4233. weight: math.unit(1000, "kg"),
  4234. name: "Back",
  4235. image: {
  4236. source: "./media/characters/asche/back.svg",
  4237. extra: 1570 / 1501
  4238. }
  4239. },
  4240. },
  4241. [
  4242. {
  4243. name: "DEFCON 5",
  4244. height: math.unit(5, "meters")
  4245. },
  4246. {
  4247. name: "DEFCON 4",
  4248. height: math.unit(500, "meters"),
  4249. default: true
  4250. },
  4251. {
  4252. name: "DEFCON 3",
  4253. height: math.unit(5, "km")
  4254. },
  4255. {
  4256. name: "DEFCON 2",
  4257. height: math.unit(500, "km")
  4258. },
  4259. {
  4260. name: "DEFCON 1",
  4261. height: math.unit(500000, "km")
  4262. },
  4263. {
  4264. name: "DEFCON 0",
  4265. height: math.unit(3, "gigaparsecs")
  4266. },
  4267. ]
  4268. ))
  4269. characterMakers.push(() => makeCharacter(
  4270. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4271. {
  4272. front: {
  4273. height: math.unit(2, "meters"),
  4274. weight: math.unit(76, "kg"),
  4275. name: "Front",
  4276. image: {
  4277. source: "./media/characters/gale/front.svg"
  4278. }
  4279. },
  4280. frontAlt1: {
  4281. height: math.unit(2, "meters"),
  4282. weight: math.unit(76, "kg"),
  4283. name: "Front (Alt 1)",
  4284. image: {
  4285. source: "./media/characters/gale/front-alt-1.svg"
  4286. }
  4287. },
  4288. frontAlt2: {
  4289. height: math.unit(2, "meters"),
  4290. weight: math.unit(76, "kg"),
  4291. name: "Front (Alt 2)",
  4292. image: {
  4293. source: "./media/characters/gale/front-alt-2.svg"
  4294. }
  4295. },
  4296. },
  4297. [
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(7, "feet")
  4301. },
  4302. {
  4303. name: "Macro",
  4304. height: math.unit(150, "feet"),
  4305. default: true
  4306. },
  4307. {
  4308. name: "Macro+",
  4309. height: math.unit(300, "feet")
  4310. },
  4311. ]
  4312. ))
  4313. characterMakers.push(() => makeCharacter(
  4314. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4315. {
  4316. front: {
  4317. height: math.unit(2, "meters"),
  4318. weight: math.unit(76, "kg"),
  4319. name: "Front",
  4320. image: {
  4321. source: "./media/characters/draylen/front.svg"
  4322. }
  4323. }
  4324. },
  4325. [
  4326. {
  4327. name: "Macro",
  4328. height: math.unit(150, "feet"),
  4329. default: true
  4330. }
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4335. {
  4336. front: {
  4337. height: math.unit(7 + 9 / 12, "feet"),
  4338. weight: math.unit(379, "lbs"),
  4339. name: "Front",
  4340. image: {
  4341. source: "./media/characters/chez/front.svg"
  4342. }
  4343. },
  4344. side: {
  4345. height: math.unit(7 + 9 / 12, "feet"),
  4346. weight: math.unit(379, "lbs"),
  4347. name: "Side",
  4348. image: {
  4349. source: "./media/characters/chez/side.svg"
  4350. }
  4351. }
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(7 + 9 / 12, "feet"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "God King",
  4361. height: math.unit(9750000, "meters")
  4362. }
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4367. {
  4368. front: {
  4369. height: math.unit(6, "feet"),
  4370. weight: math.unit(275, "lbs"),
  4371. name: "Front",
  4372. image: {
  4373. source: "./media/characters/kaylum/front.svg",
  4374. bottom: 0.01,
  4375. extra: 1166 / 1031
  4376. }
  4377. },
  4378. frontWingless: {
  4379. height: math.unit(6, "feet"),
  4380. weight: math.unit(275, "lbs"),
  4381. name: "Front (Wingless)",
  4382. image: {
  4383. source: "./media/characters/kaylum/front-wingless.svg",
  4384. bottom: 0.01,
  4385. extra: 1117 / 1031
  4386. }
  4387. }
  4388. },
  4389. [
  4390. {
  4391. name: "Normal",
  4392. height: math.unit(3.05, "meters")
  4393. },
  4394. {
  4395. name: "Master",
  4396. height: math.unit(5.5, "meters")
  4397. },
  4398. {
  4399. name: "Rampage",
  4400. height: math.unit(19, "meters")
  4401. },
  4402. {
  4403. name: "Macro Lite",
  4404. height: math.unit(37, "meters")
  4405. },
  4406. {
  4407. name: "Hyper Predator",
  4408. height: math.unit(61, "meters")
  4409. },
  4410. {
  4411. name: "Macro",
  4412. height: math.unit(138, "meters"),
  4413. default: true
  4414. }
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4419. {
  4420. front: {
  4421. height: math.unit(6, "feet"),
  4422. weight: math.unit(150, "lbs"),
  4423. name: "Front",
  4424. image: {
  4425. source: "./media/characters/geta/front.svg"
  4426. }
  4427. }
  4428. },
  4429. [
  4430. {
  4431. name: "Micro",
  4432. height: math.unit(3, "inches"),
  4433. default: true
  4434. },
  4435. {
  4436. name: "Normal",
  4437. height: math.unit(5 + 5 / 12, "feet")
  4438. }
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4443. {
  4444. front: {
  4445. height: math.unit(6, "feet"),
  4446. weight: math.unit(300, "lbs"),
  4447. name: "Front",
  4448. image: {
  4449. source: "./media/characters/tyrnn/front.svg"
  4450. }
  4451. }
  4452. },
  4453. [
  4454. {
  4455. name: "Main Height",
  4456. height: math.unit(355, "feet"),
  4457. default: true
  4458. },
  4459. {
  4460. name: "Fave. Height",
  4461. height: math.unit(2400, "feet")
  4462. }
  4463. ]
  4464. ))
  4465. characterMakers.push(() => makeCharacter(
  4466. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4467. {
  4468. front: {
  4469. height: math.unit(6, "feet"),
  4470. weight: math.unit(300, "lbs"),
  4471. name: "Front",
  4472. image: {
  4473. source: "./media/characters/appledectomy/front.svg"
  4474. }
  4475. }
  4476. },
  4477. [
  4478. {
  4479. name: "Macro",
  4480. height: math.unit(2500, "feet")
  4481. },
  4482. {
  4483. name: "Megamacro",
  4484. height: math.unit(50, "miles"),
  4485. default: true
  4486. },
  4487. {
  4488. name: "Gigamacro",
  4489. height: math.unit(5000, "miles")
  4490. },
  4491. {
  4492. name: "Teramacro",
  4493. height: math.unit(250000, "miles")
  4494. },
  4495. ]
  4496. ))
  4497. characterMakers.push(() => makeCharacter(
  4498. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4499. {
  4500. front: {
  4501. height: math.unit(6, "feet"),
  4502. weight: math.unit(200, "lbs"),
  4503. name: "Front",
  4504. image: {
  4505. source: "./media/characters/vulpes/front.svg",
  4506. extra: 573 / 543,
  4507. bottom: 0.033
  4508. }
  4509. },
  4510. side: {
  4511. height: math.unit(6, "feet"),
  4512. weight: math.unit(200, "lbs"),
  4513. name: "Side",
  4514. image: {
  4515. source: "./media/characters/vulpes/side.svg",
  4516. extra: 577 / 549,
  4517. bottom: 11 / 588
  4518. }
  4519. },
  4520. back: {
  4521. height: math.unit(6, "feet"),
  4522. weight: math.unit(200, "lbs"),
  4523. name: "Back",
  4524. image: {
  4525. source: "./media/characters/vulpes/back.svg",
  4526. extra: 573 / 549,
  4527. bottom: 20 / 593
  4528. }
  4529. },
  4530. feet: {
  4531. height: math.unit(1.276, "feet"),
  4532. name: "Feet",
  4533. image: {
  4534. source: "./media/characters/vulpes/feet.svg"
  4535. }
  4536. },
  4537. maw: {
  4538. height: math.unit(1.18, "feet"),
  4539. name: "Maw",
  4540. image: {
  4541. source: "./media/characters/vulpes/maw.svg"
  4542. }
  4543. },
  4544. },
  4545. [
  4546. {
  4547. name: "Micro",
  4548. height: math.unit(2, "inches")
  4549. },
  4550. {
  4551. name: "Normal",
  4552. height: math.unit(6.3, "feet")
  4553. },
  4554. {
  4555. name: "Macro",
  4556. height: math.unit(850, "feet")
  4557. },
  4558. {
  4559. name: "Megamacro",
  4560. height: math.unit(7500, "feet"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Gigamacro",
  4565. height: math.unit(570000, "miles")
  4566. }
  4567. ]
  4568. ))
  4569. characterMakers.push(() => makeCharacter(
  4570. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4571. {
  4572. front: {
  4573. height: math.unit(6, "feet"),
  4574. weight: math.unit(210, "lbs"),
  4575. name: "Front",
  4576. image: {
  4577. source: "./media/characters/rain-fallen/front.svg"
  4578. }
  4579. },
  4580. side: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(210, "lbs"),
  4583. name: "Side",
  4584. image: {
  4585. source: "./media/characters/rain-fallen/side.svg"
  4586. }
  4587. },
  4588. back: {
  4589. height: math.unit(6, "feet"),
  4590. weight: math.unit(210, "lbs"),
  4591. name: "Back",
  4592. image: {
  4593. source: "./media/characters/rain-fallen/back.svg"
  4594. }
  4595. },
  4596. feral: {
  4597. height: math.unit(9, "feet"),
  4598. weight: math.unit(700, "lbs"),
  4599. name: "Feral",
  4600. image: {
  4601. source: "./media/characters/rain-fallen/feral.svg"
  4602. }
  4603. },
  4604. },
  4605. [
  4606. {
  4607. name: "Meddling with Mortals",
  4608. height: math.unit(8 + 8/12, "feet")
  4609. },
  4610. {
  4611. name: "Normal",
  4612. height: math.unit(5, "meter")
  4613. },
  4614. {
  4615. name: "Macro",
  4616. height: math.unit(150, "meter"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Megamacro",
  4621. height: math.unit(278e6, "meter")
  4622. },
  4623. {
  4624. name: "Gigamacro",
  4625. height: math.unit(2e9, "meter")
  4626. },
  4627. {
  4628. name: "Teramacro",
  4629. height: math.unit(8e12, "meter")
  4630. },
  4631. {
  4632. name: "Devourer",
  4633. height: math.unit(14, "zettameters")
  4634. },
  4635. {
  4636. name: "Scarlet King",
  4637. height: math.unit(18, "yottameters")
  4638. },
  4639. {
  4640. name: "Void",
  4641. height: math.unit(1e88, "yottameters")
  4642. }
  4643. ]
  4644. ))
  4645. characterMakers.push(() => makeCharacter(
  4646. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4647. {
  4648. standing: {
  4649. height: math.unit(6, "feet"),
  4650. weight: math.unit(180, "lbs"),
  4651. name: "Standing",
  4652. image: {
  4653. source: "./media/characters/zaakira/standing.svg",
  4654. extra: 1599/1504,
  4655. bottom: 39/1638
  4656. }
  4657. },
  4658. laying: {
  4659. height: math.unit(3, "feet"),
  4660. weight: math.unit(180, "lbs"),
  4661. name: "Laying",
  4662. image: {
  4663. source: "./media/characters/zaakira/laying.svg"
  4664. }
  4665. },
  4666. },
  4667. [
  4668. {
  4669. name: "Normal",
  4670. height: math.unit(12, "feet")
  4671. },
  4672. {
  4673. name: "Macro",
  4674. height: math.unit(279, "feet"),
  4675. default: true
  4676. }
  4677. ]
  4678. ))
  4679. characterMakers.push(() => makeCharacter(
  4680. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4681. {
  4682. femSfw: {
  4683. height: math.unit(8, "feet"),
  4684. weight: math.unit(350, "lb"),
  4685. name: "Fem",
  4686. image: {
  4687. source: "./media/characters/sigvald/fem-sfw.svg",
  4688. extra: 182 / 164,
  4689. bottom: 8.7 / 190.5
  4690. }
  4691. },
  4692. femNsfw: {
  4693. height: math.unit(8, "feet"),
  4694. weight: math.unit(350, "lb"),
  4695. name: "Fem (NSFW)",
  4696. image: {
  4697. source: "./media/characters/sigvald/fem-nsfw.svg",
  4698. extra: 182 / 164,
  4699. bottom: 8.7 / 190.5
  4700. }
  4701. },
  4702. maleNsfw: {
  4703. height: math.unit(8, "feet"),
  4704. weight: math.unit(350, "lb"),
  4705. name: "Male (NSFW)",
  4706. image: {
  4707. source: "./media/characters/sigvald/male-nsfw.svg",
  4708. extra: 182 / 164,
  4709. bottom: 8.7 / 190.5
  4710. }
  4711. },
  4712. hermNsfw: {
  4713. height: math.unit(8, "feet"),
  4714. weight: math.unit(350, "lb"),
  4715. name: "Herm (NSFW)",
  4716. image: {
  4717. source: "./media/characters/sigvald/herm-nsfw.svg",
  4718. extra: 182 / 164,
  4719. bottom: 8.7 / 190.5
  4720. }
  4721. },
  4722. dick: {
  4723. height: math.unit(2.36, "feet"),
  4724. name: "Dick",
  4725. image: {
  4726. source: "./media/characters/sigvald/dick.svg"
  4727. }
  4728. },
  4729. eye: {
  4730. height: math.unit(0.31, "feet"),
  4731. name: "Eye",
  4732. image: {
  4733. source: "./media/characters/sigvald/eye.svg"
  4734. }
  4735. },
  4736. mouth: {
  4737. height: math.unit(0.92, "feet"),
  4738. name: "Mouth",
  4739. image: {
  4740. source: "./media/characters/sigvald/mouth.svg"
  4741. }
  4742. },
  4743. paws: {
  4744. height: math.unit(2.2, "feet"),
  4745. name: "Paws",
  4746. image: {
  4747. source: "./media/characters/sigvald/paws.svg"
  4748. }
  4749. }
  4750. },
  4751. [
  4752. {
  4753. name: "Normal",
  4754. height: math.unit(8, "feet")
  4755. },
  4756. {
  4757. name: "Large",
  4758. height: math.unit(12, "feet")
  4759. },
  4760. {
  4761. name: "Larger",
  4762. height: math.unit(20, "feet")
  4763. },
  4764. {
  4765. name: "Macro",
  4766. height: math.unit(150, "feet")
  4767. },
  4768. {
  4769. name: "Macro+",
  4770. height: math.unit(200, "feet"),
  4771. default: true
  4772. },
  4773. ]
  4774. ))
  4775. characterMakers.push(() => makeCharacter(
  4776. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4777. {
  4778. side: {
  4779. height: math.unit(12, "feet"),
  4780. weight: math.unit(2000, "kg"),
  4781. name: "Side",
  4782. image: {
  4783. source: "./media/characters/scott/side.svg",
  4784. extra: 754 / 724,
  4785. bottom: 0.069
  4786. }
  4787. },
  4788. upright: {
  4789. height: math.unit(12, "feet"),
  4790. weight: math.unit(2000, "kg"),
  4791. name: "Upright",
  4792. image: {
  4793. source: "./media/characters/scott/upright.svg",
  4794. extra: 3881 / 3722,
  4795. bottom: 0.05
  4796. }
  4797. },
  4798. },
  4799. [
  4800. {
  4801. name: "Normal",
  4802. height: math.unit(12, "feet"),
  4803. default: true
  4804. },
  4805. ]
  4806. ))
  4807. characterMakers.push(() => makeCharacter(
  4808. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4809. {
  4810. side: {
  4811. height: math.unit(8, "meters"),
  4812. weight: math.unit(84755, "lbs"),
  4813. name: "Side",
  4814. image: {
  4815. source: "./media/characters/tobias/side.svg",
  4816. extra: 1474 / 1096,
  4817. bottom: 38.9 / 1513.1235
  4818. }
  4819. },
  4820. },
  4821. [
  4822. {
  4823. name: "Normal",
  4824. height: math.unit(8, "meters"),
  4825. default: true
  4826. },
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4831. {
  4832. front: {
  4833. height: math.unit(5.5, "feet"),
  4834. weight: math.unit(400, "lbs"),
  4835. name: "Front",
  4836. image: {
  4837. source: "./media/characters/kieran/front.svg",
  4838. extra: 2694 / 2364,
  4839. bottom: 217 / 2908
  4840. }
  4841. },
  4842. side: {
  4843. height: math.unit(5.5, "feet"),
  4844. weight: math.unit(400, "lbs"),
  4845. name: "Side",
  4846. image: {
  4847. source: "./media/characters/kieran/side.svg",
  4848. extra: 875 / 777,
  4849. bottom: 84.6 / 959
  4850. }
  4851. },
  4852. },
  4853. [
  4854. {
  4855. name: "Normal",
  4856. height: math.unit(5.5, "feet"),
  4857. default: true
  4858. },
  4859. ]
  4860. ))
  4861. characterMakers.push(() => makeCharacter(
  4862. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4863. {
  4864. side: {
  4865. height: math.unit(2, "meters"),
  4866. weight: math.unit(70, "kg"),
  4867. name: "Side",
  4868. image: {
  4869. source: "./media/characters/sanya/side.svg",
  4870. bottom: 0.02,
  4871. extra: 1.02
  4872. }
  4873. },
  4874. },
  4875. [
  4876. {
  4877. name: "Small",
  4878. height: math.unit(2, "meters")
  4879. },
  4880. {
  4881. name: "Normal",
  4882. height: math.unit(3, "meters")
  4883. },
  4884. {
  4885. name: "Macro",
  4886. height: math.unit(16, "meters"),
  4887. default: true
  4888. },
  4889. ]
  4890. ))
  4891. characterMakers.push(() => makeCharacter(
  4892. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4893. {
  4894. front: {
  4895. height: math.unit(2, "meters"),
  4896. weight: math.unit(120, "kg"),
  4897. name: "Front",
  4898. image: {
  4899. source: "./media/characters/miranda/front.svg",
  4900. extra: 195 / 185,
  4901. bottom: 10.9 / 206.5
  4902. }
  4903. },
  4904. back: {
  4905. height: math.unit(2, "meters"),
  4906. weight: math.unit(120, "kg"),
  4907. name: "Back",
  4908. image: {
  4909. source: "./media/characters/miranda/back.svg",
  4910. extra: 201 / 193,
  4911. bottom: 2.3 / 203.7
  4912. }
  4913. },
  4914. },
  4915. [
  4916. {
  4917. name: "Normal",
  4918. height: math.unit(10, "feet"),
  4919. default: true
  4920. }
  4921. ]
  4922. ))
  4923. characterMakers.push(() => makeCharacter(
  4924. { name: "James", species: ["deer"], tags: ["anthro"] },
  4925. {
  4926. side: {
  4927. height: math.unit(2, "meters"),
  4928. weight: math.unit(100, "kg"),
  4929. name: "Front",
  4930. image: {
  4931. source: "./media/characters/james/front.svg",
  4932. extra: 10 / 8.5
  4933. }
  4934. },
  4935. },
  4936. [
  4937. {
  4938. name: "Normal",
  4939. height: math.unit(8.5, "feet"),
  4940. default: true
  4941. }
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4946. {
  4947. side: {
  4948. height: math.unit(9.5, "feet"),
  4949. weight: math.unit(2500, "lbs"),
  4950. name: "Side",
  4951. image: {
  4952. source: "./media/characters/heather/side.svg"
  4953. }
  4954. },
  4955. },
  4956. [
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(9.5, "feet"),
  4960. default: true
  4961. }
  4962. ]
  4963. ))
  4964. characterMakers.push(() => makeCharacter(
  4965. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4966. {
  4967. side: {
  4968. height: math.unit(6.5, "feet"),
  4969. weight: math.unit(400, "lbs"),
  4970. name: "Side",
  4971. image: {
  4972. source: "./media/characters/lukas/side.svg",
  4973. extra: 7.25 / 6.5
  4974. }
  4975. },
  4976. },
  4977. [
  4978. {
  4979. name: "Normal",
  4980. height: math.unit(6.5, "feet"),
  4981. default: true
  4982. }
  4983. ]
  4984. ))
  4985. characterMakers.push(() => makeCharacter(
  4986. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4987. {
  4988. side: {
  4989. height: math.unit(5, "feet"),
  4990. weight: math.unit(3000, "lbs"),
  4991. name: "Side",
  4992. image: {
  4993. source: "./media/characters/louise/side.svg"
  4994. }
  4995. },
  4996. },
  4997. [
  4998. {
  4999. name: "Normal",
  5000. height: math.unit(5, "feet"),
  5001. default: true
  5002. }
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5007. {
  5008. side: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(150, "lbs"),
  5011. name: "Side",
  5012. image: {
  5013. source: "./media/characters/ramona/side.svg"
  5014. }
  5015. },
  5016. },
  5017. [
  5018. {
  5019. name: "Normal",
  5020. height: math.unit(5.3, "meters"),
  5021. default: true
  5022. },
  5023. {
  5024. name: "Macro",
  5025. height: math.unit(20, "stories")
  5026. },
  5027. {
  5028. name: "Macro+",
  5029. height: math.unit(50, "stories")
  5030. },
  5031. ]
  5032. ))
  5033. characterMakers.push(() => makeCharacter(
  5034. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5035. {
  5036. standing: {
  5037. height: math.unit(5.75, "feet"),
  5038. weight: math.unit(160, "lbs"),
  5039. name: "Standing",
  5040. image: {
  5041. source: "./media/characters/deerpuff/standing.svg",
  5042. extra: 682 / 624
  5043. }
  5044. },
  5045. sitting: {
  5046. height: math.unit(5.75 / 1.79, "feet"),
  5047. weight: math.unit(160, "lbs"),
  5048. name: "Sitting",
  5049. image: {
  5050. source: "./media/characters/deerpuff/sitting.svg",
  5051. bottom: 44 / 400,
  5052. extra: 1
  5053. }
  5054. },
  5055. taurLaying: {
  5056. height: math.unit(6, "feet"),
  5057. weight: math.unit(400, "lbs"),
  5058. name: "Taur (Laying)",
  5059. image: {
  5060. source: "./media/characters/deerpuff/taur-laying.svg"
  5061. }
  5062. },
  5063. },
  5064. [
  5065. {
  5066. name: "Puffball",
  5067. height: math.unit(6, "inches")
  5068. },
  5069. {
  5070. name: "Normalpuff",
  5071. height: math.unit(5.75, "feet")
  5072. },
  5073. {
  5074. name: "Macropuff",
  5075. height: math.unit(1500, "feet"),
  5076. default: true
  5077. },
  5078. {
  5079. name: "Megapuff",
  5080. height: math.unit(500, "miles")
  5081. },
  5082. {
  5083. name: "Gigapuff",
  5084. height: math.unit(250000, "miles")
  5085. },
  5086. {
  5087. name: "Omegapuff",
  5088. height: math.unit(1000, "lightyears")
  5089. },
  5090. ]
  5091. ))
  5092. characterMakers.push(() => makeCharacter(
  5093. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5094. {
  5095. stomping: {
  5096. height: math.unit(6, "feet"),
  5097. weight: math.unit(170, "lbs"),
  5098. name: "Stomping",
  5099. image: {
  5100. source: "./media/characters/vivian/stomping.svg"
  5101. }
  5102. },
  5103. sitting: {
  5104. height: math.unit(6 / 1.75, "feet"),
  5105. weight: math.unit(170, "lbs"),
  5106. name: "Sitting",
  5107. image: {
  5108. source: "./media/characters/vivian/sitting.svg",
  5109. bottom: 1 / 6.4,
  5110. extra: 1,
  5111. }
  5112. },
  5113. },
  5114. [
  5115. {
  5116. name: "Normal",
  5117. height: math.unit(7, "feet"),
  5118. default: true
  5119. },
  5120. {
  5121. name: "Macro",
  5122. height: math.unit(10, "stories")
  5123. },
  5124. {
  5125. name: "Macro+",
  5126. height: math.unit(30, "stories")
  5127. },
  5128. {
  5129. name: "Megamacro",
  5130. height: math.unit(10, "miles")
  5131. },
  5132. {
  5133. name: "Megamacro+",
  5134. height: math.unit(2750000, "meters")
  5135. },
  5136. ]
  5137. ))
  5138. characterMakers.push(() => makeCharacter(
  5139. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5140. {
  5141. front: {
  5142. height: math.unit(6, "feet"),
  5143. weight: math.unit(160, "lbs"),
  5144. name: "Front",
  5145. image: {
  5146. source: "./media/characters/prince/front.svg",
  5147. extra: 3400 / 3000
  5148. }
  5149. },
  5150. jumping: {
  5151. height: math.unit(6, "feet"),
  5152. weight: math.unit(160, "lbs"),
  5153. name: "Jumping",
  5154. image: {
  5155. source: "./media/characters/prince/jump.svg",
  5156. extra: 2555 / 2134
  5157. }
  5158. },
  5159. },
  5160. [
  5161. {
  5162. name: "Normal",
  5163. height: math.unit(7.75, "feet"),
  5164. default: true
  5165. },
  5166. {
  5167. name: "Not cute",
  5168. height: math.unit(17, "feet")
  5169. },
  5170. {
  5171. name: "I said NOT",
  5172. height: math.unit(91, "feet")
  5173. },
  5174. {
  5175. name: "Please stop",
  5176. height: math.unit(560, "feet")
  5177. },
  5178. {
  5179. name: "What have you done",
  5180. height: math.unit(2200, "feet")
  5181. },
  5182. {
  5183. name: "Deer God",
  5184. height: math.unit(3.6, "miles")
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5190. {
  5191. standing: {
  5192. height: math.unit(6, "feet"),
  5193. weight: math.unit(300, "lbs"),
  5194. name: "Standing",
  5195. image: {
  5196. source: "./media/characters/psymon/standing.svg",
  5197. extra: 1888 / 1810,
  5198. bottom: 0.05
  5199. }
  5200. },
  5201. slithering: {
  5202. height: math.unit(6, "feet"),
  5203. weight: math.unit(300, "lbs"),
  5204. name: "Slithering",
  5205. image: {
  5206. source: "./media/characters/psymon/slithering.svg",
  5207. extra: 1330 / 1224
  5208. }
  5209. },
  5210. slitheringAlt: {
  5211. height: math.unit(6, "feet"),
  5212. weight: math.unit(300, "lbs"),
  5213. name: "Slithering (Alt)",
  5214. image: {
  5215. source: "./media/characters/psymon/slithering-alt.svg",
  5216. extra: 1330 / 1224
  5217. }
  5218. },
  5219. },
  5220. [
  5221. {
  5222. name: "Normal",
  5223. height: math.unit(11.25, "feet"),
  5224. default: true
  5225. },
  5226. {
  5227. name: "Large",
  5228. height: math.unit(27, "feet")
  5229. },
  5230. {
  5231. name: "Giant",
  5232. height: math.unit(87, "feet")
  5233. },
  5234. {
  5235. name: "Macro",
  5236. height: math.unit(365, "feet")
  5237. },
  5238. {
  5239. name: "Megamacro",
  5240. height: math.unit(3, "miles")
  5241. },
  5242. {
  5243. name: "World Serpent",
  5244. height: math.unit(8000, "miles")
  5245. },
  5246. ]
  5247. ))
  5248. characterMakers.push(() => makeCharacter(
  5249. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5250. {
  5251. front: {
  5252. height: math.unit(6, "feet"),
  5253. weight: math.unit(180, "lbs"),
  5254. name: "Front",
  5255. image: {
  5256. source: "./media/characters/daimos/front.svg",
  5257. extra: 4160 / 3897,
  5258. bottom: 0.021
  5259. }
  5260. }
  5261. },
  5262. [
  5263. {
  5264. name: "Normal",
  5265. height: math.unit(8, "feet"),
  5266. default: true
  5267. },
  5268. {
  5269. name: "Big Dog",
  5270. height: math.unit(22, "feet")
  5271. },
  5272. {
  5273. name: "Macro",
  5274. height: math.unit(127, "feet")
  5275. },
  5276. {
  5277. name: "Megamacro",
  5278. height: math.unit(3600, "feet")
  5279. },
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5284. {
  5285. side: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(180, "lbs"),
  5288. name: "Side",
  5289. image: {
  5290. source: "./media/characters/blake/side.svg",
  5291. extra: 1212 / 1120,
  5292. bottom: 0.05
  5293. }
  5294. },
  5295. crouched: {
  5296. height: math.unit(6 * 0.57, "feet"),
  5297. weight: math.unit(180, "lbs"),
  5298. name: "Crouched",
  5299. image: {
  5300. source: "./media/characters/blake/crouched.svg",
  5301. extra: 840 / 587,
  5302. bottom: 0.04
  5303. }
  5304. },
  5305. bent: {
  5306. height: math.unit(6 * 0.75, "feet"),
  5307. weight: math.unit(180, "lbs"),
  5308. name: "Bent",
  5309. image: {
  5310. source: "./media/characters/blake/bent.svg",
  5311. extra: 592 / 544,
  5312. bottom: 0.035
  5313. }
  5314. },
  5315. },
  5316. [
  5317. {
  5318. name: "Normal",
  5319. height: math.unit(8 + 1 / 6, "feet"),
  5320. default: true
  5321. },
  5322. {
  5323. name: "Big Backside",
  5324. height: math.unit(37, "feet")
  5325. },
  5326. {
  5327. name: "Subway Shredder",
  5328. height: math.unit(72, "feet")
  5329. },
  5330. {
  5331. name: "City Carver",
  5332. height: math.unit(1675, "feet")
  5333. },
  5334. {
  5335. name: "Tectonic Tweaker",
  5336. height: math.unit(2300, "miles")
  5337. },
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5342. {
  5343. front: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(180, "lbs"),
  5346. name: "Front",
  5347. image: {
  5348. source: "./media/characters/guisetto/front.svg",
  5349. extra: 856 / 817,
  5350. bottom: 0.06
  5351. }
  5352. },
  5353. airborne: {
  5354. height: math.unit(6, "feet"),
  5355. weight: math.unit(180, "lbs"),
  5356. name: "Airborne",
  5357. image: {
  5358. source: "./media/characters/guisetto/airborne.svg",
  5359. extra: 584 / 525
  5360. }
  5361. },
  5362. },
  5363. [
  5364. {
  5365. name: "Normal",
  5366. height: math.unit(10 + 11 / 12, "feet"),
  5367. default: true
  5368. },
  5369. {
  5370. name: "Large",
  5371. height: math.unit(35, "feet")
  5372. },
  5373. {
  5374. name: "Macro",
  5375. height: math.unit(475, "feet")
  5376. },
  5377. ]
  5378. ))
  5379. characterMakers.push(() => makeCharacter(
  5380. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5381. {
  5382. front: {
  5383. height: math.unit(6, "feet"),
  5384. weight: math.unit(180, "lbs"),
  5385. name: "Front",
  5386. image: {
  5387. source: "./media/characters/luxor/front.svg",
  5388. extra: 2940 / 2152
  5389. }
  5390. },
  5391. back: {
  5392. height: math.unit(6, "feet"),
  5393. weight: math.unit(180, "lbs"),
  5394. name: "Back",
  5395. image: {
  5396. source: "./media/characters/luxor/back.svg",
  5397. extra: 1083 / 960
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(5 + 5 / 6, "feet"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Lamp",
  5409. height: math.unit(50, "feet")
  5410. },
  5411. {
  5412. name: "Lämp",
  5413. height: math.unit(300, "feet")
  5414. },
  5415. {
  5416. name: "The sun is a lamp",
  5417. height: math.unit(250000, "miles")
  5418. },
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5423. {
  5424. front: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(50, "lbs"),
  5427. name: "Front",
  5428. image: {
  5429. source: "./media/characters/huoyan/front.svg"
  5430. }
  5431. },
  5432. side: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(180, "lbs"),
  5435. name: "Side",
  5436. image: {
  5437. source: "./media/characters/huoyan/side.svg"
  5438. }
  5439. },
  5440. },
  5441. [
  5442. {
  5443. name: "Chef",
  5444. height: math.unit(9, "feet")
  5445. },
  5446. {
  5447. name: "Normal",
  5448. height: math.unit(65, "feet"),
  5449. default: true
  5450. },
  5451. {
  5452. name: "Macro",
  5453. height: math.unit(780, "feet")
  5454. },
  5455. {
  5456. name: "Flaming Mountain",
  5457. height: math.unit(4.8, "miles")
  5458. },
  5459. {
  5460. name: "Celestial",
  5461. height: math.unit(765000, "miles")
  5462. },
  5463. ]
  5464. ))
  5465. characterMakers.push(() => makeCharacter(
  5466. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5467. {
  5468. front: {
  5469. height: math.unit(5 + 3 / 4, "feet"),
  5470. weight: math.unit(120, "lbs"),
  5471. name: "Front",
  5472. image: {
  5473. source: "./media/characters/tails/front.svg"
  5474. }
  5475. }
  5476. },
  5477. [
  5478. {
  5479. name: "Normal",
  5480. height: math.unit(5 + 3 / 4, "feet"),
  5481. default: true
  5482. }
  5483. ]
  5484. ))
  5485. characterMakers.push(() => makeCharacter(
  5486. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5487. {
  5488. front: {
  5489. height: math.unit(4, "feet"),
  5490. weight: math.unit(50, "lbs"),
  5491. name: "Front",
  5492. image: {
  5493. source: "./media/characters/rainy/front.svg"
  5494. }
  5495. }
  5496. },
  5497. [
  5498. {
  5499. name: "Macro",
  5500. height: math.unit(800, "feet"),
  5501. default: true
  5502. }
  5503. ]
  5504. ))
  5505. characterMakers.push(() => makeCharacter(
  5506. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5507. {
  5508. front: {
  5509. height: math.unit(6, "feet"),
  5510. weight: math.unit(150, "lbs"),
  5511. name: "Front",
  5512. image: {
  5513. source: "./media/characters/rainier/front.svg"
  5514. }
  5515. }
  5516. },
  5517. [
  5518. {
  5519. name: "Micro",
  5520. height: math.unit(2, "mm"),
  5521. default: true
  5522. }
  5523. ]
  5524. ))
  5525. characterMakers.push(() => makeCharacter(
  5526. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5527. {
  5528. front: {
  5529. height: math.unit(8 + 4/12, "feet"),
  5530. name: "Front",
  5531. image: {
  5532. source: "./media/characters/andy-renard/front.svg",
  5533. extra: 1839/1726,
  5534. bottom: 134/1973
  5535. }
  5536. },
  5537. back: {
  5538. height: math.unit(8 + 4/12, "feet"),
  5539. name: "Back",
  5540. image: {
  5541. source: "./media/characters/andy-renard/back.svg",
  5542. extra: 1838/1710,
  5543. bottom: 105/1943
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Tall",
  5550. height: math.unit(8 + 4/12, "feet")
  5551. },
  5552. {
  5553. name: "Mini Macro",
  5554. height: math.unit(15, "feet"),
  5555. default: true
  5556. },
  5557. {
  5558. name: "Macro",
  5559. height: math.unit(100, "feet")
  5560. },
  5561. {
  5562. name: "Mega Macro",
  5563. height: math.unit(1000, "feet")
  5564. },
  5565. {
  5566. name: "Giga Macro",
  5567. height: math.unit(10, "miles")
  5568. },
  5569. {
  5570. name: "God Macro",
  5571. height: math.unit(1, "multiverse")
  5572. },
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5577. {
  5578. front: {
  5579. height: math.unit(6, "feet"),
  5580. weight: math.unit(210, "lbs"),
  5581. name: "Front",
  5582. image: {
  5583. source: "./media/characters/cimmaron/front-sfw.svg",
  5584. extra: 701 / 676,
  5585. bottom: 0.046
  5586. }
  5587. },
  5588. back: {
  5589. height: math.unit(6, "feet"),
  5590. weight: math.unit(210, "lbs"),
  5591. name: "Back",
  5592. image: {
  5593. source: "./media/characters/cimmaron/back-sfw.svg",
  5594. extra: 701 / 676,
  5595. bottom: 0.046
  5596. }
  5597. },
  5598. frontNsfw: {
  5599. height: math.unit(6, "feet"),
  5600. weight: math.unit(210, "lbs"),
  5601. name: "Front (NSFW)",
  5602. image: {
  5603. source: "./media/characters/cimmaron/front-nsfw.svg",
  5604. extra: 701 / 676,
  5605. bottom: 0.046
  5606. }
  5607. },
  5608. backNsfw: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(210, "lbs"),
  5611. name: "Back (NSFW)",
  5612. image: {
  5613. source: "./media/characters/cimmaron/back-nsfw.svg",
  5614. extra: 701 / 676,
  5615. bottom: 0.046
  5616. }
  5617. },
  5618. dick: {
  5619. height: math.unit(1.714, "feet"),
  5620. name: "Dick",
  5621. image: {
  5622. source: "./media/characters/cimmaron/dick.svg"
  5623. }
  5624. },
  5625. },
  5626. [
  5627. {
  5628. name: "Normal",
  5629. height: math.unit(6, "feet"),
  5630. default: true
  5631. },
  5632. {
  5633. name: "Macro Mayor",
  5634. height: math.unit(350, "meters")
  5635. },
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5640. {
  5641. front: {
  5642. height: math.unit(6, "feet"),
  5643. weight: math.unit(200, "lbs"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/akari/front.svg",
  5647. extra: 962 / 901,
  5648. bottom: 0.04
  5649. }
  5650. }
  5651. },
  5652. [
  5653. {
  5654. name: "Micro",
  5655. height: math.unit(5, "inches"),
  5656. default: true
  5657. },
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(7, "feet")
  5661. },
  5662. ]
  5663. ))
  5664. characterMakers.push(() => makeCharacter(
  5665. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5666. {
  5667. front: {
  5668. height: math.unit(6, "feet"),
  5669. weight: math.unit(140, "lbs"),
  5670. name: "Front",
  5671. image: {
  5672. source: "./media/characters/cynosura/front.svg",
  5673. extra: 896 / 847
  5674. }
  5675. },
  5676. back: {
  5677. height: math.unit(6, "feet"),
  5678. weight: math.unit(140, "lbs"),
  5679. name: "Back",
  5680. image: {
  5681. source: "./media/characters/cynosura/back.svg",
  5682. extra: 1365 / 1250
  5683. }
  5684. },
  5685. },
  5686. [
  5687. {
  5688. name: "Micro",
  5689. height: math.unit(4, "inches")
  5690. },
  5691. {
  5692. name: "Normal",
  5693. height: math.unit(5.75, "feet"),
  5694. default: true
  5695. },
  5696. {
  5697. name: "Tall",
  5698. height: math.unit(10, "feet")
  5699. },
  5700. {
  5701. name: "Big",
  5702. height: math.unit(20, "feet")
  5703. },
  5704. {
  5705. name: "Macro",
  5706. height: math.unit(50, "feet")
  5707. },
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5712. {
  5713. front: {
  5714. height: math.unit(13 + 2/12, "feet"),
  5715. weight: math.unit(800, "kg"),
  5716. name: "Front",
  5717. image: {
  5718. source: "./media/characters/gin/front.svg",
  5719. extra: 1312/1191,
  5720. bottom: 45/1357
  5721. }
  5722. },
  5723. mouth: {
  5724. height: math.unit(2.39 * 1.8, "feet"),
  5725. name: "Mouth",
  5726. image: {
  5727. source: "./media/characters/gin/mouth.svg"
  5728. }
  5729. },
  5730. hand: {
  5731. height: math.unit(1.57 * 2.19, "feet"),
  5732. name: "Hand",
  5733. image: {
  5734. source: "./media/characters/gin/hand.svg"
  5735. }
  5736. },
  5737. foot: {
  5738. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5739. name: "Foot",
  5740. image: {
  5741. source: "./media/characters/gin/foot.svg"
  5742. }
  5743. },
  5744. sole: {
  5745. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5746. name: "Sole",
  5747. image: {
  5748. source: "./media/characters/gin/sole.svg"
  5749. }
  5750. },
  5751. },
  5752. [
  5753. {
  5754. name: "Very Small",
  5755. height: math.unit(13 + 2 / 12, "feet")
  5756. },
  5757. {
  5758. name: "Micro",
  5759. height: math.unit(600, "miles")
  5760. },
  5761. {
  5762. name: "Regular",
  5763. height: math.unit(20, "earths"),
  5764. default: true
  5765. },
  5766. {
  5767. name: "Macro",
  5768. height: math.unit(2.2, "solarradii")
  5769. },
  5770. {
  5771. name: "Teramacro",
  5772. height: math.unit(1.2, "galaxies")
  5773. },
  5774. {
  5775. name: "Omegamacro",
  5776. height: math.unit(200, "universes")
  5777. },
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5782. {
  5783. front: {
  5784. height: math.unit(6 + 1 / 6, "feet"),
  5785. weight: math.unit(178, "lbs"),
  5786. name: "Front",
  5787. image: {
  5788. source: "./media/characters/guy/front.svg"
  5789. }
  5790. }
  5791. },
  5792. [
  5793. {
  5794. name: "Normal",
  5795. height: math.unit(6 + 1 / 6, "feet"),
  5796. default: true
  5797. },
  5798. {
  5799. name: "Large",
  5800. height: math.unit(25 + 7 / 12, "feet")
  5801. },
  5802. {
  5803. name: "Macro",
  5804. height: math.unit(60 + 9 / 12, "feet")
  5805. },
  5806. {
  5807. name: "Macro+",
  5808. height: math.unit(246, "feet")
  5809. },
  5810. {
  5811. name: "Macro++",
  5812. height: math.unit(878, "feet")
  5813. }
  5814. ]
  5815. ))
  5816. characterMakers.push(() => makeCharacter(
  5817. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5818. {
  5819. front: {
  5820. height: math.unit(9, "feet"),
  5821. weight: math.unit(800, "lbs"),
  5822. name: "Front",
  5823. image: {
  5824. source: "./media/characters/tiberius/front.svg",
  5825. extra: 2295 / 2071
  5826. }
  5827. },
  5828. back: {
  5829. height: math.unit(9, "feet"),
  5830. weight: math.unit(800, "lbs"),
  5831. name: "Back",
  5832. image: {
  5833. source: "./media/characters/tiberius/back.svg",
  5834. extra: 2373 / 2160
  5835. }
  5836. },
  5837. },
  5838. [
  5839. {
  5840. name: "Normal",
  5841. height: math.unit(9, "feet"),
  5842. default: true
  5843. }
  5844. ]
  5845. ))
  5846. characterMakers.push(() => makeCharacter(
  5847. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5848. {
  5849. front: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(600, "lbs"),
  5852. name: "Front",
  5853. image: {
  5854. source: "./media/characters/surgo/front.svg",
  5855. extra: 3591 / 2227
  5856. }
  5857. },
  5858. back: {
  5859. height: math.unit(6, "feet"),
  5860. weight: math.unit(600, "lbs"),
  5861. name: "Back",
  5862. image: {
  5863. source: "./media/characters/surgo/back.svg",
  5864. extra: 3557 / 2228
  5865. }
  5866. },
  5867. laying: {
  5868. height: math.unit(6 * 0.85, "feet"),
  5869. weight: math.unit(600, "lbs"),
  5870. name: "Laying",
  5871. image: {
  5872. source: "./media/characters/surgo/laying.svg"
  5873. }
  5874. },
  5875. },
  5876. [
  5877. {
  5878. name: "Normal",
  5879. height: math.unit(6, "feet"),
  5880. default: true
  5881. }
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5886. {
  5887. side: {
  5888. height: math.unit(6, "feet"),
  5889. weight: math.unit(150, "lbs"),
  5890. name: "Side",
  5891. image: {
  5892. source: "./media/characters/cibus/side.svg",
  5893. extra: 800 / 400
  5894. }
  5895. },
  5896. },
  5897. [
  5898. {
  5899. name: "Normal",
  5900. height: math.unit(6, "feet"),
  5901. default: true
  5902. }
  5903. ]
  5904. ))
  5905. characterMakers.push(() => makeCharacter(
  5906. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5907. {
  5908. front: {
  5909. height: math.unit(6, "feet"),
  5910. weight: math.unit(240, "lbs"),
  5911. name: "Front",
  5912. image: {
  5913. source: "./media/characters/nibbles/front.svg"
  5914. }
  5915. },
  5916. side: {
  5917. height: math.unit(6, "feet"),
  5918. weight: math.unit(240, "lbs"),
  5919. name: "Side",
  5920. image: {
  5921. source: "./media/characters/nibbles/side.svg"
  5922. }
  5923. },
  5924. },
  5925. [
  5926. {
  5927. name: "Normal",
  5928. height: math.unit(9, "feet"),
  5929. default: true
  5930. }
  5931. ]
  5932. ))
  5933. characterMakers.push(() => makeCharacter(
  5934. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5935. {
  5936. side: {
  5937. height: math.unit(5 + 1 / 6, "feet"),
  5938. weight: math.unit(130, "lbs"),
  5939. name: "Side",
  5940. image: {
  5941. source: "./media/characters/rikky/side.svg",
  5942. extra: 851 / 801
  5943. }
  5944. },
  5945. },
  5946. [
  5947. {
  5948. name: "Normal",
  5949. height: math.unit(5 + 1 / 6, "feet")
  5950. },
  5951. {
  5952. name: "Macro",
  5953. height: math.unit(152, "feet"),
  5954. default: true
  5955. },
  5956. {
  5957. name: "Megamacro",
  5958. height: math.unit(7, "miles")
  5959. }
  5960. ]
  5961. ))
  5962. characterMakers.push(() => makeCharacter(
  5963. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5964. {
  5965. side: {
  5966. height: math.unit(370, "cm"),
  5967. weight: math.unit(350, "lbs"),
  5968. name: "Side",
  5969. image: {
  5970. source: "./media/characters/malfressa/side.svg"
  5971. }
  5972. },
  5973. walking: {
  5974. height: math.unit(370, "cm"),
  5975. weight: math.unit(350, "lbs"),
  5976. name: "Walking",
  5977. image: {
  5978. source: "./media/characters/malfressa/walking.svg"
  5979. }
  5980. },
  5981. feral: {
  5982. height: math.unit(2500, "cm"),
  5983. weight: math.unit(100000, "lbs"),
  5984. name: "Feral",
  5985. image: {
  5986. source: "./media/characters/malfressa/feral.svg",
  5987. extra: 2108 / 837,
  5988. bottom: 0.02
  5989. }
  5990. },
  5991. },
  5992. [
  5993. {
  5994. name: "Normal",
  5995. height: math.unit(370, "cm")
  5996. },
  5997. {
  5998. name: "Macro",
  5999. height: math.unit(300, "meters"),
  6000. default: true
  6001. }
  6002. ]
  6003. ))
  6004. characterMakers.push(() => makeCharacter(
  6005. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6006. {
  6007. front: {
  6008. height: math.unit(6, "feet"),
  6009. weight: math.unit(60, "kg"),
  6010. name: "Front",
  6011. image: {
  6012. source: "./media/characters/jaro/front.svg"
  6013. }
  6014. },
  6015. back: {
  6016. height: math.unit(6, "feet"),
  6017. weight: math.unit(60, "kg"),
  6018. name: "Back",
  6019. image: {
  6020. source: "./media/characters/jaro/back.svg"
  6021. }
  6022. },
  6023. },
  6024. [
  6025. {
  6026. name: "Micro",
  6027. height: math.unit(7, "inches")
  6028. },
  6029. {
  6030. name: "Normal",
  6031. height: math.unit(5.5, "feet"),
  6032. default: true
  6033. },
  6034. {
  6035. name: "Minimacro",
  6036. height: math.unit(20, "feet")
  6037. },
  6038. {
  6039. name: "Macro",
  6040. height: math.unit(200, "meters")
  6041. }
  6042. ]
  6043. ))
  6044. characterMakers.push(() => makeCharacter(
  6045. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6046. {
  6047. front: {
  6048. height: math.unit(6, "feet"),
  6049. weight: math.unit(195, "lb"),
  6050. name: "Front",
  6051. image: {
  6052. source: "./media/characters/rogue/front.svg"
  6053. }
  6054. },
  6055. },
  6056. [
  6057. {
  6058. name: "Macro",
  6059. height: math.unit(90, "feet"),
  6060. default: true
  6061. },
  6062. ]
  6063. ))
  6064. characterMakers.push(() => makeCharacter(
  6065. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6066. {
  6067. front: {
  6068. height: math.unit(5 + 8 / 12, "feet"),
  6069. weight: math.unit(140, "lb"),
  6070. name: "Front",
  6071. image: {
  6072. source: "./media/characters/piper/front.svg",
  6073. extra: 3948/3655,
  6074. bottom: 0/3948
  6075. }
  6076. },
  6077. },
  6078. [
  6079. {
  6080. name: "Micro",
  6081. height: math.unit(2, "inches")
  6082. },
  6083. {
  6084. name: "Normal",
  6085. height: math.unit(5 + 8 / 12, "feet")
  6086. },
  6087. {
  6088. name: "Macro",
  6089. height: math.unit(250, "feet"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Megamacro",
  6094. height: math.unit(7, "miles")
  6095. },
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6100. {
  6101. front: {
  6102. height: math.unit(6, "feet"),
  6103. weight: math.unit(220, "lb"),
  6104. name: "Front",
  6105. image: {
  6106. source: "./media/characters/gemini/front.svg"
  6107. }
  6108. },
  6109. back: {
  6110. height: math.unit(6, "feet"),
  6111. weight: math.unit(220, "lb"),
  6112. name: "Back",
  6113. image: {
  6114. source: "./media/characters/gemini/back.svg"
  6115. }
  6116. },
  6117. kneeling: {
  6118. height: math.unit(6 / 1.5, "feet"),
  6119. weight: math.unit(220, "lb"),
  6120. name: "Kneeling",
  6121. image: {
  6122. source: "./media/characters/gemini/kneeling.svg",
  6123. bottom: 0.02
  6124. }
  6125. },
  6126. },
  6127. [
  6128. {
  6129. name: "Macro",
  6130. height: math.unit(300, "meters"),
  6131. default: true
  6132. },
  6133. {
  6134. name: "Megamacro",
  6135. height: math.unit(6900, "meters")
  6136. },
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6141. {
  6142. anthro: {
  6143. height: math.unit(2.35, "meters"),
  6144. weight: math.unit(73, "kg"),
  6145. name: "Anthro",
  6146. image: {
  6147. source: "./media/characters/alicia/anthro.svg",
  6148. extra: 2571 / 2385,
  6149. bottom: 75 / 2648
  6150. }
  6151. },
  6152. paw: {
  6153. height: math.unit(1.32, "feet"),
  6154. name: "Paw",
  6155. image: {
  6156. source: "./media/characters/alicia/paw.svg"
  6157. }
  6158. },
  6159. feral: {
  6160. height: math.unit(1.69, "meters"),
  6161. weight: math.unit(73, "kg"),
  6162. name: "Feral",
  6163. image: {
  6164. source: "./media/characters/alicia/feral.svg",
  6165. extra: 2123 / 1715,
  6166. bottom: 222 / 2349
  6167. }
  6168. },
  6169. },
  6170. [
  6171. {
  6172. name: "Normal",
  6173. height: math.unit(2.35, "meters")
  6174. },
  6175. {
  6176. name: "Macro",
  6177. height: math.unit(60, "meters"),
  6178. default: true
  6179. },
  6180. {
  6181. name: "Megamacro",
  6182. height: math.unit(10000, "kilometers")
  6183. },
  6184. ]
  6185. ))
  6186. characterMakers.push(() => makeCharacter(
  6187. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6188. {
  6189. front: {
  6190. height: math.unit(7, "feet"),
  6191. weight: math.unit(250, "lbs"),
  6192. name: "Front",
  6193. image: {
  6194. source: "./media/characters/archy/front.svg"
  6195. }
  6196. }
  6197. },
  6198. [
  6199. {
  6200. name: "Micro",
  6201. height: math.unit(1, "inch")
  6202. },
  6203. {
  6204. name: "Shorty",
  6205. height: math.unit(5, "feet")
  6206. },
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(7, "feet")
  6210. },
  6211. {
  6212. name: "Macro",
  6213. height: math.unit(600, "meters"),
  6214. default: true
  6215. },
  6216. {
  6217. name: "Megamacro",
  6218. height: math.unit(1, "mile")
  6219. },
  6220. ]
  6221. ))
  6222. characterMakers.push(() => makeCharacter(
  6223. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6224. {
  6225. front: {
  6226. height: math.unit(1.65, "meters"),
  6227. weight: math.unit(74, "kg"),
  6228. name: "Front",
  6229. image: {
  6230. source: "./media/characters/berri/front.svg",
  6231. extra: 857 / 837,
  6232. bottom: 18 / 877
  6233. }
  6234. },
  6235. bum: {
  6236. height: math.unit(1.46, "feet"),
  6237. name: "Bum",
  6238. image: {
  6239. source: "./media/characters/berri/bum.svg"
  6240. }
  6241. },
  6242. mouth: {
  6243. height: math.unit(0.44, "feet"),
  6244. name: "Mouth",
  6245. image: {
  6246. source: "./media/characters/berri/mouth.svg"
  6247. }
  6248. },
  6249. paw: {
  6250. height: math.unit(0.826, "feet"),
  6251. name: "Paw",
  6252. image: {
  6253. source: "./media/characters/berri/paw.svg"
  6254. }
  6255. },
  6256. },
  6257. [
  6258. {
  6259. name: "Normal",
  6260. height: math.unit(1.65, "meters")
  6261. },
  6262. {
  6263. name: "Macro",
  6264. height: math.unit(60, "m"),
  6265. default: true
  6266. },
  6267. {
  6268. name: "Megamacro",
  6269. height: math.unit(9.213, "km")
  6270. },
  6271. {
  6272. name: "Planet Eater",
  6273. height: math.unit(489, "megameters")
  6274. },
  6275. {
  6276. name: "Teramacro",
  6277. height: math.unit(2471635000000, "meters")
  6278. },
  6279. {
  6280. name: "Examacro",
  6281. height: math.unit(8.0624e+26, "meters")
  6282. }
  6283. ]
  6284. ))
  6285. characterMakers.push(() => makeCharacter(
  6286. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6287. {
  6288. front: {
  6289. height: math.unit(1.72, "meters"),
  6290. weight: math.unit(68, "kg"),
  6291. name: "Front",
  6292. image: {
  6293. source: "./media/characters/lexi/front.svg"
  6294. }
  6295. }
  6296. },
  6297. [
  6298. {
  6299. name: "Very Smol",
  6300. height: math.unit(10, "mm")
  6301. },
  6302. {
  6303. name: "Micro",
  6304. height: math.unit(6.8, "cm"),
  6305. default: true
  6306. },
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(1.72, "m")
  6310. }
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6315. {
  6316. front: {
  6317. height: math.unit(1.69, "meters"),
  6318. weight: math.unit(68, "kg"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/martin/front.svg",
  6322. extra: 596 / 581
  6323. }
  6324. }
  6325. },
  6326. [
  6327. {
  6328. name: "Micro",
  6329. height: math.unit(6.85, "cm"),
  6330. default: true
  6331. },
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(1.69, "m")
  6335. }
  6336. ]
  6337. ))
  6338. characterMakers.push(() => makeCharacter(
  6339. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6340. {
  6341. front: {
  6342. height: math.unit(1.69, "meters"),
  6343. weight: math.unit(68, "kg"),
  6344. name: "Front",
  6345. image: {
  6346. source: "./media/characters/juno/front.svg"
  6347. }
  6348. }
  6349. },
  6350. [
  6351. {
  6352. name: "Micro",
  6353. height: math.unit(7, "cm")
  6354. },
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(1.89, "m")
  6358. },
  6359. {
  6360. name: "Macro",
  6361. height: math.unit(353, "meters"),
  6362. default: true
  6363. }
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6368. {
  6369. front: {
  6370. height: math.unit(1.93, "meters"),
  6371. weight: math.unit(83, "kg"),
  6372. name: "Front",
  6373. image: {
  6374. source: "./media/characters/samantha/front.svg"
  6375. }
  6376. },
  6377. frontClothed: {
  6378. height: math.unit(1.93, "meters"),
  6379. weight: math.unit(83, "kg"),
  6380. name: "Front (Clothed)",
  6381. image: {
  6382. source: "./media/characters/samantha/front-clothed.svg"
  6383. }
  6384. },
  6385. back: {
  6386. height: math.unit(1.93, "meters"),
  6387. weight: math.unit(83, "kg"),
  6388. name: "Back",
  6389. image: {
  6390. source: "./media/characters/samantha/back.svg"
  6391. }
  6392. },
  6393. },
  6394. [
  6395. {
  6396. name: "Normal",
  6397. height: math.unit(1.93, "m")
  6398. },
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(74, "meters"),
  6402. default: true
  6403. },
  6404. {
  6405. name: "Macro+",
  6406. height: math.unit(223, "meters"),
  6407. },
  6408. {
  6409. name: "Megamacro",
  6410. height: math.unit(8381, "meters"),
  6411. },
  6412. {
  6413. name: "Megamacro+",
  6414. height: math.unit(12000, "kilometers")
  6415. },
  6416. ]
  6417. ))
  6418. characterMakers.push(() => makeCharacter(
  6419. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6420. {
  6421. front: {
  6422. height: math.unit(1.92, "meters"),
  6423. weight: math.unit(80, "kg"),
  6424. name: "Front",
  6425. image: {
  6426. source: "./media/characters/dr-clay/front.svg"
  6427. }
  6428. },
  6429. frontClothed: {
  6430. height: math.unit(1.92, "meters"),
  6431. weight: math.unit(80, "kg"),
  6432. name: "Front (Clothed)",
  6433. image: {
  6434. source: "./media/characters/dr-clay/front-clothed.svg"
  6435. }
  6436. }
  6437. },
  6438. [
  6439. {
  6440. name: "Normal",
  6441. height: math.unit(1.92, "m")
  6442. },
  6443. {
  6444. name: "Macro",
  6445. height: math.unit(214, "meters"),
  6446. default: true
  6447. },
  6448. {
  6449. name: "Macro+",
  6450. height: math.unit(12.237, "meters"),
  6451. },
  6452. {
  6453. name: "Megamacro",
  6454. height: math.unit(557, "megameters"),
  6455. },
  6456. {
  6457. name: "Unimaginable",
  6458. height: math.unit(120e9, "lightyears")
  6459. },
  6460. ]
  6461. ))
  6462. characterMakers.push(() => makeCharacter(
  6463. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6464. {
  6465. front: {
  6466. height: math.unit(2, "meters"),
  6467. weight: math.unit(80, "kg"),
  6468. name: "Front",
  6469. image: {
  6470. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6471. }
  6472. }
  6473. },
  6474. [
  6475. {
  6476. name: "Teramacro",
  6477. height: math.unit(500000, "lightyears"),
  6478. default: true
  6479. },
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(2, "meters"),
  6487. weight: math.unit(150, "kg"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/vemus/front.svg",
  6491. extra: 1074/936,
  6492. bottom: 23/1097
  6493. }
  6494. }
  6495. },
  6496. [
  6497. {
  6498. name: "Normal",
  6499. height: math.unit(3.75, "meters"),
  6500. default: true
  6501. },
  6502. {
  6503. name: "Big",
  6504. height: math.unit(8, "meters")
  6505. },
  6506. {
  6507. name: "Macro",
  6508. height: math.unit(100, "meters")
  6509. },
  6510. {
  6511. name: "Macro+",
  6512. height: math.unit(1500, "meters")
  6513. },
  6514. {
  6515. name: "Stellar",
  6516. height: math.unit(14e8, "meters")
  6517. },
  6518. ]
  6519. ))
  6520. characterMakers.push(() => makeCharacter(
  6521. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6522. {
  6523. front: {
  6524. height: math.unit(2, "meters"),
  6525. weight: math.unit(70, "kg"),
  6526. name: "Front",
  6527. image: {
  6528. source: "./media/characters/beherit/front.svg",
  6529. extra: 1408 / 1242
  6530. }
  6531. }
  6532. },
  6533. [
  6534. {
  6535. name: "Normal",
  6536. height: math.unit(6, "feet")
  6537. },
  6538. {
  6539. name: "Lorg",
  6540. height: math.unit(25, "feet"),
  6541. default: true
  6542. },
  6543. {
  6544. name: "Lorger",
  6545. height: math.unit(75, "feet")
  6546. },
  6547. {
  6548. name: "Macro",
  6549. height: math.unit(200, "meters")
  6550. },
  6551. ]
  6552. ))
  6553. characterMakers.push(() => makeCharacter(
  6554. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6555. {
  6556. front: {
  6557. height: math.unit(2, "meters"),
  6558. weight: math.unit(150, "kg"),
  6559. name: "Front",
  6560. image: {
  6561. source: "./media/characters/everett/front.svg",
  6562. extra: 2038 / 1737,
  6563. bottom: 0.03
  6564. }
  6565. },
  6566. paw: {
  6567. height: math.unit(2 / 3.6, "meters"),
  6568. name: "Paw",
  6569. image: {
  6570. source: "./media/characters/everett/paw.svg"
  6571. }
  6572. },
  6573. },
  6574. [
  6575. {
  6576. name: "Normal",
  6577. height: math.unit(15, "feet"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Lorg",
  6582. height: math.unit(70, "feet"),
  6583. default: true
  6584. },
  6585. {
  6586. name: "Lorger",
  6587. height: math.unit(250, "feet")
  6588. },
  6589. {
  6590. name: "Macro",
  6591. height: math.unit(500, "meters")
  6592. },
  6593. ]
  6594. ))
  6595. characterMakers.push(() => makeCharacter(
  6596. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6597. {
  6598. front: {
  6599. height: math.unit(2, "meters"),
  6600. weight: math.unit(86, "kg"),
  6601. name: "Front",
  6602. image: {
  6603. source: "./media/characters/rose/front.svg",
  6604. extra: 1785/1636,
  6605. bottom: 30/1815
  6606. }
  6607. },
  6608. frontSporty: {
  6609. height: math.unit(2, "meters"),
  6610. weight: math.unit(86, "kg"),
  6611. name: "Front (Sporty)",
  6612. image: {
  6613. source: "./media/characters/rose/front-sporty.svg",
  6614. extra: 350/335,
  6615. bottom: 10/360
  6616. }
  6617. },
  6618. frontAlt: {
  6619. height: math.unit(1.6, "meters"),
  6620. weight: math.unit(86, "kg"),
  6621. name: "Front (Alt)",
  6622. image: {
  6623. source: "./media/characters/rose/front-alt.svg",
  6624. extra: 299/283,
  6625. bottom: 3/302
  6626. }
  6627. },
  6628. plush: {
  6629. height: math.unit(2, "meters"),
  6630. weight: math.unit(86/3, "kg"),
  6631. name: "Plush",
  6632. image: {
  6633. source: "./media/characters/rose/plush.svg",
  6634. extra: 361/337,
  6635. bottom: 11/372
  6636. }
  6637. },
  6638. },
  6639. [
  6640. {
  6641. name: "True Micro",
  6642. height: math.unit(9, "cm")
  6643. },
  6644. {
  6645. name: "Micro",
  6646. height: math.unit(16, "cm")
  6647. },
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(1.85, "meters"),
  6651. default: true
  6652. },
  6653. {
  6654. name: "Mini-Macro",
  6655. height: math.unit(5, "meters")
  6656. },
  6657. {
  6658. name: "Macro",
  6659. height: math.unit(15, "meters")
  6660. },
  6661. {
  6662. name: "True Macro",
  6663. height: math.unit(40, "meters")
  6664. },
  6665. {
  6666. name: "City Scale",
  6667. height: math.unit(1, "km")
  6668. },
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(2, "meters"),
  6676. weight: math.unit(350, "lbs"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/regal/front.svg"
  6680. }
  6681. },
  6682. back: {
  6683. height: math.unit(2, "meters"),
  6684. weight: math.unit(350, "lbs"),
  6685. name: "Back",
  6686. image: {
  6687. source: "./media/characters/regal/back.svg"
  6688. }
  6689. },
  6690. },
  6691. [
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(350, "feet"),
  6695. default: true
  6696. }
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(4 + 11 / 12, "feet"),
  6704. weight: math.unit(100, "lbs"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/opal/front.svg"
  6708. }
  6709. },
  6710. frontAlt: {
  6711. height: math.unit(4 + 11 / 12, "feet"),
  6712. weight: math.unit(100, "lbs"),
  6713. name: "Front (Alt)",
  6714. image: {
  6715. source: "./media/characters/opal/front-alt.svg"
  6716. }
  6717. },
  6718. },
  6719. [
  6720. {
  6721. name: "Small",
  6722. height: math.unit(4 + 11 / 12, "feet")
  6723. },
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(20, "feet"),
  6727. default: true
  6728. },
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(120, "feet")
  6732. },
  6733. {
  6734. name: "Megamacro",
  6735. height: math.unit(80, "miles")
  6736. },
  6737. {
  6738. name: "True Size",
  6739. height: math.unit(100000, "lightyears")
  6740. },
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6745. {
  6746. front: {
  6747. height: math.unit(6, "feet"),
  6748. weight: math.unit(200, "lbs"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/vector-wuff/front.svg"
  6752. }
  6753. }
  6754. },
  6755. [
  6756. {
  6757. name: "Normal",
  6758. height: math.unit(2.8, "meters")
  6759. },
  6760. {
  6761. name: "Macro",
  6762. height: math.unit(450, "meters"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Megamacro",
  6767. height: math.unit(15, "kilometers")
  6768. }
  6769. ]
  6770. ))
  6771. characterMakers.push(() => makeCharacter(
  6772. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6773. {
  6774. front: {
  6775. height: math.unit(6, "feet"),
  6776. weight: math.unit(256, "lbs"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/dannik/front.svg"
  6780. }
  6781. }
  6782. },
  6783. [
  6784. {
  6785. name: "Macro",
  6786. height: math.unit(69.57, "meters"),
  6787. default: true
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(6, "feet"),
  6796. weight: math.unit(120, "lbs"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/azura-saharah/front.svg"
  6800. }
  6801. },
  6802. back: {
  6803. height: math.unit(6, "feet"),
  6804. weight: math.unit(120, "lbs"),
  6805. name: "Back",
  6806. image: {
  6807. source: "./media/characters/azura-saharah/back.svg"
  6808. }
  6809. },
  6810. },
  6811. [
  6812. {
  6813. name: "Macro",
  6814. height: math.unit(100, "feet"),
  6815. default: true
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6821. {
  6822. side: {
  6823. height: math.unit(5 + 4 / 12, "feet"),
  6824. weight: math.unit(163, "lbs"),
  6825. name: "Side",
  6826. image: {
  6827. source: "./media/characters/kennedy/side.svg"
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Standard Doggo",
  6834. height: math.unit(5 + 4 / 12, "feet")
  6835. },
  6836. {
  6837. name: "Big Doggo",
  6838. height: math.unit(25 + 3 / 12, "feet"),
  6839. default: true
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(6, "feet"),
  6848. weight: math.unit(90, "lbs"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/odi-lunar/front.svg"
  6852. }
  6853. }
  6854. },
  6855. [
  6856. {
  6857. name: "Micro",
  6858. height: math.unit(3, "inches"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Normal",
  6863. height: math.unit(5.5, "feet")
  6864. }
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6869. {
  6870. back: {
  6871. height: math.unit(6, "feet"),
  6872. weight: math.unit(220, "lbs"),
  6873. name: "Back",
  6874. image: {
  6875. source: "./media/characters/mandake/back.svg"
  6876. }
  6877. }
  6878. },
  6879. [
  6880. {
  6881. name: "Normal",
  6882. height: math.unit(7, "feet"),
  6883. default: true
  6884. },
  6885. {
  6886. name: "Macro",
  6887. height: math.unit(78, "feet")
  6888. },
  6889. {
  6890. name: "Macro+",
  6891. height: math.unit(300, "meters")
  6892. },
  6893. {
  6894. name: "Macro++",
  6895. height: math.unit(2400, "feet")
  6896. },
  6897. {
  6898. name: "Megamacro",
  6899. height: math.unit(5167, "meters")
  6900. },
  6901. {
  6902. name: "Gigamacro",
  6903. height: math.unit(41769, "miles")
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(6, "feet"),
  6912. weight: math.unit(120, "lbs"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/yozey/front.svg"
  6916. }
  6917. },
  6918. frontAlt: {
  6919. height: math.unit(6, "feet"),
  6920. weight: math.unit(120, "lbs"),
  6921. name: "Front (Alt)",
  6922. image: {
  6923. source: "./media/characters/yozey/front-alt.svg"
  6924. }
  6925. },
  6926. side: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(120, "lbs"),
  6929. name: "Side",
  6930. image: {
  6931. source: "./media/characters/yozey/side.svg"
  6932. }
  6933. },
  6934. },
  6935. [
  6936. {
  6937. name: "Micro",
  6938. height: math.unit(3, "inches"),
  6939. default: true
  6940. },
  6941. {
  6942. name: "Normal",
  6943. height: math.unit(6, "feet")
  6944. }
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(6, "feet"),
  6952. weight: math.unit(103, "lbs"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/valeska-voss/front.svg"
  6956. }
  6957. }
  6958. },
  6959. [
  6960. {
  6961. name: "Mini-Sized Sub",
  6962. height: math.unit(3.1, "inches")
  6963. },
  6964. {
  6965. name: "Mid-Sized Sub",
  6966. height: math.unit(6.2, "inches")
  6967. },
  6968. {
  6969. name: "Full-Sized Sub",
  6970. height: math.unit(9.3, "inches")
  6971. },
  6972. {
  6973. name: "Normal",
  6974. height: math.unit(5 + 2 / 12, "foot"),
  6975. default: true
  6976. },
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6981. {
  6982. front: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(160, "lbs"),
  6985. name: "Front",
  6986. image: {
  6987. source: "./media/characters/gene-zeta/front.svg",
  6988. extra: 3006 / 2826,
  6989. bottom: 182 / 3188
  6990. }
  6991. }
  6992. },
  6993. [
  6994. {
  6995. name: "Micro",
  6996. height: math.unit(6, "inches")
  6997. },
  6998. {
  6999. name: "Normal",
  7000. height: math.unit(5 + 11 / 12, "foot"),
  7001. default: true
  7002. },
  7003. {
  7004. name: "Macro",
  7005. height: math.unit(140, "feet")
  7006. },
  7007. {
  7008. name: "Supercharged",
  7009. height: math.unit(2500, "feet")
  7010. },
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7015. {
  7016. front: {
  7017. height: math.unit(6, "feet"),
  7018. weight: math.unit(350, "lbs"),
  7019. name: "Front",
  7020. image: {
  7021. source: "./media/characters/razinox/front.svg",
  7022. extra: 1686 / 1548,
  7023. bottom: 28.2 / 1868
  7024. }
  7025. },
  7026. back: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(350, "lbs"),
  7029. name: "Back",
  7030. image: {
  7031. source: "./media/characters/razinox/back.svg",
  7032. extra: 1660 / 1590,
  7033. bottom: 15 / 1665
  7034. }
  7035. },
  7036. },
  7037. [
  7038. {
  7039. name: "Normal",
  7040. height: math.unit(10 + 8 / 12, "foot")
  7041. },
  7042. {
  7043. name: "Minimacro",
  7044. height: math.unit(15, "foot")
  7045. },
  7046. {
  7047. name: "Macro",
  7048. height: math.unit(60, "foot"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Megamacro",
  7053. height: math.unit(5, "miles")
  7054. },
  7055. {
  7056. name: "Gigamacro",
  7057. height: math.unit(6000, "miles")
  7058. },
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7063. {
  7064. front: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(150, "lbs"),
  7067. name: "Front",
  7068. image: {
  7069. source: "./media/characters/cobalt/front.svg"
  7070. }
  7071. }
  7072. },
  7073. [
  7074. {
  7075. name: "Normal",
  7076. height: math.unit(8 + 1 / 12, "foot")
  7077. },
  7078. {
  7079. name: "Macro",
  7080. height: math.unit(111, "foot"),
  7081. default: true
  7082. },
  7083. {
  7084. name: "Supracosmic",
  7085. height: math.unit(1e42, "feet")
  7086. },
  7087. ]
  7088. ))
  7089. characterMakers.push(() => makeCharacter(
  7090. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7091. {
  7092. front: {
  7093. height: math.unit(6, "feet"),
  7094. weight: math.unit(140, "lbs"),
  7095. name: "Front",
  7096. image: {
  7097. source: "./media/characters/amanda/front.svg"
  7098. }
  7099. }
  7100. },
  7101. [
  7102. {
  7103. name: "Micro",
  7104. height: math.unit(5, "inches"),
  7105. default: true
  7106. },
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(2.75, "meters"),
  7114. weight: math.unit(1200, "lb"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/teal/front.svg",
  7118. extra: 2463 / 2320,
  7119. bottom: 166 / 2629
  7120. }
  7121. },
  7122. back: {
  7123. height: math.unit(2.75, "meters"),
  7124. weight: math.unit(1200, "lb"),
  7125. name: "Back",
  7126. image: {
  7127. source: "./media/characters/teal/back.svg",
  7128. extra: 2580 / 2489,
  7129. bottom: 151 / 2731
  7130. }
  7131. },
  7132. sitting: {
  7133. height: math.unit(1.9, "meters"),
  7134. weight: math.unit(1200, "lb"),
  7135. name: "Sitting",
  7136. image: {
  7137. source: "./media/characters/teal/sitting.svg",
  7138. extra: 623 / 590,
  7139. bottom: 121 / 744
  7140. }
  7141. },
  7142. standing: {
  7143. height: math.unit(2.75, "meters"),
  7144. weight: math.unit(1200, "lb"),
  7145. name: "Standing",
  7146. image: {
  7147. source: "./media/characters/teal/standing.svg",
  7148. extra: 923 / 893,
  7149. bottom: 60 / 983
  7150. }
  7151. },
  7152. stretching: {
  7153. height: math.unit(3.65, "meters"),
  7154. weight: math.unit(1200, "lb"),
  7155. name: "Stretching",
  7156. image: {
  7157. source: "./media/characters/teal/stretching.svg",
  7158. extra: 1276 / 1244,
  7159. bottom: 0 / 1276
  7160. }
  7161. },
  7162. legged: {
  7163. height: math.unit(1.3, "meters"),
  7164. weight: math.unit(100, "lb"),
  7165. name: "Legged",
  7166. image: {
  7167. source: "./media/characters/teal/legged.svg",
  7168. extra: 462 / 437,
  7169. bottom: 24 / 486
  7170. }
  7171. },
  7172. naga: {
  7173. height: math.unit(5.4, "meters"),
  7174. weight: math.unit(4000, "lb"),
  7175. name: "Naga",
  7176. image: {
  7177. source: "./media/characters/teal/naga.svg",
  7178. extra: 1902 / 1858,
  7179. bottom: 0 / 1902
  7180. }
  7181. },
  7182. hand: {
  7183. height: math.unit(0.52, "meters"),
  7184. name: "Hand",
  7185. image: {
  7186. source: "./media/characters/teal/hand.svg"
  7187. }
  7188. },
  7189. maw: {
  7190. height: math.unit(0.43, "meters"),
  7191. name: "Maw",
  7192. image: {
  7193. source: "./media/characters/teal/maw.svg"
  7194. }
  7195. },
  7196. slit: {
  7197. height: math.unit(0.25, "meters"),
  7198. name: "Slit",
  7199. image: {
  7200. source: "./media/characters/teal/slit.svg"
  7201. }
  7202. },
  7203. },
  7204. [
  7205. {
  7206. name: "Normal",
  7207. height: math.unit(2.75, "meters"),
  7208. default: true
  7209. },
  7210. {
  7211. name: "Macro",
  7212. height: math.unit(300, "feet")
  7213. },
  7214. {
  7215. name: "Macro+",
  7216. height: math.unit(2000, "feet")
  7217. },
  7218. ]
  7219. ))
  7220. characterMakers.push(() => makeCharacter(
  7221. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7222. {
  7223. frontCat: {
  7224. height: math.unit(6, "feet"),
  7225. weight: math.unit(180, "lbs"),
  7226. name: "Front (Cat)",
  7227. image: {
  7228. source: "./media/characters/ravin-amulet/front-cat.svg"
  7229. }
  7230. },
  7231. frontCatAlt: {
  7232. height: math.unit(6, "feet"),
  7233. weight: math.unit(180, "lbs"),
  7234. name: "Front (Alt, Cat)",
  7235. image: {
  7236. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7237. }
  7238. },
  7239. frontWerewolf: {
  7240. height: math.unit(6 * 1.2, "feet"),
  7241. weight: math.unit(225, "lbs"),
  7242. name: "Front (Werewolf)",
  7243. image: {
  7244. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7245. }
  7246. },
  7247. backWerewolf: {
  7248. height: math.unit(6 * 1.2, "feet"),
  7249. weight: math.unit(225, "lbs"),
  7250. name: "Back (Werewolf)",
  7251. image: {
  7252. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7253. }
  7254. },
  7255. },
  7256. [
  7257. {
  7258. name: "Nano",
  7259. height: math.unit(1, "micrometer")
  7260. },
  7261. {
  7262. name: "Micro",
  7263. height: math.unit(1, "inch")
  7264. },
  7265. {
  7266. name: "Normal",
  7267. height: math.unit(6, "feet"),
  7268. default: true
  7269. },
  7270. {
  7271. name: "Macro",
  7272. height: math.unit(60, "feet")
  7273. }
  7274. ]
  7275. ))
  7276. characterMakers.push(() => makeCharacter(
  7277. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7278. {
  7279. front: {
  7280. height: math.unit(6, "feet"),
  7281. weight: math.unit(165, "lbs"),
  7282. name: "Front",
  7283. image: {
  7284. source: "./media/characters/fluoresce/front.svg"
  7285. }
  7286. }
  7287. },
  7288. [
  7289. {
  7290. name: "Micro",
  7291. height: math.unit(6, "cm")
  7292. },
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(5 + 7 / 12, "feet"),
  7296. default: true
  7297. },
  7298. {
  7299. name: "Macro",
  7300. height: math.unit(56, "feet")
  7301. },
  7302. {
  7303. name: "Megamacro",
  7304. height: math.unit(1.9, "miles")
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(9 + 6 / 12, "feet"),
  7313. weight: math.unit(523, "lbs"),
  7314. name: "Side",
  7315. image: {
  7316. source: "./media/characters/aurora/side.svg"
  7317. }
  7318. }
  7319. },
  7320. [
  7321. {
  7322. name: "Normal",
  7323. height: math.unit(9 + 6 / 12, "feet")
  7324. },
  7325. {
  7326. name: "Macro",
  7327. height: math.unit(96, "feet"),
  7328. default: true
  7329. },
  7330. {
  7331. name: "Macro+",
  7332. height: math.unit(243, "feet")
  7333. },
  7334. ]
  7335. ))
  7336. characterMakers.push(() => makeCharacter(
  7337. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7338. {
  7339. front: {
  7340. height: math.unit(194, "cm"),
  7341. weight: math.unit(90, "kg"),
  7342. name: "Front",
  7343. image: {
  7344. source: "./media/characters/ranek/front.svg"
  7345. }
  7346. },
  7347. side: {
  7348. height: math.unit(194, "cm"),
  7349. weight: math.unit(90, "kg"),
  7350. name: "Side",
  7351. image: {
  7352. source: "./media/characters/ranek/side.svg"
  7353. }
  7354. },
  7355. back: {
  7356. height: math.unit(194, "cm"),
  7357. weight: math.unit(90, "kg"),
  7358. name: "Back",
  7359. image: {
  7360. source: "./media/characters/ranek/back.svg"
  7361. }
  7362. },
  7363. feral: {
  7364. height: math.unit(30, "cm"),
  7365. weight: math.unit(1.6, "lbs"),
  7366. name: "Feral",
  7367. image: {
  7368. source: "./media/characters/ranek/feral.svg"
  7369. }
  7370. },
  7371. },
  7372. [
  7373. {
  7374. name: "Normal",
  7375. height: math.unit(194, "cm"),
  7376. default: true
  7377. },
  7378. {
  7379. name: "Macro",
  7380. height: math.unit(100, "meters")
  7381. },
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7386. {
  7387. front: {
  7388. height: math.unit(5 + 6 / 12, "feet"),
  7389. weight: math.unit(153, "lbs"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/andrew-cooper/front.svg"
  7393. }
  7394. },
  7395. },
  7396. [
  7397. {
  7398. name: "Nano",
  7399. height: math.unit(1, "mm")
  7400. },
  7401. {
  7402. name: "Micro",
  7403. height: math.unit(2, "inches")
  7404. },
  7405. {
  7406. name: "Normal",
  7407. height: math.unit(5 + 6 / 12, "feet"),
  7408. default: true
  7409. }
  7410. ]
  7411. ))
  7412. characterMakers.push(() => makeCharacter(
  7413. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7414. {
  7415. front: {
  7416. height: math.unit(6, "feet"),
  7417. weight: math.unit(180, "lbs"),
  7418. name: "Front",
  7419. image: {
  7420. source: "./media/characters/akane-sato/front.svg",
  7421. extra: 1219 / 1140
  7422. }
  7423. },
  7424. back: {
  7425. height: math.unit(6, "feet"),
  7426. weight: math.unit(180, "lbs"),
  7427. name: "Back",
  7428. image: {
  7429. source: "./media/characters/akane-sato/back.svg",
  7430. extra: 1219 / 1170
  7431. }
  7432. },
  7433. },
  7434. [
  7435. {
  7436. name: "Normal",
  7437. height: math.unit(2.5, "meters")
  7438. },
  7439. {
  7440. name: "Macro",
  7441. height: math.unit(250, "meters"),
  7442. default: true
  7443. },
  7444. {
  7445. name: "Megamacro",
  7446. height: math.unit(25, "km")
  7447. },
  7448. ]
  7449. ))
  7450. characterMakers.push(() => makeCharacter(
  7451. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7452. {
  7453. front: {
  7454. height: math.unit(6, "feet"),
  7455. weight: math.unit(65, "kg"),
  7456. name: "Front",
  7457. image: {
  7458. source: "./media/characters/rook/front.svg",
  7459. extra: 960 / 950
  7460. }
  7461. }
  7462. },
  7463. [
  7464. {
  7465. name: "Normal",
  7466. height: math.unit(8.8, "feet")
  7467. },
  7468. {
  7469. name: "Macro",
  7470. height: math.unit(88, "feet"),
  7471. default: true
  7472. },
  7473. {
  7474. name: "Megamacro",
  7475. height: math.unit(8, "miles")
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7481. {
  7482. front: {
  7483. height: math.unit(12 + 2 / 12, "feet"),
  7484. weight: math.unit(808, "lbs"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/prodigy/front.svg"
  7488. }
  7489. }
  7490. },
  7491. [
  7492. {
  7493. name: "Normal",
  7494. height: math.unit(12 + 2 / 12, "feet"),
  7495. default: true
  7496. },
  7497. {
  7498. name: "Macro",
  7499. height: math.unit(143, "feet")
  7500. },
  7501. {
  7502. name: "Macro+",
  7503. height: math.unit(400, "feet")
  7504. },
  7505. ]
  7506. ))
  7507. characterMakers.push(() => makeCharacter(
  7508. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7509. {
  7510. front: {
  7511. height: math.unit(6, "feet"),
  7512. weight: math.unit(225, "lbs"),
  7513. name: "Front",
  7514. image: {
  7515. source: "./media/characters/daniel/front.svg"
  7516. }
  7517. },
  7518. leaning: {
  7519. height: math.unit(6, "feet"),
  7520. weight: math.unit(225, "lbs"),
  7521. name: "Leaning",
  7522. image: {
  7523. source: "./media/characters/daniel/leaning.svg"
  7524. }
  7525. },
  7526. },
  7527. [
  7528. {
  7529. name: "Macro",
  7530. height: math.unit(1000, "feet"),
  7531. default: true
  7532. },
  7533. ]
  7534. ))
  7535. characterMakers.push(() => makeCharacter(
  7536. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7537. {
  7538. front: {
  7539. height: math.unit(6, "feet"),
  7540. weight: math.unit(88, "lbs"),
  7541. name: "Front",
  7542. image: {
  7543. source: "./media/characters/chiros/front.svg",
  7544. extra: 306 / 226
  7545. }
  7546. },
  7547. side: {
  7548. height: math.unit(6, "feet"),
  7549. weight: math.unit(88, "lbs"),
  7550. name: "Side",
  7551. image: {
  7552. source: "./media/characters/chiros/side.svg",
  7553. extra: 306 / 226
  7554. }
  7555. },
  7556. },
  7557. [
  7558. {
  7559. name: "Normal",
  7560. height: math.unit(6, "cm"),
  7561. default: true
  7562. },
  7563. ]
  7564. ))
  7565. characterMakers.push(() => makeCharacter(
  7566. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7567. {
  7568. front: {
  7569. height: math.unit(6, "feet"),
  7570. weight: math.unit(100, "lbs"),
  7571. name: "Front",
  7572. image: {
  7573. source: "./media/characters/selka/front.svg",
  7574. extra: 947 / 887
  7575. }
  7576. }
  7577. },
  7578. [
  7579. {
  7580. name: "Normal",
  7581. height: math.unit(5, "cm"),
  7582. default: true
  7583. },
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7588. {
  7589. front: {
  7590. height: math.unit(8 + 3 / 12, "feet"),
  7591. weight: math.unit(424, "lbs"),
  7592. name: "Front",
  7593. image: {
  7594. source: "./media/characters/verin/front.svg",
  7595. extra: 1845 / 1550
  7596. }
  7597. },
  7598. frontArmored: {
  7599. height: math.unit(8 + 3 / 12, "feet"),
  7600. weight: math.unit(424, "lbs"),
  7601. name: "Front (Armored)",
  7602. image: {
  7603. source: "./media/characters/verin/front-armor.svg",
  7604. extra: 1845 / 1550,
  7605. bottom: 0.01
  7606. }
  7607. },
  7608. back: {
  7609. height: math.unit(8 + 3 / 12, "feet"),
  7610. weight: math.unit(424, "lbs"),
  7611. name: "Back",
  7612. image: {
  7613. source: "./media/characters/verin/back.svg",
  7614. bottom: 0.1,
  7615. extra: 1
  7616. }
  7617. },
  7618. foot: {
  7619. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7620. name: "Foot",
  7621. image: {
  7622. source: "./media/characters/verin/foot.svg"
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(8 + 3 / 12, "feet")
  7630. },
  7631. {
  7632. name: "Minimacro",
  7633. height: math.unit(21, "feet"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(626, "feet")
  7639. },
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(2.718, "meters"),
  7647. weight: math.unit(150, "lbs"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/sovrim-terraquian/front.svg"
  7651. }
  7652. },
  7653. back: {
  7654. height: math.unit(2.718, "meters"),
  7655. weight: math.unit(150, "lbs"),
  7656. name: "Back",
  7657. image: {
  7658. source: "./media/characters/sovrim-terraquian/back.svg"
  7659. }
  7660. }
  7661. },
  7662. [
  7663. {
  7664. name: "Micro",
  7665. height: math.unit(2, "inches")
  7666. },
  7667. {
  7668. name: "Small",
  7669. height: math.unit(1, "meter")
  7670. },
  7671. {
  7672. name: "Normal",
  7673. height: math.unit(Math.E, "meters"),
  7674. default: true
  7675. },
  7676. {
  7677. name: "Macro",
  7678. height: math.unit(20, "meters")
  7679. },
  7680. {
  7681. name: "Macro+",
  7682. height: math.unit(400, "meters")
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(7, "feet"),
  7691. weight: math.unit(489, "lbs"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/reece-silvermane/front.svg",
  7695. bottom: 0.02,
  7696. extra: 1
  7697. }
  7698. },
  7699. },
  7700. [
  7701. {
  7702. name: "Macro",
  7703. height: math.unit(1.5, "miles"),
  7704. default: true
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7710. {
  7711. front: {
  7712. height: math.unit(6, "feet"),
  7713. weight: math.unit(78, "kg"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/kane/front.svg",
  7717. extra: 978 / 899
  7718. }
  7719. },
  7720. },
  7721. [
  7722. {
  7723. name: "Normal",
  7724. height: math.unit(2.1, "m"),
  7725. },
  7726. {
  7727. name: "Macro",
  7728. height: math.unit(1, "km"),
  7729. default: true
  7730. },
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7735. {
  7736. front: {
  7737. height: math.unit(6, "feet"),
  7738. weight: math.unit(200, "kg"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/tegon/front.svg",
  7742. bottom: 0.01,
  7743. extra: 1
  7744. }
  7745. },
  7746. },
  7747. [
  7748. {
  7749. name: "Micro",
  7750. height: math.unit(1, "inch")
  7751. },
  7752. {
  7753. name: "Normal",
  7754. height: math.unit(6 + 3 / 12, "feet"),
  7755. default: true
  7756. },
  7757. {
  7758. name: "Macro",
  7759. height: math.unit(300, "feet")
  7760. },
  7761. {
  7762. name: "Megamacro",
  7763. height: math.unit(69, "miles")
  7764. },
  7765. ]
  7766. ))
  7767. characterMakers.push(() => makeCharacter(
  7768. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7769. {
  7770. side: {
  7771. height: math.unit(6, "feet"),
  7772. weight: math.unit(2304, "lbs"),
  7773. name: "Side",
  7774. image: {
  7775. source: "./media/characters/arcturax/side.svg",
  7776. extra: 790 / 376,
  7777. bottom: 0.01
  7778. }
  7779. },
  7780. },
  7781. [
  7782. {
  7783. name: "Micro",
  7784. height: math.unit(2, "inch")
  7785. },
  7786. {
  7787. name: "Normal",
  7788. height: math.unit(6, "feet")
  7789. },
  7790. {
  7791. name: "Macro",
  7792. height: math.unit(39, "feet"),
  7793. default: true
  7794. },
  7795. {
  7796. name: "Megamacro",
  7797. height: math.unit(7, "miles")
  7798. },
  7799. ]
  7800. ))
  7801. characterMakers.push(() => makeCharacter(
  7802. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7803. {
  7804. front: {
  7805. height: math.unit(6, "feet"),
  7806. weight: math.unit(50, "lbs"),
  7807. name: "Front",
  7808. image: {
  7809. source: "./media/characters/sentri/front.svg",
  7810. extra: 1750 / 1570,
  7811. bottom: 0.025
  7812. }
  7813. },
  7814. frontAlt: {
  7815. height: math.unit(6, "feet"),
  7816. weight: math.unit(50, "lbs"),
  7817. name: "Front (Alt)",
  7818. image: {
  7819. source: "./media/characters/sentri/front-alt.svg",
  7820. extra: 1750 / 1570,
  7821. bottom: 0.025
  7822. }
  7823. },
  7824. },
  7825. [
  7826. {
  7827. name: "Normal",
  7828. height: math.unit(15, "feet"),
  7829. default: true
  7830. },
  7831. {
  7832. name: "Macro",
  7833. height: math.unit(2500, "feet")
  7834. }
  7835. ]
  7836. ))
  7837. characterMakers.push(() => makeCharacter(
  7838. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7839. {
  7840. front: {
  7841. height: math.unit(5 + 8 / 12, "feet"),
  7842. weight: math.unit(130, "lbs"),
  7843. name: "Front",
  7844. image: {
  7845. source: "./media/characters/corvin/front.svg",
  7846. extra: 1803 / 1629
  7847. }
  7848. },
  7849. frontShirt: {
  7850. height: math.unit(5 + 8 / 12, "feet"),
  7851. weight: math.unit(130, "lbs"),
  7852. name: "Front (Shirt)",
  7853. image: {
  7854. source: "./media/characters/corvin/front-shirt.svg",
  7855. extra: 1803 / 1629
  7856. }
  7857. },
  7858. frontPoncho: {
  7859. height: math.unit(5 + 8 / 12, "feet"),
  7860. weight: math.unit(130, "lbs"),
  7861. name: "Front (Poncho)",
  7862. image: {
  7863. source: "./media/characters/corvin/front-poncho.svg",
  7864. extra: 1803 / 1629
  7865. }
  7866. },
  7867. side: {
  7868. height: math.unit(5 + 8 / 12, "feet"),
  7869. weight: math.unit(130, "lbs"),
  7870. name: "Side",
  7871. image: {
  7872. source: "./media/characters/corvin/side.svg",
  7873. extra: 1012 / 945
  7874. }
  7875. },
  7876. back: {
  7877. height: math.unit(5 + 8 / 12, "feet"),
  7878. weight: math.unit(130, "lbs"),
  7879. name: "Back",
  7880. image: {
  7881. source: "./media/characters/corvin/back.svg",
  7882. extra: 1803 / 1629
  7883. }
  7884. },
  7885. },
  7886. [
  7887. {
  7888. name: "Micro",
  7889. height: math.unit(3, "inches")
  7890. },
  7891. {
  7892. name: "Normal",
  7893. height: math.unit(5 + 8 / 12, "feet")
  7894. },
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(300, "feet"),
  7898. default: true
  7899. },
  7900. {
  7901. name: "Megamacro",
  7902. height: math.unit(500, "miles")
  7903. }
  7904. ]
  7905. ))
  7906. characterMakers.push(() => makeCharacter(
  7907. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7908. {
  7909. front: {
  7910. height: math.unit(6, "feet"),
  7911. weight: math.unit(135, "lbs"),
  7912. name: "Front",
  7913. image: {
  7914. source: "./media/characters/q/front.svg",
  7915. extra: 854 / 752,
  7916. bottom: 0.005
  7917. }
  7918. },
  7919. back: {
  7920. height: math.unit(6, "feet"),
  7921. weight: math.unit(130, "lbs"),
  7922. name: "Back",
  7923. image: {
  7924. source: "./media/characters/q/back.svg",
  7925. extra: 854 / 752
  7926. }
  7927. },
  7928. },
  7929. [
  7930. {
  7931. name: "Macro",
  7932. height: math.unit(90, "feet"),
  7933. default: true
  7934. },
  7935. {
  7936. name: "Extra Macro",
  7937. height: math.unit(300, "feet"),
  7938. },
  7939. {
  7940. name: "BIG WALF",
  7941. height: math.unit(750, "feet"),
  7942. },
  7943. ]
  7944. ))
  7945. characterMakers.push(() => makeCharacter(
  7946. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7947. {
  7948. front: {
  7949. height: math.unit(6, "feet"),
  7950. weight: math.unit(150, "lbs"),
  7951. name: "Front",
  7952. image: {
  7953. source: "./media/characters/carley/front.svg",
  7954. extra: 3927 / 3540,
  7955. bottom: 29.2 / 735
  7956. }
  7957. }
  7958. },
  7959. [
  7960. {
  7961. name: "Normal",
  7962. height: math.unit(6 + 3 / 12, "feet")
  7963. },
  7964. {
  7965. name: "Macro",
  7966. height: math.unit(185, "feet"),
  7967. default: true
  7968. },
  7969. {
  7970. name: "Megamacro",
  7971. height: math.unit(8, "miles"),
  7972. },
  7973. ]
  7974. ))
  7975. characterMakers.push(() => makeCharacter(
  7976. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7977. {
  7978. front: {
  7979. height: math.unit(3, "feet"),
  7980. weight: math.unit(28, "lbs"),
  7981. name: "Front",
  7982. image: {
  7983. source: "./media/characters/citrine/front.svg"
  7984. }
  7985. }
  7986. },
  7987. [
  7988. {
  7989. name: "Normal",
  7990. height: math.unit(3, "feet"),
  7991. default: true
  7992. }
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7997. {
  7998. front: {
  7999. height: math.unit(14, "feet"),
  8000. weight: math.unit(1450, "kg"),
  8001. capacity: math.unit(15, "people"),
  8002. name: "Front",
  8003. image: {
  8004. source: "./media/characters/aura-starwind/front.svg",
  8005. extra: 1455 / 1335
  8006. }
  8007. },
  8008. side: {
  8009. height: math.unit(14, "feet"),
  8010. weight: math.unit(1450, "kg"),
  8011. capacity: math.unit(15, "people"),
  8012. name: "Side",
  8013. image: {
  8014. source: "./media/characters/aura-starwind/side.svg",
  8015. extra: 1654 / 1497
  8016. }
  8017. },
  8018. taur: {
  8019. height: math.unit(18, "feet"),
  8020. weight: math.unit(5500, "kg"),
  8021. capacity: math.unit(50, "people"),
  8022. name: "Taur",
  8023. image: {
  8024. source: "./media/characters/aura-starwind/taur.svg",
  8025. extra: 1760 / 1650
  8026. }
  8027. },
  8028. feral: {
  8029. height: math.unit(46, "feet"),
  8030. weight: math.unit(25000, "kg"),
  8031. capacity: math.unit(120, "people"),
  8032. name: "Feral",
  8033. image: {
  8034. source: "./media/characters/aura-starwind/feral.svg"
  8035. }
  8036. },
  8037. },
  8038. [
  8039. {
  8040. name: "Normal",
  8041. height: math.unit(14, "feet"),
  8042. default: true
  8043. },
  8044. {
  8045. name: "Macro",
  8046. height: math.unit(50, "meters")
  8047. },
  8048. {
  8049. name: "Megamacro",
  8050. height: math.unit(5000, "meters")
  8051. },
  8052. {
  8053. name: "Gigamacro",
  8054. height: math.unit(100000, "kilometers")
  8055. },
  8056. ]
  8057. ))
  8058. characterMakers.push(() => makeCharacter(
  8059. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8060. {
  8061. front: {
  8062. height: math.unit(2 + 7 / 12, "feet"),
  8063. weight: math.unit(32, "lbs"),
  8064. name: "Front",
  8065. image: {
  8066. source: "./media/characters/rivet/front.svg",
  8067. extra: 1716 / 1658,
  8068. bottom: 0.03
  8069. }
  8070. },
  8071. foot: {
  8072. height: math.unit(0.551, "feet"),
  8073. name: "Rivet's Foot",
  8074. image: {
  8075. source: "./media/characters/rivet/foot.svg"
  8076. },
  8077. rename: true
  8078. }
  8079. },
  8080. [
  8081. {
  8082. name: "Micro",
  8083. height: math.unit(1.5, "inches"),
  8084. },
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(2 + 7 / 12, "feet"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Macro",
  8092. height: math.unit(85, "feet")
  8093. },
  8094. {
  8095. name: "Megamacro",
  8096. height: math.unit(2.2, "km")
  8097. }
  8098. ]
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8102. {
  8103. front: {
  8104. height: math.unit(5 + 9 / 12, "feet"),
  8105. weight: math.unit(150, "lbs"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/coffee/front.svg",
  8109. extra: 3666 / 3032,
  8110. bottom: 0.04
  8111. }
  8112. },
  8113. foot: {
  8114. height: math.unit(1.29, "feet"),
  8115. name: "Foot",
  8116. image: {
  8117. source: "./media/characters/coffee/foot.svg"
  8118. }
  8119. },
  8120. },
  8121. [
  8122. {
  8123. name: "Micro",
  8124. height: math.unit(2, "inches"),
  8125. },
  8126. {
  8127. name: "Normal",
  8128. height: math.unit(5 + 9 / 12, "feet"),
  8129. default: true
  8130. },
  8131. {
  8132. name: "Macro",
  8133. height: math.unit(800, "feet")
  8134. },
  8135. {
  8136. name: "Megamacro",
  8137. height: math.unit(25, "miles")
  8138. }
  8139. ]
  8140. ))
  8141. characterMakers.push(() => makeCharacter(
  8142. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8143. {
  8144. front: {
  8145. height: math.unit(6, "feet"),
  8146. weight: math.unit(200, "lbs"),
  8147. name: "Front",
  8148. image: {
  8149. source: "./media/characters/chari-gal/front.svg",
  8150. extra: 1568 / 1385,
  8151. bottom: 0.047
  8152. }
  8153. },
  8154. gigantamax: {
  8155. height: math.unit(6 * 16, "feet"),
  8156. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8157. name: "Gigantamax",
  8158. image: {
  8159. source: "./media/characters/chari-gal/gigantamax.svg",
  8160. extra: 1124 / 888,
  8161. bottom: 0.03
  8162. }
  8163. },
  8164. },
  8165. [
  8166. {
  8167. name: "Normal",
  8168. height: math.unit(5 + 7 / 12, "feet")
  8169. },
  8170. {
  8171. name: "Macro",
  8172. height: math.unit(200, "feet"),
  8173. default: true
  8174. }
  8175. ]
  8176. ))
  8177. characterMakers.push(() => makeCharacter(
  8178. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8179. {
  8180. front: {
  8181. height: math.unit(6, "feet"),
  8182. weight: math.unit(150, "lbs"),
  8183. name: "Front",
  8184. image: {
  8185. source: "./media/characters/nova/front.svg",
  8186. extra: 5000 / 4722,
  8187. bottom: 0.02
  8188. }
  8189. }
  8190. },
  8191. [
  8192. {
  8193. name: "Micro-",
  8194. height: math.unit(0.8, "inches")
  8195. },
  8196. {
  8197. name: "Micro",
  8198. height: math.unit(2, "inches"),
  8199. default: true
  8200. },
  8201. ]
  8202. ))
  8203. characterMakers.push(() => makeCharacter(
  8204. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8205. {
  8206. front: {
  8207. height: math.unit(3 + 1 / 12, "feet"),
  8208. weight: math.unit(21.7, "lbs"),
  8209. name: "Front",
  8210. image: {
  8211. source: "./media/characters/argent/front.svg",
  8212. extra: 1471 / 1331,
  8213. bottom: 100.8 / 1575.5
  8214. }
  8215. }
  8216. },
  8217. [
  8218. {
  8219. name: "Micro",
  8220. height: math.unit(2, "inches")
  8221. },
  8222. {
  8223. name: "Normal",
  8224. height: math.unit(3 + 1 / 12, "feet"),
  8225. default: true
  8226. },
  8227. {
  8228. name: "Macro",
  8229. height: math.unit(120, "feet")
  8230. },
  8231. ]
  8232. ))
  8233. characterMakers.push(() => makeCharacter(
  8234. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8235. {
  8236. lamp: {
  8237. height: math.unit(7 * 1559 / 989, "feet"),
  8238. name: "Magic Lamp",
  8239. image: {
  8240. source: "./media/characters/mira-al-cul/lamp.svg",
  8241. extra: 1617 / 1559
  8242. }
  8243. },
  8244. front: {
  8245. height: math.unit(7, "feet"),
  8246. name: "Front",
  8247. image: {
  8248. source: "./media/characters/mira-al-cul/front.svg",
  8249. extra: 1044 / 990
  8250. }
  8251. },
  8252. },
  8253. [
  8254. {
  8255. name: "Heavily Restricted",
  8256. height: math.unit(7 * 1559 / 989, "feet")
  8257. },
  8258. {
  8259. name: "Freshly Freed",
  8260. height: math.unit(50 * 1559 / 989, "feet")
  8261. },
  8262. {
  8263. name: "World Encompassing",
  8264. height: math.unit(10000 * 1559 / 989, "miles")
  8265. },
  8266. {
  8267. name: "Galactic",
  8268. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8269. },
  8270. {
  8271. name: "Palmed Universe",
  8272. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "Multiversal Matriarch",
  8277. height: math.unit(8.87e10, "yottameters")
  8278. },
  8279. {
  8280. name: "Void Mother",
  8281. height: math.unit(3.14e110, "yottaparsecs")
  8282. },
  8283. {
  8284. name: "Toying with Transcendence",
  8285. height: math.unit(1e307, "meters")
  8286. },
  8287. ]
  8288. ))
  8289. characterMakers.push(() => makeCharacter(
  8290. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8291. {
  8292. front: {
  8293. height: math.unit(17 + 1 / 12, "feet"),
  8294. weight: math.unit(476.2 * 5, "lbs"),
  8295. name: "Front",
  8296. image: {
  8297. source: "./media/characters/kuro-shi-uchū/front.svg",
  8298. extra: 2329 / 1835,
  8299. bottom: 0.02
  8300. }
  8301. },
  8302. },
  8303. [
  8304. {
  8305. name: "Micro",
  8306. height: math.unit(2, "inches")
  8307. },
  8308. {
  8309. name: "Normal",
  8310. height: math.unit(12, "meters")
  8311. },
  8312. {
  8313. name: "Planetary",
  8314. height: math.unit(0.00929, "AU"),
  8315. default: true
  8316. },
  8317. {
  8318. name: "Universal",
  8319. height: math.unit(20, "gigaparsecs")
  8320. },
  8321. ]
  8322. ))
  8323. characterMakers.push(() => makeCharacter(
  8324. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8325. {
  8326. front: {
  8327. height: math.unit(5 + 2 / 12, "feet"),
  8328. weight: math.unit(120, "lbs"),
  8329. name: "Front",
  8330. image: {
  8331. source: "./media/characters/katherine/front.svg",
  8332. extra: 2075 / 1969
  8333. }
  8334. },
  8335. dress: {
  8336. height: math.unit(5 + 2 / 12, "feet"),
  8337. weight: math.unit(120, "lbs"),
  8338. name: "Dress",
  8339. image: {
  8340. source: "./media/characters/katherine/dress.svg",
  8341. extra: 2258 / 2064
  8342. }
  8343. },
  8344. },
  8345. [
  8346. {
  8347. name: "Micro",
  8348. height: math.unit(1, "inches"),
  8349. default: true
  8350. },
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(5 + 2 / 12, "feet")
  8354. },
  8355. {
  8356. name: "Macro",
  8357. height: math.unit(100, "meters")
  8358. },
  8359. {
  8360. name: "Megamacro",
  8361. height: math.unit(80, "miles")
  8362. },
  8363. ]
  8364. ))
  8365. characterMakers.push(() => makeCharacter(
  8366. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8367. {
  8368. front: {
  8369. height: math.unit(7 + 8 / 12, "feet"),
  8370. weight: math.unit(250, "lbs"),
  8371. name: "Front",
  8372. image: {
  8373. source: "./media/characters/yevis/front.svg",
  8374. extra: 1938 / 1755
  8375. }
  8376. }
  8377. },
  8378. [
  8379. {
  8380. name: "Mortal",
  8381. height: math.unit(7 + 8 / 12, "feet")
  8382. },
  8383. {
  8384. name: "Battle",
  8385. height: math.unit(25 + 11 / 12, "feet")
  8386. },
  8387. {
  8388. name: "Wrath",
  8389. height: math.unit(1654 + 11 / 12, "feet")
  8390. },
  8391. {
  8392. name: "Planet Destroyer",
  8393. height: math.unit(12000, "miles")
  8394. },
  8395. {
  8396. name: "Galaxy Conqueror",
  8397. height: math.unit(1.45, "zettameters"),
  8398. default: true
  8399. },
  8400. {
  8401. name: "Universal War",
  8402. height: math.unit(184, "gigaparsecs")
  8403. },
  8404. {
  8405. name: "Eternity War",
  8406. height: math.unit(1.98e55, "yottaparsecs")
  8407. },
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(5 + 8 / 12, "feet"),
  8415. weight: math.unit(63, "kg"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/xavier/front.svg",
  8419. extra: 944 / 883
  8420. }
  8421. },
  8422. frontStretch: {
  8423. height: math.unit(5 + 8 / 12, "feet"),
  8424. weight: math.unit(63, "kg"),
  8425. name: "Stretching",
  8426. image: {
  8427. source: "./media/characters/xavier/front-stretch.svg",
  8428. extra: 962 / 820
  8429. }
  8430. },
  8431. },
  8432. [
  8433. {
  8434. name: "Normal",
  8435. height: math.unit(5 + 8 / 12, "feet")
  8436. },
  8437. {
  8438. name: "Macro",
  8439. height: math.unit(100, "meters"),
  8440. default: true
  8441. },
  8442. {
  8443. name: "McLargeHuge",
  8444. height: math.unit(10, "miles")
  8445. },
  8446. ]
  8447. ))
  8448. characterMakers.push(() => makeCharacter(
  8449. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8450. {
  8451. front: {
  8452. height: math.unit(5 + 5 / 12, "feet"),
  8453. weight: math.unit(150, "lb"),
  8454. name: "Front",
  8455. image: {
  8456. source: "./media/characters/joshii/front.svg",
  8457. extra: 765 / 653,
  8458. bottom: 51 / 816
  8459. }
  8460. },
  8461. foot: {
  8462. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8463. name: "Foot",
  8464. image: {
  8465. source: "./media/characters/joshii/foot.svg"
  8466. }
  8467. },
  8468. },
  8469. [
  8470. {
  8471. name: "Micro",
  8472. height: math.unit(2, "inches"),
  8473. default: true
  8474. },
  8475. {
  8476. name: "Normal",
  8477. height: math.unit(5 + 5 / 12, "feet")
  8478. },
  8479. {
  8480. name: "Macro",
  8481. height: math.unit(785, "feet")
  8482. },
  8483. {
  8484. name: "Megamacro",
  8485. height: math.unit(24.5, "miles")
  8486. },
  8487. ]
  8488. ))
  8489. characterMakers.push(() => makeCharacter(
  8490. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8491. {
  8492. front: {
  8493. height: math.unit(6, "feet"),
  8494. weight: math.unit(150, "lb"),
  8495. name: "Front",
  8496. image: {
  8497. source: "./media/characters/goddess-elizabeth/front.svg",
  8498. extra: 1800 / 1525,
  8499. bottom: 0.005
  8500. }
  8501. },
  8502. foot: {
  8503. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8504. name: "Foot",
  8505. image: {
  8506. source: "./media/characters/goddess-elizabeth/foot.svg"
  8507. }
  8508. },
  8509. mouth: {
  8510. height: math.unit(6, "feet"),
  8511. name: "Mouth",
  8512. image: {
  8513. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Micro",
  8520. height: math.unit(12, "feet")
  8521. },
  8522. {
  8523. name: "Normal",
  8524. height: math.unit(80, "miles"),
  8525. default: true
  8526. },
  8527. {
  8528. name: "Macro",
  8529. height: math.unit(15000, "parsecs")
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8535. {
  8536. front: {
  8537. height: math.unit(5 + 9 / 12, "feet"),
  8538. weight: math.unit(144, "lb"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/kara/front.svg"
  8542. }
  8543. },
  8544. feet: {
  8545. height: math.unit(6 / 6.765, "feet"),
  8546. name: "Kara's Feet",
  8547. rename: true,
  8548. image: {
  8549. source: "./media/characters/kara/feet.svg"
  8550. }
  8551. },
  8552. },
  8553. [
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(5 + 9 / 12, "feet")
  8557. },
  8558. {
  8559. name: "Macro",
  8560. height: math.unit(174, "feet"),
  8561. default: true
  8562. },
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8567. {
  8568. front: {
  8569. height: math.unit(18, "feet"),
  8570. weight: math.unit(4050, "lb"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/tyrone/front.svg",
  8574. extra: 2405 / 2270,
  8575. bottom: 182 / 2587
  8576. }
  8577. },
  8578. },
  8579. [
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(18, "feet"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(300, "feet")
  8588. },
  8589. {
  8590. name: "Megamacro",
  8591. height: math.unit(15, "km")
  8592. },
  8593. {
  8594. name: "Gigamacro",
  8595. height: math.unit(500, "km")
  8596. },
  8597. {
  8598. name: "Teramacro",
  8599. height: math.unit(0.5, "gigameters")
  8600. },
  8601. {
  8602. name: "Omnimacro",
  8603. height: math.unit(1e252, "yottauniverse")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8609. {
  8610. front: {
  8611. height: math.unit(7 + 8 / 12, "feet"),
  8612. weight: math.unit(120, "lb"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/danny/front.svg",
  8616. extra: 1490 / 1350
  8617. }
  8618. },
  8619. back: {
  8620. height: math.unit(7 + 8 / 12, "feet"),
  8621. weight: math.unit(120, "lb"),
  8622. name: "Back",
  8623. image: {
  8624. source: "./media/characters/danny/back.svg",
  8625. extra: 1490 / 1350
  8626. }
  8627. },
  8628. },
  8629. [
  8630. {
  8631. name: "Normal",
  8632. height: math.unit(7 + 8 / 12, "feet"),
  8633. default: true
  8634. },
  8635. ]
  8636. ))
  8637. characterMakers.push(() => makeCharacter(
  8638. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8639. {
  8640. front: {
  8641. height: math.unit(3.5, "inches"),
  8642. weight: math.unit(19, "grams"),
  8643. name: "Front",
  8644. image: {
  8645. source: "./media/characters/mallow/front.svg",
  8646. extra: 471 / 431
  8647. }
  8648. },
  8649. back: {
  8650. height: math.unit(3.5, "inches"),
  8651. weight: math.unit(19, "grams"),
  8652. name: "Back",
  8653. image: {
  8654. source: "./media/characters/mallow/back.svg",
  8655. extra: 471 / 431
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(3.5, "inches"),
  8663. default: true
  8664. },
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8669. {
  8670. front: {
  8671. height: math.unit(9, "feet"),
  8672. weight: math.unit(230, "kg"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/starry-aqua/front.svg"
  8676. }
  8677. },
  8678. back: {
  8679. height: math.unit(9, "feet"),
  8680. weight: math.unit(230, "kg"),
  8681. name: "Back",
  8682. image: {
  8683. source: "./media/characters/starry-aqua/back.svg"
  8684. }
  8685. },
  8686. hand: {
  8687. height: math.unit(9 * 0.1168, "feet"),
  8688. name: "Hand",
  8689. image: {
  8690. source: "./media/characters/starry-aqua/hand.svg"
  8691. }
  8692. },
  8693. foot: {
  8694. height: math.unit(9 * 0.18, "feet"),
  8695. name: "Foot",
  8696. image: {
  8697. source: "./media/characters/starry-aqua/foot.svg"
  8698. }
  8699. }
  8700. },
  8701. [
  8702. {
  8703. name: "Micro",
  8704. height: math.unit(3, "inches")
  8705. },
  8706. {
  8707. name: "Normal",
  8708. height: math.unit(9, "feet")
  8709. },
  8710. {
  8711. name: "Macro",
  8712. height: math.unit(300, "feet"),
  8713. default: true
  8714. },
  8715. {
  8716. name: "Megamacro",
  8717. height: math.unit(3200, "feet")
  8718. }
  8719. ]
  8720. ))
  8721. characterMakers.push(() => makeCharacter(
  8722. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8723. {
  8724. front: {
  8725. height: math.unit(6, "feet"),
  8726. weight: math.unit(230, "lb"),
  8727. name: "Front",
  8728. image: {
  8729. source: "./media/characters/luka/front.svg",
  8730. extra: 1,
  8731. bottom: 0.025
  8732. }
  8733. },
  8734. },
  8735. [
  8736. {
  8737. name: "Normal",
  8738. height: math.unit(12 + 8 / 12, "feet"),
  8739. default: true
  8740. },
  8741. {
  8742. name: "Minimacro",
  8743. height: math.unit(20, "feet")
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(250, "feet")
  8748. },
  8749. {
  8750. name: "Megamacro",
  8751. height: math.unit(5, "miles")
  8752. },
  8753. {
  8754. name: "Gigamacro",
  8755. height: math.unit(8000, "miles")
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(6, "feet"),
  8764. weight: math.unit(150, "lb"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/natalie-nightring/front.svg",
  8768. extra: 1,
  8769. bottom: 0.06
  8770. }
  8771. },
  8772. },
  8773. [
  8774. {
  8775. name: "Uh Oh",
  8776. height: math.unit(0.1, "mm")
  8777. },
  8778. {
  8779. name: "Small",
  8780. height: math.unit(3, "inches")
  8781. },
  8782. {
  8783. name: "Human Scale",
  8784. height: math.unit(6, "feet")
  8785. },
  8786. {
  8787. name: "Librarian",
  8788. height: math.unit(50, "feet"),
  8789. default: true
  8790. },
  8791. {
  8792. name: "Immense",
  8793. height: math.unit(200, "miles")
  8794. },
  8795. ]
  8796. ))
  8797. characterMakers.push(() => makeCharacter(
  8798. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8799. {
  8800. front: {
  8801. height: math.unit(6, "feet"),
  8802. weight: math.unit(180, "lbs"),
  8803. name: "Front",
  8804. image: {
  8805. source: "./media/characters/danni-rosie/front.svg",
  8806. extra: 1260 / 1128,
  8807. bottom: 0.022
  8808. }
  8809. },
  8810. },
  8811. [
  8812. {
  8813. name: "Micro",
  8814. height: math.unit(2, "inches"),
  8815. default: true
  8816. },
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8821. {
  8822. front: {
  8823. height: math.unit(5 + 9 / 12, "feet"),
  8824. weight: math.unit(220, "lb"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/samantha-kruse/front.svg",
  8828. extra: (985 / 935),
  8829. bottom: 0.03
  8830. }
  8831. },
  8832. frontUndressed: {
  8833. height: math.unit(5 + 9 / 12, "feet"),
  8834. weight: math.unit(220, "lb"),
  8835. name: "Front (Undressed)",
  8836. image: {
  8837. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8838. extra: (973 / 923),
  8839. bottom: 0.025
  8840. }
  8841. },
  8842. fat: {
  8843. height: math.unit(5 + 9 / 12, "feet"),
  8844. weight: math.unit(900, "lb"),
  8845. name: "Front (Fat)",
  8846. image: {
  8847. source: "./media/characters/samantha-kruse/fat.svg",
  8848. extra: 2688 / 2561
  8849. }
  8850. },
  8851. },
  8852. [
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(5 + 9 / 12, "feet"),
  8856. default: true
  8857. }
  8858. ]
  8859. ))
  8860. characterMakers.push(() => makeCharacter(
  8861. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8862. {
  8863. back: {
  8864. height: math.unit(5 + 4 / 12, "feet"),
  8865. weight: math.unit(4963, "lb"),
  8866. name: "Back",
  8867. image: {
  8868. source: "./media/characters/amelia-rosie/back.svg",
  8869. extra: 1113 / 963,
  8870. bottom: 0.01
  8871. }
  8872. },
  8873. },
  8874. [
  8875. {
  8876. name: "Level 0",
  8877. height: math.unit(5 + 4 / 12, "feet")
  8878. },
  8879. {
  8880. name: "Level 1",
  8881. height: math.unit(164597, "feet"),
  8882. default: true
  8883. },
  8884. {
  8885. name: "Level 2",
  8886. height: math.unit(956243, "miles")
  8887. },
  8888. {
  8889. name: "Level 3",
  8890. height: math.unit(29421709423, "miles")
  8891. },
  8892. {
  8893. name: "Level 4",
  8894. height: math.unit(154, "lightyears")
  8895. },
  8896. {
  8897. name: "Level 5",
  8898. height: math.unit(4738272, "lightyears")
  8899. },
  8900. {
  8901. name: "Level 6",
  8902. height: math.unit(145787152896, "lightyears")
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(5 + 11 / 12, "feet"),
  8911. weight: math.unit(65, "kg"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/rook-kitara/front.svg",
  8915. extra: 1347 / 1274,
  8916. bottom: 0.005
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Totally Unfair",
  8923. height: math.unit(1.8, "mm")
  8924. },
  8925. {
  8926. name: "Lap Rookie",
  8927. height: math.unit(1.4, "feet")
  8928. },
  8929. {
  8930. name: "Normal",
  8931. height: math.unit(5 + 11 / 12, "feet"),
  8932. default: true
  8933. },
  8934. {
  8935. name: "How Did This Happen",
  8936. height: math.unit(80, "miles")
  8937. }
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8942. {
  8943. front: {
  8944. height: math.unit(7, "feet"),
  8945. weight: math.unit(300, "lb"),
  8946. name: "Front",
  8947. image: {
  8948. source: "./media/characters/pisces/front.svg",
  8949. extra: 2255 / 2115,
  8950. bottom: 0.03
  8951. }
  8952. },
  8953. back: {
  8954. height: math.unit(7, "feet"),
  8955. weight: math.unit(300, "lb"),
  8956. name: "Back",
  8957. image: {
  8958. source: "./media/characters/pisces/back.svg",
  8959. extra: 2146 / 2055,
  8960. bottom: 0.04
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(7, "feet"),
  8968. default: true
  8969. },
  8970. {
  8971. name: "Swimming Pool",
  8972. height: math.unit(12.2, "meters")
  8973. },
  8974. {
  8975. name: "Olympic Swimming Pool",
  8976. height: math.unit(56.3, "meters")
  8977. },
  8978. {
  8979. name: "Lake Superior",
  8980. height: math.unit(93900, "meters")
  8981. },
  8982. {
  8983. name: "Mediterranean Sea",
  8984. height: math.unit(644457, "meters")
  8985. },
  8986. {
  8987. name: "World's Oceans",
  8988. height: math.unit(4567491, "meters")
  8989. },
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(2.3, "meters"),
  8997. weight: math.unit(120, "kg"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/zelas/front.svg"
  9001. }
  9002. },
  9003. side: {
  9004. height: math.unit(2.3, "meters"),
  9005. weight: math.unit(120, "kg"),
  9006. name: "Side",
  9007. image: {
  9008. source: "./media/characters/zelas/side.svg"
  9009. }
  9010. },
  9011. back: {
  9012. height: math.unit(2.3, "meters"),
  9013. weight: math.unit(120, "kg"),
  9014. name: "Back",
  9015. image: {
  9016. source: "./media/characters/zelas/back.svg"
  9017. }
  9018. },
  9019. foot: {
  9020. height: math.unit(1.116, "feet"),
  9021. name: "Foot",
  9022. image: {
  9023. source: "./media/characters/zelas/foot.svg"
  9024. }
  9025. },
  9026. },
  9027. [
  9028. {
  9029. name: "Normal",
  9030. height: math.unit(2.3, "meters")
  9031. },
  9032. {
  9033. name: "Macro",
  9034. height: math.unit(30, "meters"),
  9035. default: true
  9036. },
  9037. ]
  9038. ))
  9039. characterMakers.push(() => makeCharacter(
  9040. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9041. {
  9042. front: {
  9043. height: math.unit(1, "inch"),
  9044. weight: math.unit(0.21, "grams"),
  9045. name: "Front",
  9046. image: {
  9047. source: "./media/characters/talbot/front.svg",
  9048. extra: 594 / 544
  9049. }
  9050. },
  9051. },
  9052. [
  9053. {
  9054. name: "Micro",
  9055. height: math.unit(1, "inch"),
  9056. default: true
  9057. },
  9058. ]
  9059. ))
  9060. characterMakers.push(() => makeCharacter(
  9061. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9062. {
  9063. front: {
  9064. height: math.unit(3 + 3 / 12, "feet"),
  9065. weight: math.unit(51.8, "lb"),
  9066. name: "Front",
  9067. image: {
  9068. source: "./media/characters/fliss/front.svg",
  9069. extra: 840 / 640
  9070. }
  9071. },
  9072. },
  9073. [
  9074. {
  9075. name: "Teeny Tiny",
  9076. height: math.unit(1, "mm")
  9077. },
  9078. {
  9079. name: "Small",
  9080. height: math.unit(1, "inch"),
  9081. default: true
  9082. },
  9083. {
  9084. name: "Standard Sylveon",
  9085. height: math.unit(3 + 3 / 12, "feet")
  9086. },
  9087. {
  9088. name: "Large Nuisance",
  9089. height: math.unit(33, "feet")
  9090. },
  9091. {
  9092. name: "City Filler",
  9093. height: math.unit(3000, "feet")
  9094. },
  9095. {
  9096. name: "New Horizon",
  9097. height: math.unit(6000, "miles")
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(5, "cm"),
  9106. weight: math.unit(1.94, "g"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/fleta/front.svg",
  9110. extra: 835 / 803
  9111. }
  9112. },
  9113. back: {
  9114. height: math.unit(5, "cm"),
  9115. weight: math.unit(1.94, "g"),
  9116. name: "Back",
  9117. image: {
  9118. source: "./media/characters/fleta/back.svg",
  9119. extra: 835 / 803
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Micro",
  9126. height: math.unit(5, "cm"),
  9127. default: true
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(6, "feet"),
  9136. weight: math.unit(225, "lb"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/dominic/front.svg",
  9140. extra: 1770 / 1620,
  9141. bottom: 0.025
  9142. }
  9143. },
  9144. back: {
  9145. height: math.unit(6, "feet"),
  9146. weight: math.unit(225, "lb"),
  9147. name: "Back",
  9148. image: {
  9149. source: "./media/characters/dominic/back.svg",
  9150. extra: 1745 / 1620,
  9151. bottom: 0.065
  9152. }
  9153. },
  9154. },
  9155. [
  9156. {
  9157. name: "Nano",
  9158. height: math.unit(0.1, "mm")
  9159. },
  9160. {
  9161. name: "Micro-",
  9162. height: math.unit(1, "mm")
  9163. },
  9164. {
  9165. name: "Micro",
  9166. height: math.unit(4, "inches")
  9167. },
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(6 + 4 / 12, "feet"),
  9171. default: true
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(115, "feet")
  9176. },
  9177. {
  9178. name: "Macro+",
  9179. height: math.unit(955, "feet")
  9180. },
  9181. {
  9182. name: "Megamacro",
  9183. height: math.unit(8990, "feet")
  9184. },
  9185. {
  9186. name: "Gigmacro",
  9187. height: math.unit(9310, "miles")
  9188. },
  9189. {
  9190. name: "Teramacro",
  9191. height: math.unit(1567005010, "miles")
  9192. },
  9193. {
  9194. name: "Examacro",
  9195. height: math.unit(1425, "parsecs")
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(400, "feet"),
  9204. weight: math.unit(44444444, "lb"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/major-colonel/front.svg"
  9208. }
  9209. },
  9210. back: {
  9211. height: math.unit(400, "feet"),
  9212. weight: math.unit(44444444, "lb"),
  9213. name: "Back",
  9214. image: {
  9215. source: "./media/characters/major-colonel/back.svg"
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Macro",
  9222. height: math.unit(400, "feet"),
  9223. default: true
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9229. {
  9230. catFront: {
  9231. height: math.unit(6, "feet"),
  9232. weight: math.unit(120, "lb"),
  9233. name: "Front (Cat Side)",
  9234. image: {
  9235. source: "./media/characters/axel-lycan/cat-front.svg",
  9236. extra: 430 / 402,
  9237. bottom: 43 / 472.35
  9238. }
  9239. },
  9240. catBack: {
  9241. height: math.unit(6, "feet"),
  9242. weight: math.unit(120, "lb"),
  9243. name: "Back (Cat Side)",
  9244. image: {
  9245. source: "./media/characters/axel-lycan/cat-back.svg",
  9246. extra: 447 / 419,
  9247. bottom: 23.3 / 469
  9248. }
  9249. },
  9250. wolfFront: {
  9251. height: math.unit(6, "feet"),
  9252. weight: math.unit(120, "lb"),
  9253. name: "Front (Wolf Side)",
  9254. image: {
  9255. source: "./media/characters/axel-lycan/wolf-front.svg",
  9256. extra: 485 / 456,
  9257. bottom: 19 / 504
  9258. }
  9259. },
  9260. wolfBack: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(120, "lb"),
  9263. name: "Back (Wolf Side)",
  9264. image: {
  9265. source: "./media/characters/axel-lycan/wolf-back.svg",
  9266. extra: 475 / 438,
  9267. bottom: 39.2 / 514
  9268. }
  9269. },
  9270. },
  9271. [
  9272. {
  9273. name: "Macro",
  9274. height: math.unit(1, "km"),
  9275. default: true
  9276. },
  9277. ]
  9278. ))
  9279. characterMakers.push(() => makeCharacter(
  9280. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9281. {
  9282. front: {
  9283. height: math.unit(5 + 9 / 12, "feet"),
  9284. weight: math.unit(175, "lb"),
  9285. name: "Front",
  9286. image: {
  9287. source: "./media/characters/vanrel-hyena/front.svg",
  9288. extra: 1086 / 1010,
  9289. bottom: 0.04
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Normal",
  9296. height: math.unit(5 + 9 / 12, "feet"),
  9297. default: true
  9298. },
  9299. ]
  9300. ))
  9301. characterMakers.push(() => makeCharacter(
  9302. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9303. {
  9304. front: {
  9305. height: math.unit(6, "feet"),
  9306. weight: math.unit(103, "lb"),
  9307. name: "Front",
  9308. image: {
  9309. source: "./media/characters/abbott-absol/front.svg",
  9310. extra: 2010 / 1842
  9311. }
  9312. },
  9313. },
  9314. [
  9315. {
  9316. name: "Megamicro",
  9317. height: math.unit(0.1, "mm")
  9318. },
  9319. {
  9320. name: "Micro",
  9321. height: math.unit(1, "inch")
  9322. },
  9323. {
  9324. name: "Normal",
  9325. height: math.unit(6, "feet"),
  9326. default: true
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9332. {
  9333. front: {
  9334. height: math.unit(6, "feet"),
  9335. weight: math.unit(264, "lb"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/hector/front.svg",
  9339. extra: 2280 / 2130,
  9340. bottom: 0.07
  9341. }
  9342. },
  9343. },
  9344. [
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(12.25, "foot"),
  9348. default: true
  9349. },
  9350. {
  9351. name: "Macro",
  9352. height: math.unit(160, "feet")
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(6, "feet"),
  9361. weight: math.unit(150, "lb"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/sal/front.svg",
  9365. extra: 1846 / 1699,
  9366. bottom: 0.04
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Megamacro",
  9373. height: math.unit(10, "miles"),
  9374. default: true
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9380. {
  9381. front: {
  9382. height: math.unit(3, "meters"),
  9383. weight: math.unit(450, "kg"),
  9384. name: "front",
  9385. image: {
  9386. source: "./media/characters/ranger/front.svg",
  9387. extra: 2401 / 2243,
  9388. bottom: 0.05
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Normal",
  9395. height: math.unit(3, "meters"),
  9396. default: true
  9397. },
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9402. {
  9403. front: {
  9404. height: math.unit(14, "feet"),
  9405. weight: math.unit(800, "kg"),
  9406. name: "Front",
  9407. image: {
  9408. source: "./media/characters/theresa/front.svg",
  9409. extra: 3575 / 3346,
  9410. bottom: 0.03
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(14, "feet"),
  9418. default: true
  9419. },
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9424. {
  9425. front: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(3, "kg"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/ine/front.svg",
  9431. extra: 678 / 539,
  9432. bottom: 0.023
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Normal",
  9439. height: math.unit(2.265, "feet"),
  9440. default: true
  9441. },
  9442. ]
  9443. ))
  9444. characterMakers.push(() => makeCharacter(
  9445. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9446. {
  9447. front: {
  9448. height: math.unit(5, "feet"),
  9449. weight: math.unit(30, "kg"),
  9450. name: "Front",
  9451. image: {
  9452. source: "./media/characters/vial/front.svg",
  9453. extra: 1365 / 1277,
  9454. bottom: 0.04
  9455. }
  9456. },
  9457. },
  9458. [
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(5, "feet"),
  9462. default: true
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9468. {
  9469. side: {
  9470. height: math.unit(3.4, "meters"),
  9471. weight: math.unit(1000, "lb"),
  9472. name: "Side",
  9473. image: {
  9474. source: "./media/characters/rovoska/side.svg",
  9475. extra: 4403 / 1515
  9476. }
  9477. },
  9478. },
  9479. [
  9480. {
  9481. name: "Normal",
  9482. height: math.unit(3.4, "meters"),
  9483. default: true
  9484. },
  9485. ]
  9486. ))
  9487. characterMakers.push(() => makeCharacter(
  9488. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9489. {
  9490. front: {
  9491. height: math.unit(8, "feet"),
  9492. weight: math.unit(315, "lb"),
  9493. name: "Front",
  9494. image: {
  9495. source: "./media/characters/gunner-rotthbauer/front.svg"
  9496. }
  9497. },
  9498. back: {
  9499. height: math.unit(8, "feet"),
  9500. weight: math.unit(315, "lb"),
  9501. name: "Back",
  9502. image: {
  9503. source: "./media/characters/gunner-rotthbauer/back.svg"
  9504. }
  9505. },
  9506. },
  9507. [
  9508. {
  9509. name: "Micro",
  9510. height: math.unit(3.5, "inches")
  9511. },
  9512. {
  9513. name: "Normal",
  9514. height: math.unit(8, "feet"),
  9515. default: true
  9516. },
  9517. {
  9518. name: "Macro",
  9519. height: math.unit(250, "feet")
  9520. },
  9521. {
  9522. name: "Megamacro",
  9523. height: math.unit(1, "AU")
  9524. },
  9525. ]
  9526. ))
  9527. characterMakers.push(() => makeCharacter(
  9528. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9529. {
  9530. front: {
  9531. height: math.unit(5 + 5 / 12, "feet"),
  9532. weight: math.unit(140, "lb"),
  9533. name: "Front",
  9534. image: {
  9535. source: "./media/characters/allatia/front.svg",
  9536. extra: 1227 / 1180,
  9537. bottom: 0.027
  9538. }
  9539. },
  9540. },
  9541. [
  9542. {
  9543. name: "Normal",
  9544. height: math.unit(5 + 5 / 12, "feet")
  9545. },
  9546. {
  9547. name: "Macro",
  9548. height: math.unit(250, "feet"),
  9549. default: true
  9550. },
  9551. {
  9552. name: "Megamacro",
  9553. height: math.unit(8, "miles")
  9554. }
  9555. ]
  9556. ))
  9557. characterMakers.push(() => makeCharacter(
  9558. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9559. {
  9560. front: {
  9561. height: math.unit(6, "feet"),
  9562. weight: math.unit(120, "lb"),
  9563. name: "Front",
  9564. image: {
  9565. source: "./media/characters/tene/front.svg",
  9566. extra: 1728 / 1578,
  9567. bottom: 0.022
  9568. }
  9569. },
  9570. stomping: {
  9571. height: math.unit(2.025, "meters"),
  9572. weight: math.unit(120, "lb"),
  9573. name: "Stomping",
  9574. image: {
  9575. source: "./media/characters/tene/stomping.svg",
  9576. extra: 938 / 873,
  9577. bottom: 0.01
  9578. }
  9579. },
  9580. sitting: {
  9581. height: math.unit(1, "meter"),
  9582. weight: math.unit(120, "lb"),
  9583. name: "Sitting",
  9584. image: {
  9585. source: "./media/characters/tene/sitting.svg",
  9586. extra: 437 / 415,
  9587. bottom: 0.1
  9588. }
  9589. },
  9590. feral: {
  9591. height: math.unit(3.9, "feet"),
  9592. weight: math.unit(250, "lb"),
  9593. name: "Feral",
  9594. image: {
  9595. source: "./media/characters/tene/feral.svg",
  9596. extra: 717 / 458,
  9597. bottom: 0.179
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(6, "feet")
  9605. },
  9606. {
  9607. name: "Macro",
  9608. height: math.unit(300, "feet"),
  9609. default: true
  9610. },
  9611. {
  9612. name: "Megamacro",
  9613. height: math.unit(5, "miles")
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9619. {
  9620. side: {
  9621. height: math.unit(6, "feet"),
  9622. name: "Side",
  9623. image: {
  9624. source: "./media/characters/evander/side.svg",
  9625. extra: 877 / 477
  9626. }
  9627. },
  9628. },
  9629. [
  9630. {
  9631. name: "Normal",
  9632. height: math.unit(0.83, "meters"),
  9633. default: true
  9634. },
  9635. ]
  9636. ))
  9637. characterMakers.push(() => makeCharacter(
  9638. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9639. {
  9640. front: {
  9641. height: math.unit(12, "feet"),
  9642. weight: math.unit(1000, "lb"),
  9643. name: "Front",
  9644. image: {
  9645. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9646. extra: 1762 / 1611
  9647. }
  9648. },
  9649. back: {
  9650. height: math.unit(12, "feet"),
  9651. weight: math.unit(1000, "lb"),
  9652. name: "Back",
  9653. image: {
  9654. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9655. extra: 1762 / 1611
  9656. }
  9657. },
  9658. },
  9659. [
  9660. {
  9661. name: "Normal",
  9662. height: math.unit(12, "feet"),
  9663. default: true
  9664. },
  9665. {
  9666. name: "Kaiju",
  9667. height: math.unit(150, "feet")
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9673. {
  9674. front: {
  9675. height: math.unit(6, "feet"),
  9676. weight: math.unit(150, "lb"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/zero-alurus/front.svg"
  9680. }
  9681. },
  9682. back: {
  9683. height: math.unit(6, "feet"),
  9684. weight: math.unit(150, "lb"),
  9685. name: "Back",
  9686. image: {
  9687. source: "./media/characters/zero-alurus/back.svg"
  9688. }
  9689. },
  9690. },
  9691. [
  9692. {
  9693. name: "Normal",
  9694. height: math.unit(5 + 10 / 12, "feet")
  9695. },
  9696. {
  9697. name: "Macro",
  9698. height: math.unit(60, "feet"),
  9699. default: true
  9700. },
  9701. {
  9702. name: "Macro+",
  9703. height: math.unit(450, "feet")
  9704. },
  9705. ]
  9706. ))
  9707. characterMakers.push(() => makeCharacter(
  9708. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9709. {
  9710. front: {
  9711. height: math.unit(6, "feet"),
  9712. weight: math.unit(200, "lb"),
  9713. name: "Front",
  9714. image: {
  9715. source: "./media/characters/mega-shi/front.svg",
  9716. extra: 1279 / 1250,
  9717. bottom: 0.02
  9718. }
  9719. },
  9720. back: {
  9721. height: math.unit(6, "feet"),
  9722. weight: math.unit(200, "lb"),
  9723. name: "Back",
  9724. image: {
  9725. source: "./media/characters/mega-shi/back.svg",
  9726. extra: 1279 / 1250,
  9727. bottom: 0.02
  9728. }
  9729. },
  9730. },
  9731. [
  9732. {
  9733. name: "Micro",
  9734. height: math.unit(16 + 6 / 12, "feet")
  9735. },
  9736. {
  9737. name: "Third Dimension",
  9738. height: math.unit(40, "meters")
  9739. },
  9740. {
  9741. name: "Normal",
  9742. height: math.unit(660, "feet"),
  9743. default: true
  9744. },
  9745. {
  9746. name: "Megamacro",
  9747. height: math.unit(10, "miles")
  9748. },
  9749. {
  9750. name: "Planetary Launch",
  9751. height: math.unit(500, "miles")
  9752. },
  9753. {
  9754. name: "Interstellar",
  9755. height: math.unit(1e9, "miles")
  9756. },
  9757. {
  9758. name: "Leaving the Universe",
  9759. height: math.unit(1, "gigaparsec")
  9760. },
  9761. {
  9762. name: "Travelling Universes",
  9763. height: math.unit(30e15, "parsecs")
  9764. },
  9765. ]
  9766. ))
  9767. characterMakers.push(() => makeCharacter(
  9768. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9769. {
  9770. front: {
  9771. height: math.unit(6, "feet"),
  9772. weight: math.unit(150, "lb"),
  9773. name: "Front",
  9774. image: {
  9775. source: "./media/characters/odyssey/front.svg",
  9776. extra: 1782 / 1582,
  9777. bottom: 0.01
  9778. }
  9779. },
  9780. side: {
  9781. height: math.unit(5.7, "feet"),
  9782. weight: math.unit(140, "lb"),
  9783. name: "Side",
  9784. image: {
  9785. source: "./media/characters/odyssey/side.svg",
  9786. extra: 6462 / 5700
  9787. }
  9788. },
  9789. },
  9790. [
  9791. {
  9792. name: "Normal",
  9793. height: math.unit(5 + 4 / 12, "feet")
  9794. },
  9795. {
  9796. name: "Macro",
  9797. height: math.unit(1, "km")
  9798. },
  9799. {
  9800. name: "Megamacro",
  9801. height: math.unit(3000, "km")
  9802. },
  9803. {
  9804. name: "Gigamacro",
  9805. height: math.unit(1, "AU"),
  9806. default: true
  9807. },
  9808. {
  9809. name: "Omniversal",
  9810. height: math.unit(100e14, "lightyears")
  9811. },
  9812. ]
  9813. ))
  9814. characterMakers.push(() => makeCharacter(
  9815. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9816. {
  9817. front: {
  9818. height: math.unit(6, "feet"),
  9819. weight: math.unit(300, "lb"),
  9820. name: "Front",
  9821. image: {
  9822. source: "./media/characters/mekuto/front.svg",
  9823. extra: 921 / 832,
  9824. bottom: 0.03
  9825. }
  9826. },
  9827. hand: {
  9828. height: math.unit(6 / 10.24, "feet"),
  9829. name: "Hand",
  9830. image: {
  9831. source: "./media/characters/mekuto/hand.svg"
  9832. }
  9833. },
  9834. foot: {
  9835. height: math.unit(6 / 5.05, "feet"),
  9836. name: "Foot",
  9837. image: {
  9838. source: "./media/characters/mekuto/foot.svg"
  9839. }
  9840. },
  9841. },
  9842. [
  9843. {
  9844. name: "Minimicro",
  9845. height: math.unit(0.2, "inches")
  9846. },
  9847. {
  9848. name: "Micro",
  9849. height: math.unit(1.5, "inches")
  9850. },
  9851. {
  9852. name: "Normal",
  9853. height: math.unit(5 + 11 / 12, "feet"),
  9854. default: true
  9855. },
  9856. {
  9857. name: "Minimacro",
  9858. height: math.unit(17 + 9 / 12, "feet")
  9859. },
  9860. {
  9861. name: "Macro",
  9862. height: math.unit(177.5, "feet")
  9863. },
  9864. {
  9865. name: "Megamacro",
  9866. height: math.unit(152, "miles")
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9872. {
  9873. front: {
  9874. height: math.unit(6.5, "inches"),
  9875. weight: math.unit(13, "oz"),
  9876. name: "Front",
  9877. image: {
  9878. source: "./media/characters/dafydd-tomos/front.svg",
  9879. extra: 2990 / 2603,
  9880. bottom: 0.03
  9881. }
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Micro",
  9887. height: math.unit(6.5, "inches"),
  9888. default: true
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9894. {
  9895. front: {
  9896. height: math.unit(6, "feet"),
  9897. weight: math.unit(150, "lb"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/splinter/front.svg",
  9901. extra: 2990 / 2882,
  9902. bottom: 0.04
  9903. }
  9904. },
  9905. back: {
  9906. height: math.unit(6, "feet"),
  9907. weight: math.unit(150, "lb"),
  9908. name: "Back",
  9909. image: {
  9910. source: "./media/characters/splinter/back.svg",
  9911. extra: 2990 / 2882,
  9912. bottom: 0.04
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(6, "feet")
  9920. },
  9921. {
  9922. name: "Macro",
  9923. height: math.unit(230, "meters"),
  9924. default: true
  9925. },
  9926. ]
  9927. ))
  9928. characterMakers.push(() => makeCharacter(
  9929. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9930. {
  9931. front: {
  9932. height: math.unit(4 + 10 / 12, "feet"),
  9933. weight: math.unit(480, "lb"),
  9934. name: "Front",
  9935. image: {
  9936. source: "./media/characters/snow-gabumon/front.svg",
  9937. extra: 1140 / 963,
  9938. bottom: 0.058
  9939. }
  9940. },
  9941. back: {
  9942. height: math.unit(4 + 10 / 12, "feet"),
  9943. weight: math.unit(480, "lb"),
  9944. name: "Back",
  9945. image: {
  9946. source: "./media/characters/snow-gabumon/back.svg",
  9947. extra: 1115 / 962,
  9948. bottom: 0.041
  9949. }
  9950. },
  9951. frontUndresed: {
  9952. height: math.unit(4 + 10 / 12, "feet"),
  9953. weight: math.unit(480, "lb"),
  9954. name: "Front (Undressed)",
  9955. image: {
  9956. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9957. extra: 1061 / 960,
  9958. bottom: 0.045
  9959. }
  9960. },
  9961. },
  9962. [
  9963. {
  9964. name: "Micro",
  9965. height: math.unit(1, "inch")
  9966. },
  9967. {
  9968. name: "Normal",
  9969. height: math.unit(4 + 10 / 12, "feet"),
  9970. default: true
  9971. },
  9972. {
  9973. name: "Macro",
  9974. height: math.unit(200, "feet")
  9975. },
  9976. {
  9977. name: "Megamacro",
  9978. height: math.unit(120, "miles")
  9979. },
  9980. {
  9981. name: "Gigamacro",
  9982. height: math.unit(9800, "miles")
  9983. },
  9984. ]
  9985. ))
  9986. characterMakers.push(() => makeCharacter(
  9987. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9988. {
  9989. front: {
  9990. height: math.unit(1.7, "meters"),
  9991. weight: math.unit(140, "lb"),
  9992. name: "Front",
  9993. image: {
  9994. source: "./media/characters/moody/front.svg",
  9995. extra: 3226 / 3007,
  9996. bottom: 0.087
  9997. }
  9998. },
  9999. },
  10000. [
  10001. {
  10002. name: "Micro",
  10003. height: math.unit(1, "mm")
  10004. },
  10005. {
  10006. name: "Normal",
  10007. height: math.unit(1.7, "meters"),
  10008. default: true
  10009. },
  10010. {
  10011. name: "Macro",
  10012. height: math.unit(80, "meters")
  10013. },
  10014. {
  10015. name: "Macro+",
  10016. height: math.unit(500, "meters")
  10017. },
  10018. ]
  10019. ))
  10020. characterMakers.push(() => makeCharacter(
  10021. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10022. {
  10023. front: {
  10024. height: math.unit(6, "feet"),
  10025. weight: math.unit(150, "lb"),
  10026. name: "Front",
  10027. image: {
  10028. source: "./media/characters/zyas/front.svg",
  10029. extra: 1180 / 1120,
  10030. bottom: 0.045
  10031. }
  10032. },
  10033. },
  10034. [
  10035. {
  10036. name: "Normal",
  10037. height: math.unit(10, "feet"),
  10038. default: true
  10039. },
  10040. {
  10041. name: "Macro",
  10042. height: math.unit(500, "feet")
  10043. },
  10044. {
  10045. name: "Megamacro",
  10046. height: math.unit(5, "miles")
  10047. },
  10048. {
  10049. name: "Teramacro",
  10050. height: math.unit(150000, "miles")
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10056. {
  10057. front: {
  10058. height: math.unit(6, "feet"),
  10059. weight: math.unit(150, "lb"),
  10060. name: "Front",
  10061. image: {
  10062. source: "./media/characters/cuon/front.svg",
  10063. extra: 1390 / 1320,
  10064. bottom: 0.008
  10065. }
  10066. },
  10067. },
  10068. [
  10069. {
  10070. name: "Micro",
  10071. height: math.unit(3, "inches")
  10072. },
  10073. {
  10074. name: "Normal",
  10075. height: math.unit(18 + 9 / 12, "feet"),
  10076. default: true
  10077. },
  10078. {
  10079. name: "Macro",
  10080. height: math.unit(360, "feet")
  10081. },
  10082. {
  10083. name: "Megamacro",
  10084. height: math.unit(360, "miles")
  10085. },
  10086. ]
  10087. ))
  10088. characterMakers.push(() => makeCharacter(
  10089. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10090. {
  10091. front: {
  10092. height: math.unit(2.4, "meters"),
  10093. weight: math.unit(70, "kg"),
  10094. name: "Front",
  10095. image: {
  10096. source: "./media/characters/nyanuxk/front.svg",
  10097. extra: 1172 / 1084,
  10098. bottom: 0.065
  10099. }
  10100. },
  10101. side: {
  10102. height: math.unit(2.4, "meters"),
  10103. weight: math.unit(70, "kg"),
  10104. name: "Side",
  10105. image: {
  10106. source: "./media/characters/nyanuxk/side.svg",
  10107. extra: 1190 / 1132,
  10108. bottom: 0.007
  10109. }
  10110. },
  10111. back: {
  10112. height: math.unit(2.4, "meters"),
  10113. weight: math.unit(70, "kg"),
  10114. name: "Back",
  10115. image: {
  10116. source: "./media/characters/nyanuxk/back.svg",
  10117. extra: 1200 / 1141,
  10118. bottom: 0.015
  10119. }
  10120. },
  10121. foot: {
  10122. height: math.unit(0.52, "meters"),
  10123. name: "Foot",
  10124. image: {
  10125. source: "./media/characters/nyanuxk/foot.svg"
  10126. }
  10127. },
  10128. },
  10129. [
  10130. {
  10131. name: "Micro",
  10132. height: math.unit(2, "cm")
  10133. },
  10134. {
  10135. name: "Normal",
  10136. height: math.unit(2.4, "meters"),
  10137. default: true
  10138. },
  10139. {
  10140. name: "Smaller Macro",
  10141. height: math.unit(120, "meters")
  10142. },
  10143. {
  10144. name: "Bigger Macro",
  10145. height: math.unit(1.2, "km")
  10146. },
  10147. {
  10148. name: "Megamacro",
  10149. height: math.unit(15, "kilometers")
  10150. },
  10151. {
  10152. name: "Gigamacro",
  10153. height: math.unit(2000, "km")
  10154. },
  10155. {
  10156. name: "Teramacro",
  10157. height: math.unit(500000, "km")
  10158. },
  10159. ]
  10160. ))
  10161. characterMakers.push(() => makeCharacter(
  10162. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10163. {
  10164. side: {
  10165. height: math.unit(6, "feet"),
  10166. name: "Side",
  10167. image: {
  10168. source: "./media/characters/ailbhe/side.svg",
  10169. extra: 757 / 464,
  10170. bottom: 0.041
  10171. }
  10172. },
  10173. },
  10174. [
  10175. {
  10176. name: "Normal",
  10177. height: math.unit(1.07, "meters"),
  10178. default: true
  10179. },
  10180. ]
  10181. ))
  10182. characterMakers.push(() => makeCharacter(
  10183. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10184. {
  10185. front: {
  10186. height: math.unit(6, "feet"),
  10187. weight: math.unit(120, "kg"),
  10188. name: "Front",
  10189. image: {
  10190. source: "./media/characters/zevulfius/front.svg",
  10191. extra: 965 / 903
  10192. }
  10193. },
  10194. side: {
  10195. height: math.unit(6, "feet"),
  10196. weight: math.unit(120, "kg"),
  10197. name: "Side",
  10198. image: {
  10199. source: "./media/characters/zevulfius/side.svg",
  10200. extra: 939 / 900
  10201. }
  10202. },
  10203. back: {
  10204. height: math.unit(6, "feet"),
  10205. weight: math.unit(120, "kg"),
  10206. name: "Back",
  10207. image: {
  10208. source: "./media/characters/zevulfius/back.svg",
  10209. extra: 918 / 854,
  10210. bottom: 0.005
  10211. }
  10212. },
  10213. foot: {
  10214. height: math.unit(6 / 3.72, "feet"),
  10215. name: "Foot",
  10216. image: {
  10217. source: "./media/characters/zevulfius/foot.svg"
  10218. }
  10219. },
  10220. },
  10221. [
  10222. {
  10223. name: "Macro",
  10224. height: math.unit(750, "meters")
  10225. },
  10226. {
  10227. name: "Megamacro",
  10228. height: math.unit(20, "km"),
  10229. default: true
  10230. },
  10231. {
  10232. name: "Gigamacro",
  10233. height: math.unit(2000, "km")
  10234. },
  10235. {
  10236. name: "Teramacro",
  10237. height: math.unit(250000, "km")
  10238. },
  10239. ]
  10240. ))
  10241. characterMakers.push(() => makeCharacter(
  10242. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10243. {
  10244. front: {
  10245. height: math.unit(100, "feet"),
  10246. weight: math.unit(350, "kg"),
  10247. name: "Front",
  10248. image: {
  10249. source: "./media/characters/rikes/front.svg",
  10250. extra: 1565 / 1483,
  10251. bottom: 0.017
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Macro",
  10258. height: math.unit(100, "feet"),
  10259. default: true
  10260. },
  10261. ]
  10262. ))
  10263. characterMakers.push(() => makeCharacter(
  10264. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10265. {
  10266. anthro: {
  10267. height: math.unit(8, "feet"),
  10268. weight: math.unit(120, "kg"),
  10269. name: "Anthro",
  10270. image: {
  10271. source: "./media/characters/adam-silver-mane/anthro.svg",
  10272. extra: 5743 / 5339,
  10273. bottom: 0.07
  10274. }
  10275. },
  10276. taur: {
  10277. height: math.unit(16, "feet"),
  10278. weight: math.unit(1500, "kg"),
  10279. name: "Taur",
  10280. image: {
  10281. source: "./media/characters/adam-silver-mane/taur.svg",
  10282. extra: 1713 / 1571,
  10283. bottom: 0.01
  10284. }
  10285. },
  10286. },
  10287. [
  10288. {
  10289. name: "Normal",
  10290. height: math.unit(8, "feet")
  10291. },
  10292. {
  10293. name: "Minimacro",
  10294. height: math.unit(80, "feet")
  10295. },
  10296. {
  10297. name: "Macro",
  10298. height: math.unit(800, "feet"),
  10299. default: true
  10300. },
  10301. {
  10302. name: "Megamacro",
  10303. height: math.unit(8000, "feet")
  10304. },
  10305. {
  10306. name: "Gigamacro",
  10307. height: math.unit(800, "miles")
  10308. },
  10309. {
  10310. name: "Teramacro",
  10311. height: math.unit(80000, "miles")
  10312. },
  10313. {
  10314. name: "Celestial",
  10315. height: math.unit(8e6, "miles")
  10316. },
  10317. {
  10318. name: "Star Dragon",
  10319. height: math.unit(800000, "parsecs")
  10320. },
  10321. {
  10322. name: "Godly",
  10323. height: math.unit(800, "teraparsecs")
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10329. {
  10330. front: {
  10331. height: math.unit(6, "feet"),
  10332. weight: math.unit(150, "lb"),
  10333. name: "Front",
  10334. image: {
  10335. source: "./media/characters/ky'owin/front.svg",
  10336. extra: 3888 / 3068,
  10337. bottom: 0.015
  10338. }
  10339. },
  10340. },
  10341. [
  10342. {
  10343. name: "Normal",
  10344. height: math.unit(6 + 8 / 12, "feet")
  10345. },
  10346. {
  10347. name: "Large",
  10348. height: math.unit(68, "feet")
  10349. },
  10350. {
  10351. name: "Macro",
  10352. height: math.unit(132, "feet")
  10353. },
  10354. {
  10355. name: "Macro+",
  10356. height: math.unit(340, "feet")
  10357. },
  10358. {
  10359. name: "Macro++",
  10360. height: math.unit(680, "feet"),
  10361. default: true
  10362. },
  10363. {
  10364. name: "Megamacro",
  10365. height: math.unit(1, "mile")
  10366. },
  10367. {
  10368. name: "Megamacro+",
  10369. height: math.unit(10, "miles")
  10370. },
  10371. ]
  10372. ))
  10373. characterMakers.push(() => makeCharacter(
  10374. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10375. {
  10376. front: {
  10377. height: math.unit(4, "feet"),
  10378. weight: math.unit(50, "lb"),
  10379. name: "Front",
  10380. image: {
  10381. source: "./media/characters/mal/front.svg",
  10382. extra: 785 / 724,
  10383. bottom: 0.07
  10384. }
  10385. },
  10386. },
  10387. [
  10388. {
  10389. name: "Micro",
  10390. height: math.unit(4, "inches")
  10391. },
  10392. {
  10393. name: "Normal",
  10394. height: math.unit(4, "feet"),
  10395. default: true
  10396. },
  10397. {
  10398. name: "Macro",
  10399. height: math.unit(200, "feet")
  10400. },
  10401. ]
  10402. ))
  10403. characterMakers.push(() => makeCharacter(
  10404. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10405. {
  10406. front: {
  10407. height: math.unit(6, "feet"),
  10408. weight: math.unit(150, "lb"),
  10409. name: "Front",
  10410. image: {
  10411. source: "./media/characters/jordan-deware/front.svg",
  10412. extra: 1191 / 1012
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Nano",
  10419. height: math.unit(0.01, "mm")
  10420. },
  10421. {
  10422. name: "Minimicro",
  10423. height: math.unit(1, "mm")
  10424. },
  10425. {
  10426. name: "Micro",
  10427. height: math.unit(0.5, "inches")
  10428. },
  10429. {
  10430. name: "Normal",
  10431. height: math.unit(4, "feet"),
  10432. default: true
  10433. },
  10434. {
  10435. name: "Minimacro",
  10436. height: math.unit(40, "meters")
  10437. },
  10438. {
  10439. name: "Small Macro",
  10440. height: math.unit(400, "meters")
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(4, "miles")
  10445. },
  10446. {
  10447. name: "Megamacro",
  10448. height: math.unit(40, "miles")
  10449. },
  10450. {
  10451. name: "Megamacro+",
  10452. height: math.unit(400, "miles")
  10453. },
  10454. {
  10455. name: "Gigamacro",
  10456. height: math.unit(400000, "miles")
  10457. },
  10458. ]
  10459. ))
  10460. characterMakers.push(() => makeCharacter(
  10461. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10462. {
  10463. side: {
  10464. height: math.unit(6, "feet"),
  10465. weight: math.unit(150, "lb"),
  10466. name: "Side",
  10467. image: {
  10468. source: "./media/characters/kimiko/side.svg",
  10469. extra: 600 / 358
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Normal",
  10476. height: math.unit(15, "feet"),
  10477. default: true
  10478. },
  10479. {
  10480. name: "Macro",
  10481. height: math.unit(220, "feet")
  10482. },
  10483. {
  10484. name: "Macro+",
  10485. height: math.unit(1450, "feet")
  10486. },
  10487. {
  10488. name: "Megamacro",
  10489. height: math.unit(11500, "feet")
  10490. },
  10491. {
  10492. name: "Gigamacro",
  10493. height: math.unit(9500, "miles")
  10494. },
  10495. {
  10496. name: "Teramacro",
  10497. height: math.unit(2208005005, "miles")
  10498. },
  10499. {
  10500. name: "Examacro",
  10501. height: math.unit(2750, "parsecs")
  10502. },
  10503. {
  10504. name: "Zettamacro",
  10505. height: math.unit(101500, "parsecs")
  10506. },
  10507. ]
  10508. ))
  10509. characterMakers.push(() => makeCharacter(
  10510. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10511. {
  10512. front: {
  10513. height: math.unit(6, "feet"),
  10514. weight: math.unit(70, "kg"),
  10515. name: "Front",
  10516. image: {
  10517. source: "./media/characters/andrew-sleepy/front.svg"
  10518. }
  10519. },
  10520. side: {
  10521. height: math.unit(6, "feet"),
  10522. weight: math.unit(70, "kg"),
  10523. name: "Side",
  10524. image: {
  10525. source: "./media/characters/andrew-sleepy/side.svg"
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Micro",
  10532. height: math.unit(1, "mm"),
  10533. default: true
  10534. },
  10535. ]
  10536. ))
  10537. characterMakers.push(() => makeCharacter(
  10538. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10539. {
  10540. front: {
  10541. height: math.unit(6, "feet"),
  10542. weight: math.unit(150, "lb"),
  10543. name: "Front",
  10544. image: {
  10545. source: "./media/characters/judio/front.svg",
  10546. extra: 1258 / 1110
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Normal",
  10553. height: math.unit(5 + 6 / 12, "feet")
  10554. },
  10555. {
  10556. name: "Macro",
  10557. height: math.unit(1000, "feet"),
  10558. default: true
  10559. },
  10560. {
  10561. name: "Megamacro",
  10562. height: math.unit(10, "miles")
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10568. {
  10569. front: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(68, "kg"),
  10572. name: "Front",
  10573. image: {
  10574. source: "./media/characters/nomaxice/front.svg",
  10575. extra: 1498 / 1073,
  10576. bottom: 0.075
  10577. }
  10578. },
  10579. foot: {
  10580. height: math.unit(1.1, "feet"),
  10581. name: "Foot",
  10582. image: {
  10583. source: "./media/characters/nomaxice/foot.svg"
  10584. }
  10585. },
  10586. },
  10587. [
  10588. {
  10589. name: "Micro",
  10590. height: math.unit(8, "cm")
  10591. },
  10592. {
  10593. name: "Norm",
  10594. height: math.unit(1.82, "m")
  10595. },
  10596. {
  10597. name: "Norm+",
  10598. height: math.unit(8.8, "feet")
  10599. },
  10600. {
  10601. name: "Big",
  10602. height: math.unit(8, "meters"),
  10603. default: true
  10604. },
  10605. {
  10606. name: "Macro",
  10607. height: math.unit(18, "meters")
  10608. },
  10609. {
  10610. name: "Macro+",
  10611. height: math.unit(88, "meters")
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10617. {
  10618. front: {
  10619. height: math.unit(12, "feet"),
  10620. weight: math.unit(1.5, "tons"),
  10621. name: "Front",
  10622. image: {
  10623. source: "./media/characters/dydros/front.svg",
  10624. extra: 863 / 800,
  10625. bottom: 0.015
  10626. }
  10627. },
  10628. back: {
  10629. height: math.unit(12, "feet"),
  10630. weight: math.unit(1.5, "tons"),
  10631. name: "Back",
  10632. image: {
  10633. source: "./media/characters/dydros/back.svg",
  10634. extra: 900 / 843,
  10635. bottom: 0.005
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Normal",
  10642. height: math.unit(12, "feet"),
  10643. default: true
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10649. {
  10650. front: {
  10651. height: math.unit(6, "feet"),
  10652. weight: math.unit(100, "kg"),
  10653. name: "Front",
  10654. image: {
  10655. source: "./media/characters/riggi/front.svg",
  10656. extra: 5787 / 5303
  10657. }
  10658. },
  10659. hyper: {
  10660. height: math.unit(6 * 5 / 3, "feet"),
  10661. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10662. name: "Hyper",
  10663. image: {
  10664. source: "./media/characters/riggi/hyper.svg",
  10665. extra: 3595 / 3485
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Small Macro",
  10672. height: math.unit(50, "feet")
  10673. },
  10674. {
  10675. name: "Default",
  10676. height: math.unit(200, "feet"),
  10677. default: true
  10678. },
  10679. {
  10680. name: "Loom",
  10681. height: math.unit(10000, "feet")
  10682. },
  10683. {
  10684. name: "Cruising Altitude",
  10685. height: math.unit(30000, "feet")
  10686. },
  10687. {
  10688. name: "Megamacro",
  10689. height: math.unit(100, "miles")
  10690. },
  10691. {
  10692. name: "Continent Sized",
  10693. height: math.unit(2800, "miles")
  10694. },
  10695. {
  10696. name: "Earth Sized",
  10697. height: math.unit(8000, "miles")
  10698. },
  10699. ]
  10700. ))
  10701. characterMakers.push(() => makeCharacter(
  10702. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10703. {
  10704. front: {
  10705. height: math.unit(6, "feet"),
  10706. weight: math.unit(250, "lb"),
  10707. name: "Front",
  10708. image: {
  10709. source: "./media/characters/alexi/front.svg",
  10710. extra: 3483 / 3291,
  10711. bottom: 0.04
  10712. }
  10713. },
  10714. back: {
  10715. height: math.unit(6, "feet"),
  10716. weight: math.unit(250, "lb"),
  10717. name: "Back",
  10718. image: {
  10719. source: "./media/characters/alexi/back.svg",
  10720. extra: 3533 / 3356,
  10721. bottom: 0.021
  10722. }
  10723. },
  10724. frontTransforming: {
  10725. height: math.unit(8.58, "feet"),
  10726. weight: math.unit(1300, "lb"),
  10727. name: "Transforming",
  10728. image: {
  10729. source: "./media/characters/alexi/front-transforming.svg",
  10730. extra: 437 / 409,
  10731. bottom: 19 / 458.66
  10732. }
  10733. },
  10734. frontTransformed: {
  10735. height: math.unit(12.5, "feet"),
  10736. weight: math.unit(4000, "lb"),
  10737. name: "Transformed",
  10738. image: {
  10739. source: "./media/characters/alexi/front-transformed.svg",
  10740. extra: 639 / 614,
  10741. bottom: 30.55 / 671
  10742. }
  10743. },
  10744. },
  10745. [
  10746. {
  10747. name: "Normal",
  10748. height: math.unit(14, "feet"),
  10749. default: true
  10750. },
  10751. {
  10752. name: "Minimacro",
  10753. height: math.unit(30, "meters")
  10754. },
  10755. {
  10756. name: "Macro",
  10757. height: math.unit(500, "meters")
  10758. },
  10759. {
  10760. name: "Megamacro",
  10761. height: math.unit(9000, "km")
  10762. },
  10763. {
  10764. name: "Teramacro",
  10765. height: math.unit(384000, "km")
  10766. },
  10767. ]
  10768. ))
  10769. characterMakers.push(() => makeCharacter(
  10770. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10771. {
  10772. front: {
  10773. height: math.unit(6, "feet"),
  10774. weight: math.unit(150, "lb"),
  10775. name: "Front",
  10776. image: {
  10777. source: "./media/characters/kayroo/front.svg",
  10778. extra: 1153 / 1038,
  10779. bottom: 0.06
  10780. }
  10781. },
  10782. foot: {
  10783. height: math.unit(6, "feet"),
  10784. weight: math.unit(150, "lb"),
  10785. name: "Foot",
  10786. image: {
  10787. source: "./media/characters/kayroo/foot.svg"
  10788. }
  10789. },
  10790. },
  10791. [
  10792. {
  10793. name: "Normal",
  10794. height: math.unit(8, "feet"),
  10795. default: true
  10796. },
  10797. {
  10798. name: "Minimacro",
  10799. height: math.unit(250, "feet")
  10800. },
  10801. {
  10802. name: "Macro",
  10803. height: math.unit(2800, "feet")
  10804. },
  10805. {
  10806. name: "Megamacro",
  10807. height: math.unit(5200, "feet")
  10808. },
  10809. {
  10810. name: "Gigamacro",
  10811. height: math.unit(27000, "feet")
  10812. },
  10813. {
  10814. name: "Omega",
  10815. height: math.unit(45000, "feet")
  10816. },
  10817. ]
  10818. ))
  10819. characterMakers.push(() => makeCharacter(
  10820. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10821. {
  10822. front: {
  10823. height: math.unit(18, "feet"),
  10824. weight: math.unit(5800, "lb"),
  10825. name: "Front",
  10826. image: {
  10827. source: "./media/characters/rhys/front.svg",
  10828. extra: 3386 / 3090,
  10829. bottom: 0.07
  10830. }
  10831. },
  10832. },
  10833. [
  10834. {
  10835. name: "Normal",
  10836. height: math.unit(18, "feet"),
  10837. default: true
  10838. },
  10839. {
  10840. name: "Working Size",
  10841. height: math.unit(200, "feet")
  10842. },
  10843. {
  10844. name: "Demolition Size",
  10845. height: math.unit(2000, "feet")
  10846. },
  10847. {
  10848. name: "Maximum Licensed Size",
  10849. height: math.unit(5, "miles")
  10850. },
  10851. {
  10852. name: "Maximum Observed Size",
  10853. height: math.unit(10, "yottameters")
  10854. },
  10855. ]
  10856. ))
  10857. characterMakers.push(() => makeCharacter(
  10858. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10859. {
  10860. front: {
  10861. height: math.unit(6, "feet"),
  10862. weight: math.unit(250, "lb"),
  10863. name: "Front",
  10864. image: {
  10865. source: "./media/characters/toto/front.svg",
  10866. extra: 527 / 479,
  10867. bottom: 0.05
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Micro",
  10874. height: math.unit(3, "feet")
  10875. },
  10876. {
  10877. name: "Normal",
  10878. height: math.unit(10, "feet")
  10879. },
  10880. {
  10881. name: "Macro",
  10882. height: math.unit(150, "feet"),
  10883. default: true
  10884. },
  10885. {
  10886. name: "Megamacro",
  10887. height: math.unit(1200, "feet")
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "King", species: ["lion"], tags: ["anthro"] },
  10893. {
  10894. back: {
  10895. height: math.unit(6, "feet"),
  10896. weight: math.unit(150, "lb"),
  10897. name: "Back",
  10898. image: {
  10899. source: "./media/characters/king/back.svg"
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Micro",
  10906. height: math.unit(2, "inches")
  10907. },
  10908. {
  10909. name: "Normal",
  10910. height: math.unit(8, "feet")
  10911. },
  10912. {
  10913. name: "Macro",
  10914. height: math.unit(200, "feet"),
  10915. default: true
  10916. },
  10917. {
  10918. name: "Megamacro",
  10919. height: math.unit(50, "miles")
  10920. },
  10921. ]
  10922. ))
  10923. characterMakers.push(() => makeCharacter(
  10924. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10925. {
  10926. anthro: {
  10927. height: math.unit(6 + 5 / 12, "feet"),
  10928. weight: math.unit(280, "lb"),
  10929. name: "Anthro",
  10930. image: {
  10931. source: "./media/characters/cordite/anthro.svg",
  10932. extra: 1986 / 1905,
  10933. bottom: 0.025
  10934. }
  10935. },
  10936. feral: {
  10937. height: math.unit(2, "feet"),
  10938. weight: math.unit(90, "lb"),
  10939. name: "Feral",
  10940. image: {
  10941. source: "./media/characters/cordite/feral.svg",
  10942. extra: 1260 / 755,
  10943. bottom: 0.05
  10944. }
  10945. },
  10946. },
  10947. [
  10948. {
  10949. name: "Normal",
  10950. height: math.unit(6 + 5 / 12, "feet"),
  10951. default: true
  10952. },
  10953. ]
  10954. ))
  10955. characterMakers.push(() => makeCharacter(
  10956. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10957. {
  10958. front: {
  10959. height: math.unit(6, "feet"),
  10960. weight: math.unit(150, "lb"),
  10961. name: "Front",
  10962. image: {
  10963. source: "./media/characters/pianostrong/front.svg",
  10964. extra: 6577 / 6254,
  10965. bottom: 0.02
  10966. }
  10967. },
  10968. side: {
  10969. height: math.unit(6, "feet"),
  10970. weight: math.unit(150, "lb"),
  10971. name: "Side",
  10972. image: {
  10973. source: "./media/characters/pianostrong/side.svg",
  10974. extra: 6106 / 5730
  10975. }
  10976. },
  10977. back: {
  10978. height: math.unit(6, "feet"),
  10979. weight: math.unit(150, "lb"),
  10980. name: "Back",
  10981. image: {
  10982. source: "./media/characters/pianostrong/back.svg",
  10983. extra: 6085 / 5733,
  10984. bottom: 0.01
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Macro",
  10991. height: math.unit(100, "feet")
  10992. },
  10993. {
  10994. name: "Macro+",
  10995. height: math.unit(300, "feet"),
  10996. default: true
  10997. },
  10998. {
  10999. name: "Macro++",
  11000. height: math.unit(1000, "feet")
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11006. {
  11007. front: {
  11008. height: math.unit(6, "feet"),
  11009. weight: math.unit(150, "lb"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/kona/front.svg",
  11013. extra: 2960 / 2629,
  11014. bottom: 0.005
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Normal",
  11021. height: math.unit(11 + 8 / 12, "feet")
  11022. },
  11023. {
  11024. name: "Macro",
  11025. height: math.unit(850, "feet"),
  11026. default: true
  11027. },
  11028. {
  11029. name: "Macro+",
  11030. height: math.unit(1.5, "km"),
  11031. default: true
  11032. },
  11033. {
  11034. name: "Megamacro",
  11035. height: math.unit(80, "miles")
  11036. },
  11037. {
  11038. name: "Gigamacro",
  11039. height: math.unit(3500, "miles")
  11040. },
  11041. ]
  11042. ))
  11043. characterMakers.push(() => makeCharacter(
  11044. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11045. {
  11046. side: {
  11047. height: math.unit(1.9, "meters"),
  11048. weight: math.unit(326, "kg"),
  11049. name: "Side",
  11050. image: {
  11051. source: "./media/characters/levi/side.svg",
  11052. extra: 1704 / 1334,
  11053. bottom: 0.02
  11054. }
  11055. },
  11056. },
  11057. [
  11058. {
  11059. name: "Normal",
  11060. height: math.unit(1.9, "meters"),
  11061. default: true
  11062. },
  11063. {
  11064. name: "Macro",
  11065. height: math.unit(20, "meters")
  11066. },
  11067. {
  11068. name: "Macro+",
  11069. height: math.unit(200, "meters")
  11070. },
  11071. {
  11072. name: "Megamacro",
  11073. height: math.unit(2, "km")
  11074. },
  11075. {
  11076. name: "Megamacro+",
  11077. height: math.unit(20, "km")
  11078. },
  11079. {
  11080. name: "Gigamacro",
  11081. height: math.unit(2500, "km")
  11082. },
  11083. {
  11084. name: "Gigamacro+",
  11085. height: math.unit(120000, "km")
  11086. },
  11087. {
  11088. name: "Teramacro",
  11089. height: math.unit(7.77e6, "km")
  11090. },
  11091. ]
  11092. ))
  11093. characterMakers.push(() => makeCharacter(
  11094. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11095. {
  11096. front: {
  11097. height: math.unit(6 + 4 / 12, "feet"),
  11098. weight: math.unit(188, "lb"),
  11099. name: "Front",
  11100. image: {
  11101. source: "./media/characters/bmc/front.svg",
  11102. extra: 1067 / 1022,
  11103. bottom: 0.047
  11104. }
  11105. },
  11106. },
  11107. [
  11108. {
  11109. name: "Human-sized",
  11110. height: math.unit(6 + 4 / 12, "feet")
  11111. },
  11112. {
  11113. name: "Small",
  11114. height: math.unit(250, "feet")
  11115. },
  11116. {
  11117. name: "Normal",
  11118. height: math.unit(1250, "feet"),
  11119. default: true
  11120. },
  11121. {
  11122. name: "Good Day",
  11123. height: math.unit(88, "miles")
  11124. },
  11125. {
  11126. name: "Largest Measured Size",
  11127. height: math.unit(11.2e6, "lightyears")
  11128. },
  11129. ]
  11130. ))
  11131. characterMakers.push(() => makeCharacter(
  11132. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11133. {
  11134. front: {
  11135. height: math.unit(20, "feet"),
  11136. weight: math.unit(2016, "kg"),
  11137. name: "Front",
  11138. image: {
  11139. source: "./media/characters/sven-the-kaiju/front.svg",
  11140. extra: 1277/1250,
  11141. bottom: 35/1312
  11142. }
  11143. },
  11144. mouth: {
  11145. height: math.unit(1.85, "feet"),
  11146. name: "Mouth",
  11147. image: {
  11148. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11149. }
  11150. },
  11151. },
  11152. [
  11153. {
  11154. name: "Fairy",
  11155. height: math.unit(6, "inches")
  11156. },
  11157. {
  11158. name: "Normal",
  11159. height: math.unit(20, "feet"),
  11160. default: true
  11161. },
  11162. {
  11163. name: "Rampage",
  11164. height: math.unit(200, "feet")
  11165. },
  11166. {
  11167. name: "Archfey Forest Guardian",
  11168. height: math.unit(1, "mile")
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11174. {
  11175. front: {
  11176. height: math.unit(4, "meters"),
  11177. weight: math.unit(2, "tons"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/marik/front.svg",
  11181. extra: 1057 / 1003,
  11182. bottom: 0.08
  11183. }
  11184. },
  11185. },
  11186. [
  11187. {
  11188. name: "Normal",
  11189. height: math.unit(4, "meters"),
  11190. default: true
  11191. },
  11192. {
  11193. name: "Macro",
  11194. height: math.unit(20, "meters")
  11195. },
  11196. {
  11197. name: "Megamacro",
  11198. height: math.unit(50, "km")
  11199. },
  11200. {
  11201. name: "Gigamacro",
  11202. height: math.unit(100, "km")
  11203. },
  11204. {
  11205. name: "Alpha Macro",
  11206. height: math.unit(7.88e7, "yottameters")
  11207. },
  11208. ]
  11209. ))
  11210. characterMakers.push(() => makeCharacter(
  11211. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11212. {
  11213. front: {
  11214. height: math.unit(6, "feet"),
  11215. weight: math.unit(110, "lb"),
  11216. name: "Front",
  11217. image: {
  11218. source: "./media/characters/mel/front.svg",
  11219. extra: 736 / 617,
  11220. bottom: 0.017
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Pico",
  11227. height: math.unit(3, "pm")
  11228. },
  11229. {
  11230. name: "Nano",
  11231. height: math.unit(3, "nm")
  11232. },
  11233. {
  11234. name: "Micro",
  11235. height: math.unit(0.3, "mm"),
  11236. default: true
  11237. },
  11238. {
  11239. name: "Micro+",
  11240. height: math.unit(3, "mm")
  11241. },
  11242. {
  11243. name: "Normal",
  11244. height: math.unit(5 + 10.5 / 12, "feet")
  11245. },
  11246. ]
  11247. ))
  11248. characterMakers.push(() => makeCharacter(
  11249. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11250. {
  11251. kaiju: {
  11252. height: math.unit(1.75, "meters"),
  11253. weight: math.unit(55, "kg"),
  11254. name: "Kaiju",
  11255. image: {
  11256. source: "./media/characters/lykonous/kaiju.svg",
  11257. extra: 1055 / 946,
  11258. bottom: 0.135
  11259. }
  11260. },
  11261. },
  11262. [
  11263. {
  11264. name: "Normal",
  11265. height: math.unit(2.5, "meters"),
  11266. default: true
  11267. },
  11268. {
  11269. name: "Kaiju Dragon",
  11270. height: math.unit(60, "meters")
  11271. },
  11272. {
  11273. name: "Mega Kaiju",
  11274. height: math.unit(120, "km")
  11275. },
  11276. {
  11277. name: "Giga Kaiju",
  11278. height: math.unit(200, "megameters")
  11279. },
  11280. {
  11281. name: "Terra Kaiju",
  11282. height: math.unit(400, "gigameters")
  11283. },
  11284. {
  11285. name: "Kaiju Dragon God",
  11286. height: math.unit(13000, "exaparsecs")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(150, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/blü/front.svg",
  11299. extra: 1883 / 1564,
  11300. bottom: 0.031
  11301. }
  11302. },
  11303. },
  11304. [
  11305. {
  11306. name: "Normal",
  11307. height: math.unit(13, "feet"),
  11308. default: true
  11309. },
  11310. {
  11311. name: "Big Boi",
  11312. height: math.unit(150, "meters")
  11313. },
  11314. {
  11315. name: "Mini Stomper",
  11316. height: math.unit(300, "meters")
  11317. },
  11318. {
  11319. name: "Macro",
  11320. height: math.unit(1000, "meters")
  11321. },
  11322. {
  11323. name: "Megamacro",
  11324. height: math.unit(11000, "meters")
  11325. },
  11326. {
  11327. name: "Gigamacro",
  11328. height: math.unit(11000, "km")
  11329. },
  11330. {
  11331. name: "Teramacro",
  11332. height: math.unit(420000, "km")
  11333. },
  11334. {
  11335. name: "Examacro",
  11336. height: math.unit(120, "parsecs")
  11337. },
  11338. {
  11339. name: "God Tho",
  11340. height: math.unit(98000000000, "parsecs")
  11341. },
  11342. ]
  11343. ))
  11344. characterMakers.push(() => makeCharacter(
  11345. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11346. {
  11347. taurFront: {
  11348. height: math.unit(6, "feet"),
  11349. weight: math.unit(200, "lb"),
  11350. name: "Taur (Front)",
  11351. image: {
  11352. source: "./media/characters/scales/taur-front.svg",
  11353. extra: 1,
  11354. bottom: 0.05
  11355. }
  11356. },
  11357. taurBack: {
  11358. height: math.unit(6, "feet"),
  11359. weight: math.unit(200, "lb"),
  11360. name: "Taur (Back)",
  11361. image: {
  11362. source: "./media/characters/scales/taur-back.svg",
  11363. extra: 1,
  11364. bottom: 0.08
  11365. }
  11366. },
  11367. anthro: {
  11368. height: math.unit(6 * 7 / 12, "feet"),
  11369. weight: math.unit(100, "lb"),
  11370. name: "Anthro",
  11371. image: {
  11372. source: "./media/characters/scales/anthro.svg",
  11373. extra: 1,
  11374. bottom: 0.06
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Normal",
  11381. height: math.unit(12, "feet"),
  11382. default: true
  11383. },
  11384. ]
  11385. ))
  11386. characterMakers.push(() => makeCharacter(
  11387. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11388. {
  11389. front: {
  11390. height: math.unit(6, "feet"),
  11391. weight: math.unit(150, "lb"),
  11392. name: "Front",
  11393. image: {
  11394. source: "./media/characters/koragos/front.svg",
  11395. extra: 841 / 794,
  11396. bottom: 0.035
  11397. }
  11398. },
  11399. back: {
  11400. height: math.unit(6, "feet"),
  11401. weight: math.unit(150, "lb"),
  11402. name: "Back",
  11403. image: {
  11404. source: "./media/characters/koragos/back.svg",
  11405. extra: 841 / 810,
  11406. bottom: 0.022
  11407. }
  11408. },
  11409. },
  11410. [
  11411. {
  11412. name: "Normal",
  11413. height: math.unit(6 + 11 / 12, "feet"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Macro",
  11418. height: math.unit(490, "feet")
  11419. },
  11420. {
  11421. name: "Megamacro",
  11422. height: math.unit(10, "miles")
  11423. },
  11424. {
  11425. name: "Gigamacro",
  11426. height: math.unit(50, "miles")
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11432. {
  11433. front: {
  11434. height: math.unit(6, "feet"),
  11435. weight: math.unit(250, "lb"),
  11436. name: "Front",
  11437. image: {
  11438. source: "./media/characters/xylrem/front.svg",
  11439. extra: 3323 / 3050,
  11440. bottom: 0.065
  11441. }
  11442. },
  11443. },
  11444. [
  11445. {
  11446. name: "Micro",
  11447. height: math.unit(4, "feet")
  11448. },
  11449. {
  11450. name: "Normal",
  11451. height: math.unit(16, "feet"),
  11452. default: true
  11453. },
  11454. {
  11455. name: "Macro",
  11456. height: math.unit(2720, "feet")
  11457. },
  11458. {
  11459. name: "Megamacro",
  11460. height: math.unit(25000, "miles")
  11461. },
  11462. ]
  11463. ))
  11464. characterMakers.push(() => makeCharacter(
  11465. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11466. {
  11467. front: {
  11468. height: math.unit(8, "feet"),
  11469. weight: math.unit(250, "kg"),
  11470. name: "Front",
  11471. image: {
  11472. source: "./media/characters/ikideru/front.svg",
  11473. extra: 930 / 870,
  11474. bottom: 0.087
  11475. }
  11476. },
  11477. back: {
  11478. height: math.unit(8, "feet"),
  11479. weight: math.unit(250, "kg"),
  11480. name: "Back",
  11481. image: {
  11482. source: "./media/characters/ikideru/back.svg",
  11483. extra: 919 / 852,
  11484. bottom: 0.055
  11485. }
  11486. },
  11487. },
  11488. [
  11489. {
  11490. name: "Rare",
  11491. height: math.unit(8, "feet"),
  11492. default: true
  11493. },
  11494. {
  11495. name: "Playful Loom",
  11496. height: math.unit(80, "feet")
  11497. },
  11498. {
  11499. name: "City Leaner",
  11500. height: math.unit(230, "feet")
  11501. },
  11502. {
  11503. name: "Megamacro",
  11504. height: math.unit(2500, "feet")
  11505. },
  11506. {
  11507. name: "Gigamacro",
  11508. height: math.unit(26400, "feet")
  11509. },
  11510. {
  11511. name: "Tectonic Shifter",
  11512. height: math.unit(1.7, "megameters")
  11513. },
  11514. {
  11515. name: "Planet Carer",
  11516. height: math.unit(21, "megameters")
  11517. },
  11518. {
  11519. name: "God",
  11520. height: math.unit(11157.22, "parsecs")
  11521. },
  11522. ]
  11523. ))
  11524. characterMakers.push(() => makeCharacter(
  11525. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11526. {
  11527. front: {
  11528. height: math.unit(6, "feet"),
  11529. weight: math.unit(120, "lb"),
  11530. name: "Front",
  11531. image: {
  11532. source: "./media/characters/neo/front.svg"
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Micro",
  11539. height: math.unit(2, "inches"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Human Size",
  11544. height: math.unit(5 + 8 / 12, "feet")
  11545. },
  11546. ]
  11547. ))
  11548. characterMakers.push(() => makeCharacter(
  11549. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11550. {
  11551. front: {
  11552. height: math.unit(13 + 10 / 12, "feet"),
  11553. weight: math.unit(5320, "lb"),
  11554. name: "Front",
  11555. image: {
  11556. source: "./media/characters/chauncey-chantz/front.svg",
  11557. extra: 1587 / 1435,
  11558. bottom: 0.02
  11559. }
  11560. },
  11561. },
  11562. [
  11563. {
  11564. name: "Normal",
  11565. height: math.unit(13 + 10 / 12, "feet"),
  11566. default: true
  11567. },
  11568. {
  11569. name: "Macro",
  11570. height: math.unit(45, "feet")
  11571. },
  11572. {
  11573. name: "Megamacro",
  11574. height: math.unit(250, "miles")
  11575. },
  11576. {
  11577. name: "Planetary",
  11578. height: math.unit(10000, "miles")
  11579. },
  11580. {
  11581. name: "Galactic",
  11582. height: math.unit(40000, "parsecs")
  11583. },
  11584. {
  11585. name: "Universal",
  11586. height: math.unit(1, "yottameter")
  11587. },
  11588. ]
  11589. ))
  11590. characterMakers.push(() => makeCharacter(
  11591. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11592. {
  11593. front: {
  11594. height: math.unit(6, "feet"),
  11595. weight: math.unit(150, "lb"),
  11596. name: "Front",
  11597. image: {
  11598. source: "./media/characters/epifox/front.svg",
  11599. extra: 1,
  11600. bottom: 0.075
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Micro",
  11607. height: math.unit(6, "inches")
  11608. },
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(12, "feet"),
  11612. default: true
  11613. },
  11614. {
  11615. name: "Macro",
  11616. height: math.unit(3810, "feet")
  11617. },
  11618. {
  11619. name: "Megamacro",
  11620. height: math.unit(500, "miles")
  11621. },
  11622. ]
  11623. ))
  11624. characterMakers.push(() => makeCharacter(
  11625. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11626. {
  11627. front: {
  11628. height: math.unit(1.8796, "m"),
  11629. weight: math.unit(230, "lb"),
  11630. name: "Front",
  11631. image: {
  11632. source: "./media/characters/colin-t/front.svg",
  11633. extra: 1272 / 1193,
  11634. bottom: 0.07
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Micro",
  11641. height: math.unit(0.571, "meters")
  11642. },
  11643. {
  11644. name: "Normal",
  11645. height: math.unit(1.8796, "meters"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Tall",
  11650. height: math.unit(4, "meters")
  11651. },
  11652. {
  11653. name: "Macro",
  11654. height: math.unit(67.241, "meters")
  11655. },
  11656. {
  11657. name: "Megamacro",
  11658. height: math.unit(371.856, "meters")
  11659. },
  11660. {
  11661. name: "Planetary",
  11662. height: math.unit(12631.5689, "km")
  11663. },
  11664. ]
  11665. ))
  11666. characterMakers.push(() => makeCharacter(
  11667. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11668. {
  11669. front: {
  11670. height: math.unit(1.85, "meters"),
  11671. weight: math.unit(80, "kg"),
  11672. name: "Front",
  11673. image: {
  11674. source: "./media/characters/matvei/front.svg",
  11675. extra: 614 / 594,
  11676. bottom: 0.01
  11677. }
  11678. },
  11679. },
  11680. [
  11681. {
  11682. name: "Normal",
  11683. height: math.unit(1.85, "meters"),
  11684. default: true
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(5 + 9 / 12, "feet"),
  11693. weight: math.unit(70, "lb"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/quincy/front.svg",
  11697. extra: 3041 / 2751
  11698. }
  11699. },
  11700. back: {
  11701. height: math.unit(5 + 9 / 12, "feet"),
  11702. weight: math.unit(70, "lb"),
  11703. name: "Back",
  11704. image: {
  11705. source: "./media/characters/quincy/back.svg",
  11706. extra: 3041 / 2751
  11707. }
  11708. },
  11709. flying: {
  11710. height: math.unit(5 + 4 / 12, "feet"),
  11711. weight: math.unit(70, "lb"),
  11712. name: "Flying",
  11713. image: {
  11714. source: "./media/characters/quincy/flying.svg",
  11715. extra: 1044 / 930
  11716. }
  11717. },
  11718. },
  11719. [
  11720. {
  11721. name: "Micro",
  11722. height: math.unit(3, "cm")
  11723. },
  11724. {
  11725. name: "Normal",
  11726. height: math.unit(5 + 9 / 12, "feet")
  11727. },
  11728. {
  11729. name: "Macro",
  11730. height: math.unit(200, "meters"),
  11731. default: true
  11732. },
  11733. {
  11734. name: "Megamacro",
  11735. height: math.unit(1000, "meters")
  11736. },
  11737. ]
  11738. ))
  11739. characterMakers.push(() => makeCharacter(
  11740. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11741. {
  11742. front: {
  11743. height: math.unit(4 + 7 / 12, "feet"),
  11744. weight: math.unit(50, "lb"),
  11745. name: "Front",
  11746. image: {
  11747. source: "./media/characters/vanrel/front.svg",
  11748. extra: 1,
  11749. bottom: 0.02
  11750. }
  11751. },
  11752. frontAlt: {
  11753. height: math.unit(4 + 7 / 12, "feet"),
  11754. weight: math.unit(50, "lb"),
  11755. name: "Front-alt",
  11756. image: {
  11757. source: "./media/characters/vanrel/front-alt.svg",
  11758. extra: 1,
  11759. bottom: 15 / 1511
  11760. }
  11761. },
  11762. elemental: {
  11763. height: math.unit(3, "feet"),
  11764. weight: math.unit(50, "lb"),
  11765. name: "Elemental",
  11766. image: {
  11767. source: "./media/characters/vanrel/elemental.svg",
  11768. extra: 192.3 / 162.8,
  11769. bottom: 1.79 / 194.17
  11770. }
  11771. },
  11772. side: {
  11773. height: math.unit(4 + 7 / 12, "feet"),
  11774. weight: math.unit(50, "lb"),
  11775. name: "Side",
  11776. image: {
  11777. source: "./media/characters/vanrel/side.svg",
  11778. extra: 1,
  11779. bottom: 0.025
  11780. }
  11781. },
  11782. tome: {
  11783. height: math.unit(1.35, "feet"),
  11784. weight: math.unit(10, "lb"),
  11785. name: "Vanrel's Tome",
  11786. rename: true,
  11787. image: {
  11788. source: "./media/characters/vanrel/tome.svg"
  11789. }
  11790. },
  11791. beans: {
  11792. height: math.unit(0.89, "feet"),
  11793. name: "Beans",
  11794. image: {
  11795. source: "./media/characters/vanrel/beans.svg"
  11796. }
  11797. },
  11798. },
  11799. [
  11800. {
  11801. name: "Normal",
  11802. height: math.unit(4 + 7 / 12, "feet"),
  11803. default: true
  11804. },
  11805. ]
  11806. ))
  11807. characterMakers.push(() => makeCharacter(
  11808. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11809. {
  11810. front: {
  11811. height: math.unit(7 + 5 / 12, "feet"),
  11812. weight: math.unit(150, "lb"),
  11813. name: "Front",
  11814. image: {
  11815. source: "./media/characters/kuiper-vanrel/front.svg",
  11816. extra: 1118 / 1068,
  11817. bottom: 0.09
  11818. }
  11819. },
  11820. foot: {
  11821. height: math.unit(0.55, "meters"),
  11822. name: "Foot",
  11823. image: {
  11824. source: "./media/characters/kuiper-vanrel/foot.svg",
  11825. }
  11826. },
  11827. battle: {
  11828. height: math.unit(6.824, "feet"),
  11829. weight: math.unit(150, "lb"),
  11830. name: "Battle",
  11831. image: {
  11832. source: "./media/characters/kuiper-vanrel/battle.svg",
  11833. extra: 1466 / 1327,
  11834. bottom: 29 / 1492.5
  11835. }
  11836. },
  11837. battleAlt: {
  11838. height: math.unit(6.824, "feet"),
  11839. weight: math.unit(150, "lb"),
  11840. name: "Battle (Alt)",
  11841. image: {
  11842. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11843. extra: 2081 / 1965,
  11844. bottom: 40 / 2121
  11845. }
  11846. },
  11847. },
  11848. [
  11849. {
  11850. name: "Normal",
  11851. height: math.unit(7 + 5 / 12, "feet"),
  11852. default: true
  11853. },
  11854. ]
  11855. ))
  11856. characterMakers.push(() => makeCharacter(
  11857. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11858. {
  11859. front: {
  11860. height: math.unit(8 + 5 / 12, "feet"),
  11861. weight: math.unit(150, "lb"),
  11862. name: "Front",
  11863. image: {
  11864. source: "./media/characters/keset-vanrel/front.svg",
  11865. extra: 1150 / 1084,
  11866. bottom: 0.05
  11867. }
  11868. },
  11869. hand: {
  11870. height: math.unit(0.6, "meters"),
  11871. name: "Hand",
  11872. image: {
  11873. source: "./media/characters/keset-vanrel/hand.svg"
  11874. }
  11875. },
  11876. foot: {
  11877. height: math.unit(0.94978, "meters"),
  11878. name: "Foot",
  11879. image: {
  11880. source: "./media/characters/keset-vanrel/foot.svg"
  11881. }
  11882. },
  11883. battle: {
  11884. height: math.unit(7.408, "feet"),
  11885. weight: math.unit(150, "lb"),
  11886. name: "Battle",
  11887. image: {
  11888. source: "./media/characters/keset-vanrel/battle.svg",
  11889. extra: 1890 / 1386,
  11890. bottom: 73.28 / 1970
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Normal",
  11897. height: math.unit(8 + 5 / 12, "feet"),
  11898. default: true
  11899. },
  11900. ]
  11901. ))
  11902. characterMakers.push(() => makeCharacter(
  11903. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11904. {
  11905. front: {
  11906. height: math.unit(6, "feet"),
  11907. weight: math.unit(150, "lb"),
  11908. name: "Front",
  11909. image: {
  11910. source: "./media/characters/neos/front.svg",
  11911. extra: 1696 / 992,
  11912. bottom: 0.14
  11913. }
  11914. },
  11915. },
  11916. [
  11917. {
  11918. name: "Normal",
  11919. height: math.unit(54, "cm"),
  11920. default: true
  11921. },
  11922. {
  11923. name: "Macro",
  11924. height: math.unit(100, "m")
  11925. },
  11926. {
  11927. name: "Megamacro",
  11928. height: math.unit(10, "km")
  11929. },
  11930. {
  11931. name: "Megamacro+",
  11932. height: math.unit(100, "km")
  11933. },
  11934. {
  11935. name: "Gigamacro",
  11936. height: math.unit(100, "Mm")
  11937. },
  11938. {
  11939. name: "Teramacro",
  11940. height: math.unit(100, "Gm")
  11941. },
  11942. {
  11943. name: "Examacro",
  11944. height: math.unit(100, "Em")
  11945. },
  11946. {
  11947. name: "Godly",
  11948. height: math.unit(10000, "Ym")
  11949. },
  11950. {
  11951. name: "Beyond Godly",
  11952. height: math.unit(25, "multiverses")
  11953. },
  11954. ]
  11955. ))
  11956. characterMakers.push(() => makeCharacter(
  11957. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11958. {
  11959. feminine: {
  11960. height: math.unit(5, "feet"),
  11961. weight: math.unit(100, "lb"),
  11962. name: "Feminine",
  11963. image: {
  11964. source: "./media/characters/sammy-mouse/feminine.svg",
  11965. extra: 2526 / 2425,
  11966. bottom: 0.123
  11967. }
  11968. },
  11969. masculine: {
  11970. height: math.unit(5, "feet"),
  11971. weight: math.unit(100, "lb"),
  11972. name: "Masculine",
  11973. image: {
  11974. source: "./media/characters/sammy-mouse/masculine.svg",
  11975. extra: 2526 / 2425,
  11976. bottom: 0.123
  11977. }
  11978. },
  11979. },
  11980. [
  11981. {
  11982. name: "Micro",
  11983. height: math.unit(5, "inches")
  11984. },
  11985. {
  11986. name: "Normal",
  11987. height: math.unit(5, "feet"),
  11988. default: true
  11989. },
  11990. {
  11991. name: "Macro",
  11992. height: math.unit(60, "feet")
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11998. {
  11999. front: {
  12000. height: math.unit(4, "feet"),
  12001. weight: math.unit(50, "lb"),
  12002. name: "Front",
  12003. image: {
  12004. source: "./media/characters/kole/front.svg",
  12005. extra: 1423 / 1303,
  12006. bottom: 0.025
  12007. }
  12008. },
  12009. back: {
  12010. height: math.unit(4, "feet"),
  12011. weight: math.unit(50, "lb"),
  12012. name: "Back",
  12013. image: {
  12014. source: "./media/characters/kole/back.svg",
  12015. extra: 1426 / 1280,
  12016. bottom: 0.02
  12017. }
  12018. },
  12019. },
  12020. [
  12021. {
  12022. name: "Normal",
  12023. height: math.unit(4, "feet"),
  12024. default: true
  12025. },
  12026. ]
  12027. ))
  12028. characterMakers.push(() => makeCharacter(
  12029. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12030. {
  12031. front: {
  12032. height: math.unit(2 + 6 / 12, "feet"),
  12033. weight: math.unit(20, "lb"),
  12034. name: "Front",
  12035. image: {
  12036. source: "./media/characters/rufran/front.svg",
  12037. extra: 2041 / 1839,
  12038. bottom: 0.055
  12039. }
  12040. },
  12041. back: {
  12042. height: math.unit(2 + 6 / 12, "feet"),
  12043. weight: math.unit(20, "lb"),
  12044. name: "Back",
  12045. image: {
  12046. source: "./media/characters/rufran/back.svg",
  12047. extra: 2054 / 1839,
  12048. bottom: 0.01
  12049. }
  12050. },
  12051. hand: {
  12052. height: math.unit(0.2166, "meters"),
  12053. name: "Hand",
  12054. image: {
  12055. source: "./media/characters/rufran/hand.svg"
  12056. }
  12057. },
  12058. foot: {
  12059. height: math.unit(0.185, "meters"),
  12060. name: "Foot",
  12061. image: {
  12062. source: "./media/characters/rufran/foot.svg"
  12063. }
  12064. },
  12065. },
  12066. [
  12067. {
  12068. name: "Micro",
  12069. height: math.unit(1, "inch")
  12070. },
  12071. {
  12072. name: "Normal",
  12073. height: math.unit(2 + 6 / 12, "feet"),
  12074. default: true
  12075. },
  12076. {
  12077. name: "Big",
  12078. height: math.unit(60, "feet")
  12079. },
  12080. {
  12081. name: "Macro",
  12082. height: math.unit(325, "feet")
  12083. },
  12084. ]
  12085. ))
  12086. characterMakers.push(() => makeCharacter(
  12087. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12088. {
  12089. front: {
  12090. height: math.unit(0.3, "meters"),
  12091. weight: math.unit(3.5, "kg"),
  12092. name: "Front",
  12093. image: {
  12094. source: "./media/characters/chip/front.svg",
  12095. extra: 748 / 674
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Micro",
  12102. height: math.unit(1, "inch"),
  12103. default: true
  12104. },
  12105. ]
  12106. ))
  12107. characterMakers.push(() => makeCharacter(
  12108. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12109. {
  12110. side: {
  12111. height: math.unit(2.3, "meters"),
  12112. weight: math.unit(3500, "lb"),
  12113. name: "Side",
  12114. image: {
  12115. source: "./media/characters/torvid/side.svg",
  12116. extra: 1972 / 722,
  12117. bottom: 0.035
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Normal",
  12124. height: math.unit(2.3, "meters"),
  12125. default: true
  12126. },
  12127. ]
  12128. ))
  12129. characterMakers.push(() => makeCharacter(
  12130. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12131. {
  12132. front: {
  12133. height: math.unit(2, "meters"),
  12134. weight: math.unit(150.5, "kg"),
  12135. name: "Front",
  12136. image: {
  12137. source: "./media/characters/susan/front.svg",
  12138. extra: 693 / 635,
  12139. bottom: 0.05
  12140. }
  12141. },
  12142. },
  12143. [
  12144. {
  12145. name: "Megamacro",
  12146. height: math.unit(505, "miles"),
  12147. default: true
  12148. },
  12149. ]
  12150. ))
  12151. characterMakers.push(() => makeCharacter(
  12152. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12153. {
  12154. front: {
  12155. height: math.unit(6, "feet"),
  12156. weight: math.unit(150, "lb"),
  12157. name: "Front",
  12158. image: {
  12159. source: "./media/characters/raindrops/front.svg",
  12160. extra: 2655 / 2461,
  12161. bottom: 49 / 2705
  12162. }
  12163. },
  12164. back: {
  12165. height: math.unit(6, "feet"),
  12166. weight: math.unit(150, "lb"),
  12167. name: "Back",
  12168. image: {
  12169. source: "./media/characters/raindrops/back.svg",
  12170. extra: 2574 / 2400,
  12171. bottom: 65 / 2634
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Micro",
  12178. height: math.unit(6, "inches")
  12179. },
  12180. {
  12181. name: "Normal",
  12182. height: math.unit(6 + 2 / 12, "feet")
  12183. },
  12184. {
  12185. name: "Macro",
  12186. height: math.unit(131, "feet"),
  12187. default: true
  12188. },
  12189. {
  12190. name: "Megamacro",
  12191. height: math.unit(15, "miles")
  12192. },
  12193. {
  12194. name: "Gigamacro",
  12195. height: math.unit(4000, "miles")
  12196. },
  12197. {
  12198. name: "Teramacro",
  12199. height: math.unit(315000, "miles")
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12205. {
  12206. front: {
  12207. height: math.unit(2.794, "meters"),
  12208. weight: math.unit(325, "kg"),
  12209. name: "Front",
  12210. image: {
  12211. source: "./media/characters/tezwa/front.svg",
  12212. extra: 2083 / 1906,
  12213. bottom: 0.031
  12214. }
  12215. },
  12216. foot: {
  12217. height: math.unit(0.687, "meters"),
  12218. name: "Foot",
  12219. image: {
  12220. source: "./media/characters/tezwa/foot.svg"
  12221. }
  12222. },
  12223. },
  12224. [
  12225. {
  12226. name: "Normal",
  12227. height: math.unit(9 + 2 / 12, "feet"),
  12228. default: true
  12229. },
  12230. ]
  12231. ))
  12232. characterMakers.push(() => makeCharacter(
  12233. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12234. {
  12235. front: {
  12236. height: math.unit(58, "feet"),
  12237. weight: math.unit(89000, "lb"),
  12238. name: "Front",
  12239. image: {
  12240. source: "./media/characters/typhus/front.svg",
  12241. extra: 816 / 800,
  12242. bottom: 0.065
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Macro",
  12249. height: math.unit(58, "feet"),
  12250. default: true
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12256. {
  12257. front: {
  12258. height: math.unit(12, "feet"),
  12259. weight: math.unit(6, "tonnes"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/lyra-von-wulf/front.svg",
  12263. extra: 1,
  12264. bottom: 0.10
  12265. }
  12266. },
  12267. frontMecha: {
  12268. height: math.unit(12, "feet"),
  12269. weight: math.unit(12, "tonnes"),
  12270. name: "Front (Mecha)",
  12271. image: {
  12272. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12273. extra: 1,
  12274. bottom: 0.042
  12275. }
  12276. },
  12277. maw: {
  12278. height: math.unit(2.2, "feet"),
  12279. name: "Maw",
  12280. image: {
  12281. source: "./media/characters/lyra-von-wulf/maw.svg"
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Normal",
  12288. height: math.unit(12, "feet"),
  12289. default: true
  12290. },
  12291. {
  12292. name: "Classic",
  12293. height: math.unit(50, "feet")
  12294. },
  12295. {
  12296. name: "Macro",
  12297. height: math.unit(500, "feet")
  12298. },
  12299. {
  12300. name: "Megamacro",
  12301. height: math.unit(1, "mile")
  12302. },
  12303. {
  12304. name: "Gigamacro",
  12305. height: math.unit(400, "miles")
  12306. },
  12307. {
  12308. name: "Teramacro",
  12309. height: math.unit(22000, "miles")
  12310. },
  12311. {
  12312. name: "Solarmacro",
  12313. height: math.unit(8600000, "miles")
  12314. },
  12315. {
  12316. name: "Galactic",
  12317. height: math.unit(1057000, "lightyears")
  12318. },
  12319. ]
  12320. ))
  12321. characterMakers.push(() => makeCharacter(
  12322. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12323. {
  12324. front: {
  12325. height: math.unit(6 + 10 / 12, "feet"),
  12326. weight: math.unit(150, "lb"),
  12327. name: "Front",
  12328. image: {
  12329. source: "./media/characters/dixon/front.svg",
  12330. extra: 3361 / 3209,
  12331. bottom: 0.01
  12332. }
  12333. },
  12334. },
  12335. [
  12336. {
  12337. name: "Normal",
  12338. height: math.unit(6 + 10 / 12, "feet"),
  12339. default: true
  12340. },
  12341. {
  12342. name: "Big",
  12343. height: math.unit(12, "meters")
  12344. },
  12345. {
  12346. name: "Macro",
  12347. height: math.unit(500, "meters")
  12348. },
  12349. {
  12350. name: "Megamacro",
  12351. height: math.unit(2, "km")
  12352. },
  12353. ]
  12354. ))
  12355. characterMakers.push(() => makeCharacter(
  12356. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12357. {
  12358. front: {
  12359. height: math.unit(185, "cm"),
  12360. weight: math.unit(68, "kg"),
  12361. name: "Front",
  12362. image: {
  12363. source: "./media/characters/kauko/front.svg",
  12364. extra: 1455 / 1421,
  12365. bottom: 0.03
  12366. }
  12367. },
  12368. back: {
  12369. height: math.unit(185, "cm"),
  12370. weight: math.unit(68, "kg"),
  12371. name: "Back",
  12372. image: {
  12373. source: "./media/characters/kauko/back.svg",
  12374. extra: 1455 / 1421,
  12375. bottom: 0.004
  12376. }
  12377. },
  12378. },
  12379. [
  12380. {
  12381. name: "Normal",
  12382. height: math.unit(185, "cm"),
  12383. default: true
  12384. },
  12385. ]
  12386. ))
  12387. characterMakers.push(() => makeCharacter(
  12388. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12389. {
  12390. front: {
  12391. height: math.unit(6, "feet"),
  12392. weight: math.unit(150, "kg"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/varg/front.svg",
  12396. extra: 1108 / 1018,
  12397. bottom: 0.0375
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Normal",
  12404. height: math.unit(5, "meters")
  12405. },
  12406. {
  12407. name: "Macro",
  12408. height: math.unit(200, "meters")
  12409. },
  12410. {
  12411. name: "Megamacro",
  12412. height: math.unit(20, "kilometers")
  12413. },
  12414. {
  12415. name: "True Size",
  12416. height: math.unit(211, "km"),
  12417. default: true
  12418. },
  12419. {
  12420. name: "Gigamacro",
  12421. height: math.unit(1000, "km")
  12422. },
  12423. {
  12424. name: "Gigamacro+",
  12425. height: math.unit(8000, "km")
  12426. },
  12427. {
  12428. name: "Teramacro",
  12429. height: math.unit(1000000, "km")
  12430. },
  12431. ]
  12432. ))
  12433. characterMakers.push(() => makeCharacter(
  12434. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12435. {
  12436. front: {
  12437. height: math.unit(7 + 7 / 12, "feet"),
  12438. weight: math.unit(267, "lb"),
  12439. name: "Front",
  12440. image: {
  12441. source: "./media/characters/dayza/front.svg",
  12442. extra: 1262 / 1200,
  12443. bottom: 0.035
  12444. }
  12445. },
  12446. side: {
  12447. height: math.unit(7 + 7 / 12, "feet"),
  12448. weight: math.unit(267, "lb"),
  12449. name: "Side",
  12450. image: {
  12451. source: "./media/characters/dayza/side.svg",
  12452. extra: 1295 / 1245,
  12453. bottom: 0.05
  12454. }
  12455. },
  12456. back: {
  12457. height: math.unit(7 + 7 / 12, "feet"),
  12458. weight: math.unit(267, "lb"),
  12459. name: "Back",
  12460. image: {
  12461. source: "./media/characters/dayza/back.svg",
  12462. extra: 1241 / 1170
  12463. }
  12464. },
  12465. },
  12466. [
  12467. {
  12468. name: "Normal",
  12469. height: math.unit(7 + 7 / 12, "feet"),
  12470. default: true
  12471. },
  12472. {
  12473. name: "Macro",
  12474. height: math.unit(155, "feet")
  12475. },
  12476. ]
  12477. ))
  12478. characterMakers.push(() => makeCharacter(
  12479. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12480. {
  12481. front: {
  12482. height: math.unit(6 + 5 / 12, "feet"),
  12483. weight: math.unit(160, "lb"),
  12484. name: "Front",
  12485. image: {
  12486. source: "./media/characters/xanthos/front.svg",
  12487. extra: 1,
  12488. bottom: 0.04
  12489. }
  12490. },
  12491. back: {
  12492. height: math.unit(6 + 5 / 12, "feet"),
  12493. weight: math.unit(160, "lb"),
  12494. name: "Back",
  12495. image: {
  12496. source: "./media/characters/xanthos/back.svg",
  12497. extra: 1,
  12498. bottom: 0.03
  12499. }
  12500. },
  12501. hand: {
  12502. height: math.unit(0.928, "feet"),
  12503. name: "Hand",
  12504. image: {
  12505. source: "./media/characters/xanthos/hand.svg"
  12506. }
  12507. },
  12508. foot: {
  12509. height: math.unit(1.286, "feet"),
  12510. name: "Foot",
  12511. image: {
  12512. source: "./media/characters/xanthos/foot.svg"
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(6 + 5 / 12, "feet"),
  12520. default: true
  12521. },
  12522. {
  12523. name: "Normal+",
  12524. height: math.unit(6, "meters")
  12525. },
  12526. {
  12527. name: "Macro",
  12528. height: math.unit(40, "feet")
  12529. },
  12530. {
  12531. name: "Macro+",
  12532. height: math.unit(200, "meters")
  12533. },
  12534. {
  12535. name: "Megamacro",
  12536. height: math.unit(20, "km")
  12537. },
  12538. {
  12539. name: "Megamacro+",
  12540. height: math.unit(100, "km")
  12541. },
  12542. ]
  12543. ))
  12544. characterMakers.push(() => makeCharacter(
  12545. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12546. {
  12547. front: {
  12548. height: math.unit(6 + 3 / 12, "feet"),
  12549. weight: math.unit(215, "lb"),
  12550. name: "Front",
  12551. image: {
  12552. source: "./media/characters/grynn/front.svg",
  12553. extra: 4627 / 4209,
  12554. bottom: 0.047
  12555. }
  12556. },
  12557. },
  12558. [
  12559. {
  12560. name: "Micro",
  12561. height: math.unit(6, "inches")
  12562. },
  12563. {
  12564. name: "Normal",
  12565. height: math.unit(6 + 3 / 12, "feet"),
  12566. default: true
  12567. },
  12568. {
  12569. name: "Big",
  12570. height: math.unit(104, "feet")
  12571. },
  12572. {
  12573. name: "Macro",
  12574. height: math.unit(944, "feet")
  12575. },
  12576. {
  12577. name: "Macro+",
  12578. height: math.unit(9480, "feet")
  12579. },
  12580. {
  12581. name: "Megamacro",
  12582. height: math.unit(78752, "feet")
  12583. },
  12584. {
  12585. name: "Megamacro+",
  12586. height: math.unit(630128, "feet")
  12587. },
  12588. {
  12589. name: "Megamacro++",
  12590. height: math.unit(3150695, "feet")
  12591. },
  12592. ]
  12593. ))
  12594. characterMakers.push(() => makeCharacter(
  12595. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12596. {
  12597. front: {
  12598. height: math.unit(7 + 5 / 12, "feet"),
  12599. weight: math.unit(450, "lb"),
  12600. name: "Front",
  12601. image: {
  12602. source: "./media/characters/mocha-aura/front.svg",
  12603. extra: 1907 / 1817,
  12604. bottom: 0.04
  12605. }
  12606. },
  12607. back: {
  12608. height: math.unit(7 + 5 / 12, "feet"),
  12609. weight: math.unit(450, "lb"),
  12610. name: "Back",
  12611. image: {
  12612. source: "./media/characters/mocha-aura/back.svg",
  12613. extra: 1900 / 1825,
  12614. bottom: 0.045
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Nano",
  12621. height: math.unit(1, "nm")
  12622. },
  12623. {
  12624. name: "Megamicro",
  12625. height: math.unit(1, "mm")
  12626. },
  12627. {
  12628. name: "Micro",
  12629. height: math.unit(3, "inches")
  12630. },
  12631. {
  12632. name: "Normal",
  12633. height: math.unit(7 + 5 / 12, "feet"),
  12634. default: true
  12635. },
  12636. {
  12637. name: "Macro",
  12638. height: math.unit(30, "feet")
  12639. },
  12640. {
  12641. name: "Megamacro",
  12642. height: math.unit(3500, "feet")
  12643. },
  12644. {
  12645. name: "Teramacro",
  12646. height: math.unit(500000, "miles")
  12647. },
  12648. {
  12649. name: "Petamacro",
  12650. height: math.unit(50000000000000000, "parsecs")
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12656. {
  12657. front: {
  12658. height: math.unit(6, "feet"),
  12659. weight: math.unit(150, "lb"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/ilisha-devya/front.svg",
  12663. extra: 1,
  12664. bottom: 0.175
  12665. }
  12666. },
  12667. back: {
  12668. height: math.unit(6, "feet"),
  12669. weight: math.unit(150, "lb"),
  12670. name: "Back",
  12671. image: {
  12672. source: "./media/characters/ilisha-devya/back.svg",
  12673. extra: 1,
  12674. bottom: 0.015
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Macro",
  12681. height: math.unit(500, "feet"),
  12682. default: true
  12683. },
  12684. {
  12685. name: "Megamacro",
  12686. height: math.unit(10, "miles")
  12687. },
  12688. {
  12689. name: "Gigamacro",
  12690. height: math.unit(100000, "miles")
  12691. },
  12692. {
  12693. name: "Examacro",
  12694. height: math.unit(1e9, "lightyears")
  12695. },
  12696. {
  12697. name: "Omniversal",
  12698. height: math.unit(1e33, "lightyears")
  12699. },
  12700. {
  12701. name: "Beyond Infinite",
  12702. height: math.unit(1e100, "lightyears")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12708. {
  12709. Side: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(150, "lb"),
  12712. name: "Side",
  12713. image: {
  12714. source: "./media/characters/mira/side.svg",
  12715. extra: 900 / 799,
  12716. bottom: 0.02
  12717. }
  12718. },
  12719. },
  12720. [
  12721. {
  12722. name: "Human Size",
  12723. height: math.unit(6, "feet")
  12724. },
  12725. {
  12726. name: "Macro",
  12727. height: math.unit(100, "feet"),
  12728. default: true
  12729. },
  12730. {
  12731. name: "Megamacro",
  12732. height: math.unit(10, "miles")
  12733. },
  12734. {
  12735. name: "Gigamacro",
  12736. height: math.unit(25000, "miles")
  12737. },
  12738. {
  12739. name: "Teramacro",
  12740. height: math.unit(300, "AU")
  12741. },
  12742. {
  12743. name: "Full Size",
  12744. height: math.unit(4.5e10, "lightyears")
  12745. },
  12746. ]
  12747. ))
  12748. characterMakers.push(() => makeCharacter(
  12749. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12750. {
  12751. front: {
  12752. height: math.unit(6, "feet"),
  12753. weight: math.unit(150, "lb"),
  12754. name: "Front",
  12755. image: {
  12756. source: "./media/characters/holly/front.svg",
  12757. extra: 639 / 606
  12758. }
  12759. },
  12760. back: {
  12761. height: math.unit(6, "feet"),
  12762. weight: math.unit(150, "lb"),
  12763. name: "Back",
  12764. image: {
  12765. source: "./media/characters/holly/back.svg",
  12766. extra: 623 / 598
  12767. }
  12768. },
  12769. frontWorking: {
  12770. height: math.unit(6, "feet"),
  12771. weight: math.unit(150, "lb"),
  12772. name: "Front (Working)",
  12773. image: {
  12774. source: "./media/characters/holly/front-working.svg",
  12775. extra: 607 / 577,
  12776. bottom: 0.048
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Normal",
  12783. height: math.unit(12 + 3 / 12, "feet"),
  12784. default: true
  12785. },
  12786. ]
  12787. ))
  12788. characterMakers.push(() => makeCharacter(
  12789. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12790. {
  12791. front: {
  12792. height: math.unit(6, "feet"),
  12793. weight: math.unit(150, "lb"),
  12794. name: "Front",
  12795. image: {
  12796. source: "./media/characters/porter/front.svg",
  12797. extra: 1,
  12798. bottom: 0.01
  12799. }
  12800. },
  12801. frontRobes: {
  12802. height: math.unit(6, "feet"),
  12803. weight: math.unit(150, "lb"),
  12804. name: "Front (Robes)",
  12805. image: {
  12806. source: "./media/characters/porter/front-robes.svg",
  12807. extra: 1.01,
  12808. bottom: 0.01
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Normal",
  12815. height: math.unit(11 + 9 / 12, "feet"),
  12816. default: true
  12817. },
  12818. ]
  12819. ))
  12820. characterMakers.push(() => makeCharacter(
  12821. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12822. {
  12823. legendary: {
  12824. height: math.unit(6, "feet"),
  12825. weight: math.unit(150, "lb"),
  12826. name: "Legendary",
  12827. image: {
  12828. source: "./media/characters/lucy/legendary.svg",
  12829. extra: 1355 / 1100,
  12830. bottom: 0.045
  12831. }
  12832. },
  12833. },
  12834. [
  12835. {
  12836. name: "Legendary",
  12837. height: math.unit(86882 * 2, "miles"),
  12838. default: true
  12839. },
  12840. ]
  12841. ))
  12842. characterMakers.push(() => makeCharacter(
  12843. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12844. {
  12845. front: {
  12846. height: math.unit(6, "feet"),
  12847. weight: math.unit(150, "lb"),
  12848. name: "Front",
  12849. image: {
  12850. source: "./media/characters/drusilla/front.svg",
  12851. extra: 678 / 635,
  12852. bottom: 0.03
  12853. }
  12854. },
  12855. back: {
  12856. height: math.unit(6, "feet"),
  12857. weight: math.unit(150, "lb"),
  12858. name: "Back",
  12859. image: {
  12860. source: "./media/characters/drusilla/back.svg",
  12861. extra: 678 / 635,
  12862. bottom: 0.005
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Macro",
  12869. height: math.unit(100, "feet")
  12870. },
  12871. {
  12872. name: "Canon Height",
  12873. height: math.unit(2000, "feet"),
  12874. default: true
  12875. },
  12876. ]
  12877. ))
  12878. characterMakers.push(() => makeCharacter(
  12879. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12880. {
  12881. front: {
  12882. height: math.unit(6, "feet"),
  12883. weight: math.unit(180, "lb"),
  12884. name: "Front",
  12885. image: {
  12886. source: "./media/characters/renard-thatch/front.svg",
  12887. extra: 2411 / 2275,
  12888. bottom: 0.01
  12889. }
  12890. },
  12891. frontPosing: {
  12892. height: math.unit(6, "feet"),
  12893. weight: math.unit(180, "lb"),
  12894. name: "Front (Posing)",
  12895. image: {
  12896. source: "./media/characters/renard-thatch/front-posing.svg",
  12897. extra: 2381 / 2261,
  12898. bottom: 0.01
  12899. }
  12900. },
  12901. back: {
  12902. height: math.unit(6, "feet"),
  12903. weight: math.unit(180, "lb"),
  12904. name: "Back",
  12905. image: {
  12906. source: "./media/characters/renard-thatch/back.svg",
  12907. extra: 2428 / 2288
  12908. }
  12909. },
  12910. },
  12911. [
  12912. {
  12913. name: "Micro",
  12914. height: math.unit(3, "inches")
  12915. },
  12916. {
  12917. name: "Default",
  12918. height: math.unit(6, "feet"),
  12919. default: true
  12920. },
  12921. {
  12922. name: "Macro",
  12923. height: math.unit(75, "feet")
  12924. },
  12925. ]
  12926. ))
  12927. characterMakers.push(() => makeCharacter(
  12928. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12929. {
  12930. front: {
  12931. height: math.unit(1450, "feet"),
  12932. weight: math.unit(1.21e6, "tons"),
  12933. name: "Front",
  12934. image: {
  12935. source: "./media/characters/sekvra/front.svg",
  12936. extra: 1,
  12937. bottom: 0.03
  12938. }
  12939. },
  12940. frontClothed: {
  12941. height: math.unit(1450, "feet"),
  12942. weight: math.unit(1.21e6, "tons"),
  12943. name: "Front (Clothed)",
  12944. image: {
  12945. source: "./media/characters/sekvra/front-clothed.svg",
  12946. extra: 1,
  12947. bottom: 0.03
  12948. }
  12949. },
  12950. side: {
  12951. height: math.unit(1450, "feet"),
  12952. weight: math.unit(1.21e6, "tons"),
  12953. name: "Side",
  12954. image: {
  12955. source: "./media/characters/sekvra/side.svg",
  12956. extra: 1,
  12957. bottom: 0.025
  12958. }
  12959. },
  12960. back: {
  12961. height: math.unit(1450, "feet"),
  12962. weight: math.unit(1.21e6, "tons"),
  12963. name: "Back",
  12964. image: {
  12965. source: "./media/characters/sekvra/back.svg",
  12966. extra: 1,
  12967. bottom: 0.005
  12968. }
  12969. },
  12970. },
  12971. [
  12972. {
  12973. name: "Macro",
  12974. height: math.unit(1450, "feet"),
  12975. default: true
  12976. },
  12977. {
  12978. name: "Megamacro",
  12979. height: math.unit(15000, "feet")
  12980. },
  12981. ]
  12982. ))
  12983. characterMakers.push(() => makeCharacter(
  12984. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12985. {
  12986. front: {
  12987. height: math.unit(6, "feet"),
  12988. weight: math.unit(150, "lb"),
  12989. name: "Front",
  12990. image: {
  12991. source: "./media/characters/carmine/front.svg",
  12992. extra: 1,
  12993. bottom: 0.035
  12994. }
  12995. },
  12996. frontArmor: {
  12997. height: math.unit(6, "feet"),
  12998. weight: math.unit(150, "lb"),
  12999. name: "Front (Armor)",
  13000. image: {
  13001. source: "./media/characters/carmine/front-armor.svg",
  13002. extra: 1,
  13003. bottom: 0.035
  13004. }
  13005. },
  13006. },
  13007. [
  13008. {
  13009. name: "Large",
  13010. height: math.unit(1, "mile")
  13011. },
  13012. {
  13013. name: "Huge",
  13014. height: math.unit(40, "miles"),
  13015. default: true
  13016. },
  13017. {
  13018. name: "Colossal",
  13019. height: math.unit(2500, "miles")
  13020. },
  13021. ]
  13022. ))
  13023. characterMakers.push(() => makeCharacter(
  13024. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13025. {
  13026. front: {
  13027. height: math.unit(6, "feet"),
  13028. weight: math.unit(150, "lb"),
  13029. name: "Front",
  13030. image: {
  13031. source: "./media/characters/elyssia/front.svg",
  13032. extra: 2201 / 2035,
  13033. bottom: 0.05
  13034. }
  13035. },
  13036. frontClothed: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(150, "lb"),
  13039. name: "Front (Clothed)",
  13040. image: {
  13041. source: "./media/characters/elyssia/front-clothed.svg",
  13042. extra: 2201 / 2035,
  13043. bottom: 0.05
  13044. }
  13045. },
  13046. back: {
  13047. height: math.unit(6, "feet"),
  13048. weight: math.unit(150, "lb"),
  13049. name: "Back",
  13050. image: {
  13051. source: "./media/characters/elyssia/back.svg",
  13052. extra: 2201 / 2035,
  13053. bottom: 0.013
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Smaller",
  13060. height: math.unit(150, "feet")
  13061. },
  13062. {
  13063. name: "Standard",
  13064. height: math.unit(1400, "feet"),
  13065. default: true
  13066. },
  13067. {
  13068. name: "Distracted",
  13069. height: math.unit(15000, "feet")
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13075. {
  13076. front: {
  13077. height: math.unit(7 + 4 / 12, "feet"),
  13078. weight: math.unit(500, "lb"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/geno-maxwell/front.svg",
  13082. extra: 2207 / 2040,
  13083. bottom: 0.015
  13084. }
  13085. },
  13086. },
  13087. [
  13088. {
  13089. name: "Micro",
  13090. height: math.unit(3, "inches")
  13091. },
  13092. {
  13093. name: "Normal",
  13094. height: math.unit(7 + 4 / 12, "feet"),
  13095. default: true
  13096. },
  13097. {
  13098. name: "Macro",
  13099. height: math.unit(220, "feet")
  13100. },
  13101. {
  13102. name: "Megamacro",
  13103. height: math.unit(11, "miles")
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13109. {
  13110. front: {
  13111. height: math.unit(7 + 4 / 12, "feet"),
  13112. weight: math.unit(500, "lb"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/regena-maxwell/front.svg",
  13116. extra: 3115 / 2770,
  13117. bottom: 0.02
  13118. }
  13119. },
  13120. },
  13121. [
  13122. {
  13123. name: "Normal",
  13124. height: math.unit(7 + 4 / 12, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(220, "feet")
  13130. },
  13131. {
  13132. name: "Megamacro",
  13133. height: math.unit(11, "miles")
  13134. },
  13135. ]
  13136. ))
  13137. characterMakers.push(() => makeCharacter(
  13138. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13139. {
  13140. front: {
  13141. height: math.unit(6, "feet"),
  13142. weight: math.unit(150, "lb"),
  13143. name: "Front",
  13144. image: {
  13145. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13146. extra: 860 / 690,
  13147. bottom: 0.03
  13148. }
  13149. },
  13150. },
  13151. [
  13152. {
  13153. name: "Normal",
  13154. height: math.unit(1.7, "meters"),
  13155. default: true
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(6, "feet"),
  13164. weight: math.unit(150, "lb"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/quilly/front.svg",
  13168. extra: 890 / 776
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Gigamacro",
  13175. height: math.unit(404090, "miles"),
  13176. default: true
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13182. {
  13183. front: {
  13184. height: math.unit(7 + 8 / 12, "feet"),
  13185. weight: math.unit(350, "lb"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/tempest/front.svg",
  13189. extra: 1175 / 1086,
  13190. bottom: 0.02
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(7 + 8 / 12, "feet"),
  13198. default: true
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13204. {
  13205. side: {
  13206. height: math.unit(4 + 5 / 12, "feet"),
  13207. weight: math.unit(80, "lb"),
  13208. name: "Side",
  13209. image: {
  13210. source: "./media/characters/rodger/side.svg",
  13211. extra: 1235 / 1118
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Micro",
  13218. height: math.unit(1, "inch")
  13219. },
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(4 + 5 / 12, "feet"),
  13223. default: true
  13224. },
  13225. {
  13226. name: "Macro",
  13227. height: math.unit(120, "feet")
  13228. },
  13229. ]
  13230. ))
  13231. characterMakers.push(() => makeCharacter(
  13232. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13233. {
  13234. front: {
  13235. height: math.unit(6, "feet"),
  13236. weight: math.unit(150, "lb"),
  13237. name: "Front",
  13238. image: {
  13239. source: "./media/characters/danyel/front.svg",
  13240. extra: 1185 / 1123,
  13241. bottom: 0.05
  13242. }
  13243. },
  13244. },
  13245. [
  13246. {
  13247. name: "Shrunken",
  13248. height: math.unit(0.5, "mm")
  13249. },
  13250. {
  13251. name: "Micro",
  13252. height: math.unit(1, "mm"),
  13253. default: true
  13254. },
  13255. {
  13256. name: "Upsized",
  13257. height: math.unit(5 + 5 / 12, "feet")
  13258. },
  13259. ]
  13260. ))
  13261. characterMakers.push(() => makeCharacter(
  13262. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13263. {
  13264. front: {
  13265. height: math.unit(5 + 6 / 12, "feet"),
  13266. weight: math.unit(200, "lb"),
  13267. name: "Front",
  13268. image: {
  13269. source: "./media/characters/vivian-bijoux/front.svg",
  13270. extra: 1,
  13271. bottom: 0.072
  13272. }
  13273. },
  13274. },
  13275. [
  13276. {
  13277. name: "Normal",
  13278. height: math.unit(5 + 6 / 12, "feet"),
  13279. default: true
  13280. },
  13281. {
  13282. name: "Bad Dream",
  13283. height: math.unit(500, "feet")
  13284. },
  13285. {
  13286. name: "Nightmare",
  13287. height: math.unit(500, "miles")
  13288. },
  13289. ]
  13290. ))
  13291. characterMakers.push(() => makeCharacter(
  13292. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13293. {
  13294. front: {
  13295. height: math.unit(6 + 1 / 12, "feet"),
  13296. weight: math.unit(260, "lb"),
  13297. name: "Front",
  13298. image: {
  13299. source: "./media/characters/zeta/front.svg",
  13300. extra: 1968 / 1889,
  13301. bottom: 0.06
  13302. }
  13303. },
  13304. back: {
  13305. height: math.unit(6 + 1 / 12, "feet"),
  13306. weight: math.unit(260, "lb"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/zeta/back.svg",
  13310. extra: 1944 / 1858,
  13311. bottom: 0.03
  13312. }
  13313. },
  13314. hand: {
  13315. height: math.unit(1.112, "feet"),
  13316. name: "Hand",
  13317. image: {
  13318. source: "./media/characters/zeta/hand.svg"
  13319. }
  13320. },
  13321. foot: {
  13322. height: math.unit(1.48, "feet"),
  13323. name: "Foot",
  13324. image: {
  13325. source: "./media/characters/zeta/foot.svg"
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Micro",
  13332. height: math.unit(6, "inches")
  13333. },
  13334. {
  13335. name: "Normal",
  13336. height: math.unit(6 + 1 / 12, "feet"),
  13337. default: true
  13338. },
  13339. {
  13340. name: "Macro",
  13341. height: math.unit(20, "feet")
  13342. },
  13343. ]
  13344. ))
  13345. characterMakers.push(() => makeCharacter(
  13346. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13347. {
  13348. front: {
  13349. height: math.unit(6, "feet"),
  13350. weight: math.unit(150, "lb"),
  13351. name: "Front",
  13352. image: {
  13353. source: "./media/characters/jamie-larsen/front.svg",
  13354. extra: 962 / 933,
  13355. bottom: 0.02
  13356. }
  13357. },
  13358. back: {
  13359. height: math.unit(6, "feet"),
  13360. weight: math.unit(150, "lb"),
  13361. name: "Back",
  13362. image: {
  13363. source: "./media/characters/jamie-larsen/back.svg",
  13364. extra: 997 / 946
  13365. }
  13366. },
  13367. },
  13368. [
  13369. {
  13370. name: "Macro",
  13371. height: math.unit(28 + 7 / 12, "feet"),
  13372. default: true
  13373. },
  13374. {
  13375. name: "Macro+",
  13376. height: math.unit(180, "feet")
  13377. },
  13378. {
  13379. name: "Megamacro",
  13380. height: math.unit(10, "miles")
  13381. },
  13382. {
  13383. name: "Gigamacro",
  13384. height: math.unit(200000, "miles")
  13385. },
  13386. ]
  13387. ))
  13388. characterMakers.push(() => makeCharacter(
  13389. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13390. {
  13391. front: {
  13392. height: math.unit(6, "feet"),
  13393. weight: math.unit(120, "lb"),
  13394. name: "Front",
  13395. image: {
  13396. source: "./media/characters/vance/front.svg",
  13397. extra: 1980 / 1890,
  13398. bottom: 0.09
  13399. }
  13400. },
  13401. back: {
  13402. height: math.unit(6, "feet"),
  13403. weight: math.unit(120, "lb"),
  13404. name: "Back",
  13405. image: {
  13406. source: "./media/characters/vance/back.svg",
  13407. extra: 2081 / 1994,
  13408. bottom: 0.014
  13409. }
  13410. },
  13411. hand: {
  13412. height: math.unit(0.88, "feet"),
  13413. name: "Hand",
  13414. image: {
  13415. source: "./media/characters/vance/hand.svg"
  13416. }
  13417. },
  13418. foot: {
  13419. height: math.unit(0.64, "feet"),
  13420. name: "Foot",
  13421. image: {
  13422. source: "./media/characters/vance/foot.svg"
  13423. }
  13424. },
  13425. },
  13426. [
  13427. {
  13428. name: "Small",
  13429. height: math.unit(90, "feet"),
  13430. default: true
  13431. },
  13432. {
  13433. name: "Macro",
  13434. height: math.unit(100, "meters")
  13435. },
  13436. {
  13437. name: "Megamacro",
  13438. height: math.unit(15, "miles")
  13439. },
  13440. ]
  13441. ))
  13442. characterMakers.push(() => makeCharacter(
  13443. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13444. {
  13445. front: {
  13446. height: math.unit(6, "feet"),
  13447. weight: math.unit(180, "lb"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/xochitl/front.svg",
  13451. extra: 2297 / 2261,
  13452. bottom: 0.065
  13453. }
  13454. },
  13455. back: {
  13456. height: math.unit(6, "feet"),
  13457. weight: math.unit(180, "lb"),
  13458. name: "Back",
  13459. image: {
  13460. source: "./media/characters/xochitl/back.svg",
  13461. extra: 2386 / 2354,
  13462. bottom: 0.01
  13463. }
  13464. },
  13465. foot: {
  13466. height: math.unit(6 / 5 * 1.15, "feet"),
  13467. weight: math.unit(150, "lb"),
  13468. name: "Foot",
  13469. image: {
  13470. source: "./media/characters/xochitl/foot.svg"
  13471. }
  13472. },
  13473. },
  13474. [
  13475. {
  13476. name: "Macro",
  13477. height: math.unit(80, "feet")
  13478. },
  13479. {
  13480. name: "Macro+",
  13481. height: math.unit(400, "feet"),
  13482. default: true
  13483. },
  13484. {
  13485. name: "Gigamacro",
  13486. height: math.unit(80000, "miles")
  13487. },
  13488. {
  13489. name: "Gigamacro+",
  13490. height: math.unit(400000, "miles")
  13491. },
  13492. {
  13493. name: "Teramacro",
  13494. height: math.unit(300, "AU")
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13500. {
  13501. front: {
  13502. height: math.unit(6, "feet"),
  13503. weight: math.unit(150, "lb"),
  13504. name: "Front",
  13505. image: {
  13506. source: "./media/characters/vincent/front.svg",
  13507. extra: 1130 / 1080,
  13508. bottom: 0.055
  13509. }
  13510. },
  13511. beak: {
  13512. height: math.unit(6 * 0.1, "feet"),
  13513. name: "Beak",
  13514. image: {
  13515. source: "./media/characters/vincent/beak.svg"
  13516. }
  13517. },
  13518. hand: {
  13519. height: math.unit(6 * 0.85, "feet"),
  13520. weight: math.unit(150, "lb"),
  13521. name: "Hand",
  13522. image: {
  13523. source: "./media/characters/vincent/hand.svg"
  13524. }
  13525. },
  13526. foot: {
  13527. height: math.unit(6 * 0.19, "feet"),
  13528. weight: math.unit(150, "lb"),
  13529. name: "Foot",
  13530. image: {
  13531. source: "./media/characters/vincent/foot.svg"
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Base",
  13538. height: math.unit(6 + 5 / 12, "feet"),
  13539. default: true
  13540. },
  13541. {
  13542. name: "Macro",
  13543. height: math.unit(300, "feet")
  13544. },
  13545. {
  13546. name: "Megamacro",
  13547. height: math.unit(2, "miles")
  13548. },
  13549. {
  13550. name: "Gigamacro",
  13551. height: math.unit(1000, "miles")
  13552. },
  13553. ]
  13554. ))
  13555. characterMakers.push(() => makeCharacter(
  13556. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13557. {
  13558. front: {
  13559. height: math.unit(2, "meters"),
  13560. weight: math.unit(500, "kg"),
  13561. name: "Front",
  13562. image: {
  13563. source: "./media/characters/coatl/front.svg",
  13564. extra: 3948 / 3500,
  13565. bottom: 0.082
  13566. }
  13567. },
  13568. },
  13569. [
  13570. {
  13571. name: "Normal",
  13572. height: math.unit(4, "meters")
  13573. },
  13574. {
  13575. name: "Macro",
  13576. height: math.unit(100, "meters"),
  13577. default: true
  13578. },
  13579. {
  13580. name: "Macro+",
  13581. height: math.unit(300, "meters")
  13582. },
  13583. {
  13584. name: "Megamacro",
  13585. height: math.unit(3, "gigameters")
  13586. },
  13587. {
  13588. name: "Megamacro+",
  13589. height: math.unit(300, "terameters")
  13590. },
  13591. {
  13592. name: "Megamacro++",
  13593. height: math.unit(3, "lightyears")
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13599. {
  13600. front: {
  13601. height: math.unit(6, "feet"),
  13602. weight: math.unit(50, "kg"),
  13603. name: "front",
  13604. image: {
  13605. source: "./media/characters/shiroryu/front.svg",
  13606. extra: 1990 / 1935
  13607. }
  13608. },
  13609. },
  13610. [
  13611. {
  13612. name: "Mortal Mingling",
  13613. height: math.unit(3, "meters")
  13614. },
  13615. {
  13616. name: "Kaiju-ish",
  13617. height: math.unit(250, "meters")
  13618. },
  13619. {
  13620. name: "Somewhat Godly",
  13621. height: math.unit(400, "km"),
  13622. default: true
  13623. },
  13624. {
  13625. name: "Planetary",
  13626. height: math.unit(300, "megameters")
  13627. },
  13628. {
  13629. name: "Galaxy-dwarfing",
  13630. height: math.unit(450, "kiloparsecs")
  13631. },
  13632. {
  13633. name: "Universe Eater",
  13634. height: math.unit(150, "gigaparsecs")
  13635. },
  13636. {
  13637. name: "Almost Immeasurable",
  13638. height: math.unit(1.3e266, "yottaparsecs")
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(150, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/umeko/front.svg",
  13651. extra: 1,
  13652. bottom: 0.019
  13653. }
  13654. },
  13655. frontArmored: {
  13656. height: math.unit(6, "feet"),
  13657. weight: math.unit(150, "lb"),
  13658. name: "Front (Armored)",
  13659. image: {
  13660. source: "./media/characters/umeko/front-armored.svg",
  13661. extra: 1,
  13662. bottom: 0.021
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Macro",
  13669. height: math.unit(220, "feet"),
  13670. default: true
  13671. },
  13672. {
  13673. name: "Guardian Dragon",
  13674. height: math.unit(50, "miles")
  13675. },
  13676. {
  13677. name: "Cosmic",
  13678. height: math.unit(800000, "miles")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/cassidy/front.svg",
  13691. extra: 1,
  13692. bottom: 0.043
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Canon Height",
  13699. height: math.unit(120, "feet"),
  13700. default: true
  13701. },
  13702. {
  13703. name: "Macro+",
  13704. height: math.unit(400, "feet")
  13705. },
  13706. {
  13707. name: "Macro++",
  13708. height: math.unit(4000, "feet")
  13709. },
  13710. {
  13711. name: "Megamacro",
  13712. height: math.unit(3, "miles")
  13713. },
  13714. ]
  13715. ))
  13716. characterMakers.push(() => makeCharacter(
  13717. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13718. {
  13719. front: {
  13720. height: math.unit(6, "feet"),
  13721. weight: math.unit(150, "lb"),
  13722. name: "Front",
  13723. image: {
  13724. source: "./media/characters/isaac/front.svg",
  13725. extra: 896 / 815,
  13726. bottom: 0.11
  13727. }
  13728. },
  13729. },
  13730. [
  13731. {
  13732. name: "Human Size",
  13733. height: math.unit(8, "feet"),
  13734. default: true
  13735. },
  13736. {
  13737. name: "Macro",
  13738. height: math.unit(400, "feet")
  13739. },
  13740. {
  13741. name: "Megamacro",
  13742. height: math.unit(50, "miles")
  13743. },
  13744. {
  13745. name: "Canon Height",
  13746. height: math.unit(200, "AU")
  13747. },
  13748. ]
  13749. ))
  13750. characterMakers.push(() => makeCharacter(
  13751. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13752. {
  13753. front: {
  13754. height: math.unit(6, "feet"),
  13755. weight: math.unit(72, "kg"),
  13756. name: "Front",
  13757. image: {
  13758. source: "./media/characters/sleekit/front.svg",
  13759. extra: 4693 / 4487,
  13760. bottom: 0.012
  13761. }
  13762. },
  13763. },
  13764. [
  13765. {
  13766. name: "Minimum Height",
  13767. height: math.unit(10, "meters")
  13768. },
  13769. {
  13770. name: "Smaller",
  13771. height: math.unit(25, "meters")
  13772. },
  13773. {
  13774. name: "Larger",
  13775. height: math.unit(38, "meters"),
  13776. default: true
  13777. },
  13778. {
  13779. name: "Maximum height",
  13780. height: math.unit(100, "meters")
  13781. },
  13782. ]
  13783. ))
  13784. characterMakers.push(() => makeCharacter(
  13785. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13786. {
  13787. front: {
  13788. height: math.unit(6, "feet"),
  13789. weight: math.unit(150, "lb"),
  13790. name: "Front",
  13791. image: {
  13792. source: "./media/characters/nillia/front.svg",
  13793. extra: 2195 / 2037,
  13794. bottom: 0.005
  13795. }
  13796. },
  13797. back: {
  13798. height: math.unit(6, "feet"),
  13799. weight: math.unit(150, "lb"),
  13800. name: "Back",
  13801. image: {
  13802. source: "./media/characters/nillia/back.svg",
  13803. extra: 2195 / 2037,
  13804. bottom: 0.005
  13805. }
  13806. },
  13807. },
  13808. [
  13809. {
  13810. name: "Canon Height",
  13811. height: math.unit(489, "feet"),
  13812. default: true
  13813. }
  13814. ]
  13815. ))
  13816. characterMakers.push(() => makeCharacter(
  13817. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13818. {
  13819. front: {
  13820. height: math.unit(6, "feet"),
  13821. weight: math.unit(150, "lb"),
  13822. name: "Front",
  13823. image: {
  13824. source: "./media/characters/mesmyriza/front.svg",
  13825. extra: 2067 / 1784,
  13826. bottom: 0.035
  13827. }
  13828. },
  13829. foot: {
  13830. height: math.unit(6 / (250 / 35), "feet"),
  13831. name: "Foot",
  13832. image: {
  13833. source: "./media/characters/mesmyriza/foot.svg"
  13834. }
  13835. },
  13836. },
  13837. [
  13838. {
  13839. name: "Macro",
  13840. height: math.unit(457, "meters"),
  13841. default: true
  13842. },
  13843. {
  13844. name: "Megamacro",
  13845. height: math.unit(8, "megameters")
  13846. },
  13847. ]
  13848. ))
  13849. characterMakers.push(() => makeCharacter(
  13850. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13851. {
  13852. front: {
  13853. height: math.unit(6, "feet"),
  13854. weight: math.unit(250, "lb"),
  13855. name: "Front",
  13856. image: {
  13857. source: "./media/characters/saudade/front.svg",
  13858. extra: 1172 / 1139,
  13859. bottom: 0.035
  13860. }
  13861. },
  13862. },
  13863. [
  13864. {
  13865. name: "Micro",
  13866. height: math.unit(3, "inches")
  13867. },
  13868. {
  13869. name: "Normal",
  13870. height: math.unit(6, "feet"),
  13871. default: true
  13872. },
  13873. {
  13874. name: "Macro",
  13875. height: math.unit(50, "feet")
  13876. },
  13877. {
  13878. name: "Megamacro",
  13879. height: math.unit(2800, "feet")
  13880. },
  13881. ]
  13882. ))
  13883. characterMakers.push(() => makeCharacter(
  13884. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13885. {
  13886. front: {
  13887. height: math.unit(5 + 4 / 12, "feet"),
  13888. weight: math.unit(100, "lb"),
  13889. name: "Front",
  13890. image: {
  13891. source: "./media/characters/keireer/front.svg",
  13892. extra: 716 / 666,
  13893. bottom: 0.05
  13894. }
  13895. },
  13896. },
  13897. [
  13898. {
  13899. name: "Normal",
  13900. height: math.unit(5 + 4 / 12, "feet"),
  13901. default: true
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13907. {
  13908. front: {
  13909. height: math.unit(6, "feet"),
  13910. weight: math.unit(90, "kg"),
  13911. name: "Front",
  13912. image: {
  13913. source: "./media/characters/mirja/front.svg",
  13914. extra: 1789 / 1683,
  13915. bottom: 0.05
  13916. }
  13917. },
  13918. frontDressed: {
  13919. height: math.unit(6, "feet"),
  13920. weight: math.unit(90, "lb"),
  13921. name: "Front (Dressed)",
  13922. image: {
  13923. source: "./media/characters/mirja/front-dressed.svg",
  13924. extra: 1789 / 1683,
  13925. bottom: 0.05
  13926. }
  13927. },
  13928. back: {
  13929. height: math.unit(6, "feet"),
  13930. weight: math.unit(90, "lb"),
  13931. name: "Back",
  13932. image: {
  13933. source: "./media/characters/mirja/back.svg",
  13934. extra: 953 / 917,
  13935. bottom: 0.017
  13936. }
  13937. },
  13938. },
  13939. [
  13940. {
  13941. name: "\"Incognito\"",
  13942. height: math.unit(3, "meters")
  13943. },
  13944. {
  13945. name: "Strolling Size",
  13946. height: math.unit(15, "km")
  13947. },
  13948. {
  13949. name: "Larger Strolling Size",
  13950. height: math.unit(400, "km")
  13951. },
  13952. {
  13953. name: "Preferred Size",
  13954. height: math.unit(5000, "km")
  13955. },
  13956. {
  13957. name: "True Size",
  13958. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13959. default: true
  13960. },
  13961. ]
  13962. ))
  13963. characterMakers.push(() => makeCharacter(
  13964. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13965. {
  13966. front: {
  13967. height: math.unit(15, "feet"),
  13968. weight: math.unit(880, "kg"),
  13969. name: "Front",
  13970. image: {
  13971. source: "./media/characters/nightraver/front.svg",
  13972. extra: 2444 / 2160,
  13973. bottom: 0.027
  13974. }
  13975. },
  13976. back: {
  13977. height: math.unit(15, "feet"),
  13978. weight: math.unit(880, "kg"),
  13979. name: "Back",
  13980. image: {
  13981. source: "./media/characters/nightraver/back.svg",
  13982. extra: 2309 / 2180,
  13983. bottom: 0.005
  13984. }
  13985. },
  13986. sole: {
  13987. height: math.unit(2.878, "feet"),
  13988. name: "Sole",
  13989. image: {
  13990. source: "./media/characters/nightraver/sole.svg"
  13991. }
  13992. },
  13993. foot: {
  13994. height: math.unit(2.285, "feet"),
  13995. name: "Foot",
  13996. image: {
  13997. source: "./media/characters/nightraver/foot.svg"
  13998. }
  13999. },
  14000. maw: {
  14001. height: math.unit(2.67, "feet"),
  14002. name: "Maw",
  14003. image: {
  14004. source: "./media/characters/nightraver/maw.svg"
  14005. }
  14006. },
  14007. },
  14008. [
  14009. {
  14010. name: "Micro",
  14011. height: math.unit(1, "cm")
  14012. },
  14013. {
  14014. name: "Normal",
  14015. height: math.unit(15, "feet"),
  14016. default: true
  14017. },
  14018. {
  14019. name: "Macro",
  14020. height: math.unit(300, "feet")
  14021. },
  14022. {
  14023. name: "Megamacro",
  14024. height: math.unit(300, "miles")
  14025. },
  14026. {
  14027. name: "Gigamacro",
  14028. height: math.unit(10000, "miles")
  14029. },
  14030. ]
  14031. ))
  14032. characterMakers.push(() => makeCharacter(
  14033. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14034. {
  14035. side: {
  14036. height: math.unit(2, "inches"),
  14037. weight: math.unit(5, "grams"),
  14038. name: "Side",
  14039. image: {
  14040. source: "./media/characters/arc/side.svg"
  14041. }
  14042. },
  14043. },
  14044. [
  14045. {
  14046. name: "Micro",
  14047. height: math.unit(2, "inches"),
  14048. default: true
  14049. },
  14050. ]
  14051. ))
  14052. characterMakers.push(() => makeCharacter(
  14053. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14054. {
  14055. front: {
  14056. height: math.unit(1.1938, "meters"),
  14057. weight: math.unit(54, "kg"),
  14058. name: "Front",
  14059. image: {
  14060. source: "./media/characters/nebula-shahar/front.svg",
  14061. extra: 1642 / 1436,
  14062. bottom: 0.06
  14063. }
  14064. },
  14065. },
  14066. [
  14067. {
  14068. name: "Megamicro",
  14069. height: math.unit(0.3, "mm")
  14070. },
  14071. {
  14072. name: "Micro",
  14073. height: math.unit(3, "cm")
  14074. },
  14075. {
  14076. name: "Normal",
  14077. height: math.unit(138, "cm"),
  14078. default: true
  14079. },
  14080. {
  14081. name: "Macro",
  14082. height: math.unit(30, "m")
  14083. },
  14084. ]
  14085. ))
  14086. characterMakers.push(() => makeCharacter(
  14087. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14088. {
  14089. front: {
  14090. height: math.unit(5.24, "feet"),
  14091. weight: math.unit(150, "lb"),
  14092. name: "Front",
  14093. image: {
  14094. source: "./media/characters/shayla/front.svg",
  14095. extra: 1512 / 1414,
  14096. bottom: 0.01
  14097. }
  14098. },
  14099. back: {
  14100. height: math.unit(5.24, "feet"),
  14101. weight: math.unit(150, "lb"),
  14102. name: "Back",
  14103. image: {
  14104. source: "./media/characters/shayla/back.svg",
  14105. extra: 1512 / 1414
  14106. }
  14107. },
  14108. hand: {
  14109. height: math.unit(0.7781496062992126, "feet"),
  14110. name: "Hand",
  14111. image: {
  14112. source: "./media/characters/shayla/hand.svg"
  14113. }
  14114. },
  14115. foot: {
  14116. height: math.unit(1.4206036745406823, "feet"),
  14117. name: "Foot",
  14118. image: {
  14119. source: "./media/characters/shayla/foot.svg"
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Micro",
  14126. height: math.unit(0.32, "feet")
  14127. },
  14128. {
  14129. name: "Normal",
  14130. height: math.unit(5.24, "feet"),
  14131. default: true
  14132. },
  14133. {
  14134. name: "Macro",
  14135. height: math.unit(492.12, "feet")
  14136. },
  14137. {
  14138. name: "Megamacro",
  14139. height: math.unit(186.41, "miles")
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14145. {
  14146. front: {
  14147. height: math.unit(2.2, "m"),
  14148. weight: math.unit(120, "kg"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/pia-jr/front.svg",
  14152. extra: 1000 / 970,
  14153. bottom: 0.035
  14154. }
  14155. },
  14156. hand: {
  14157. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14158. name: "Hand",
  14159. image: {
  14160. source: "./media/characters/pia-jr/hand.svg"
  14161. }
  14162. },
  14163. paw: {
  14164. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14165. name: "Paw",
  14166. image: {
  14167. source: "./media/characters/pia-jr/paw.svg"
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Micro",
  14174. height: math.unit(1.2, "cm")
  14175. },
  14176. {
  14177. name: "Normal",
  14178. height: math.unit(2.2, "m"),
  14179. default: true
  14180. },
  14181. {
  14182. name: "Macro",
  14183. height: math.unit(180, "m")
  14184. },
  14185. {
  14186. name: "Megamacro",
  14187. height: math.unit(420, "km")
  14188. },
  14189. ]
  14190. ))
  14191. characterMakers.push(() => makeCharacter(
  14192. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14193. {
  14194. front: {
  14195. height: math.unit(2, "m"),
  14196. weight: math.unit(115, "kg"),
  14197. name: "Front",
  14198. image: {
  14199. source: "./media/characters/pia-sr/front.svg",
  14200. extra: 760 / 730,
  14201. bottom: 0.015
  14202. }
  14203. },
  14204. back: {
  14205. height: math.unit(2, "m"),
  14206. weight: math.unit(115, "kg"),
  14207. name: "Back",
  14208. image: {
  14209. source: "./media/characters/pia-sr/back.svg",
  14210. extra: 760 / 730,
  14211. bottom: 0.01
  14212. }
  14213. },
  14214. hand: {
  14215. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14216. name: "Hand",
  14217. image: {
  14218. source: "./media/characters/pia-sr/hand.svg"
  14219. }
  14220. },
  14221. foot: {
  14222. height: math.unit(1.83, "feet"),
  14223. name: "Foot",
  14224. image: {
  14225. source: "./media/characters/pia-sr/foot.svg"
  14226. }
  14227. },
  14228. },
  14229. [
  14230. {
  14231. name: "Micro",
  14232. height: math.unit(88, "mm")
  14233. },
  14234. {
  14235. name: "Normal",
  14236. height: math.unit(2, "m"),
  14237. default: true
  14238. },
  14239. {
  14240. name: "Macro",
  14241. height: math.unit(200, "m")
  14242. },
  14243. {
  14244. name: "Megamacro",
  14245. height: math.unit(420, "km")
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(8 + 2 / 12, "feet"),
  14254. weight: math.unit(300, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/kibibyte/front.svg",
  14258. extra: 2221 / 2098,
  14259. bottom: 0.04
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(8 + 2 / 12, "feet"),
  14267. default: true
  14268. },
  14269. {
  14270. name: "Socialable Macro",
  14271. height: math.unit(50, "feet")
  14272. },
  14273. {
  14274. name: "Macro",
  14275. height: math.unit(300, "feet")
  14276. },
  14277. {
  14278. name: "Megamacro",
  14279. height: math.unit(500, "miles")
  14280. },
  14281. ]
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14285. {
  14286. front: {
  14287. height: math.unit(6, "feet"),
  14288. weight: math.unit(150, "lb"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/felix/front.svg",
  14292. extra: 762 / 722,
  14293. bottom: 0.02
  14294. }
  14295. },
  14296. frontClothed: {
  14297. height: math.unit(6, "feet"),
  14298. weight: math.unit(150, "lb"),
  14299. name: "Front (Clothed)",
  14300. image: {
  14301. source: "./media/characters/felix/front-clothed.svg",
  14302. extra: 762 / 722,
  14303. bottom: 0.02
  14304. }
  14305. },
  14306. },
  14307. [
  14308. {
  14309. name: "Normal",
  14310. height: math.unit(6 + 8 / 12, "feet"),
  14311. default: true
  14312. },
  14313. {
  14314. name: "Macro",
  14315. height: math.unit(2600, "feet")
  14316. },
  14317. {
  14318. name: "Megamacro",
  14319. height: math.unit(450, "miles")
  14320. },
  14321. ]
  14322. ))
  14323. characterMakers.push(() => makeCharacter(
  14324. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14325. {
  14326. front: {
  14327. height: math.unit(6 + 1 / 12, "feet"),
  14328. weight: math.unit(250, "lb"),
  14329. name: "Front",
  14330. image: {
  14331. source: "./media/characters/tobo/front.svg",
  14332. extra: 608 / 586,
  14333. bottom: 0.023
  14334. }
  14335. },
  14336. back: {
  14337. height: math.unit(6 + 1 / 12, "feet"),
  14338. weight: math.unit(250, "lb"),
  14339. name: "Back",
  14340. image: {
  14341. source: "./media/characters/tobo/back.svg",
  14342. extra: 608 / 586
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Nano",
  14349. height: math.unit(2, "nm")
  14350. },
  14351. {
  14352. name: "Megamicro",
  14353. height: math.unit(0.1, "mm")
  14354. },
  14355. {
  14356. name: "Micro",
  14357. height: math.unit(1, "inch"),
  14358. default: true
  14359. },
  14360. {
  14361. name: "Human-sized",
  14362. height: math.unit(6 + 1 / 12, "feet")
  14363. },
  14364. {
  14365. name: "Macro",
  14366. height: math.unit(250, "feet")
  14367. },
  14368. {
  14369. name: "Megamacro",
  14370. height: math.unit(75, "miles")
  14371. },
  14372. {
  14373. name: "Texas-sized",
  14374. height: math.unit(750, "miles")
  14375. },
  14376. {
  14377. name: "Teramacro",
  14378. height: math.unit(50000, "miles")
  14379. },
  14380. ]
  14381. ))
  14382. characterMakers.push(() => makeCharacter(
  14383. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14384. {
  14385. front: {
  14386. height: math.unit(6, "feet"),
  14387. weight: math.unit(269, "lb"),
  14388. name: "Front",
  14389. image: {
  14390. source: "./media/characters/danny-kapowsky/front.svg",
  14391. extra: 766 / 736,
  14392. bottom: 0.044
  14393. }
  14394. },
  14395. back: {
  14396. height: math.unit(6, "feet"),
  14397. weight: math.unit(269, "lb"),
  14398. name: "Back",
  14399. image: {
  14400. source: "./media/characters/danny-kapowsky/back.svg",
  14401. extra: 797 / 760,
  14402. bottom: 0.025
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Macro",
  14409. height: math.unit(150, "feet"),
  14410. default: true
  14411. },
  14412. {
  14413. name: "Macro+",
  14414. height: math.unit(200, "feet")
  14415. },
  14416. {
  14417. name: "Macro++",
  14418. height: math.unit(300, "feet")
  14419. },
  14420. {
  14421. name: "Macro+++",
  14422. height: math.unit(400, "feet")
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14428. {
  14429. side: {
  14430. height: math.unit(6, "feet"),
  14431. weight: math.unit(170, "lb"),
  14432. name: "Side",
  14433. image: {
  14434. source: "./media/characters/finn/side.svg",
  14435. extra: 1953 / 1807,
  14436. bottom: 0.057
  14437. }
  14438. },
  14439. },
  14440. [
  14441. {
  14442. name: "Megamacro",
  14443. height: math.unit(14445, "feet"),
  14444. default: true
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14450. {
  14451. front: {
  14452. height: math.unit(5 + 6 / 12, "feet"),
  14453. weight: math.unit(125, "lb"),
  14454. name: "Front",
  14455. image: {
  14456. source: "./media/characters/roy/front.svg",
  14457. extra: 1,
  14458. bottom: 0.11
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Micro",
  14465. height: math.unit(3, "inches"),
  14466. default: true
  14467. },
  14468. {
  14469. name: "Normal",
  14470. height: math.unit(5 + 6 / 12, "feet")
  14471. },
  14472. {
  14473. name: "Lesser Macro",
  14474. height: math.unit(60, "feet")
  14475. },
  14476. {
  14477. name: "Greater Macro",
  14478. height: math.unit(120, "feet")
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14484. {
  14485. front: {
  14486. height: math.unit(6, "feet"),
  14487. weight: math.unit(100, "lb"),
  14488. name: "Front",
  14489. image: {
  14490. source: "./media/characters/aevsivs/front.svg",
  14491. extra: 1,
  14492. bottom: 0.03
  14493. }
  14494. },
  14495. back: {
  14496. height: math.unit(6, "feet"),
  14497. weight: math.unit(100, "lb"),
  14498. name: "Back",
  14499. image: {
  14500. source: "./media/characters/aevsivs/back.svg"
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Micro",
  14507. height: math.unit(2, "inches"),
  14508. default: true
  14509. },
  14510. {
  14511. name: "Normal",
  14512. height: math.unit(5, "feet")
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14518. {
  14519. front: {
  14520. height: math.unit(5 + 7 / 12, "feet"),
  14521. weight: math.unit(159, "lb"),
  14522. name: "Front",
  14523. image: {
  14524. source: "./media/characters/hildegard/front.svg",
  14525. extra: 289 / 269,
  14526. bottom: 7.63 / 297.8
  14527. }
  14528. },
  14529. back: {
  14530. height: math.unit(5 + 7 / 12, "feet"),
  14531. weight: math.unit(159, "lb"),
  14532. name: "Back",
  14533. image: {
  14534. source: "./media/characters/hildegard/back.svg",
  14535. extra: 280 / 260,
  14536. bottom: 2.3 / 282
  14537. }
  14538. },
  14539. },
  14540. [
  14541. {
  14542. name: "Normal",
  14543. height: math.unit(5 + 7 / 12, "feet"),
  14544. default: true
  14545. },
  14546. ]
  14547. ))
  14548. characterMakers.push(() => makeCharacter(
  14549. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14550. {
  14551. bernard: {
  14552. height: math.unit(2 + 7 / 12, "feet"),
  14553. weight: math.unit(66, "lb"),
  14554. name: "Bernard",
  14555. rename: true,
  14556. image: {
  14557. source: "./media/characters/bernard-wilder/bernard.svg",
  14558. extra: 192 / 128,
  14559. bottom: 0.05
  14560. }
  14561. },
  14562. wilder: {
  14563. height: math.unit(5 + 8 / 12, "feet"),
  14564. weight: math.unit(143, "lb"),
  14565. name: "Wilder",
  14566. rename: true,
  14567. image: {
  14568. source: "./media/characters/bernard-wilder/wilder.svg",
  14569. extra: 361 / 312,
  14570. bottom: 0.02
  14571. }
  14572. },
  14573. },
  14574. [
  14575. {
  14576. name: "Normal",
  14577. height: math.unit(2 + 7 / 12, "feet"),
  14578. default: true
  14579. },
  14580. ]
  14581. ))
  14582. characterMakers.push(() => makeCharacter(
  14583. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14584. {
  14585. anthro: {
  14586. height: math.unit(6 + 1 / 12, "feet"),
  14587. weight: math.unit(155, "lb"),
  14588. name: "Anthro",
  14589. image: {
  14590. source: "./media/characters/hearth/anthro.svg",
  14591. extra: 260 / 250,
  14592. bottom: 0.02
  14593. }
  14594. },
  14595. feral: {
  14596. height: math.unit(3.78, "feet"),
  14597. weight: math.unit(35, "kg"),
  14598. name: "Feral",
  14599. image: {
  14600. source: "./media/characters/hearth/feral.svg",
  14601. extra: 153 / 135,
  14602. bottom: 0.03
  14603. }
  14604. },
  14605. },
  14606. [
  14607. {
  14608. name: "Normal",
  14609. height: math.unit(6 + 1 / 12, "feet"),
  14610. default: true
  14611. },
  14612. ]
  14613. ))
  14614. characterMakers.push(() => makeCharacter(
  14615. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14616. {
  14617. front: {
  14618. height: math.unit(6, "feet"),
  14619. weight: math.unit(182, "lb"),
  14620. name: "Front",
  14621. image: {
  14622. source: "./media/characters/ingrid/front.svg",
  14623. extra: 294 / 268,
  14624. bottom: 0.027
  14625. }
  14626. },
  14627. },
  14628. [
  14629. {
  14630. name: "Normal",
  14631. height: math.unit(6, "feet"),
  14632. default: true
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14638. {
  14639. eevee: {
  14640. height: math.unit(2 + 10 / 12, "feet"),
  14641. weight: math.unit(86, "lb"),
  14642. name: "Malgam",
  14643. image: {
  14644. source: "./media/characters/malgam/eevee.svg",
  14645. extra: 218 / 180,
  14646. bottom: 0.2
  14647. }
  14648. },
  14649. sylveon: {
  14650. height: math.unit(4, "feet"),
  14651. weight: math.unit(101, "lb"),
  14652. name: "Future Malgam",
  14653. rename: true,
  14654. image: {
  14655. source: "./media/characters/malgam/sylveon.svg",
  14656. extra: 371 / 325,
  14657. bottom: 0.015
  14658. }
  14659. },
  14660. gigantamax: {
  14661. height: math.unit(50, "feet"),
  14662. name: "Gigantamax Malgam",
  14663. rename: true,
  14664. image: {
  14665. source: "./media/characters/malgam/gigantamax.svg"
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Normal",
  14672. height: math.unit(2 + 10 / 12, "feet"),
  14673. default: true
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(5 + 11 / 12, "feet"),
  14682. weight: math.unit(188, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/fleur/front.svg",
  14686. extra: 309 / 283,
  14687. bottom: 0.007
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(5 + 11 / 12, "feet"),
  14695. default: true
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(5 + 4 / 12, "feet"),
  14704. weight: math.unit(122, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/jude/front.svg",
  14708. extra: 288 / 273,
  14709. bottom: 0.03
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(5 + 4 / 12, "feet"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(5 + 11 / 12, "feet"),
  14726. weight: math.unit(190, "lb"),
  14727. name: "Front",
  14728. image: {
  14729. source: "./media/characters/seara/front.svg",
  14730. extra: 1,
  14731. bottom: 0.05
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Normal",
  14738. height: math.unit(5 + 11 / 12, "feet"),
  14739. default: true
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(16 + 5 / 12, "feet"),
  14748. weight: math.unit(524, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/caspian/front.svg",
  14752. extra: 1,
  14753. bottom: 0.04
  14754. }
  14755. },
  14756. },
  14757. [
  14758. {
  14759. name: "Normal",
  14760. height: math.unit(16 + 5 / 12, "feet"),
  14761. default: true
  14762. },
  14763. ]
  14764. ))
  14765. characterMakers.push(() => makeCharacter(
  14766. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14767. {
  14768. front: {
  14769. height: math.unit(5 + 7 / 12, "feet"),
  14770. weight: math.unit(170, "lb"),
  14771. name: "Front",
  14772. image: {
  14773. source: "./media/characters/mika/front.svg",
  14774. extra: 1,
  14775. bottom: 0.016
  14776. }
  14777. },
  14778. },
  14779. [
  14780. {
  14781. name: "Normal",
  14782. height: math.unit(5 + 7 / 12, "feet"),
  14783. default: true
  14784. },
  14785. ]
  14786. ))
  14787. characterMakers.push(() => makeCharacter(
  14788. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14789. {
  14790. front: {
  14791. height: math.unit(6 + 2 / 12, "feet"),
  14792. weight: math.unit(268, "lb"),
  14793. name: "Front",
  14794. image: {
  14795. source: "./media/characters/sol/front.svg",
  14796. extra: 247 / 231,
  14797. bottom: 0.05
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Normal",
  14804. height: math.unit(6 + 2 / 12, "feet"),
  14805. default: true
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14811. {
  14812. buizel: {
  14813. height: math.unit(2 + 5 / 12, "feet"),
  14814. weight: math.unit(87, "lb"),
  14815. name: "Buizel",
  14816. image: {
  14817. source: "./media/characters/umiko/buizel.svg",
  14818. extra: 172 / 157,
  14819. bottom: 0.01
  14820. }
  14821. },
  14822. floatzel: {
  14823. height: math.unit(5 + 9 / 12, "feet"),
  14824. weight: math.unit(250, "lb"),
  14825. name: "Floatzel",
  14826. image: {
  14827. source: "./media/characters/umiko/floatzel.svg",
  14828. extra: 262 / 248
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(2 + 5 / 12, "feet"),
  14836. default: true
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(6 + 2 / 12, "feet"),
  14845. weight: math.unit(146, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/iliac/front.svg",
  14849. extra: 389 / 365,
  14850. bottom: 0.035
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(6 + 2 / 12, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(6, "feet"),
  14867. weight: math.unit(170, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/topaz/front.svg",
  14871. extra: 317 / 303,
  14872. bottom: 0.055
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Normal",
  14879. height: math.unit(6, "feet"),
  14880. default: true
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(5 + 11 / 12, "feet"),
  14889. weight: math.unit(144, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/gabriel/front.svg",
  14893. extra: 285 / 262,
  14894. bottom: 0.004
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(5 + 11 / 12, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14908. {
  14909. side: {
  14910. height: math.unit(6 + 5 / 12, "feet"),
  14911. weight: math.unit(300, "lb"),
  14912. name: "Side",
  14913. image: {
  14914. source: "./media/characters/tempest-suicune/side.svg",
  14915. extra: 195 / 154,
  14916. bottom: 0.04
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(6 + 5 / 12, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(7 + 2 / 12, "feet"),
  14933. weight: math.unit(322, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/vulcan/front.svg",
  14937. extra: 154 / 147,
  14938. bottom: 0.04
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(7 + 2 / 12, "feet"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(5 + 10 / 12, "feet"),
  14955. weight: math.unit(264, "lb"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/gault/front.svg",
  14959. extra: 161 / 140,
  14960. bottom: 0.028
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(5 + 10 / 12, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(6, "feet"),
  14977. weight: math.unit(150, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/shard/front.svg",
  14981. extra: 273 / 238,
  14982. bottom: 0.02
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(3 + 6 / 12, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14996. {
  14997. front: {
  14998. height: math.unit(5 + 11 / 12, "feet"),
  14999. weight: math.unit(146, "lb"),
  15000. name: "Front",
  15001. image: {
  15002. source: "./media/characters/ashe/front.svg",
  15003. extra: 400 / 373,
  15004. bottom: 0.01
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(5 + 11 / 12, "feet"),
  15012. default: true
  15013. },
  15014. ]
  15015. ))
  15016. characterMakers.push(() => makeCharacter(
  15017. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15018. {
  15019. front: {
  15020. height: math.unit(5 + 5 / 12, "feet"),
  15021. weight: math.unit(135, "lb"),
  15022. name: "Front",
  15023. image: {
  15024. source: "./media/characters/beatrix/front.svg",
  15025. extra: 392 / 379,
  15026. bottom: 0.01
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(6, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15040. {
  15041. front: {
  15042. height: math.unit(6, "feet"),
  15043. weight: math.unit(150, "lb"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/ignatius/front.svg",
  15047. extra: 245 / 222,
  15048. bottom: 0.01
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(5 + 5 / 12, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15062. {
  15063. front: {
  15064. height: math.unit(6 + 2 / 12, "feet"),
  15065. weight: math.unit(138, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/mei-li/front.svg",
  15069. extra: 237 / 229,
  15070. bottom: 0.03
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(6 + 2 / 12, "feet"),
  15078. default: true
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15084. {
  15085. front: {
  15086. height: math.unit(2 + 4 / 12, "feet"),
  15087. weight: math.unit(62, "lb"),
  15088. name: "Front",
  15089. image: {
  15090. source: "./media/characters/puru/front.svg",
  15091. extra: 206 / 149,
  15092. bottom: 0.06
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Normal",
  15099. height: math.unit(2 + 4 / 12, "feet"),
  15100. default: true
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15106. {
  15107. anthro: {
  15108. height: math.unit(5 + 8/12, "feet"),
  15109. weight: math.unit(200, "lb"),
  15110. energyNeed: math.unit(2000, "kcal"),
  15111. name: "Anthro",
  15112. image: {
  15113. source: "./media/characters/kee/anthro.svg",
  15114. extra: 3251/3184,
  15115. bottom: 250/3501
  15116. }
  15117. },
  15118. taur: {
  15119. height: math.unit(11, "feet"),
  15120. weight: math.unit(500, "lb"),
  15121. energyNeed: math.unit(5000, "kcal"),
  15122. name: "Taur",
  15123. image: {
  15124. source: "./media/characters/kee/taur.svg",
  15125. extra: 1362/1320,
  15126. bottom: 83/1445
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(5 + 8/12, "feet"),
  15134. default: true
  15135. },
  15136. {
  15137. name: "Macro",
  15138. height: math.unit(35, "feet")
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15144. {
  15145. anthro: {
  15146. height: math.unit(7, "feet"),
  15147. weight: math.unit(190, "lb"),
  15148. name: "Anthro",
  15149. image: {
  15150. source: "./media/characters/cobalt-dracha/anthro.svg",
  15151. extra: 231 / 225,
  15152. bottom: 0.04
  15153. }
  15154. },
  15155. feral: {
  15156. height: math.unit(9 + 7 / 12, "feet"),
  15157. weight: math.unit(294, "lb"),
  15158. name: "Feral",
  15159. image: {
  15160. source: "./media/characters/cobalt-dracha/feral.svg",
  15161. extra: 692 / 633,
  15162. bottom: 0.05
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Normal",
  15169. height: math.unit(7, "feet"),
  15170. default: true
  15171. },
  15172. ]
  15173. ))
  15174. characterMakers.push(() => makeCharacter(
  15175. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15176. {
  15177. fallen: {
  15178. height: math.unit(11 + 8 / 12, "feet"),
  15179. weight: math.unit(485, "lb"),
  15180. name: "Java (Fallen)",
  15181. rename: true,
  15182. image: {
  15183. source: "./media/characters/java/fallen.svg",
  15184. extra: 226 / 208,
  15185. bottom: 0.005
  15186. }
  15187. },
  15188. godkin: {
  15189. height: math.unit(10 + 6 / 12, "feet"),
  15190. weight: math.unit(328, "lb"),
  15191. name: "Java (Godkin)",
  15192. rename: true,
  15193. image: {
  15194. source: "./media/characters/java/godkin.svg",
  15195. extra: 270 / 262,
  15196. bottom: 0.02
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Normal",
  15203. height: math.unit(11 + 8 / 12, "feet"),
  15204. default: true
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(7 + 8 / 12, "feet"),
  15213. weight: math.unit(320, "lb"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/skoll/front.svg",
  15217. extra: 232 / 220,
  15218. bottom: 0.02
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Normal",
  15225. height: math.unit(7 + 8 / 12, "feet"),
  15226. default: true
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(5 + 9 / 12, "feet"),
  15235. weight: math.unit(170, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/purna/front.svg",
  15239. extra: 239 / 229,
  15240. bottom: 0.01
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Normal",
  15247. height: math.unit(5 + 9 / 12, "feet"),
  15248. default: true
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(5 + 9 / 12, "feet"),
  15257. weight: math.unit(142, "lb"),
  15258. name: "Front",
  15259. image: {
  15260. source: "./media/characters/kuva/front.svg",
  15261. extra: 281 / 271,
  15262. bottom: 0.006
  15263. }
  15264. },
  15265. },
  15266. [
  15267. {
  15268. name: "Normal",
  15269. height: math.unit(5 + 9 / 12, "feet"),
  15270. default: true
  15271. },
  15272. ]
  15273. ))
  15274. characterMakers.push(() => makeCharacter(
  15275. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15276. {
  15277. anthro: {
  15278. height: math.unit(9 + 2 / 12, "feet"),
  15279. weight: math.unit(270, "lb"),
  15280. name: "Anthro",
  15281. image: {
  15282. source: "./media/characters/embra/anthro.svg",
  15283. extra: 200 / 187,
  15284. bottom: 0.02
  15285. }
  15286. },
  15287. feral: {
  15288. height: math.unit(18 + 8 / 12, "feet"),
  15289. weight: math.unit(576, "lb"),
  15290. name: "Feral",
  15291. image: {
  15292. source: "./media/characters/embra/feral.svg",
  15293. extra: 152 / 137,
  15294. bottom: 0.037
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Normal",
  15301. height: math.unit(9 + 2 / 12, "feet"),
  15302. default: true
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15308. {
  15309. anthro: {
  15310. height: math.unit(10 + 9 / 12, "feet"),
  15311. weight: math.unit(224, "lb"),
  15312. name: "Anthro",
  15313. image: {
  15314. source: "./media/characters/grottos/anthro.svg",
  15315. extra: 350 / 332,
  15316. bottom: 0.045
  15317. }
  15318. },
  15319. feral: {
  15320. height: math.unit(20 + 7 / 12, "feet"),
  15321. weight: math.unit(629, "lb"),
  15322. name: "Feral",
  15323. image: {
  15324. source: "./media/characters/grottos/feral.svg",
  15325. extra: 207 / 190,
  15326. bottom: 0.05
  15327. }
  15328. },
  15329. },
  15330. [
  15331. {
  15332. name: "Normal",
  15333. height: math.unit(10 + 9 / 12, "feet"),
  15334. default: true
  15335. },
  15336. ]
  15337. ))
  15338. characterMakers.push(() => makeCharacter(
  15339. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15340. {
  15341. anthro: {
  15342. height: math.unit(9 + 6 / 12, "feet"),
  15343. weight: math.unit(298, "lb"),
  15344. name: "Anthro",
  15345. image: {
  15346. source: "./media/characters/frifna/anthro.svg",
  15347. extra: 282 / 269,
  15348. bottom: 0.015
  15349. }
  15350. },
  15351. feral: {
  15352. height: math.unit(16 + 2 / 12, "feet"),
  15353. weight: math.unit(624, "lb"),
  15354. name: "Feral",
  15355. image: {
  15356. source: "./media/characters/frifna/feral.svg"
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Normal",
  15363. height: math.unit(9 + 6 / 12, "feet"),
  15364. default: true
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15370. {
  15371. front: {
  15372. height: math.unit(6 + 2 / 12, "feet"),
  15373. weight: math.unit(168, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/elise/front.svg",
  15377. extra: 276 / 271
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(6 + 2 / 12, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(5 + 10 / 12, "feet"),
  15394. weight: math.unit(210, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/glade/front.svg",
  15398. extra: 258 / 247,
  15399. bottom: 0.008
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(5 + 10 / 12, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(5 + 10 / 12, "feet"),
  15416. weight: math.unit(129, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/rina/front.svg",
  15420. extra: 266 / 255,
  15421. bottom: 0.005
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(5 + 10 / 12, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15435. {
  15436. front: {
  15437. height: math.unit(6 + 1 / 12, "feet"),
  15438. weight: math.unit(192, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/veronica/front.svg",
  15442. extra: 319 / 309,
  15443. bottom: 0.005
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(6 + 1 / 12, "feet"),
  15451. default: true
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15457. {
  15458. front: {
  15459. height: math.unit(9 + 3 / 12, "feet"),
  15460. weight: math.unit(1100, "lb"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/braxton/front.svg",
  15464. extra: 1057 / 984,
  15465. bottom: 0.05
  15466. }
  15467. },
  15468. },
  15469. [
  15470. {
  15471. name: "Normal",
  15472. height: math.unit(9 + 3 / 12, "feet")
  15473. },
  15474. {
  15475. name: "Giant",
  15476. height: math.unit(300, "feet"),
  15477. default: true
  15478. },
  15479. {
  15480. name: "Macro",
  15481. height: math.unit(700, "feet")
  15482. },
  15483. {
  15484. name: "Megamacro",
  15485. height: math.unit(6000, "feet")
  15486. },
  15487. ]
  15488. ))
  15489. characterMakers.push(() => makeCharacter(
  15490. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15491. {
  15492. front: {
  15493. height: math.unit(6 + 7 / 12, "feet"),
  15494. weight: math.unit(150, "lb"),
  15495. name: "Front",
  15496. image: {
  15497. source: "./media/characters/blue-feyonics/front.svg",
  15498. extra: 1403 / 1306,
  15499. bottom: 0.047
  15500. }
  15501. },
  15502. },
  15503. [
  15504. {
  15505. name: "Normal",
  15506. height: math.unit(6 + 7 / 12, "feet"),
  15507. default: true
  15508. },
  15509. ]
  15510. ))
  15511. characterMakers.push(() => makeCharacter(
  15512. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15513. {
  15514. front: {
  15515. height: math.unit(1.8, "meters"),
  15516. weight: math.unit(60, "kg"),
  15517. name: "Front",
  15518. image: {
  15519. source: "./media/characters/maxwell/front.svg",
  15520. extra: 2060 / 1873
  15521. }
  15522. },
  15523. },
  15524. [
  15525. {
  15526. name: "Micro",
  15527. height: math.unit(1, "mm")
  15528. },
  15529. {
  15530. name: "Normal",
  15531. height: math.unit(1.8, "meter"),
  15532. default: true
  15533. },
  15534. {
  15535. name: "Macro",
  15536. height: math.unit(30, "meters")
  15537. },
  15538. {
  15539. name: "Megamacro",
  15540. height: math.unit(10, "km")
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(150, "lb"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/jack/front.svg",
  15553. extra: 1754 / 1640,
  15554. bottom: 0.01
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(80000, "feet"),
  15562. default: true
  15563. },
  15564. {
  15565. name: "Max size",
  15566. height: math.unit(10, "lightyears")
  15567. },
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15572. {
  15573. upright: {
  15574. height: math.unit(7, "feet"),
  15575. weight: math.unit(170, "lb"),
  15576. name: "Upright",
  15577. image: {
  15578. source: "./media/characters/cafat/upright.svg",
  15579. bottom: 0.01
  15580. }
  15581. },
  15582. uprightFull: {
  15583. height: math.unit(7, "feet"),
  15584. weight: math.unit(170, "lb"),
  15585. name: "Upright (Full)",
  15586. image: {
  15587. source: "./media/characters/cafat/upright-full.svg",
  15588. bottom: 0.01
  15589. }
  15590. },
  15591. side: {
  15592. height: math.unit(5, "feet"),
  15593. weight: math.unit(150, "lb"),
  15594. name: "Side",
  15595. image: {
  15596. source: "./media/characters/cafat/side.svg"
  15597. }
  15598. },
  15599. },
  15600. [
  15601. {
  15602. name: "Small",
  15603. height: math.unit(7, "feet"),
  15604. default: true
  15605. },
  15606. {
  15607. name: "Large",
  15608. height: math.unit(15.5, "feet")
  15609. },
  15610. ]
  15611. ))
  15612. characterMakers.push(() => makeCharacter(
  15613. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15614. {
  15615. front: {
  15616. height: math.unit(6, "feet"),
  15617. weight: math.unit(150, "lb"),
  15618. name: "Front",
  15619. image: {
  15620. source: "./media/characters/verin-raharra/front.svg",
  15621. extra: 5019 / 4835,
  15622. bottom: 0.023
  15623. }
  15624. },
  15625. },
  15626. [
  15627. {
  15628. name: "Normal",
  15629. height: math.unit(7 + 5 / 12, "feet"),
  15630. default: true
  15631. },
  15632. {
  15633. name: "Upsized",
  15634. height: math.unit(20, "feet")
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15640. {
  15641. front: {
  15642. height: math.unit(7, "feet"),
  15643. weight: math.unit(230, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/nakata/front.svg",
  15647. extra: 1.005,
  15648. bottom: 0.01
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Normal",
  15655. height: math.unit(7, "feet"),
  15656. default: true
  15657. },
  15658. {
  15659. name: "Big",
  15660. height: math.unit(14, "feet")
  15661. },
  15662. {
  15663. name: "Macro",
  15664. height: math.unit(400, "feet")
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15670. {
  15671. front: {
  15672. height: math.unit(4.91, "feet"),
  15673. weight: math.unit(100, "lb"),
  15674. name: "Front",
  15675. image: {
  15676. source: "./media/characters/lily/front.svg",
  15677. extra: 1585 / 1415,
  15678. bottom: 0.02
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(4.91, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15692. {
  15693. laying: {
  15694. height: math.unit(4 + 4 / 12, "feet"),
  15695. weight: math.unit(600, "lb"),
  15696. name: "Laying",
  15697. image: {
  15698. source: "./media/characters/sheila/laying.svg",
  15699. extra: 1333 / 1265,
  15700. bottom: 0.16
  15701. }
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(4 + 4 / 12, "feet"),
  15708. default: true
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(6, "feet"),
  15717. weight: math.unit(190, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/sax/front.svg",
  15721. extra: 1187 / 973,
  15722. bottom: 0.042
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Micro",
  15729. height: math.unit(4, "inches"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15736. {
  15737. front: {
  15738. height: math.unit(6, "feet"),
  15739. weight: math.unit(150, "lb"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/pandora/front.svg",
  15743. extra: 2720 / 2556,
  15744. bottom: 0.015
  15745. }
  15746. },
  15747. back: {
  15748. height: math.unit(6, "feet"),
  15749. weight: math.unit(150, "lb"),
  15750. name: "Back",
  15751. image: {
  15752. source: "./media/characters/pandora/back.svg",
  15753. extra: 2720 / 2556,
  15754. bottom: 0.01
  15755. }
  15756. },
  15757. beans: {
  15758. height: math.unit(6 / 8, "feet"),
  15759. name: "Beans",
  15760. image: {
  15761. source: "./media/characters/pandora/beans.svg"
  15762. }
  15763. },
  15764. collar: {
  15765. height: math.unit(0.31, "feet"),
  15766. name: "Collar",
  15767. image: {
  15768. source: "./media/characters/pandora/collar.svg"
  15769. }
  15770. },
  15771. skirt: {
  15772. height: math.unit(6, "feet"),
  15773. weight: math.unit(150, "lb"),
  15774. name: "Skirt",
  15775. image: {
  15776. source: "./media/characters/pandora/skirt.svg",
  15777. extra: 1622 / 1525,
  15778. bottom: 0.015
  15779. }
  15780. },
  15781. hoodie: {
  15782. height: math.unit(6, "feet"),
  15783. weight: math.unit(150, "lb"),
  15784. name: "Hoodie",
  15785. image: {
  15786. source: "./media/characters/pandora/hoodie.svg",
  15787. extra: 1622 / 1525,
  15788. bottom: 0.015
  15789. }
  15790. },
  15791. casual: {
  15792. height: math.unit(6, "feet"),
  15793. weight: math.unit(150, "lb"),
  15794. name: "Casual",
  15795. image: {
  15796. source: "./media/characters/pandora/casual.svg",
  15797. extra: 1622 / 1525,
  15798. bottom: 0.015
  15799. }
  15800. },
  15801. },
  15802. [
  15803. {
  15804. name: "Normal",
  15805. height: math.unit(6, "feet")
  15806. },
  15807. {
  15808. name: "Big Steppy",
  15809. height: math.unit(1, "km"),
  15810. default: true
  15811. },
  15812. {
  15813. name: "Galactic Steppy",
  15814. height: math.unit(2, "gigameters")
  15815. },
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15820. {
  15821. side: {
  15822. height: math.unit(10, "feet"),
  15823. weight: math.unit(800, "kg"),
  15824. name: "Side",
  15825. image: {
  15826. source: "./media/characters/venio-darcony/side.svg",
  15827. extra: 1373 / 1003,
  15828. bottom: 0.037
  15829. }
  15830. },
  15831. front: {
  15832. height: math.unit(19, "feet"),
  15833. weight: math.unit(800, "kg"),
  15834. name: "Front",
  15835. image: {
  15836. source: "./media/characters/venio-darcony/front.svg"
  15837. }
  15838. },
  15839. back: {
  15840. height: math.unit(19, "feet"),
  15841. weight: math.unit(800, "kg"),
  15842. name: "Back",
  15843. image: {
  15844. source: "./media/characters/venio-darcony/back.svg"
  15845. }
  15846. },
  15847. sideNsfw: {
  15848. height: math.unit(10, "feet"),
  15849. weight: math.unit(800, "kg"),
  15850. name: "Side (NSFW)",
  15851. image: {
  15852. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15853. extra: 1373 / 1003,
  15854. bottom: 0.037
  15855. }
  15856. },
  15857. frontNsfw: {
  15858. height: math.unit(19, "feet"),
  15859. weight: math.unit(800, "kg"),
  15860. name: "Front (NSFW)",
  15861. image: {
  15862. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15863. }
  15864. },
  15865. backNsfw: {
  15866. height: math.unit(19, "feet"),
  15867. weight: math.unit(800, "kg"),
  15868. name: "Back (NSFW)",
  15869. image: {
  15870. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15871. }
  15872. },
  15873. sideArmored: {
  15874. height: math.unit(10, "feet"),
  15875. weight: math.unit(800, "kg"),
  15876. name: "Side (Armored)",
  15877. image: {
  15878. source: "./media/characters/venio-darcony/side-armored.svg",
  15879. extra: 1373 / 1003,
  15880. bottom: 0.037
  15881. }
  15882. },
  15883. frontArmored: {
  15884. height: math.unit(19, "feet"),
  15885. weight: math.unit(900, "kg"),
  15886. name: "Front (Armored)",
  15887. image: {
  15888. source: "./media/characters/venio-darcony/front-armored.svg"
  15889. }
  15890. },
  15891. backArmored: {
  15892. height: math.unit(19, "feet"),
  15893. weight: math.unit(900, "kg"),
  15894. name: "Back (Armored)",
  15895. image: {
  15896. source: "./media/characters/venio-darcony/back-armored.svg"
  15897. }
  15898. },
  15899. sword: {
  15900. height: math.unit(10, "feet"),
  15901. weight: math.unit(50, "lb"),
  15902. name: "Sword",
  15903. image: {
  15904. source: "./media/characters/venio-darcony/sword.svg"
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Normal",
  15911. height: math.unit(10, "feet")
  15912. },
  15913. {
  15914. name: "Macro",
  15915. height: math.unit(130, "feet"),
  15916. default: true
  15917. },
  15918. {
  15919. name: "Macro+",
  15920. height: math.unit(240, "feet")
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(6, "feet"),
  15929. weight: math.unit(150, "lb"),
  15930. name: "Front",
  15931. image: {
  15932. source: "./media/characters/veski/front.svg",
  15933. extra: 1299 / 1225,
  15934. bottom: 0.04
  15935. }
  15936. },
  15937. back: {
  15938. height: math.unit(6, "feet"),
  15939. weight: math.unit(150, "lb"),
  15940. name: "Back",
  15941. image: {
  15942. source: "./media/characters/veski/back.svg",
  15943. extra: 1299 / 1225,
  15944. bottom: 0.008
  15945. }
  15946. },
  15947. maw: {
  15948. height: math.unit(1.5 * 1.21, "feet"),
  15949. name: "Maw",
  15950. image: {
  15951. source: "./media/characters/veski/maw.svg"
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Macro",
  15958. height: math.unit(2, "km"),
  15959. default: true
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15965. {
  15966. front: {
  15967. height: math.unit(5 + 7 / 12, "feet"),
  15968. name: "Front",
  15969. image: {
  15970. source: "./media/characters/isabelle/front.svg",
  15971. extra: 2130 / 1976,
  15972. bottom: 0.05
  15973. }
  15974. },
  15975. },
  15976. [
  15977. {
  15978. name: "Supermicro",
  15979. height: math.unit(10, "micrometers")
  15980. },
  15981. {
  15982. name: "Micro",
  15983. height: math.unit(1, "inch")
  15984. },
  15985. {
  15986. name: "Tiny",
  15987. height: math.unit(5, "inches")
  15988. },
  15989. {
  15990. name: "Standard",
  15991. height: math.unit(5 + 7 / 12, "inches")
  15992. },
  15993. {
  15994. name: "Macro",
  15995. height: math.unit(80, "meters"),
  15996. default: true
  15997. },
  15998. {
  15999. name: "Megamacro",
  16000. height: math.unit(250, "meters")
  16001. },
  16002. {
  16003. name: "Gigamacro",
  16004. height: math.unit(5, "km")
  16005. },
  16006. {
  16007. name: "Cosmic",
  16008. height: math.unit(2.5e6, "miles")
  16009. },
  16010. ]
  16011. ))
  16012. characterMakers.push(() => makeCharacter(
  16013. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16014. {
  16015. front: {
  16016. height: math.unit(6, "feet"),
  16017. weight: math.unit(150, "lb"),
  16018. name: "Front",
  16019. image: {
  16020. source: "./media/characters/hanzo/front.svg",
  16021. extra: 374 / 344,
  16022. bottom: 0.02
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Normal",
  16029. height: math.unit(8, "feet"),
  16030. default: true
  16031. },
  16032. ]
  16033. ))
  16034. characterMakers.push(() => makeCharacter(
  16035. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16036. {
  16037. front: {
  16038. height: math.unit(7, "feet"),
  16039. weight: math.unit(130, "lb"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/anna/front.svg",
  16043. extra: 169 / 145,
  16044. bottom: 0.06
  16045. }
  16046. },
  16047. full: {
  16048. height: math.unit(4.96, "feet"),
  16049. weight: math.unit(220, "lb"),
  16050. name: "Full",
  16051. image: {
  16052. source: "./media/characters/anna/full.svg",
  16053. extra: 138 / 114,
  16054. bottom: 0.15
  16055. }
  16056. },
  16057. tongue: {
  16058. height: math.unit(2.53, "feet"),
  16059. name: "Tongue",
  16060. image: {
  16061. source: "./media/characters/anna/tongue.svg"
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Normal",
  16068. height: math.unit(7, "feet"),
  16069. default: true
  16070. },
  16071. ]
  16072. ))
  16073. characterMakers.push(() => makeCharacter(
  16074. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16075. {
  16076. front: {
  16077. height: math.unit(7, "feet"),
  16078. weight: math.unit(150, "lb"),
  16079. name: "Front",
  16080. image: {
  16081. source: "./media/characters/ian-corvid/front.svg",
  16082. extra: 150 / 142,
  16083. bottom: 0.02
  16084. }
  16085. },
  16086. back: {
  16087. height: math.unit(7, "feet"),
  16088. weight: math.unit(150, "lb"),
  16089. name: "Back",
  16090. image: {
  16091. source: "./media/characters/ian-corvid/back.svg",
  16092. extra: 150 / 143,
  16093. bottom: 0.01
  16094. }
  16095. },
  16096. stomping: {
  16097. height: math.unit(7, "feet"),
  16098. weight: math.unit(150, "lb"),
  16099. name: "Stomping",
  16100. image: {
  16101. source: "./media/characters/ian-corvid/stomping.svg",
  16102. extra: 76 / 72
  16103. }
  16104. },
  16105. sitting: {
  16106. height: math.unit(7 / 1.8, "feet"),
  16107. weight: math.unit(150, "lb"),
  16108. name: "Sitting",
  16109. image: {
  16110. source: "./media/characters/ian-corvid/sitting.svg",
  16111. extra: 1400 / 1269,
  16112. bottom: 0.15
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Tiny Microw",
  16119. height: math.unit(1, "inch")
  16120. },
  16121. {
  16122. name: "Microw",
  16123. height: math.unit(6, "inches")
  16124. },
  16125. {
  16126. name: "Crow",
  16127. height: math.unit(7 + 1 / 12, "feet"),
  16128. default: true
  16129. },
  16130. {
  16131. name: "Macrow",
  16132. height: math.unit(176, "feet")
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(5 + 7 / 12, "feet"),
  16141. weight: math.unit(147, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/natalie-kellon/front.svg",
  16145. extra: 1214 / 1141,
  16146. bottom: 0.02
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Micro",
  16153. height: math.unit(1 / 16, "inch")
  16154. },
  16155. {
  16156. name: "Tiny",
  16157. height: math.unit(4, "inches")
  16158. },
  16159. {
  16160. name: "Normal",
  16161. height: math.unit(5 + 7 / 12, "feet"),
  16162. default: true
  16163. },
  16164. {
  16165. name: "Amazon",
  16166. height: math.unit(12, "feet")
  16167. },
  16168. {
  16169. name: "Giantess",
  16170. height: math.unit(160, "meters")
  16171. },
  16172. {
  16173. name: "Titaness",
  16174. height: math.unit(800, "meters")
  16175. },
  16176. ]
  16177. ))
  16178. characterMakers.push(() => makeCharacter(
  16179. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16180. {
  16181. front: {
  16182. height: math.unit(6, "feet"),
  16183. weight: math.unit(150, "lb"),
  16184. name: "Front",
  16185. image: {
  16186. source: "./media/characters/alluria/front.svg",
  16187. extra: 806 / 738,
  16188. bottom: 0.01
  16189. }
  16190. },
  16191. side: {
  16192. height: math.unit(6, "feet"),
  16193. weight: math.unit(150, "lb"),
  16194. name: "Side",
  16195. image: {
  16196. source: "./media/characters/alluria/side.svg",
  16197. extra: 800 / 750,
  16198. }
  16199. },
  16200. back: {
  16201. height: math.unit(6, "feet"),
  16202. weight: math.unit(150, "lb"),
  16203. name: "Back",
  16204. image: {
  16205. source: "./media/characters/alluria/back.svg",
  16206. extra: 806 / 738,
  16207. }
  16208. },
  16209. frontMaid: {
  16210. height: math.unit(6, "feet"),
  16211. weight: math.unit(150, "lb"),
  16212. name: "Front (Maid)",
  16213. image: {
  16214. source: "./media/characters/alluria/front-maid.svg",
  16215. extra: 806 / 738,
  16216. bottom: 0.01
  16217. }
  16218. },
  16219. sideMaid: {
  16220. height: math.unit(6, "feet"),
  16221. weight: math.unit(150, "lb"),
  16222. name: "Side (Maid)",
  16223. image: {
  16224. source: "./media/characters/alluria/side-maid.svg",
  16225. extra: 800 / 750,
  16226. bottom: 0.005
  16227. }
  16228. },
  16229. backMaid: {
  16230. height: math.unit(6, "feet"),
  16231. weight: math.unit(150, "lb"),
  16232. name: "Back (Maid)",
  16233. image: {
  16234. source: "./media/characters/alluria/back-maid.svg",
  16235. extra: 806 / 738,
  16236. }
  16237. },
  16238. },
  16239. [
  16240. {
  16241. name: "Micro",
  16242. height: math.unit(6, "inches"),
  16243. default: true
  16244. },
  16245. ]
  16246. ))
  16247. characterMakers.push(() => makeCharacter(
  16248. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16249. {
  16250. front: {
  16251. height: math.unit(6, "feet"),
  16252. weight: math.unit(150, "lb"),
  16253. name: "Front",
  16254. image: {
  16255. source: "./media/characters/kyle/front.svg",
  16256. extra: 1069 / 962,
  16257. bottom: 77.228 / 1727.45
  16258. }
  16259. },
  16260. },
  16261. [
  16262. {
  16263. name: "Macro",
  16264. height: math.unit(150, "feet"),
  16265. default: true
  16266. },
  16267. ]
  16268. ))
  16269. characterMakers.push(() => makeCharacter(
  16270. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16271. {
  16272. front: {
  16273. height: math.unit(6, "feet"),
  16274. weight: math.unit(300, "lb"),
  16275. name: "Front",
  16276. image: {
  16277. source: "./media/characters/duncan/front.svg",
  16278. extra: 1650 / 1482,
  16279. bottom: 0.05
  16280. }
  16281. },
  16282. },
  16283. [
  16284. {
  16285. name: "Macro",
  16286. height: math.unit(100, "feet"),
  16287. default: true
  16288. },
  16289. ]
  16290. ))
  16291. characterMakers.push(() => makeCharacter(
  16292. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16293. {
  16294. front: {
  16295. height: math.unit(5 + 4 / 12, "feet"),
  16296. weight: math.unit(220, "lb"),
  16297. name: "Front",
  16298. image: {
  16299. source: "./media/characters/memory/front.svg",
  16300. extra: 3641 / 3545,
  16301. bottom: 0.03
  16302. }
  16303. },
  16304. back: {
  16305. height: math.unit(5 + 4 / 12, "feet"),
  16306. weight: math.unit(220, "lb"),
  16307. name: "Back",
  16308. image: {
  16309. source: "./media/characters/memory/back.svg",
  16310. extra: 3641 / 3545,
  16311. bottom: 0.025
  16312. }
  16313. },
  16314. frontSkirt: {
  16315. height: math.unit(5 + 4 / 12, "feet"),
  16316. weight: math.unit(220, "lb"),
  16317. name: "Front (Skirt)",
  16318. image: {
  16319. source: "./media/characters/memory/front-skirt.svg",
  16320. extra: 3641 / 3545,
  16321. bottom: 0.03
  16322. }
  16323. },
  16324. frontDress: {
  16325. height: math.unit(5 + 4 / 12, "feet"),
  16326. weight: math.unit(220, "lb"),
  16327. name: "Front (Dress)",
  16328. image: {
  16329. source: "./media/characters/memory/front-dress.svg",
  16330. extra: 3641 / 3545,
  16331. bottom: 0.03
  16332. }
  16333. },
  16334. },
  16335. [
  16336. {
  16337. name: "Micro",
  16338. height: math.unit(6, "inches"),
  16339. default: true
  16340. },
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(5 + 4 / 12, "feet")
  16344. },
  16345. ]
  16346. ))
  16347. characterMakers.push(() => makeCharacter(
  16348. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16349. {
  16350. front: {
  16351. height: math.unit(4 + 11 / 12, "feet"),
  16352. weight: math.unit(100, "lb"),
  16353. name: "Front",
  16354. image: {
  16355. source: "./media/characters/luno/front.svg",
  16356. extra: 1535 / 1487,
  16357. bottom: 0.03
  16358. }
  16359. },
  16360. },
  16361. [
  16362. {
  16363. name: "Micro",
  16364. height: math.unit(3, "inches")
  16365. },
  16366. {
  16367. name: "Normal",
  16368. height: math.unit(4 + 11 / 12, "feet"),
  16369. default: true
  16370. },
  16371. {
  16372. name: "Macro",
  16373. height: math.unit(300, "feet")
  16374. },
  16375. {
  16376. name: "Megamacro",
  16377. height: math.unit(700, "miles")
  16378. },
  16379. ]
  16380. ))
  16381. characterMakers.push(() => makeCharacter(
  16382. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16383. {
  16384. front: {
  16385. height: math.unit(6 + 2 / 12, "feet"),
  16386. weight: math.unit(170, "lb"),
  16387. name: "Front",
  16388. image: {
  16389. source: "./media/characters/jamesy/front.svg",
  16390. extra: 440 / 382,
  16391. bottom: 0.005
  16392. }
  16393. },
  16394. },
  16395. [
  16396. {
  16397. name: "Micro",
  16398. height: math.unit(3, "inches")
  16399. },
  16400. {
  16401. name: "Normal",
  16402. height: math.unit(6 + 2 / 12, "feet"),
  16403. default: true
  16404. },
  16405. {
  16406. name: "Macro",
  16407. height: math.unit(300, "feet")
  16408. },
  16409. {
  16410. name: "Megamacro",
  16411. height: math.unit(700, "miles")
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16417. {
  16418. front: {
  16419. height: math.unit(6, "feet"),
  16420. weight: math.unit(160, "lb"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/mark/front.svg",
  16424. extra: 3300 / 3100,
  16425. bottom: 136.42 / 3440.47
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Macro",
  16432. height: math.unit(120, "meters")
  16433. },
  16434. {
  16435. name: "Bigger Macro",
  16436. height: math.unit(350, "meters")
  16437. },
  16438. {
  16439. name: "Megamacro",
  16440. height: math.unit(8, "km"),
  16441. default: true
  16442. },
  16443. {
  16444. name: "Continental",
  16445. height: math.unit(4550, "km")
  16446. },
  16447. {
  16448. name: "Planetary",
  16449. height: math.unit(65000, "km")
  16450. },
  16451. ]
  16452. ))
  16453. characterMakers.push(() => makeCharacter(
  16454. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16455. {
  16456. front: {
  16457. height: math.unit(6, "feet"),
  16458. weight: math.unit(400, "lb"),
  16459. name: "Front",
  16460. image: {
  16461. source: "./media/characters/mac/front.svg",
  16462. extra: 1048 / 987.7,
  16463. bottom: 60 / 1107.6,
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Macro",
  16470. height: math.unit(500, "feet"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(5 + 2 / 12, "feet"),
  16480. weight: math.unit(190, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/bari/front.svg",
  16484. extra: 3156 / 2880,
  16485. bottom: 0.03
  16486. }
  16487. },
  16488. back: {
  16489. height: math.unit(5 + 2 / 12, "feet"),
  16490. weight: math.unit(190, "lb"),
  16491. name: "Back",
  16492. image: {
  16493. source: "./media/characters/bari/back.svg",
  16494. extra: 3260 / 2834,
  16495. bottom: 0.025
  16496. }
  16497. },
  16498. frontPlush: {
  16499. height: math.unit(5 + 2 / 12, "feet"),
  16500. weight: math.unit(190, "lb"),
  16501. name: "Front (Plush)",
  16502. image: {
  16503. source: "./media/characters/bari/front-plush.svg",
  16504. extra: 1112 / 1061,
  16505. bottom: 0.002
  16506. }
  16507. },
  16508. },
  16509. [
  16510. {
  16511. name: "Micro",
  16512. height: math.unit(3, "inches")
  16513. },
  16514. {
  16515. name: "Normal",
  16516. height: math.unit(5 + 2 / 12, "feet"),
  16517. default: true
  16518. },
  16519. {
  16520. name: "Macro",
  16521. height: math.unit(20, "feet")
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16527. {
  16528. front: {
  16529. height: math.unit(6 + 1 / 12, "feet"),
  16530. weight: math.unit(275, "lb"),
  16531. name: "Front",
  16532. image: {
  16533. source: "./media/characters/hunter-misha-raven/front.svg"
  16534. }
  16535. },
  16536. },
  16537. [
  16538. {
  16539. name: "Mortal",
  16540. height: math.unit(6 + 1 / 12, "feet")
  16541. },
  16542. {
  16543. name: "Divine",
  16544. height: math.unit(1.12134e34, "parsecs"),
  16545. default: true
  16546. },
  16547. ]
  16548. ))
  16549. characterMakers.push(() => makeCharacter(
  16550. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16551. {
  16552. front: {
  16553. height: math.unit(6 + 3 / 12, "feet"),
  16554. weight: math.unit(220, "lb"),
  16555. name: "Front",
  16556. image: {
  16557. source: "./media/characters/max-calore/front.svg",
  16558. extra: 1700 / 1648,
  16559. bottom: 0.01
  16560. }
  16561. },
  16562. back: {
  16563. height: math.unit(6 + 3 / 12, "feet"),
  16564. weight: math.unit(220, "lb"),
  16565. name: "Back",
  16566. image: {
  16567. source: "./media/characters/max-calore/back.svg",
  16568. extra: 1700 / 1648,
  16569. bottom: 0.01
  16570. }
  16571. },
  16572. },
  16573. [
  16574. {
  16575. name: "Normal",
  16576. height: math.unit(6 + 3 / 12, "feet"),
  16577. default: true
  16578. },
  16579. ]
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16583. {
  16584. side: {
  16585. height: math.unit(2 + 8 / 12, "feet"),
  16586. weight: math.unit(99, "lb"),
  16587. name: "Side",
  16588. image: {
  16589. source: "./media/characters/aspen/side.svg",
  16590. extra: 152 / 138,
  16591. bottom: 0.032
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(2 + 8 / 12, "feet"),
  16599. default: true
  16600. },
  16601. ]
  16602. ))
  16603. characterMakers.push(() => makeCharacter(
  16604. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16605. {
  16606. side: {
  16607. height: math.unit(3 + 2 / 12, "feet"),
  16608. weight: math.unit(224, "lb"),
  16609. name: "Side",
  16610. image: {
  16611. source: "./media/characters/sheila-feral-wolf/side.svg",
  16612. extra: 179 / 166,
  16613. bottom: 0.03
  16614. }
  16615. },
  16616. },
  16617. [
  16618. {
  16619. name: "Normal",
  16620. height: math.unit(3 + 2 / 12, "feet"),
  16621. default: true
  16622. },
  16623. ]
  16624. ))
  16625. characterMakers.push(() => makeCharacter(
  16626. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16627. {
  16628. side: {
  16629. height: math.unit(1 + 9 / 12, "feet"),
  16630. weight: math.unit(38, "lb"),
  16631. name: "Side",
  16632. image: {
  16633. source: "./media/characters/michelle/side.svg",
  16634. extra: 147 / 136.7,
  16635. bottom: 0.03
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Normal",
  16642. height: math.unit(1 + 9 / 12, "feet"),
  16643. default: true
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16649. {
  16650. front: {
  16651. height: math.unit(1 + 1 / 12, "feet"),
  16652. weight: math.unit(18, "lb"),
  16653. name: "Front",
  16654. image: {
  16655. source: "./media/characters/nino/front.svg"
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Normal",
  16662. height: math.unit(1 + 1 / 12, "feet"),
  16663. default: true
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16669. {
  16670. front: {
  16671. height: math.unit(1, "feet"),
  16672. weight: math.unit(16, "lb"),
  16673. name: "Front",
  16674. image: {
  16675. source: "./media/characters/viola/front.svg"
  16676. }
  16677. },
  16678. },
  16679. [
  16680. {
  16681. name: "Normal",
  16682. height: math.unit(1, "feet"),
  16683. default: true
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16689. {
  16690. front: {
  16691. height: math.unit(6 + 5 / 12, "feet"),
  16692. weight: math.unit(580, "lb"),
  16693. name: "Front",
  16694. image: {
  16695. source: "./media/characters/atlas/front.svg",
  16696. extra: 298.5 / 290,
  16697. bottom: 0.015
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(6 + 5 / 12, "feet"),
  16705. default: true
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16711. {
  16712. side: {
  16713. height: math.unit(1 + 10 / 12, "feet"),
  16714. weight: math.unit(25, "lb"),
  16715. name: "Side",
  16716. image: {
  16717. source: "./media/characters/davy/side.svg",
  16718. extra: 200 / 170,
  16719. bottom: 0.01
  16720. }
  16721. },
  16722. },
  16723. [
  16724. {
  16725. name: "Normal",
  16726. height: math.unit(1 + 10 / 12, "feet"),
  16727. default: true
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16733. {
  16734. side: {
  16735. height: math.unit(4 + 8 / 12, "feet"),
  16736. weight: math.unit(166, "lb"),
  16737. name: "Side",
  16738. image: {
  16739. source: "./media/characters/fiona/side.svg",
  16740. extra: 232 / 220,
  16741. bottom: 0.03
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(4 + 8 / 12, "feet"),
  16749. default: true
  16750. },
  16751. ]
  16752. ))
  16753. characterMakers.push(() => makeCharacter(
  16754. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16755. {
  16756. front: {
  16757. height: math.unit(2, "feet"),
  16758. weight: math.unit(62, "lb"),
  16759. name: "Front",
  16760. image: {
  16761. source: "./media/characters/lyla/front.svg",
  16762. bottom: 0.1
  16763. }
  16764. },
  16765. },
  16766. [
  16767. {
  16768. name: "Normal",
  16769. height: math.unit(2, "feet"),
  16770. default: true
  16771. },
  16772. ]
  16773. ))
  16774. characterMakers.push(() => makeCharacter(
  16775. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16776. {
  16777. side: {
  16778. height: math.unit(1.8, "feet"),
  16779. weight: math.unit(44, "lb"),
  16780. name: "Side",
  16781. image: {
  16782. source: "./media/characters/perseus/side.svg",
  16783. bottom: 0.21
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(1.8, "feet"),
  16791. default: true
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16797. {
  16798. side: {
  16799. height: math.unit(4 + 2 / 12, "feet"),
  16800. weight: math.unit(20, "lb"),
  16801. name: "Side",
  16802. image: {
  16803. source: "./media/characters/remus/side.svg"
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(4 + 2 / 12, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(4 + 11 / 12, "feet"),
  16820. weight: math.unit(114, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/raf/front.svg",
  16824. bottom: 20.5 / 1863
  16825. }
  16826. },
  16827. side: {
  16828. height: math.unit(4 + 11 / 12, "feet"),
  16829. weight: math.unit(114, "lb"),
  16830. name: "Side",
  16831. image: {
  16832. source: "./media/characters/raf/side.svg",
  16833. bottom: 22 / 1822
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Micro",
  16840. height: math.unit(2, "inches")
  16841. },
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(4 + 11 / 12, "feet"),
  16845. default: true
  16846. },
  16847. {
  16848. name: "Macro",
  16849. height: math.unit(70, "feet")
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16855. {
  16856. front: {
  16857. height: math.unit(1.5, "meters"),
  16858. weight: math.unit(68, "kg"),
  16859. name: "Front",
  16860. image: {
  16861. source: "./media/characters/liam-einarr/front.svg",
  16862. extra: 2822 / 2666
  16863. }
  16864. },
  16865. back: {
  16866. height: math.unit(1.5, "meters"),
  16867. weight: math.unit(68, "kg"),
  16868. name: "Back",
  16869. image: {
  16870. source: "./media/characters/liam-einarr/back.svg",
  16871. extra: 2822 / 2666,
  16872. bottom: 0.015
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(1.5, "meters"),
  16880. default: true
  16881. },
  16882. {
  16883. name: "Macro",
  16884. height: math.unit(150, "meters")
  16885. },
  16886. {
  16887. name: "Megamacro",
  16888. height: math.unit(35, "km")
  16889. },
  16890. ]
  16891. ))
  16892. characterMakers.push(() => makeCharacter(
  16893. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16894. {
  16895. front: {
  16896. height: math.unit(6, "feet"),
  16897. weight: math.unit(75, "kg"),
  16898. name: "Front",
  16899. image: {
  16900. source: "./media/characters/linda/front.svg",
  16901. extra: 930 / 874,
  16902. bottom: 0.004
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(6, "feet"),
  16910. default: true
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16916. {
  16917. front: {
  16918. height: math.unit(6 + 8 / 12, "feet"),
  16919. weight: math.unit(220, "lb"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/caylex/front.svg",
  16923. extra: 821 / 772,
  16924. bottom: 0.07
  16925. }
  16926. },
  16927. back: {
  16928. height: math.unit(6 + 8 / 12, "feet"),
  16929. weight: math.unit(220, "lb"),
  16930. name: "Back",
  16931. image: {
  16932. source: "./media/characters/caylex/back.svg",
  16933. extra: 821 / 772,
  16934. bottom: 0.022
  16935. }
  16936. },
  16937. hand: {
  16938. height: math.unit(1.25, "feet"),
  16939. name: "Hand",
  16940. image: {
  16941. source: "./media/characters/caylex/hand.svg"
  16942. }
  16943. },
  16944. foot: {
  16945. height: math.unit(1.6, "feet"),
  16946. name: "Foot",
  16947. image: {
  16948. source: "./media/characters/caylex/foot.svg"
  16949. }
  16950. },
  16951. armored: {
  16952. height: math.unit(6 + 8 / 12, "feet"),
  16953. weight: math.unit(250, "lb"),
  16954. name: "Armored",
  16955. image: {
  16956. source: "./media/characters/caylex/armored.svg",
  16957. extra: 1420 / 1310,
  16958. bottom: 0.045
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Normal",
  16965. height: math.unit(6 + 8 / 12, "feet"),
  16966. default: true
  16967. },
  16968. {
  16969. name: "Normal+",
  16970. height: math.unit(12, "feet")
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(7 + 6 / 12, "feet"),
  16979. weight: math.unit(288, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/alana/front.svg",
  16983. extra: 679 / 653,
  16984. bottom: 22.5 / 701
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(7 + 6 / 12, "feet")
  16992. },
  16993. {
  16994. name: "Large",
  16995. height: math.unit(50, "feet")
  16996. },
  16997. {
  16998. name: "Macro",
  16999. height: math.unit(100, "feet"),
  17000. default: true
  17001. },
  17002. {
  17003. name: "Macro+",
  17004. height: math.unit(200, "feet")
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(6 + 1 / 12, "feet"),
  17013. weight: math.unit(210, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/hasani/front.svg",
  17017. extra: 244 / 232,
  17018. bottom: 0.01
  17019. }
  17020. },
  17021. back: {
  17022. height: math.unit(6 + 1 / 12, "feet"),
  17023. weight: math.unit(210, "lb"),
  17024. name: "Back",
  17025. image: {
  17026. source: "./media/characters/hasani/back.svg",
  17027. extra: 244 / 232,
  17028. bottom: 0.01
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(6 + 1 / 12, "feet")
  17036. },
  17037. {
  17038. name: "Macro",
  17039. height: math.unit(175, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17046. {
  17047. front: {
  17048. height: math.unit(1.82, "meters"),
  17049. weight: math.unit(140, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/nita/front.svg",
  17053. extra: 2473 / 2363,
  17054. bottom: 0.01
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(1.82, "m")
  17062. },
  17063. {
  17064. name: "Macro",
  17065. height: math.unit(300, "m")
  17066. },
  17067. {
  17068. name: "Mistake Canon",
  17069. height: math.unit(0.5, "miles"),
  17070. default: true
  17071. },
  17072. {
  17073. name: "Big Mistake",
  17074. height: math.unit(13, "miles")
  17075. },
  17076. {
  17077. name: "Playing God",
  17078. height: math.unit(2450, "miles")
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(4, "feet"),
  17087. weight: math.unit(120, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/shiriko/front.svg",
  17091. extra: 195 / 188
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(4, "feet"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(6, "feet"),
  17108. name: "front",
  17109. image: {
  17110. source: "./media/characters/deja/front.svg",
  17111. extra: 926 / 840,
  17112. bottom: 0.07
  17113. }
  17114. },
  17115. },
  17116. [
  17117. {
  17118. name: "Planck Length",
  17119. height: math.unit(1.6e-35, "meters")
  17120. },
  17121. {
  17122. name: "Normal",
  17123. height: math.unit(30.48, "meters"),
  17124. default: true
  17125. },
  17126. {
  17127. name: "Universal",
  17128. height: math.unit(8.8e26, "meters")
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17134. {
  17135. side: {
  17136. height: math.unit(8, "feet"),
  17137. weight: math.unit(6300, "lb"),
  17138. name: "Side",
  17139. image: {
  17140. source: "./media/characters/anima/side.svg",
  17141. bottom: 0.035
  17142. }
  17143. },
  17144. },
  17145. [
  17146. {
  17147. name: "Normal",
  17148. height: math.unit(8, "feet"),
  17149. default: true
  17150. },
  17151. ]
  17152. ))
  17153. characterMakers.push(() => makeCharacter(
  17154. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17155. {
  17156. front: {
  17157. height: math.unit(8, "feet"),
  17158. weight: math.unit(350, "lb"),
  17159. name: "Front",
  17160. image: {
  17161. source: "./media/characters/bianca/front.svg",
  17162. extra: 234 / 225,
  17163. bottom: 0.03
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(8, "feet"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17177. {
  17178. front: {
  17179. height: math.unit(6, "feet"),
  17180. weight: math.unit(150, "lb"),
  17181. name: "Front",
  17182. image: {
  17183. source: "./media/characters/adinia/front.svg",
  17184. extra: 1845 / 1672,
  17185. bottom: 0.02
  17186. }
  17187. },
  17188. back: {
  17189. height: math.unit(6, "feet"),
  17190. weight: math.unit(150, "lb"),
  17191. name: "Back",
  17192. image: {
  17193. source: "./media/characters/adinia/back.svg",
  17194. extra: 1845 / 1672,
  17195. bottom: 0.002
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(11 + 5 / 12, "feet"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17209. {
  17210. front: {
  17211. height: math.unit(3, "meters"),
  17212. weight: math.unit(200, "kg"),
  17213. name: "Front",
  17214. image: {
  17215. source: "./media/characters/lykasa/front.svg",
  17216. extra: 1076 / 976,
  17217. bottom: 0.06
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(3, "meters")
  17225. },
  17226. {
  17227. name: "Kaiju",
  17228. height: math.unit(120, "meters"),
  17229. default: true
  17230. },
  17231. {
  17232. name: "Mega Kaiju",
  17233. height: math.unit(240, "km")
  17234. },
  17235. {
  17236. name: "Giga Kaiju",
  17237. height: math.unit(400, "megameters")
  17238. },
  17239. {
  17240. name: "Tera Kaiju",
  17241. height: math.unit(800, "gigameters")
  17242. },
  17243. {
  17244. name: "Kaiju Dragon Goddess",
  17245. height: math.unit(26, "zettaparsecs")
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17251. {
  17252. side: {
  17253. height: math.unit(283 / 124 * 6, "feet"),
  17254. weight: math.unit(35000, "lb"),
  17255. name: "Side",
  17256. image: {
  17257. source: "./media/characters/malfaren/side.svg",
  17258. extra: 2500 / 1010,
  17259. bottom: 0.01
  17260. }
  17261. },
  17262. front: {
  17263. height: math.unit(22.36, "feet"),
  17264. weight: math.unit(35000, "lb"),
  17265. name: "Front",
  17266. image: {
  17267. source: "./media/characters/malfaren/front.svg",
  17268. extra: 1631 / 1476,
  17269. bottom: 0.01
  17270. }
  17271. },
  17272. maw: {
  17273. height: math.unit(6.9, "feet"),
  17274. name: "Maw",
  17275. image: {
  17276. source: "./media/characters/malfaren/maw.svg"
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Big",
  17283. height: math.unit(283 / 162 * 6, "feet"),
  17284. },
  17285. {
  17286. name: "Bigger",
  17287. height: math.unit(283 / 124 * 6, "feet")
  17288. },
  17289. {
  17290. name: "Massive",
  17291. height: math.unit(283 / 92 * 6, "feet"),
  17292. default: true
  17293. },
  17294. {
  17295. name: "👀💦",
  17296. height: math.unit(283 / 73 * 6, "feet"),
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17302. {
  17303. front: {
  17304. height: math.unit(1.7, "m"),
  17305. weight: math.unit(70, "kg"),
  17306. name: "Front",
  17307. image: {
  17308. source: "./media/characters/kernel/front.svg",
  17309. extra: 222 / 210,
  17310. bottom: 0.007
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Nano",
  17317. height: math.unit(17, "micrometers")
  17318. },
  17319. {
  17320. name: "Micro",
  17321. height: math.unit(1.7, "mm")
  17322. },
  17323. {
  17324. name: "Small",
  17325. height: math.unit(1.7, "cm")
  17326. },
  17327. {
  17328. name: "Normal",
  17329. height: math.unit(1.7, "m"),
  17330. default: true
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17336. {
  17337. front: {
  17338. height: math.unit(1.75, "meters"),
  17339. weight: math.unit(65, "kg"),
  17340. name: "Front",
  17341. image: {
  17342. source: "./media/characters/jayne-folest/front.svg",
  17343. extra: 2115 / 2007,
  17344. bottom: 0.02
  17345. }
  17346. },
  17347. back: {
  17348. height: math.unit(1.75, "meters"),
  17349. weight: math.unit(65, "kg"),
  17350. name: "Back",
  17351. image: {
  17352. source: "./media/characters/jayne-folest/back.svg",
  17353. extra: 2115 / 2007,
  17354. bottom: 0.005
  17355. }
  17356. },
  17357. frontClothed: {
  17358. height: math.unit(1.75, "meters"),
  17359. weight: math.unit(65, "kg"),
  17360. name: "Front (Clothed)",
  17361. image: {
  17362. source: "./media/characters/jayne-folest/front-clothed.svg",
  17363. extra: 2115 / 2007,
  17364. bottom: 0.035
  17365. }
  17366. },
  17367. hand: {
  17368. height: math.unit(1 / 1.260, "feet"),
  17369. name: "Hand",
  17370. image: {
  17371. source: "./media/characters/jayne-folest/hand.svg"
  17372. }
  17373. },
  17374. foot: {
  17375. height: math.unit(1 / 0.918, "feet"),
  17376. name: "Foot",
  17377. image: {
  17378. source: "./media/characters/jayne-folest/foot.svg"
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Micro",
  17385. height: math.unit(4, "cm")
  17386. },
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(1.75, "meters")
  17390. },
  17391. {
  17392. name: "Macro",
  17393. height: math.unit(47.5, "meters"),
  17394. default: true
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17400. {
  17401. front: {
  17402. height: math.unit(180, "cm"),
  17403. weight: math.unit(70, "kg"),
  17404. name: "Front",
  17405. image: {
  17406. source: "./media/characters/algier/front.svg",
  17407. extra: 596 / 572,
  17408. bottom: 0.04
  17409. }
  17410. },
  17411. back: {
  17412. height: math.unit(180, "cm"),
  17413. weight: math.unit(70, "kg"),
  17414. name: "Back",
  17415. image: {
  17416. source: "./media/characters/algier/back.svg",
  17417. extra: 596 / 572,
  17418. bottom: 0.025
  17419. }
  17420. },
  17421. frontdressed: {
  17422. height: math.unit(180, "cm"),
  17423. weight: math.unit(150, "kg"),
  17424. name: "Front-dressed",
  17425. image: {
  17426. source: "./media/characters/algier/front-dressed.svg",
  17427. extra: 596 / 572,
  17428. bottom: 0.038
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Micro",
  17435. height: math.unit(5, "cm")
  17436. },
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(180, "cm"),
  17440. default: true
  17441. },
  17442. {
  17443. name: "Macro",
  17444. height: math.unit(64, "m")
  17445. },
  17446. ]
  17447. ))
  17448. characterMakers.push(() => makeCharacter(
  17449. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17450. {
  17451. upright: {
  17452. height: math.unit(7, "feet"),
  17453. weight: math.unit(300, "lb"),
  17454. name: "Upright",
  17455. image: {
  17456. source: "./media/characters/pretzel/upright.svg",
  17457. extra: 534 / 522,
  17458. bottom: 0.065
  17459. }
  17460. },
  17461. sprawling: {
  17462. height: math.unit(3.75, "feet"),
  17463. weight: math.unit(300, "lb"),
  17464. name: "Sprawling",
  17465. image: {
  17466. source: "./media/characters/pretzel/sprawling.svg",
  17467. extra: 314 / 281,
  17468. bottom: 0.1
  17469. }
  17470. },
  17471. tongue: {
  17472. height: math.unit(2, "feet"),
  17473. name: "Tongue",
  17474. image: {
  17475. source: "./media/characters/pretzel/tongue.svg"
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Normal",
  17482. height: math.unit(7, "feet"),
  17483. default: true
  17484. },
  17485. {
  17486. name: "Oversized",
  17487. height: math.unit(15, "feet")
  17488. },
  17489. {
  17490. name: "Huge",
  17491. height: math.unit(30, "feet")
  17492. },
  17493. {
  17494. name: "Macro",
  17495. height: math.unit(250, "feet")
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17501. {
  17502. sideFront: {
  17503. height: math.unit(5 + 2 / 12, "feet"),
  17504. weight: math.unit(120, "lb"),
  17505. name: "Front Side",
  17506. image: {
  17507. source: "./media/characters/roxi/side-front.svg",
  17508. extra: 2924 / 2717,
  17509. bottom: 0.08
  17510. }
  17511. },
  17512. sideBack: {
  17513. height: math.unit(5 + 2 / 12, "feet"),
  17514. weight: math.unit(120, "lb"),
  17515. name: "Back Side",
  17516. image: {
  17517. source: "./media/characters/roxi/side-back.svg",
  17518. extra: 2904 / 2693,
  17519. bottom: 0.06
  17520. }
  17521. },
  17522. front: {
  17523. height: math.unit(5 + 2 / 12, "feet"),
  17524. weight: math.unit(120, "lb"),
  17525. name: "Front",
  17526. image: {
  17527. source: "./media/characters/roxi/front.svg",
  17528. extra: 2028 / 1907,
  17529. bottom: 0.01
  17530. }
  17531. },
  17532. frontAlt: {
  17533. height: math.unit(5 + 2 / 12, "feet"),
  17534. weight: math.unit(120, "lb"),
  17535. name: "Front (Alt)",
  17536. image: {
  17537. source: "./media/characters/roxi/front-alt.svg",
  17538. extra: 1828 / 1798,
  17539. bottom: 0.01
  17540. }
  17541. },
  17542. sitting: {
  17543. height: math.unit(2.8, "feet"),
  17544. weight: math.unit(120, "lb"),
  17545. name: "Sitting",
  17546. image: {
  17547. source: "./media/characters/roxi/sitting.svg",
  17548. extra: 2660 / 2462,
  17549. bottom: 0.1
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(5 + 2 / 12, "feet"),
  17557. default: true
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17563. {
  17564. side: {
  17565. height: math.unit(55, "feet"),
  17566. weight: math.unit(153, "tons"),
  17567. name: "Side",
  17568. image: {
  17569. source: "./media/characters/shadow/side.svg",
  17570. extra: 701 / 628,
  17571. bottom: 0.02
  17572. }
  17573. },
  17574. flying: {
  17575. height: math.unit(145, "feet"),
  17576. weight: math.unit(153, "tons"),
  17577. name: "Flying",
  17578. image: {
  17579. source: "./media/characters/shadow/flying.svg"
  17580. }
  17581. },
  17582. },
  17583. [
  17584. {
  17585. name: "Normal",
  17586. height: math.unit(55, "feet"),
  17587. default: true
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17593. {
  17594. front: {
  17595. height: math.unit(6, "feet"),
  17596. weight: math.unit(200, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/marcie/front.svg",
  17600. extra: 960 / 876,
  17601. bottom: 58 / 1017.87
  17602. }
  17603. },
  17604. },
  17605. [
  17606. {
  17607. name: "Macro",
  17608. height: math.unit(1, "mile"),
  17609. default: true
  17610. },
  17611. ]
  17612. ))
  17613. characterMakers.push(() => makeCharacter(
  17614. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17615. {
  17616. front: {
  17617. height: math.unit(7, "feet"),
  17618. weight: math.unit(200, "lb"),
  17619. name: "Front",
  17620. image: {
  17621. source: "./media/characters/kachina/front.svg",
  17622. extra: 1290.68 / 1119,
  17623. bottom: 36.5 / 1327.18
  17624. }
  17625. },
  17626. },
  17627. [
  17628. {
  17629. name: "Normal",
  17630. height: math.unit(7, "feet"),
  17631. default: true
  17632. },
  17633. ]
  17634. ))
  17635. characterMakers.push(() => makeCharacter(
  17636. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17637. {
  17638. looking: {
  17639. height: math.unit(2, "meters"),
  17640. weight: math.unit(300, "kg"),
  17641. name: "Looking",
  17642. image: {
  17643. source: "./media/characters/kash/looking.svg",
  17644. extra: 474 / 344,
  17645. bottom: 0.03
  17646. }
  17647. },
  17648. side: {
  17649. height: math.unit(2, "meters"),
  17650. weight: math.unit(300, "kg"),
  17651. name: "Side",
  17652. image: {
  17653. source: "./media/characters/kash/side.svg",
  17654. extra: 302 / 251,
  17655. bottom: 0.03
  17656. }
  17657. },
  17658. front: {
  17659. height: math.unit(2, "meters"),
  17660. weight: math.unit(300, "kg"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/kash/front.svg",
  17664. extra: 495 / 360,
  17665. bottom: 0.015
  17666. }
  17667. },
  17668. },
  17669. [
  17670. {
  17671. name: "Normal",
  17672. height: math.unit(2, "meters"),
  17673. default: true
  17674. },
  17675. {
  17676. name: "Big",
  17677. height: math.unit(3, "meters")
  17678. },
  17679. {
  17680. name: "Large",
  17681. height: math.unit(5, "meters")
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17687. {
  17688. feeding: {
  17689. height: math.unit(6.7, "feet"),
  17690. weight: math.unit(350, "lb"),
  17691. name: "Feeding",
  17692. image: {
  17693. source: "./media/characters/lalim/feeding.svg",
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Normal",
  17700. height: math.unit(6.7, "feet"),
  17701. default: true
  17702. },
  17703. ]
  17704. ))
  17705. characterMakers.push(() => makeCharacter(
  17706. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17707. {
  17708. front: {
  17709. height: math.unit(9.5, "feet"),
  17710. weight: math.unit(600, "lb"),
  17711. name: "Front",
  17712. image: {
  17713. source: "./media/characters/de'vout/front.svg",
  17714. extra: 1443 / 1328,
  17715. bottom: 0.025
  17716. }
  17717. },
  17718. back: {
  17719. height: math.unit(9.5, "feet"),
  17720. weight: math.unit(600, "lb"),
  17721. name: "Back",
  17722. image: {
  17723. source: "./media/characters/de'vout/back.svg",
  17724. extra: 1443 / 1328
  17725. }
  17726. },
  17727. frontDressed: {
  17728. height: math.unit(9.5, "feet"),
  17729. weight: math.unit(600, "lb"),
  17730. name: "Front (Dressed",
  17731. image: {
  17732. source: "./media/characters/de'vout/front-dressed.svg",
  17733. extra: 1443 / 1328,
  17734. bottom: 0.025
  17735. }
  17736. },
  17737. backDressed: {
  17738. height: math.unit(9.5, "feet"),
  17739. weight: math.unit(600, "lb"),
  17740. name: "Back (Dressed",
  17741. image: {
  17742. source: "./media/characters/de'vout/back-dressed.svg",
  17743. extra: 1443 / 1328
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(9.5, "feet"),
  17751. default: true
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(8, "feet"),
  17760. weight: math.unit(225, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/talana/front.svg",
  17764. extra: 1410 / 1300,
  17765. bottom: 0.015
  17766. }
  17767. },
  17768. frontDressed: {
  17769. height: math.unit(8, "feet"),
  17770. weight: math.unit(225, "lb"),
  17771. name: "Front (Dressed",
  17772. image: {
  17773. source: "./media/characters/talana/front-dressed.svg",
  17774. extra: 1410 / 1300,
  17775. bottom: 0.015
  17776. }
  17777. },
  17778. },
  17779. [
  17780. {
  17781. name: "Normal",
  17782. height: math.unit(8, "feet"),
  17783. default: true
  17784. },
  17785. ]
  17786. ))
  17787. characterMakers.push(() => makeCharacter(
  17788. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17789. {
  17790. side: {
  17791. height: math.unit(7.2, "feet"),
  17792. weight: math.unit(150, "lb"),
  17793. name: "Side",
  17794. image: {
  17795. source: "./media/characters/xeauvok/side.svg",
  17796. extra: 1975 / 1523,
  17797. bottom: 0.07
  17798. }
  17799. },
  17800. },
  17801. [
  17802. {
  17803. name: "Normal",
  17804. height: math.unit(7.2, "feet"),
  17805. default: true
  17806. },
  17807. ]
  17808. ))
  17809. characterMakers.push(() => makeCharacter(
  17810. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17811. {
  17812. side: {
  17813. height: math.unit(10, "feet"),
  17814. weight: math.unit(900, "kg"),
  17815. name: "Side",
  17816. image: {
  17817. source: "./media/characters/zara/side.svg",
  17818. extra: 504 / 498
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(10, "feet"),
  17826. default: true
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17832. {
  17833. side: {
  17834. height: math.unit(6, "feet"),
  17835. weight: math.unit(150, "lb"),
  17836. name: "Side",
  17837. image: {
  17838. source: "./media/characters/richard-dragon/side.svg",
  17839. extra: 845 / 340,
  17840. bottom: 0.017
  17841. }
  17842. },
  17843. maw: {
  17844. height: math.unit(2.97, "feet"),
  17845. name: "Maw",
  17846. image: {
  17847. source: "./media/characters/richard-dragon/maw.svg"
  17848. }
  17849. },
  17850. },
  17851. [
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(4, "feet"),
  17859. weight: math.unit(100, "lb"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/richard-smeargle/front.svg",
  17863. extra: 2952 / 2820,
  17864. bottom: 0.028
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(4, "feet"),
  17872. default: true
  17873. },
  17874. {
  17875. name: "Dynamax",
  17876. height: math.unit(20, "meters")
  17877. },
  17878. ]
  17879. ))
  17880. characterMakers.push(() => makeCharacter(
  17881. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17882. {
  17883. front: {
  17884. height: math.unit(6, "feet"),
  17885. weight: math.unit(110, "lb"),
  17886. name: "Front",
  17887. image: {
  17888. source: "./media/characters/klay/front.svg",
  17889. extra: 962 / 883,
  17890. bottom: 0.04
  17891. }
  17892. },
  17893. back: {
  17894. height: math.unit(6, "feet"),
  17895. weight: math.unit(110, "lb"),
  17896. name: "Back",
  17897. image: {
  17898. source: "./media/characters/klay/back.svg",
  17899. extra: 962 / 883
  17900. }
  17901. },
  17902. beans: {
  17903. height: math.unit(1.15, "feet"),
  17904. name: "Beans",
  17905. image: {
  17906. source: "./media/characters/klay/beans.svg"
  17907. }
  17908. },
  17909. },
  17910. [
  17911. {
  17912. name: "Micro",
  17913. height: math.unit(6, "inches")
  17914. },
  17915. {
  17916. name: "Mini",
  17917. height: math.unit(3, "feet")
  17918. },
  17919. {
  17920. name: "Normal",
  17921. height: math.unit(6, "feet"),
  17922. default: true
  17923. },
  17924. {
  17925. name: "Big",
  17926. height: math.unit(25, "feet")
  17927. },
  17928. {
  17929. name: "Macro",
  17930. height: math.unit(100, "feet")
  17931. },
  17932. {
  17933. name: "Megamacro",
  17934. height: math.unit(400, "feet")
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17940. {
  17941. front: {
  17942. height: math.unit(6, "feet"),
  17943. weight: math.unit(160, "lb"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/marcus/front.svg",
  17947. extra: 734 / 676,
  17948. bottom: 0.03
  17949. }
  17950. },
  17951. },
  17952. [
  17953. {
  17954. name: "Little",
  17955. height: math.unit(6, "feet")
  17956. },
  17957. {
  17958. name: "Normal",
  17959. height: math.unit(110, "feet"),
  17960. default: true
  17961. },
  17962. {
  17963. name: "Macro",
  17964. height: math.unit(250, "feet")
  17965. },
  17966. {
  17967. name: "Megamacro",
  17968. height: math.unit(1000, "feet")
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17974. {
  17975. front: {
  17976. height: math.unit(7, "feet"),
  17977. weight: math.unit(275, "lb"),
  17978. name: "Front",
  17979. image: {
  17980. source: "./media/characters/claude-delroute/front.svg",
  17981. extra: 230 / 214,
  17982. bottom: 0.007
  17983. }
  17984. },
  17985. side: {
  17986. height: math.unit(7, "feet"),
  17987. weight: math.unit(275, "lb"),
  17988. name: "Side",
  17989. image: {
  17990. source: "./media/characters/claude-delroute/side.svg",
  17991. extra: 222 / 214,
  17992. bottom: 0.01
  17993. }
  17994. },
  17995. back: {
  17996. height: math.unit(7, "feet"),
  17997. weight: math.unit(275, "lb"),
  17998. name: "Back",
  17999. image: {
  18000. source: "./media/characters/claude-delroute/back.svg",
  18001. extra: 230 / 214,
  18002. bottom: 0.015
  18003. }
  18004. },
  18005. maw: {
  18006. height: math.unit(0.6407, "meters"),
  18007. name: "Maw",
  18008. image: {
  18009. source: "./media/characters/claude-delroute/maw.svg"
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(7, "feet"),
  18017. default: true
  18018. },
  18019. {
  18020. name: "Lorge",
  18021. height: math.unit(20, "feet")
  18022. },
  18023. ]
  18024. ))
  18025. characterMakers.push(() => makeCharacter(
  18026. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18027. {
  18028. front: {
  18029. height: math.unit(8 + 4 / 12, "feet"),
  18030. weight: math.unit(600, "lb"),
  18031. name: "Front",
  18032. image: {
  18033. source: "./media/characters/dragonien/front.svg",
  18034. extra: 100 / 94,
  18035. bottom: 3.3 / 103.3445
  18036. }
  18037. },
  18038. back: {
  18039. height: math.unit(8 + 4 / 12, "feet"),
  18040. weight: math.unit(600, "lb"),
  18041. name: "Back",
  18042. image: {
  18043. source: "./media/characters/dragonien/back.svg",
  18044. extra: 776 / 746,
  18045. bottom: 6.4 / 782.0616
  18046. }
  18047. },
  18048. foot: {
  18049. height: math.unit(1.54, "feet"),
  18050. name: "Foot",
  18051. image: {
  18052. source: "./media/characters/dragonien/foot.svg",
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Normal",
  18059. height: math.unit(8 + 4 / 12, "feet"),
  18060. default: true
  18061. },
  18062. {
  18063. name: "Macro",
  18064. height: math.unit(200, "feet")
  18065. },
  18066. {
  18067. name: "Megamacro",
  18068. height: math.unit(1, "mile")
  18069. },
  18070. {
  18071. name: "Gigamacro",
  18072. height: math.unit(1000, "miles")
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(5 + 2 / 12, "feet"),
  18081. weight: math.unit(110, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/desta/front.svg",
  18085. extra: 767 / 726,
  18086. bottom: 11.7 / 779
  18087. }
  18088. },
  18089. back: {
  18090. height: math.unit(5 + 2 / 12, "feet"),
  18091. weight: math.unit(110, "lb"),
  18092. name: "Back",
  18093. image: {
  18094. source: "./media/characters/desta/back.svg",
  18095. extra: 777 / 728,
  18096. bottom: 6 / 784
  18097. }
  18098. },
  18099. frontAlt: {
  18100. height: math.unit(5 + 2 / 12, "feet"),
  18101. weight: math.unit(110, "lb"),
  18102. name: "Front",
  18103. image: {
  18104. source: "./media/characters/desta/front-alt.svg",
  18105. extra: 1482 / 1417
  18106. }
  18107. },
  18108. side: {
  18109. height: math.unit(5 + 2 / 12, "feet"),
  18110. weight: math.unit(110, "lb"),
  18111. name: "Side",
  18112. image: {
  18113. source: "./media/characters/desta/side.svg",
  18114. extra: 2579 / 2491,
  18115. bottom: 0.053
  18116. }
  18117. },
  18118. },
  18119. [
  18120. {
  18121. name: "Micro",
  18122. height: math.unit(6, "inches")
  18123. },
  18124. {
  18125. name: "Normal",
  18126. height: math.unit(5 + 2 / 12, "feet"),
  18127. default: true
  18128. },
  18129. {
  18130. name: "Macro",
  18131. height: math.unit(62, "feet")
  18132. },
  18133. {
  18134. name: "Megamacro",
  18135. height: math.unit(1800, "feet")
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18141. {
  18142. front: {
  18143. height: math.unit(10, "feet"),
  18144. weight: math.unit(700, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/storm-alystar/front.svg",
  18148. extra: 2112 / 1898,
  18149. bottom: 0.034
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Micro",
  18156. height: math.unit(3.5, "inches")
  18157. },
  18158. {
  18159. name: "Normal",
  18160. height: math.unit(10, "feet"),
  18161. default: true
  18162. },
  18163. {
  18164. name: "Macro",
  18165. height: math.unit(400, "feet")
  18166. },
  18167. {
  18168. name: "Deific",
  18169. height: math.unit(60, "miles")
  18170. },
  18171. ]
  18172. ))
  18173. characterMakers.push(() => makeCharacter(
  18174. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18175. {
  18176. front: {
  18177. height: math.unit(2.35, "meters"),
  18178. weight: math.unit(119, "kg"),
  18179. name: "Front",
  18180. image: {
  18181. source: "./media/characters/ilia/front.svg",
  18182. extra: 1285 / 1255,
  18183. bottom: 0.06
  18184. }
  18185. },
  18186. },
  18187. [
  18188. {
  18189. name: "Normal",
  18190. height: math.unit(2.35, "meters")
  18191. },
  18192. {
  18193. name: "Macro",
  18194. height: math.unit(140, "meters"),
  18195. default: true
  18196. },
  18197. {
  18198. name: "Megamacro",
  18199. height: math.unit(100, "miles")
  18200. },
  18201. ]
  18202. ))
  18203. characterMakers.push(() => makeCharacter(
  18204. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18205. {
  18206. front: {
  18207. height: math.unit(6 + 5 / 12, "feet"),
  18208. weight: math.unit(190, "lb"),
  18209. name: "Front",
  18210. image: {
  18211. source: "./media/characters/kingdead/front.svg",
  18212. extra: 1228 / 1177
  18213. }
  18214. },
  18215. },
  18216. [
  18217. {
  18218. name: "Micro",
  18219. height: math.unit(7, "inches")
  18220. },
  18221. {
  18222. name: "Normal",
  18223. height: math.unit(6 + 5 / 12, "feet")
  18224. },
  18225. {
  18226. name: "Macro",
  18227. height: math.unit(150, "feet"),
  18228. default: true
  18229. },
  18230. {
  18231. name: "Megamacro",
  18232. height: math.unit(200, "miles")
  18233. },
  18234. ]
  18235. ))
  18236. characterMakers.push(() => makeCharacter(
  18237. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18238. {
  18239. front: {
  18240. height: math.unit(8, "feet"),
  18241. weight: math.unit(600, "lb"),
  18242. name: "Front",
  18243. image: {
  18244. source: "./media/characters/kyrehx/front.svg",
  18245. extra: 1195 / 1095,
  18246. bottom: 0.034
  18247. }
  18248. },
  18249. },
  18250. [
  18251. {
  18252. name: "Micro",
  18253. height: math.unit(2, "inches")
  18254. },
  18255. {
  18256. name: "Normal",
  18257. height: math.unit(8, "feet"),
  18258. default: true
  18259. },
  18260. {
  18261. name: "Macro",
  18262. height: math.unit(255, "feet")
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18268. {
  18269. front: {
  18270. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18271. weight: math.unit(184, "lb"),
  18272. name: "Front",
  18273. image: {
  18274. source: "./media/characters/xang/front.svg",
  18275. extra: 845 / 755
  18276. }
  18277. },
  18278. },
  18279. [
  18280. {
  18281. name: "Normal",
  18282. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18283. default: true
  18284. },
  18285. {
  18286. name: "Macro",
  18287. height: math.unit(0.935 * 146, "feet")
  18288. },
  18289. {
  18290. name: "Megamacro",
  18291. height: math.unit(0.935 * 3, "miles")
  18292. },
  18293. ]
  18294. ))
  18295. characterMakers.push(() => makeCharacter(
  18296. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18297. {
  18298. frontDressed: {
  18299. height: math.unit(5 + 7 / 12, "feet"),
  18300. weight: math.unit(140, "lb"),
  18301. name: "Front (Dressed)",
  18302. image: {
  18303. source: "./media/characters/doc-weardno/front-dressed.svg",
  18304. extra: 263 / 234
  18305. }
  18306. },
  18307. backDressed: {
  18308. height: math.unit(5 + 7 / 12, "feet"),
  18309. weight: math.unit(140, "lb"),
  18310. name: "Back (Dressed)",
  18311. image: {
  18312. source: "./media/characters/doc-weardno/back-dressed.svg",
  18313. extra: 266 / 238
  18314. }
  18315. },
  18316. front: {
  18317. height: math.unit(5 + 7 / 12, "feet"),
  18318. weight: math.unit(140, "lb"),
  18319. name: "Front",
  18320. image: {
  18321. source: "./media/characters/doc-weardno/front.svg",
  18322. extra: 254 / 233
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Micro",
  18329. height: math.unit(3, "inches")
  18330. },
  18331. {
  18332. name: "Normal",
  18333. height: math.unit(5 + 7 / 12, "feet"),
  18334. default: true
  18335. },
  18336. {
  18337. name: "Macro",
  18338. height: math.unit(25, "feet")
  18339. },
  18340. {
  18341. name: "Megamacro",
  18342. height: math.unit(2, "miles")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(6 + 2 / 12, "feet"),
  18351. weight: math.unit(153, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/seth-whilst/front.svg",
  18355. bottom: 0.07
  18356. }
  18357. },
  18358. },
  18359. [
  18360. {
  18361. name: "Micro",
  18362. height: math.unit(5, "inches")
  18363. },
  18364. {
  18365. name: "Normal",
  18366. height: math.unit(6 + 2 / 12, "feet"),
  18367. default: true
  18368. },
  18369. ]
  18370. ))
  18371. characterMakers.push(() => makeCharacter(
  18372. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18373. {
  18374. front: {
  18375. height: math.unit(3, "inches"),
  18376. weight: math.unit(8, "grams"),
  18377. name: "Front",
  18378. image: {
  18379. source: "./media/characters/pocket-jabari/front.svg",
  18380. extra: 1024 / 974,
  18381. bottom: 0.039
  18382. }
  18383. },
  18384. },
  18385. [
  18386. {
  18387. name: "Minimicro",
  18388. height: math.unit(8, "mm")
  18389. },
  18390. {
  18391. name: "Micro",
  18392. height: math.unit(3, "inches"),
  18393. default: true
  18394. },
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(3, "feet")
  18398. },
  18399. ]
  18400. ))
  18401. characterMakers.push(() => makeCharacter(
  18402. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18403. {
  18404. front: {
  18405. height: math.unit(15, "feet"),
  18406. weight: math.unit(3280, "lb"),
  18407. name: "Front",
  18408. image: {
  18409. source: "./media/characters/sapphy/front.svg",
  18410. extra: 671 / 577,
  18411. bottom: 0.085
  18412. }
  18413. },
  18414. back: {
  18415. height: math.unit(15, "feet"),
  18416. weight: math.unit(3280, "lb"),
  18417. name: "Back",
  18418. image: {
  18419. source: "./media/characters/sapphy/back.svg",
  18420. extra: 631 / 607,
  18421. bottom: 0.045
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Normal",
  18428. height: math.unit(15, "feet")
  18429. },
  18430. {
  18431. name: "Casual Macro",
  18432. height: math.unit(120, "feet")
  18433. },
  18434. {
  18435. name: "Macro",
  18436. height: math.unit(2150, "feet"),
  18437. default: true
  18438. },
  18439. {
  18440. name: "Megamacro",
  18441. height: math.unit(8, "miles")
  18442. },
  18443. {
  18444. name: "Galaxy Mom",
  18445. height: math.unit(6, "megalightyears")
  18446. },
  18447. ]
  18448. ))
  18449. characterMakers.push(() => makeCharacter(
  18450. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18451. {
  18452. front: {
  18453. height: math.unit(6, "feet"),
  18454. weight: math.unit(170, "lb"),
  18455. name: "Front",
  18456. image: {
  18457. source: "./media/characters/kiro/front.svg",
  18458. extra: 1064 / 1012,
  18459. bottom: 0.052
  18460. }
  18461. },
  18462. },
  18463. [
  18464. {
  18465. name: "Micro",
  18466. height: math.unit(6, "inches")
  18467. },
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(6, "feet"),
  18471. default: true
  18472. },
  18473. {
  18474. name: "Macro",
  18475. height: math.unit(72, "feet")
  18476. },
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18481. {
  18482. front: {
  18483. height: math.unit(5 + 9 / 12, "feet"),
  18484. weight: math.unit(175, "lb"),
  18485. name: "Front",
  18486. image: {
  18487. source: "./media/characters/irishfox/front.svg",
  18488. extra: 1912 / 1680,
  18489. bottom: 0.02
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Nano",
  18496. height: math.unit(1, "mm")
  18497. },
  18498. {
  18499. name: "Micro",
  18500. height: math.unit(2, "inches")
  18501. },
  18502. {
  18503. name: "Normal",
  18504. height: math.unit(5 + 9 / 12, "feet"),
  18505. default: true
  18506. },
  18507. {
  18508. name: "Macro",
  18509. height: math.unit(45, "feet")
  18510. },
  18511. ]
  18512. ))
  18513. characterMakers.push(() => makeCharacter(
  18514. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18515. {
  18516. front: {
  18517. height: math.unit(6 + 1 / 12, "feet"),
  18518. weight: math.unit(75, "lb"),
  18519. name: "Front",
  18520. image: {
  18521. source: "./media/characters/aronai-sieyes/front.svg",
  18522. extra: 1556 / 1480,
  18523. bottom: 0.015
  18524. }
  18525. },
  18526. side: {
  18527. height: math.unit(6 + 1 / 12, "feet"),
  18528. weight: math.unit(75, "lb"),
  18529. name: "Side",
  18530. image: {
  18531. source: "./media/characters/aronai-sieyes/side.svg",
  18532. extra: 1433 / 1390,
  18533. bottom: 0.0393
  18534. }
  18535. },
  18536. back: {
  18537. height: math.unit(6 + 1 / 12, "feet"),
  18538. weight: math.unit(75, "lb"),
  18539. name: "Back",
  18540. image: {
  18541. source: "./media/characters/aronai-sieyes/back.svg",
  18542. extra: 1544 / 1494,
  18543. bottom: 0.02
  18544. }
  18545. },
  18546. frontClothed: {
  18547. height: math.unit(6 + 1 / 12, "feet"),
  18548. weight: math.unit(75, "lb"),
  18549. name: "Front (Clothed)",
  18550. image: {
  18551. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18552. extra: 1582 / 1527
  18553. }
  18554. },
  18555. feral: {
  18556. height: math.unit(18, "feet"),
  18557. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18558. name: "Feral",
  18559. image: {
  18560. source: "./media/characters/aronai-sieyes/feral.svg",
  18561. extra: 1530 / 1240,
  18562. bottom: 0.035
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Micro",
  18569. height: math.unit(2, "inches")
  18570. },
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(6 + 1 / 12, "feet"),
  18574. default: true
  18575. }
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18580. {
  18581. front: {
  18582. height: math.unit(12, "feet"),
  18583. weight: math.unit(410, "kg"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/xuna/front.svg",
  18587. extra: 2184 / 1980
  18588. }
  18589. },
  18590. side: {
  18591. height: math.unit(12, "feet"),
  18592. weight: math.unit(410, "kg"),
  18593. name: "Side",
  18594. image: {
  18595. source: "./media/characters/xuna/side.svg",
  18596. extra: 2184 / 1980
  18597. }
  18598. },
  18599. back: {
  18600. height: math.unit(12, "feet"),
  18601. weight: math.unit(410, "kg"),
  18602. name: "Back",
  18603. image: {
  18604. source: "./media/characters/xuna/back.svg",
  18605. extra: 2184 / 1980
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Nano glow",
  18612. height: math.unit(10, "nm")
  18613. },
  18614. {
  18615. name: "Micro floof",
  18616. height: math.unit(0.3, "m")
  18617. },
  18618. {
  18619. name: "Huggable softy boi",
  18620. height: math.unit(3.6576, "m"),
  18621. default: true
  18622. },
  18623. {
  18624. name: "Admirable floof",
  18625. height: math.unit(80, "meters")
  18626. },
  18627. {
  18628. name: "Gentle macro",
  18629. height: math.unit(300, "meters")
  18630. },
  18631. {
  18632. name: "Very careful floof",
  18633. height: math.unit(3200, "meters")
  18634. },
  18635. {
  18636. name: "The mega floof",
  18637. height: math.unit(36000, "meters")
  18638. },
  18639. {
  18640. name: "Giga-fur-Wicker",
  18641. height: math.unit(4800000, "meters")
  18642. },
  18643. {
  18644. name: "Licky world",
  18645. height: math.unit(20000000, "meters")
  18646. },
  18647. {
  18648. name: "Floofy cyan sun",
  18649. height: math.unit(1500000000, "meters")
  18650. },
  18651. {
  18652. name: "Milky Wicker",
  18653. height: math.unit(1000000000000000000000, "meters")
  18654. },
  18655. {
  18656. name: "The observing Wicker",
  18657. height: math.unit(999999999999999999999999999, "meters")
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18663. {
  18664. front: {
  18665. height: math.unit(5 + 9 / 12, "feet"),
  18666. weight: math.unit(150, "lb"),
  18667. name: "Front",
  18668. image: {
  18669. source: "./media/characters/arokha-sieyes/front.svg",
  18670. extra: 1425 / 1284,
  18671. bottom: 0.05
  18672. }
  18673. },
  18674. },
  18675. [
  18676. {
  18677. name: "Normal",
  18678. height: math.unit(5 + 9 / 12, "feet")
  18679. },
  18680. {
  18681. name: "Macro",
  18682. height: math.unit(30, "meters"),
  18683. default: true
  18684. },
  18685. ]
  18686. ))
  18687. characterMakers.push(() => makeCharacter(
  18688. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18689. {
  18690. front: {
  18691. height: math.unit(6, "feet"),
  18692. weight: math.unit(180, "lb"),
  18693. name: "Front",
  18694. image: {
  18695. source: "./media/characters/arokh-sieyes/front.svg",
  18696. extra: 1830 / 1769,
  18697. bottom: 0.01
  18698. }
  18699. },
  18700. },
  18701. [
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(6, "feet")
  18705. },
  18706. {
  18707. name: "Macro",
  18708. height: math.unit(30, "meters"),
  18709. default: true
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18715. {
  18716. side: {
  18717. height: math.unit(13 + 1 / 12, "feet"),
  18718. weight: math.unit(8.5, "tonnes"),
  18719. name: "Side",
  18720. image: {
  18721. source: "./media/characters/goldeneye/side.svg",
  18722. extra: 1182 / 778,
  18723. bottom: 0.067
  18724. }
  18725. },
  18726. paw: {
  18727. height: math.unit(3.4, "feet"),
  18728. name: "Paw",
  18729. image: {
  18730. source: "./media/characters/goldeneye/paw.svg"
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Normal",
  18737. height: math.unit(13 + 1 / 12, "feet"),
  18738. default: true
  18739. },
  18740. ]
  18741. ))
  18742. characterMakers.push(() => makeCharacter(
  18743. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18744. {
  18745. front: {
  18746. height: math.unit(6 + 1 / 12, "feet"),
  18747. weight: math.unit(210, "lb"),
  18748. name: "Front",
  18749. image: {
  18750. source: "./media/characters/leonardo-lycheborne/front.svg",
  18751. extra: 390 / 365,
  18752. bottom: 0.032
  18753. }
  18754. },
  18755. side: {
  18756. height: math.unit(6 + 1 / 12, "feet"),
  18757. weight: math.unit(210, "lb"),
  18758. name: "Side",
  18759. image: {
  18760. source: "./media/characters/leonardo-lycheborne/side.svg",
  18761. extra: 390 / 365,
  18762. bottom: 0.005
  18763. }
  18764. },
  18765. back: {
  18766. height: math.unit(6 + 1 / 12, "feet"),
  18767. weight: math.unit(210, "lb"),
  18768. name: "Back",
  18769. image: {
  18770. source: "./media/characters/leonardo-lycheborne/back.svg",
  18771. extra: 392 / 366,
  18772. bottom: 0.01
  18773. }
  18774. },
  18775. hand: {
  18776. height: math.unit(1.08, "feet"),
  18777. name: "Hand",
  18778. image: {
  18779. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18780. }
  18781. },
  18782. foot: {
  18783. height: math.unit(1.32, "feet"),
  18784. name: "Foot",
  18785. image: {
  18786. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18787. }
  18788. },
  18789. were: {
  18790. height: math.unit(20, "feet"),
  18791. weight: math.unit(7800, "lb"),
  18792. name: "Were",
  18793. image: {
  18794. source: "./media/characters/leonardo-lycheborne/were.svg",
  18795. extra: 308 / 294,
  18796. bottom: 0.048
  18797. }
  18798. },
  18799. feral: {
  18800. height: math.unit(7.5, "feet"),
  18801. weight: math.unit(600, "lb"),
  18802. name: "Feral",
  18803. image: {
  18804. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18805. extra: 210 / 186,
  18806. bottom: 0.108
  18807. }
  18808. },
  18809. taur: {
  18810. height: math.unit(11, "feet"),
  18811. weight: math.unit(3300, "lb"),
  18812. name: "Taur",
  18813. image: {
  18814. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18815. extra: 320 / 303,
  18816. bottom: 0.025
  18817. }
  18818. },
  18819. barghest: {
  18820. height: math.unit(11, "feet"),
  18821. weight: math.unit(1300, "lb"),
  18822. name: "Barghest",
  18823. image: {
  18824. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18825. extra: 323 / 302,
  18826. bottom: 0.027
  18827. }
  18828. },
  18829. dick: {
  18830. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18831. name: "Dick",
  18832. image: {
  18833. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18834. }
  18835. },
  18836. dickWere: {
  18837. height: math.unit((20) / 3.8, "feet"),
  18838. name: "Dick (Were)",
  18839. image: {
  18840. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Normal",
  18847. height: math.unit(6 + 1 / 12, "feet"),
  18848. default: true
  18849. },
  18850. ]
  18851. ))
  18852. characterMakers.push(() => makeCharacter(
  18853. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18854. {
  18855. front: {
  18856. height: math.unit(10, "feet"),
  18857. weight: math.unit(350, "lb"),
  18858. name: "Front",
  18859. image: {
  18860. source: "./media/characters/jet/front.svg",
  18861. extra: 2050 / 1980,
  18862. bottom: 0.013
  18863. }
  18864. },
  18865. back: {
  18866. height: math.unit(10, "feet"),
  18867. weight: math.unit(350, "lb"),
  18868. name: "Back",
  18869. image: {
  18870. source: "./media/characters/jet/back.svg",
  18871. extra: 2050 / 1980,
  18872. bottom: 0.013
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Micro",
  18879. height: math.unit(6, "inches")
  18880. },
  18881. {
  18882. name: "Normal",
  18883. height: math.unit(10, "feet"),
  18884. default: true
  18885. },
  18886. {
  18887. name: "Macro",
  18888. height: math.unit(100, "feet")
  18889. },
  18890. ]
  18891. ))
  18892. characterMakers.push(() => makeCharacter(
  18893. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18894. {
  18895. front: {
  18896. height: math.unit(15, "feet"),
  18897. weight: math.unit(2800, "lb"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/tanarath/front.svg",
  18901. extra: 2392 / 2220,
  18902. bottom: 0.03
  18903. }
  18904. },
  18905. back: {
  18906. height: math.unit(15, "feet"),
  18907. weight: math.unit(2800, "lb"),
  18908. name: "Back",
  18909. image: {
  18910. source: "./media/characters/tanarath/back.svg",
  18911. extra: 2392 / 2220,
  18912. bottom: 0.03
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Normal",
  18919. height: math.unit(15, "feet"),
  18920. default: true
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(7 + 1 / 12, "feet"),
  18929. weight: math.unit(175, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/patty-cattybatty/front.svg",
  18933. extra: 908 / 874,
  18934. bottom: 0.025
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Micro",
  18941. height: math.unit(1, "inch")
  18942. },
  18943. {
  18944. name: "Normal",
  18945. height: math.unit(7 + 1 / 12, "feet")
  18946. },
  18947. {
  18948. name: "Mini Macro",
  18949. height: math.unit(155, "feet")
  18950. },
  18951. {
  18952. name: "Macro",
  18953. height: math.unit(1077, "feet")
  18954. },
  18955. {
  18956. name: "Mega Macro",
  18957. height: math.unit(47650, "feet"),
  18958. default: true
  18959. },
  18960. {
  18961. name: "Giga Macro",
  18962. height: math.unit(440, "miles")
  18963. },
  18964. {
  18965. name: "Tera Macro",
  18966. height: math.unit(8700, "miles")
  18967. },
  18968. {
  18969. name: "Planetary Macro",
  18970. height: math.unit(32700, "miles")
  18971. },
  18972. {
  18973. name: "Solar Macro",
  18974. height: math.unit(550000, "miles")
  18975. },
  18976. {
  18977. name: "Celestial Macro",
  18978. height: math.unit(2.5, "AU")
  18979. },
  18980. ]
  18981. ))
  18982. characterMakers.push(() => makeCharacter(
  18983. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18984. {
  18985. front: {
  18986. height: math.unit(4 + 5 / 12, "feet"),
  18987. weight: math.unit(90, "lb"),
  18988. name: "Front",
  18989. image: {
  18990. source: "./media/characters/cappu/front.svg",
  18991. extra: 1247 / 1152,
  18992. bottom: 0.012
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(4 + 5 / 12, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19006. {
  19007. frontDressed: {
  19008. height: math.unit(70, "cm"),
  19009. weight: math.unit(6, "kg"),
  19010. name: "Front (Dressed)",
  19011. image: {
  19012. source: "./media/characters/sebi/front-dressed.svg",
  19013. extra: 713.5 / 686.5,
  19014. bottom: 0.003
  19015. }
  19016. },
  19017. front: {
  19018. height: math.unit(70, "cm"),
  19019. weight: math.unit(5, "kg"),
  19020. name: "Front",
  19021. image: {
  19022. source: "./media/characters/sebi/front.svg",
  19023. extra: 713.5 / 686.5,
  19024. bottom: 0.003
  19025. }
  19026. }
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(70, "cm"),
  19032. default: true
  19033. },
  19034. {
  19035. name: "Macro",
  19036. height: math.unit(8, "meters")
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19042. {
  19043. front: {
  19044. height: math.unit(6, "feet"),
  19045. weight: math.unit(150, "lb"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/typhek/front.svg",
  19049. extra: 1948 / 1929,
  19050. bottom: 0.025
  19051. }
  19052. },
  19053. side: {
  19054. height: math.unit(6, "feet"),
  19055. weight: math.unit(150, "lb"),
  19056. name: "Side",
  19057. image: {
  19058. source: "./media/characters/typhek/side.svg",
  19059. extra: 2034 / 2010,
  19060. bottom: 0.003
  19061. }
  19062. },
  19063. back: {
  19064. height: math.unit(6, "feet"),
  19065. weight: math.unit(150, "lb"),
  19066. name: "Back",
  19067. image: {
  19068. source: "./media/characters/typhek/back.svg",
  19069. extra: 2005 / 1978,
  19070. bottom: 0.004
  19071. }
  19072. },
  19073. palm: {
  19074. height: math.unit(1.2, "feet"),
  19075. name: "Palm",
  19076. image: {
  19077. source: "./media/characters/typhek/palm.svg"
  19078. }
  19079. },
  19080. fist: {
  19081. height: math.unit(1.1, "feet"),
  19082. name: "Fist",
  19083. image: {
  19084. source: "./media/characters/typhek/fist.svg"
  19085. }
  19086. },
  19087. foot: {
  19088. height: math.unit(1.57, "feet"),
  19089. name: "Foot",
  19090. image: {
  19091. source: "./media/characters/typhek/foot.svg"
  19092. }
  19093. },
  19094. sole: {
  19095. height: math.unit(2.05, "feet"),
  19096. name: "Sole",
  19097. image: {
  19098. source: "./media/characters/typhek/sole.svg"
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Macro",
  19105. height: math.unit(40, "stories"),
  19106. default: true
  19107. },
  19108. {
  19109. name: "Megamacro",
  19110. height: math.unit(1, "mile")
  19111. },
  19112. {
  19113. name: "Gigamacro",
  19114. height: math.unit(4000, "solarradii")
  19115. },
  19116. {
  19117. name: "Universal",
  19118. height: math.unit(1.1, "universes")
  19119. }
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19124. {
  19125. side: {
  19126. height: math.unit(5 + 7 / 12, "feet"),
  19127. weight: math.unit(150, "lb"),
  19128. name: "Side",
  19129. image: {
  19130. source: "./media/characters/kassy/side.svg",
  19131. extra: 1280 / 1225,
  19132. bottom: 0.002
  19133. }
  19134. },
  19135. front: {
  19136. height: math.unit(5 + 7 / 12, "feet"),
  19137. weight: math.unit(150, "lb"),
  19138. name: "Front",
  19139. image: {
  19140. source: "./media/characters/kassy/front.svg",
  19141. extra: 1280 / 1225,
  19142. bottom: 0.025
  19143. }
  19144. },
  19145. back: {
  19146. height: math.unit(5 + 7 / 12, "feet"),
  19147. weight: math.unit(150, "lb"),
  19148. name: "Back",
  19149. image: {
  19150. source: "./media/characters/kassy/back.svg",
  19151. extra: 1280 / 1225,
  19152. bottom: 0.002
  19153. }
  19154. },
  19155. foot: {
  19156. height: math.unit(1.266, "feet"),
  19157. name: "Foot",
  19158. image: {
  19159. source: "./media/characters/kassy/foot.svg"
  19160. }
  19161. },
  19162. },
  19163. [
  19164. {
  19165. name: "Normal",
  19166. height: math.unit(5 + 7 / 12, "feet")
  19167. },
  19168. {
  19169. name: "Macro",
  19170. height: math.unit(137, "feet"),
  19171. default: true
  19172. },
  19173. {
  19174. name: "Megamacro",
  19175. height: math.unit(1, "mile")
  19176. },
  19177. ]
  19178. ))
  19179. characterMakers.push(() => makeCharacter(
  19180. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19181. {
  19182. front: {
  19183. height: math.unit(6 + 1 / 12, "feet"),
  19184. weight: math.unit(200, "lb"),
  19185. name: "Front",
  19186. image: {
  19187. source: "./media/characters/neil/front.svg",
  19188. extra: 1326 / 1250,
  19189. bottom: 0.023
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(6 + 1 / 12, "feet"),
  19197. default: true
  19198. },
  19199. {
  19200. name: "Macro",
  19201. height: math.unit(200, "feet")
  19202. },
  19203. ]
  19204. ))
  19205. characterMakers.push(() => makeCharacter(
  19206. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19207. {
  19208. front: {
  19209. height: math.unit(5 + 9 / 12, "feet"),
  19210. weight: math.unit(190, "lb"),
  19211. name: "Front",
  19212. image: {
  19213. source: "./media/characters/atticus/front.svg",
  19214. extra: 2934 / 2785,
  19215. bottom: 0.025
  19216. }
  19217. },
  19218. },
  19219. [
  19220. {
  19221. name: "Normal",
  19222. height: math.unit(5 + 9 / 12, "feet"),
  19223. default: true
  19224. },
  19225. {
  19226. name: "Macro",
  19227. height: math.unit(180, "feet")
  19228. },
  19229. ]
  19230. ))
  19231. characterMakers.push(() => makeCharacter(
  19232. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19233. {
  19234. side: {
  19235. height: math.unit(9, "feet"),
  19236. weight: math.unit(650, "lb"),
  19237. name: "Side",
  19238. image: {
  19239. source: "./media/characters/milo/side.svg",
  19240. extra: 2644 / 2310,
  19241. bottom: 0.032
  19242. }
  19243. },
  19244. },
  19245. [
  19246. {
  19247. name: "Normal",
  19248. height: math.unit(9, "feet"),
  19249. default: true
  19250. },
  19251. {
  19252. name: "Macro",
  19253. height: math.unit(300, "feet")
  19254. },
  19255. ]
  19256. ))
  19257. characterMakers.push(() => makeCharacter(
  19258. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19259. {
  19260. side: {
  19261. height: math.unit(8, "meters"),
  19262. weight: math.unit(90000, "kg"),
  19263. name: "Side",
  19264. image: {
  19265. source: "./media/characters/ijzer/side.svg",
  19266. extra: 2756 / 1600,
  19267. bottom: 0.01
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Small",
  19274. height: math.unit(3, "meters")
  19275. },
  19276. {
  19277. name: "Normal",
  19278. height: math.unit(8, "meters"),
  19279. default: true
  19280. },
  19281. {
  19282. name: "Normal+",
  19283. height: math.unit(10, "meters")
  19284. },
  19285. {
  19286. name: "Bigger",
  19287. height: math.unit(24, "meters")
  19288. },
  19289. {
  19290. name: "Huge",
  19291. height: math.unit(80, "meters")
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19297. {
  19298. front: {
  19299. height: math.unit(6 + 2 / 12, "feet"),
  19300. weight: math.unit(153, "lb"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/luca-cervicum/front.svg",
  19304. extra: 370 / 327,
  19305. bottom: 0.015
  19306. }
  19307. },
  19308. back: {
  19309. height: math.unit(6 + 2 / 12, "feet"),
  19310. weight: math.unit(153, "lb"),
  19311. name: "Back",
  19312. image: {
  19313. source: "./media/characters/luca-cervicum/back.svg",
  19314. extra: 367 / 333,
  19315. bottom: 0.005
  19316. }
  19317. },
  19318. frontGear: {
  19319. height: math.unit(6 + 2 / 12, "feet"),
  19320. weight: math.unit(173, "lb"),
  19321. name: "Front (Gear)",
  19322. image: {
  19323. source: "./media/characters/luca-cervicum/front-gear.svg",
  19324. extra: 377 / 333,
  19325. bottom: 0.006
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(6 + 2 / 12, "feet"),
  19333. default: true
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19339. {
  19340. front: {
  19341. height: math.unit(6 + 1 / 12, "feet"),
  19342. weight: math.unit(304, "lb"),
  19343. name: "Front",
  19344. image: {
  19345. source: "./media/characters/oliver/front.svg",
  19346. extra: 157 / 143,
  19347. bottom: 0.08
  19348. }
  19349. },
  19350. },
  19351. [
  19352. {
  19353. name: "Normal",
  19354. height: math.unit(6 + 1 / 12, "feet"),
  19355. default: true
  19356. },
  19357. ]
  19358. ))
  19359. characterMakers.push(() => makeCharacter(
  19360. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19361. {
  19362. front: {
  19363. height: math.unit(5 + 7 / 12, "feet"),
  19364. weight: math.unit(140, "lb"),
  19365. name: "Front",
  19366. image: {
  19367. source: "./media/characters/shane/front.svg",
  19368. extra: 304 / 289,
  19369. bottom: 0.005
  19370. }
  19371. },
  19372. },
  19373. [
  19374. {
  19375. name: "Normal",
  19376. height: math.unit(5 + 7 / 12, "feet"),
  19377. default: true
  19378. },
  19379. ]
  19380. ))
  19381. characterMakers.push(() => makeCharacter(
  19382. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19383. {
  19384. front: {
  19385. height: math.unit(5 + 9 / 12, "feet"),
  19386. weight: math.unit(178, "lb"),
  19387. name: "Front",
  19388. image: {
  19389. source: "./media/characters/shin/front.svg",
  19390. extra: 159 / 151,
  19391. bottom: 0.015
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(5 + 9 / 12, "feet"),
  19399. default: true
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(5 + 10 / 12, "feet"),
  19408. weight: math.unit(168, "lb"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/xerxes/front.svg",
  19412. extra: 282 / 260,
  19413. bottom: 0.045
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(5 + 10 / 12, "feet"),
  19421. default: true
  19422. },
  19423. ]
  19424. ))
  19425. characterMakers.push(() => makeCharacter(
  19426. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19427. {
  19428. front: {
  19429. height: math.unit(6 + 7 / 12, "feet"),
  19430. weight: math.unit(208, "lb"),
  19431. name: "Front",
  19432. image: {
  19433. source: "./media/characters/chaska/front.svg",
  19434. extra: 332 / 319,
  19435. bottom: 0.015
  19436. }
  19437. },
  19438. },
  19439. [
  19440. {
  19441. name: "Normal",
  19442. height: math.unit(6 + 7 / 12, "feet"),
  19443. default: true
  19444. },
  19445. ]
  19446. ))
  19447. characterMakers.push(() => makeCharacter(
  19448. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19449. {
  19450. front: {
  19451. height: math.unit(5 + 8 / 12, "feet"),
  19452. weight: math.unit(208, "lb"),
  19453. name: "Front",
  19454. image: {
  19455. source: "./media/characters/enuk/front.svg",
  19456. extra: 437 / 406,
  19457. bottom: 0.02
  19458. }
  19459. },
  19460. },
  19461. [
  19462. {
  19463. name: "Normal",
  19464. height: math.unit(5 + 8 / 12, "feet"),
  19465. default: true
  19466. },
  19467. ]
  19468. ))
  19469. characterMakers.push(() => makeCharacter(
  19470. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19471. {
  19472. front: {
  19473. height: math.unit(5 + 10 / 12, "feet"),
  19474. weight: math.unit(252, "lb"),
  19475. name: "Front",
  19476. image: {
  19477. source: "./media/characters/bruun/front.svg",
  19478. extra: 197 / 187,
  19479. bottom: 0.012
  19480. }
  19481. },
  19482. },
  19483. [
  19484. {
  19485. name: "Normal",
  19486. height: math.unit(5 + 10 / 12, "feet"),
  19487. default: true
  19488. },
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19493. {
  19494. front: {
  19495. height: math.unit(6 + 10 / 12, "feet"),
  19496. weight: math.unit(255, "lb"),
  19497. name: "Front",
  19498. image: {
  19499. source: "./media/characters/alexeev/front.svg",
  19500. extra: 213 / 200,
  19501. bottom: 0.05
  19502. }
  19503. },
  19504. },
  19505. [
  19506. {
  19507. name: "Normal",
  19508. height: math.unit(6 + 10 / 12, "feet"),
  19509. default: true
  19510. },
  19511. ]
  19512. ))
  19513. characterMakers.push(() => makeCharacter(
  19514. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19515. {
  19516. front: {
  19517. height: math.unit(2 + 8 / 12, "feet"),
  19518. weight: math.unit(22, "lb"),
  19519. name: "Front",
  19520. image: {
  19521. source: "./media/characters/evelyn/front.svg",
  19522. extra: 208 / 180
  19523. }
  19524. },
  19525. },
  19526. [
  19527. {
  19528. name: "Normal",
  19529. height: math.unit(2 + 8 / 12, "feet"),
  19530. default: true
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19536. {
  19537. front: {
  19538. height: math.unit(5 + 9 / 12, "feet"),
  19539. weight: math.unit(139, "lb"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/inca/front.svg",
  19543. extra: 294 / 291,
  19544. bottom: 0.03
  19545. }
  19546. },
  19547. },
  19548. [
  19549. {
  19550. name: "Normal",
  19551. height: math.unit(5 + 9 / 12, "feet"),
  19552. default: true
  19553. },
  19554. ]
  19555. ))
  19556. characterMakers.push(() => makeCharacter(
  19557. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19558. {
  19559. front: {
  19560. height: math.unit(5 + 1 / 12, "feet"),
  19561. weight: math.unit(84, "lb"),
  19562. name: "Front",
  19563. image: {
  19564. source: "./media/characters/magdalene/front.svg",
  19565. extra: 293 / 273
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(5 + 1 / 12, "feet"),
  19573. default: true
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19579. {
  19580. front: {
  19581. height: math.unit(6 + 3 / 12, "feet"),
  19582. weight: math.unit(185, "lb"),
  19583. name: "Front",
  19584. image: {
  19585. source: "./media/characters/mera/front.svg",
  19586. extra: 291 / 277,
  19587. bottom: 0.03
  19588. }
  19589. },
  19590. },
  19591. [
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(6 + 3 / 12, "feet"),
  19595. default: true
  19596. },
  19597. ]
  19598. ))
  19599. characterMakers.push(() => makeCharacter(
  19600. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19601. {
  19602. front: {
  19603. height: math.unit(6 + 7 / 12, "feet"),
  19604. weight: math.unit(160, "lb"),
  19605. name: "Front",
  19606. image: {
  19607. source: "./media/characters/ceres/front.svg",
  19608. extra: 1023 / 950,
  19609. bottom: 0.027
  19610. }
  19611. },
  19612. back: {
  19613. height: math.unit(6 + 7 / 12, "feet"),
  19614. weight: math.unit(160, "lb"),
  19615. name: "Back",
  19616. image: {
  19617. source: "./media/characters/ceres/back.svg",
  19618. extra: 1023 / 950
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(6 + 7 / 12, "feet"),
  19626. default: true
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19632. {
  19633. front: {
  19634. height: math.unit(5 + 10 / 12, "feet"),
  19635. weight: math.unit(150, "lb"),
  19636. name: "Front",
  19637. image: {
  19638. source: "./media/characters/kris/front.svg",
  19639. extra: 885 / 803,
  19640. bottom: 0.03
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(5 + 10 / 12, "feet"),
  19648. default: true
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19654. {
  19655. front: {
  19656. height: math.unit(7, "feet"),
  19657. weight: math.unit(120, "kg"),
  19658. name: "Front",
  19659. image: {
  19660. source: "./media/characters/taluthus/front.svg",
  19661. extra: 903 / 833,
  19662. bottom: 0.015
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(7, "feet"),
  19670. default: true
  19671. },
  19672. {
  19673. name: "Macro",
  19674. height: math.unit(300, "feet")
  19675. },
  19676. ]
  19677. ))
  19678. characterMakers.push(() => makeCharacter(
  19679. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19680. {
  19681. front: {
  19682. height: math.unit(5 + 9 / 12, "feet"),
  19683. weight: math.unit(145, "lb"),
  19684. name: "Front",
  19685. image: {
  19686. source: "./media/characters/dawn/front.svg",
  19687. extra: 2094 / 2016,
  19688. bottom: 0.025
  19689. }
  19690. },
  19691. back: {
  19692. height: math.unit(5 + 9 / 12, "feet"),
  19693. weight: math.unit(160, "lb"),
  19694. name: "Back",
  19695. image: {
  19696. source: "./media/characters/dawn/back.svg",
  19697. extra: 2112 / 2080,
  19698. bottom: 0.005
  19699. }
  19700. },
  19701. },
  19702. [
  19703. {
  19704. name: "Normal",
  19705. height: math.unit(6 + 7 / 12, "feet"),
  19706. default: true
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19712. {
  19713. anthro: {
  19714. height: math.unit(8 + 3 / 12, "feet"),
  19715. weight: math.unit(450, "lb"),
  19716. name: "Anthro",
  19717. image: {
  19718. source: "./media/characters/arador/anthro.svg",
  19719. extra: 1835 / 1718,
  19720. bottom: 0.025
  19721. }
  19722. },
  19723. feral: {
  19724. height: math.unit(4, "feet"),
  19725. weight: math.unit(200, "lb"),
  19726. name: "Feral",
  19727. image: {
  19728. source: "./media/characters/arador/feral.svg",
  19729. extra: 1683 / 1514,
  19730. bottom: 0.07
  19731. }
  19732. },
  19733. },
  19734. [
  19735. {
  19736. name: "Normal",
  19737. height: math.unit(8 + 3 / 12, "feet")
  19738. },
  19739. {
  19740. name: "Macro",
  19741. height: math.unit(82.5, "feet"),
  19742. default: true
  19743. },
  19744. ]
  19745. ))
  19746. characterMakers.push(() => makeCharacter(
  19747. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19748. {
  19749. front: {
  19750. height: math.unit(5 + 10 / 12, "feet"),
  19751. weight: math.unit(125, "lb"),
  19752. name: "Front",
  19753. image: {
  19754. source: "./media/characters/dharsi/front.svg",
  19755. extra: 716 / 630,
  19756. bottom: 0.035
  19757. }
  19758. },
  19759. },
  19760. [
  19761. {
  19762. name: "Nano",
  19763. height: math.unit(100, "nm")
  19764. },
  19765. {
  19766. name: "Micro",
  19767. height: math.unit(2, "inches")
  19768. },
  19769. {
  19770. name: "Normal",
  19771. height: math.unit(5 + 10 / 12, "feet"),
  19772. default: true
  19773. },
  19774. {
  19775. name: "Macro",
  19776. height: math.unit(1000, "feet")
  19777. },
  19778. {
  19779. name: "Megamacro",
  19780. height: math.unit(10, "miles")
  19781. },
  19782. {
  19783. name: "Gigamacro",
  19784. height: math.unit(3000, "miles")
  19785. },
  19786. {
  19787. name: "Teramacro",
  19788. height: math.unit(500000, "miles")
  19789. },
  19790. {
  19791. name: "Teramacro+",
  19792. height: math.unit(30, "galaxies")
  19793. },
  19794. ]
  19795. ))
  19796. characterMakers.push(() => makeCharacter(
  19797. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19798. {
  19799. front: {
  19800. height: math.unit(6, "feet"),
  19801. weight: math.unit(150, "lb"),
  19802. name: "Front",
  19803. image: {
  19804. source: "./media/characters/deathy/front.svg",
  19805. extra: 1552 / 1463,
  19806. bottom: 0.025
  19807. }
  19808. },
  19809. side: {
  19810. height: math.unit(6, "feet"),
  19811. weight: math.unit(150, "lb"),
  19812. name: "Side",
  19813. image: {
  19814. source: "./media/characters/deathy/side.svg",
  19815. extra: 1604 / 1455,
  19816. bottom: 0.025
  19817. }
  19818. },
  19819. back: {
  19820. height: math.unit(6, "feet"),
  19821. weight: math.unit(150, "lb"),
  19822. name: "Back",
  19823. image: {
  19824. source: "./media/characters/deathy/back.svg",
  19825. extra: 1580 / 1463,
  19826. bottom: 0.005
  19827. }
  19828. },
  19829. },
  19830. [
  19831. {
  19832. name: "Micro",
  19833. height: math.unit(5, "millimeters")
  19834. },
  19835. {
  19836. name: "Normal",
  19837. height: math.unit(6 + 5 / 12, "feet"),
  19838. default: true
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19844. {
  19845. front: {
  19846. height: math.unit(16, "feet"),
  19847. weight: math.unit(4000, "lb"),
  19848. name: "Front",
  19849. image: {
  19850. source: "./media/characters/juniper/front.svg",
  19851. bottom: 0.04
  19852. }
  19853. },
  19854. },
  19855. [
  19856. {
  19857. name: "Normal",
  19858. height: math.unit(16, "feet"),
  19859. default: true
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(6, "feet"),
  19868. weight: math.unit(150, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/hipster/front.svg",
  19872. extra: 1312 / 1209,
  19873. bottom: 0.025
  19874. }
  19875. },
  19876. back: {
  19877. height: math.unit(6, "feet"),
  19878. weight: math.unit(150, "lb"),
  19879. name: "Back",
  19880. image: {
  19881. source: "./media/characters/hipster/back.svg",
  19882. extra: 1281 / 1196,
  19883. bottom: 0.01
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Micro",
  19890. height: math.unit(1, "mm")
  19891. },
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(4, "inches"),
  19895. default: true
  19896. },
  19897. {
  19898. name: "Macro",
  19899. height: math.unit(500, "feet")
  19900. },
  19901. {
  19902. name: "Megamacro",
  19903. height: math.unit(1000, "miles")
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19909. {
  19910. front: {
  19911. height: math.unit(6, "feet"),
  19912. weight: math.unit(150, "lb"),
  19913. name: "Front",
  19914. image: {
  19915. source: "./media/characters/tendirmuldr/front.svg",
  19916. extra: 1878 / 1772,
  19917. bottom: 0.015
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Megamacro",
  19924. height: math.unit(1500, "miles"),
  19925. default: true
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19931. {
  19932. front: {
  19933. height: math.unit(14, "feet"),
  19934. weight: math.unit(12000, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/mort/front.svg",
  19938. extra: 365 / 318,
  19939. bottom: 0.01
  19940. }
  19941. },
  19942. side: {
  19943. height: math.unit(14, "feet"),
  19944. weight: math.unit(12000, "lb"),
  19945. name: "Side",
  19946. image: {
  19947. source: "./media/characters/mort/side.svg",
  19948. extra: 365 / 318,
  19949. bottom: 0.052
  19950. },
  19951. default: true
  19952. },
  19953. back: {
  19954. height: math.unit(14, "feet"),
  19955. weight: math.unit(12000, "lb"),
  19956. name: "Back",
  19957. image: {
  19958. source: "./media/characters/mort/back.svg",
  19959. extra: 371 / 332,
  19960. bottom: 0.18
  19961. }
  19962. },
  19963. },
  19964. [
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(14, "feet"),
  19968. default: true
  19969. },
  19970. ]
  19971. ))
  19972. characterMakers.push(() => makeCharacter(
  19973. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19974. {
  19975. front: {
  19976. height: math.unit(8, "feet"),
  19977. weight: math.unit(1, "ton"),
  19978. name: "Front",
  19979. image: {
  19980. source: "./media/characters/lycoa/front.svg",
  19981. extra: 1875 / 1789,
  19982. bottom: 0.022
  19983. }
  19984. },
  19985. back: {
  19986. height: math.unit(8, "feet"),
  19987. weight: math.unit(1, "ton"),
  19988. name: "Back",
  19989. image: {
  19990. source: "./media/characters/lycoa/back.svg",
  19991. extra: 1835 / 1781,
  19992. bottom: 0.03
  19993. }
  19994. },
  19995. head: {
  19996. height: math.unit(2.1, "feet"),
  19997. name: "Head",
  19998. image: {
  19999. source: "./media/characters/lycoa/head.svg"
  20000. }
  20001. },
  20002. tailmaw: {
  20003. height: math.unit(1.9, "feet"),
  20004. name: "Tailmaw",
  20005. image: {
  20006. source: "./media/characters/lycoa/tailmaw.svg"
  20007. }
  20008. },
  20009. tentacles: {
  20010. height: math.unit(2.1, "feet"),
  20011. name: "Tentacles",
  20012. image: {
  20013. source: "./media/characters/lycoa/tentacles.svg"
  20014. }
  20015. },
  20016. dick: {
  20017. height: math.unit(1.73, "feet"),
  20018. name: "Dick",
  20019. image: {
  20020. source: "./media/characters/lycoa/dick.svg"
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(8, "feet"),
  20028. default: true
  20029. },
  20030. {
  20031. name: "Macro",
  20032. height: math.unit(30, "feet")
  20033. },
  20034. ]
  20035. ))
  20036. characterMakers.push(() => makeCharacter(
  20037. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20038. {
  20039. front: {
  20040. height: math.unit(4 + 2 / 12, "feet"),
  20041. weight: math.unit(70, "lb"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/naldara/front.svg",
  20045. extra: 841 / 720,
  20046. bottom: 0.04
  20047. }
  20048. },
  20049. naga: {
  20050. height: math.unit(23, "feet"),
  20051. weight: math.unit(15000, "kg"),
  20052. name: "Naga",
  20053. image: {
  20054. source: "./media/characters/naldara/naga.svg",
  20055. extra: 3290 / 2959,
  20056. bottom: 124 / 3432
  20057. }
  20058. },
  20059. },
  20060. [
  20061. {
  20062. name: "Normal",
  20063. height: math.unit(4 + 2 / 12, "feet"),
  20064. default: true
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20070. {
  20071. front: {
  20072. height: math.unit(13 + 7 / 12, "feet"),
  20073. weight: math.unit(1500, "lb"),
  20074. name: "Front",
  20075. image: {
  20076. source: "./media/characters/briar/front.svg",
  20077. extra: 626 / 596,
  20078. bottom: 0.08
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Normal",
  20085. height: math.unit(13 + 7 / 12, "feet"),
  20086. default: true
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20092. {
  20093. side: {
  20094. height: math.unit(10, "feet"),
  20095. weight: math.unit(500, "lb"),
  20096. name: "Side",
  20097. image: {
  20098. source: "./media/characters/vanguard/side.svg",
  20099. extra: 502 / 425,
  20100. bottom: 0.087
  20101. }
  20102. },
  20103. },
  20104. [
  20105. {
  20106. name: "Normal",
  20107. height: math.unit(10, "feet"),
  20108. default: true
  20109. },
  20110. ]
  20111. ))
  20112. characterMakers.push(() => makeCharacter(
  20113. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20114. {
  20115. front: {
  20116. height: math.unit(7.5, "feet"),
  20117. weight: math.unit(2, "lb"),
  20118. name: "Front",
  20119. image: {
  20120. source: "./media/characters/artemis/front.svg",
  20121. extra: 1192 / 1075,
  20122. bottom: 0.07
  20123. }
  20124. },
  20125. frontNsfw: {
  20126. height: math.unit(7.5, "feet"),
  20127. weight: math.unit(2, "lb"),
  20128. name: "Front (NSFW)",
  20129. image: {
  20130. source: "./media/characters/artemis/front-nsfw.svg",
  20131. extra: 1192 / 1075,
  20132. bottom: 0.07
  20133. }
  20134. },
  20135. frontNsfwer: {
  20136. height: math.unit(7.5, "feet"),
  20137. weight: math.unit(2, "lb"),
  20138. name: "Front (NSFW-er)",
  20139. image: {
  20140. source: "./media/characters/artemis/front-nsfwer.svg",
  20141. extra: 1192 / 1075,
  20142. bottom: 0.07
  20143. }
  20144. },
  20145. side: {
  20146. height: math.unit(7.5, "feet"),
  20147. weight: math.unit(2, "lb"),
  20148. name: "Side",
  20149. image: {
  20150. source: "./media/characters/artemis/side.svg",
  20151. extra: 1192 / 1075,
  20152. bottom: 0.07
  20153. }
  20154. },
  20155. sideNsfw: {
  20156. height: math.unit(7.5, "feet"),
  20157. weight: math.unit(2, "lb"),
  20158. name: "Side (NSFW)",
  20159. image: {
  20160. source: "./media/characters/artemis/side-nsfw.svg",
  20161. extra: 1192 / 1075,
  20162. bottom: 0.07
  20163. }
  20164. },
  20165. sideNsfwer: {
  20166. height: math.unit(7.5, "feet"),
  20167. weight: math.unit(2, "lb"),
  20168. name: "Side (NSFW-er)",
  20169. image: {
  20170. source: "./media/characters/artemis/side-nsfwer.svg",
  20171. extra: 1192 / 1075,
  20172. bottom: 0.07
  20173. }
  20174. },
  20175. maw: {
  20176. height: math.unit(1.1, "feet"),
  20177. name: "Maw",
  20178. image: {
  20179. source: "./media/characters/artemis/maw.svg"
  20180. }
  20181. },
  20182. stomach: {
  20183. height: math.unit(0.95, "feet"),
  20184. name: "Stomach",
  20185. image: {
  20186. source: "./media/characters/artemis/stomach.svg"
  20187. }
  20188. },
  20189. dickCanine: {
  20190. height: math.unit(1, "feet"),
  20191. name: "Dick (Canine)",
  20192. image: {
  20193. source: "./media/characters/artemis/dick-canine.svg"
  20194. }
  20195. },
  20196. dickEquine: {
  20197. height: math.unit(0.85, "feet"),
  20198. name: "Dick (Equine)",
  20199. image: {
  20200. source: "./media/characters/artemis/dick-equine.svg"
  20201. }
  20202. },
  20203. dickExotic: {
  20204. height: math.unit(0.85, "feet"),
  20205. name: "Dick (Exotic)",
  20206. image: {
  20207. source: "./media/characters/artemis/dick-exotic.svg"
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(7.5, "feet"),
  20215. default: true
  20216. },
  20217. {
  20218. name: "Enlarged",
  20219. height: math.unit(12, "feet")
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20225. {
  20226. front: {
  20227. height: math.unit(5 + 3 / 12, "feet"),
  20228. weight: math.unit(160, "lb"),
  20229. name: "Front",
  20230. image: {
  20231. source: "./media/characters/kira/front.svg",
  20232. extra: 906 / 786,
  20233. bottom: 0.01
  20234. }
  20235. },
  20236. back: {
  20237. height: math.unit(5 + 3 / 12, "feet"),
  20238. weight: math.unit(160, "lb"),
  20239. name: "Back",
  20240. image: {
  20241. source: "./media/characters/kira/back.svg",
  20242. extra: 882 / 757,
  20243. bottom: 0.005
  20244. }
  20245. },
  20246. frontDressed: {
  20247. height: math.unit(5 + 3 / 12, "feet"),
  20248. weight: math.unit(160, "lb"),
  20249. name: "Front (Dressed)",
  20250. image: {
  20251. source: "./media/characters/kira/front-dressed.svg",
  20252. extra: 906 / 786,
  20253. bottom: 0.01
  20254. }
  20255. },
  20256. beans: {
  20257. height: math.unit(0.92, "feet"),
  20258. name: "Beans",
  20259. image: {
  20260. source: "./media/characters/kira/beans.svg"
  20261. }
  20262. },
  20263. },
  20264. [
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(5 + 3 / 12, "feet"),
  20268. default: true
  20269. },
  20270. ]
  20271. ))
  20272. characterMakers.push(() => makeCharacter(
  20273. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20274. {
  20275. front: {
  20276. height: math.unit(5 + 4 / 12, "feet"),
  20277. weight: math.unit(145, "lb"),
  20278. name: "Front",
  20279. image: {
  20280. source: "./media/characters/scramble/front.svg",
  20281. extra: 763 / 727,
  20282. bottom: 0.05
  20283. }
  20284. },
  20285. back: {
  20286. height: math.unit(5 + 4 / 12, "feet"),
  20287. weight: math.unit(145, "lb"),
  20288. name: "Back",
  20289. image: {
  20290. source: "./media/characters/scramble/back.svg",
  20291. extra: 826 / 737,
  20292. bottom: 0.002
  20293. }
  20294. },
  20295. },
  20296. [
  20297. {
  20298. name: "Normal",
  20299. height: math.unit(5 + 4 / 12, "feet"),
  20300. default: true
  20301. },
  20302. ]
  20303. ))
  20304. characterMakers.push(() => makeCharacter(
  20305. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20306. {
  20307. side: {
  20308. height: math.unit(6 + 2 / 12, "feet"),
  20309. weight: math.unit(190, "lb"),
  20310. name: "Side",
  20311. image: {
  20312. source: "./media/characters/biscuit/side.svg",
  20313. extra: 858 / 791,
  20314. bottom: 0.044
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Normal",
  20321. height: math.unit(6 + 2 / 12, "feet"),
  20322. default: true
  20323. },
  20324. ]
  20325. ))
  20326. characterMakers.push(() => makeCharacter(
  20327. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20328. {
  20329. front: {
  20330. height: math.unit(5 + 2 / 12, "feet"),
  20331. weight: math.unit(120, "lb"),
  20332. name: "Front",
  20333. image: {
  20334. source: "./media/characters/poffin/front.svg",
  20335. extra: 786 / 680,
  20336. bottom: 0.005
  20337. }
  20338. },
  20339. },
  20340. [
  20341. {
  20342. name: "Normal",
  20343. height: math.unit(5 + 2 / 12, "feet"),
  20344. default: true
  20345. },
  20346. ]
  20347. ))
  20348. characterMakers.push(() => makeCharacter(
  20349. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20350. {
  20351. front: {
  20352. height: math.unit(6 + 3 / 12, "feet"),
  20353. weight: math.unit(519, "lb"),
  20354. name: "Front",
  20355. image: {
  20356. source: "./media/characters/dhari/front.svg",
  20357. extra: 1048 / 946,
  20358. bottom: 0.015
  20359. }
  20360. },
  20361. back: {
  20362. height: math.unit(6 + 3 / 12, "feet"),
  20363. weight: math.unit(519, "lb"),
  20364. name: "Back",
  20365. image: {
  20366. source: "./media/characters/dhari/back.svg",
  20367. extra: 1048 / 931,
  20368. bottom: 0.005
  20369. }
  20370. },
  20371. frontDressed: {
  20372. height: math.unit(6 + 3 / 12, "feet"),
  20373. weight: math.unit(519, "lb"),
  20374. name: "Front (Dressed)",
  20375. image: {
  20376. source: "./media/characters/dhari/front-dressed.svg",
  20377. extra: 1713 / 1546,
  20378. bottom: 0.02
  20379. }
  20380. },
  20381. backDressed: {
  20382. height: math.unit(6 + 3 / 12, "feet"),
  20383. weight: math.unit(519, "lb"),
  20384. name: "Back (Dressed)",
  20385. image: {
  20386. source: "./media/characters/dhari/back-dressed.svg",
  20387. extra: 1699 / 1537,
  20388. bottom: 0.01
  20389. }
  20390. },
  20391. maw: {
  20392. height: math.unit(0.95, "feet"),
  20393. name: "Maw",
  20394. image: {
  20395. source: "./media/characters/dhari/maw.svg"
  20396. }
  20397. },
  20398. wereFront: {
  20399. height: math.unit(12 + 8 / 12, "feet"),
  20400. weight: math.unit(4000, "lb"),
  20401. name: "Front (Were)",
  20402. image: {
  20403. source: "./media/characters/dhari/were-front.svg",
  20404. extra: 1065 / 969,
  20405. bottom: 0.015
  20406. }
  20407. },
  20408. wereBack: {
  20409. height: math.unit(12 + 8 / 12, "feet"),
  20410. weight: math.unit(4000, "lb"),
  20411. name: "Back (Were)",
  20412. image: {
  20413. source: "./media/characters/dhari/were-back.svg",
  20414. extra: 1065 / 969,
  20415. bottom: 0.012
  20416. }
  20417. },
  20418. wereMaw: {
  20419. height: math.unit(0.625, "meters"),
  20420. name: "Maw (Were)",
  20421. image: {
  20422. source: "./media/characters/dhari/were-maw.svg"
  20423. }
  20424. },
  20425. },
  20426. [
  20427. {
  20428. name: "Normal",
  20429. height: math.unit(6 + 3 / 12, "feet"),
  20430. default: true
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20436. {
  20437. anthro: {
  20438. height: math.unit(5 + 7 / 12, "feet"),
  20439. weight: math.unit(175, "lb"),
  20440. name: "Anthro",
  20441. image: {
  20442. source: "./media/characters/rena-dyne/anthro.svg",
  20443. extra: 1849 / 1785,
  20444. bottom: 0.005
  20445. }
  20446. },
  20447. taur: {
  20448. height: math.unit(15 + 6 / 12, "feet"),
  20449. weight: math.unit(8000, "lb"),
  20450. name: "Taur",
  20451. image: {
  20452. source: "./media/characters/rena-dyne/taur.svg",
  20453. extra: 2315 / 2234,
  20454. bottom: 0.033
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Normal",
  20461. height: math.unit(5 + 7 / 12, "feet"),
  20462. default: true
  20463. },
  20464. ]
  20465. ))
  20466. characterMakers.push(() => makeCharacter(
  20467. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20468. {
  20469. front: {
  20470. height: math.unit(8, "feet"),
  20471. weight: math.unit(600, "lb"),
  20472. name: "Front",
  20473. image: {
  20474. source: "./media/characters/weremeep/front.svg",
  20475. extra: 967 / 862,
  20476. bottom: 0.01
  20477. }
  20478. },
  20479. },
  20480. [
  20481. {
  20482. name: "Normal",
  20483. height: math.unit(8, "feet"),
  20484. default: true
  20485. },
  20486. {
  20487. name: "Lorg",
  20488. height: math.unit(12, "feet")
  20489. },
  20490. {
  20491. name: "Oh Lawd She Comin'",
  20492. height: math.unit(20, "feet")
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20498. {
  20499. front: {
  20500. height: math.unit(4, "feet"),
  20501. weight: math.unit(90, "lb"),
  20502. name: "Front",
  20503. image: {
  20504. source: "./media/characters/reza/front.svg",
  20505. extra: 1183 / 1111,
  20506. bottom: 0.017
  20507. }
  20508. },
  20509. back: {
  20510. height: math.unit(4, "feet"),
  20511. weight: math.unit(90, "lb"),
  20512. name: "Back",
  20513. image: {
  20514. source: "./media/characters/reza/back.svg",
  20515. extra: 1183 / 1111,
  20516. bottom: 0.01
  20517. }
  20518. },
  20519. drake: {
  20520. height: math.unit(30, "feet"),
  20521. weight: math.unit(246960, "lb"),
  20522. name: "Drake",
  20523. image: {
  20524. source: "./media/characters/reza/drake.svg",
  20525. extra: 2350 / 2024,
  20526. bottom: 60.7 / 2403
  20527. }
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Normal",
  20533. height: math.unit(4, "feet"),
  20534. default: true
  20535. },
  20536. ]
  20537. ))
  20538. characterMakers.push(() => makeCharacter(
  20539. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20540. {
  20541. side: {
  20542. height: math.unit(15, "feet"),
  20543. weight: math.unit(14, "tons"),
  20544. name: "Side",
  20545. image: {
  20546. source: "./media/characters/athea/side.svg",
  20547. extra: 960 / 540,
  20548. bottom: 0.003
  20549. }
  20550. },
  20551. sitting: {
  20552. height: math.unit(6 * 2.85, "feet"),
  20553. weight: math.unit(14, "tons"),
  20554. name: "Sitting",
  20555. image: {
  20556. source: "./media/characters/athea/sitting.svg",
  20557. extra: 621 / 581,
  20558. bottom: 0.075
  20559. }
  20560. },
  20561. maw: {
  20562. height: math.unit(7.59498031496063, "feet"),
  20563. name: "Maw",
  20564. image: {
  20565. source: "./media/characters/athea/maw.svg"
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Lap Cat",
  20572. height: math.unit(2.5, "feet")
  20573. },
  20574. {
  20575. name: "Minimacro",
  20576. height: math.unit(15, "feet"),
  20577. default: true
  20578. },
  20579. {
  20580. name: "Macro",
  20581. height: math.unit(120, "feet")
  20582. },
  20583. {
  20584. name: "Macro+",
  20585. height: math.unit(640, "feet")
  20586. },
  20587. {
  20588. name: "Colossus",
  20589. height: math.unit(2.2, "miles")
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20595. {
  20596. front: {
  20597. height: math.unit(8 + 8 / 12, "feet"),
  20598. weight: math.unit(130, "kg"),
  20599. name: "Front",
  20600. image: {
  20601. source: "./media/characters/seroko/front.svg",
  20602. extra: 1385 / 1280,
  20603. bottom: 0.025
  20604. }
  20605. },
  20606. back: {
  20607. height: math.unit(8 + 8 / 12, "feet"),
  20608. weight: math.unit(130, "kg"),
  20609. name: "Back",
  20610. image: {
  20611. source: "./media/characters/seroko/back.svg",
  20612. extra: 1369 / 1238,
  20613. bottom: 0.018
  20614. }
  20615. },
  20616. frontDressed: {
  20617. height: math.unit(8 + 8 / 12, "feet"),
  20618. weight: math.unit(130, "kg"),
  20619. name: "Front (Dressed)",
  20620. image: {
  20621. source: "./media/characters/seroko/front-dressed.svg",
  20622. extra: 1366 / 1275,
  20623. bottom: 0.03
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(8 + 8 / 12, "feet"),
  20631. default: true
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20637. {
  20638. front: {
  20639. height: math.unit(5.5, "feet"),
  20640. weight: math.unit(160, "lb"),
  20641. name: "Front",
  20642. image: {
  20643. source: "./media/characters/quatzi/front.svg",
  20644. extra: 2346 / 2242,
  20645. bottom: 0.015
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Normal",
  20652. height: math.unit(5.5, "feet"),
  20653. default: true
  20654. },
  20655. {
  20656. name: "Big",
  20657. height: math.unit(7.7, "feet")
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20663. {
  20664. front: {
  20665. height: math.unit(5 + 11 / 12, "feet"),
  20666. weight: math.unit(180, "lb"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/sen/front.svg",
  20670. extra: 1321 / 1254,
  20671. bottom: 0.015
  20672. }
  20673. },
  20674. side: {
  20675. height: math.unit(5 + 11 / 12, "feet"),
  20676. weight: math.unit(180, "lb"),
  20677. name: "Side",
  20678. image: {
  20679. source: "./media/characters/sen/side.svg",
  20680. extra: 1321 / 1254,
  20681. bottom: 0.007
  20682. }
  20683. },
  20684. back: {
  20685. height: math.unit(5 + 11 / 12, "feet"),
  20686. weight: math.unit(180, "lb"),
  20687. name: "Back",
  20688. image: {
  20689. source: "./media/characters/sen/back.svg",
  20690. extra: 1321 / 1254
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(5 + 11 / 12, "feet"),
  20698. default: true
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20704. {
  20705. front: {
  20706. height: math.unit(166.6, "cm"),
  20707. weight: math.unit(66.6, "kg"),
  20708. name: "Front",
  20709. image: {
  20710. source: "./media/characters/fruity/front.svg",
  20711. extra: 1510 / 1386,
  20712. bottom: 0.04
  20713. }
  20714. },
  20715. back: {
  20716. height: math.unit(166.6, "cm"),
  20717. weight: math.unit(66.6, "lb"),
  20718. name: "Back",
  20719. image: {
  20720. source: "./media/characters/fruity/back.svg",
  20721. extra: 1563 / 1435,
  20722. bottom: 0.005
  20723. }
  20724. },
  20725. },
  20726. [
  20727. {
  20728. name: "Normal",
  20729. height: math.unit(166.6, "cm"),
  20730. default: true
  20731. },
  20732. {
  20733. name: "Demonic",
  20734. height: math.unit(166.6, "feet")
  20735. },
  20736. ]
  20737. ))
  20738. characterMakers.push(() => makeCharacter(
  20739. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20740. {
  20741. side: {
  20742. height: math.unit(10, "feet"),
  20743. weight: math.unit(500, "lb"),
  20744. name: "Side",
  20745. image: {
  20746. source: "./media/characters/zost/side.svg",
  20747. extra: 966 / 880,
  20748. bottom: 0.075
  20749. }
  20750. },
  20751. mawFront: {
  20752. height: math.unit(1.08, "meters"),
  20753. name: "Maw (Front)",
  20754. image: {
  20755. source: "./media/characters/zost/maw-front.svg"
  20756. }
  20757. },
  20758. mawSide: {
  20759. height: math.unit(2.66, "feet"),
  20760. name: "Maw (Side)",
  20761. image: {
  20762. source: "./media/characters/zost/maw-side.svg"
  20763. }
  20764. },
  20765. },
  20766. [
  20767. {
  20768. name: "Normal",
  20769. height: math.unit(10, "feet"),
  20770. default: true
  20771. },
  20772. ]
  20773. ))
  20774. characterMakers.push(() => makeCharacter(
  20775. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20776. {
  20777. front: {
  20778. height: math.unit(5 + 4 / 12, "feet"),
  20779. weight: math.unit(120, "lb"),
  20780. name: "Front",
  20781. image: {
  20782. source: "./media/characters/luci/front.svg",
  20783. extra: 1985 / 1884,
  20784. bottom: 0.04
  20785. }
  20786. },
  20787. back: {
  20788. height: math.unit(5 + 4 / 12, "feet"),
  20789. weight: math.unit(120, "lb"),
  20790. name: "Back",
  20791. image: {
  20792. source: "./media/characters/luci/back.svg",
  20793. extra: 1892 / 1791,
  20794. bottom: 0.002
  20795. }
  20796. },
  20797. },
  20798. [
  20799. {
  20800. name: "Normal",
  20801. height: math.unit(5 + 4 / 12, "feet"),
  20802. default: true
  20803. },
  20804. ]
  20805. ))
  20806. characterMakers.push(() => makeCharacter(
  20807. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20808. {
  20809. front: {
  20810. height: math.unit(1500, "feet"),
  20811. weight: math.unit(3.8e6, "tons"),
  20812. name: "Front",
  20813. image: {
  20814. source: "./media/characters/2th/front.svg",
  20815. extra: 3489 / 3350,
  20816. bottom: 0.1
  20817. }
  20818. },
  20819. foot: {
  20820. height: math.unit(461, "feet"),
  20821. name: "Foot",
  20822. image: {
  20823. source: "./media/characters/2th/foot.svg"
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "\"Micro\"",
  20830. height: math.unit(15 + 7 / 12, "feet")
  20831. },
  20832. {
  20833. name: "Normal",
  20834. height: math.unit(1500, "feet"),
  20835. default: true
  20836. },
  20837. {
  20838. name: "Macro",
  20839. height: math.unit(5000, "feet")
  20840. },
  20841. {
  20842. name: "Megamacro",
  20843. height: math.unit(15, "miles")
  20844. },
  20845. {
  20846. name: "Gigamacro",
  20847. height: math.unit(4000, "miles")
  20848. },
  20849. {
  20850. name: "Galactic",
  20851. height: math.unit(50, "AU")
  20852. },
  20853. ]
  20854. ))
  20855. characterMakers.push(() => makeCharacter(
  20856. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20857. {
  20858. front: {
  20859. height: math.unit(5 + 6 / 12, "feet"),
  20860. weight: math.unit(220, "lb"),
  20861. name: "Front",
  20862. image: {
  20863. source: "./media/characters/amethyst/front.svg",
  20864. extra: 2078 / 2040,
  20865. bottom: 0.045
  20866. }
  20867. },
  20868. back: {
  20869. height: math.unit(5 + 6 / 12, "feet"),
  20870. weight: math.unit(220, "lb"),
  20871. name: "Back",
  20872. image: {
  20873. source: "./media/characters/amethyst/back.svg",
  20874. extra: 2021 / 1989,
  20875. bottom: 0.02
  20876. }
  20877. },
  20878. },
  20879. [
  20880. {
  20881. name: "Normal",
  20882. height: math.unit(5 + 6 / 12, "feet"),
  20883. default: true
  20884. },
  20885. ]
  20886. ))
  20887. characterMakers.push(() => makeCharacter(
  20888. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20889. {
  20890. front: {
  20891. height: math.unit(4 + 11 / 12, "feet"),
  20892. weight: math.unit(120, "lb"),
  20893. name: "Front",
  20894. image: {
  20895. source: "./media/characters/yumi-akiyama/front.svg",
  20896. extra: 1327 / 1235,
  20897. bottom: 0.02
  20898. }
  20899. },
  20900. back: {
  20901. height: math.unit(4 + 11 / 12, "feet"),
  20902. weight: math.unit(120, "lb"),
  20903. name: "Back",
  20904. image: {
  20905. source: "./media/characters/yumi-akiyama/back.svg",
  20906. extra: 1287 / 1245,
  20907. bottom: 0.002
  20908. }
  20909. },
  20910. },
  20911. [
  20912. {
  20913. name: "Galactic",
  20914. height: math.unit(50, "galaxies"),
  20915. default: true
  20916. },
  20917. {
  20918. name: "Universal",
  20919. height: math.unit(100, "universes")
  20920. },
  20921. ]
  20922. ))
  20923. characterMakers.push(() => makeCharacter(
  20924. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20925. {
  20926. front: {
  20927. height: math.unit(8, "feet"),
  20928. weight: math.unit(500, "lb"),
  20929. name: "Front",
  20930. image: {
  20931. source: "./media/characters/rifter-yrmori/front.svg",
  20932. extra: 1180 / 1125,
  20933. bottom: 0.02
  20934. }
  20935. },
  20936. back: {
  20937. height: math.unit(8, "feet"),
  20938. weight: math.unit(500, "lb"),
  20939. name: "Back",
  20940. image: {
  20941. source: "./media/characters/rifter-yrmori/back.svg",
  20942. extra: 1190 / 1145,
  20943. bottom: 0.001
  20944. }
  20945. },
  20946. wings: {
  20947. height: math.unit(7.75, "feet"),
  20948. weight: math.unit(500, "lb"),
  20949. name: "Wings",
  20950. image: {
  20951. source: "./media/characters/rifter-yrmori/wings.svg",
  20952. extra: 1357 / 1285
  20953. }
  20954. },
  20955. maw: {
  20956. height: math.unit(0.8, "feet"),
  20957. name: "Maw",
  20958. image: {
  20959. source: "./media/characters/rifter-yrmori/maw.svg"
  20960. }
  20961. },
  20962. mawfront: {
  20963. height: math.unit(1.45, "feet"),
  20964. name: "Maw (Front)",
  20965. image: {
  20966. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20967. }
  20968. },
  20969. },
  20970. [
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(8, "feet"),
  20974. default: true
  20975. },
  20976. {
  20977. name: "Macro",
  20978. height: math.unit(42, "meters")
  20979. },
  20980. ]
  20981. ))
  20982. characterMakers.push(() => makeCharacter(
  20983. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20984. {
  20985. were: {
  20986. height: math.unit(25 + 6 / 12, "feet"),
  20987. weight: math.unit(10000, "lb"),
  20988. name: "Were",
  20989. image: {
  20990. source: "./media/characters/tahajin/were.svg",
  20991. extra: 801 / 770,
  20992. bottom: 0.042
  20993. }
  20994. },
  20995. aquatic: {
  20996. height: math.unit(6 + 4 / 12, "feet"),
  20997. weight: math.unit(160, "lb"),
  20998. name: "Aquatic",
  20999. image: {
  21000. source: "./media/characters/tahajin/aquatic.svg",
  21001. extra: 572 / 542,
  21002. bottom: 0.04
  21003. }
  21004. },
  21005. chow: {
  21006. height: math.unit(8 + 11 / 12, "feet"),
  21007. weight: math.unit(450, "lb"),
  21008. name: "Chow",
  21009. image: {
  21010. source: "./media/characters/tahajin/chow.svg",
  21011. extra: 660 / 640,
  21012. bottom: 0.015
  21013. }
  21014. },
  21015. demiNaga: {
  21016. height: math.unit(6 + 8 / 12, "feet"),
  21017. weight: math.unit(300, "lb"),
  21018. name: "Demi Naga",
  21019. image: {
  21020. source: "./media/characters/tahajin/demi-naga.svg",
  21021. extra: 643 / 615,
  21022. bottom: 0.1
  21023. }
  21024. },
  21025. data: {
  21026. height: math.unit(5, "inches"),
  21027. weight: math.unit(0.1, "lb"),
  21028. name: "Data",
  21029. image: {
  21030. source: "./media/characters/tahajin/data.svg"
  21031. }
  21032. },
  21033. fluu: {
  21034. height: math.unit(5 + 7 / 12, "feet"),
  21035. weight: math.unit(140, "lb"),
  21036. name: "Fluu",
  21037. image: {
  21038. source: "./media/characters/tahajin/fluu.svg",
  21039. extra: 628 / 592,
  21040. bottom: 0.02
  21041. }
  21042. },
  21043. starWarrior: {
  21044. height: math.unit(4 + 5 / 12, "feet"),
  21045. weight: math.unit(50, "lb"),
  21046. name: "Star Warrior",
  21047. image: {
  21048. source: "./media/characters/tahajin/star-warrior.svg"
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(25 + 6 / 12, "feet"),
  21056. default: true
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21062. {
  21063. front: {
  21064. height: math.unit(8, "feet"),
  21065. weight: math.unit(350, "lb"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/gabira/front.svg",
  21069. extra: 608 / 580,
  21070. bottom: 0.03
  21071. }
  21072. },
  21073. back: {
  21074. height: math.unit(8, "feet"),
  21075. weight: math.unit(350, "lb"),
  21076. name: "Back",
  21077. image: {
  21078. source: "./media/characters/gabira/back.svg",
  21079. extra: 608 / 580,
  21080. bottom: 0.03
  21081. }
  21082. },
  21083. },
  21084. [
  21085. {
  21086. name: "Normal",
  21087. height: math.unit(8, "feet"),
  21088. default: true
  21089. },
  21090. ]
  21091. ))
  21092. characterMakers.push(() => makeCharacter(
  21093. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21094. {
  21095. front: {
  21096. height: math.unit(5 + 3 / 12, "feet"),
  21097. weight: math.unit(137, "lb"),
  21098. name: "Front",
  21099. image: {
  21100. source: "./media/characters/sasha-katraine/front.svg",
  21101. bottom: 0.045
  21102. }
  21103. },
  21104. },
  21105. [
  21106. {
  21107. name: "Micro",
  21108. height: math.unit(5, "inches")
  21109. },
  21110. {
  21111. name: "Normal",
  21112. height: math.unit(5 + 3 / 12, "feet"),
  21113. default: true
  21114. },
  21115. ]
  21116. ))
  21117. characterMakers.push(() => makeCharacter(
  21118. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21119. {
  21120. side: {
  21121. height: math.unit(4, "inches"),
  21122. weight: math.unit(200, "grams"),
  21123. name: "Side",
  21124. image: {
  21125. source: "./media/characters/der/side.svg",
  21126. extra: 719 / 400,
  21127. bottom: 30.6 / 749.9187
  21128. }
  21129. },
  21130. },
  21131. [
  21132. {
  21133. name: "Micro",
  21134. height: math.unit(4, "inches"),
  21135. default: true
  21136. },
  21137. ]
  21138. ))
  21139. characterMakers.push(() => makeCharacter(
  21140. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21141. {
  21142. side: {
  21143. height: math.unit(30, "meters"),
  21144. weight: math.unit(700, "tonnes"),
  21145. name: "Side",
  21146. image: {
  21147. source: "./media/characters/fixerdragon/side.svg",
  21148. extra: (1293.0514 - 116.03) / 1106.86,
  21149. bottom: 116.03 / 1293.0514
  21150. }
  21151. },
  21152. },
  21153. [
  21154. {
  21155. name: "Planck",
  21156. height: math.unit(1.6e-35, "meters")
  21157. },
  21158. {
  21159. name: "Micro",
  21160. height: math.unit(0.4, "meters")
  21161. },
  21162. {
  21163. name: "Normal",
  21164. height: math.unit(30, "meters"),
  21165. default: true
  21166. },
  21167. {
  21168. name: "Megamacro",
  21169. height: math.unit(1.2, "megameters")
  21170. },
  21171. {
  21172. name: "Teramacro",
  21173. height: math.unit(130, "terameters")
  21174. },
  21175. {
  21176. name: "Yottamacro",
  21177. height: math.unit(6200, "yottameters")
  21178. },
  21179. ]
  21180. ));
  21181. characterMakers.push(() => makeCharacter(
  21182. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21183. {
  21184. front: {
  21185. height: math.unit(8, "feet"),
  21186. weight: math.unit(250, "lb"),
  21187. name: "Front",
  21188. image: {
  21189. source: "./media/characters/kite/front.svg",
  21190. extra: 2796 / 2659,
  21191. bottom: 0.002
  21192. }
  21193. },
  21194. },
  21195. [
  21196. {
  21197. name: "Normal",
  21198. height: math.unit(8, "feet"),
  21199. default: true
  21200. },
  21201. {
  21202. name: "Macro",
  21203. height: math.unit(360, "feet")
  21204. },
  21205. {
  21206. name: "Megamacro",
  21207. height: math.unit(1500, "feet")
  21208. },
  21209. ]
  21210. ))
  21211. characterMakers.push(() => makeCharacter(
  21212. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21213. {
  21214. front: {
  21215. height: math.unit(5 + 10 / 12, "feet"),
  21216. weight: math.unit(150, "lb"),
  21217. name: "Front",
  21218. image: {
  21219. source: "./media/characters/poojawa-vynar/front.svg",
  21220. extra: (1506.1547 - 55) / 1356.6,
  21221. bottom: 55 / 1506.1547
  21222. }
  21223. },
  21224. frontTailless: {
  21225. height: math.unit(5 + 10 / 12, "feet"),
  21226. weight: math.unit(150, "lb"),
  21227. name: "Front (Tailless)",
  21228. image: {
  21229. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21230. extra: (1506.1547 - 55) / 1356.6,
  21231. bottom: 55 / 1506.1547
  21232. }
  21233. },
  21234. },
  21235. [
  21236. {
  21237. name: "Normal",
  21238. height: math.unit(5 + 10 / 12, "feet"),
  21239. default: true
  21240. },
  21241. ]
  21242. ))
  21243. characterMakers.push(() => makeCharacter(
  21244. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21245. {
  21246. front: {
  21247. height: math.unit(293, "meters"),
  21248. weight: math.unit(70400, "tons"),
  21249. name: "Front",
  21250. image: {
  21251. source: "./media/characters/violette/front.svg",
  21252. extra: 1227 / 1180,
  21253. bottom: 0.005
  21254. }
  21255. },
  21256. back: {
  21257. height: math.unit(293, "meters"),
  21258. weight: math.unit(70400, "tons"),
  21259. name: "Back",
  21260. image: {
  21261. source: "./media/characters/violette/back.svg",
  21262. extra: 1227 / 1180,
  21263. bottom: 0.005
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Macro",
  21270. height: math.unit(293, "meters"),
  21271. default: true
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(1050, "feet"),
  21280. weight: math.unit(200000, "tons"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/alessandra/front.svg",
  21284. extra: 960 / 912,
  21285. bottom: 0.06
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Macro",
  21292. height: math.unit(1050, "feet")
  21293. },
  21294. {
  21295. name: "Macro+",
  21296. height: math.unit(900, "meters"),
  21297. default: true
  21298. },
  21299. ]
  21300. ))
  21301. characterMakers.push(() => makeCharacter(
  21302. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21303. {
  21304. front: {
  21305. height: math.unit(5, "feet"),
  21306. weight: math.unit(187, "lb"),
  21307. name: "Front",
  21308. image: {
  21309. source: "./media/characters/person/front.svg",
  21310. extra: 3087 / 2945,
  21311. bottom: 91 / 3181
  21312. }
  21313. },
  21314. },
  21315. [
  21316. {
  21317. name: "Micro",
  21318. height: math.unit(3, "inches")
  21319. },
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(5, "feet"),
  21323. default: true
  21324. },
  21325. {
  21326. name: "Macro",
  21327. height: math.unit(90, "feet")
  21328. },
  21329. {
  21330. name: "Max Size",
  21331. height: math.unit(280, "feet")
  21332. },
  21333. ]
  21334. ))
  21335. characterMakers.push(() => makeCharacter(
  21336. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21337. {
  21338. front: {
  21339. height: math.unit(4.5, "meters"),
  21340. weight: math.unit(3200, "lb"),
  21341. name: "Front",
  21342. image: {
  21343. source: "./media/characters/ty/front.svg",
  21344. extra: 1038 / 960,
  21345. bottom: 31.156 / 1068
  21346. }
  21347. },
  21348. back: {
  21349. height: math.unit(4.5, "meters"),
  21350. weight: math.unit(3200, "lb"),
  21351. name: "Back",
  21352. image: {
  21353. source: "./media/characters/ty/back.svg",
  21354. extra: 1044 / 966,
  21355. bottom: 7.48 / 1049
  21356. }
  21357. },
  21358. },
  21359. [
  21360. {
  21361. name: "Normal",
  21362. height: math.unit(4.5, "meters"),
  21363. default: true
  21364. },
  21365. ]
  21366. ))
  21367. characterMakers.push(() => makeCharacter(
  21368. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21369. {
  21370. front: {
  21371. height: math.unit(5 + 4 / 12, "feet"),
  21372. weight: math.unit(115, "lb"),
  21373. name: "Front",
  21374. image: {
  21375. source: "./media/characters/rocky/front.svg",
  21376. extra: 1012 / 975,
  21377. bottom: 54 / 1066
  21378. }
  21379. },
  21380. },
  21381. [
  21382. {
  21383. name: "Normal",
  21384. height: math.unit(5 + 4 / 12, "feet"),
  21385. default: true
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21391. {
  21392. upright: {
  21393. height: math.unit(6, "meters"),
  21394. weight: math.unit(4000, "kg"),
  21395. name: "Upright",
  21396. image: {
  21397. source: "./media/characters/ruin/upright.svg",
  21398. extra: 668 / 661,
  21399. bottom: 42 / 799.8396
  21400. }
  21401. },
  21402. },
  21403. [
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(6, "meters"),
  21407. default: true
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21413. {
  21414. front: {
  21415. height: math.unit(5, "feet"),
  21416. weight: math.unit(106, "lb"),
  21417. name: "Front",
  21418. image: {
  21419. source: "./media/characters/robin/front.svg",
  21420. extra: 862 / 799,
  21421. bottom: 42.4 / 914.8856
  21422. }
  21423. },
  21424. },
  21425. [
  21426. {
  21427. name: "Normal",
  21428. height: math.unit(5, "feet"),
  21429. default: true
  21430. },
  21431. ]
  21432. ))
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21435. {
  21436. side: {
  21437. height: math.unit(3, "feet"),
  21438. weight: math.unit(225, "lb"),
  21439. name: "Side",
  21440. image: {
  21441. source: "./media/characters/saian/side.svg",
  21442. extra: 566 / 356,
  21443. bottom: 79.7 / 643
  21444. }
  21445. },
  21446. maw: {
  21447. height: math.unit(2.85, "feet"),
  21448. name: "Maw",
  21449. image: {
  21450. source: "./media/characters/saian/maw.svg"
  21451. }
  21452. },
  21453. },
  21454. [
  21455. {
  21456. name: "Normal",
  21457. height: math.unit(3, "feet"),
  21458. default: true
  21459. },
  21460. ]
  21461. ))
  21462. characterMakers.push(() => makeCharacter(
  21463. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21464. {
  21465. side: {
  21466. height: math.unit(8, "feet"),
  21467. weight: math.unit(300, "lb"),
  21468. name: "Side",
  21469. image: {
  21470. source: "./media/characters/equus-silvermane/side.svg",
  21471. extra: 2176 / 2050,
  21472. bottom: 65.7 / 2245
  21473. }
  21474. },
  21475. front: {
  21476. height: math.unit(8, "feet"),
  21477. weight: math.unit(300, "lb"),
  21478. name: "Front",
  21479. image: {
  21480. source: "./media/characters/equus-silvermane/front.svg",
  21481. extra: 4633 / 4400,
  21482. bottom: 71.3 / 4706.915
  21483. }
  21484. },
  21485. sideStepping: {
  21486. height: math.unit(8, "feet"),
  21487. weight: math.unit(300, "lb"),
  21488. name: "Side (Stepping)",
  21489. image: {
  21490. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21491. extra: 1968 / 1860,
  21492. bottom: 16.4 / 1989
  21493. }
  21494. },
  21495. },
  21496. [
  21497. {
  21498. name: "Normal",
  21499. height: math.unit(8, "feet")
  21500. },
  21501. {
  21502. name: "Minimacro",
  21503. height: math.unit(75, "feet"),
  21504. default: true
  21505. },
  21506. {
  21507. name: "Macro",
  21508. height: math.unit(150, "feet")
  21509. },
  21510. {
  21511. name: "Macro+",
  21512. height: math.unit(1000, "feet")
  21513. },
  21514. {
  21515. name: "Megamacro",
  21516. height: math.unit(1, "mile")
  21517. },
  21518. ]
  21519. ))
  21520. characterMakers.push(() => makeCharacter(
  21521. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21522. {
  21523. side: {
  21524. height: math.unit(20, "feet"),
  21525. weight: math.unit(30000, "kg"),
  21526. name: "Side",
  21527. image: {
  21528. source: "./media/characters/windar/side.svg",
  21529. extra: 1491 / 1248,
  21530. bottom: 82.56 / 1568
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Normal",
  21537. height: math.unit(20, "feet"),
  21538. default: true
  21539. },
  21540. ]
  21541. ))
  21542. characterMakers.push(() => makeCharacter(
  21543. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21544. {
  21545. side: {
  21546. height: math.unit(15.66, "feet"),
  21547. weight: math.unit(150, "lb"),
  21548. name: "Side",
  21549. image: {
  21550. source: "./media/characters/melody/side.svg",
  21551. extra: 1097 / 944,
  21552. bottom: 11.8 / 1109
  21553. }
  21554. },
  21555. sideOutfit: {
  21556. height: math.unit(15.66, "feet"),
  21557. weight: math.unit(150, "lb"),
  21558. name: "Side (Outfit)",
  21559. image: {
  21560. source: "./media/characters/melody/side-outfit.svg",
  21561. extra: 1097 / 944,
  21562. bottom: 11.8 / 1109
  21563. }
  21564. },
  21565. },
  21566. [
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(15.66, "feet"),
  21570. default: true
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21576. {
  21577. front: {
  21578. height: math.unit(8, "feet"),
  21579. weight: math.unit(325, "lb"),
  21580. name: "Front",
  21581. image: {
  21582. source: "./media/characters/windera/front.svg",
  21583. extra: 3180 / 2845,
  21584. bottom: 178 / 3365
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(8, "feet"),
  21592. default: true
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21598. {
  21599. front: {
  21600. height: math.unit(28.75, "feet"),
  21601. weight: math.unit(2000, "kg"),
  21602. name: "Front",
  21603. image: {
  21604. source: "./media/characters/sonear/front.svg",
  21605. extra: 1041.1 / 964.9,
  21606. bottom: 53.7 / 1096.6
  21607. }
  21608. },
  21609. },
  21610. [
  21611. {
  21612. name: "Normal",
  21613. height: math.unit(28.75, "feet"),
  21614. default: true
  21615. },
  21616. ]
  21617. ))
  21618. characterMakers.push(() => makeCharacter(
  21619. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21620. {
  21621. side: {
  21622. height: math.unit(25.5, "feet"),
  21623. weight: math.unit(23000, "kg"),
  21624. name: "Side",
  21625. image: {
  21626. source: "./media/characters/kanara/side.svg"
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(25.5, "feet"),
  21634. default: true
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21640. {
  21641. side: {
  21642. height: math.unit(10, "feet"),
  21643. weight: math.unit(1000, "kg"),
  21644. name: "Side",
  21645. image: {
  21646. source: "./media/characters/ereus/side.svg",
  21647. extra: 1157 / 959,
  21648. bottom: 153 / 1312.5
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(10, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21662. {
  21663. side: {
  21664. height: math.unit(4.5, "feet"),
  21665. weight: math.unit(500, "lb"),
  21666. name: "Side",
  21667. image: {
  21668. source: "./media/characters/e-ter/side.svg",
  21669. extra: 1550 / 1248,
  21670. bottom: 146 / 1694
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(4.5, "feet"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21684. {
  21685. side: {
  21686. height: math.unit(9.7, "feet"),
  21687. weight: math.unit(4000, "kg"),
  21688. name: "Side",
  21689. image: {
  21690. source: "./media/characters/yamie/side.svg"
  21691. }
  21692. },
  21693. },
  21694. [
  21695. {
  21696. name: "Normal",
  21697. height: math.unit(9.7, "feet"),
  21698. default: true
  21699. },
  21700. ]
  21701. ))
  21702. characterMakers.push(() => makeCharacter(
  21703. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21704. {
  21705. front: {
  21706. height: math.unit(50, "feet"),
  21707. weight: math.unit(50000, "kg"),
  21708. name: "Front",
  21709. image: {
  21710. source: "./media/characters/anders/front.svg",
  21711. extra: 570 / 539,
  21712. bottom: 14.7 / 586.7
  21713. }
  21714. },
  21715. },
  21716. [
  21717. {
  21718. name: "Large",
  21719. height: math.unit(50, "feet")
  21720. },
  21721. {
  21722. name: "Macro",
  21723. height: math.unit(2000, "feet"),
  21724. default: true
  21725. },
  21726. {
  21727. name: "Megamacro",
  21728. height: math.unit(12, "miles")
  21729. },
  21730. ]
  21731. ))
  21732. characterMakers.push(() => makeCharacter(
  21733. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21734. {
  21735. front: {
  21736. height: math.unit(7 + 2 / 12, "feet"),
  21737. weight: math.unit(300, "lb"),
  21738. name: "Front",
  21739. image: {
  21740. source: "./media/characters/reban/front.svg",
  21741. extra: 516 / 487,
  21742. bottom: 42.82 / 558.356
  21743. }
  21744. },
  21745. dick: {
  21746. height: math.unit(7 / 5, "feet"),
  21747. name: "Dick",
  21748. image: {
  21749. source: "./media/characters/reban/dick.svg"
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Natural Height",
  21756. height: math.unit(7 + 2 / 12, "feet")
  21757. },
  21758. {
  21759. name: "Macro",
  21760. height: math.unit(500, "feet"),
  21761. default: true
  21762. },
  21763. {
  21764. name: "Canon Height",
  21765. height: math.unit(50, "AU")
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(6, "feet"),
  21774. weight: math.unit(150, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/terrance-keayes/front.svg",
  21778. extra: 1.005,
  21779. bottom: 151 / 1615
  21780. }
  21781. },
  21782. side: {
  21783. height: math.unit(6, "feet"),
  21784. weight: math.unit(150, "lb"),
  21785. name: "Side",
  21786. image: {
  21787. source: "./media/characters/terrance-keayes/side.svg",
  21788. extra: 1.005,
  21789. bottom: 129.4 / 1544
  21790. }
  21791. },
  21792. back: {
  21793. height: math.unit(6, "feet"),
  21794. weight: math.unit(150, "lb"),
  21795. name: "Back",
  21796. image: {
  21797. source: "./media/characters/terrance-keayes/back.svg",
  21798. extra: 1.005,
  21799. bottom: 58.4 / 1557.3
  21800. }
  21801. },
  21802. dick: {
  21803. height: math.unit(6 * 0.208, "feet"),
  21804. name: "Dick",
  21805. image: {
  21806. source: "./media/characters/terrance-keayes/dick.svg"
  21807. }
  21808. },
  21809. },
  21810. [
  21811. {
  21812. name: "Canon Height",
  21813. height: math.unit(35, "miles"),
  21814. default: true
  21815. },
  21816. ]
  21817. ))
  21818. characterMakers.push(() => makeCharacter(
  21819. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21820. {
  21821. front: {
  21822. height: math.unit(6, "feet"),
  21823. weight: math.unit(150, "lb"),
  21824. name: "Front",
  21825. image: {
  21826. source: "./media/characters/ofelia/front.svg",
  21827. extra: 546 / 541,
  21828. bottom: 39 / 583
  21829. }
  21830. },
  21831. back: {
  21832. height: math.unit(6, "feet"),
  21833. weight: math.unit(150, "lb"),
  21834. name: "Back",
  21835. image: {
  21836. source: "./media/characters/ofelia/back.svg",
  21837. extra: 564 / 559.5,
  21838. bottom: 8.69 / 573.02
  21839. }
  21840. },
  21841. maw: {
  21842. height: math.unit(1, "feet"),
  21843. name: "Maw",
  21844. image: {
  21845. source: "./media/characters/ofelia/maw.svg"
  21846. }
  21847. },
  21848. foot: {
  21849. height: math.unit(1.949, "feet"),
  21850. name: "Foot",
  21851. image: {
  21852. source: "./media/characters/ofelia/foot.svg"
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Canon Height",
  21859. height: math.unit(2000, "miles"),
  21860. default: true
  21861. },
  21862. ]
  21863. ))
  21864. characterMakers.push(() => makeCharacter(
  21865. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21866. {
  21867. front: {
  21868. height: math.unit(6, "feet"),
  21869. weight: math.unit(150, "lb"),
  21870. name: "Front",
  21871. image: {
  21872. source: "./media/characters/samuel/front.svg",
  21873. extra: 265 / 258,
  21874. bottom: 2 / 266.1566
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Macro",
  21881. height: math.unit(100, "feet"),
  21882. default: true
  21883. },
  21884. {
  21885. name: "Full Size",
  21886. height: math.unit(1000, "miles")
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21892. {
  21893. front: {
  21894. height: math.unit(6, "feet"),
  21895. weight: math.unit(300, "lb"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/beishir-kiel/front.svg",
  21899. extra: 569 / 547,
  21900. bottom: 41.9 / 609
  21901. }
  21902. },
  21903. maw: {
  21904. height: math.unit(6 * 0.202, "feet"),
  21905. name: "Maw",
  21906. image: {
  21907. source: "./media/characters/beishir-kiel/maw.svg"
  21908. }
  21909. },
  21910. },
  21911. [
  21912. {
  21913. name: "Macro",
  21914. height: math.unit(300, "feet"),
  21915. default: true
  21916. },
  21917. ]
  21918. ))
  21919. characterMakers.push(() => makeCharacter(
  21920. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21921. {
  21922. front: {
  21923. height: math.unit(5 + 8 / 12, "feet"),
  21924. weight: math.unit(120, "lb"),
  21925. name: "Front",
  21926. image: {
  21927. source: "./media/characters/logan-grey/front.svg",
  21928. extra: 2539 / 2393,
  21929. bottom: 97.6 / 2636.37
  21930. }
  21931. },
  21932. frontAlt: {
  21933. height: math.unit(5 + 8 / 12, "feet"),
  21934. weight: math.unit(120, "lb"),
  21935. name: "Front (Alt)",
  21936. image: {
  21937. source: "./media/characters/logan-grey/front-alt.svg",
  21938. extra: 958 / 893,
  21939. bottom: 15 / 970.768
  21940. }
  21941. },
  21942. back: {
  21943. height: math.unit(5 + 8 / 12, "feet"),
  21944. weight: math.unit(120, "lb"),
  21945. name: "Back",
  21946. image: {
  21947. source: "./media/characters/logan-grey/back.svg",
  21948. extra: 958 / 893,
  21949. bottom: 2.1881 / 970.9788
  21950. }
  21951. },
  21952. dick: {
  21953. height: math.unit(1.437, "feet"),
  21954. name: "Dick",
  21955. image: {
  21956. source: "./media/characters/logan-grey/dick.svg"
  21957. }
  21958. },
  21959. },
  21960. [
  21961. {
  21962. name: "Normal",
  21963. height: math.unit(5 + 8 / 12, "feet")
  21964. },
  21965. {
  21966. name: "The 500 Foot Femboy",
  21967. height: math.unit(500, "feet"),
  21968. default: true
  21969. },
  21970. {
  21971. name: "Megmacro",
  21972. height: math.unit(20, "miles")
  21973. },
  21974. ]
  21975. ))
  21976. characterMakers.push(() => makeCharacter(
  21977. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21978. {
  21979. front: {
  21980. height: math.unit(8 + 2 / 12, "feet"),
  21981. weight: math.unit(275, "lb"),
  21982. name: "Front",
  21983. image: {
  21984. source: "./media/characters/draganta/front.svg",
  21985. extra: 1177 / 1135,
  21986. bottom: 33.46 / 1212.1
  21987. }
  21988. },
  21989. },
  21990. [
  21991. {
  21992. name: "Normal",
  21993. height: math.unit(8 + 6 / 12, "feet"),
  21994. default: true
  21995. },
  21996. {
  21997. name: "Macro",
  21998. height: math.unit(150, "feet")
  21999. },
  22000. {
  22001. name: "Megamacro",
  22002. height: math.unit(1000, "miles")
  22003. },
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22008. {
  22009. front: {
  22010. height: math.unit(1.72, "m"),
  22011. weight: math.unit(80, "lb"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/voski/front.svg",
  22015. extra: 2076.22 / 2022.4,
  22016. bottom: 102.7 / 2177.3866
  22017. }
  22018. },
  22019. frontNsfw: {
  22020. height: math.unit(1.72, "m"),
  22021. weight: math.unit(80, "lb"),
  22022. name: "Front (NSFW)",
  22023. image: {
  22024. source: "./media/characters/voski/front-nsfw.svg",
  22025. extra: 2076.22 / 2022.4,
  22026. bottom: 102.7 / 2177.3866
  22027. }
  22028. },
  22029. back: {
  22030. height: math.unit(1.72, "m"),
  22031. weight: math.unit(80, "lb"),
  22032. name: "Back",
  22033. image: {
  22034. source: "./media/characters/voski/back.svg",
  22035. extra: 2104 / 2051,
  22036. bottom: 10.45 / 2113.63
  22037. }
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Normal",
  22043. height: math.unit(1.72, "m")
  22044. },
  22045. {
  22046. name: "Macro",
  22047. height: math.unit(55, "m"),
  22048. default: true
  22049. },
  22050. {
  22051. name: "Macro+",
  22052. height: math.unit(300, "m")
  22053. },
  22054. {
  22055. name: "Macro++",
  22056. height: math.unit(700, "m")
  22057. },
  22058. {
  22059. name: "Macro+++",
  22060. height: math.unit(4500, "m")
  22061. },
  22062. {
  22063. name: "Macro++++",
  22064. height: math.unit(45, "km")
  22065. },
  22066. {
  22067. name: "Macro+++++",
  22068. height: math.unit(1220, "km")
  22069. },
  22070. ]
  22071. ))
  22072. characterMakers.push(() => makeCharacter(
  22073. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22074. {
  22075. front: {
  22076. height: math.unit(2.3, "m"),
  22077. weight: math.unit(304, "kg"),
  22078. name: "Front",
  22079. image: {
  22080. source: "./media/characters/icowom-lee/front.svg",
  22081. extra: 985 / 955,
  22082. bottom: 25.4 / 1012
  22083. }
  22084. },
  22085. fronttentacles: {
  22086. height: math.unit(2.3, "m"),
  22087. weight: math.unit(304, "kg"),
  22088. name: "Front-tentacles",
  22089. image: {
  22090. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22091. extra: 985 / 955,
  22092. bottom: 25.4 / 1012
  22093. }
  22094. },
  22095. back: {
  22096. height: math.unit(2.3, "m"),
  22097. weight: math.unit(304, "kg"),
  22098. name: "Back",
  22099. image: {
  22100. source: "./media/characters/icowom-lee/back.svg",
  22101. extra: 975 / 954,
  22102. bottom: 9.5 / 985
  22103. }
  22104. },
  22105. backtentacles: {
  22106. height: math.unit(2.3, "m"),
  22107. weight: math.unit(304, "kg"),
  22108. name: "Back-tentacles",
  22109. image: {
  22110. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22111. extra: 975 / 954,
  22112. bottom: 9.5 / 985
  22113. }
  22114. },
  22115. frontDressed: {
  22116. height: math.unit(2.3, "m"),
  22117. weight: math.unit(304, "kg"),
  22118. name: "Front (Dressed)",
  22119. image: {
  22120. source: "./media/characters/icowom-lee/front-dressed.svg",
  22121. extra: 3076 / 2933,
  22122. bottom: 51.4 / 3125.1889
  22123. }
  22124. },
  22125. rump: {
  22126. height: math.unit(0.776, "meters"),
  22127. name: "Rump",
  22128. image: {
  22129. source: "./media/characters/icowom-lee/rump.svg"
  22130. }
  22131. },
  22132. genitals: {
  22133. height: math.unit(0.78, "meters"),
  22134. name: "Genitals",
  22135. image: {
  22136. source: "./media/characters/icowom-lee/genitals.svg"
  22137. }
  22138. },
  22139. },
  22140. [
  22141. {
  22142. name: "Normal",
  22143. height: math.unit(2.3, "meters"),
  22144. default: true
  22145. },
  22146. {
  22147. name: "Macro",
  22148. height: math.unit(94, "meters"),
  22149. default: true
  22150. },
  22151. ]
  22152. ))
  22153. characterMakers.push(() => makeCharacter(
  22154. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22155. {
  22156. front: {
  22157. height: math.unit(22, "meters"),
  22158. weight: math.unit(21000, "kg"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/shock-diamond/front.svg",
  22162. extra: 2204 / 2053,
  22163. bottom: 65 / 2239.47
  22164. }
  22165. },
  22166. frontNude: {
  22167. height: math.unit(22, "meters"),
  22168. weight: math.unit(21000, "kg"),
  22169. name: "Front (Nude)",
  22170. image: {
  22171. source: "./media/characters/shock-diamond/front-nude.svg",
  22172. extra: 2514 / 2285,
  22173. bottom: 13 / 2527.56
  22174. }
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "Normal",
  22180. height: math.unit(3, "meters")
  22181. },
  22182. {
  22183. name: "Macro",
  22184. height: math.unit(22, "meters"),
  22185. default: true
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22191. {
  22192. front: {
  22193. height: math.unit(5 + 4 / 12, "feet"),
  22194. weight: math.unit(120, "lb"),
  22195. name: "Front",
  22196. image: {
  22197. source: "./media/characters/rory/front.svg",
  22198. extra: 589 / 556,
  22199. bottom: 45.7 / 635.76
  22200. }
  22201. },
  22202. frontNude: {
  22203. height: math.unit(5 + 4 / 12, "feet"),
  22204. weight: math.unit(120, "lb"),
  22205. name: "Front (Nude)",
  22206. image: {
  22207. source: "./media/characters/rory/front-nude.svg",
  22208. extra: 589 / 556,
  22209. bottom: 45.7 / 635.76
  22210. }
  22211. },
  22212. side: {
  22213. height: math.unit(5 + 4 / 12, "feet"),
  22214. weight: math.unit(120, "lb"),
  22215. name: "Side",
  22216. image: {
  22217. source: "./media/characters/rory/side.svg",
  22218. extra: 597 / 564,
  22219. bottom: 55 / 653
  22220. }
  22221. },
  22222. back: {
  22223. height: math.unit(5 + 4 / 12, "feet"),
  22224. weight: math.unit(120, "lb"),
  22225. name: "Back",
  22226. image: {
  22227. source: "./media/characters/rory/back.svg",
  22228. extra: 620 / 585,
  22229. bottom: 8.86 / 630.43
  22230. }
  22231. },
  22232. dick: {
  22233. height: math.unit(0.86, "feet"),
  22234. name: "Dick",
  22235. image: {
  22236. source: "./media/characters/rory/dick.svg"
  22237. }
  22238. },
  22239. },
  22240. [
  22241. {
  22242. name: "Normal",
  22243. height: math.unit(5 + 4 / 12, "feet"),
  22244. default: true
  22245. },
  22246. {
  22247. name: "Macro",
  22248. height: math.unit(100, "feet")
  22249. },
  22250. {
  22251. name: "Macro+",
  22252. height: math.unit(140, "feet")
  22253. },
  22254. {
  22255. name: "Macro++",
  22256. height: math.unit(300, "feet")
  22257. },
  22258. ]
  22259. ))
  22260. characterMakers.push(() => makeCharacter(
  22261. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22262. {
  22263. front: {
  22264. height: math.unit(5 + 9 / 12, "feet"),
  22265. weight: math.unit(190, "lb"),
  22266. name: "Front",
  22267. image: {
  22268. source: "./media/characters/sprisk/front.svg",
  22269. extra: 1225 / 1180,
  22270. bottom: 42.7 / 1266.4
  22271. }
  22272. },
  22273. frontNsfw: {
  22274. height: math.unit(5 + 9 / 12, "feet"),
  22275. weight: math.unit(190, "lb"),
  22276. name: "Front (NSFW)",
  22277. image: {
  22278. source: "./media/characters/sprisk/front-nsfw.svg",
  22279. extra: 1225 / 1180,
  22280. bottom: 42.7 / 1266.4
  22281. }
  22282. },
  22283. back: {
  22284. height: math.unit(5 + 9 / 12, "feet"),
  22285. weight: math.unit(190, "lb"),
  22286. name: "Back",
  22287. image: {
  22288. source: "./media/characters/sprisk/back.svg",
  22289. extra: 1247 / 1200,
  22290. bottom: 5.6 / 1253.04
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Tiny",
  22297. height: math.unit(2, "inches")
  22298. },
  22299. {
  22300. name: "Normal",
  22301. height: math.unit(5 + 9 / 12, "feet"),
  22302. default: true
  22303. },
  22304. {
  22305. name: "Mini Macro",
  22306. height: math.unit(18, "feet")
  22307. },
  22308. {
  22309. name: "Macro",
  22310. height: math.unit(100, "feet")
  22311. },
  22312. {
  22313. name: "MACRO",
  22314. height: math.unit(50, "miles")
  22315. },
  22316. {
  22317. name: "M A C R O",
  22318. height: math.unit(300, "miles")
  22319. },
  22320. ]
  22321. ))
  22322. characterMakers.push(() => makeCharacter(
  22323. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22324. {
  22325. side: {
  22326. height: math.unit(15.6, "meters"),
  22327. weight: math.unit(700000, "kg"),
  22328. name: "Side",
  22329. image: {
  22330. source: "./media/characters/bunsen/side.svg",
  22331. extra: 1644 / 358
  22332. }
  22333. },
  22334. foot: {
  22335. height: math.unit(1.611 * 1644 / 358, "meter"),
  22336. name: "Foot",
  22337. image: {
  22338. source: "./media/characters/bunsen/foot.svg"
  22339. }
  22340. },
  22341. },
  22342. [
  22343. {
  22344. name: "Small",
  22345. height: math.unit(10, "feet")
  22346. },
  22347. {
  22348. name: "Normal",
  22349. height: math.unit(15.6, "meters"),
  22350. default: true
  22351. },
  22352. ]
  22353. ))
  22354. characterMakers.push(() => makeCharacter(
  22355. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22356. {
  22357. front: {
  22358. height: math.unit(4 + 11 / 12, "feet"),
  22359. weight: math.unit(140, "lb"),
  22360. name: "Front",
  22361. image: {
  22362. source: "./media/characters/sesh/front.svg",
  22363. extra: 3420 / 3231,
  22364. bottom: 72 / 3949.5
  22365. }
  22366. },
  22367. },
  22368. [
  22369. {
  22370. name: "Normal",
  22371. height: math.unit(4 + 11 / 12, "feet")
  22372. },
  22373. {
  22374. name: "Grown",
  22375. height: math.unit(15, "feet"),
  22376. default: true
  22377. },
  22378. {
  22379. name: "Macro",
  22380. height: math.unit(1500, "feet")
  22381. },
  22382. {
  22383. name: "Megamacro",
  22384. height: math.unit(30, "miles")
  22385. },
  22386. {
  22387. name: "Continental",
  22388. height: math.unit(3000, "miles")
  22389. },
  22390. {
  22391. name: "Gravity Mass",
  22392. height: math.unit(300000, "miles")
  22393. },
  22394. {
  22395. name: "Planet Buster",
  22396. height: math.unit(30000000, "miles")
  22397. },
  22398. {
  22399. name: "Big",
  22400. height: math.unit(3000000000, "miles")
  22401. },
  22402. ]
  22403. ))
  22404. characterMakers.push(() => makeCharacter(
  22405. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22406. {
  22407. front: {
  22408. height: math.unit(9, "feet"),
  22409. weight: math.unit(350, "lb"),
  22410. name: "Front",
  22411. image: {
  22412. source: "./media/characters/pepper/front.svg",
  22413. extra: 1448 / 1312,
  22414. bottom: 9.4 / 1457.88
  22415. }
  22416. },
  22417. back: {
  22418. height: math.unit(9, "feet"),
  22419. weight: math.unit(350, "lb"),
  22420. name: "Back",
  22421. image: {
  22422. source: "./media/characters/pepper/back.svg",
  22423. extra: 1423 / 1300,
  22424. bottom: 4.6 / 1429
  22425. }
  22426. },
  22427. maw: {
  22428. height: math.unit(0.932, "feet"),
  22429. name: "Maw",
  22430. image: {
  22431. source: "./media/characters/pepper/maw.svg"
  22432. }
  22433. },
  22434. },
  22435. [
  22436. {
  22437. name: "Normal",
  22438. height: math.unit(9, "feet"),
  22439. default: true
  22440. },
  22441. ]
  22442. ))
  22443. characterMakers.push(() => makeCharacter(
  22444. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22445. {
  22446. front: {
  22447. height: math.unit(6, "feet"),
  22448. weight: math.unit(150, "lb"),
  22449. name: "Front",
  22450. image: {
  22451. source: "./media/characters/maelstrom/front.svg",
  22452. extra: 2100 / 1883,
  22453. bottom: 94 / 2196.7
  22454. }
  22455. },
  22456. },
  22457. [
  22458. {
  22459. name: "Less Kaiju",
  22460. height: math.unit(200, "feet")
  22461. },
  22462. {
  22463. name: "Kaiju",
  22464. height: math.unit(400, "feet"),
  22465. default: true
  22466. },
  22467. {
  22468. name: "Kaiju-er",
  22469. height: math.unit(600, "feet")
  22470. },
  22471. ]
  22472. ))
  22473. characterMakers.push(() => makeCharacter(
  22474. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22475. {
  22476. front: {
  22477. height: math.unit(6 + 5 / 12, "feet"),
  22478. weight: math.unit(180, "lb"),
  22479. name: "Front",
  22480. image: {
  22481. source: "./media/characters/lexir/front.svg",
  22482. extra: 180 / 172,
  22483. bottom: 12 / 192
  22484. }
  22485. },
  22486. back: {
  22487. height: math.unit(6 + 5 / 12, "feet"),
  22488. weight: math.unit(180, "lb"),
  22489. name: "Back",
  22490. image: {
  22491. source: "./media/characters/lexir/back.svg",
  22492. extra: 183.84 / 175.5,
  22493. bottom: 3.1 / 187
  22494. }
  22495. },
  22496. },
  22497. [
  22498. {
  22499. name: "Very Smal",
  22500. height: math.unit(1, "nm")
  22501. },
  22502. {
  22503. name: "Normal",
  22504. height: math.unit(6 + 5 / 12, "feet"),
  22505. default: true
  22506. },
  22507. {
  22508. name: "Macro",
  22509. height: math.unit(1, "mile")
  22510. },
  22511. {
  22512. name: "Megamacro",
  22513. height: math.unit(50, "miles")
  22514. },
  22515. ]
  22516. ))
  22517. characterMakers.push(() => makeCharacter(
  22518. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22519. {
  22520. front: {
  22521. height: math.unit(1.5, "meters"),
  22522. weight: math.unit(100, "lb"),
  22523. name: "Front",
  22524. image: {
  22525. source: "./media/characters/maksio/front.svg",
  22526. extra: 1549 / 1531,
  22527. bottom: 123.7 / 1674.5429
  22528. }
  22529. },
  22530. back: {
  22531. height: math.unit(1.5, "meters"),
  22532. weight: math.unit(100, "lb"),
  22533. name: "Back",
  22534. image: {
  22535. source: "./media/characters/maksio/back.svg",
  22536. extra: 1541 / 1509,
  22537. bottom: 97 / 1639
  22538. }
  22539. },
  22540. hand: {
  22541. height: math.unit(0.621, "feet"),
  22542. name: "Hand",
  22543. image: {
  22544. source: "./media/characters/maksio/hand.svg"
  22545. }
  22546. },
  22547. foot: {
  22548. height: math.unit(1.611, "feet"),
  22549. name: "Foot",
  22550. image: {
  22551. source: "./media/characters/maksio/foot.svg"
  22552. }
  22553. },
  22554. },
  22555. [
  22556. {
  22557. name: "Shrunken",
  22558. height: math.unit(10, "cm")
  22559. },
  22560. {
  22561. name: "Normal",
  22562. height: math.unit(150, "cm"),
  22563. default: true
  22564. },
  22565. ]
  22566. ))
  22567. characterMakers.push(() => makeCharacter(
  22568. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22569. {
  22570. front: {
  22571. height: math.unit(100, "feet"),
  22572. name: "Front",
  22573. image: {
  22574. source: "./media/characters/erza-bear/front.svg",
  22575. extra: 2449 / 2390,
  22576. bottom: 46 / 2494
  22577. }
  22578. },
  22579. back: {
  22580. height: math.unit(100, "feet"),
  22581. name: "Back",
  22582. image: {
  22583. source: "./media/characters/erza-bear/back.svg",
  22584. extra: 2489 / 2430,
  22585. bottom: 85.4 / 2480
  22586. }
  22587. },
  22588. tail: {
  22589. height: math.unit(42, "feet"),
  22590. name: "Tail",
  22591. image: {
  22592. source: "./media/characters/erza-bear/tail.svg"
  22593. }
  22594. },
  22595. tongue: {
  22596. height: math.unit(8, "feet"),
  22597. name: "Tongue",
  22598. image: {
  22599. source: "./media/characters/erza-bear/tongue.svg"
  22600. }
  22601. },
  22602. dick: {
  22603. height: math.unit(10.5, "feet"),
  22604. name: "Dick",
  22605. image: {
  22606. source: "./media/characters/erza-bear/dick.svg"
  22607. }
  22608. },
  22609. dickVertical: {
  22610. height: math.unit(16.9, "feet"),
  22611. name: "Dick (Vertical)",
  22612. image: {
  22613. source: "./media/characters/erza-bear/dick-vertical.svg"
  22614. }
  22615. },
  22616. },
  22617. [
  22618. {
  22619. name: "Macro",
  22620. height: math.unit(100, "feet"),
  22621. default: true
  22622. },
  22623. ]
  22624. ))
  22625. characterMakers.push(() => makeCharacter(
  22626. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22627. {
  22628. front: {
  22629. height: math.unit(172, "cm"),
  22630. weight: math.unit(73, "kg"),
  22631. name: "Front",
  22632. image: {
  22633. source: "./media/characters/violet-flor/front.svg",
  22634. extra: 1530 / 1442,
  22635. bottom: 61.9 / 1588.8
  22636. }
  22637. },
  22638. back: {
  22639. height: math.unit(180, "cm"),
  22640. weight: math.unit(73, "kg"),
  22641. name: "Back",
  22642. image: {
  22643. source: "./media/characters/violet-flor/back.svg",
  22644. extra: 1692 / 1630,
  22645. bottom: 20 / 1712
  22646. }
  22647. },
  22648. },
  22649. [
  22650. {
  22651. name: "Normal",
  22652. height: math.unit(172, "cm"),
  22653. default: true
  22654. },
  22655. ]
  22656. ))
  22657. characterMakers.push(() => makeCharacter(
  22658. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22659. {
  22660. front: {
  22661. height: math.unit(6, "feet"),
  22662. weight: math.unit(220, "lb"),
  22663. name: "Front",
  22664. image: {
  22665. source: "./media/characters/lynn-rhea/front.svg",
  22666. extra: 310 / 273
  22667. }
  22668. },
  22669. back: {
  22670. height: math.unit(6, "feet"),
  22671. weight: math.unit(220, "lb"),
  22672. name: "Back",
  22673. image: {
  22674. source: "./media/characters/lynn-rhea/back.svg",
  22675. extra: 310 / 273
  22676. }
  22677. },
  22678. dicks: {
  22679. height: math.unit(0.9, "feet"),
  22680. name: "Dicks",
  22681. image: {
  22682. source: "./media/characters/lynn-rhea/dicks.svg"
  22683. }
  22684. },
  22685. slit: {
  22686. height: math.unit(0.4, "feet"),
  22687. name: "Slit",
  22688. image: {
  22689. source: "./media/characters/lynn-rhea/slit.svg"
  22690. }
  22691. },
  22692. },
  22693. [
  22694. {
  22695. name: "Micro",
  22696. height: math.unit(1, "inch")
  22697. },
  22698. {
  22699. name: "Macro",
  22700. height: math.unit(60, "feet"),
  22701. default: true
  22702. },
  22703. {
  22704. name: "Megamacro",
  22705. height: math.unit(2, "miles")
  22706. },
  22707. {
  22708. name: "Gigamacro",
  22709. height: math.unit(3, "earths")
  22710. },
  22711. {
  22712. name: "Galactic",
  22713. height: math.unit(0.8, "galaxies")
  22714. },
  22715. ]
  22716. ))
  22717. characterMakers.push(() => makeCharacter(
  22718. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22719. {
  22720. front: {
  22721. height: math.unit(1600, "feet"),
  22722. weight: math.unit(85758785169, "kg"),
  22723. name: "Front",
  22724. image: {
  22725. source: "./media/characters/valathos/front.svg",
  22726. extra: 1451 / 1339
  22727. }
  22728. },
  22729. },
  22730. [
  22731. {
  22732. name: "Macro",
  22733. height: math.unit(1600, "feet"),
  22734. default: true
  22735. },
  22736. ]
  22737. ))
  22738. characterMakers.push(() => makeCharacter(
  22739. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22740. {
  22741. front: {
  22742. height: math.unit(7 + 5 / 12, "feet"),
  22743. weight: math.unit(300, "lb"),
  22744. name: "Front",
  22745. image: {
  22746. source: "./media/characters/azula/front.svg",
  22747. extra: 3208 / 2880,
  22748. bottom: 80.2 / 3277
  22749. }
  22750. },
  22751. back: {
  22752. height: math.unit(7 + 5 / 12, "feet"),
  22753. weight: math.unit(300, "lb"),
  22754. name: "Back",
  22755. image: {
  22756. source: "./media/characters/azula/back.svg",
  22757. extra: 3169 / 2822,
  22758. bottom: 150.6 / 3321
  22759. }
  22760. },
  22761. },
  22762. [
  22763. {
  22764. name: "Normal",
  22765. height: math.unit(7 + 5 / 12, "feet"),
  22766. default: true
  22767. },
  22768. {
  22769. name: "Big",
  22770. height: math.unit(20, "feet")
  22771. },
  22772. ]
  22773. ))
  22774. characterMakers.push(() => makeCharacter(
  22775. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22776. {
  22777. front: {
  22778. height: math.unit(5 + 1 / 12, "feet"),
  22779. weight: math.unit(110, "lb"),
  22780. name: "Front",
  22781. image: {
  22782. source: "./media/characters/rupert/front.svg",
  22783. extra: 1549 / 1495,
  22784. bottom: 54.2 / 1604.4
  22785. }
  22786. },
  22787. },
  22788. [
  22789. {
  22790. name: "Normal",
  22791. height: math.unit(5 + 1 / 12, "feet"),
  22792. default: true
  22793. },
  22794. ]
  22795. ))
  22796. characterMakers.push(() => makeCharacter(
  22797. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22798. {
  22799. front: {
  22800. height: math.unit(8 + 4 / 12, "feet"),
  22801. weight: math.unit(350, "lb"),
  22802. name: "Front",
  22803. image: {
  22804. source: "./media/characters/sheera-castellar/front.svg",
  22805. extra: 1957 / 1894,
  22806. bottom: 26.97 / 1975.017
  22807. }
  22808. },
  22809. side: {
  22810. height: math.unit(8 + 4 / 12, "feet"),
  22811. weight: math.unit(350, "lb"),
  22812. name: "Side",
  22813. image: {
  22814. source: "./media/characters/sheera-castellar/side.svg",
  22815. extra: 1957 / 1894
  22816. }
  22817. },
  22818. back: {
  22819. height: math.unit(8 + 4 / 12, "feet"),
  22820. weight: math.unit(350, "lb"),
  22821. name: "Back",
  22822. image: {
  22823. source: "./media/characters/sheera-castellar/back.svg",
  22824. extra: 1957 / 1894
  22825. }
  22826. },
  22827. angled: {
  22828. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22829. weight: math.unit(350, "lb"),
  22830. name: "Angled",
  22831. image: {
  22832. source: "./media/characters/sheera-castellar/angled.svg",
  22833. extra: 1807 / 1707,
  22834. bottom: 68 / 1875
  22835. }
  22836. },
  22837. genitals: {
  22838. height: math.unit(2.2, "feet"),
  22839. name: "Genitals",
  22840. image: {
  22841. source: "./media/characters/sheera-castellar/genitals.svg"
  22842. }
  22843. },
  22844. taur: {
  22845. height: math.unit(10 + 6/12, "feet"),
  22846. name: "Taur",
  22847. image: {
  22848. source: "./media/characters/sheera-castellar/taur.svg",
  22849. extra: 2017/1909,
  22850. bottom: 185/2202
  22851. }
  22852. },
  22853. },
  22854. [
  22855. {
  22856. name: "Normal",
  22857. height: math.unit(8 + 4 / 12, "feet")
  22858. },
  22859. {
  22860. name: "Macro",
  22861. height: math.unit(150, "feet"),
  22862. default: true
  22863. },
  22864. {
  22865. name: "Macro+",
  22866. height: math.unit(800, "feet")
  22867. },
  22868. ]
  22869. ))
  22870. characterMakers.push(() => makeCharacter(
  22871. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22872. {
  22873. front: {
  22874. height: math.unit(6, "feet"),
  22875. weight: math.unit(150, "lb"),
  22876. name: "Front",
  22877. image: {
  22878. source: "./media/characters/jaipur/front.svg",
  22879. extra: 3860 / 3731,
  22880. bottom: 287 / 4140
  22881. }
  22882. },
  22883. back: {
  22884. height: math.unit(6, "feet"),
  22885. weight: math.unit(150, "lb"),
  22886. name: "Back",
  22887. image: {
  22888. source: "./media/characters/jaipur/back.svg",
  22889. extra: 4060 / 3930,
  22890. bottom: 151 / 4200
  22891. }
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "Normal",
  22897. height: math.unit(1.85, "meters"),
  22898. default: true
  22899. },
  22900. {
  22901. name: "Macro",
  22902. height: math.unit(150, "meters")
  22903. },
  22904. {
  22905. name: "Macro+",
  22906. height: math.unit(0.5, "miles")
  22907. },
  22908. {
  22909. name: "Macro++",
  22910. height: math.unit(2.5, "miles")
  22911. },
  22912. {
  22913. name: "Macro+++",
  22914. height: math.unit(12, "miles")
  22915. },
  22916. {
  22917. name: "Macro++++",
  22918. height: math.unit(120, "miles")
  22919. },
  22920. {
  22921. name: "Macro+++++",
  22922. height: math.unit(1200, "miles")
  22923. },
  22924. ]
  22925. ))
  22926. characterMakers.push(() => makeCharacter(
  22927. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22928. {
  22929. front: {
  22930. height: math.unit(6, "feet"),
  22931. weight: math.unit(150, "lb"),
  22932. name: "Front",
  22933. image: {
  22934. source: "./media/characters/sheila-wolf/front.svg",
  22935. extra: 1931 / 1808,
  22936. bottom: 29.5 / 1960
  22937. }
  22938. },
  22939. dick: {
  22940. height: math.unit(1.464, "feet"),
  22941. name: "Dick",
  22942. image: {
  22943. source: "./media/characters/sheila-wolf/dick.svg"
  22944. }
  22945. },
  22946. muzzle: {
  22947. height: math.unit(0.513, "feet"),
  22948. name: "Muzzle",
  22949. image: {
  22950. source: "./media/characters/sheila-wolf/muzzle.svg"
  22951. }
  22952. },
  22953. },
  22954. [
  22955. {
  22956. name: "Macro",
  22957. height: math.unit(70, "feet"),
  22958. default: true
  22959. },
  22960. ]
  22961. ))
  22962. characterMakers.push(() => makeCharacter(
  22963. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22964. {
  22965. front: {
  22966. height: math.unit(32, "meters"),
  22967. weight: math.unit(300000, "kg"),
  22968. name: "Front",
  22969. image: {
  22970. source: "./media/characters/almor/front.svg",
  22971. extra: 1408 / 1322,
  22972. bottom: 94.6 / 1506.5
  22973. }
  22974. },
  22975. },
  22976. [
  22977. {
  22978. name: "Macro",
  22979. height: math.unit(32, "meters"),
  22980. default: true
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22986. {
  22987. front: {
  22988. height: math.unit(7, "feet"),
  22989. weight: math.unit(200, "lb"),
  22990. name: "Front",
  22991. image: {
  22992. source: "./media/characters/silver/front.svg",
  22993. extra: 472.1 / 450.5,
  22994. bottom: 26.5 / 499.424
  22995. }
  22996. },
  22997. },
  22998. [
  22999. {
  23000. name: "Normal",
  23001. height: math.unit(7, "feet"),
  23002. default: true
  23003. },
  23004. {
  23005. name: "Macro",
  23006. height: math.unit(800, "feet")
  23007. },
  23008. {
  23009. name: "Megamacro",
  23010. height: math.unit(250, "miles")
  23011. },
  23012. ]
  23013. ))
  23014. characterMakers.push(() => makeCharacter(
  23015. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23016. {
  23017. front: {
  23018. height: math.unit(6, "feet"),
  23019. weight: math.unit(150, "lb"),
  23020. name: "Front",
  23021. image: {
  23022. source: "./media/characters/pliskin/front.svg",
  23023. extra: 1469 / 1359,
  23024. bottom: 70 / 1540
  23025. }
  23026. },
  23027. },
  23028. [
  23029. {
  23030. name: "Micro",
  23031. height: math.unit(3, "inches")
  23032. },
  23033. {
  23034. name: "Normal",
  23035. height: math.unit(5 + 11 / 12, "feet"),
  23036. default: true
  23037. },
  23038. {
  23039. name: "Macro",
  23040. height: math.unit(120, "feet")
  23041. },
  23042. ]
  23043. ))
  23044. characterMakers.push(() => makeCharacter(
  23045. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23046. {
  23047. front: {
  23048. height: math.unit(6, "feet"),
  23049. weight: math.unit(150, "lb"),
  23050. name: "Front",
  23051. image: {
  23052. source: "./media/characters/sammy/front.svg",
  23053. extra: 1193 / 1089,
  23054. bottom: 30.5 / 1226
  23055. }
  23056. },
  23057. },
  23058. [
  23059. {
  23060. name: "Macro",
  23061. height: math.unit(1700, "feet"),
  23062. default: true
  23063. },
  23064. {
  23065. name: "Examacro",
  23066. height: math.unit(2.5e9, "lightyears")
  23067. },
  23068. ]
  23069. ))
  23070. characterMakers.push(() => makeCharacter(
  23071. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23072. {
  23073. front: {
  23074. height: math.unit(21, "meters"),
  23075. weight: math.unit(12, "tonnes"),
  23076. name: "Front",
  23077. image: {
  23078. source: "./media/characters/kuru/front.svg",
  23079. extra: 4301 / 3785,
  23080. bottom: 371.3 / 4691
  23081. }
  23082. },
  23083. },
  23084. [
  23085. {
  23086. name: "Macro",
  23087. height: math.unit(21, "meters"),
  23088. default: true
  23089. },
  23090. ]
  23091. ))
  23092. characterMakers.push(() => makeCharacter(
  23093. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23094. {
  23095. front: {
  23096. height: math.unit(23, "meters"),
  23097. weight: math.unit(12.2, "tonnes"),
  23098. name: "Front",
  23099. image: {
  23100. source: "./media/characters/rakka/front.svg",
  23101. extra: 4670 / 4169,
  23102. bottom: 301 / 4968.7
  23103. }
  23104. },
  23105. },
  23106. [
  23107. {
  23108. name: "Macro",
  23109. height: math.unit(23, "meters"),
  23110. default: true
  23111. },
  23112. ]
  23113. ))
  23114. characterMakers.push(() => makeCharacter(
  23115. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23116. {
  23117. front: {
  23118. height: math.unit(6, "feet"),
  23119. weight: math.unit(150, "lb"),
  23120. name: "Front",
  23121. image: {
  23122. source: "./media/characters/rhys-feline/front.svg",
  23123. extra: 2488 / 2308,
  23124. bottom: 35.67 / 2519.19
  23125. }
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "Really Small",
  23131. height: math.unit(1, "nm")
  23132. },
  23133. {
  23134. name: "Micro",
  23135. height: math.unit(4, "inches")
  23136. },
  23137. {
  23138. name: "Normal",
  23139. height: math.unit(4 + 10 / 12, "feet"),
  23140. default: true
  23141. },
  23142. {
  23143. name: "Macro",
  23144. height: math.unit(100, "feet")
  23145. },
  23146. {
  23147. name: "Megamacto",
  23148. height: math.unit(50, "miles")
  23149. },
  23150. ]
  23151. ))
  23152. characterMakers.push(() => makeCharacter(
  23153. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23154. {
  23155. side: {
  23156. height: math.unit(30, "feet"),
  23157. weight: math.unit(35000, "kg"),
  23158. name: "Side",
  23159. image: {
  23160. source: "./media/characters/alydar/side.svg",
  23161. extra: 234 / 222,
  23162. bottom: 6.5 / 241
  23163. }
  23164. },
  23165. front: {
  23166. height: math.unit(30, "feet"),
  23167. weight: math.unit(35000, "kg"),
  23168. name: "Front",
  23169. image: {
  23170. source: "./media/characters/alydar/front.svg",
  23171. extra: 223.37 / 210.2,
  23172. bottom: 22.3 / 246.76
  23173. }
  23174. },
  23175. top: {
  23176. height: math.unit(64.54, "feet"),
  23177. weight: math.unit(35000, "kg"),
  23178. name: "Top",
  23179. image: {
  23180. source: "./media/characters/alydar/top.svg"
  23181. }
  23182. },
  23183. anthro: {
  23184. height: math.unit(30, "feet"),
  23185. weight: math.unit(9000, "kg"),
  23186. name: "Anthro",
  23187. image: {
  23188. source: "./media/characters/alydar/anthro.svg",
  23189. extra: 432 / 421,
  23190. bottom: 7.18 / 440
  23191. }
  23192. },
  23193. maw: {
  23194. height: math.unit(11.693, "feet"),
  23195. name: "Maw",
  23196. image: {
  23197. source: "./media/characters/alydar/maw.svg"
  23198. }
  23199. },
  23200. head: {
  23201. height: math.unit(11.693, "feet"),
  23202. name: "Head",
  23203. image: {
  23204. source: "./media/characters/alydar/head.svg"
  23205. }
  23206. },
  23207. headAlt: {
  23208. height: math.unit(12.861, "feet"),
  23209. name: "Head (Alt)",
  23210. image: {
  23211. source: "./media/characters/alydar/head-alt.svg"
  23212. }
  23213. },
  23214. wing: {
  23215. height: math.unit(20.712, "feet"),
  23216. name: "Wing",
  23217. image: {
  23218. source: "./media/characters/alydar/wing.svg"
  23219. }
  23220. },
  23221. wingFeather: {
  23222. height: math.unit(9.662, "feet"),
  23223. name: "Wing Feather",
  23224. image: {
  23225. source: "./media/characters/alydar/wing-feather.svg"
  23226. }
  23227. },
  23228. countourFeather: {
  23229. height: math.unit(4.154, "feet"),
  23230. name: "Contour Feather",
  23231. image: {
  23232. source: "./media/characters/alydar/contour-feather.svg"
  23233. }
  23234. },
  23235. },
  23236. [
  23237. {
  23238. name: "Diplomatic",
  23239. height: math.unit(13, "feet"),
  23240. default: true
  23241. },
  23242. {
  23243. name: "Small",
  23244. height: math.unit(30, "feet")
  23245. },
  23246. {
  23247. name: "Normal",
  23248. height: math.unit(95, "feet"),
  23249. default: true
  23250. },
  23251. {
  23252. name: "Large",
  23253. height: math.unit(285, "feet")
  23254. },
  23255. {
  23256. name: "Incomprehensible",
  23257. height: math.unit(450, "megameters")
  23258. },
  23259. ]
  23260. ))
  23261. characterMakers.push(() => makeCharacter(
  23262. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23263. {
  23264. side: {
  23265. height: math.unit(11, "feet"),
  23266. weight: math.unit(1750, "kg"),
  23267. name: "Side",
  23268. image: {
  23269. source: "./media/characters/selicia/side.svg",
  23270. extra: 440 / 396,
  23271. bottom: 24.8 / 465.979
  23272. }
  23273. },
  23274. maw: {
  23275. height: math.unit(4.665, "feet"),
  23276. name: "Maw",
  23277. image: {
  23278. source: "./media/characters/selicia/maw.svg"
  23279. }
  23280. },
  23281. },
  23282. [
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(11, "feet"),
  23286. default: true
  23287. },
  23288. ]
  23289. ))
  23290. characterMakers.push(() => makeCharacter(
  23291. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23292. {
  23293. side: {
  23294. height: math.unit(2 + 6 / 12, "feet"),
  23295. weight: math.unit(30, "lb"),
  23296. name: "Side",
  23297. image: {
  23298. source: "./media/characters/layla/side.svg",
  23299. extra: 244 / 188,
  23300. bottom: 18.2 / 262.1
  23301. }
  23302. },
  23303. back: {
  23304. height: math.unit(2 + 6 / 12, "feet"),
  23305. weight: math.unit(30, "lb"),
  23306. name: "Back",
  23307. image: {
  23308. source: "./media/characters/layla/back.svg",
  23309. extra: 308 / 241.5,
  23310. bottom: 8.9 / 316.8
  23311. }
  23312. },
  23313. cumming: {
  23314. height: math.unit(2 + 6 / 12, "feet"),
  23315. weight: math.unit(30, "lb"),
  23316. name: "Cumming",
  23317. image: {
  23318. source: "./media/characters/layla/cumming.svg",
  23319. extra: 342 / 279,
  23320. bottom: 595 / 938
  23321. }
  23322. },
  23323. dickFlaccid: {
  23324. height: math.unit(2.595, "feet"),
  23325. name: "Flaccid Genitals",
  23326. image: {
  23327. source: "./media/characters/layla/dick-flaccid.svg"
  23328. }
  23329. },
  23330. dickErect: {
  23331. height: math.unit(2.359, "feet"),
  23332. name: "Erect Genitals",
  23333. image: {
  23334. source: "./media/characters/layla/dick-erect.svg"
  23335. }
  23336. },
  23337. dragon: {
  23338. height: math.unit(40, "feet"),
  23339. name: "Dragon",
  23340. image: {
  23341. source: "./media/characters/layla/dragon.svg",
  23342. extra: 610/535,
  23343. bottom: 367/977
  23344. }
  23345. },
  23346. taur: {
  23347. height: math.unit(30, "feet"),
  23348. name: "Taur",
  23349. image: {
  23350. source: "./media/characters/layla/taur.svg",
  23351. extra: 1268/1199,
  23352. bottom: 112/1380
  23353. }
  23354. },
  23355. },
  23356. [
  23357. {
  23358. name: "Micro",
  23359. height: math.unit(1, "inch")
  23360. },
  23361. {
  23362. name: "Small",
  23363. height: math.unit(1, "foot")
  23364. },
  23365. {
  23366. name: "Normal",
  23367. height: math.unit(2 + 6 / 12, "feet"),
  23368. default: true
  23369. },
  23370. {
  23371. name: "Macro",
  23372. height: math.unit(200, "feet")
  23373. },
  23374. {
  23375. name: "Megamacro",
  23376. height: math.unit(1000, "miles")
  23377. },
  23378. {
  23379. name: "Planetary",
  23380. height: math.unit(8000, "miles")
  23381. },
  23382. {
  23383. name: "True Layla",
  23384. height: math.unit(200000 * 7, "multiverses")
  23385. },
  23386. ]
  23387. ))
  23388. characterMakers.push(() => makeCharacter(
  23389. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23390. {
  23391. back: {
  23392. height: math.unit(10.5, "feet"),
  23393. weight: math.unit(800, "lb"),
  23394. name: "Back",
  23395. image: {
  23396. source: "./media/characters/knox/back.svg",
  23397. extra: 1486 / 1089,
  23398. bottom: 107 / 1601.4
  23399. }
  23400. },
  23401. side: {
  23402. height: math.unit(10.5, "feet"),
  23403. weight: math.unit(800, "lb"),
  23404. name: "Side",
  23405. image: {
  23406. source: "./media/characters/knox/side.svg",
  23407. extra: 244 / 218,
  23408. bottom: 14 / 260
  23409. }
  23410. },
  23411. },
  23412. [
  23413. {
  23414. name: "Compact",
  23415. height: math.unit(10.5, "feet"),
  23416. default: true
  23417. },
  23418. {
  23419. name: "Dynamax",
  23420. height: math.unit(210, "feet")
  23421. },
  23422. {
  23423. name: "Full Macro",
  23424. height: math.unit(850, "feet")
  23425. },
  23426. ]
  23427. ))
  23428. characterMakers.push(() => makeCharacter(
  23429. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23430. {
  23431. front: {
  23432. height: math.unit(6, "feet"),
  23433. weight: math.unit(152, "lb"),
  23434. name: "Front",
  23435. image: {
  23436. source: "./media/characters/shin-pikachu/front.svg",
  23437. extra: 1854/1602,
  23438. bottom: 166/2020
  23439. }
  23440. },
  23441. hand: {
  23442. height: math.unit(1.055, "feet"),
  23443. name: "Hand",
  23444. image: {
  23445. source: "./media/characters/shin-pikachu/hand.svg"
  23446. }
  23447. },
  23448. foot: {
  23449. height: math.unit(1.1, "feet"),
  23450. name: "Foot",
  23451. image: {
  23452. source: "./media/characters/shin-pikachu/foot.svg"
  23453. }
  23454. },
  23455. collar: {
  23456. height: math.unit(0.386, "feet"),
  23457. name: "Collar",
  23458. image: {
  23459. source: "./media/characters/shin-pikachu/collar.svg"
  23460. }
  23461. },
  23462. },
  23463. [
  23464. {
  23465. name: "Smallest",
  23466. height: math.unit(0.5, "inches")
  23467. },
  23468. {
  23469. name: "Micro",
  23470. height: math.unit(6, "inches")
  23471. },
  23472. {
  23473. name: "Normal",
  23474. height: math.unit(6, "feet"),
  23475. default: true
  23476. },
  23477. {
  23478. name: "Macro",
  23479. height: math.unit(150, "feet")
  23480. },
  23481. ]
  23482. ))
  23483. characterMakers.push(() => makeCharacter(
  23484. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23485. {
  23486. front: {
  23487. height: math.unit(28, "feet"),
  23488. weight: math.unit(10500, "lb"),
  23489. name: "Front",
  23490. image: {
  23491. source: "./media/characters/kayda/front.svg",
  23492. extra: 1536 / 1428,
  23493. bottom: 68.7 / 1603
  23494. }
  23495. },
  23496. back: {
  23497. height: math.unit(28, "feet"),
  23498. weight: math.unit(10500, "lb"),
  23499. name: "Back",
  23500. image: {
  23501. source: "./media/characters/kayda/back.svg",
  23502. extra: 1557 / 1464,
  23503. bottom: 39.5 / 1597.49
  23504. }
  23505. },
  23506. dick: {
  23507. height: math.unit(3.858, "feet"),
  23508. name: "Dick",
  23509. image: {
  23510. source: "./media/characters/kayda/dick.svg"
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Macro",
  23517. height: math.unit(28, "feet"),
  23518. default: true
  23519. },
  23520. ]
  23521. ))
  23522. characterMakers.push(() => makeCharacter(
  23523. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23524. {
  23525. front: {
  23526. height: math.unit(10 + 11 / 12, "feet"),
  23527. weight: math.unit(1400, "lb"),
  23528. name: "Front",
  23529. image: {
  23530. source: "./media/characters/brian/front.svg",
  23531. extra: 737 / 692,
  23532. bottom: 55.4 / 785
  23533. }
  23534. },
  23535. },
  23536. [
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(10 + 11 / 12, "feet"),
  23540. default: true
  23541. },
  23542. ]
  23543. ))
  23544. characterMakers.push(() => makeCharacter(
  23545. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23546. {
  23547. front: {
  23548. height: math.unit(5 + 8 / 12, "feet"),
  23549. weight: math.unit(140, "lb"),
  23550. name: "Front",
  23551. image: {
  23552. source: "./media/characters/khemri/front.svg",
  23553. extra: 4780 / 4059,
  23554. bottom: 80.1 / 4859.25
  23555. }
  23556. },
  23557. },
  23558. [
  23559. {
  23560. name: "Micro",
  23561. height: math.unit(6, "inches")
  23562. },
  23563. {
  23564. name: "Normal",
  23565. height: math.unit(5 + 8 / 12, "feet"),
  23566. default: true
  23567. },
  23568. ]
  23569. ))
  23570. characterMakers.push(() => makeCharacter(
  23571. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23572. {
  23573. front: {
  23574. height: math.unit(13, "feet"),
  23575. weight: math.unit(1700, "lb"),
  23576. name: "Front",
  23577. image: {
  23578. source: "./media/characters/felix-braveheart/front.svg",
  23579. extra: 1222 / 1157,
  23580. bottom: 53.2 / 1280
  23581. }
  23582. },
  23583. back: {
  23584. height: math.unit(13, "feet"),
  23585. weight: math.unit(1700, "lb"),
  23586. name: "Back",
  23587. image: {
  23588. source: "./media/characters/felix-braveheart/back.svg",
  23589. extra: 1277 / 1203,
  23590. bottom: 50.2 / 1327
  23591. }
  23592. },
  23593. feral: {
  23594. height: math.unit(6, "feet"),
  23595. weight: math.unit(400, "lb"),
  23596. name: "Feral",
  23597. image: {
  23598. source: "./media/characters/felix-braveheart/feral.svg",
  23599. extra: 682 / 625,
  23600. bottom: 6.9 / 688
  23601. }
  23602. },
  23603. },
  23604. [
  23605. {
  23606. name: "Normal",
  23607. height: math.unit(13, "feet"),
  23608. default: true
  23609. },
  23610. ]
  23611. ))
  23612. characterMakers.push(() => makeCharacter(
  23613. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23614. {
  23615. side: {
  23616. height: math.unit(5 + 11 / 12, "feet"),
  23617. weight: math.unit(1400, "lb"),
  23618. name: "Side",
  23619. image: {
  23620. source: "./media/characters/shadow-blade/side.svg",
  23621. extra: 1726 / 1267,
  23622. bottom: 58.4 / 1785
  23623. }
  23624. },
  23625. },
  23626. [
  23627. {
  23628. name: "Normal",
  23629. height: math.unit(5 + 11 / 12, "feet"),
  23630. default: true
  23631. },
  23632. ]
  23633. ))
  23634. characterMakers.push(() => makeCharacter(
  23635. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23636. {
  23637. front: {
  23638. height: math.unit(1 + 6 / 12, "feet"),
  23639. weight: math.unit(25, "lb"),
  23640. name: "Front",
  23641. image: {
  23642. source: "./media/characters/karla-halldor/front.svg",
  23643. extra: 1459 / 1383,
  23644. bottom: 12 / 1472
  23645. }
  23646. },
  23647. },
  23648. [
  23649. {
  23650. name: "Normal",
  23651. height: math.unit(1 + 6 / 12, "feet"),
  23652. default: true
  23653. },
  23654. ]
  23655. ))
  23656. characterMakers.push(() => makeCharacter(
  23657. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23658. {
  23659. front: {
  23660. height: math.unit(6 + 2 / 12, "feet"),
  23661. weight: math.unit(160, "lb"),
  23662. name: "Front",
  23663. image: {
  23664. source: "./media/characters/ariam/front.svg",
  23665. extra: 714 / 617,
  23666. bottom: 23.4 / 737,
  23667. }
  23668. },
  23669. squatting: {
  23670. height: math.unit(4.1, "feet"),
  23671. weight: math.unit(160, "lb"),
  23672. name: "Squatting",
  23673. image: {
  23674. source: "./media/characters/ariam/squatting.svg",
  23675. extra: 2617 / 2112,
  23676. bottom: 61.2 / 2681,
  23677. }
  23678. },
  23679. },
  23680. [
  23681. {
  23682. name: "Normal",
  23683. height: math.unit(6 + 2 / 12, "feet"),
  23684. default: true
  23685. },
  23686. {
  23687. name: "Normal+",
  23688. height: math.unit(4, "meters")
  23689. },
  23690. {
  23691. name: "Macro",
  23692. height: math.unit(50, "meters")
  23693. },
  23694. {
  23695. name: "Macro+",
  23696. height: math.unit(100, "meters")
  23697. },
  23698. {
  23699. name: "Megamacro",
  23700. height: math.unit(20, "km")
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23706. {
  23707. front: {
  23708. height: math.unit(1.67, "meters"),
  23709. weight: math.unit(140, "lb"),
  23710. name: "Front",
  23711. image: {
  23712. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23713. extra: 438 / 410,
  23714. bottom: 0.75 / 439
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Shrunken",
  23721. height: math.unit(7.6, "cm")
  23722. },
  23723. {
  23724. name: "Human Scale",
  23725. height: math.unit(1.67, "meters")
  23726. },
  23727. {
  23728. name: "Wolxi Scale",
  23729. height: math.unit(36.7, "meters"),
  23730. default: true
  23731. },
  23732. ]
  23733. ))
  23734. characterMakers.push(() => makeCharacter(
  23735. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23736. {
  23737. front: {
  23738. height: math.unit(1.73, "meters"),
  23739. weight: math.unit(240, "lb"),
  23740. name: "Front",
  23741. image: {
  23742. source: "./media/characters/izue-two-mothers/front.svg",
  23743. extra: 469 / 437,
  23744. bottom: 1.24 / 470.6
  23745. }
  23746. },
  23747. },
  23748. [
  23749. {
  23750. name: "Shrunken",
  23751. height: math.unit(7.86, "cm")
  23752. },
  23753. {
  23754. name: "Human Scale",
  23755. height: math.unit(1.73, "meters")
  23756. },
  23757. {
  23758. name: "Wolxi Scale",
  23759. height: math.unit(38, "meters"),
  23760. default: true
  23761. },
  23762. ]
  23763. ))
  23764. characterMakers.push(() => makeCharacter(
  23765. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23766. {
  23767. front: {
  23768. height: math.unit(1.55, "meters"),
  23769. weight: math.unit(120, "lb"),
  23770. name: "Front",
  23771. image: {
  23772. source: "./media/characters/teeku-love-shack/front.svg",
  23773. extra: 387 / 362,
  23774. bottom: 1.51 / 388
  23775. }
  23776. },
  23777. },
  23778. [
  23779. {
  23780. name: "Shrunken",
  23781. height: math.unit(7, "cm")
  23782. },
  23783. {
  23784. name: "Human Scale",
  23785. height: math.unit(1.55, "meters")
  23786. },
  23787. {
  23788. name: "Wolxi Scale",
  23789. height: math.unit(34.1, "meters"),
  23790. default: true
  23791. },
  23792. ]
  23793. ))
  23794. characterMakers.push(() => makeCharacter(
  23795. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23796. {
  23797. front: {
  23798. height: math.unit(1.83, "meters"),
  23799. weight: math.unit(135, "lb"),
  23800. name: "Front",
  23801. image: {
  23802. source: "./media/characters/dejma-the-red/front.svg",
  23803. extra: 480 / 458,
  23804. bottom: 1.8 / 482
  23805. }
  23806. },
  23807. },
  23808. [
  23809. {
  23810. name: "Shrunken",
  23811. height: math.unit(8.3, "cm")
  23812. },
  23813. {
  23814. name: "Human Scale",
  23815. height: math.unit(1.83, "meters")
  23816. },
  23817. {
  23818. name: "Wolxi Scale",
  23819. height: math.unit(40, "meters"),
  23820. default: true
  23821. },
  23822. ]
  23823. ))
  23824. characterMakers.push(() => makeCharacter(
  23825. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23826. {
  23827. front: {
  23828. height: math.unit(1.78, "meters"),
  23829. weight: math.unit(65, "kg"),
  23830. name: "Front",
  23831. image: {
  23832. source: "./media/characters/aki/front.svg",
  23833. extra: 452 / 415
  23834. }
  23835. },
  23836. frontNsfw: {
  23837. height: math.unit(1.78, "meters"),
  23838. weight: math.unit(65, "kg"),
  23839. name: "Front (NSFW)",
  23840. image: {
  23841. source: "./media/characters/aki/front-nsfw.svg",
  23842. extra: 452 / 415
  23843. }
  23844. },
  23845. back: {
  23846. height: math.unit(1.78, "meters"),
  23847. weight: math.unit(65, "kg"),
  23848. name: "Back",
  23849. image: {
  23850. source: "./media/characters/aki/back.svg",
  23851. extra: 452 / 415
  23852. }
  23853. },
  23854. rump: {
  23855. height: math.unit(2.05, "feet"),
  23856. name: "Rump",
  23857. image: {
  23858. source: "./media/characters/aki/rump.svg"
  23859. }
  23860. },
  23861. dick: {
  23862. height: math.unit(0.95, "feet"),
  23863. name: "Dick",
  23864. image: {
  23865. source: "./media/characters/aki/dick.svg"
  23866. }
  23867. },
  23868. },
  23869. [
  23870. {
  23871. name: "Micro",
  23872. height: math.unit(15, "cm")
  23873. },
  23874. {
  23875. name: "Normal",
  23876. height: math.unit(178, "cm"),
  23877. default: true
  23878. },
  23879. {
  23880. name: "Macro",
  23881. height: math.unit(214, "m")
  23882. },
  23883. {
  23884. name: "Macro+",
  23885. height: math.unit(534, "m")
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23891. {
  23892. front: {
  23893. height: math.unit(5 + 5 / 12, "feet"),
  23894. weight: math.unit(120, "lb"),
  23895. name: "Front",
  23896. image: {
  23897. source: "./media/characters/ari/front.svg",
  23898. extra: 714.5 / 682,
  23899. bottom: 8 / 722.5
  23900. }
  23901. },
  23902. },
  23903. [
  23904. {
  23905. name: "Normal",
  23906. height: math.unit(5 + 5 / 12, "feet")
  23907. },
  23908. {
  23909. name: "Macro",
  23910. height: math.unit(100, "feet"),
  23911. default: true
  23912. },
  23913. {
  23914. name: "Megamacro",
  23915. height: math.unit(100, "miles")
  23916. },
  23917. {
  23918. name: "Gigamacro",
  23919. height: math.unit(80000, "miles")
  23920. },
  23921. ]
  23922. ))
  23923. characterMakers.push(() => makeCharacter(
  23924. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23925. {
  23926. side: {
  23927. height: math.unit(9, "feet"),
  23928. weight: math.unit(400, "kg"),
  23929. name: "Side",
  23930. image: {
  23931. source: "./media/characters/bolt/side.svg",
  23932. extra: 1126 / 896,
  23933. bottom: 60 / 1187.3,
  23934. }
  23935. },
  23936. },
  23937. [
  23938. {
  23939. name: "Micro",
  23940. height: math.unit(5, "inches")
  23941. },
  23942. {
  23943. name: "Normal",
  23944. height: math.unit(9, "feet"),
  23945. default: true
  23946. },
  23947. {
  23948. name: "Macro",
  23949. height: math.unit(700, "feet")
  23950. },
  23951. {
  23952. name: "Max Size",
  23953. height: math.unit(1.52e22, "yottameters")
  23954. },
  23955. ]
  23956. ))
  23957. characterMakers.push(() => makeCharacter(
  23958. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23959. {
  23960. front: {
  23961. height: math.unit(4.53, "meters"),
  23962. weight: math.unit(3, "tons"),
  23963. name: "Front",
  23964. image: {
  23965. source: "./media/characters/draekon-sylviar/front.svg",
  23966. extra: 1228 / 1068,
  23967. bottom: 41 / 1270
  23968. }
  23969. },
  23970. tail: {
  23971. height: math.unit(1.772, "meter"),
  23972. name: "Tail",
  23973. image: {
  23974. source: "./media/characters/draekon-sylviar/tail.svg"
  23975. }
  23976. },
  23977. head: {
  23978. height: math.unit(1.331, "meter"),
  23979. name: "Head",
  23980. image: {
  23981. source: "./media/characters/draekon-sylviar/head.svg"
  23982. }
  23983. },
  23984. hand: {
  23985. height: math.unit(0.564, "meter"),
  23986. name: "Hand",
  23987. image: {
  23988. source: "./media/characters/draekon-sylviar/hand.svg"
  23989. }
  23990. },
  23991. foot: {
  23992. height: math.unit(0.621, "meter"),
  23993. name: "Foot",
  23994. image: {
  23995. source: "./media/characters/draekon-sylviar/foot.svg",
  23996. bottom: 32 / 324
  23997. }
  23998. },
  23999. dick: {
  24000. height: math.unit(61, "cm"),
  24001. name: "Dick",
  24002. image: {
  24003. source: "./media/characters/draekon-sylviar/dick.svg"
  24004. }
  24005. },
  24006. dickseparated: {
  24007. height: math.unit(61, "cm"),
  24008. name: "Dick-separated",
  24009. image: {
  24010. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24011. }
  24012. },
  24013. },
  24014. [
  24015. {
  24016. name: "Small",
  24017. height: math.unit(4.53 / 2, "meters"),
  24018. default: true
  24019. },
  24020. {
  24021. name: "Normal",
  24022. height: math.unit(4.53, "meters"),
  24023. default: true
  24024. },
  24025. {
  24026. name: "Large",
  24027. height: math.unit(4.53 * 2, "meters"),
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24033. {
  24034. front: {
  24035. height: math.unit(6 + 2 / 12, "feet"),
  24036. weight: math.unit(180, "lb"),
  24037. name: "Front",
  24038. image: {
  24039. source: "./media/characters/brawler/front.svg",
  24040. extra: 3301 / 3027,
  24041. bottom: 138 / 3439
  24042. }
  24043. },
  24044. },
  24045. [
  24046. {
  24047. name: "Normal",
  24048. height: math.unit(6 + 2 / 12, "feet"),
  24049. default: true
  24050. },
  24051. ]
  24052. ))
  24053. characterMakers.push(() => makeCharacter(
  24054. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24055. {
  24056. front: {
  24057. height: math.unit(11, "feet"),
  24058. weight: math.unit(1000, "lb"),
  24059. name: "Front",
  24060. image: {
  24061. source: "./media/characters/alex/front.svg",
  24062. bottom: 44.5 / 620
  24063. }
  24064. },
  24065. },
  24066. [
  24067. {
  24068. name: "Micro",
  24069. height: math.unit(5, "inches")
  24070. },
  24071. {
  24072. name: "Normal",
  24073. height: math.unit(11, "feet"),
  24074. default: true
  24075. },
  24076. {
  24077. name: "Macro",
  24078. height: math.unit(9.5e9, "feet")
  24079. },
  24080. {
  24081. name: "Max Size",
  24082. height: math.unit(1.4e283, "yottameters")
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24088. {
  24089. female: {
  24090. height: math.unit(29.9, "m"),
  24091. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24092. name: "Female",
  24093. image: {
  24094. source: "./media/characters/zenari/female.svg",
  24095. extra: 3281.6 / 3217,
  24096. bottom: 72.2 / 3353
  24097. }
  24098. },
  24099. male: {
  24100. height: math.unit(27.7, "m"),
  24101. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24102. name: "Male",
  24103. image: {
  24104. source: "./media/characters/zenari/male.svg",
  24105. extra: 3008 / 2991,
  24106. bottom: 54.6 / 3069
  24107. }
  24108. },
  24109. },
  24110. [
  24111. {
  24112. name: "Macro",
  24113. height: math.unit(29.7, "meters"),
  24114. default: true
  24115. },
  24116. ]
  24117. ))
  24118. characterMakers.push(() => makeCharacter(
  24119. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24120. {
  24121. female: {
  24122. height: math.unit(23.8, "m"),
  24123. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24124. name: "Female",
  24125. image: {
  24126. source: "./media/characters/mactarian/female.svg",
  24127. extra: 2662 / 2569,
  24128. bottom: 73 / 2736
  24129. }
  24130. },
  24131. male: {
  24132. height: math.unit(23.8, "m"),
  24133. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24134. name: "Male",
  24135. image: {
  24136. source: "./media/characters/mactarian/male.svg",
  24137. extra: 2673 / 2600,
  24138. bottom: 76 / 2750
  24139. }
  24140. },
  24141. },
  24142. [
  24143. {
  24144. name: "Macro",
  24145. height: math.unit(23.8, "meters"),
  24146. default: true
  24147. },
  24148. ]
  24149. ))
  24150. characterMakers.push(() => makeCharacter(
  24151. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24152. {
  24153. female: {
  24154. height: math.unit(19.3, "m"),
  24155. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24156. name: "Female",
  24157. image: {
  24158. source: "./media/characters/umok/female.svg",
  24159. extra: 2186 / 2078,
  24160. bottom: 87 / 2277
  24161. }
  24162. },
  24163. male: {
  24164. height: math.unit(19.5, "m"),
  24165. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24166. name: "Male",
  24167. image: {
  24168. source: "./media/characters/umok/male.svg",
  24169. extra: 2233 / 2140,
  24170. bottom: 24.4 / 2258
  24171. }
  24172. },
  24173. },
  24174. [
  24175. {
  24176. name: "Macro",
  24177. height: math.unit(19.3, "meters"),
  24178. default: true
  24179. },
  24180. ]
  24181. ))
  24182. characterMakers.push(() => makeCharacter(
  24183. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24184. {
  24185. female: {
  24186. height: math.unit(26.15, "m"),
  24187. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24188. name: "Female",
  24189. image: {
  24190. source: "./media/characters/joraxian/female.svg",
  24191. extra: 2912 / 2824,
  24192. bottom: 36 / 2956
  24193. }
  24194. },
  24195. male: {
  24196. height: math.unit(25.4, "m"),
  24197. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24198. name: "Male",
  24199. image: {
  24200. source: "./media/characters/joraxian/male.svg",
  24201. extra: 2877 / 2721,
  24202. bottom: 82 / 2967
  24203. }
  24204. },
  24205. },
  24206. [
  24207. {
  24208. name: "Macro",
  24209. height: math.unit(26.15, "meters"),
  24210. default: true
  24211. },
  24212. ]
  24213. ))
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24216. {
  24217. female: {
  24218. height: math.unit(21.6, "m"),
  24219. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24220. name: "Female",
  24221. image: {
  24222. source: "./media/characters/sthara/female.svg",
  24223. extra: 2516 / 2347,
  24224. bottom: 21.5 / 2537
  24225. }
  24226. },
  24227. male: {
  24228. height: math.unit(24, "m"),
  24229. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24230. name: "Male",
  24231. image: {
  24232. source: "./media/characters/sthara/male.svg",
  24233. extra: 2732 / 2607,
  24234. bottom: 23 / 2732
  24235. }
  24236. },
  24237. },
  24238. [
  24239. {
  24240. name: "Macro",
  24241. height: math.unit(21.6, "meters"),
  24242. default: true
  24243. },
  24244. ]
  24245. ))
  24246. characterMakers.push(() => makeCharacter(
  24247. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24248. {
  24249. front: {
  24250. height: math.unit(6 + 4 / 12, "feet"),
  24251. weight: math.unit(175, "lb"),
  24252. name: "Front",
  24253. image: {
  24254. source: "./media/characters/luka-bryzant/front.svg",
  24255. extra: 311 / 289,
  24256. bottom: 4 / 315
  24257. }
  24258. },
  24259. back: {
  24260. height: math.unit(6 + 4 / 12, "feet"),
  24261. weight: math.unit(175, "lb"),
  24262. name: "Back",
  24263. image: {
  24264. source: "./media/characters/luka-bryzant/back.svg",
  24265. extra: 311 / 289,
  24266. bottom: 3.8 / 313.7
  24267. }
  24268. },
  24269. },
  24270. [
  24271. {
  24272. name: "Micro",
  24273. height: math.unit(10, "inches")
  24274. },
  24275. {
  24276. name: "Normal",
  24277. height: math.unit(6 + 4 / 12, "feet"),
  24278. default: true
  24279. },
  24280. {
  24281. name: "Large",
  24282. height: math.unit(12, "feet")
  24283. },
  24284. ]
  24285. ))
  24286. characterMakers.push(() => makeCharacter(
  24287. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24288. {
  24289. front: {
  24290. height: math.unit(5 + 7 / 12, "feet"),
  24291. weight: math.unit(185, "lb"),
  24292. name: "Front",
  24293. image: {
  24294. source: "./media/characters/aman-aquila/front.svg",
  24295. extra: 1013 / 976,
  24296. bottom: 45.6 / 1057
  24297. }
  24298. },
  24299. side: {
  24300. height: math.unit(5 + 7 / 12, "feet"),
  24301. weight: math.unit(185, "lb"),
  24302. name: "Side",
  24303. image: {
  24304. source: "./media/characters/aman-aquila/side.svg",
  24305. extra: 1054 / 1011,
  24306. bottom: 15 / 1070
  24307. }
  24308. },
  24309. back: {
  24310. height: math.unit(5 + 7 / 12, "feet"),
  24311. weight: math.unit(185, "lb"),
  24312. name: "Back",
  24313. image: {
  24314. source: "./media/characters/aman-aquila/back.svg",
  24315. extra: 1026 / 970,
  24316. bottom: 12 / 1039
  24317. }
  24318. },
  24319. head: {
  24320. height: math.unit(1.211, "feet"),
  24321. name: "Head",
  24322. image: {
  24323. source: "./media/characters/aman-aquila/head.svg",
  24324. }
  24325. },
  24326. },
  24327. [
  24328. {
  24329. name: "Minimicro",
  24330. height: math.unit(0.057, "inches")
  24331. },
  24332. {
  24333. name: "Micro",
  24334. height: math.unit(7, "inches")
  24335. },
  24336. {
  24337. name: "Mini",
  24338. height: math.unit(3 + 7 / 12, "feet")
  24339. },
  24340. {
  24341. name: "Normal",
  24342. height: math.unit(5 + 7 / 12, "feet"),
  24343. default: true
  24344. },
  24345. {
  24346. name: "Macro",
  24347. height: math.unit(157 + 7 / 12, "feet")
  24348. },
  24349. {
  24350. name: "Megamacro",
  24351. height: math.unit(1557 + 7 / 12, "feet")
  24352. },
  24353. {
  24354. name: "Gigamacro",
  24355. height: math.unit(15557 + 7 / 12, "feet")
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24361. {
  24362. front: {
  24363. height: math.unit(3 + 2 / 12, "inches"),
  24364. weight: math.unit(0.3, "ounces"),
  24365. name: "Front",
  24366. image: {
  24367. source: "./media/characters/hiphae/front.svg",
  24368. extra: 1931 / 1683,
  24369. bottom: 24 / 1955
  24370. }
  24371. },
  24372. },
  24373. [
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(3 + 1 / 2, "inches"),
  24377. default: true
  24378. },
  24379. ]
  24380. ))
  24381. characterMakers.push(() => makeCharacter(
  24382. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24383. {
  24384. front: {
  24385. height: math.unit(5 + 10 / 12, "feet"),
  24386. weight: math.unit(165, "lb"),
  24387. name: "Front",
  24388. image: {
  24389. source: "./media/characters/nicky/front.svg",
  24390. extra: 3144 / 2886,
  24391. bottom: 45.6 / 3192
  24392. }
  24393. },
  24394. back: {
  24395. height: math.unit(5 + 10 / 12, "feet"),
  24396. weight: math.unit(165, "lb"),
  24397. name: "Back",
  24398. image: {
  24399. source: "./media/characters/nicky/back.svg",
  24400. extra: 3055 / 2804,
  24401. bottom: 28.4 / 3087
  24402. }
  24403. },
  24404. frontclothed: {
  24405. height: math.unit(5 + 10 / 12, "feet"),
  24406. weight: math.unit(165, "lb"),
  24407. name: "Front-clothed",
  24408. image: {
  24409. source: "./media/characters/nicky/front-clothed.svg",
  24410. extra: 3184.9 / 2926.9,
  24411. bottom: 86.5 / 3239.9
  24412. }
  24413. },
  24414. foot: {
  24415. height: math.unit(1.16, "feet"),
  24416. name: "Foot",
  24417. image: {
  24418. source: "./media/characters/nicky/foot.svg"
  24419. }
  24420. },
  24421. feet: {
  24422. height: math.unit(1.34, "feet"),
  24423. name: "Feet",
  24424. image: {
  24425. source: "./media/characters/nicky/feet.svg"
  24426. }
  24427. },
  24428. maw: {
  24429. height: math.unit(0.9, "feet"),
  24430. name: "Maw",
  24431. image: {
  24432. source: "./media/characters/nicky/maw.svg"
  24433. }
  24434. },
  24435. },
  24436. [
  24437. {
  24438. name: "Normal",
  24439. height: math.unit(5 + 10 / 12, "feet"),
  24440. default: true
  24441. },
  24442. {
  24443. name: "Macro",
  24444. height: math.unit(60, "feet")
  24445. },
  24446. {
  24447. name: "Megamacro",
  24448. height: math.unit(1, "mile")
  24449. },
  24450. ]
  24451. ))
  24452. characterMakers.push(() => makeCharacter(
  24453. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24454. {
  24455. side: {
  24456. height: math.unit(10, "feet"),
  24457. weight: math.unit(600, "lb"),
  24458. name: "Side",
  24459. image: {
  24460. source: "./media/characters/blair/side.svg",
  24461. bottom: 16.6 / 475,
  24462. extra: 458 / 431
  24463. }
  24464. },
  24465. },
  24466. [
  24467. {
  24468. name: "Micro",
  24469. height: math.unit(8, "inches")
  24470. },
  24471. {
  24472. name: "Normal",
  24473. height: math.unit(10, "feet"),
  24474. default: true
  24475. },
  24476. {
  24477. name: "Macro",
  24478. height: math.unit(180, "feet")
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24484. {
  24485. front: {
  24486. height: math.unit(5 + 4 / 12, "feet"),
  24487. weight: math.unit(125, "lb"),
  24488. name: "Front",
  24489. image: {
  24490. source: "./media/characters/fisher/front.svg",
  24491. extra: 444 / 390,
  24492. bottom: 2 / 444.8
  24493. }
  24494. },
  24495. },
  24496. [
  24497. {
  24498. name: "Micro",
  24499. height: math.unit(4, "inches")
  24500. },
  24501. {
  24502. name: "Normal",
  24503. height: math.unit(5 + 4 / 12, "feet"),
  24504. default: true
  24505. },
  24506. {
  24507. name: "Macro",
  24508. height: math.unit(100, "feet")
  24509. },
  24510. ]
  24511. ))
  24512. characterMakers.push(() => makeCharacter(
  24513. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24514. {
  24515. front: {
  24516. height: math.unit(6.71, "feet"),
  24517. weight: math.unit(200, "lb"),
  24518. capacity: math.unit(1000000, "people"),
  24519. name: "Front",
  24520. image: {
  24521. source: "./media/characters/gliss/front.svg",
  24522. extra: 2347 / 2231,
  24523. bottom: 113 / 2462
  24524. }
  24525. },
  24526. hammerspaceSize: {
  24527. height: math.unit(6.71 * 717, "feet"),
  24528. weight: math.unit(200, "lb"),
  24529. capacity: math.unit(1000000, "people"),
  24530. name: "Hammerspace Size",
  24531. image: {
  24532. source: "./media/characters/gliss/front.svg",
  24533. extra: 2347 / 2231,
  24534. bottom: 113 / 2462
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Normal",
  24541. height: math.unit(6.71, "feet"),
  24542. default: true
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24548. {
  24549. side: {
  24550. height: math.unit(1.44, "m"),
  24551. weight: math.unit(80, "kg"),
  24552. name: "Side",
  24553. image: {
  24554. source: "./media/characters/dune-anderson/side.svg",
  24555. bottom: 49 / 1426
  24556. }
  24557. },
  24558. },
  24559. [
  24560. {
  24561. name: "Wolf-sized",
  24562. height: math.unit(1.44, "meters")
  24563. },
  24564. {
  24565. name: "Normal",
  24566. height: math.unit(5.05, "meters"),
  24567. default: true
  24568. },
  24569. {
  24570. name: "Big",
  24571. height: math.unit(14.4, "meters")
  24572. },
  24573. {
  24574. name: "Huge",
  24575. height: math.unit(144, "meters")
  24576. },
  24577. ]
  24578. ))
  24579. characterMakers.push(() => makeCharacter(
  24580. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24581. {
  24582. front: {
  24583. height: math.unit(7, "feet"),
  24584. weight: math.unit(425, "lb"),
  24585. name: "Front",
  24586. image: {
  24587. source: "./media/characters/hind/front.svg",
  24588. extra: 2091 / 1860,
  24589. bottom: 129 / 2220
  24590. }
  24591. },
  24592. back: {
  24593. height: math.unit(7, "feet"),
  24594. weight: math.unit(425, "lb"),
  24595. name: "Back",
  24596. image: {
  24597. source: "./media/characters/hind/back.svg",
  24598. extra: 2091 / 1860,
  24599. bottom: 24.6 / 2309
  24600. }
  24601. },
  24602. tail: {
  24603. height: math.unit(2.8, "feet"),
  24604. name: "Tail",
  24605. image: {
  24606. source: "./media/characters/hind/tail.svg"
  24607. }
  24608. },
  24609. head: {
  24610. height: math.unit(2.55, "feet"),
  24611. name: "Head",
  24612. image: {
  24613. source: "./media/characters/hind/head.svg"
  24614. }
  24615. },
  24616. },
  24617. [
  24618. {
  24619. name: "XS",
  24620. height: math.unit(0.7, "feet")
  24621. },
  24622. {
  24623. name: "Normal",
  24624. height: math.unit(7, "feet"),
  24625. default: true
  24626. },
  24627. {
  24628. name: "XL",
  24629. height: math.unit(70, "feet")
  24630. },
  24631. ]
  24632. ))
  24633. characterMakers.push(() => makeCharacter(
  24634. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24635. {
  24636. front: {
  24637. height: math.unit(6, "feet"),
  24638. weight: math.unit(150, "lb"),
  24639. name: "Front",
  24640. image: {
  24641. source: "./media/characters/dylan-skaven/front.svg",
  24642. extra: 2318 / 2063,
  24643. bottom: 93.4 / 2410
  24644. }
  24645. },
  24646. },
  24647. [
  24648. {
  24649. name: "Nano",
  24650. height: math.unit(1, "mm")
  24651. },
  24652. {
  24653. name: "Micro",
  24654. height: math.unit(1, "cm")
  24655. },
  24656. {
  24657. name: "Normal",
  24658. height: math.unit(2.1, "meters"),
  24659. default: true
  24660. },
  24661. ]
  24662. ))
  24663. characterMakers.push(() => makeCharacter(
  24664. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24665. {
  24666. front: {
  24667. height: math.unit(7 + 5 / 12, "feet"),
  24668. weight: math.unit(357, "lb"),
  24669. name: "Front",
  24670. image: {
  24671. source: "./media/characters/solex-draconov/front.svg",
  24672. extra: 1993 / 1865,
  24673. bottom: 117 / 2111
  24674. }
  24675. },
  24676. },
  24677. [
  24678. {
  24679. name: "Natural Height",
  24680. height: math.unit(7 + 5 / 12, "feet"),
  24681. default: true
  24682. },
  24683. {
  24684. name: "Macro",
  24685. height: math.unit(350, "feet")
  24686. },
  24687. {
  24688. name: "Macro+",
  24689. height: math.unit(1000, "feet")
  24690. },
  24691. {
  24692. name: "Megamacro",
  24693. height: math.unit(20, "km")
  24694. },
  24695. {
  24696. name: "Megamacro+",
  24697. height: math.unit(1000, "km")
  24698. },
  24699. {
  24700. name: "Gigamacro",
  24701. height: math.unit(2.5, "Gm")
  24702. },
  24703. {
  24704. name: "Teramacro",
  24705. height: math.unit(15, "Tm")
  24706. },
  24707. {
  24708. name: "Galactic",
  24709. height: math.unit(30, "Zm")
  24710. },
  24711. {
  24712. name: "Universal",
  24713. height: math.unit(21000, "Ym")
  24714. },
  24715. {
  24716. name: "Omniversal",
  24717. height: math.unit(9.861e50, "Ym")
  24718. },
  24719. {
  24720. name: "Existential",
  24721. height: math.unit(1e300, "meters")
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24727. {
  24728. side: {
  24729. height: math.unit(25, "feet"),
  24730. weight: math.unit(90000, "lb"),
  24731. name: "Side",
  24732. image: {
  24733. source: "./media/characters/mandarax/side.svg",
  24734. extra: 614 / 332,
  24735. bottom: 55 / 630
  24736. }
  24737. },
  24738. head: {
  24739. height: math.unit(11.4, "feet"),
  24740. name: "Head",
  24741. image: {
  24742. source: "./media/characters/mandarax/head.svg"
  24743. }
  24744. },
  24745. belly: {
  24746. height: math.unit(33, "feet"),
  24747. name: "Belly",
  24748. capacity: math.unit(500, "people"),
  24749. image: {
  24750. source: "./media/characters/mandarax/belly.svg"
  24751. }
  24752. },
  24753. dick: {
  24754. height: math.unit(8.46, "feet"),
  24755. name: "Dick",
  24756. image: {
  24757. source: "./media/characters/mandarax/dick.svg"
  24758. }
  24759. },
  24760. top: {
  24761. height: math.unit(28, "meters"),
  24762. name: "Top",
  24763. image: {
  24764. source: "./media/characters/mandarax/top.svg"
  24765. }
  24766. },
  24767. },
  24768. [
  24769. {
  24770. name: "Normal",
  24771. height: math.unit(25, "feet"),
  24772. default: true
  24773. },
  24774. ]
  24775. ))
  24776. characterMakers.push(() => makeCharacter(
  24777. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24778. {
  24779. front: {
  24780. height: math.unit(5, "feet"),
  24781. weight: math.unit(90, "lb"),
  24782. name: "Front",
  24783. image: {
  24784. source: "./media/characters/pixil/front.svg",
  24785. extra: 2000 / 1618,
  24786. bottom: 12.3 / 2011
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Normal",
  24793. height: math.unit(5, "feet"),
  24794. default: true
  24795. },
  24796. {
  24797. name: "Megamacro",
  24798. height: math.unit(10, "miles"),
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24804. {
  24805. front: {
  24806. height: math.unit(7 + 2 / 12, "feet"),
  24807. weight: math.unit(200, "lb"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/angel/front.svg",
  24811. extra: 1830 / 1737,
  24812. bottom: 22.6 / 1854,
  24813. }
  24814. },
  24815. },
  24816. [
  24817. {
  24818. name: "Normal",
  24819. height: math.unit(7 + 2 / 12, "feet"),
  24820. default: true
  24821. },
  24822. {
  24823. name: "Macro",
  24824. height: math.unit(1000, "feet")
  24825. },
  24826. {
  24827. name: "Megamacro",
  24828. height: math.unit(2, "miles")
  24829. },
  24830. {
  24831. name: "Gigamacro",
  24832. height: math.unit(20, "earths")
  24833. },
  24834. ]
  24835. ))
  24836. characterMakers.push(() => makeCharacter(
  24837. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24838. {
  24839. front: {
  24840. height: math.unit(5, "feet"),
  24841. weight: math.unit(180, "lb"),
  24842. name: "Front",
  24843. image: {
  24844. source: "./media/characters/mekana/front.svg",
  24845. extra: 1671 / 1605,
  24846. bottom: 3.5 / 1691
  24847. }
  24848. },
  24849. side: {
  24850. height: math.unit(5, "feet"),
  24851. weight: math.unit(180, "lb"),
  24852. name: "Side",
  24853. image: {
  24854. source: "./media/characters/mekana/side.svg",
  24855. extra: 1671 / 1605,
  24856. bottom: 3.5 / 1691
  24857. }
  24858. },
  24859. back: {
  24860. height: math.unit(5, "feet"),
  24861. weight: math.unit(180, "lb"),
  24862. name: "Back",
  24863. image: {
  24864. source: "./media/characters/mekana/back.svg",
  24865. extra: 1671 / 1605,
  24866. bottom: 3.5 / 1691
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Normal",
  24873. height: math.unit(5, "feet"),
  24874. default: true
  24875. },
  24876. ]
  24877. ))
  24878. characterMakers.push(() => makeCharacter(
  24879. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24880. {
  24881. front: {
  24882. height: math.unit(4 + 6 / 12, "feet"),
  24883. weight: math.unit(80, "lb"),
  24884. name: "Front",
  24885. image: {
  24886. source: "./media/characters/pixie/front.svg",
  24887. extra: 1924 / 1825,
  24888. bottom: 22.4 / 1946
  24889. }
  24890. },
  24891. },
  24892. [
  24893. {
  24894. name: "Normal",
  24895. height: math.unit(4 + 6 / 12, "feet"),
  24896. default: true
  24897. },
  24898. {
  24899. name: "Macro",
  24900. height: math.unit(40, "feet")
  24901. },
  24902. ]
  24903. ))
  24904. characterMakers.push(() => makeCharacter(
  24905. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24906. {
  24907. front: {
  24908. height: math.unit(2.1, "meters"),
  24909. weight: math.unit(200, "lb"),
  24910. name: "Front",
  24911. image: {
  24912. source: "./media/characters/the-lascivious/front.svg",
  24913. extra: 1 / 0.893,
  24914. bottom: 3.5 / 573.7
  24915. }
  24916. },
  24917. },
  24918. [
  24919. {
  24920. name: "Human Scale",
  24921. height: math.unit(2.1, "meters")
  24922. },
  24923. {
  24924. name: "Wolxi Scale",
  24925. height: math.unit(46.2, "m"),
  24926. default: true
  24927. },
  24928. {
  24929. name: "Boinker of Buildings",
  24930. height: math.unit(10, "km")
  24931. },
  24932. {
  24933. name: "Shagger of Skyscrapers",
  24934. height: math.unit(40, "km")
  24935. },
  24936. {
  24937. name: "Banger of Boroughs",
  24938. height: math.unit(4000, "km")
  24939. },
  24940. {
  24941. name: "Screwer of States",
  24942. height: math.unit(100000, "km")
  24943. },
  24944. {
  24945. name: "Pounder of Planets",
  24946. height: math.unit(2000000, "km")
  24947. },
  24948. ]
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24952. {
  24953. front: {
  24954. height: math.unit(6, "feet"),
  24955. weight: math.unit(150, "lb"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/aj/front.svg",
  24959. extra: 2039 / 1562,
  24960. bottom: 40 / 2079
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "Normal",
  24967. height: math.unit(11 + 6 / 12, "feet"),
  24968. default: true
  24969. },
  24970. {
  24971. name: "Megamacro",
  24972. height: math.unit(60, "megameters")
  24973. },
  24974. ]
  24975. ))
  24976. characterMakers.push(() => makeCharacter(
  24977. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24978. {
  24979. side: {
  24980. height: math.unit(31 + 8 / 12, "feet"),
  24981. weight: math.unit(75000, "kg"),
  24982. name: "Side",
  24983. image: {
  24984. source: "./media/characters/koros/side.svg",
  24985. extra: 1442 / 1297,
  24986. bottom: 122.7 / 1562
  24987. }
  24988. },
  24989. dicksKingsCrown: {
  24990. height: math.unit(6, "feet"),
  24991. name: "Dicks (King's Crown)",
  24992. image: {
  24993. source: "./media/characters/koros/dicks-kings-crown.svg"
  24994. }
  24995. },
  24996. dicksTailSet: {
  24997. height: math.unit(3, "feet"),
  24998. name: "Dicks (Tail Set)",
  24999. image: {
  25000. source: "./media/characters/koros/dicks-tail-set.svg"
  25001. }
  25002. },
  25003. dickCumming: {
  25004. height: math.unit(7.98, "feet"),
  25005. name: "Dick (Cumming)",
  25006. image: {
  25007. source: "./media/characters/koros/dick-cumming.svg"
  25008. }
  25009. },
  25010. dicksBack: {
  25011. height: math.unit(5.9, "feet"),
  25012. name: "Dicks (Back)",
  25013. image: {
  25014. source: "./media/characters/koros/dicks-back.svg"
  25015. }
  25016. },
  25017. dicksFront: {
  25018. height: math.unit(3.72, "feet"),
  25019. name: "Dicks (Front)",
  25020. image: {
  25021. source: "./media/characters/koros/dicks-front.svg"
  25022. }
  25023. },
  25024. dicksPeeking: {
  25025. height: math.unit(3.0, "feet"),
  25026. name: "Dicks (Peeking)",
  25027. image: {
  25028. source: "./media/characters/koros/dicks-peeking.svg"
  25029. }
  25030. },
  25031. eye: {
  25032. height: math.unit(1.7, "feet"),
  25033. name: "Eye",
  25034. image: {
  25035. source: "./media/characters/koros/eye.svg"
  25036. }
  25037. },
  25038. headFront: {
  25039. height: math.unit(11.69, "feet"),
  25040. name: "Head (Front)",
  25041. image: {
  25042. source: "./media/characters/koros/head-front.svg"
  25043. }
  25044. },
  25045. headSide: {
  25046. height: math.unit(14, "feet"),
  25047. name: "Head (Side)",
  25048. image: {
  25049. source: "./media/characters/koros/head-side.svg"
  25050. }
  25051. },
  25052. leg: {
  25053. height: math.unit(17, "feet"),
  25054. name: "Leg",
  25055. image: {
  25056. source: "./media/characters/koros/leg.svg"
  25057. }
  25058. },
  25059. mawSide: {
  25060. height: math.unit(12.8, "feet"),
  25061. name: "Maw (Side)",
  25062. image: {
  25063. source: "./media/characters/koros/maw-side.svg"
  25064. }
  25065. },
  25066. mawSpitting: {
  25067. height: math.unit(17, "feet"),
  25068. name: "Maw (Spitting)",
  25069. image: {
  25070. source: "./media/characters/koros/maw-spitting.svg"
  25071. }
  25072. },
  25073. slit: {
  25074. height: math.unit(2.8, "feet"),
  25075. name: "Slit",
  25076. image: {
  25077. source: "./media/characters/koros/slit.svg"
  25078. }
  25079. },
  25080. stomach: {
  25081. height: math.unit(6.8, "feet"),
  25082. capacity: math.unit(20, "people"),
  25083. name: "Stomach",
  25084. image: {
  25085. source: "./media/characters/koros/stomach.svg"
  25086. }
  25087. },
  25088. wingspanBottom: {
  25089. height: math.unit(114, "feet"),
  25090. name: "Wingspan (Bottom)",
  25091. image: {
  25092. source: "./media/characters/koros/wingspan-bottom.svg"
  25093. }
  25094. },
  25095. wingspanTop: {
  25096. height: math.unit(104, "feet"),
  25097. name: "Wingspan (Top)",
  25098. image: {
  25099. source: "./media/characters/koros/wingspan-top.svg"
  25100. }
  25101. },
  25102. },
  25103. [
  25104. {
  25105. name: "Normal",
  25106. height: math.unit(31 + 8 / 12, "feet"),
  25107. default: true
  25108. },
  25109. ]
  25110. ))
  25111. characterMakers.push(() => makeCharacter(
  25112. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25113. {
  25114. front: {
  25115. height: math.unit(18 + 5 / 12, "feet"),
  25116. weight: math.unit(3750, "kg"),
  25117. name: "Front",
  25118. image: {
  25119. source: "./media/characters/vexx/front.svg",
  25120. extra: 426 / 396,
  25121. bottom: 31.5 / 458
  25122. }
  25123. },
  25124. maw: {
  25125. height: math.unit(6, "feet"),
  25126. name: "Maw",
  25127. image: {
  25128. source: "./media/characters/vexx/maw.svg"
  25129. }
  25130. },
  25131. },
  25132. [
  25133. {
  25134. name: "Normal",
  25135. height: math.unit(18 + 5 / 12, "feet"),
  25136. default: true
  25137. },
  25138. ]
  25139. ))
  25140. characterMakers.push(() => makeCharacter(
  25141. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25142. {
  25143. front: {
  25144. height: math.unit(17 + 6 / 12, "feet"),
  25145. weight: math.unit(150, "lb"),
  25146. name: "Front",
  25147. image: {
  25148. source: "./media/characters/baadra/front.svg",
  25149. extra: 3137 / 2890,
  25150. bottom: 168.4 / 3305
  25151. }
  25152. },
  25153. back: {
  25154. height: math.unit(17 + 6 / 12, "feet"),
  25155. weight: math.unit(150, "lb"),
  25156. name: "Back",
  25157. image: {
  25158. source: "./media/characters/baadra/back.svg",
  25159. extra: 3142 / 2890,
  25160. bottom: 220 / 3371
  25161. }
  25162. },
  25163. head: {
  25164. height: math.unit(5.45, "feet"),
  25165. name: "Head",
  25166. image: {
  25167. source: "./media/characters/baadra/head.svg"
  25168. }
  25169. },
  25170. headAngry: {
  25171. height: math.unit(4.95, "feet"),
  25172. name: "Head (Angry)",
  25173. image: {
  25174. source: "./media/characters/baadra/head-angry.svg"
  25175. }
  25176. },
  25177. headOpen: {
  25178. height: math.unit(6, "feet"),
  25179. name: "Head (Open)",
  25180. image: {
  25181. source: "./media/characters/baadra/head-open.svg"
  25182. }
  25183. },
  25184. },
  25185. [
  25186. {
  25187. name: "Normal",
  25188. height: math.unit(17 + 6 / 12, "feet"),
  25189. default: true
  25190. },
  25191. ]
  25192. ))
  25193. characterMakers.push(() => makeCharacter(
  25194. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25195. {
  25196. front: {
  25197. height: math.unit(7 + 3 / 12, "feet"),
  25198. weight: math.unit(180, "lb"),
  25199. name: "Front",
  25200. image: {
  25201. source: "./media/characters/juri/front.svg",
  25202. extra: 1401 / 1237,
  25203. bottom: 18.5 / 1418
  25204. }
  25205. },
  25206. side: {
  25207. height: math.unit(7 + 3 / 12, "feet"),
  25208. weight: math.unit(180, "lb"),
  25209. name: "Side",
  25210. image: {
  25211. source: "./media/characters/juri/side.svg",
  25212. extra: 1424 / 1242,
  25213. bottom: 18.5 / 1447
  25214. }
  25215. },
  25216. sitting: {
  25217. height: math.unit(6, "feet"),
  25218. weight: math.unit(180, "lb"),
  25219. name: "Sitting",
  25220. image: {
  25221. source: "./media/characters/juri/sitting.svg",
  25222. extra: 1270 / 1143,
  25223. bottom: 100 / 1343
  25224. }
  25225. },
  25226. back: {
  25227. height: math.unit(7 + 3 / 12, "feet"),
  25228. weight: math.unit(180, "lb"),
  25229. name: "Back",
  25230. image: {
  25231. source: "./media/characters/juri/back.svg",
  25232. extra: 1377 / 1240,
  25233. bottom: 23.7 / 1405
  25234. }
  25235. },
  25236. maw: {
  25237. height: math.unit(2.8, "feet"),
  25238. name: "Maw",
  25239. image: {
  25240. source: "./media/characters/juri/maw.svg"
  25241. }
  25242. },
  25243. stomach: {
  25244. height: math.unit(0.89, "feet"),
  25245. capacity: math.unit(4, "liters"),
  25246. name: "Stomach",
  25247. image: {
  25248. source: "./media/characters/juri/stomach.svg"
  25249. }
  25250. },
  25251. },
  25252. [
  25253. {
  25254. name: "Normal",
  25255. height: math.unit(7 + 3 / 12, "feet"),
  25256. default: true
  25257. },
  25258. ]
  25259. ))
  25260. characterMakers.push(() => makeCharacter(
  25261. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25262. {
  25263. fox: {
  25264. height: math.unit(5 + 6 / 12, "feet"),
  25265. weight: math.unit(140, "lb"),
  25266. name: "Fox",
  25267. image: {
  25268. source: "./media/characters/maxene-sita/fox.svg",
  25269. extra: 146 / 138,
  25270. bottom: 2.1 / 148.19
  25271. }
  25272. },
  25273. foxLaying: {
  25274. height: math.unit(1.70, "feet"),
  25275. weight: math.unit(140, "lb"),
  25276. name: "Fox (Laying)",
  25277. image: {
  25278. source: "./media/characters/maxene-sita/fox-laying.svg",
  25279. extra: 910 / 572,
  25280. bottom: 71 / 981
  25281. }
  25282. },
  25283. kitsune: {
  25284. height: math.unit(10, "feet"),
  25285. weight: math.unit(800, "lb"),
  25286. name: "Kitsune",
  25287. image: {
  25288. source: "./media/characters/maxene-sita/kitsune.svg",
  25289. extra: 185 / 176,
  25290. bottom: 4.7 / 189.9
  25291. }
  25292. },
  25293. hellhound: {
  25294. height: math.unit(10, "feet"),
  25295. weight: math.unit(700, "lb"),
  25296. name: "Hellhound",
  25297. image: {
  25298. source: "./media/characters/maxene-sita/hellhound.svg",
  25299. extra: 1600 / 1545,
  25300. bottom: 81 / 1681
  25301. }
  25302. },
  25303. },
  25304. [
  25305. {
  25306. name: "Normal",
  25307. height: math.unit(5 + 6 / 12, "feet"),
  25308. default: true
  25309. },
  25310. ]
  25311. ))
  25312. characterMakers.push(() => makeCharacter(
  25313. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25314. {
  25315. front: {
  25316. height: math.unit(3 + 4 / 12, "feet"),
  25317. weight: math.unit(70, "lb"),
  25318. name: "Front",
  25319. image: {
  25320. source: "./media/characters/maia/front.svg",
  25321. extra: 227 / 219.5,
  25322. bottom: 40 / 267
  25323. }
  25324. },
  25325. back: {
  25326. height: math.unit(3 + 4 / 12, "feet"),
  25327. weight: math.unit(70, "lb"),
  25328. name: "Back",
  25329. image: {
  25330. source: "./media/characters/maia/back.svg",
  25331. extra: 237 / 225
  25332. }
  25333. },
  25334. },
  25335. [
  25336. {
  25337. name: "Normal",
  25338. height: math.unit(3 + 4 / 12, "feet"),
  25339. default: true
  25340. },
  25341. ]
  25342. ))
  25343. characterMakers.push(() => makeCharacter(
  25344. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25345. {
  25346. front: {
  25347. height: math.unit(5 + 10 / 12, "feet"),
  25348. weight: math.unit(197, "lb"),
  25349. name: "Front",
  25350. image: {
  25351. source: "./media/characters/jabaro/front.svg",
  25352. extra: 225 / 216,
  25353. bottom: 5.06 / 230
  25354. }
  25355. },
  25356. back: {
  25357. height: math.unit(5 + 10 / 12, "feet"),
  25358. weight: math.unit(197, "lb"),
  25359. name: "Back",
  25360. image: {
  25361. source: "./media/characters/jabaro/back.svg",
  25362. extra: 225 / 219,
  25363. bottom: 1.9 / 227
  25364. }
  25365. },
  25366. },
  25367. [
  25368. {
  25369. name: "Normal",
  25370. height: math.unit(5 + 10 / 12, "feet"),
  25371. default: true
  25372. },
  25373. ]
  25374. ))
  25375. characterMakers.push(() => makeCharacter(
  25376. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25377. {
  25378. front: {
  25379. height: math.unit(5 + 8 / 12, "feet"),
  25380. weight: math.unit(139, "lb"),
  25381. name: "Front",
  25382. image: {
  25383. source: "./media/characters/risa/front.svg",
  25384. extra: 270 / 260,
  25385. bottom: 11.2 / 282
  25386. }
  25387. },
  25388. back: {
  25389. height: math.unit(5 + 8 / 12, "feet"),
  25390. weight: math.unit(139, "lb"),
  25391. name: "Back",
  25392. image: {
  25393. source: "./media/characters/risa/back.svg",
  25394. extra: 264 / 255,
  25395. bottom: 4 / 268
  25396. }
  25397. },
  25398. },
  25399. [
  25400. {
  25401. name: "Normal",
  25402. height: math.unit(5 + 8 / 12, "feet"),
  25403. default: true
  25404. },
  25405. ]
  25406. ))
  25407. characterMakers.push(() => makeCharacter(
  25408. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25409. {
  25410. front: {
  25411. height: math.unit(2 + 11 / 12, "feet"),
  25412. weight: math.unit(30, "lb"),
  25413. name: "Front",
  25414. image: {
  25415. source: "./media/characters/weatley/front.svg",
  25416. bottom: 10.7 / 414,
  25417. extra: 403.5 / 362
  25418. }
  25419. },
  25420. back: {
  25421. height: math.unit(2 + 11 / 12, "feet"),
  25422. weight: math.unit(30, "lb"),
  25423. name: "Back",
  25424. image: {
  25425. source: "./media/characters/weatley/back.svg",
  25426. bottom: 10.7 / 414,
  25427. extra: 403.5 / 362
  25428. }
  25429. },
  25430. },
  25431. [
  25432. {
  25433. name: "Normal",
  25434. height: math.unit(2 + 11 / 12, "feet"),
  25435. default: true
  25436. },
  25437. ]
  25438. ))
  25439. characterMakers.push(() => makeCharacter(
  25440. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25441. {
  25442. front: {
  25443. height: math.unit(5 + 2 / 12, "feet"),
  25444. weight: math.unit(50, "kg"),
  25445. name: "Front",
  25446. image: {
  25447. source: "./media/characters/mercury-crescent/front.svg",
  25448. extra: 1088 / 1033,
  25449. bottom: 18.9 / 1109
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(5 + 2 / 12, "feet"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(2, "feet"),
  25466. weight: math.unit(15, "kg"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/diamond-jones/front.svg",
  25470. extra: 727/723,
  25471. bottom: 46/773
  25472. }
  25473. },
  25474. },
  25475. [
  25476. {
  25477. name: "Normal",
  25478. height: math.unit(2, "feet"),
  25479. default: true
  25480. },
  25481. ]
  25482. ))
  25483. characterMakers.push(() => makeCharacter(
  25484. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25485. {
  25486. front: {
  25487. height: math.unit(3, "feet"),
  25488. weight: math.unit(30, "kg"),
  25489. name: "Front",
  25490. image: {
  25491. source: "./media/characters/sweet-bit/front.svg",
  25492. extra: 675 / 567,
  25493. bottom: 27.7 / 703
  25494. }
  25495. },
  25496. },
  25497. [
  25498. {
  25499. name: "Normal",
  25500. height: math.unit(3, "feet"),
  25501. default: true
  25502. },
  25503. ]
  25504. ))
  25505. characterMakers.push(() => makeCharacter(
  25506. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25507. {
  25508. side: {
  25509. height: math.unit(9.178, "feet"),
  25510. weight: math.unit(500, "lb"),
  25511. name: "Side",
  25512. image: {
  25513. source: "./media/characters/umbrazen/side.svg",
  25514. extra: 1730 / 1473,
  25515. bottom: 34.6 / 1765
  25516. }
  25517. },
  25518. },
  25519. [
  25520. {
  25521. name: "Normal",
  25522. height: math.unit(9.178, "feet"),
  25523. default: true
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25529. {
  25530. front: {
  25531. height: math.unit(10, "feet"),
  25532. weight: math.unit(750, "lb"),
  25533. name: "Front",
  25534. image: {
  25535. source: "./media/characters/arlist/front.svg",
  25536. extra: 961 / 778,
  25537. bottom: 6.2 / 986
  25538. }
  25539. },
  25540. },
  25541. [
  25542. {
  25543. name: "Normal",
  25544. height: math.unit(10, "feet"),
  25545. default: true
  25546. },
  25547. ]
  25548. ))
  25549. characterMakers.push(() => makeCharacter(
  25550. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25551. {
  25552. front: {
  25553. height: math.unit(5 + 1 / 12, "feet"),
  25554. weight: math.unit(110, "lb"),
  25555. name: "Front",
  25556. image: {
  25557. source: "./media/characters/aradel/front.svg",
  25558. extra: 324 / 303,
  25559. bottom: 3.6 / 329.4
  25560. }
  25561. },
  25562. },
  25563. [
  25564. {
  25565. name: "Normal",
  25566. height: math.unit(5 + 1 / 12, "feet"),
  25567. default: true
  25568. },
  25569. ]
  25570. ))
  25571. characterMakers.push(() => makeCharacter(
  25572. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25573. {
  25574. front: {
  25575. height: math.unit(3 + 8 / 12, "feet"),
  25576. weight: math.unit(50, "lb"),
  25577. name: "Front",
  25578. image: {
  25579. source: "./media/characters/serryn/front.svg",
  25580. extra: 1792 / 1656,
  25581. bottom: 43.5 / 1840
  25582. }
  25583. },
  25584. },
  25585. [
  25586. {
  25587. name: "Normal",
  25588. height: math.unit(3 + 8 / 12, "feet"),
  25589. default: true
  25590. },
  25591. ]
  25592. ))
  25593. characterMakers.push(() => makeCharacter(
  25594. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25595. {
  25596. front: {
  25597. height: math.unit(7 + 10 / 12, "feet"),
  25598. weight: math.unit(255, "lb"),
  25599. name: "Front",
  25600. image: {
  25601. source: "./media/characters/xavier-thyme/front.svg",
  25602. extra: 3733 / 3642,
  25603. bottom: 131 / 3869
  25604. }
  25605. },
  25606. frontRaven: {
  25607. height: math.unit(7 + 10 / 12, "feet"),
  25608. weight: math.unit(255, "lb"),
  25609. name: "Front (Raven)",
  25610. image: {
  25611. source: "./media/characters/xavier-thyme/front-raven.svg",
  25612. extra: 4385 / 3642,
  25613. bottom: 131 / 4517
  25614. }
  25615. },
  25616. },
  25617. [
  25618. {
  25619. name: "Normal",
  25620. height: math.unit(7 + 10 / 12, "feet"),
  25621. default: true
  25622. },
  25623. ]
  25624. ))
  25625. characterMakers.push(() => makeCharacter(
  25626. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25627. {
  25628. front: {
  25629. height: math.unit(1.6, "m"),
  25630. weight: math.unit(50, "kg"),
  25631. name: "Front",
  25632. image: {
  25633. source: "./media/characters/kiki/front.svg",
  25634. extra: 4682 / 3610,
  25635. bottom: 115 / 4777
  25636. }
  25637. },
  25638. },
  25639. [
  25640. {
  25641. name: "Normal",
  25642. height: math.unit(1.6, "meters"),
  25643. default: true
  25644. },
  25645. ]
  25646. ))
  25647. characterMakers.push(() => makeCharacter(
  25648. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25649. {
  25650. front: {
  25651. height: math.unit(50, "m"),
  25652. weight: math.unit(500, "tonnes"),
  25653. name: "Front",
  25654. image: {
  25655. source: "./media/characters/ryoko/front.svg",
  25656. extra: 4632 / 3926,
  25657. bottom: 193 / 4823
  25658. }
  25659. },
  25660. },
  25661. [
  25662. {
  25663. name: "Normal",
  25664. height: math.unit(50, "meters"),
  25665. default: true
  25666. },
  25667. ]
  25668. ))
  25669. characterMakers.push(() => makeCharacter(
  25670. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25671. {
  25672. front: {
  25673. height: math.unit(30, "m"),
  25674. weight: math.unit(22, "tonnes"),
  25675. name: "Front",
  25676. image: {
  25677. source: "./media/characters/elio/front.svg",
  25678. extra: 4582 / 3720,
  25679. bottom: 236 / 4828
  25680. }
  25681. },
  25682. },
  25683. [
  25684. {
  25685. name: "Normal",
  25686. height: math.unit(30, "meters"),
  25687. default: true
  25688. },
  25689. ]
  25690. ))
  25691. characterMakers.push(() => makeCharacter(
  25692. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25693. {
  25694. front: {
  25695. height: math.unit(6 + 3 / 12, "feet"),
  25696. weight: math.unit(120, "lb"),
  25697. name: "Front",
  25698. image: {
  25699. source: "./media/characters/azura/front.svg",
  25700. extra: 1149 / 1135,
  25701. bottom: 45 / 1194
  25702. }
  25703. },
  25704. frontClothed: {
  25705. height: math.unit(6 + 3 / 12, "feet"),
  25706. weight: math.unit(120, "lb"),
  25707. name: "Front (Clothed)",
  25708. image: {
  25709. source: "./media/characters/azura/front-clothed.svg",
  25710. extra: 1149 / 1135,
  25711. bottom: 45 / 1194
  25712. }
  25713. },
  25714. },
  25715. [
  25716. {
  25717. name: "Normal",
  25718. height: math.unit(6 + 3 / 12, "feet"),
  25719. default: true
  25720. },
  25721. {
  25722. name: "Macro",
  25723. height: math.unit(20 + 6 / 12, "feet")
  25724. },
  25725. {
  25726. name: "Megamacro",
  25727. height: math.unit(12, "miles")
  25728. },
  25729. {
  25730. name: "Gigamacro",
  25731. height: math.unit(10000, "miles")
  25732. },
  25733. {
  25734. name: "Teramacro",
  25735. height: math.unit(900000, "miles")
  25736. },
  25737. ]
  25738. ))
  25739. characterMakers.push(() => makeCharacter(
  25740. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25741. {
  25742. front: {
  25743. height: math.unit(12, "feet"),
  25744. weight: math.unit(1, "ton"),
  25745. capacity: math.unit(660000, "gallons"),
  25746. name: "Front",
  25747. image: {
  25748. source: "./media/characters/zeus/front.svg",
  25749. extra: 5005 / 4717,
  25750. bottom: 363 / 5388
  25751. }
  25752. },
  25753. },
  25754. [
  25755. {
  25756. name: "Normal",
  25757. height: math.unit(12, "feet")
  25758. },
  25759. {
  25760. name: "Preferred Size",
  25761. height: math.unit(0.5, "miles"),
  25762. default: true
  25763. },
  25764. {
  25765. name: "Giga Horse",
  25766. height: math.unit(300, "miles")
  25767. },
  25768. {
  25769. name: "Riding Planets",
  25770. height: math.unit(30, "megameters")
  25771. },
  25772. {
  25773. name: "Cosmic Giant",
  25774. height: math.unit(3, "zettameters")
  25775. },
  25776. {
  25777. name: "Breeding God",
  25778. height: math.unit(9.92e22, "yottameters")
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25784. {
  25785. side: {
  25786. height: math.unit(9, "feet"),
  25787. weight: math.unit(1500, "kg"),
  25788. name: "Side",
  25789. image: {
  25790. source: "./media/characters/fang/side.svg",
  25791. extra: 924 / 866,
  25792. bottom: 47.5 / 972.3
  25793. }
  25794. },
  25795. },
  25796. [
  25797. {
  25798. name: "Normal",
  25799. height: math.unit(9, "feet"),
  25800. default: true
  25801. },
  25802. {
  25803. name: "Macro",
  25804. height: math.unit(75 + 6 / 12, "feet")
  25805. },
  25806. {
  25807. name: "Teramacro",
  25808. height: math.unit(50000, "miles")
  25809. },
  25810. ]
  25811. ))
  25812. characterMakers.push(() => makeCharacter(
  25813. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25814. {
  25815. front: {
  25816. height: math.unit(10, "feet"),
  25817. weight: math.unit(2, "tons"),
  25818. name: "Front",
  25819. image: {
  25820. source: "./media/characters/rekhit/front.svg",
  25821. extra: 2796 / 2590,
  25822. bottom: 225 / 3022
  25823. }
  25824. },
  25825. },
  25826. [
  25827. {
  25828. name: "Normal",
  25829. height: math.unit(10, "feet"),
  25830. default: true
  25831. },
  25832. {
  25833. name: "Macro",
  25834. height: math.unit(500, "feet")
  25835. },
  25836. ]
  25837. ))
  25838. characterMakers.push(() => makeCharacter(
  25839. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25840. {
  25841. front: {
  25842. height: math.unit(7 + 6.451 / 12, "feet"),
  25843. weight: math.unit(310, "lb"),
  25844. name: "Front",
  25845. image: {
  25846. source: "./media/characters/dahlia-verrick/front.svg",
  25847. extra: 1488 / 1365,
  25848. bottom: 6.2 / 1495
  25849. }
  25850. },
  25851. back: {
  25852. height: math.unit(7 + 6.451 / 12, "feet"),
  25853. weight: math.unit(310, "lb"),
  25854. name: "Back",
  25855. image: {
  25856. source: "./media/characters/dahlia-verrick/back.svg",
  25857. extra: 1472 / 1351,
  25858. bottom: 5.28 / 1477
  25859. }
  25860. },
  25861. frontBusiness: {
  25862. height: math.unit(7 + 6.451 / 12, "feet"),
  25863. weight: math.unit(200, "lb"),
  25864. name: "Front (Business)",
  25865. image: {
  25866. source: "./media/characters/dahlia-verrick/front-business.svg",
  25867. extra: 1478 / 1381,
  25868. bottom: 5.5 / 1484
  25869. }
  25870. },
  25871. frontCasual: {
  25872. height: math.unit(7 + 6.451 / 12, "feet"),
  25873. weight: math.unit(200, "lb"),
  25874. name: "Front (Casual)",
  25875. image: {
  25876. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25877. extra: 1478 / 1381,
  25878. bottom: 5.5 / 1484
  25879. }
  25880. },
  25881. },
  25882. [
  25883. {
  25884. name: "Travel-Sized",
  25885. height: math.unit(7.45, "inches")
  25886. },
  25887. {
  25888. name: "Normal",
  25889. height: math.unit(7 + 6.451 / 12, "feet"),
  25890. default: true
  25891. },
  25892. {
  25893. name: "Hitting the Town",
  25894. height: math.unit(37 + 8 / 12, "feet")
  25895. },
  25896. {
  25897. name: "Stomp in the Suburbs",
  25898. height: math.unit(964 + 9.728 / 12, "feet")
  25899. },
  25900. {
  25901. name: "Sit on the City",
  25902. height: math.unit(61747 + 10.592 / 12, "feet")
  25903. },
  25904. {
  25905. name: "Glomp the Globe",
  25906. height: math.unit(252919327 + 4.832 / 12, "feet")
  25907. },
  25908. ]
  25909. ))
  25910. characterMakers.push(() => makeCharacter(
  25911. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25912. {
  25913. front: {
  25914. height: math.unit(6 + 4 / 12, "feet"),
  25915. weight: math.unit(320, "lb"),
  25916. name: "Front",
  25917. image: {
  25918. source: "./media/characters/balina-mahigan/front.svg",
  25919. extra: 447 / 428,
  25920. bottom: 18 / 466
  25921. }
  25922. },
  25923. back: {
  25924. height: math.unit(6 + 4 / 12, "feet"),
  25925. weight: math.unit(320, "lb"),
  25926. name: "Back",
  25927. image: {
  25928. source: "./media/characters/balina-mahigan/back.svg",
  25929. extra: 445 / 428,
  25930. bottom: 4.07 / 448
  25931. }
  25932. },
  25933. arm: {
  25934. height: math.unit(1.88, "feet"),
  25935. name: "Arm",
  25936. image: {
  25937. source: "./media/characters/balina-mahigan/arm.svg"
  25938. }
  25939. },
  25940. backPort: {
  25941. height: math.unit(0.685, "feet"),
  25942. name: "Back Port",
  25943. image: {
  25944. source: "./media/characters/balina-mahigan/back-port.svg"
  25945. }
  25946. },
  25947. hoofpaw: {
  25948. height: math.unit(1.41, "feet"),
  25949. name: "Hoofpaw",
  25950. image: {
  25951. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25952. }
  25953. },
  25954. leftHandBack: {
  25955. height: math.unit(0.938, "feet"),
  25956. name: "Left Hand (Back)",
  25957. image: {
  25958. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25959. }
  25960. },
  25961. leftHandFront: {
  25962. height: math.unit(0.938, "feet"),
  25963. name: "Left Hand (Front)",
  25964. image: {
  25965. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25966. }
  25967. },
  25968. rightHandBack: {
  25969. height: math.unit(0.95, "feet"),
  25970. name: "Right Hand (Back)",
  25971. image: {
  25972. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25973. }
  25974. },
  25975. rightHandFront: {
  25976. height: math.unit(0.95, "feet"),
  25977. name: "Right Hand (Front)",
  25978. image: {
  25979. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25980. }
  25981. },
  25982. },
  25983. [
  25984. {
  25985. name: "Normal",
  25986. height: math.unit(6 + 4 / 12, "feet"),
  25987. default: true
  25988. },
  25989. ]
  25990. ))
  25991. characterMakers.push(() => makeCharacter(
  25992. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  25993. {
  25994. front: {
  25995. height: math.unit(6, "feet"),
  25996. weight: math.unit(320, "lb"),
  25997. name: "Front",
  25998. image: {
  25999. source: "./media/characters/balina-mejeri/front.svg",
  26000. extra: 517 / 488,
  26001. bottom: 44.2 / 561
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(6 + 4 / 12, "feet")
  26009. },
  26010. {
  26011. name: "Business",
  26012. height: math.unit(155, "feet"),
  26013. default: true
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26019. {
  26020. kneeling: {
  26021. height: math.unit(6 + 4 / 12, "feet"),
  26022. weight: math.unit(300 * 20, "lb"),
  26023. name: "Kneeling",
  26024. image: {
  26025. source: "./media/characters/balbarian/kneeling.svg",
  26026. extra: 922 / 862,
  26027. bottom: 42.4 / 965
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Normal",
  26034. height: math.unit(6 + 4 / 12, "feet")
  26035. },
  26036. {
  26037. name: "Treasured",
  26038. height: math.unit(18 + 9 / 12, "feet"),
  26039. default: true
  26040. },
  26041. {
  26042. name: "Macro",
  26043. height: math.unit(900, "feet")
  26044. },
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26049. {
  26050. front: {
  26051. height: math.unit(6 + 4 / 12, "feet"),
  26052. weight: math.unit(325, "lb"),
  26053. name: "Front",
  26054. image: {
  26055. source: "./media/characters/balina-amarini/front.svg",
  26056. extra: 415 / 403,
  26057. bottom: 19 / 433.4
  26058. }
  26059. },
  26060. back: {
  26061. height: math.unit(6 + 4 / 12, "feet"),
  26062. weight: math.unit(325, "lb"),
  26063. name: "Back",
  26064. image: {
  26065. source: "./media/characters/balina-amarini/back.svg",
  26066. extra: 415 / 403,
  26067. bottom: 13.5 / 432
  26068. }
  26069. },
  26070. overdrive: {
  26071. height: math.unit(6 + 4 / 12, "feet"),
  26072. weight: math.unit(400, "lb"),
  26073. name: "Overdrive",
  26074. image: {
  26075. source: "./media/characters/balina-amarini/overdrive.svg",
  26076. extra: 269 / 259,
  26077. bottom: 12 / 282
  26078. }
  26079. },
  26080. },
  26081. [
  26082. {
  26083. name: "Boom",
  26084. height: math.unit(9 + 10 / 12, "feet"),
  26085. default: true
  26086. },
  26087. {
  26088. name: "Macro",
  26089. height: math.unit(280, "feet")
  26090. },
  26091. ]
  26092. ))
  26093. characterMakers.push(() => makeCharacter(
  26094. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26095. {
  26096. goddess: {
  26097. height: math.unit(600, "feet"),
  26098. weight: math.unit(2000000, "tons"),
  26099. name: "Goddess",
  26100. image: {
  26101. source: "./media/characters/lady-kubwa/goddess.svg",
  26102. extra: 1240.5 / 1223,
  26103. bottom: 22 / 1263
  26104. }
  26105. },
  26106. goddesser: {
  26107. height: math.unit(900, "feet"),
  26108. weight: math.unit(20000000, "lb"),
  26109. name: "Goddess-er",
  26110. image: {
  26111. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26112. extra: 899 / 888,
  26113. bottom: 12.6 / 912
  26114. }
  26115. },
  26116. },
  26117. [
  26118. {
  26119. name: "Macro",
  26120. height: math.unit(600, "feet"),
  26121. default: true
  26122. },
  26123. {
  26124. name: "Megamacro",
  26125. height: math.unit(250, "miles")
  26126. },
  26127. ]
  26128. ))
  26129. characterMakers.push(() => makeCharacter(
  26130. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26131. {
  26132. front: {
  26133. height: math.unit(7 + 7 / 12, "feet"),
  26134. weight: math.unit(250, "lb"),
  26135. name: "Front",
  26136. image: {
  26137. source: "./media/characters/tala-grovehorn/front.svg",
  26138. extra: 2636 / 2525,
  26139. bottom: 147 / 2781
  26140. }
  26141. },
  26142. back: {
  26143. height: math.unit(7 + 7 / 12, "feet"),
  26144. weight: math.unit(250, "lb"),
  26145. name: "Back",
  26146. image: {
  26147. source: "./media/characters/tala-grovehorn/back.svg",
  26148. extra: 2635 / 2539,
  26149. bottom: 100 / 2732.8
  26150. }
  26151. },
  26152. mouth: {
  26153. height: math.unit(1.15, "feet"),
  26154. name: "Mouth",
  26155. image: {
  26156. source: "./media/characters/tala-grovehorn/mouth.svg"
  26157. }
  26158. },
  26159. dick: {
  26160. height: math.unit(2.36, "feet"),
  26161. name: "Dick",
  26162. image: {
  26163. source: "./media/characters/tala-grovehorn/dick.svg"
  26164. }
  26165. },
  26166. slit: {
  26167. height: math.unit(0.61, "feet"),
  26168. name: "Slit",
  26169. image: {
  26170. source: "./media/characters/tala-grovehorn/slit.svg"
  26171. }
  26172. },
  26173. },
  26174. [
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(7 + 7 / 12, "feet"),
  26182. weight: math.unit(225, "lb"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/epona/front.svg",
  26186. extra: 2445 / 2290,
  26187. bottom: 251 / 2696
  26188. }
  26189. },
  26190. back: {
  26191. height: math.unit(7 + 7 / 12, "feet"),
  26192. weight: math.unit(225, "lb"),
  26193. name: "Back",
  26194. image: {
  26195. source: "./media/characters/epona/back.svg",
  26196. extra: 2546 / 2408,
  26197. bottom: 44 / 2589
  26198. }
  26199. },
  26200. genitals: {
  26201. height: math.unit(1.5, "feet"),
  26202. name: "Genitals",
  26203. image: {
  26204. source: "./media/characters/epona/genitals.svg"
  26205. }
  26206. },
  26207. },
  26208. [
  26209. {
  26210. name: "Normal",
  26211. height: math.unit(7 + 7 / 12, "feet"),
  26212. default: true
  26213. },
  26214. ]
  26215. ))
  26216. characterMakers.push(() => makeCharacter(
  26217. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26218. {
  26219. front: {
  26220. height: math.unit(7, "feet"),
  26221. weight: math.unit(518, "lb"),
  26222. name: "Front",
  26223. image: {
  26224. source: "./media/characters/avia-bloodbourn/front.svg",
  26225. extra: 1466 / 1350,
  26226. bottom: 65 / 1527
  26227. }
  26228. },
  26229. },
  26230. [
  26231. ]
  26232. ))
  26233. characterMakers.push(() => makeCharacter(
  26234. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26235. {
  26236. front: {
  26237. height: math.unit(9.35, "feet"),
  26238. weight: math.unit(600, "lb"),
  26239. name: "Front",
  26240. image: {
  26241. source: "./media/characters/amera/front.svg",
  26242. extra: 891 / 818,
  26243. bottom: 30 / 922.7
  26244. }
  26245. },
  26246. back: {
  26247. height: math.unit(9.35, "feet"),
  26248. weight: math.unit(600, "lb"),
  26249. name: "Back",
  26250. image: {
  26251. source: "./media/characters/amera/back.svg",
  26252. extra: 876 / 824,
  26253. bottom: 6.8 / 884
  26254. }
  26255. },
  26256. dick: {
  26257. height: math.unit(2.14, "feet"),
  26258. name: "Dick",
  26259. image: {
  26260. source: "./media/characters/amera/dick.svg"
  26261. }
  26262. },
  26263. },
  26264. [
  26265. {
  26266. name: "Normal",
  26267. height: math.unit(9.35, "feet"),
  26268. default: true
  26269. },
  26270. ]
  26271. ))
  26272. characterMakers.push(() => makeCharacter(
  26273. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26274. {
  26275. kneeling: {
  26276. height: math.unit(3 + 4 / 12, "feet"),
  26277. weight: math.unit(90, "lb"),
  26278. name: "Kneeling",
  26279. image: {
  26280. source: "./media/characters/rosewen/kneeling.svg",
  26281. extra: 1835 / 1571,
  26282. bottom: 27.7 / 1862
  26283. }
  26284. },
  26285. },
  26286. [
  26287. {
  26288. name: "Normal",
  26289. height: math.unit(3 + 4 / 12, "feet"),
  26290. default: true
  26291. },
  26292. ]
  26293. ))
  26294. characterMakers.push(() => makeCharacter(
  26295. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26296. {
  26297. front: {
  26298. height: math.unit(5 + 10 / 12, "feet"),
  26299. weight: math.unit(200, "lb"),
  26300. name: "Front",
  26301. image: {
  26302. source: "./media/characters/sabah/front.svg",
  26303. extra: 849 / 763,
  26304. bottom: 33.9 / 881
  26305. }
  26306. },
  26307. },
  26308. [
  26309. {
  26310. name: "Normal",
  26311. height: math.unit(5 + 10 / 12, "feet"),
  26312. default: true
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26318. {
  26319. front: {
  26320. height: math.unit(3 + 5 / 12, "feet"),
  26321. weight: math.unit(40, "kg"),
  26322. name: "Front",
  26323. image: {
  26324. source: "./media/characters/purple-flame/front.svg",
  26325. extra: 1577 / 1412,
  26326. bottom: 97 / 1694
  26327. }
  26328. },
  26329. frontDressed: {
  26330. height: math.unit(3 + 5 / 12, "feet"),
  26331. weight: math.unit(40, "kg"),
  26332. name: "Front (Dressed)",
  26333. image: {
  26334. source: "./media/characters/purple-flame/front-dressed.svg",
  26335. extra: 1577 / 1412,
  26336. bottom: 97 / 1694
  26337. }
  26338. },
  26339. headphones: {
  26340. height: math.unit(0.85, "feet"),
  26341. name: "Headphones",
  26342. image: {
  26343. source: "./media/characters/purple-flame/headphones.svg"
  26344. }
  26345. },
  26346. },
  26347. [
  26348. {
  26349. name: "Really Small",
  26350. height: math.unit(5, "cm")
  26351. },
  26352. {
  26353. name: "Micro",
  26354. height: math.unit(1 + 5 / 12, "feet")
  26355. },
  26356. {
  26357. name: "Normal",
  26358. height: math.unit(3 + 5 / 12, "feet"),
  26359. default: true
  26360. },
  26361. {
  26362. name: "Minimacro",
  26363. height: math.unit(125, "feet")
  26364. },
  26365. {
  26366. name: "Macro",
  26367. height: math.unit(0.5, "miles")
  26368. },
  26369. {
  26370. name: "Megamacro",
  26371. height: math.unit(50, "miles")
  26372. },
  26373. {
  26374. name: "Gigantic",
  26375. height: math.unit(750, "miles")
  26376. },
  26377. {
  26378. name: "Planetary",
  26379. height: math.unit(15000, "miles")
  26380. },
  26381. ]
  26382. ))
  26383. characterMakers.push(() => makeCharacter(
  26384. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26385. {
  26386. front: {
  26387. height: math.unit(14, "feet"),
  26388. weight: math.unit(959, "lb"),
  26389. name: "Front",
  26390. image: {
  26391. source: "./media/characters/arsenal/front.svg",
  26392. extra: 2357 / 2157,
  26393. bottom: 93 / 2458
  26394. }
  26395. },
  26396. },
  26397. [
  26398. {
  26399. name: "Normal",
  26400. height: math.unit(14, "feet"),
  26401. default: true
  26402. },
  26403. ]
  26404. ))
  26405. characterMakers.push(() => makeCharacter(
  26406. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26407. {
  26408. front: {
  26409. height: math.unit(6, "feet"),
  26410. weight: math.unit(150, "lb"),
  26411. name: "Front",
  26412. image: {
  26413. source: "./media/characters/adira/front.svg",
  26414. extra: 1078 / 1029,
  26415. bottom: 87 / 1166
  26416. }
  26417. },
  26418. },
  26419. [
  26420. {
  26421. name: "Micro",
  26422. height: math.unit(4, "inches"),
  26423. default: true
  26424. },
  26425. {
  26426. name: "Macro",
  26427. height: math.unit(50, "feet")
  26428. },
  26429. ]
  26430. ))
  26431. characterMakers.push(() => makeCharacter(
  26432. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26433. {
  26434. front: {
  26435. height: math.unit(16, "feet"),
  26436. weight: math.unit(1000, "lb"),
  26437. name: "Front",
  26438. image: {
  26439. source: "./media/characters/grim/front.svg",
  26440. extra: 622 / 614,
  26441. bottom: 18.1 / 642
  26442. }
  26443. },
  26444. back: {
  26445. height: math.unit(16, "feet"),
  26446. weight: math.unit(1000, "lb"),
  26447. name: "Back",
  26448. image: {
  26449. source: "./media/characters/grim/back.svg",
  26450. extra: 610.6 / 602,
  26451. bottom: 40.8 / 652
  26452. }
  26453. },
  26454. hunched: {
  26455. height: math.unit(9.75, "feet"),
  26456. weight: math.unit(1000, "lb"),
  26457. name: "Hunched",
  26458. image: {
  26459. source: "./media/characters/grim/hunched.svg",
  26460. extra: 304 / 297,
  26461. bottom: 35.4 / 394
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Normal",
  26468. height: math.unit(16, "feet"),
  26469. default: true
  26470. },
  26471. ]
  26472. ))
  26473. characterMakers.push(() => makeCharacter(
  26474. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26475. {
  26476. front: {
  26477. height: math.unit(2.3, "meters"),
  26478. weight: math.unit(300, "lb"),
  26479. name: "Front",
  26480. image: {
  26481. source: "./media/characters/sinja/front-sfw.svg",
  26482. extra: 1393 / 1294,
  26483. bottom: 70 / 1463
  26484. }
  26485. },
  26486. frontNsfw: {
  26487. height: math.unit(2.3, "meters"),
  26488. weight: math.unit(300, "lb"),
  26489. name: "Front (NSFW)",
  26490. image: {
  26491. source: "./media/characters/sinja/front-nsfw.svg",
  26492. extra: 1393 / 1294,
  26493. bottom: 70 / 1463
  26494. }
  26495. },
  26496. back: {
  26497. height: math.unit(2.3, "meters"),
  26498. weight: math.unit(300, "lb"),
  26499. name: "Back",
  26500. image: {
  26501. source: "./media/characters/sinja/back.svg",
  26502. extra: 1393 / 1294,
  26503. bottom: 70 / 1463
  26504. }
  26505. },
  26506. head: {
  26507. height: math.unit(1.771, "feet"),
  26508. name: "Head",
  26509. image: {
  26510. source: "./media/characters/sinja/head.svg"
  26511. }
  26512. },
  26513. slit: {
  26514. height: math.unit(0.8, "feet"),
  26515. name: "Slit",
  26516. image: {
  26517. source: "./media/characters/sinja/slit.svg"
  26518. }
  26519. },
  26520. },
  26521. [
  26522. {
  26523. name: "Normal",
  26524. height: math.unit(2.3, "meters")
  26525. },
  26526. {
  26527. name: "Macro",
  26528. height: math.unit(91, "meters"),
  26529. default: true
  26530. },
  26531. {
  26532. name: "Megamacro",
  26533. height: math.unit(91440, "meters")
  26534. },
  26535. {
  26536. name: "Gigamacro",
  26537. height: math.unit(60960000, "meters")
  26538. },
  26539. {
  26540. name: "Teramacro",
  26541. height: math.unit(9144000000, "meters")
  26542. },
  26543. ]
  26544. ))
  26545. characterMakers.push(() => makeCharacter(
  26546. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26547. {
  26548. front: {
  26549. height: math.unit(1.7, "meters"),
  26550. weight: math.unit(130, "lb"),
  26551. name: "Front",
  26552. image: {
  26553. source: "./media/characters/kyu/front.svg",
  26554. extra: 415 / 395,
  26555. bottom: 5 / 420
  26556. }
  26557. },
  26558. head: {
  26559. height: math.unit(1.75, "feet"),
  26560. name: "Head",
  26561. image: {
  26562. source: "./media/characters/kyu/head.svg"
  26563. }
  26564. },
  26565. foot: {
  26566. height: math.unit(0.81, "feet"),
  26567. name: "Foot",
  26568. image: {
  26569. source: "./media/characters/kyu/foot.svg"
  26570. }
  26571. },
  26572. },
  26573. [
  26574. {
  26575. name: "Normal",
  26576. height: math.unit(1.7, "meters")
  26577. },
  26578. {
  26579. name: "Macro",
  26580. height: math.unit(131, "feet"),
  26581. default: true
  26582. },
  26583. {
  26584. name: "Megamacro",
  26585. height: math.unit(91440, "meters")
  26586. },
  26587. {
  26588. name: "Gigamacro",
  26589. height: math.unit(60960000, "meters")
  26590. },
  26591. {
  26592. name: "Teramacro",
  26593. height: math.unit(9144000000, "meters")
  26594. },
  26595. ]
  26596. ))
  26597. characterMakers.push(() => makeCharacter(
  26598. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26599. {
  26600. front: {
  26601. height: math.unit(7 + 1 / 12, "feet"),
  26602. weight: math.unit(250, "lb"),
  26603. name: "Front",
  26604. image: {
  26605. source: "./media/characters/joey/front.svg",
  26606. extra: 1791 / 1537,
  26607. bottom: 28 / 1816
  26608. }
  26609. },
  26610. },
  26611. [
  26612. {
  26613. name: "Micro",
  26614. height: math.unit(3, "inches")
  26615. },
  26616. {
  26617. name: "Normal",
  26618. height: math.unit(7 + 1 / 12, "feet"),
  26619. default: true
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26625. {
  26626. front: {
  26627. height: math.unit(165, "cm"),
  26628. weight: math.unit(140, "lb"),
  26629. name: "Front",
  26630. image: {
  26631. source: "./media/characters/sam-evans/front.svg",
  26632. extra: 3417 / 3230,
  26633. bottom: 41.3 / 3417
  26634. }
  26635. },
  26636. frontSixTails: {
  26637. height: math.unit(165, "cm"),
  26638. weight: math.unit(140, "lb"),
  26639. name: "Front-six-tails",
  26640. image: {
  26641. source: "./media/characters/sam-evans/front-six-tails.svg",
  26642. extra: 3417 / 3230,
  26643. bottom: 41.3 / 3417
  26644. }
  26645. },
  26646. back: {
  26647. height: math.unit(165, "cm"),
  26648. weight: math.unit(140, "lb"),
  26649. name: "Back",
  26650. image: {
  26651. source: "./media/characters/sam-evans/back.svg",
  26652. extra: 3227 / 3032,
  26653. bottom: 6.8 / 3234
  26654. }
  26655. },
  26656. face: {
  26657. height: math.unit(0.68, "feet"),
  26658. name: "Face",
  26659. image: {
  26660. source: "./media/characters/sam-evans/face.svg"
  26661. }
  26662. },
  26663. },
  26664. [
  26665. {
  26666. name: "Normal",
  26667. height: math.unit(165, "cm"),
  26668. default: true
  26669. },
  26670. {
  26671. name: "Macro",
  26672. height: math.unit(100, "meters")
  26673. },
  26674. {
  26675. name: "Macro+",
  26676. height: math.unit(800, "meters")
  26677. },
  26678. {
  26679. name: "Macro++",
  26680. height: math.unit(3, "km")
  26681. },
  26682. {
  26683. name: "Macro+++",
  26684. height: math.unit(30, "km")
  26685. },
  26686. ]
  26687. ))
  26688. characterMakers.push(() => makeCharacter(
  26689. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26690. {
  26691. front: {
  26692. height: math.unit(10, "feet"),
  26693. weight: math.unit(750, "lb"),
  26694. name: "Front",
  26695. image: {
  26696. source: "./media/characters/juliet-a/front.svg",
  26697. extra: 1766 / 1720,
  26698. bottom: 43 / 1809
  26699. }
  26700. },
  26701. back: {
  26702. height: math.unit(10, "feet"),
  26703. weight: math.unit(750, "lb"),
  26704. name: "Back",
  26705. image: {
  26706. source: "./media/characters/juliet-a/back.svg",
  26707. extra: 1781 / 1734,
  26708. bottom: 35 / 1810,
  26709. }
  26710. },
  26711. },
  26712. [
  26713. {
  26714. name: "Normal",
  26715. height: math.unit(10, "feet"),
  26716. default: true
  26717. },
  26718. {
  26719. name: "Dragon Form",
  26720. height: math.unit(250, "feet")
  26721. },
  26722. {
  26723. name: "Macro",
  26724. height: math.unit(1000, "feet")
  26725. },
  26726. {
  26727. name: "Megamacro",
  26728. height: math.unit(10000, "feet")
  26729. }
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26734. {
  26735. regular: {
  26736. height: math.unit(7 + 3 / 12, "feet"),
  26737. weight: math.unit(260, "lb"),
  26738. name: "Regular",
  26739. image: {
  26740. source: "./media/characters/wild/regular.svg",
  26741. extra: 97.45 / 92,
  26742. bottom: 6.8 / 104.3
  26743. }
  26744. },
  26745. biggums: {
  26746. height: math.unit(8 + 6 / 12, "feet"),
  26747. weight: math.unit(425, "lb"),
  26748. name: "Biggums",
  26749. image: {
  26750. source: "./media/characters/wild/biggums.svg",
  26751. extra: 97.45 / 92,
  26752. bottom: 7.5 / 132.34
  26753. }
  26754. },
  26755. mawRegular: {
  26756. height: math.unit(1.24, "feet"),
  26757. name: "Maw (Regular)",
  26758. image: {
  26759. source: "./media/characters/wild/maw.svg"
  26760. }
  26761. },
  26762. mawBiggums: {
  26763. height: math.unit(1.47, "feet"),
  26764. name: "Maw (Biggums)",
  26765. image: {
  26766. source: "./media/characters/wild/maw.svg"
  26767. }
  26768. },
  26769. },
  26770. [
  26771. {
  26772. name: "Normal",
  26773. height: math.unit(7 + 3 / 12, "feet"),
  26774. default: true
  26775. },
  26776. ]
  26777. ))
  26778. characterMakers.push(() => makeCharacter(
  26779. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26780. {
  26781. front: {
  26782. height: math.unit(2.5, "meters"),
  26783. weight: math.unit(200, "kg"),
  26784. name: "Front",
  26785. image: {
  26786. source: "./media/characters/vidar/front.svg",
  26787. extra: 2994 / 2795,
  26788. bottom: 56 / 3061
  26789. }
  26790. },
  26791. back: {
  26792. height: math.unit(2.5, "meters"),
  26793. weight: math.unit(200, "kg"),
  26794. name: "Back",
  26795. image: {
  26796. source: "./media/characters/vidar/back.svg",
  26797. extra: 3131 / 2928,
  26798. bottom: 13.5 / 3141.5
  26799. }
  26800. },
  26801. feral: {
  26802. height: math.unit(2.5, "meters"),
  26803. weight: math.unit(2000, "kg"),
  26804. name: "Feral",
  26805. image: {
  26806. source: "./media/characters/vidar/feral.svg",
  26807. extra: 2790 / 1765,
  26808. bottom: 6 / 2796
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Normal",
  26815. height: math.unit(2.5, "meters"),
  26816. default: true
  26817. },
  26818. {
  26819. name: "Macro",
  26820. height: math.unit(100, "meters")
  26821. },
  26822. ]
  26823. ))
  26824. characterMakers.push(() => makeCharacter(
  26825. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26826. {
  26827. front: {
  26828. height: math.unit(5 + 9 / 12, "feet"),
  26829. weight: math.unit(120, "lb"),
  26830. name: "Front",
  26831. image: {
  26832. source: "./media/characters/ash/front.svg",
  26833. extra: 2189 / 1961,
  26834. bottom: 5.2 / 2194
  26835. }
  26836. },
  26837. },
  26838. [
  26839. {
  26840. name: "Normal",
  26841. height: math.unit(5 + 9 / 12, "feet"),
  26842. default: true
  26843. },
  26844. ]
  26845. ))
  26846. characterMakers.push(() => makeCharacter(
  26847. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26848. {
  26849. front: {
  26850. height: math.unit(9, "feet"),
  26851. weight: math.unit(10000, "lb"),
  26852. name: "Front",
  26853. image: {
  26854. source: "./media/characters/gygabite/front.svg",
  26855. bottom: 31.7 / 537.8,
  26856. extra: 505 / 370
  26857. }
  26858. },
  26859. },
  26860. [
  26861. {
  26862. name: "Normal",
  26863. height: math.unit(9, "feet"),
  26864. default: true
  26865. },
  26866. ]
  26867. ))
  26868. characterMakers.push(() => makeCharacter(
  26869. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26870. {
  26871. front: {
  26872. height: math.unit(12, "feet"),
  26873. weight: math.unit(35000, "lb"),
  26874. name: "Front",
  26875. image: {
  26876. source: "./media/characters/p0tat0/front.svg",
  26877. extra: 1065 / 921,
  26878. bottom: 55.7 / 1121.25
  26879. }
  26880. },
  26881. },
  26882. [
  26883. {
  26884. name: "Normal",
  26885. height: math.unit(12, "feet"),
  26886. default: true
  26887. },
  26888. ]
  26889. ))
  26890. characterMakers.push(() => makeCharacter(
  26891. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26892. {
  26893. side: {
  26894. height: math.unit(6.5, "feet"),
  26895. weight: math.unit(800, "lb"),
  26896. name: "Side",
  26897. image: {
  26898. source: "./media/characters/dusk/side.svg",
  26899. extra: 615 / 373,
  26900. bottom: 53 / 664
  26901. }
  26902. },
  26903. sitting: {
  26904. height: math.unit(7, "feet"),
  26905. weight: math.unit(800, "lb"),
  26906. name: "Sitting",
  26907. image: {
  26908. source: "./media/characters/dusk/sitting.svg",
  26909. extra: 753 / 425,
  26910. bottom: 33 / 774
  26911. }
  26912. },
  26913. head: {
  26914. height: math.unit(6.1, "feet"),
  26915. name: "Head",
  26916. image: {
  26917. source: "./media/characters/dusk/head.svg"
  26918. }
  26919. },
  26920. },
  26921. [
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(7, "feet"),
  26925. default: true
  26926. },
  26927. ]
  26928. ))
  26929. characterMakers.push(() => makeCharacter(
  26930. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26931. {
  26932. front: {
  26933. height: math.unit(15, "feet"),
  26934. weight: math.unit(7000, "lb"),
  26935. name: "Front",
  26936. image: {
  26937. source: "./media/characters/jay-direwolf/front.svg",
  26938. extra: 1810 / 1732,
  26939. bottom: 66 / 1892
  26940. }
  26941. },
  26942. },
  26943. [
  26944. {
  26945. name: "Normal",
  26946. height: math.unit(15, "feet"),
  26947. default: true
  26948. },
  26949. ]
  26950. ))
  26951. characterMakers.push(() => makeCharacter(
  26952. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26953. {
  26954. front: {
  26955. height: math.unit(4 + 9 / 12, "feet"),
  26956. weight: math.unit(130, "lb"),
  26957. name: "Front",
  26958. image: {
  26959. source: "./media/characters/anchovie/front.svg",
  26960. extra: 382 / 350,
  26961. bottom: 25 / 409
  26962. }
  26963. },
  26964. back: {
  26965. height: math.unit(4 + 9 / 12, "feet"),
  26966. weight: math.unit(130, "lb"),
  26967. name: "Back",
  26968. image: {
  26969. source: "./media/characters/anchovie/back.svg",
  26970. extra: 385 / 352,
  26971. bottom: 16.6 / 402
  26972. }
  26973. },
  26974. frontDressed: {
  26975. height: math.unit(4 + 9 / 12, "feet"),
  26976. weight: math.unit(130, "lb"),
  26977. name: "Front (Dressed)",
  26978. image: {
  26979. source: "./media/characters/anchovie/front-dressed.svg",
  26980. extra: 382 / 350,
  26981. bottom: 25 / 409
  26982. }
  26983. },
  26984. backDressed: {
  26985. height: math.unit(4 + 9 / 12, "feet"),
  26986. weight: math.unit(130, "lb"),
  26987. name: "Back (Dressed)",
  26988. image: {
  26989. source: "./media/characters/anchovie/back-dressed.svg",
  26990. extra: 385 / 352,
  26991. bottom: 16.6 / 402
  26992. }
  26993. },
  26994. },
  26995. [
  26996. {
  26997. name: "Micro",
  26998. height: math.unit(6.4, "inches")
  26999. },
  27000. {
  27001. name: "Normal",
  27002. height: math.unit(4 + 9 / 12, "feet"),
  27003. default: true
  27004. },
  27005. ]
  27006. ))
  27007. characterMakers.push(() => makeCharacter(
  27008. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27009. {
  27010. front: {
  27011. height: math.unit(2, "meters"),
  27012. weight: math.unit(180, "lb"),
  27013. name: "Front",
  27014. image: {
  27015. source: "./media/characters/acidrenamon/front.svg",
  27016. extra: 987 / 890,
  27017. bottom: 22.8 / 1009
  27018. }
  27019. },
  27020. back: {
  27021. height: math.unit(2, "meters"),
  27022. weight: math.unit(180, "lb"),
  27023. name: "Back",
  27024. image: {
  27025. source: "./media/characters/acidrenamon/back.svg",
  27026. extra: 983 / 891,
  27027. bottom: 8.4 / 992
  27028. }
  27029. },
  27030. head: {
  27031. height: math.unit(1.92, "feet"),
  27032. name: "Head",
  27033. image: {
  27034. source: "./media/characters/acidrenamon/head.svg"
  27035. }
  27036. },
  27037. rump: {
  27038. height: math.unit(1.72, "feet"),
  27039. name: "Rump",
  27040. image: {
  27041. source: "./media/characters/acidrenamon/rump.svg"
  27042. }
  27043. },
  27044. tail: {
  27045. height: math.unit(4.2, "feet"),
  27046. name: "Tail",
  27047. image: {
  27048. source: "./media/characters/acidrenamon/tail.svg"
  27049. }
  27050. },
  27051. },
  27052. [
  27053. {
  27054. name: "Normal",
  27055. height: math.unit(2, "meters"),
  27056. default: true
  27057. },
  27058. {
  27059. name: "Minimacro",
  27060. height: math.unit(7, "meters")
  27061. },
  27062. {
  27063. name: "Macro",
  27064. height: math.unit(200, "meters")
  27065. },
  27066. {
  27067. name: "Gigamacro",
  27068. height: math.unit(0.2, "earths")
  27069. },
  27070. ]
  27071. ))
  27072. characterMakers.push(() => makeCharacter(
  27073. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27074. {
  27075. front: {
  27076. height: math.unit(6, "feet"),
  27077. weight: math.unit(150, "lb"),
  27078. name: "Front",
  27079. image: {
  27080. source: "./media/characters/kenzie-lee/front.svg",
  27081. extra: 1525 / 1465,
  27082. bottom: 45 / 1570
  27083. }
  27084. },
  27085. side: {
  27086. height: math.unit(6, "feet"),
  27087. weight: math.unit(150, "lb"),
  27088. name: "Side",
  27089. image: {
  27090. source: "./media/characters/kenzie-lee/side.svg",
  27091. extra: 5505 / 5383,
  27092. bottom: 60 / 5573
  27093. }
  27094. },
  27095. paw: {
  27096. height: math.unit(0.57, "feet"),
  27097. name: "Paw",
  27098. image: {
  27099. source: "./media/characters/kenzie-lee/paw.svg"
  27100. }
  27101. },
  27102. },
  27103. [
  27104. {
  27105. name: "Normal",
  27106. height: math.unit(152, "feet"),
  27107. default: true
  27108. },
  27109. {
  27110. name: "Megamacro",
  27111. height: math.unit(7, "miles")
  27112. },
  27113. {
  27114. name: "Gigamacro",
  27115. height: math.unit(8000, "miles")
  27116. },
  27117. ]
  27118. ))
  27119. characterMakers.push(() => makeCharacter(
  27120. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27121. {
  27122. side: {
  27123. height: math.unit(6, "feet"),
  27124. weight: math.unit(150, "lb"),
  27125. name: "Side",
  27126. image: {
  27127. source: "./media/characters/withers/side.svg",
  27128. extra: 1830 / 1728,
  27129. bottom: 96 / 1927
  27130. }
  27131. },
  27132. front: {
  27133. height: math.unit(6, "feet"),
  27134. weight: math.unit(150, "lb"),
  27135. name: "Front",
  27136. image: {
  27137. source: "./media/characters/withers/front.svg",
  27138. extra: 1514 / 1438,
  27139. bottom: 118 / 1632
  27140. }
  27141. },
  27142. },
  27143. [
  27144. {
  27145. name: "Macro",
  27146. height: math.unit(168, "feet"),
  27147. default: true
  27148. },
  27149. {
  27150. name: "Megamacro",
  27151. height: math.unit(15, "miles")
  27152. }
  27153. ]
  27154. ))
  27155. characterMakers.push(() => makeCharacter(
  27156. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27157. {
  27158. front: {
  27159. height: math.unit(6 + 7 / 12, "feet"),
  27160. weight: math.unit(250, "lb"),
  27161. name: "Front",
  27162. image: {
  27163. source: "./media/characters/nemoskii/front.svg",
  27164. extra: 2270 / 1734,
  27165. bottom: 86 / 2354
  27166. }
  27167. },
  27168. back: {
  27169. height: math.unit(6 + 7 / 12, "feet"),
  27170. weight: math.unit(250, "lb"),
  27171. name: "Back",
  27172. image: {
  27173. source: "./media/characters/nemoskii/back.svg",
  27174. extra: 1845 / 1788,
  27175. bottom: 10.5 / 1852
  27176. }
  27177. },
  27178. head: {
  27179. height: math.unit(1.31, "feet"),
  27180. name: "Head",
  27181. image: {
  27182. source: "./media/characters/nemoskii/head.svg"
  27183. }
  27184. },
  27185. },
  27186. [
  27187. {
  27188. name: "Micro",
  27189. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27190. },
  27191. {
  27192. name: "Normal",
  27193. height: math.unit(6 + 7 / 12, "feet"),
  27194. default: true
  27195. },
  27196. {
  27197. name: "Macro",
  27198. height: math.unit((6 + 7 / 12) * 150, "feet")
  27199. },
  27200. {
  27201. name: "Macro+",
  27202. height: math.unit((6 + 7 / 12) * 500, "feet")
  27203. },
  27204. {
  27205. name: "Megamacro",
  27206. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27212. {
  27213. front: {
  27214. height: math.unit(1, "mile"),
  27215. weight: math.unit(265261.9, "lb"),
  27216. name: "Front",
  27217. image: {
  27218. source: "./media/characters/shui/front.svg",
  27219. extra: 1633 / 1564,
  27220. bottom: 91.5 / 1726
  27221. }
  27222. },
  27223. },
  27224. [
  27225. {
  27226. name: "Macro",
  27227. height: math.unit(1, "mile"),
  27228. default: true
  27229. },
  27230. ]
  27231. ))
  27232. characterMakers.push(() => makeCharacter(
  27233. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27234. {
  27235. front: {
  27236. height: math.unit(12 + 6 / 12, "feet"),
  27237. weight: math.unit(1342, "lb"),
  27238. name: "Front",
  27239. image: {
  27240. source: "./media/characters/arokh-takakura/front.svg",
  27241. extra: 1089 / 1043,
  27242. bottom: 77.4 / 1176.7
  27243. }
  27244. },
  27245. back: {
  27246. height: math.unit(12 + 6 / 12, "feet"),
  27247. weight: math.unit(1342, "lb"),
  27248. name: "Back",
  27249. image: {
  27250. source: "./media/characters/arokh-takakura/back.svg",
  27251. extra: 1046 / 1019,
  27252. bottom: 102 / 1150
  27253. }
  27254. },
  27255. },
  27256. [
  27257. {
  27258. name: "Big",
  27259. height: math.unit(12 + 6 / 12, "feet"),
  27260. default: true
  27261. },
  27262. ]
  27263. ))
  27264. characterMakers.push(() => makeCharacter(
  27265. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27266. {
  27267. front: {
  27268. height: math.unit(5 + 6 / 12, "feet"),
  27269. weight: math.unit(150, "lb"),
  27270. name: "Front",
  27271. image: {
  27272. source: "./media/characters/theo/front.svg",
  27273. extra: 1184 / 1131,
  27274. bottom: 7.4 / 1191
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Micro",
  27281. height: math.unit(5, "inches")
  27282. },
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(5 + 6 / 12, "feet"),
  27286. default: true
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27292. {
  27293. front: {
  27294. height: math.unit(5 + 9 / 12, "feet"),
  27295. weight: math.unit(130, "lb"),
  27296. name: "Front",
  27297. image: {
  27298. source: "./media/characters/cecelia-swift/front.svg",
  27299. extra: 502 / 484,
  27300. bottom: 23 / 523
  27301. }
  27302. },
  27303. back: {
  27304. height: math.unit(5 + 9 / 12, "feet"),
  27305. weight: math.unit(130, "lb"),
  27306. name: "Back",
  27307. image: {
  27308. source: "./media/characters/cecelia-swift/back.svg",
  27309. extra: 499 / 485,
  27310. bottom: 12 / 511
  27311. }
  27312. },
  27313. head: {
  27314. height: math.unit(0.90, "feet"),
  27315. name: "Head",
  27316. image: {
  27317. source: "./media/characters/cecelia-swift/head.svg"
  27318. }
  27319. },
  27320. rump: {
  27321. height: math.unit(1.75, "feet"),
  27322. name: "Rump",
  27323. image: {
  27324. source: "./media/characters/cecelia-swift/rump.svg"
  27325. }
  27326. },
  27327. },
  27328. [
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(5 + 9 / 12, "feet"),
  27332. default: true
  27333. },
  27334. {
  27335. name: "Big",
  27336. height: math.unit(50, "feet")
  27337. },
  27338. {
  27339. name: "Macro",
  27340. height: math.unit(100, "feet")
  27341. },
  27342. {
  27343. name: "Macro+",
  27344. height: math.unit(500, "feet")
  27345. },
  27346. {
  27347. name: "Macro++",
  27348. height: math.unit(1000, "feet")
  27349. },
  27350. ]
  27351. ))
  27352. characterMakers.push(() => makeCharacter(
  27353. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27354. {
  27355. front: {
  27356. height: math.unit(6, "feet"),
  27357. weight: math.unit(150, "lb"),
  27358. name: "Front",
  27359. image: {
  27360. source: "./media/characters/kaunan/front.svg",
  27361. extra: 2890 / 2523,
  27362. bottom: 49 / 2939
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "Macro",
  27369. height: math.unit(150, "feet"),
  27370. default: true
  27371. },
  27372. ]
  27373. ))
  27374. characterMakers.push(() => makeCharacter(
  27375. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27376. {
  27377. front: {
  27378. height: math.unit(175, "cm"),
  27379. weight: math.unit(60, "kg"),
  27380. name: "Front",
  27381. image: {
  27382. source: "./media/characters/fei/front.svg",
  27383. extra: 1873/1723,
  27384. bottom: 53/1926
  27385. }
  27386. },
  27387. },
  27388. [
  27389. {
  27390. name: "Mortal",
  27391. height: math.unit(175, "cm")
  27392. },
  27393. {
  27394. name: "Normal",
  27395. height: math.unit(3500, "m"),
  27396. default: true
  27397. },
  27398. {
  27399. name: "Stroll",
  27400. height: math.unit(17.5, "km")
  27401. },
  27402. {
  27403. name: "Showoff",
  27404. height: math.unit(175, "km")
  27405. },
  27406. ]
  27407. ))
  27408. characterMakers.push(() => makeCharacter(
  27409. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27410. {
  27411. front: {
  27412. height: math.unit(7, "feet"),
  27413. weight: math.unit(1000, "kg"),
  27414. name: "Front",
  27415. image: {
  27416. source: "./media/characters/edrax/front.svg",
  27417. extra: 2838 / 2550,
  27418. bottom: 130 / 2968
  27419. }
  27420. },
  27421. },
  27422. [
  27423. {
  27424. name: "Small",
  27425. height: math.unit(7, "feet")
  27426. },
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(1500, "meters")
  27430. },
  27431. {
  27432. name: "Mega",
  27433. height: math.unit(12000000, "km"),
  27434. default: true
  27435. },
  27436. {
  27437. name: "Megamacro",
  27438. height: math.unit(10600000, "lightyears")
  27439. },
  27440. {
  27441. name: "Hypermacro",
  27442. height: math.unit(256, "yottameters")
  27443. },
  27444. ]
  27445. ))
  27446. characterMakers.push(() => makeCharacter(
  27447. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27448. {
  27449. front: {
  27450. height: math.unit(10, "feet"),
  27451. weight: math.unit(750, "lb"),
  27452. name: "Front",
  27453. image: {
  27454. source: "./media/characters/clove/front.svg",
  27455. extra: 2031 / 1860,
  27456. bottom: 47.8 / 2080
  27457. }
  27458. },
  27459. back: {
  27460. height: math.unit(10, "feet"),
  27461. weight: math.unit(750, "lb"),
  27462. name: "Back",
  27463. image: {
  27464. source: "./media/characters/clove/back.svg",
  27465. extra: 2025 / 1859,
  27466. bottom: 46 / 2071
  27467. }
  27468. },
  27469. },
  27470. [
  27471. {
  27472. name: "Normal",
  27473. height: math.unit(10, "feet"),
  27474. default: true
  27475. },
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27480. {
  27481. front: {
  27482. height: math.unit(4, "feet"),
  27483. weight: math.unit(50, "lb"),
  27484. name: "Front",
  27485. image: {
  27486. source: "./media/characters/alex-rabbit/front.svg",
  27487. extra: 507 / 458,
  27488. bottom: 18.5 / 527
  27489. }
  27490. },
  27491. back: {
  27492. height: math.unit(4, "feet"),
  27493. weight: math.unit(50, "lb"),
  27494. name: "Back",
  27495. image: {
  27496. source: "./media/characters/alex-rabbit/back.svg",
  27497. extra: 502 / 460,
  27498. bottom: 18.9 / 521
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(4, "feet"),
  27506. default: true
  27507. },
  27508. ]
  27509. ))
  27510. characterMakers.push(() => makeCharacter(
  27511. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27512. {
  27513. front: {
  27514. height: math.unit(1 + 3 / 12, "feet"),
  27515. weight: math.unit(80, "lb"),
  27516. name: "Front",
  27517. image: {
  27518. source: "./media/characters/zander-rose/front.svg",
  27519. extra: 916 / 797,
  27520. bottom: 17 / 933
  27521. }
  27522. },
  27523. back: {
  27524. height: math.unit(1 + 3 / 12, "feet"),
  27525. weight: math.unit(80, "lb"),
  27526. name: "Back",
  27527. image: {
  27528. source: "./media/characters/zander-rose/back.svg",
  27529. extra: 903 / 779,
  27530. bottom: 31 / 934
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Normal",
  27537. height: math.unit(1 + 3 / 12, "feet"),
  27538. default: true
  27539. },
  27540. ]
  27541. ))
  27542. characterMakers.push(() => makeCharacter(
  27543. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27544. {
  27545. anthro: {
  27546. height: math.unit(6, "feet"),
  27547. weight: math.unit(150, "lb"),
  27548. name: "Anthro",
  27549. image: {
  27550. source: "./media/characters/razz/anthro.svg",
  27551. extra: 1437 / 1343,
  27552. bottom: 48 / 1485
  27553. }
  27554. },
  27555. feral: {
  27556. height: math.unit(6, "feet"),
  27557. weight: math.unit(150, "lb"),
  27558. name: "Feral",
  27559. image: {
  27560. source: "./media/characters/razz/feral.svg",
  27561. extra: 2569 / 1385,
  27562. bottom: 95 / 2664
  27563. }
  27564. },
  27565. },
  27566. [
  27567. {
  27568. name: "Normal",
  27569. height: math.unit(6, "feet"),
  27570. default: true
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27576. {
  27577. front: {
  27578. height: math.unit(9 + 4 / 12, "feet"),
  27579. weight: math.unit(500, "lb"),
  27580. name: "Front",
  27581. image: {
  27582. source: "./media/characters/morrigan/front.svg",
  27583. extra: 2707 / 2579,
  27584. bottom: 156 / 2863
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Normal",
  27591. height: math.unit(9 + 4 / 12, "feet"),
  27592. default: true
  27593. },
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27598. {
  27599. front: {
  27600. height: math.unit(5, "stories"),
  27601. weight: math.unit(4000, "lb"),
  27602. name: "Front",
  27603. image: {
  27604. source: "./media/characters/jenene/front.svg",
  27605. extra: 1780 / 1710,
  27606. bottom: 57 / 1837
  27607. }
  27608. },
  27609. },
  27610. [
  27611. {
  27612. name: "Normal",
  27613. height: math.unit(5, "stories"),
  27614. default: true
  27615. },
  27616. ]
  27617. ))
  27618. characterMakers.push(() => makeCharacter(
  27619. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27620. {
  27621. front: {
  27622. height: math.unit(6, "feet"),
  27623. weight: math.unit(150, "lb"),
  27624. name: "Front",
  27625. image: {
  27626. source: "./media/characters/vix-archaser/front.svg",
  27627. extra: 2767 / 2562,
  27628. bottom: 36 / 2803
  27629. }
  27630. },
  27631. },
  27632. [
  27633. {
  27634. name: "Micro",
  27635. height: math.unit(1, "foot")
  27636. },
  27637. {
  27638. name: "Normal",
  27639. height: math.unit(6 + 5 / 12, "feet")
  27640. },
  27641. {
  27642. name: "Minimacro",
  27643. height: math.unit(500, "feet")
  27644. },
  27645. {
  27646. name: "Macro",
  27647. height: math.unit(4, "miles")
  27648. },
  27649. {
  27650. name: "Megamacro",
  27651. height: math.unit(250, "miles"),
  27652. default: true
  27653. },
  27654. {
  27655. name: "Gigamacro",
  27656. height: math.unit(1, "universe")
  27657. },
  27658. {
  27659. name: "Endgame",
  27660. height: math.unit(100, "multiverses")
  27661. }
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27666. {
  27667. taurSfw: {
  27668. height: math.unit(10, "meters"),
  27669. weight: math.unit(17500, "kg"),
  27670. name: "Taur",
  27671. image: {
  27672. source: "./media/characters/faey/taur-sfw.svg",
  27673. extra: 1200 / 968,
  27674. bottom: 41 / 1241
  27675. }
  27676. },
  27677. chestmaw: {
  27678. height: math.unit(2.01, "meters"),
  27679. name: "Chestmaw",
  27680. image: {
  27681. source: "./media/characters/faey/chestmaw.svg"
  27682. }
  27683. },
  27684. foot: {
  27685. height: math.unit(2.43, "meters"),
  27686. name: "Foot",
  27687. image: {
  27688. source: "./media/characters/faey/foot.svg"
  27689. }
  27690. },
  27691. jaws: {
  27692. height: math.unit(1.66, "meters"),
  27693. name: "Jaws",
  27694. image: {
  27695. source: "./media/characters/faey/jaws.svg"
  27696. }
  27697. },
  27698. tongues: {
  27699. height: math.unit(2.01, "meters"),
  27700. name: "Tongues",
  27701. image: {
  27702. source: "./media/characters/faey/tongues.svg"
  27703. }
  27704. },
  27705. },
  27706. [
  27707. {
  27708. name: "Small",
  27709. height: math.unit(10, "meters"),
  27710. default: true
  27711. },
  27712. {
  27713. name: "Big",
  27714. height: math.unit(500000, "km")
  27715. },
  27716. ]
  27717. ))
  27718. characterMakers.push(() => makeCharacter(
  27719. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27720. {
  27721. front: {
  27722. height: math.unit(7, "feet"),
  27723. weight: math.unit(275, "lb"),
  27724. name: "Front",
  27725. image: {
  27726. source: "./media/characters/roku/front.svg",
  27727. extra: 903 / 878,
  27728. bottom: 37 / 940
  27729. }
  27730. },
  27731. },
  27732. [
  27733. {
  27734. name: "Normal",
  27735. height: math.unit(7, "feet"),
  27736. default: true
  27737. },
  27738. {
  27739. name: "Macro",
  27740. height: math.unit(500, "feet")
  27741. },
  27742. {
  27743. name: "Megamacro",
  27744. height: math.unit(200, "miles")
  27745. },
  27746. ]
  27747. ))
  27748. characterMakers.push(() => makeCharacter(
  27749. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27750. {
  27751. front: {
  27752. height: math.unit(6 + 2 / 12, "feet"),
  27753. weight: math.unit(150, "lb"),
  27754. name: "Front",
  27755. image: {
  27756. source: "./media/characters/lira/front.svg",
  27757. extra: 1727 / 1605,
  27758. bottom: 26 / 1753
  27759. }
  27760. },
  27761. back: {
  27762. height: math.unit(6 + 2 / 12, "feet"),
  27763. weight: math.unit(150, "lb"),
  27764. name: "Back",
  27765. image: {
  27766. source: "./media/characters/lira/back.svg",
  27767. extra: 1713/1621,
  27768. bottom: 20/1733
  27769. }
  27770. },
  27771. hand: {
  27772. height: math.unit(0.75, "feet"),
  27773. name: "Hand",
  27774. image: {
  27775. source: "./media/characters/lira/hand.svg"
  27776. }
  27777. },
  27778. maw: {
  27779. height: math.unit(0.65, "feet"),
  27780. name: "Maw",
  27781. image: {
  27782. source: "./media/characters/lira/maw.svg"
  27783. }
  27784. },
  27785. pawDigi: {
  27786. height: math.unit(1.6, "feet"),
  27787. name: "Paw Digi",
  27788. image: {
  27789. source: "./media/characters/lira/paw-digi.svg"
  27790. }
  27791. },
  27792. pawPlanti: {
  27793. height: math.unit(1.4, "feet"),
  27794. name: "Paw Planti",
  27795. image: {
  27796. source: "./media/characters/lira/paw-planti.svg"
  27797. }
  27798. },
  27799. },
  27800. [
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(6 + 2 / 12, "feet"),
  27804. default: true
  27805. },
  27806. {
  27807. name: "Macro",
  27808. height: math.unit(100, "feet")
  27809. },
  27810. {
  27811. name: "Macro²",
  27812. height: math.unit(1600, "feet")
  27813. },
  27814. {
  27815. name: "Planetary",
  27816. height: math.unit(20, "earths")
  27817. },
  27818. ]
  27819. ))
  27820. characterMakers.push(() => makeCharacter(
  27821. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27822. {
  27823. front: {
  27824. height: math.unit(6, "feet"),
  27825. weight: math.unit(150, "lb"),
  27826. name: "Front",
  27827. image: {
  27828. source: "./media/characters/hadjet/front.svg",
  27829. extra: 1480 / 1346,
  27830. bottom: 26 / 1506
  27831. }
  27832. },
  27833. frontNsfw: {
  27834. height: math.unit(6, "feet"),
  27835. weight: math.unit(150, "lb"),
  27836. name: "Front (NSFW)",
  27837. image: {
  27838. source: "./media/characters/hadjet/front-nsfw.svg",
  27839. extra: 1440 / 1358,
  27840. bottom: 52 / 1492
  27841. }
  27842. },
  27843. },
  27844. [
  27845. {
  27846. name: "Macro",
  27847. height: math.unit(10, "stories"),
  27848. default: true
  27849. },
  27850. {
  27851. name: "Megamacro",
  27852. height: math.unit(1.5, "miles")
  27853. },
  27854. {
  27855. name: "Megamacro+",
  27856. height: math.unit(5, "miles")
  27857. },
  27858. ]
  27859. ))
  27860. characterMakers.push(() => makeCharacter(
  27861. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27862. {
  27863. side: {
  27864. height: math.unit(106, "feet"),
  27865. weight: math.unit(500, "tonnes"),
  27866. name: "Side",
  27867. image: {
  27868. source: "./media/characters/kodran/side.svg",
  27869. extra: 553 / 480,
  27870. bottom: 33 / 586
  27871. }
  27872. },
  27873. front: {
  27874. height: math.unit(132, "feet"),
  27875. weight: math.unit(500, "tonnes"),
  27876. name: "Front",
  27877. image: {
  27878. source: "./media/characters/kodran/front.svg",
  27879. extra: 667 / 643,
  27880. bottom: 42 / 709
  27881. }
  27882. },
  27883. flying: {
  27884. height: math.unit(350, "feet"),
  27885. weight: math.unit(500, "tonnes"),
  27886. name: "Flying",
  27887. image: {
  27888. source: "./media/characters/kodran/flying.svg"
  27889. }
  27890. },
  27891. foot: {
  27892. height: math.unit(33, "feet"),
  27893. name: "Foot",
  27894. image: {
  27895. source: "./media/characters/kodran/foot.svg"
  27896. }
  27897. },
  27898. footFront: {
  27899. height: math.unit(19, "feet"),
  27900. name: "Foot (Front)",
  27901. image: {
  27902. source: "./media/characters/kodran/foot-front.svg",
  27903. extra: 261 / 261,
  27904. bottom: 91 / 352
  27905. }
  27906. },
  27907. headFront: {
  27908. height: math.unit(53, "feet"),
  27909. name: "Head (Front)",
  27910. image: {
  27911. source: "./media/characters/kodran/head-front.svg"
  27912. }
  27913. },
  27914. headSide: {
  27915. height: math.unit(65, "feet"),
  27916. name: "Head (Side)",
  27917. image: {
  27918. source: "./media/characters/kodran/head-side.svg"
  27919. }
  27920. },
  27921. throat: {
  27922. height: math.unit(79, "feet"),
  27923. name: "Throat",
  27924. image: {
  27925. source: "./media/characters/kodran/throat.svg"
  27926. }
  27927. },
  27928. },
  27929. [
  27930. {
  27931. name: "Large",
  27932. height: math.unit(106, "feet"),
  27933. default: true
  27934. },
  27935. ]
  27936. ))
  27937. characterMakers.push(() => makeCharacter(
  27938. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27939. {
  27940. side: {
  27941. height: math.unit(11, "feet"),
  27942. weight: math.unit(150, "lb"),
  27943. name: "Side",
  27944. image: {
  27945. source: "./media/characters/pyxaron/side.svg",
  27946. extra: 305 / 195,
  27947. bottom: 17 / 322
  27948. }
  27949. },
  27950. },
  27951. [
  27952. {
  27953. name: "Normal",
  27954. height: math.unit(11, "feet"),
  27955. default: true
  27956. },
  27957. ]
  27958. ))
  27959. characterMakers.push(() => makeCharacter(
  27960. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27961. {
  27962. front: {
  27963. height: math.unit(6, "feet"),
  27964. weight: math.unit(150, "lb"),
  27965. name: "Front",
  27966. image: {
  27967. source: "./media/characters/meep/front.svg",
  27968. extra: 88 / 80,
  27969. bottom: 6 / 94
  27970. }
  27971. },
  27972. },
  27973. [
  27974. {
  27975. name: "Fun Sized",
  27976. height: math.unit(2, "inches"),
  27977. default: true
  27978. },
  27979. {
  27980. name: "Friend Sized",
  27981. height: math.unit(8, "inches")
  27982. },
  27983. ]
  27984. ))
  27985. characterMakers.push(() => makeCharacter(
  27986. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27987. {
  27988. front: {
  27989. height: math.unit(15, "feet"),
  27990. weight: math.unit(2500, "lb"),
  27991. name: "Front",
  27992. image: {
  27993. source: "./media/characters/holly-rabbit/front.svg",
  27994. extra: 1433 / 1233,
  27995. bottom: 125 / 1558
  27996. }
  27997. },
  27998. dick: {
  27999. height: math.unit(4.6, "feet"),
  28000. name: "Dick",
  28001. image: {
  28002. source: "./media/characters/holly-rabbit/dick.svg"
  28003. }
  28004. },
  28005. },
  28006. [
  28007. {
  28008. name: "Normal",
  28009. height: math.unit(15, "feet"),
  28010. default: true
  28011. },
  28012. {
  28013. name: "Macro",
  28014. height: math.unit(250, "feet")
  28015. },
  28016. {
  28017. name: "Macro+",
  28018. height: math.unit(2500, "feet")
  28019. },
  28020. ]
  28021. ))
  28022. characterMakers.push(() => makeCharacter(
  28023. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28024. {
  28025. front: {
  28026. height: math.unit(3.02, "meters"),
  28027. weight: math.unit(500, "kg"),
  28028. name: "Front",
  28029. image: {
  28030. source: "./media/characters/drena/front.svg",
  28031. extra: 282 / 243,
  28032. bottom: 8 / 290
  28033. }
  28034. },
  28035. side: {
  28036. height: math.unit(3.02, "meters"),
  28037. weight: math.unit(500, "kg"),
  28038. name: "Side",
  28039. image: {
  28040. source: "./media/characters/drena/side.svg",
  28041. extra: 280 / 245,
  28042. bottom: 10 / 290
  28043. }
  28044. },
  28045. back: {
  28046. height: math.unit(3.02, "meters"),
  28047. weight: math.unit(500, "kg"),
  28048. name: "Back",
  28049. image: {
  28050. source: "./media/characters/drena/back.svg",
  28051. extra: 278 / 243,
  28052. bottom: 2 / 280
  28053. }
  28054. },
  28055. foot: {
  28056. height: math.unit(0.75, "meters"),
  28057. name: "Foot",
  28058. image: {
  28059. source: "./media/characters/drena/foot.svg"
  28060. }
  28061. },
  28062. maw: {
  28063. height: math.unit(0.82, "meters"),
  28064. name: "Maw",
  28065. image: {
  28066. source: "./media/characters/drena/maw.svg"
  28067. }
  28068. },
  28069. rump: {
  28070. height: math.unit(0.93, "meters"),
  28071. name: "Rump",
  28072. image: {
  28073. source: "./media/characters/drena/rump.svg"
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Normal",
  28080. height: math.unit(3.02, "meters"),
  28081. default: true
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28087. {
  28088. front: {
  28089. height: math.unit(6 + 4 / 12, "feet"),
  28090. weight: math.unit(250, "lb"),
  28091. name: "Front",
  28092. image: {
  28093. source: "./media/characters/remmyzilla/front.svg",
  28094. extra: 4033 / 3588,
  28095. bottom: 123 / 4156
  28096. }
  28097. },
  28098. back: {
  28099. height: math.unit(6 + 4 / 12, "feet"),
  28100. weight: math.unit(250, "lb"),
  28101. name: "Back",
  28102. image: {
  28103. source: "./media/characters/remmyzilla/back.svg",
  28104. extra: 2687 / 2555,
  28105. bottom: 48 / 2735
  28106. }
  28107. },
  28108. paw: {
  28109. height: math.unit(1.73, "feet"),
  28110. name: "Paw",
  28111. image: {
  28112. source: "./media/characters/remmyzilla/paw.svg"
  28113. }
  28114. },
  28115. maw: {
  28116. height: math.unit(1.73, "feet"),
  28117. name: "Maw",
  28118. image: {
  28119. source: "./media/characters/remmyzilla/maw.svg"
  28120. }
  28121. },
  28122. },
  28123. [
  28124. {
  28125. name: "Normal",
  28126. height: math.unit(6 + 4 / 12, "feet")
  28127. },
  28128. {
  28129. name: "Minimacro",
  28130. height: math.unit(12 + 8 / 12, "feet")
  28131. },
  28132. {
  28133. name: "Normal",
  28134. height: math.unit(640, "feet"),
  28135. default: true
  28136. },
  28137. {
  28138. name: "Megamacro",
  28139. height: math.unit(6400, "feet")
  28140. },
  28141. {
  28142. name: "Gigamacro",
  28143. height: math.unit(64000, "miles")
  28144. },
  28145. ]
  28146. ))
  28147. characterMakers.push(() => makeCharacter(
  28148. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28149. {
  28150. front: {
  28151. height: math.unit(2.5, "meters"),
  28152. weight: math.unit(300, "lb"),
  28153. name: "Front",
  28154. image: {
  28155. source: "./media/characters/lawrence/front.svg",
  28156. extra: 357 / 335,
  28157. bottom: 30 / 387
  28158. }
  28159. },
  28160. back: {
  28161. height: math.unit(2.5, "meters"),
  28162. weight: math.unit(300, "lb"),
  28163. name: "Back",
  28164. image: {
  28165. source: "./media/characters/lawrence/back.svg",
  28166. extra: 357 / 338,
  28167. bottom: 16 / 373
  28168. }
  28169. },
  28170. head: {
  28171. height: math.unit(0.9, "meter"),
  28172. name: "Head",
  28173. image: {
  28174. source: "./media/characters/lawrence/head.svg"
  28175. }
  28176. },
  28177. maw: {
  28178. height: math.unit(0.7, "meter"),
  28179. name: "Maw",
  28180. image: {
  28181. source: "./media/characters/lawrence/maw.svg"
  28182. }
  28183. },
  28184. footBottom: {
  28185. height: math.unit(0.5, "meter"),
  28186. name: "Foot (Bottom)",
  28187. image: {
  28188. source: "./media/characters/lawrence/foot-bottom.svg"
  28189. }
  28190. },
  28191. footTop: {
  28192. height: math.unit(0.5, "meter"),
  28193. name: "Foot (Top)",
  28194. image: {
  28195. source: "./media/characters/lawrence/foot-top.svg"
  28196. }
  28197. },
  28198. },
  28199. [
  28200. {
  28201. name: "Normal",
  28202. height: math.unit(2.5, "meters"),
  28203. default: true
  28204. },
  28205. {
  28206. name: "Macro",
  28207. height: math.unit(95, "meters")
  28208. },
  28209. {
  28210. name: "Megamacro",
  28211. height: math.unit(150, "km")
  28212. },
  28213. ]
  28214. ))
  28215. characterMakers.push(() => makeCharacter(
  28216. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28217. {
  28218. front: {
  28219. height: math.unit(4.2, "meters"),
  28220. name: "Front",
  28221. image: {
  28222. source: "./media/characters/sydney/front.svg",
  28223. extra: 1323 / 1277,
  28224. bottom: 111 / 1434
  28225. }
  28226. },
  28227. },
  28228. [
  28229. {
  28230. name: "Normal",
  28231. height: math.unit(4.2, "meters"),
  28232. default: true
  28233. },
  28234. ]
  28235. ))
  28236. characterMakers.push(() => makeCharacter(
  28237. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28238. {
  28239. back: {
  28240. height: math.unit(201, "feet"),
  28241. name: "Back",
  28242. image: {
  28243. source: "./media/characters/jessica/back.svg",
  28244. extra: 273 / 259,
  28245. bottom: 7 / 280
  28246. }
  28247. },
  28248. },
  28249. [
  28250. {
  28251. name: "Normal",
  28252. height: math.unit(201, "feet"),
  28253. default: true
  28254. },
  28255. {
  28256. name: "Megamacro",
  28257. height: math.unit(8, "miles")
  28258. },
  28259. ]
  28260. ))
  28261. characterMakers.push(() => makeCharacter(
  28262. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28263. {
  28264. side: {
  28265. height: math.unit(320, "cm"),
  28266. name: "Side",
  28267. image: {
  28268. source: "./media/characters/victoria/side.svg",
  28269. extra: 778 / 346,
  28270. bottom: 56 / 834
  28271. }
  28272. },
  28273. maw: {
  28274. height: math.unit(5.9, "feet"),
  28275. name: "Maw",
  28276. image: {
  28277. source: "./media/characters/victoria/maw.svg"
  28278. }
  28279. },
  28280. },
  28281. [
  28282. {
  28283. name: "Normal",
  28284. height: math.unit(320, "cm"),
  28285. default: true
  28286. },
  28287. ]
  28288. ))
  28289. characterMakers.push(() => makeCharacter(
  28290. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28291. {
  28292. front: {
  28293. height: math.unit(5 + 6 / 12, "feet"),
  28294. name: "Front",
  28295. image: {
  28296. source: "./media/characters/cat/front.svg",
  28297. extra: 1374 / 1257,
  28298. bottom: 59 / 1433
  28299. }
  28300. },
  28301. back: {
  28302. height: math.unit(5 + 6 / 12, "feet"),
  28303. name: "Back",
  28304. image: {
  28305. source: "./media/characters/cat/back.svg",
  28306. extra: 1337 / 1226,
  28307. bottom: 34 / 1371
  28308. }
  28309. },
  28310. taur: {
  28311. height: math.unit(7, "feet"),
  28312. name: "Taur",
  28313. image: {
  28314. source: "./media/characters/cat/taur.svg",
  28315. extra: 1345 / 1231,
  28316. bottom: 66 / 1411
  28317. }
  28318. },
  28319. lucario: {
  28320. height: math.unit(4, "feet"),
  28321. name: "Lucario",
  28322. image: {
  28323. source: "./media/characters/cat/lucario.svg",
  28324. extra: 1470 / 1318,
  28325. bottom: 65 / 1535
  28326. }
  28327. },
  28328. megaLucario: {
  28329. height: math.unit(4, "feet"),
  28330. name: "Mega Lucario",
  28331. image: {
  28332. source: "./media/characters/cat/mega-lucario.svg",
  28333. extra: 1515 / 1319,
  28334. bottom: 63 / 1578
  28335. }
  28336. },
  28337. nickit: {
  28338. height: math.unit(2, "feet"),
  28339. name: "Nickit",
  28340. image: {
  28341. source: "./media/characters/cat/nickit.svg",
  28342. extra: 1980 / 1585,
  28343. bottom: 102 / 2082
  28344. }
  28345. },
  28346. lopunnyFront: {
  28347. height: math.unit(5, "feet"),
  28348. name: "Lopunny (Front)",
  28349. image: {
  28350. source: "./media/characters/cat/lopunny-front.svg",
  28351. extra: 1782 / 1469,
  28352. bottom: 38 / 1820
  28353. }
  28354. },
  28355. lopunnyBack: {
  28356. height: math.unit(5, "feet"),
  28357. name: "Lopunny (Back)",
  28358. image: {
  28359. source: "./media/characters/cat/lopunny-back.svg",
  28360. extra: 1660 / 1490,
  28361. bottom: 25 / 1685
  28362. }
  28363. },
  28364. },
  28365. [
  28366. {
  28367. name: "Really small",
  28368. height: math.unit(1, "nm")
  28369. },
  28370. {
  28371. name: "Micro",
  28372. height: math.unit(5, "inches")
  28373. },
  28374. {
  28375. name: "Normal",
  28376. height: math.unit(5 + 6 / 12, "feet"),
  28377. default: true
  28378. },
  28379. {
  28380. name: "Macro",
  28381. height: math.unit(50, "feet")
  28382. },
  28383. {
  28384. name: "Macro+",
  28385. height: math.unit(150, "feet")
  28386. },
  28387. {
  28388. name: "Megamacro",
  28389. height: math.unit(100, "miles")
  28390. },
  28391. ]
  28392. ))
  28393. characterMakers.push(() => makeCharacter(
  28394. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28395. {
  28396. front: {
  28397. height: math.unit(63.4, "meters"),
  28398. weight: math.unit(3.28349e+6, "kilograms"),
  28399. name: "Front",
  28400. image: {
  28401. source: "./media/characters/kirina-violet/front.svg",
  28402. extra: 2812 / 2725,
  28403. bottom: 0 / 2812
  28404. }
  28405. },
  28406. back: {
  28407. height: math.unit(63.4, "meters"),
  28408. weight: math.unit(3.28349e+6, "kilograms"),
  28409. name: "Back",
  28410. image: {
  28411. source: "./media/characters/kirina-violet/back.svg",
  28412. extra: 2812 / 2725,
  28413. bottom: 0 / 2812
  28414. }
  28415. },
  28416. mouth: {
  28417. height: math.unit(4.35, "meters"),
  28418. name: "Mouth",
  28419. image: {
  28420. source: "./media/characters/kirina-violet/mouth.svg"
  28421. }
  28422. },
  28423. paw: {
  28424. height: math.unit(5.6, "meters"),
  28425. name: "Paw",
  28426. image: {
  28427. source: "./media/characters/kirina-violet/paw.svg"
  28428. }
  28429. },
  28430. tail: {
  28431. height: math.unit(18, "meters"),
  28432. name: "Tail",
  28433. image: {
  28434. source: "./media/characters/kirina-violet/tail.svg"
  28435. }
  28436. },
  28437. },
  28438. [
  28439. {
  28440. name: "Macro",
  28441. height: math.unit(63.4, "meters"),
  28442. default: true
  28443. },
  28444. ]
  28445. ))
  28446. characterMakers.push(() => makeCharacter(
  28447. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28448. {
  28449. front: {
  28450. height: math.unit(75, "feet"),
  28451. name: "Front",
  28452. image: {
  28453. source: "./media/characters/cat-gigachu/front.svg",
  28454. extra: 1239/1027,
  28455. bottom: 32/1271
  28456. }
  28457. },
  28458. back: {
  28459. height: math.unit(75, "feet"),
  28460. name: "Back",
  28461. image: {
  28462. source: "./media/characters/cat-gigachu/back.svg",
  28463. extra: 1229/1030,
  28464. bottom: 9/1238
  28465. }
  28466. },
  28467. },
  28468. [
  28469. {
  28470. name: "Dynamax",
  28471. height: math.unit(75, "feet"),
  28472. default: true
  28473. },
  28474. ]
  28475. ))
  28476. characterMakers.push(() => makeCharacter(
  28477. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28478. {
  28479. front: {
  28480. height: math.unit(6, "feet"),
  28481. weight: math.unit(150, "lb"),
  28482. name: "Front",
  28483. image: {
  28484. source: "./media/characters/sfaiyan/front.svg",
  28485. extra: 999 / 978,
  28486. bottom: 5 / 1004
  28487. }
  28488. },
  28489. },
  28490. [
  28491. {
  28492. name: "Normal",
  28493. height: math.unit(1.82, "meters")
  28494. },
  28495. {
  28496. name: "Giant",
  28497. height: math.unit(2.27, "km"),
  28498. default: true
  28499. },
  28500. ]
  28501. ))
  28502. characterMakers.push(() => makeCharacter(
  28503. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28504. {
  28505. front: {
  28506. height: math.unit(179, "cm"),
  28507. weight: math.unit(100, "kg"),
  28508. name: "Front",
  28509. image: {
  28510. source: "./media/characters/raunehkeli/front.svg",
  28511. extra: 1934 / 1926,
  28512. bottom: 0 / 1934
  28513. }
  28514. },
  28515. },
  28516. [
  28517. {
  28518. name: "Normal",
  28519. height: math.unit(179, "cm")
  28520. },
  28521. {
  28522. name: "Maximum",
  28523. height: math.unit(575, "meters"),
  28524. default: true
  28525. },
  28526. ]
  28527. ))
  28528. characterMakers.push(() => makeCharacter(
  28529. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28530. {
  28531. front: {
  28532. height: math.unit(6, "feet"),
  28533. weight: math.unit(150, "lb"),
  28534. name: "Front",
  28535. image: {
  28536. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28537. extra: 2625 / 2518,
  28538. bottom: 60 / 2685
  28539. }
  28540. },
  28541. },
  28542. [
  28543. {
  28544. name: "Normal",
  28545. height: math.unit(6 + 2 / 12, "feet")
  28546. },
  28547. {
  28548. name: "Macro",
  28549. height: math.unit(1180, "feet"),
  28550. default: true
  28551. },
  28552. ]
  28553. ))
  28554. characterMakers.push(() => makeCharacter(
  28555. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28556. {
  28557. front: {
  28558. height: math.unit(5 + 6 / 12, "feet"),
  28559. weight: math.unit(108, "lb"),
  28560. name: "Front",
  28561. image: {
  28562. source: "./media/characters/lilith-zott/front.svg",
  28563. extra: 2510 / 2238,
  28564. bottom: 100 / 2610
  28565. }
  28566. },
  28567. frontDressed: {
  28568. height: math.unit(5 + 6 / 12, "feet"),
  28569. weight: math.unit(108, "lb"),
  28570. name: "Front (Dressed)",
  28571. image: {
  28572. source: "./media/characters/lilith-zott/front-dressed.svg",
  28573. extra: 2510 / 2238,
  28574. bottom: 100 / 2610
  28575. }
  28576. },
  28577. },
  28578. [
  28579. {
  28580. name: "Normal",
  28581. height: math.unit(5 + 6 / 12, "feet")
  28582. },
  28583. {
  28584. name: "Macro",
  28585. height: math.unit(1030, "feet"),
  28586. default: true
  28587. },
  28588. ]
  28589. ))
  28590. characterMakers.push(() => makeCharacter(
  28591. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28592. {
  28593. front: {
  28594. height: math.unit(6, "feet"),
  28595. weight: math.unit(150, "lb"),
  28596. name: "Front",
  28597. image: {
  28598. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28599. extra: 2567 / 2435,
  28600. bottom: 39 / 2606
  28601. }
  28602. },
  28603. frontSuper: {
  28604. height: math.unit(6, "feet"),
  28605. name: "Front (Super)",
  28606. image: {
  28607. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28608. extra: 2567 / 2435,
  28609. bottom: 39 / 2606
  28610. }
  28611. },
  28612. },
  28613. [
  28614. {
  28615. name: "Normal",
  28616. height: math.unit(5 + 10 / 12, "feet")
  28617. },
  28618. {
  28619. name: "Macro",
  28620. height: math.unit(1100, "feet"),
  28621. default: true
  28622. },
  28623. ]
  28624. ))
  28625. characterMakers.push(() => makeCharacter(
  28626. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28627. {
  28628. front: {
  28629. height: math.unit(100, "miles"),
  28630. name: "Front",
  28631. image: {
  28632. source: "./media/characters/sona/front.svg",
  28633. extra: 2433 / 2201,
  28634. bottom: 53 / 2486
  28635. }
  28636. },
  28637. foot: {
  28638. height: math.unit(16.1, "miles"),
  28639. name: "Foot",
  28640. image: {
  28641. source: "./media/characters/sona/foot.svg"
  28642. }
  28643. },
  28644. },
  28645. [
  28646. {
  28647. name: "Macro",
  28648. height: math.unit(100, "miles"),
  28649. default: true
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28655. {
  28656. front: {
  28657. height: math.unit(6, "feet"),
  28658. weight: math.unit(150, "lb"),
  28659. name: "Front",
  28660. image: {
  28661. source: "./media/characters/bailey/front.svg",
  28662. extra: 1778 / 1724,
  28663. bottom: 30 / 1808
  28664. }
  28665. },
  28666. },
  28667. [
  28668. {
  28669. name: "Micro",
  28670. height: math.unit(4, "inches")
  28671. },
  28672. {
  28673. name: "Normal",
  28674. height: math.unit(5 + 5 / 12, "feet"),
  28675. default: true
  28676. },
  28677. {
  28678. name: "Macro",
  28679. height: math.unit(250, "feet")
  28680. },
  28681. {
  28682. name: "Megamacro",
  28683. height: math.unit(100, "miles")
  28684. },
  28685. ]
  28686. ))
  28687. characterMakers.push(() => makeCharacter(
  28688. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28689. {
  28690. front: {
  28691. height: math.unit(5 + 2 / 12, "feet"),
  28692. weight: math.unit(120, "lb"),
  28693. name: "Front",
  28694. image: {
  28695. source: "./media/characters/snaps/front.svg",
  28696. extra: 2370 / 2177,
  28697. bottom: 48 / 2418
  28698. }
  28699. },
  28700. back: {
  28701. height: math.unit(5 + 2 / 12, "feet"),
  28702. weight: math.unit(120, "lb"),
  28703. name: "Back",
  28704. image: {
  28705. source: "./media/characters/snaps/back.svg",
  28706. extra: 2408 / 2258,
  28707. bottom: 15 / 2423
  28708. }
  28709. },
  28710. },
  28711. [
  28712. {
  28713. name: "Micro",
  28714. height: math.unit(9, "inches")
  28715. },
  28716. {
  28717. name: "Normal",
  28718. height: math.unit(5 + 2 / 12, "feet"),
  28719. default: true
  28720. },
  28721. {
  28722. name: "Mini Macro",
  28723. height: math.unit(10, "feet")
  28724. },
  28725. ]
  28726. ))
  28727. characterMakers.push(() => makeCharacter(
  28728. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28729. {
  28730. front: {
  28731. height: math.unit(1.8, "meters"),
  28732. weight: math.unit(85, "kg"),
  28733. name: "Front",
  28734. image: {
  28735. source: "./media/characters/azteck/front.svg",
  28736. extra: 2815 / 2625,
  28737. bottom: 89 / 2904
  28738. }
  28739. },
  28740. back: {
  28741. height: math.unit(1.8, "meters"),
  28742. weight: math.unit(85, "kg"),
  28743. name: "Back",
  28744. image: {
  28745. source: "./media/characters/azteck/back.svg",
  28746. extra: 2856 / 2648,
  28747. bottom: 85 / 2941
  28748. }
  28749. },
  28750. frontDressed: {
  28751. height: math.unit(1.8, "meters"),
  28752. weight: math.unit(85, "kg"),
  28753. name: "Front (Dressed)",
  28754. image: {
  28755. source: "./media/characters/azteck/front-dressed.svg",
  28756. extra: 2147 / 2003,
  28757. bottom: 68 / 2215
  28758. }
  28759. },
  28760. head: {
  28761. height: math.unit(0.47, "meters"),
  28762. weight: math.unit(85, "kg"),
  28763. name: "Head",
  28764. image: {
  28765. source: "./media/characters/azteck/head.svg"
  28766. }
  28767. },
  28768. },
  28769. [
  28770. {
  28771. name: "Bite sized",
  28772. height: math.unit(16, "cm")
  28773. },
  28774. {
  28775. name: "Normal",
  28776. height: math.unit(1.8, "meters"),
  28777. default: true
  28778. },
  28779. ]
  28780. ))
  28781. characterMakers.push(() => makeCharacter(
  28782. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28783. {
  28784. front: {
  28785. height: math.unit(6, "feet"),
  28786. weight: math.unit(150, "lb"),
  28787. name: "Front",
  28788. image: {
  28789. source: "./media/characters/pidge/front.svg",
  28790. extra: 620 / 588,
  28791. bottom: 9 / 629
  28792. }
  28793. },
  28794. back: {
  28795. height: math.unit(6, "feet"),
  28796. weight: math.unit(150, "lb"),
  28797. name: "Back",
  28798. image: {
  28799. source: "./media/characters/pidge/back.svg",
  28800. extra: 620 / 588,
  28801. bottom: 9 / 629
  28802. }
  28803. },
  28804. },
  28805. [
  28806. {
  28807. name: "Macro",
  28808. height: math.unit(1, "mile"),
  28809. default: true
  28810. },
  28811. ]
  28812. ))
  28813. characterMakers.push(() => makeCharacter(
  28814. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28815. {
  28816. front: {
  28817. height: math.unit(6, "feet"),
  28818. weight: math.unit(150, "lb"),
  28819. name: "Front",
  28820. image: {
  28821. source: "./media/characters/en/front.svg",
  28822. extra: 1697 / 1563,
  28823. bottom: 103 / 1800
  28824. }
  28825. },
  28826. back: {
  28827. height: math.unit(6, "feet"),
  28828. weight: math.unit(150, "lb"),
  28829. name: "Back",
  28830. image: {
  28831. source: "./media/characters/en/back.svg",
  28832. extra: 1700 / 1570,
  28833. bottom: 51 / 1751
  28834. }
  28835. },
  28836. frontDressed: {
  28837. height: math.unit(6, "feet"),
  28838. weight: math.unit(150, "lb"),
  28839. name: "Front (Dressed)",
  28840. image: {
  28841. source: "./media/characters/en/front-dressed.svg",
  28842. extra: 1697 / 1563,
  28843. bottom: 103 / 1800
  28844. }
  28845. },
  28846. backDressed: {
  28847. height: math.unit(6, "feet"),
  28848. weight: math.unit(150, "lb"),
  28849. name: "Back (Dressed)",
  28850. image: {
  28851. source: "./media/characters/en/back-dressed.svg",
  28852. extra: 1700 / 1570,
  28853. bottom: 51 / 1751
  28854. }
  28855. },
  28856. },
  28857. [
  28858. {
  28859. name: "Macro",
  28860. height: math.unit(210, "feet"),
  28861. default: true
  28862. },
  28863. ]
  28864. ))
  28865. characterMakers.push(() => makeCharacter(
  28866. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28867. {
  28868. front: {
  28869. height: math.unit(6, "feet"),
  28870. weight: math.unit(150, "lb"),
  28871. name: "Front",
  28872. image: {
  28873. source: "./media/characters/haze-orris/front.svg",
  28874. extra: 3975 / 3525,
  28875. bottom: 137 / 4112
  28876. }
  28877. },
  28878. },
  28879. [
  28880. {
  28881. name: "Micro",
  28882. height: math.unit(150, "mm"),
  28883. default: true
  28884. },
  28885. ]
  28886. ))
  28887. characterMakers.push(() => makeCharacter(
  28888. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28889. {
  28890. front: {
  28891. height: math.unit(6, "feet"),
  28892. weight: math.unit(150, "lb"),
  28893. name: "Front",
  28894. image: {
  28895. source: "./media/characters/casselene-yaro/front.svg",
  28896. extra: 4721 / 4541,
  28897. bottom: 82 / 4803
  28898. }
  28899. },
  28900. back: {
  28901. height: math.unit(6, "feet"),
  28902. weight: math.unit(150, "lb"),
  28903. name: "Back",
  28904. image: {
  28905. source: "./media/characters/casselene-yaro/back.svg",
  28906. extra: 4569 / 4377,
  28907. bottom: 69 / 4638
  28908. }
  28909. },
  28910. frontDressed: {
  28911. height: math.unit(6, "feet"),
  28912. weight: math.unit(150, "lb"),
  28913. name: "Front-dressed",
  28914. image: {
  28915. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28916. extra: 4721 / 4541,
  28917. bottom: 82 / 4803
  28918. }
  28919. },
  28920. },
  28921. [
  28922. {
  28923. name: "Macro",
  28924. height: math.unit(190, "feet"),
  28925. default: true
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28931. {
  28932. front: {
  28933. height: math.unit(6, "feet"),
  28934. weight: math.unit(150, "lb"),
  28935. name: "Front",
  28936. image: {
  28937. source: "./media/characters/myra-rue-delore/front.svg",
  28938. extra: 1340 / 1308,
  28939. bottom: 67 / 1407
  28940. }
  28941. },
  28942. back: {
  28943. height: math.unit(6, "feet"),
  28944. weight: math.unit(150, "lb"),
  28945. name: "Back",
  28946. image: {
  28947. source: "./media/characters/myra-rue-delore/back.svg",
  28948. extra: 1341 / 1310,
  28949. bottom: 40 / 1381
  28950. }
  28951. },
  28952. frontDressed: {
  28953. height: math.unit(6, "feet"),
  28954. weight: math.unit(150, "lb"),
  28955. name: "Front (Dressed)",
  28956. image: {
  28957. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28958. extra: 1340 / 1308,
  28959. bottom: 67 / 1407
  28960. }
  28961. },
  28962. },
  28963. [
  28964. {
  28965. name: "Macro",
  28966. height: math.unit(150, "feet"),
  28967. default: true
  28968. },
  28969. ]
  28970. ))
  28971. characterMakers.push(() => makeCharacter(
  28972. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28973. {
  28974. front: {
  28975. height: math.unit(10, "feet"),
  28976. weight: math.unit(15015, "lb"),
  28977. name: "Front",
  28978. image: {
  28979. source: "./media/characters/fem!plat/front.svg",
  28980. extra: 2799 / 2604,
  28981. bottom: 149 / 2948
  28982. }
  28983. },
  28984. },
  28985. [
  28986. {
  28987. name: "Normal",
  28988. height: math.unit(10, "feet"),
  28989. default: true
  28990. },
  28991. {
  28992. name: "Macro",
  28993. height: math.unit(100, "feet")
  28994. },
  28995. {
  28996. name: "Megamacro",
  28997. height: math.unit(1000, "feet")
  28998. },
  28999. ]
  29000. ))
  29001. characterMakers.push(() => makeCharacter(
  29002. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29003. {
  29004. front: {
  29005. height: math.unit(15 + 5 / 12, "feet"),
  29006. weight: math.unit(4600, "lb"),
  29007. name: "Front",
  29008. image: {
  29009. source: "./media/characters/neapolitan-ananassa/front.svg",
  29010. extra: 2903 / 2736,
  29011. bottom: 0 / 2903
  29012. }
  29013. },
  29014. side: {
  29015. height: math.unit(15 + 5 / 12, "feet"),
  29016. weight: math.unit(4600, "lb"),
  29017. name: "Side",
  29018. image: {
  29019. source: "./media/characters/neapolitan-ananassa/side.svg",
  29020. extra: 2925 / 2719,
  29021. bottom: 0 / 2925
  29022. }
  29023. },
  29024. back: {
  29025. height: math.unit(15 + 5 / 12, "feet"),
  29026. weight: math.unit(4600, "lb"),
  29027. name: "Back",
  29028. image: {
  29029. source: "./media/characters/neapolitan-ananassa/back.svg",
  29030. extra: 2903 / 2736,
  29031. bottom: 0 / 2903
  29032. }
  29033. },
  29034. },
  29035. [
  29036. {
  29037. name: "Normal",
  29038. height: math.unit(15 + 5 / 12, "feet"),
  29039. default: true
  29040. },
  29041. {
  29042. name: "Post-Millenium",
  29043. height: math.unit(35 + 5 / 12, "feet")
  29044. },
  29045. {
  29046. name: "Post-Era",
  29047. height: math.unit(450 + 5 / 12, "feet")
  29048. },
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(300, "meters"),
  29056. weight: math.unit(125000, "tonnes"),
  29057. name: "Front",
  29058. image: {
  29059. source: "./media/characters/pazuzu/front.svg",
  29060. extra: 877 / 794,
  29061. bottom: 47 / 924
  29062. }
  29063. },
  29064. },
  29065. [
  29066. {
  29067. name: "Macro",
  29068. height: math.unit(300, "meters"),
  29069. default: true
  29070. },
  29071. ]
  29072. ))
  29073. characterMakers.push(() => makeCharacter(
  29074. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29075. {
  29076. side: {
  29077. height: math.unit(10 + 7 / 12, "feet"),
  29078. weight: math.unit(2.5, "tons"),
  29079. name: "Side",
  29080. image: {
  29081. source: "./media/characters/aasha/side.svg",
  29082. extra: 1345 / 1245,
  29083. bottom: 111 / 1456
  29084. }
  29085. },
  29086. back: {
  29087. height: math.unit(10 + 7 / 12, "feet"),
  29088. weight: math.unit(2.5, "tons"),
  29089. name: "Back",
  29090. image: {
  29091. source: "./media/characters/aasha/back.svg",
  29092. extra: 1133 / 1057,
  29093. bottom: 257 / 1390
  29094. }
  29095. },
  29096. },
  29097. [
  29098. {
  29099. name: "Normal",
  29100. height: math.unit(10 + 7 / 12, "feet"),
  29101. default: true
  29102. },
  29103. ]
  29104. ))
  29105. characterMakers.push(() => makeCharacter(
  29106. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29107. {
  29108. front: {
  29109. height: math.unit(6 + 3 / 12, "feet"),
  29110. name: "Front",
  29111. image: {
  29112. source: "./media/characters/nevan/front.svg",
  29113. extra: 704 / 704,
  29114. bottom: 28 / 732
  29115. }
  29116. },
  29117. back: {
  29118. height: math.unit(6 + 3 / 12, "feet"),
  29119. name: "Back",
  29120. image: {
  29121. source: "./media/characters/nevan/back.svg",
  29122. extra: 714 / 714,
  29123. bottom: 21 / 735
  29124. }
  29125. },
  29126. frontFlaccid: {
  29127. height: math.unit(6 + 3 / 12, "feet"),
  29128. name: "Front (Flaccid)",
  29129. image: {
  29130. source: "./media/characters/nevan/front-flaccid.svg",
  29131. extra: 704 / 704,
  29132. bottom: 28 / 732
  29133. }
  29134. },
  29135. frontErect: {
  29136. height: math.unit(6 + 3 / 12, "feet"),
  29137. name: "Front (Erect)",
  29138. image: {
  29139. source: "./media/characters/nevan/front-erect.svg",
  29140. extra: 704 / 704,
  29141. bottom: 28 / 732
  29142. }
  29143. },
  29144. backFlaccid: {
  29145. height: math.unit(6 + 3 / 12, "feet"),
  29146. name: "Back (Flaccid)",
  29147. image: {
  29148. source: "./media/characters/nevan/back-flaccid.svg",
  29149. extra: 714 / 714,
  29150. bottom: 21 / 735
  29151. }
  29152. },
  29153. },
  29154. [
  29155. {
  29156. name: "Normal",
  29157. height: math.unit(6 + 3 / 12, "feet"),
  29158. default: true
  29159. },
  29160. ]
  29161. ))
  29162. characterMakers.push(() => makeCharacter(
  29163. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29164. {
  29165. front: {
  29166. height: math.unit(4, "feet"),
  29167. name: "Front",
  29168. image: {
  29169. source: "./media/characters/arhan/front.svg",
  29170. extra: 3368 / 3133,
  29171. bottom: 0 / 3368
  29172. }
  29173. },
  29174. side: {
  29175. height: math.unit(4, "feet"),
  29176. name: "Side",
  29177. image: {
  29178. source: "./media/characters/arhan/side.svg",
  29179. extra: 3347 / 3105,
  29180. bottom: 0 / 3347
  29181. }
  29182. },
  29183. tongue: {
  29184. height: math.unit(1.42, "feet"),
  29185. name: "Tongue",
  29186. image: {
  29187. source: "./media/characters/arhan/tongue.svg"
  29188. }
  29189. },
  29190. head: {
  29191. height: math.unit(0.85, "feet"),
  29192. name: "Head",
  29193. image: {
  29194. source: "./media/characters/arhan/head.svg"
  29195. }
  29196. },
  29197. },
  29198. [
  29199. {
  29200. name: "Normal",
  29201. height: math.unit(4, "feet"),
  29202. default: true
  29203. },
  29204. ]
  29205. ))
  29206. characterMakers.push(() => makeCharacter(
  29207. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29208. {
  29209. front: {
  29210. height: math.unit(5 + 7.5 / 12, "feet"),
  29211. weight: math.unit(120, "lb"),
  29212. name: "Front",
  29213. image: {
  29214. source: "./media/characters/digi-duncan/front.svg",
  29215. extra: 330 / 326,
  29216. bottom: 16 / 346
  29217. }
  29218. },
  29219. side: {
  29220. height: math.unit(5 + 7.5 / 12, "feet"),
  29221. weight: math.unit(120, "lb"),
  29222. name: "Side",
  29223. image: {
  29224. source: "./media/characters/digi-duncan/side.svg",
  29225. extra: 341 / 337,
  29226. bottom: 1 / 342
  29227. }
  29228. },
  29229. back: {
  29230. height: math.unit(5 + 7.5 / 12, "feet"),
  29231. weight: math.unit(120, "lb"),
  29232. name: "Back",
  29233. image: {
  29234. source: "./media/characters/digi-duncan/back.svg",
  29235. extra: 330 / 326,
  29236. bottom: 12 / 342
  29237. }
  29238. },
  29239. },
  29240. [
  29241. {
  29242. name: "Speck",
  29243. height: math.unit(0.25, "mm")
  29244. },
  29245. {
  29246. name: "Micro",
  29247. height: math.unit(5, "mm")
  29248. },
  29249. {
  29250. name: "Tiny",
  29251. height: math.unit(0.5, "inches"),
  29252. default: true
  29253. },
  29254. {
  29255. name: "Human",
  29256. height: math.unit(5 + 7.5 / 12, "feet")
  29257. },
  29258. {
  29259. name: "Minigiant",
  29260. height: math.unit(8 + 5.25, "feet")
  29261. },
  29262. {
  29263. name: "Giant",
  29264. height: math.unit(2000, "feet")
  29265. },
  29266. {
  29267. name: "Mega",
  29268. height: math.unit(371.1, "miles")
  29269. },
  29270. ]
  29271. ))
  29272. characterMakers.push(() => makeCharacter(
  29273. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29274. {
  29275. front: {
  29276. height: math.unit(2, "meters"),
  29277. weight: math.unit(350, "kg"),
  29278. name: "Front",
  29279. image: {
  29280. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29281. extra: 898 / 838,
  29282. bottom: 9 / 907
  29283. }
  29284. },
  29285. },
  29286. [
  29287. {
  29288. name: "Micro",
  29289. height: math.unit(8, "meters")
  29290. },
  29291. {
  29292. name: "Normal",
  29293. height: math.unit(50, "meters"),
  29294. default: true
  29295. },
  29296. {
  29297. name: "Macro",
  29298. height: math.unit(500, "meters")
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29304. {
  29305. front: {
  29306. height: math.unit(6 + 6 / 12, "feet"),
  29307. name: "Front",
  29308. image: {
  29309. source: "./media/characters/khardesh/front.svg",
  29310. extra: 888 / 797,
  29311. bottom: 25 / 913
  29312. }
  29313. },
  29314. },
  29315. [
  29316. {
  29317. name: "Normal",
  29318. height: math.unit(6 + 6 / 12, "feet"),
  29319. default: true
  29320. },
  29321. {
  29322. name: "Normal+",
  29323. height: math.unit(4, "meters")
  29324. },
  29325. {
  29326. name: "Macro",
  29327. height: math.unit(50, "meters")
  29328. },
  29329. {
  29330. name: "Macro+",
  29331. height: math.unit(100, "meters")
  29332. },
  29333. {
  29334. name: "Megamacro",
  29335. height: math.unit(20, "km")
  29336. },
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29341. {
  29342. front: {
  29343. height: math.unit(6, "feet"),
  29344. weight: math.unit(150, "lb"),
  29345. name: "Front",
  29346. image: {
  29347. source: "./media/characters/kosho/front.svg",
  29348. extra: 1847 / 1847,
  29349. bottom: 86 / 1933
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Second-stage micro",
  29356. height: math.unit(0.5, "inches")
  29357. },
  29358. {
  29359. name: "First-stage micro",
  29360. height: math.unit(6, "inches")
  29361. },
  29362. {
  29363. name: "Normal",
  29364. height: math.unit(6, "feet"),
  29365. default: true
  29366. },
  29367. {
  29368. name: "First-stage macro",
  29369. height: math.unit(72, "feet")
  29370. },
  29371. {
  29372. name: "Second-stage macro",
  29373. height: math.unit(864, "feet")
  29374. },
  29375. ]
  29376. ))
  29377. characterMakers.push(() => makeCharacter(
  29378. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29379. {
  29380. normal: {
  29381. height: math.unit(4 + 6 / 12, "feet"),
  29382. name: "Normal",
  29383. image: {
  29384. source: "./media/characters/hydra/normal.svg",
  29385. extra: 2833 / 2634,
  29386. bottom: 68 / 2901
  29387. }
  29388. },
  29389. smol: {
  29390. height: math.unit(0.705, "inches"),
  29391. name: "Smol",
  29392. image: {
  29393. source: "./media/characters/hydra/smol.svg",
  29394. extra: 2715 / 2540,
  29395. bottom: 0 / 2715
  29396. }
  29397. },
  29398. },
  29399. [
  29400. {
  29401. name: "Normal",
  29402. height: math.unit(4 + 6 / 12, "feet"),
  29403. default: true
  29404. }
  29405. ]
  29406. ))
  29407. characterMakers.push(() => makeCharacter(
  29408. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29409. {
  29410. front: {
  29411. height: math.unit(0.6, "cm"),
  29412. name: "Front",
  29413. image: {
  29414. source: "./media/characters/daz/front.svg",
  29415. extra: 1682 / 1164,
  29416. bottom: 42 / 1724
  29417. }
  29418. },
  29419. },
  29420. [
  29421. {
  29422. name: "Normal",
  29423. height: math.unit(0.6, "cm"),
  29424. default: true
  29425. },
  29426. ]
  29427. ))
  29428. characterMakers.push(() => makeCharacter(
  29429. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29430. {
  29431. front: {
  29432. height: math.unit(6, "feet"),
  29433. weight: math.unit(235, "lb"),
  29434. name: "Front",
  29435. image: {
  29436. source: "./media/characters/theo-pangolin/front.svg",
  29437. extra: 1996 / 1969,
  29438. bottom: 115 / 2111
  29439. }
  29440. },
  29441. back: {
  29442. height: math.unit(6, "feet"),
  29443. weight: math.unit(235, "lb"),
  29444. name: "Back",
  29445. image: {
  29446. source: "./media/characters/theo-pangolin/back.svg",
  29447. extra: 1979 / 1979,
  29448. bottom: 40 / 2019
  29449. }
  29450. },
  29451. feral: {
  29452. height: math.unit(2, "feet"),
  29453. weight: math.unit(30, "lb"),
  29454. name: "Feral",
  29455. image: {
  29456. source: "./media/characters/theo-pangolin/feral.svg",
  29457. extra: 803 / 791,
  29458. bottom: 181 / 984
  29459. }
  29460. },
  29461. footFive: {
  29462. height: math.unit(1.43, "feet"),
  29463. name: "Foot (Five Toes)",
  29464. image: {
  29465. source: "./media/characters/theo-pangolin/foot-five.svg"
  29466. }
  29467. },
  29468. footFour: {
  29469. height: math.unit(1.43, "feet"),
  29470. name: "Foot (Four Toes)",
  29471. image: {
  29472. source: "./media/characters/theo-pangolin/foot-four.svg"
  29473. }
  29474. },
  29475. handFour: {
  29476. height: math.unit(0.81, "feet"),
  29477. name: "Hand (Four Fingers)",
  29478. image: {
  29479. source: "./media/characters/theo-pangolin/hand-four.svg"
  29480. }
  29481. },
  29482. handThree: {
  29483. height: math.unit(0.81, "feet"),
  29484. name: "Hand (Three Fingers)",
  29485. image: {
  29486. source: "./media/characters/theo-pangolin/hand-three.svg"
  29487. }
  29488. },
  29489. headFront: {
  29490. height: math.unit(1.37, "feet"),
  29491. name: "Head (Front)",
  29492. image: {
  29493. source: "./media/characters/theo-pangolin/head-front.svg"
  29494. }
  29495. },
  29496. headSide: {
  29497. height: math.unit(1.43, "feet"),
  29498. name: "Head (Side)",
  29499. image: {
  29500. source: "./media/characters/theo-pangolin/head-side.svg"
  29501. }
  29502. },
  29503. tongue: {
  29504. height: math.unit(2.29, "feet"),
  29505. name: "Tongue",
  29506. image: {
  29507. source: "./media/characters/theo-pangolin/tongue.svg"
  29508. }
  29509. },
  29510. },
  29511. [
  29512. {
  29513. name: "Normal",
  29514. height: math.unit(6, "feet")
  29515. },
  29516. {
  29517. name: "Macro",
  29518. height: math.unit(400, "feet"),
  29519. default: true
  29520. },
  29521. ]
  29522. ))
  29523. characterMakers.push(() => makeCharacter(
  29524. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29525. {
  29526. front: {
  29527. height: math.unit(6, "inches"),
  29528. weight: math.unit(0.036, "kg"),
  29529. name: "Front",
  29530. image: {
  29531. source: "./media/characters/renée/front.svg",
  29532. extra: 900 / 886,
  29533. bottom: 8 / 908
  29534. }
  29535. },
  29536. },
  29537. [
  29538. {
  29539. name: "Nano",
  29540. height: math.unit(1, "nm")
  29541. },
  29542. {
  29543. name: "Micro",
  29544. height: math.unit(1, "mm")
  29545. },
  29546. {
  29547. name: "Normal",
  29548. height: math.unit(6, "inches")
  29549. },
  29550. {
  29551. name: "Macro",
  29552. height: math.unit(2000, "feet"),
  29553. default: true
  29554. },
  29555. {
  29556. name: "Megamacro",
  29557. height: math.unit(2, "km")
  29558. },
  29559. {
  29560. name: "Gigamacro",
  29561. height: math.unit(2000, "km")
  29562. },
  29563. {
  29564. name: "Teramacro",
  29565. height: math.unit(250000, "km")
  29566. },
  29567. ]
  29568. ))
  29569. characterMakers.push(() => makeCharacter(
  29570. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29571. {
  29572. front: {
  29573. height: math.unit(4, "meters"),
  29574. weight: math.unit(150, "kg"),
  29575. name: "Front",
  29576. image: {
  29577. source: "./media/characters/caledvwlch/front.svg",
  29578. extra: 1760 / 1551,
  29579. bottom: 28 / 1788
  29580. }
  29581. },
  29582. side: {
  29583. height: math.unit(4, "meters"),
  29584. weight: math.unit(150, "kg"),
  29585. name: "Side",
  29586. image: {
  29587. source: "./media/characters/caledvwlch/side.svg",
  29588. extra: 1605 / 1536,
  29589. bottom: 31 / 1636
  29590. }
  29591. },
  29592. back: {
  29593. height: math.unit(4, "meters"),
  29594. weight: math.unit(150, "kg"),
  29595. name: "Back",
  29596. image: {
  29597. source: "./media/characters/caledvwlch/back.svg",
  29598. extra: 1635 / 1565,
  29599. bottom: 27 / 1662
  29600. }
  29601. },
  29602. },
  29603. [
  29604. {
  29605. name: "\"Incognito\"",
  29606. height: math.unit(4, "meters")
  29607. },
  29608. {
  29609. name: "Small rampage",
  29610. height: math.unit(600, "meters")
  29611. },
  29612. {
  29613. name: "Mega",
  29614. height: math.unit(30, "km")
  29615. },
  29616. {
  29617. name: "Home-size",
  29618. height: math.unit(50, "km"),
  29619. default: true
  29620. },
  29621. {
  29622. name: "Giga",
  29623. height: math.unit(300, "km")
  29624. },
  29625. {
  29626. name: "Lounging",
  29627. height: math.unit(11000, "km")
  29628. },
  29629. {
  29630. name: "Planet snacking",
  29631. height: math.unit(2000000, "km")
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29637. {
  29638. front: {
  29639. height: math.unit(6, "feet"),
  29640. weight: math.unit(215, "lb"),
  29641. name: "Front",
  29642. image: {
  29643. source: "./media/characters/sapphire-svell/front.svg",
  29644. extra: 495 / 455,
  29645. bottom: 20 / 515
  29646. }
  29647. },
  29648. back: {
  29649. height: math.unit(6, "feet"),
  29650. weight: math.unit(216, "lb"),
  29651. name: "Back",
  29652. image: {
  29653. source: "./media/characters/sapphire-svell/back.svg",
  29654. extra: 497 / 477,
  29655. bottom: 7 / 504
  29656. }
  29657. },
  29658. maw: {
  29659. height: math.unit(1.57, "feet"),
  29660. name: "Maw",
  29661. image: {
  29662. source: "./media/characters/sapphire-svell/maw.svg"
  29663. }
  29664. },
  29665. foot: {
  29666. height: math.unit(1.07, "feet"),
  29667. name: "Foot",
  29668. image: {
  29669. source: "./media/characters/sapphire-svell/foot.svg"
  29670. }
  29671. },
  29672. toering: {
  29673. height: math.unit(1.7, "inch"),
  29674. name: "Toering",
  29675. image: {
  29676. source: "./media/characters/sapphire-svell/toering.svg"
  29677. }
  29678. },
  29679. },
  29680. [
  29681. {
  29682. name: "Normal",
  29683. height: math.unit(300, "feet"),
  29684. default: true
  29685. },
  29686. {
  29687. name: "Augmented",
  29688. height: math.unit(1250, "feet")
  29689. },
  29690. {
  29691. name: "Unleashed",
  29692. height: math.unit(3000, "feet")
  29693. },
  29694. ]
  29695. ))
  29696. characterMakers.push(() => makeCharacter(
  29697. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29698. {
  29699. side: {
  29700. height: math.unit(2 + 3 / 12, "feet"),
  29701. weight: math.unit(110, "lb"),
  29702. name: "Side",
  29703. image: {
  29704. source: "./media/characters/glitch-flux/side.svg",
  29705. extra: 997 / 805,
  29706. bottom: 20 / 1017
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "Normal",
  29713. height: math.unit(2 + 3 / 12, "feet"),
  29714. default: true
  29715. },
  29716. ]
  29717. ))
  29718. characterMakers.push(() => makeCharacter(
  29719. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29720. {
  29721. front: {
  29722. height: math.unit(4, "meters"),
  29723. name: "Front",
  29724. image: {
  29725. source: "./media/characters/mid/front.svg",
  29726. extra: 507 / 476,
  29727. bottom: 17 / 524
  29728. }
  29729. },
  29730. back: {
  29731. height: math.unit(4, "meters"),
  29732. name: "Back",
  29733. image: {
  29734. source: "./media/characters/mid/back.svg",
  29735. extra: 519 / 487,
  29736. bottom: 7 / 526
  29737. }
  29738. },
  29739. stuck: {
  29740. height: math.unit(2.2, "meters"),
  29741. name: "Stuck",
  29742. image: {
  29743. source: "./media/characters/mid/stuck.svg",
  29744. extra: 1951 / 1869,
  29745. bottom: 88 / 2039
  29746. }
  29747. }
  29748. },
  29749. [
  29750. {
  29751. name: "Normal",
  29752. height: math.unit(4, "meters"),
  29753. default: true
  29754. },
  29755. {
  29756. name: "Big",
  29757. height: math.unit(10, "meters")
  29758. },
  29759. {
  29760. name: "Macro",
  29761. height: math.unit(800, "meters")
  29762. },
  29763. {
  29764. name: "Megamacro",
  29765. height: math.unit(100, "km")
  29766. },
  29767. {
  29768. name: "Overgrown",
  29769. height: math.unit(1, "parsec")
  29770. },
  29771. ]
  29772. ))
  29773. characterMakers.push(() => makeCharacter(
  29774. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29775. {
  29776. front: {
  29777. height: math.unit(2.5, "meters"),
  29778. weight: math.unit(225, "kg"),
  29779. name: "Front",
  29780. image: {
  29781. source: "./media/characters/iris/front.svg",
  29782. extra: 3348 / 3251,
  29783. bottom: 205 / 3553
  29784. }
  29785. },
  29786. maw: {
  29787. height: math.unit(0.56, "meter"),
  29788. name: "Maw",
  29789. image: {
  29790. source: "./media/characters/iris/maw.svg"
  29791. }
  29792. },
  29793. },
  29794. [
  29795. {
  29796. name: "Mewter cat",
  29797. height: math.unit(1.2, "meters")
  29798. },
  29799. {
  29800. name: "Minimacro",
  29801. height: math.unit(2.5, "meters"),
  29802. default: true
  29803. },
  29804. {
  29805. name: "Macro",
  29806. height: math.unit(180, "meters")
  29807. },
  29808. {
  29809. name: "Megamacro",
  29810. height: math.unit(2746, "meters")
  29811. },
  29812. ]
  29813. ))
  29814. characterMakers.push(() => makeCharacter(
  29815. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29816. {
  29817. front: {
  29818. height: math.unit(6, "feet"),
  29819. weight: math.unit(135, "lb"),
  29820. name: "Front",
  29821. image: {
  29822. source: "./media/characters/axel/front.svg",
  29823. extra: 908 / 908,
  29824. bottom: 58 / 966
  29825. }
  29826. },
  29827. side: {
  29828. height: math.unit(6, "feet"),
  29829. weight: math.unit(135, "lb"),
  29830. name: "Side",
  29831. image: {
  29832. source: "./media/characters/axel/side.svg",
  29833. extra: 958 / 958,
  29834. bottom: 11 / 969
  29835. }
  29836. },
  29837. back: {
  29838. height: math.unit(6, "feet"),
  29839. weight: math.unit(135, "lb"),
  29840. name: "Back",
  29841. image: {
  29842. source: "./media/characters/axel/back.svg",
  29843. extra: 887 / 887,
  29844. bottom: 34 / 921
  29845. }
  29846. },
  29847. head: {
  29848. height: math.unit(1.07, "feet"),
  29849. name: "Head",
  29850. image: {
  29851. source: "./media/characters/axel/head.svg"
  29852. }
  29853. },
  29854. beak: {
  29855. height: math.unit(1.4, "feet"),
  29856. name: "Beak",
  29857. image: {
  29858. source: "./media/characters/axel/beak.svg"
  29859. }
  29860. },
  29861. beakSide: {
  29862. height: math.unit(1.4, "feet"),
  29863. name: "Beak Side",
  29864. image: {
  29865. source: "./media/characters/axel/beak-side.svg"
  29866. }
  29867. },
  29868. sheath: {
  29869. height: math.unit(0.5, "feet"),
  29870. name: "Sheath",
  29871. image: {
  29872. source: "./media/characters/axel/sheath.svg"
  29873. }
  29874. },
  29875. dick: {
  29876. height: math.unit(0.98, "feet"),
  29877. name: "Dick",
  29878. image: {
  29879. source: "./media/characters/axel/dick.svg"
  29880. }
  29881. },
  29882. },
  29883. [
  29884. {
  29885. name: "Macro",
  29886. height: math.unit(68, "meters"),
  29887. default: true
  29888. },
  29889. ]
  29890. ))
  29891. characterMakers.push(() => makeCharacter(
  29892. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29893. {
  29894. front: {
  29895. height: math.unit(3.5, "meters"),
  29896. weight: math.unit(1200, "kg"),
  29897. name: "Front",
  29898. image: {
  29899. source: "./media/characters/joanna/front.svg",
  29900. extra: 1596 / 1488,
  29901. bottom: 29 / 1625
  29902. }
  29903. },
  29904. back: {
  29905. height: math.unit(3.5, "meters"),
  29906. weight: math.unit(1200, "kg"),
  29907. name: "Back",
  29908. image: {
  29909. source: "./media/characters/joanna/back.svg",
  29910. extra: 1594 / 1495,
  29911. bottom: 26 / 1620
  29912. }
  29913. },
  29914. frontShorts: {
  29915. height: math.unit(3.5, "meters"),
  29916. weight: math.unit(1200, "kg"),
  29917. name: "Front (Shorts)",
  29918. image: {
  29919. source: "./media/characters/joanna/front-shorts.svg",
  29920. extra: 1596 / 1488,
  29921. bottom: 29 / 1625
  29922. }
  29923. },
  29924. frontBiker: {
  29925. height: math.unit(3.5, "meters"),
  29926. weight: math.unit(1200, "kg"),
  29927. name: "Front (Biker)",
  29928. image: {
  29929. source: "./media/characters/joanna/front-biker.svg",
  29930. extra: 1596 / 1488,
  29931. bottom: 29 / 1625
  29932. }
  29933. },
  29934. backBiker: {
  29935. height: math.unit(3.5, "meters"),
  29936. weight: math.unit(1200, "kg"),
  29937. name: "Back (Biker)",
  29938. image: {
  29939. source: "./media/characters/joanna/back-biker.svg",
  29940. extra: 1594 / 1495,
  29941. bottom: 88 / 1682
  29942. }
  29943. },
  29944. bikeLeft: {
  29945. height: math.unit(2.4, "meters"),
  29946. weight: math.unit(1600, "kg"),
  29947. name: "Bike (Left)",
  29948. image: {
  29949. source: "./media/characters/joanna/bike-left.svg",
  29950. extra: 720 / 720,
  29951. bottom: 8 / 728
  29952. }
  29953. },
  29954. bikeRight: {
  29955. height: math.unit(2.4, "meters"),
  29956. weight: math.unit(1600, "kg"),
  29957. name: "Bike (Right)",
  29958. image: {
  29959. source: "./media/characters/joanna/bike-right.svg",
  29960. extra: 720 / 720,
  29961. bottom: 8 / 728
  29962. }
  29963. },
  29964. },
  29965. [
  29966. {
  29967. name: "Incognito",
  29968. height: math.unit(3.5, "meters")
  29969. },
  29970. {
  29971. name: "Casual Big",
  29972. height: math.unit(200, "meters")
  29973. },
  29974. {
  29975. name: "Macro",
  29976. height: math.unit(600, "meters")
  29977. },
  29978. {
  29979. name: "Original",
  29980. height: math.unit(20, "km"),
  29981. default: true
  29982. },
  29983. {
  29984. name: "Giga",
  29985. height: math.unit(400, "km")
  29986. },
  29987. {
  29988. name: "Lounging",
  29989. height: math.unit(1500, "km")
  29990. },
  29991. {
  29992. name: "Planetary",
  29993. height: math.unit(200000, "km")
  29994. },
  29995. ]
  29996. ))
  29997. characterMakers.push(() => makeCharacter(
  29998. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29999. {
  30000. front: {
  30001. height: math.unit(6, "feet"),
  30002. weight: math.unit(150, "lb"),
  30003. name: "Front",
  30004. image: {
  30005. source: "./media/characters/hugo-sigil/front.svg",
  30006. extra: 522 / 500,
  30007. bottom: 2 / 524
  30008. }
  30009. },
  30010. back: {
  30011. height: math.unit(6, "feet"),
  30012. weight: math.unit(150, "lb"),
  30013. name: "Back",
  30014. image: {
  30015. source: "./media/characters/hugo-sigil/back.svg",
  30016. extra: 519 / 495,
  30017. bottom: 5 / 524
  30018. }
  30019. },
  30020. maw: {
  30021. height: math.unit(1.4, "feet"),
  30022. weight: math.unit(150, "lb"),
  30023. name: "Maw",
  30024. image: {
  30025. source: "./media/characters/hugo-sigil/maw.svg"
  30026. }
  30027. },
  30028. feet: {
  30029. height: math.unit(1.56, "feet"),
  30030. weight: math.unit(150, "lb"),
  30031. name: "Feet",
  30032. image: {
  30033. source: "./media/characters/hugo-sigil/feet.svg",
  30034. extra: 177 / 177,
  30035. bottom: 12 / 189
  30036. }
  30037. },
  30038. },
  30039. [
  30040. {
  30041. name: "Normal",
  30042. height: math.unit(6, "feet")
  30043. },
  30044. {
  30045. name: "Macro",
  30046. height: math.unit(200, "feet"),
  30047. default: true
  30048. },
  30049. ]
  30050. ))
  30051. characterMakers.push(() => makeCharacter(
  30052. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30053. {
  30054. front: {
  30055. height: math.unit(6, "feet"),
  30056. weight: math.unit(150, "lb"),
  30057. name: "Front",
  30058. image: {
  30059. source: "./media/characters/peri/front.svg",
  30060. extra: 2354 / 2233,
  30061. bottom: 49 / 2403
  30062. }
  30063. },
  30064. },
  30065. [
  30066. {
  30067. name: "Really Small",
  30068. height: math.unit(1, "nm")
  30069. },
  30070. {
  30071. name: "Micro",
  30072. height: math.unit(4, "inches")
  30073. },
  30074. {
  30075. name: "Normal",
  30076. height: math.unit(7, "inches"),
  30077. default: true
  30078. },
  30079. {
  30080. name: "Macro",
  30081. height: math.unit(400, "feet")
  30082. },
  30083. {
  30084. name: "Megamacro",
  30085. height: math.unit(100, "miles")
  30086. },
  30087. ]
  30088. ))
  30089. characterMakers.push(() => makeCharacter(
  30090. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30091. {
  30092. frontSlim: {
  30093. height: math.unit(7, "feet"),
  30094. name: "Front (Slim)",
  30095. image: {
  30096. source: "./media/characters/issilora/front-slim.svg",
  30097. extra: 529 / 449,
  30098. bottom: 53 / 582
  30099. }
  30100. },
  30101. sideSlim: {
  30102. height: math.unit(7, "feet"),
  30103. name: "Side (Slim)",
  30104. image: {
  30105. source: "./media/characters/issilora/side-slim.svg",
  30106. extra: 570 / 480,
  30107. bottom: 30 / 600
  30108. }
  30109. },
  30110. backSlim: {
  30111. height: math.unit(7, "feet"),
  30112. name: "Back (Slim)",
  30113. image: {
  30114. source: "./media/characters/issilora/back-slim.svg",
  30115. extra: 537 / 455,
  30116. bottom: 46 / 583
  30117. }
  30118. },
  30119. frontBuff: {
  30120. height: math.unit(7, "feet"),
  30121. name: "Front (Buff)",
  30122. image: {
  30123. source: "./media/characters/issilora/front-buff.svg",
  30124. extra: 2310 / 2035,
  30125. bottom: 335 / 2645
  30126. }
  30127. },
  30128. head: {
  30129. height: math.unit(1.94, "feet"),
  30130. name: "Head",
  30131. image: {
  30132. source: "./media/characters/issilora/head.svg"
  30133. }
  30134. },
  30135. },
  30136. [
  30137. {
  30138. name: "Minimum",
  30139. height: math.unit(7, "feet")
  30140. },
  30141. {
  30142. name: "Comfortable",
  30143. height: math.unit(17, "feet")
  30144. },
  30145. {
  30146. name: "Fun Size",
  30147. height: math.unit(47, "feet")
  30148. },
  30149. {
  30150. name: "Natural Macro",
  30151. height: math.unit(137, "feet"),
  30152. default: true
  30153. },
  30154. {
  30155. name: "Maximum Kaiju",
  30156. height: math.unit(397, "feet")
  30157. },
  30158. ]
  30159. ))
  30160. characterMakers.push(() => makeCharacter(
  30161. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30162. {
  30163. front: {
  30164. height: math.unit(50 + 9/12, "feet"),
  30165. weight: math.unit(32.8, "tons"),
  30166. name: "Front",
  30167. image: {
  30168. source: "./media/characters/irb'iiritaahn/front.svg",
  30169. extra: 1878/1826,
  30170. bottom: 326/2204
  30171. }
  30172. },
  30173. back: {
  30174. height: math.unit(50 + 9/12, "feet"),
  30175. weight: math.unit(32.8, "tons"),
  30176. name: "Back",
  30177. image: {
  30178. source: "./media/characters/irb'iiritaahn/back.svg",
  30179. extra: 2052/2018,
  30180. bottom: 152/2204
  30181. }
  30182. },
  30183. head: {
  30184. height: math.unit(12.86, "feet"),
  30185. name: "Head",
  30186. image: {
  30187. source: "./media/characters/irb'iiritaahn/head.svg"
  30188. }
  30189. },
  30190. maw: {
  30191. height: math.unit(9.66, "feet"),
  30192. name: "Maw",
  30193. image: {
  30194. source: "./media/characters/irb'iiritaahn/maw.svg"
  30195. }
  30196. },
  30197. frontDick: {
  30198. height: math.unit(8.78461, "feet"),
  30199. name: "Front Dick",
  30200. image: {
  30201. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30202. }
  30203. },
  30204. rearDick: {
  30205. height: math.unit(8.78461, "feet"),
  30206. name: "Rear Dick",
  30207. image: {
  30208. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30209. }
  30210. },
  30211. rearDickUnfolded: {
  30212. height: math.unit(8.78, "feet"),
  30213. name: "Rear Dick (Unfolded)",
  30214. image: {
  30215. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30216. }
  30217. },
  30218. wings: {
  30219. height: math.unit(43, "feet"),
  30220. name: "Wings",
  30221. image: {
  30222. source: "./media/characters/irb'iiritaahn/wings.svg"
  30223. }
  30224. },
  30225. },
  30226. [
  30227. {
  30228. name: "Macro",
  30229. height: math.unit(50 + 9/12, "feet"),
  30230. default: true
  30231. },
  30232. ]
  30233. ))
  30234. characterMakers.push(() => makeCharacter(
  30235. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30236. {
  30237. front: {
  30238. height: math.unit(205, "cm"),
  30239. weight: math.unit(102, "kg"),
  30240. name: "Front",
  30241. image: {
  30242. source: "./media/characters/irbisgreif/front.svg",
  30243. extra: 785/706,
  30244. bottom: 13/798
  30245. }
  30246. },
  30247. back: {
  30248. height: math.unit(205, "cm"),
  30249. weight: math.unit(102, "kg"),
  30250. name: "Back",
  30251. image: {
  30252. source: "./media/characters/irbisgreif/back.svg",
  30253. extra: 713/701,
  30254. bottom: 26/739
  30255. }
  30256. },
  30257. frontDressed: {
  30258. height: math.unit(216, "cm"),
  30259. weight: math.unit(102, "kg"),
  30260. name: "Front-dressed",
  30261. image: {
  30262. source: "./media/characters/irbisgreif/front-dressed.svg",
  30263. extra: 902/776,
  30264. bottom: 14/916
  30265. }
  30266. },
  30267. sideDressed: {
  30268. height: math.unit(195, "cm"),
  30269. weight: math.unit(102, "kg"),
  30270. name: "Side-dressed",
  30271. image: {
  30272. source: "./media/characters/irbisgreif/side-dressed.svg",
  30273. extra: 788/688,
  30274. bottom: 21/809
  30275. }
  30276. },
  30277. backDressed: {
  30278. height: math.unit(216, "cm"),
  30279. weight: math.unit(102, "kg"),
  30280. name: "Back-dressed",
  30281. image: {
  30282. source: "./media/characters/irbisgreif/back-dressed.svg",
  30283. extra: 901/783,
  30284. bottom: 10/911
  30285. }
  30286. },
  30287. dick: {
  30288. height: math.unit(0.49, "feet"),
  30289. name: "Dick",
  30290. image: {
  30291. source: "./media/characters/irbisgreif/dick.svg"
  30292. }
  30293. },
  30294. wingTop: {
  30295. height: math.unit(1.93 , "feet"),
  30296. name: "Wing-top",
  30297. image: {
  30298. source: "./media/characters/irbisgreif/wing-top.svg"
  30299. }
  30300. },
  30301. wingBottom: {
  30302. height: math.unit(1.93 , "feet"),
  30303. name: "Wing-bottom",
  30304. image: {
  30305. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30306. }
  30307. },
  30308. },
  30309. [
  30310. {
  30311. name: "Normal",
  30312. height: math.unit(216, "cm"),
  30313. default: true
  30314. },
  30315. ]
  30316. ))
  30317. characterMakers.push(() => makeCharacter(
  30318. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30319. {
  30320. front: {
  30321. height: math.unit(6, "feet"),
  30322. weight: math.unit(150, "lb"),
  30323. name: "Front",
  30324. image: {
  30325. source: "./media/characters/pride/front.svg",
  30326. extra: 1299/1230,
  30327. bottom: 18/1317
  30328. }
  30329. },
  30330. },
  30331. [
  30332. {
  30333. name: "Normal",
  30334. height: math.unit(7, "feet")
  30335. },
  30336. {
  30337. name: "Mini-macro",
  30338. height: math.unit(11, "feet")
  30339. },
  30340. {
  30341. name: "Macro",
  30342. height: math.unit(15, "meters"),
  30343. default: true
  30344. },
  30345. {
  30346. name: "Macro+",
  30347. height: math.unit(40, "meters")
  30348. },
  30349. ]
  30350. ))
  30351. characterMakers.push(() => makeCharacter(
  30352. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30353. {
  30354. front: {
  30355. height: math.unit(4 + 2 / 12, "feet"),
  30356. weight: math.unit(95, "lb"),
  30357. name: "Front",
  30358. image: {
  30359. source: "./media/characters/vaelophis-nyx/front.svg",
  30360. extra: 2532/2330,
  30361. bottom: 0/2532
  30362. }
  30363. },
  30364. back: {
  30365. height: math.unit(4 + 2 / 12, "feet"),
  30366. weight: math.unit(95, "lb"),
  30367. name: "Back",
  30368. image: {
  30369. source: "./media/characters/vaelophis-nyx/back.svg",
  30370. extra: 2484/2361,
  30371. bottom: 0/2484
  30372. }
  30373. },
  30374. feralSide: {
  30375. height: math.unit(2 + 1/12, "feet"),
  30376. weight: math.unit(20, "lb"),
  30377. name: "Feral (Side)",
  30378. image: {
  30379. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30380. extra: 1721/1581,
  30381. bottom: 70/1791
  30382. }
  30383. },
  30384. feralLazing: {
  30385. height: math.unit(1.08, "feet"),
  30386. weight: math.unit(20, "lb"),
  30387. name: "Feral (Lazing)",
  30388. image: {
  30389. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30390. extra: 822/822,
  30391. bottom: 248/1070
  30392. }
  30393. },
  30394. ear: {
  30395. height: math.unit(0.416, "feet"),
  30396. name: "Ear",
  30397. image: {
  30398. source: "./media/characters/vaelophis-nyx/ear.svg"
  30399. }
  30400. },
  30401. eye: {
  30402. height: math.unit(0.0748, "feet"),
  30403. name: "Eye",
  30404. image: {
  30405. source: "./media/characters/vaelophis-nyx/eye.svg"
  30406. }
  30407. },
  30408. mouth: {
  30409. height: math.unit(0.378, "feet"),
  30410. name: "Mouth",
  30411. image: {
  30412. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30413. }
  30414. },
  30415. spade: {
  30416. height: math.unit(0.55, "feet"),
  30417. name: "Spade",
  30418. image: {
  30419. source: "./media/characters/vaelophis-nyx/spade.svg"
  30420. }
  30421. },
  30422. },
  30423. [
  30424. {
  30425. name: "Normal",
  30426. height: math.unit(4 + 2/12, "feet"),
  30427. default: true
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30433. {
  30434. front: {
  30435. height: math.unit(7, "feet"),
  30436. weight: math.unit(231, "lb"),
  30437. name: "Front",
  30438. image: {
  30439. source: "./media/characters/flux/front.svg",
  30440. extra: 919/871,
  30441. bottom: 0/919
  30442. }
  30443. },
  30444. back: {
  30445. height: math.unit(7, "feet"),
  30446. weight: math.unit(231, "lb"),
  30447. name: "Back",
  30448. image: {
  30449. source: "./media/characters/flux/back.svg",
  30450. extra: 1040/992,
  30451. bottom: 0/1040
  30452. }
  30453. },
  30454. frontDressed: {
  30455. height: math.unit(7, "feet"),
  30456. weight: math.unit(231, "lb"),
  30457. name: "Front (Dressed)",
  30458. image: {
  30459. source: "./media/characters/flux/front-dressed.svg",
  30460. extra: 919/871,
  30461. bottom: 0/919
  30462. }
  30463. },
  30464. feralSide: {
  30465. height: math.unit(5, "feet"),
  30466. weight: math.unit(150, "lb"),
  30467. name: "Feral (Side)",
  30468. image: {
  30469. source: "./media/characters/flux/feral-side.svg",
  30470. extra: 598/528,
  30471. bottom: 28/626
  30472. }
  30473. },
  30474. head: {
  30475. height: math.unit(1.585, "feet"),
  30476. name: "Head",
  30477. image: {
  30478. source: "./media/characters/flux/head.svg"
  30479. }
  30480. },
  30481. headSide: {
  30482. height: math.unit(1.74, "feet"),
  30483. name: "Head (Side)",
  30484. image: {
  30485. source: "./media/characters/flux/head-side.svg"
  30486. }
  30487. },
  30488. headSideFire: {
  30489. height: math.unit(1.76, "feet"),
  30490. name: "Head (Side, Fire)",
  30491. image: {
  30492. source: "./media/characters/flux/head-side-fire.svg"
  30493. }
  30494. },
  30495. },
  30496. [
  30497. {
  30498. name: "Normal",
  30499. height: math.unit(7, "feet"),
  30500. default: true
  30501. },
  30502. ]
  30503. ))
  30504. characterMakers.push(() => makeCharacter(
  30505. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30506. {
  30507. front: {
  30508. height: math.unit(9, "feet"),
  30509. weight: math.unit(1012, "lb"),
  30510. name: "Front",
  30511. image: {
  30512. source: "./media/characters/ulfra-lupae/front.svg",
  30513. extra: 1083/1011,
  30514. bottom: 67/1150
  30515. }
  30516. },
  30517. },
  30518. [
  30519. {
  30520. name: "Micro",
  30521. height: math.unit(6, "inches")
  30522. },
  30523. {
  30524. name: "Socializing",
  30525. height: math.unit(6 + 5/12, "feet")
  30526. },
  30527. {
  30528. name: "Normal",
  30529. height: math.unit(9, "feet"),
  30530. default: true
  30531. },
  30532. {
  30533. name: "Macro",
  30534. height: math.unit(150, "feet")
  30535. },
  30536. ]
  30537. ))
  30538. characterMakers.push(() => makeCharacter(
  30539. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30540. {
  30541. front: {
  30542. height: math.unit(5 + 2/12, "feet"),
  30543. weight: math.unit(120, "lb"),
  30544. name: "Front",
  30545. image: {
  30546. source: "./media/characters/timber/front.svg",
  30547. extra: 2814/2705,
  30548. bottom: 181/2995
  30549. }
  30550. },
  30551. },
  30552. [
  30553. {
  30554. name: "Normal",
  30555. height: math.unit(5 + 2/12, "feet"),
  30556. default: true
  30557. },
  30558. ]
  30559. ))
  30560. characterMakers.push(() => makeCharacter(
  30561. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30562. {
  30563. front: {
  30564. height: math.unit(5 + 7/12, "feet"),
  30565. weight: math.unit(220, "lb"),
  30566. name: "Front",
  30567. image: {
  30568. source: "./media/characters/nicki/front.svg",
  30569. extra: 453/419,
  30570. bottom: 7/460
  30571. }
  30572. },
  30573. frontAlt: {
  30574. height: math.unit(5 + 7/12, "feet"),
  30575. weight: math.unit(220, "lb"),
  30576. name: "Front-alt",
  30577. image: {
  30578. source: "./media/characters/nicki/front-alt.svg",
  30579. extra: 435/411,
  30580. bottom: 12/447
  30581. }
  30582. },
  30583. back: {
  30584. height: math.unit(5 + 7/12, "feet"),
  30585. weight: math.unit(220, "lb"),
  30586. name: "Back",
  30587. image: {
  30588. source: "./media/characters/nicki/back.svg",
  30589. extra: 440/413,
  30590. bottom: 19/459
  30591. }
  30592. },
  30593. taur: {
  30594. height: math.unit(7 + 6/12, "feet"),
  30595. weight: math.unit(700, "lb"),
  30596. name: "Taur",
  30597. image: {
  30598. source: "./media/characters/nicki/taur.svg",
  30599. extra: 975/773,
  30600. bottom: 0/975
  30601. }
  30602. },
  30603. frontNsfw: {
  30604. height: math.unit(5 + 7/12, "feet"),
  30605. weight: math.unit(220, "lb"),
  30606. name: "Front (NSFW)",
  30607. image: {
  30608. source: "./media/characters/nicki/front-nsfw.svg",
  30609. extra: 453/419,
  30610. bottom: 7/460
  30611. }
  30612. },
  30613. frontNsfwAlt: {
  30614. height: math.unit(5 + 7/12, "feet"),
  30615. weight: math.unit(220, "lb"),
  30616. name: "Front (Alt, NSFW)",
  30617. image: {
  30618. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30619. extra: 435/411,
  30620. bottom: 12/447
  30621. }
  30622. },
  30623. backNsfw: {
  30624. height: math.unit(5 + 7/12, "feet"),
  30625. weight: math.unit(220, "lb"),
  30626. name: "Back (NSFW)",
  30627. image: {
  30628. source: "./media/characters/nicki/back-nsfw.svg",
  30629. extra: 440/413,
  30630. bottom: 19/459
  30631. }
  30632. },
  30633. head: {
  30634. height: math.unit(2.1, "feet"),
  30635. name: "Head",
  30636. image: {
  30637. source: "./media/characters/nicki/head.svg"
  30638. }
  30639. },
  30640. paw: {
  30641. height: math.unit(1.88, "feet"),
  30642. name: "Paw",
  30643. image: {
  30644. source: "./media/characters/nicki/paw.svg"
  30645. }
  30646. },
  30647. },
  30648. [
  30649. {
  30650. name: "Normal",
  30651. height: math.unit(5 + 7/12, "feet"),
  30652. default: true
  30653. },
  30654. ]
  30655. ))
  30656. characterMakers.push(() => makeCharacter(
  30657. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30658. {
  30659. front: {
  30660. height: math.unit(7 + 10/12, "feet"),
  30661. weight: math.unit(3.5, "tons"),
  30662. name: "Front",
  30663. image: {
  30664. source: "./media/characters/lee/front.svg",
  30665. extra: 1773/1615,
  30666. bottom: 86/1859
  30667. }
  30668. },
  30669. hand: {
  30670. height: math.unit(1.78, "feet"),
  30671. name: "Hand",
  30672. image: {
  30673. source: "./media/characters/lee/hand.svg"
  30674. }
  30675. },
  30676. maw: {
  30677. height: math.unit(1.18, "feet"),
  30678. name: "Maw",
  30679. image: {
  30680. source: "./media/characters/lee/maw.svg"
  30681. }
  30682. },
  30683. },
  30684. [
  30685. {
  30686. name: "Normal",
  30687. height: math.unit(7 + 10/12, "feet"),
  30688. default: true
  30689. },
  30690. ]
  30691. ))
  30692. characterMakers.push(() => makeCharacter(
  30693. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30694. {
  30695. front: {
  30696. height: math.unit(9, "feet"),
  30697. name: "Front",
  30698. image: {
  30699. source: "./media/characters/guti/front.svg",
  30700. extra: 4551/4355,
  30701. bottom: 123/4674
  30702. }
  30703. },
  30704. tongue: {
  30705. height: math.unit(1, "feet"),
  30706. name: "Tongue",
  30707. image: {
  30708. source: "./media/characters/guti/tongue.svg"
  30709. }
  30710. },
  30711. paw: {
  30712. height: math.unit(1.18, "feet"),
  30713. name: "Paw",
  30714. image: {
  30715. source: "./media/characters/guti/paw.svg"
  30716. }
  30717. },
  30718. },
  30719. [
  30720. {
  30721. name: "Normal",
  30722. height: math.unit(9, "feet"),
  30723. default: true
  30724. },
  30725. ]
  30726. ))
  30727. characterMakers.push(() => makeCharacter(
  30728. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30729. {
  30730. side: {
  30731. height: math.unit(5, "meters"),
  30732. name: "Side",
  30733. image: {
  30734. source: "./media/characters/vesper/side.svg",
  30735. extra: 1605/1518,
  30736. bottom: 0/1605
  30737. }
  30738. },
  30739. },
  30740. [
  30741. {
  30742. name: "Small",
  30743. height: math.unit(5, "meters")
  30744. },
  30745. {
  30746. name: "Sage",
  30747. height: math.unit(100, "meters"),
  30748. default: true
  30749. },
  30750. {
  30751. name: "Fun Size",
  30752. height: math.unit(600, "meters")
  30753. },
  30754. {
  30755. name: "Goddess",
  30756. height: math.unit(20000, "km")
  30757. },
  30758. {
  30759. name: "Maximum",
  30760. height: math.unit(5, "galaxies")
  30761. },
  30762. ]
  30763. ))
  30764. characterMakers.push(() => makeCharacter(
  30765. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30766. {
  30767. front: {
  30768. height: math.unit(6 + 3/12, "feet"),
  30769. weight: math.unit(190, "lb"),
  30770. name: "Front",
  30771. image: {
  30772. source: "./media/characters/gawain/front.svg",
  30773. extra: 2222/2139,
  30774. bottom: 90/2312
  30775. }
  30776. },
  30777. back: {
  30778. height: math.unit(6 + 3/12, "feet"),
  30779. weight: math.unit(190, "lb"),
  30780. name: "Back",
  30781. image: {
  30782. source: "./media/characters/gawain/back.svg",
  30783. extra: 2199/2111,
  30784. bottom: 73/2272
  30785. }
  30786. },
  30787. },
  30788. [
  30789. {
  30790. name: "Normal",
  30791. height: math.unit(6 + 3/12, "feet"),
  30792. default: true
  30793. },
  30794. ]
  30795. ))
  30796. characterMakers.push(() => makeCharacter(
  30797. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30798. {
  30799. side: {
  30800. height: math.unit(3.5, "meters"),
  30801. weight: math.unit(16000, "lb"),
  30802. name: "Side",
  30803. image: {
  30804. source: "./media/characters/dascalti/side.svg",
  30805. extra: 392/273,
  30806. bottom: 47/439
  30807. }
  30808. },
  30809. breath: {
  30810. height: math.unit(7.4, "feet"),
  30811. name: "Breath",
  30812. image: {
  30813. source: "./media/characters/dascalti/breath.svg"
  30814. }
  30815. },
  30816. fed: {
  30817. height: math.unit(3.6, "meters"),
  30818. weight: math.unit(16000, "lb"),
  30819. name: "Fed",
  30820. image: {
  30821. source: "./media/characters/dascalti/fed.svg",
  30822. extra: 1419/820,
  30823. bottom: 95/1514
  30824. }
  30825. },
  30826. },
  30827. [
  30828. {
  30829. name: "Normal",
  30830. height: math.unit(3.5, "meters"),
  30831. default: true
  30832. },
  30833. ]
  30834. ))
  30835. characterMakers.push(() => makeCharacter(
  30836. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30837. {
  30838. front: {
  30839. height: math.unit(3 + 5/12, "feet"),
  30840. name: "Front",
  30841. image: {
  30842. source: "./media/characters/mauve/front.svg",
  30843. extra: 1126/1033,
  30844. bottom: 65/1191
  30845. }
  30846. },
  30847. side: {
  30848. height: math.unit(3 + 5/12, "feet"),
  30849. name: "Side",
  30850. image: {
  30851. source: "./media/characters/mauve/side.svg",
  30852. extra: 1089/1001,
  30853. bottom: 29/1118
  30854. }
  30855. },
  30856. back: {
  30857. height: math.unit(3 + 5/12, "feet"),
  30858. name: "Back",
  30859. image: {
  30860. source: "./media/characters/mauve/back.svg",
  30861. extra: 1173/1053,
  30862. bottom: 109/1282
  30863. }
  30864. },
  30865. },
  30866. [
  30867. {
  30868. name: "Normal",
  30869. height: math.unit(3 + 5/12, "feet"),
  30870. default: true
  30871. },
  30872. ]
  30873. ))
  30874. characterMakers.push(() => makeCharacter(
  30875. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30876. {
  30877. front: {
  30878. height: math.unit(6 + 3/12, "feet"),
  30879. weight: math.unit(430, "lb"),
  30880. name: "Front",
  30881. image: {
  30882. source: "./media/characters/carlos/front.svg",
  30883. extra: 1964/1913,
  30884. bottom: 70/2034
  30885. }
  30886. },
  30887. },
  30888. [
  30889. {
  30890. name: "Normal",
  30891. height: math.unit(6 + 3/12, "feet"),
  30892. default: true
  30893. },
  30894. ]
  30895. ))
  30896. characterMakers.push(() => makeCharacter(
  30897. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30898. {
  30899. back: {
  30900. height: math.unit(5 + 10/12, "feet"),
  30901. weight: math.unit(200, "lb"),
  30902. name: "Back",
  30903. image: {
  30904. source: "./media/characters/jax/back.svg",
  30905. extra: 764/739,
  30906. bottom: 25/789
  30907. }
  30908. },
  30909. },
  30910. [
  30911. {
  30912. name: "Normal",
  30913. height: math.unit(5 + 10/12, "feet"),
  30914. default: true
  30915. },
  30916. ]
  30917. ))
  30918. characterMakers.push(() => makeCharacter(
  30919. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30920. {
  30921. front: {
  30922. height: math.unit(8, "feet"),
  30923. weight: math.unit(250, "lb"),
  30924. name: "Front",
  30925. image: {
  30926. source: "./media/characters/eikthynir/front.svg",
  30927. extra: 1332/1166,
  30928. bottom: 82/1414
  30929. }
  30930. },
  30931. back: {
  30932. height: math.unit(8, "feet"),
  30933. weight: math.unit(250, "lb"),
  30934. name: "Back",
  30935. image: {
  30936. source: "./media/characters/eikthynir/back.svg",
  30937. extra: 1342/1190,
  30938. bottom: 19/1361
  30939. }
  30940. },
  30941. dick: {
  30942. height: math.unit(2.35, "feet"),
  30943. name: "Dick",
  30944. image: {
  30945. source: "./media/characters/eikthynir/dick.svg"
  30946. }
  30947. },
  30948. },
  30949. [
  30950. {
  30951. name: "Normal",
  30952. height: math.unit(8, "feet"),
  30953. default: true
  30954. },
  30955. ]
  30956. ))
  30957. characterMakers.push(() => makeCharacter(
  30958. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30959. {
  30960. front: {
  30961. height: math.unit(99, "meters"),
  30962. weight: math.unit(13000, "tons"),
  30963. name: "Front",
  30964. image: {
  30965. source: "./media/characters/zlmos/front.svg",
  30966. extra: 2202/1992,
  30967. bottom: 315/2517
  30968. }
  30969. },
  30970. },
  30971. [
  30972. {
  30973. name: "Macro",
  30974. height: math.unit(99, "meters"),
  30975. default: true
  30976. },
  30977. ]
  30978. ))
  30979. characterMakers.push(() => makeCharacter(
  30980. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30981. {
  30982. front: {
  30983. height: math.unit(6 + 5/12, "feet"),
  30984. name: "Front",
  30985. image: {
  30986. source: "./media/characters/purri/front.svg",
  30987. extra: 1698/1610,
  30988. bottom: 32/1730
  30989. }
  30990. },
  30991. frontAlt: {
  30992. height: math.unit(6 + 5/12, "feet"),
  30993. name: "Front (Alt)",
  30994. image: {
  30995. source: "./media/characters/purri/front-alt.svg",
  30996. extra: 450/420,
  30997. bottom: 26/476
  30998. }
  30999. },
  31000. boots: {
  31001. height: math.unit(5.5, "feet"),
  31002. name: "Boots",
  31003. image: {
  31004. source: "./media/characters/purri/boots.svg",
  31005. extra: 905/853,
  31006. bottom: 18/923
  31007. }
  31008. },
  31009. lying: {
  31010. height: math.unit(2, "feet"),
  31011. name: "Lying",
  31012. image: {
  31013. source: "./media/characters/purri/lying.svg",
  31014. extra: 940/843,
  31015. bottom: 146/1086
  31016. }
  31017. },
  31018. devious: {
  31019. height: math.unit(1.77, "feet"),
  31020. name: "Devious",
  31021. image: {
  31022. source: "./media/characters/purri/devious.svg",
  31023. extra: 1440/1155,
  31024. bottom: 147/1587
  31025. }
  31026. },
  31027. bean: {
  31028. height: math.unit(1.94, "feet"),
  31029. name: "Bean",
  31030. image: {
  31031. source: "./media/characters/purri/bean.svg"
  31032. }
  31033. },
  31034. },
  31035. [
  31036. {
  31037. name: "Micro",
  31038. height: math.unit(1, "mm")
  31039. },
  31040. {
  31041. name: "Normal",
  31042. height: math.unit(6 + 5/12, "feet"),
  31043. default: true
  31044. },
  31045. {
  31046. name: "Macro :3c",
  31047. height: math.unit(2, "miles")
  31048. },
  31049. ]
  31050. ))
  31051. characterMakers.push(() => makeCharacter(
  31052. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31053. {
  31054. front: {
  31055. height: math.unit(6 + 2/12, "feet"),
  31056. weight: math.unit(250, "lb"),
  31057. name: "Front",
  31058. image: {
  31059. source: "./media/characters/moonlight/front.svg",
  31060. extra: 1044/908,
  31061. bottom: 56/1100
  31062. }
  31063. },
  31064. feral: {
  31065. height: math.unit(3 + 1/12, "feet"),
  31066. weight: math.unit(50, "kg"),
  31067. name: "Feral",
  31068. image: {
  31069. source: "./media/characters/moonlight/feral.svg",
  31070. extra: 3705/2791,
  31071. bottom: 145/3850
  31072. }
  31073. },
  31074. paw: {
  31075. height: math.unit(1, "feet"),
  31076. name: "Paw",
  31077. image: {
  31078. source: "./media/characters/moonlight/paw.svg"
  31079. }
  31080. },
  31081. paws: {
  31082. height: math.unit(0.98, "feet"),
  31083. name: "Paws",
  31084. image: {
  31085. source: "./media/characters/moonlight/paws.svg",
  31086. extra: 939/939,
  31087. bottom: 50/989
  31088. }
  31089. },
  31090. mouth: {
  31091. height: math.unit(0.48, "feet"),
  31092. name: "Mouth",
  31093. image: {
  31094. source: "./media/characters/moonlight/mouth.svg"
  31095. }
  31096. },
  31097. dick: {
  31098. height: math.unit(1.46, "feet"),
  31099. name: "Dick",
  31100. image: {
  31101. source: "./media/characters/moonlight/dick.svg"
  31102. }
  31103. },
  31104. },
  31105. [
  31106. {
  31107. name: "Normal",
  31108. height: math.unit(6 + 2/12, "feet"),
  31109. default: true
  31110. },
  31111. {
  31112. name: "Macro",
  31113. height: math.unit(300, "feet")
  31114. },
  31115. {
  31116. name: "Macro+",
  31117. height: math.unit(1, "mile")
  31118. },
  31119. {
  31120. name: "Mt. Moon",
  31121. height: math.unit(5, "miles")
  31122. },
  31123. {
  31124. name: "Megamacro",
  31125. height: math.unit(15, "miles")
  31126. },
  31127. ]
  31128. ))
  31129. characterMakers.push(() => makeCharacter(
  31130. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31131. {
  31132. back: {
  31133. height: math.unit(6, "feet"),
  31134. weight: math.unit(150, "lb"),
  31135. name: "Back",
  31136. image: {
  31137. source: "./media/characters/sylen/back.svg",
  31138. extra: 1335/1273,
  31139. bottom: 107/1442
  31140. }
  31141. },
  31142. },
  31143. [
  31144. {
  31145. name: "Normal",
  31146. height: math.unit(5 + 5/12, "feet")
  31147. },
  31148. {
  31149. name: "Megamacro",
  31150. height: math.unit(3, "miles"),
  31151. default: true
  31152. },
  31153. ]
  31154. ))
  31155. characterMakers.push(() => makeCharacter(
  31156. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31157. {
  31158. front: {
  31159. height: math.unit(6, "feet"),
  31160. weight: math.unit(190, "lb"),
  31161. name: "Front",
  31162. image: {
  31163. source: "./media/characters/huttser/front.svg",
  31164. extra: 1152/1058,
  31165. bottom: 23/1175
  31166. }
  31167. },
  31168. side: {
  31169. height: math.unit(6, "feet"),
  31170. weight: math.unit(190, "lb"),
  31171. name: "Side",
  31172. image: {
  31173. source: "./media/characters/huttser/side.svg",
  31174. extra: 1174/1065,
  31175. bottom: 18/1192
  31176. }
  31177. },
  31178. back: {
  31179. height: math.unit(6, "feet"),
  31180. weight: math.unit(190, "lb"),
  31181. name: "Back",
  31182. image: {
  31183. source: "./media/characters/huttser/back.svg",
  31184. extra: 1158/1056,
  31185. bottom: 12/1170
  31186. }
  31187. },
  31188. },
  31189. [
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31194. {
  31195. side: {
  31196. height: math.unit(12 + 9/12, "feet"),
  31197. weight: math.unit(15000, "lb"),
  31198. name: "Side",
  31199. image: {
  31200. source: "./media/characters/faan/side.svg",
  31201. extra: 2747/2697,
  31202. bottom: 0/2747
  31203. }
  31204. },
  31205. front: {
  31206. height: math.unit(12 + 9/12, "feet"),
  31207. weight: math.unit(15000, "lb"),
  31208. name: "Front",
  31209. image: {
  31210. source: "./media/characters/faan/front.svg",
  31211. extra: 607/571,
  31212. bottom: 24/631
  31213. }
  31214. },
  31215. head: {
  31216. height: math.unit(2.85, "feet"),
  31217. name: "Head",
  31218. image: {
  31219. source: "./media/characters/faan/head.svg"
  31220. }
  31221. },
  31222. headAlt: {
  31223. height: math.unit(3.13, "feet"),
  31224. name: "Head-alt",
  31225. image: {
  31226. source: "./media/characters/faan/head-alt.svg"
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Normal",
  31233. height: math.unit(12 + 9/12, "feet"),
  31234. default: true
  31235. },
  31236. ]
  31237. ))
  31238. characterMakers.push(() => makeCharacter(
  31239. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31240. {
  31241. front: {
  31242. height: math.unit(6, "feet"),
  31243. weight: math.unit(300, "lb"),
  31244. name: "Front",
  31245. image: {
  31246. source: "./media/characters/tanio/front.svg",
  31247. extra: 711/673,
  31248. bottom: 25/736
  31249. }
  31250. },
  31251. },
  31252. [
  31253. {
  31254. name: "Normal",
  31255. height: math.unit(6, "feet"),
  31256. default: true
  31257. },
  31258. ]
  31259. ))
  31260. characterMakers.push(() => makeCharacter(
  31261. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31262. {
  31263. front: {
  31264. height: math.unit(3, "inches"),
  31265. name: "Front",
  31266. image: {
  31267. source: "./media/characters/noboru/front.svg",
  31268. extra: 1039/932,
  31269. bottom: 18/1057
  31270. }
  31271. },
  31272. },
  31273. [
  31274. {
  31275. name: "Micro",
  31276. height: math.unit(3, "inches"),
  31277. default: true
  31278. },
  31279. ]
  31280. ))
  31281. characterMakers.push(() => makeCharacter(
  31282. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31283. {
  31284. front: {
  31285. height: math.unit(1.85, "meters"),
  31286. weight: math.unit(80, "kg"),
  31287. name: "Front",
  31288. image: {
  31289. source: "./media/characters/daniel-barrett/front.svg",
  31290. extra: 355/337,
  31291. bottom: 9/364
  31292. }
  31293. },
  31294. },
  31295. [
  31296. {
  31297. name: "Pico",
  31298. height: math.unit(0.0433, "mm")
  31299. },
  31300. {
  31301. name: "Nano",
  31302. height: math.unit(1.5, "mm")
  31303. },
  31304. {
  31305. name: "Micro",
  31306. height: math.unit(5.3, "cm"),
  31307. default: true
  31308. },
  31309. {
  31310. name: "Normal",
  31311. height: math.unit(1.85, "meters")
  31312. },
  31313. {
  31314. name: "Macro",
  31315. height: math.unit(64.7, "meters")
  31316. },
  31317. {
  31318. name: "Megamacro",
  31319. height: math.unit(2.26, "km")
  31320. },
  31321. {
  31322. name: "Gigamacro",
  31323. height: math.unit(79, "km")
  31324. },
  31325. {
  31326. name: "Teramacro",
  31327. height: math.unit(2765, "km")
  31328. },
  31329. {
  31330. name: "Petamacro",
  31331. height: math.unit(96678, "km")
  31332. },
  31333. ]
  31334. ))
  31335. characterMakers.push(() => makeCharacter(
  31336. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31337. {
  31338. front: {
  31339. height: math.unit(30, "meters"),
  31340. weight: math.unit(400, "tons"),
  31341. name: "Front",
  31342. image: {
  31343. source: "./media/characters/zeel/front.svg",
  31344. extra: 2599/2599,
  31345. bottom: 226/2825
  31346. }
  31347. },
  31348. },
  31349. [
  31350. {
  31351. name: "Macro",
  31352. height: math.unit(30, "meters"),
  31353. default: true
  31354. },
  31355. ]
  31356. ))
  31357. characterMakers.push(() => makeCharacter(
  31358. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31359. {
  31360. front: {
  31361. height: math.unit(6 + 7/12, "feet"),
  31362. weight: math.unit(210, "lb"),
  31363. name: "Front",
  31364. image: {
  31365. source: "./media/characters/tarn/front.svg",
  31366. extra: 3517/3220,
  31367. bottom: 91/3608
  31368. }
  31369. },
  31370. back: {
  31371. height: math.unit(6 + 7/12, "feet"),
  31372. weight: math.unit(210, "lb"),
  31373. name: "Back",
  31374. image: {
  31375. source: "./media/characters/tarn/back.svg",
  31376. extra: 3566/3241,
  31377. bottom: 34/3600
  31378. }
  31379. },
  31380. dick: {
  31381. height: math.unit(1.65, "feet"),
  31382. name: "Dick",
  31383. image: {
  31384. source: "./media/characters/tarn/dick.svg"
  31385. }
  31386. },
  31387. paw: {
  31388. height: math.unit(1.80, "feet"),
  31389. name: "Paw",
  31390. image: {
  31391. source: "./media/characters/tarn/paw.svg"
  31392. }
  31393. },
  31394. tongue: {
  31395. height: math.unit(0.97, "feet"),
  31396. name: "Tongue",
  31397. image: {
  31398. source: "./media/characters/tarn/tongue.svg"
  31399. }
  31400. },
  31401. },
  31402. [
  31403. {
  31404. name: "Micro",
  31405. height: math.unit(4, "inches")
  31406. },
  31407. {
  31408. name: "Normal",
  31409. height: math.unit(6 + 7/12, "feet"),
  31410. default: true
  31411. },
  31412. {
  31413. name: "Macro",
  31414. height: math.unit(300, "feet")
  31415. },
  31416. ]
  31417. ))
  31418. characterMakers.push(() => makeCharacter(
  31419. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31420. {
  31421. front: {
  31422. height: math.unit(5 + 7/12, "feet"),
  31423. weight: math.unit(80, "kg"),
  31424. name: "Front",
  31425. image: {
  31426. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31427. extra: 3023/2865,
  31428. bottom: 33/3056
  31429. }
  31430. },
  31431. back: {
  31432. height: math.unit(5 + 7/12, "feet"),
  31433. weight: math.unit(80, "kg"),
  31434. name: "Back",
  31435. image: {
  31436. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31437. extra: 3020/2886,
  31438. bottom: 30/3050
  31439. }
  31440. },
  31441. dick: {
  31442. height: math.unit(0.98, "feet"),
  31443. name: "Dick",
  31444. image: {
  31445. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31446. }
  31447. },
  31448. anatomy: {
  31449. height: math.unit(2.86, "feet"),
  31450. name: "Anatomy",
  31451. image: {
  31452. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31453. }
  31454. },
  31455. },
  31456. [
  31457. {
  31458. name: "Really Small",
  31459. height: math.unit(2, "inches")
  31460. },
  31461. {
  31462. name: "Micro",
  31463. height: math.unit(5.583, "inches")
  31464. },
  31465. {
  31466. name: "Normal",
  31467. height: math.unit(5 + 7/12, "feet"),
  31468. default: true
  31469. },
  31470. {
  31471. name: "Macro",
  31472. height: math.unit(67, "feet")
  31473. },
  31474. {
  31475. name: "Megamacro",
  31476. height: math.unit(134, "feet")
  31477. },
  31478. ]
  31479. ))
  31480. characterMakers.push(() => makeCharacter(
  31481. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31482. {
  31483. front: {
  31484. height: math.unit(9, "feet"),
  31485. weight: math.unit(120, "lb"),
  31486. name: "Front",
  31487. image: {
  31488. source: "./media/characters/sally/front.svg",
  31489. extra: 1506/1349,
  31490. bottom: 66/1572
  31491. }
  31492. },
  31493. },
  31494. [
  31495. {
  31496. name: "Normal",
  31497. height: math.unit(9, "feet"),
  31498. default: true
  31499. },
  31500. ]
  31501. ))
  31502. characterMakers.push(() => makeCharacter(
  31503. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31504. {
  31505. front: {
  31506. height: math.unit(8, "feet"),
  31507. weight: math.unit(900, "lb"),
  31508. name: "Front",
  31509. image: {
  31510. source: "./media/characters/owen/front.svg",
  31511. extra: 1761/1657,
  31512. bottom: 74/1835
  31513. }
  31514. },
  31515. side: {
  31516. height: math.unit(8, "feet"),
  31517. weight: math.unit(900, "lb"),
  31518. name: "Side",
  31519. image: {
  31520. source: "./media/characters/owen/side.svg",
  31521. extra: 1797/1734,
  31522. bottom: 30/1827
  31523. }
  31524. },
  31525. back: {
  31526. height: math.unit(8, "feet"),
  31527. weight: math.unit(900, "lb"),
  31528. name: "Back",
  31529. image: {
  31530. source: "./media/characters/owen/back.svg",
  31531. extra: 1796/1706,
  31532. bottom: 59/1855
  31533. }
  31534. },
  31535. maw: {
  31536. height: math.unit(1.76, "feet"),
  31537. name: "Maw",
  31538. image: {
  31539. source: "./media/characters/owen/maw.svg"
  31540. }
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Normal",
  31546. height: math.unit(8, "feet"),
  31547. default: true
  31548. },
  31549. ]
  31550. ))
  31551. characterMakers.push(() => makeCharacter(
  31552. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31553. {
  31554. front: {
  31555. height: math.unit(4, "feet"),
  31556. weight: math.unit(400, "lb"),
  31557. name: "Front",
  31558. image: {
  31559. source: "./media/characters/ryth/front.svg",
  31560. extra: 876/691,
  31561. bottom: 25/901
  31562. }
  31563. },
  31564. goia: {
  31565. height: math.unit(12, "feet"),
  31566. weight: math.unit(10800, "lb"),
  31567. name: "Goia",
  31568. image: {
  31569. source: "./media/characters/ryth/goia.svg",
  31570. extra: 3450/3198,
  31571. bottom: 61/3511
  31572. }
  31573. },
  31574. },
  31575. [
  31576. {
  31577. name: "Normal",
  31578. height: math.unit(4, "feet"),
  31579. default: true
  31580. },
  31581. ]
  31582. ))
  31583. characterMakers.push(() => makeCharacter(
  31584. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31585. {
  31586. front: {
  31587. height: math.unit(7, "feet"),
  31588. weight: math.unit(180, "lb"),
  31589. name: "Front",
  31590. image: {
  31591. source: "./media/characters/necrolance/front.svg",
  31592. extra: 1062/947,
  31593. bottom: 41/1103
  31594. }
  31595. },
  31596. back: {
  31597. height: math.unit(7, "feet"),
  31598. weight: math.unit(180, "lb"),
  31599. name: "Back",
  31600. image: {
  31601. source: "./media/characters/necrolance/back.svg",
  31602. extra: 1045/984,
  31603. bottom: 14/1059
  31604. }
  31605. },
  31606. wing: {
  31607. height: math.unit(2.67, "feet"),
  31608. name: "Wing",
  31609. image: {
  31610. source: "./media/characters/necrolance/wing.svg"
  31611. }
  31612. },
  31613. },
  31614. [
  31615. {
  31616. name: "Normal",
  31617. height: math.unit(7, "feet"),
  31618. default: true
  31619. },
  31620. ]
  31621. ))
  31622. characterMakers.push(() => makeCharacter(
  31623. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31624. {
  31625. front: {
  31626. height: math.unit(76, "meters"),
  31627. weight: math.unit(30000, "tons"),
  31628. name: "Front",
  31629. image: {
  31630. source: "./media/characters/tyler/front.svg",
  31631. extra: 1640/1640,
  31632. bottom: 114/1754
  31633. }
  31634. },
  31635. },
  31636. [
  31637. {
  31638. name: "Macro",
  31639. height: math.unit(76, "meters"),
  31640. default: true
  31641. },
  31642. ]
  31643. ))
  31644. characterMakers.push(() => makeCharacter(
  31645. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31646. {
  31647. front: {
  31648. height: math.unit(4 + 11/12, "feet"),
  31649. weight: math.unit(132, "lb"),
  31650. name: "Front",
  31651. image: {
  31652. source: "./media/characters/icey/front.svg",
  31653. extra: 2750/2550,
  31654. bottom: 33/2783
  31655. }
  31656. },
  31657. back: {
  31658. height: math.unit(4 + 11/12, "feet"),
  31659. weight: math.unit(132, "lb"),
  31660. name: "Back",
  31661. image: {
  31662. source: "./media/characters/icey/back.svg",
  31663. extra: 2624/2481,
  31664. bottom: 35/2659
  31665. }
  31666. },
  31667. },
  31668. [
  31669. {
  31670. name: "Normal",
  31671. height: math.unit(4 + 11/12, "feet"),
  31672. default: true
  31673. },
  31674. ]
  31675. ))
  31676. characterMakers.push(() => makeCharacter(
  31677. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31678. {
  31679. front: {
  31680. height: math.unit(100, "feet"),
  31681. weight: math.unit(0, "lb"),
  31682. name: "Front",
  31683. image: {
  31684. source: "./media/characters/smile/front.svg",
  31685. extra: 2983/2912,
  31686. bottom: 162/3145
  31687. }
  31688. },
  31689. back: {
  31690. height: math.unit(100, "feet"),
  31691. weight: math.unit(0, "lb"),
  31692. name: "Back",
  31693. image: {
  31694. source: "./media/characters/smile/back.svg",
  31695. extra: 3143/3031,
  31696. bottom: 91/3234
  31697. }
  31698. },
  31699. head: {
  31700. height: math.unit(26.3, "feet"),
  31701. weight: math.unit(0, "lb"),
  31702. name: "Head",
  31703. image: {
  31704. source: "./media/characters/smile/head.svg"
  31705. }
  31706. },
  31707. collar: {
  31708. height: math.unit(5.3, "feet"),
  31709. weight: math.unit(0, "lb"),
  31710. name: "Collar",
  31711. image: {
  31712. source: "./media/characters/smile/collar.svg"
  31713. }
  31714. },
  31715. },
  31716. [
  31717. {
  31718. name: "Macro",
  31719. height: math.unit(100, "feet"),
  31720. default: true
  31721. },
  31722. ]
  31723. ))
  31724. characterMakers.push(() => makeCharacter(
  31725. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31726. {
  31727. dragon: {
  31728. height: math.unit(26, "feet"),
  31729. weight: math.unit(36, "tons"),
  31730. name: "Dragon",
  31731. image: {
  31732. source: "./media/characters/arimphae/dragon.svg",
  31733. extra: 1574/983,
  31734. bottom: 357/1931
  31735. }
  31736. },
  31737. drake: {
  31738. height: math.unit(9, "feet"),
  31739. weight: math.unit(1.5, "tons"),
  31740. name: "Drake",
  31741. image: {
  31742. source: "./media/characters/arimphae/drake.svg",
  31743. extra: 1120/925,
  31744. bottom: 435/1555
  31745. }
  31746. },
  31747. },
  31748. [
  31749. {
  31750. name: "Small",
  31751. height: math.unit(26*5/9, "feet")
  31752. },
  31753. {
  31754. name: "Normal",
  31755. height: math.unit(26, "feet"),
  31756. default: true
  31757. },
  31758. ]
  31759. ))
  31760. characterMakers.push(() => makeCharacter(
  31761. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31762. {
  31763. front: {
  31764. height: math.unit(8 + 9/12, "feet"),
  31765. name: "Front",
  31766. image: {
  31767. source: "./media/characters/xander/front.svg",
  31768. extra: 848/673,
  31769. bottom: 62/910
  31770. }
  31771. },
  31772. },
  31773. [
  31774. {
  31775. name: "Normal",
  31776. height: math.unit(8 + 9/12, "feet"),
  31777. default: true
  31778. },
  31779. {
  31780. name: "Gaze Grabber",
  31781. height: math.unit(13 + 8/12, "feet")
  31782. },
  31783. {
  31784. name: "Jaw Dropper",
  31785. height: math.unit(27, "feet")
  31786. },
  31787. {
  31788. name: "Show Stopper",
  31789. height: math.unit(136, "feet")
  31790. },
  31791. {
  31792. name: "Superstar",
  31793. height: math.unit(1.9e6, "miles")
  31794. },
  31795. ]
  31796. ))
  31797. characterMakers.push(() => makeCharacter(
  31798. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31799. {
  31800. side: {
  31801. height: math.unit(2100, "feet"),
  31802. name: "Side",
  31803. image: {
  31804. source: "./media/characters/osiris/side.svg",
  31805. extra: 1105/939,
  31806. bottom: 167/1272
  31807. }
  31808. },
  31809. },
  31810. [
  31811. {
  31812. name: "Macro",
  31813. height: math.unit(2100, "feet"),
  31814. default: true
  31815. },
  31816. ]
  31817. ))
  31818. characterMakers.push(() => makeCharacter(
  31819. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31820. {
  31821. front: {
  31822. height: math.unit(6 + 8/12, "feet"),
  31823. weight: math.unit(225, "lb"),
  31824. name: "Front",
  31825. image: {
  31826. source: "./media/characters/rhys-londe/front.svg",
  31827. extra: 2258/2141,
  31828. bottom: 188/2446
  31829. }
  31830. },
  31831. back: {
  31832. height: math.unit(6 + 8/12, "feet"),
  31833. weight: math.unit(225, "lb"),
  31834. name: "Back",
  31835. image: {
  31836. source: "./media/characters/rhys-londe/back.svg",
  31837. extra: 2237/2137,
  31838. bottom: 63/2300
  31839. }
  31840. },
  31841. frontNsfw: {
  31842. height: math.unit(6 + 8/12, "feet"),
  31843. weight: math.unit(225, "lb"),
  31844. name: "Front (NSFW)",
  31845. image: {
  31846. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31847. extra: 2258/2141,
  31848. bottom: 188/2446
  31849. }
  31850. },
  31851. backNsfw: {
  31852. height: math.unit(6 + 8/12, "feet"),
  31853. weight: math.unit(225, "lb"),
  31854. name: "Back (NSFW)",
  31855. image: {
  31856. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31857. extra: 2237/2137,
  31858. bottom: 63/2300
  31859. }
  31860. },
  31861. dick: {
  31862. height: math.unit(30, "inches"),
  31863. name: "Dick",
  31864. image: {
  31865. source: "./media/characters/rhys-londe/dick.svg"
  31866. }
  31867. },
  31868. maw: {
  31869. height: math.unit(1.6, "feet"),
  31870. name: "Maw",
  31871. image: {
  31872. source: "./media/characters/rhys-londe/maw.svg"
  31873. }
  31874. },
  31875. },
  31876. [
  31877. {
  31878. name: "Normal",
  31879. height: math.unit(6 + 8/12, "feet"),
  31880. default: true
  31881. },
  31882. ]
  31883. ))
  31884. characterMakers.push(() => makeCharacter(
  31885. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31886. {
  31887. front: {
  31888. height: math.unit(3 + 10/12, "feet"),
  31889. weight: math.unit(90, "lb"),
  31890. name: "Front",
  31891. image: {
  31892. source: "./media/characters/taivas-ensim/front.svg",
  31893. extra: 1327/1216,
  31894. bottom: 96/1423
  31895. }
  31896. },
  31897. back: {
  31898. height: math.unit(3 + 10/12, "feet"),
  31899. weight: math.unit(90, "lb"),
  31900. name: "Back",
  31901. image: {
  31902. source: "./media/characters/taivas-ensim/back.svg",
  31903. extra: 1355/1247,
  31904. bottom: 11/1366
  31905. }
  31906. },
  31907. frontNsfw: {
  31908. height: math.unit(3 + 10/12, "feet"),
  31909. weight: math.unit(90, "lb"),
  31910. name: "Front (NSFW)",
  31911. image: {
  31912. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31913. extra: 1327/1216,
  31914. bottom: 96/1423
  31915. }
  31916. },
  31917. backNsfw: {
  31918. height: math.unit(3 + 10/12, "feet"),
  31919. weight: math.unit(90, "lb"),
  31920. name: "Back (NSFW)",
  31921. image: {
  31922. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31923. extra: 1355/1247,
  31924. bottom: 11/1366
  31925. }
  31926. },
  31927. },
  31928. [
  31929. {
  31930. name: "Normal",
  31931. height: math.unit(3 + 10/12, "feet"),
  31932. default: true
  31933. },
  31934. ]
  31935. ))
  31936. characterMakers.push(() => makeCharacter(
  31937. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31938. {
  31939. front: {
  31940. height: math.unit(9 + 6/12, "feet"),
  31941. weight: math.unit(940, "lb"),
  31942. name: "Front",
  31943. image: {
  31944. source: "./media/characters/byliss/front.svg",
  31945. extra: 1327/1290,
  31946. bottom: 82/1409
  31947. }
  31948. },
  31949. back: {
  31950. height: math.unit(9 + 6/12, "feet"),
  31951. weight: math.unit(940, "lb"),
  31952. name: "Back",
  31953. image: {
  31954. source: "./media/characters/byliss/back.svg",
  31955. extra: 1376/1349,
  31956. bottom: 9/1385
  31957. }
  31958. },
  31959. frontNsfw: {
  31960. height: math.unit(9 + 6/12, "feet"),
  31961. weight: math.unit(940, "lb"),
  31962. name: "Front (NSFW)",
  31963. image: {
  31964. source: "./media/characters/byliss/front-nsfw.svg",
  31965. extra: 1327/1290,
  31966. bottom: 82/1409
  31967. }
  31968. },
  31969. backNsfw: {
  31970. height: math.unit(9 + 6/12, "feet"),
  31971. weight: math.unit(940, "lb"),
  31972. name: "Back (NSFW)",
  31973. image: {
  31974. source: "./media/characters/byliss/back-nsfw.svg",
  31975. extra: 1376/1349,
  31976. bottom: 9/1385
  31977. }
  31978. },
  31979. },
  31980. [
  31981. {
  31982. name: "Normal",
  31983. height: math.unit(9 + 6/12, "feet"),
  31984. default: true
  31985. },
  31986. ]
  31987. ))
  31988. characterMakers.push(() => makeCharacter(
  31989. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31990. {
  31991. front: {
  31992. height: math.unit(5 + 2/12, "feet"),
  31993. weight: math.unit(200, "lb"),
  31994. name: "Front",
  31995. image: {
  31996. source: "./media/characters/noraly/front.svg",
  31997. extra: 4985/4773,
  31998. bottom: 150/5135
  31999. }
  32000. },
  32001. full: {
  32002. height: math.unit(5 + 2/12, "feet"),
  32003. weight: math.unit(164, "lb"),
  32004. name: "Full",
  32005. image: {
  32006. source: "./media/characters/noraly/full.svg",
  32007. extra: 1114/1059,
  32008. bottom: 35/1149
  32009. }
  32010. },
  32011. fuller: {
  32012. height: math.unit(5 + 2/12, "feet"),
  32013. weight: math.unit(230, "lb"),
  32014. name: "Fuller",
  32015. image: {
  32016. source: "./media/characters/noraly/fuller.svg",
  32017. extra: 1114/1059,
  32018. bottom: 35/1149
  32019. }
  32020. },
  32021. fullest: {
  32022. height: math.unit(5 + 2/12, "feet"),
  32023. weight: math.unit(300, "lb"),
  32024. name: "Fullest",
  32025. image: {
  32026. source: "./media/characters/noraly/fullest.svg",
  32027. extra: 1114/1059,
  32028. bottom: 35/1149
  32029. }
  32030. },
  32031. },
  32032. [
  32033. {
  32034. name: "Normal",
  32035. height: math.unit(5 + 2/12, "feet"),
  32036. default: true
  32037. },
  32038. ]
  32039. ))
  32040. characterMakers.push(() => makeCharacter(
  32041. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32042. {
  32043. front: {
  32044. height: math.unit(5 + 2/12, "feet"),
  32045. weight: math.unit(210, "lb"),
  32046. name: "Front",
  32047. image: {
  32048. source: "./media/characters/pera/front.svg",
  32049. extra: 1560/1531,
  32050. bottom: 165/1725
  32051. }
  32052. },
  32053. back: {
  32054. height: math.unit(5 + 2/12, "feet"),
  32055. weight: math.unit(210, "lb"),
  32056. name: "Back",
  32057. image: {
  32058. source: "./media/characters/pera/back.svg",
  32059. extra: 1523/1493,
  32060. bottom: 152/1675
  32061. }
  32062. },
  32063. dick: {
  32064. height: math.unit(2.4, "feet"),
  32065. name: "Dick",
  32066. image: {
  32067. source: "./media/characters/pera/dick.svg"
  32068. }
  32069. },
  32070. },
  32071. [
  32072. {
  32073. name: "Normal",
  32074. height: math.unit(5 + 2/12, "feet"),
  32075. default: true
  32076. },
  32077. ]
  32078. ))
  32079. characterMakers.push(() => makeCharacter(
  32080. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32081. {
  32082. front: {
  32083. height: math.unit(12, "feet"),
  32084. weight: math.unit(3200, "lb"),
  32085. name: "Front",
  32086. image: {
  32087. source: "./media/characters/julian/front.svg",
  32088. extra: 2962/2701,
  32089. bottom: 184/3146
  32090. }
  32091. },
  32092. maw: {
  32093. height: math.unit(5.35, "feet"),
  32094. name: "Maw",
  32095. image: {
  32096. source: "./media/characters/julian/maw.svg"
  32097. }
  32098. },
  32099. paw: {
  32100. height: math.unit(3.07, "feet"),
  32101. name: "Paw",
  32102. image: {
  32103. source: "./media/characters/julian/paw.svg"
  32104. }
  32105. },
  32106. },
  32107. [
  32108. {
  32109. name: "Default",
  32110. height: math.unit(12, "feet"),
  32111. default: true
  32112. },
  32113. {
  32114. name: "Big",
  32115. height: math.unit(50, "feet")
  32116. },
  32117. {
  32118. name: "Really Big",
  32119. height: math.unit(1, "mile")
  32120. },
  32121. {
  32122. name: "Extremely Big",
  32123. height: math.unit(100, "miles")
  32124. },
  32125. {
  32126. name: "Planet Hugger",
  32127. height: math.unit(200, "megameters")
  32128. },
  32129. {
  32130. name: "Unreasonably Big",
  32131. height: math.unit(1e300, "meters")
  32132. },
  32133. ]
  32134. ))
  32135. characterMakers.push(() => makeCharacter(
  32136. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32137. {
  32138. solgooleo: {
  32139. height: math.unit(4, "meters"),
  32140. weight: math.unit(6000*1.5, "kg"),
  32141. volume: math.unit(6000, "liters"),
  32142. name: "Solgooleo",
  32143. image: {
  32144. source: "./media/characters/pi/solgooleo.svg",
  32145. extra: 388/331,
  32146. bottom: 29/417
  32147. }
  32148. },
  32149. },
  32150. [
  32151. {
  32152. name: "Normal",
  32153. height: math.unit(4, "meters"),
  32154. default: true
  32155. },
  32156. ]
  32157. ))
  32158. characterMakers.push(() => makeCharacter(
  32159. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32160. {
  32161. front: {
  32162. height: math.unit(8 + 2/12, "feet"),
  32163. weight: math.unit(4, "tons"),
  32164. name: "Front",
  32165. image: {
  32166. source: "./media/characters/shaun/front.svg",
  32167. extra: 1550/1505,
  32168. bottom: 353/1903
  32169. }
  32170. },
  32171. },
  32172. [
  32173. {
  32174. name: "Lorg",
  32175. height: math.unit(8 + 2/12, "feet"),
  32176. default: true
  32177. },
  32178. ]
  32179. ))
  32180. characterMakers.push(() => makeCharacter(
  32181. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32182. {
  32183. front: {
  32184. height: math.unit(7, "feet"),
  32185. name: "Front",
  32186. image: {
  32187. source: "./media/characters/sini/front.svg",
  32188. extra: 726/678,
  32189. bottom: 35/761
  32190. }
  32191. },
  32192. back: {
  32193. height: math.unit(7, "feet"),
  32194. name: "Back",
  32195. image: {
  32196. source: "./media/characters/sini/back.svg",
  32197. extra: 743/701,
  32198. bottom: 12/755
  32199. }
  32200. },
  32201. mawAnthro: {
  32202. height: math.unit(2.14, "feet"),
  32203. name: "Maw (Anthro)",
  32204. image: {
  32205. source: "./media/characters/sini/maw-anthro.svg"
  32206. }
  32207. },
  32208. dick: {
  32209. height: math.unit(1.45, "feet"),
  32210. name: "Dick (Anthro)",
  32211. image: {
  32212. source: "./media/characters/sini/dick-anthro.svg"
  32213. }
  32214. },
  32215. feral: {
  32216. height: math.unit(13, "feet"),
  32217. name: "Feral",
  32218. image: {
  32219. source: "./media/characters/sini/feral.svg",
  32220. extra: 814/605,
  32221. bottom: 11/825
  32222. }
  32223. },
  32224. mawFeral: {
  32225. height: math.unit(4.6, "feet"),
  32226. name: "Maw-feral",
  32227. image: {
  32228. source: "./media/characters/sini/maw-feral.svg"
  32229. }
  32230. },
  32231. footFeral: {
  32232. height: math.unit(4.2, "feet"),
  32233. name: "Foot-feral",
  32234. image: {
  32235. source: "./media/characters/sini/foot-feral.svg"
  32236. }
  32237. },
  32238. },
  32239. [
  32240. {
  32241. name: "Normal",
  32242. height: math.unit(7, "feet"),
  32243. default: true
  32244. },
  32245. ]
  32246. ))
  32247. characterMakers.push(() => makeCharacter(
  32248. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32249. {
  32250. side: {
  32251. height: math.unit(13, "meters"),
  32252. weight: math.unit(9072, "kg"),
  32253. name: "Side",
  32254. image: {
  32255. source: "./media/characters/raylldo/side.svg",
  32256. extra: 403/344,
  32257. bottom: 42/445
  32258. }
  32259. },
  32260. leaping: {
  32261. height: math.unit(12.3, "meters"),
  32262. weight: math.unit(9072, "kg"),
  32263. name: "Leaping",
  32264. image: {
  32265. source: "./media/characters/raylldo/leaping.svg",
  32266. extra: 470/249,
  32267. bottom: 13/483
  32268. }
  32269. },
  32270. flying: {
  32271. height: math.unit(18, "meters"),
  32272. weight: math.unit(9072, "kg"),
  32273. name: "Flying",
  32274. image: {
  32275. source: "./media/characters/raylldo/flying.svg"
  32276. }
  32277. },
  32278. head: {
  32279. height: math.unit(5.85, "meters"),
  32280. name: "Head",
  32281. image: {
  32282. source: "./media/characters/raylldo/head.svg"
  32283. }
  32284. },
  32285. maw: {
  32286. height: math.unit(5.32, "meters"),
  32287. name: "Maw",
  32288. image: {
  32289. source: "./media/characters/raylldo/maw.svg"
  32290. }
  32291. },
  32292. eye: {
  32293. height: math.unit(0.54, "meters"),
  32294. name: "Eye",
  32295. image: {
  32296. source: "./media/characters/raylldo/eye.svg"
  32297. }
  32298. },
  32299. },
  32300. [
  32301. {
  32302. name: "Normal",
  32303. height: math.unit(13, "meters"),
  32304. default: true
  32305. },
  32306. ]
  32307. ))
  32308. characterMakers.push(() => makeCharacter(
  32309. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32310. {
  32311. anthroFront: {
  32312. height: math.unit(9, "feet"),
  32313. weight: math.unit(600, "lb"),
  32314. name: "Anthro (Front)",
  32315. image: {
  32316. source: "./media/characters/glint/anthro-front.svg",
  32317. extra: 1097/1018,
  32318. bottom: 28/1125
  32319. }
  32320. },
  32321. anthroBack: {
  32322. height: math.unit(9, "feet"),
  32323. weight: math.unit(600, "lb"),
  32324. name: "Anthro (Back)",
  32325. image: {
  32326. source: "./media/characters/glint/anthro-back.svg",
  32327. extra: 1154/997,
  32328. bottom: 36/1190
  32329. }
  32330. },
  32331. feral: {
  32332. height: math.unit(11, "feet"),
  32333. weight: math.unit(50000, "lb"),
  32334. name: "Feral",
  32335. image: {
  32336. source: "./media/characters/glint/feral.svg",
  32337. extra: 3035/1585,
  32338. bottom: 1169/4204
  32339. }
  32340. },
  32341. dickAnthro: {
  32342. height: math.unit(0.7, "meters"),
  32343. name: "Dick (Anthro)",
  32344. image: {
  32345. source: "./media/characters/glint/dick-anthro.svg"
  32346. }
  32347. },
  32348. dickFeral: {
  32349. height: math.unit(2.65, "meters"),
  32350. name: "Dick (Feral)",
  32351. image: {
  32352. source: "./media/characters/glint/dick-feral.svg"
  32353. }
  32354. },
  32355. slitHidden: {
  32356. height: math.unit(5.85, "meters"),
  32357. name: "Slit (Hidden)",
  32358. image: {
  32359. source: "./media/characters/glint/slit-hidden.svg"
  32360. }
  32361. },
  32362. slitErect: {
  32363. height: math.unit(5.85, "meters"),
  32364. name: "Slit (Erect)",
  32365. image: {
  32366. source: "./media/characters/glint/slit-erect.svg"
  32367. }
  32368. },
  32369. mawAnthro: {
  32370. height: math.unit(0.63, "meters"),
  32371. name: "Maw (Anthro)",
  32372. image: {
  32373. source: "./media/characters/glint/maw.svg"
  32374. }
  32375. },
  32376. mawFeral: {
  32377. height: math.unit(2.89, "meters"),
  32378. name: "Maw (Feral)",
  32379. image: {
  32380. source: "./media/characters/glint/maw.svg"
  32381. }
  32382. },
  32383. },
  32384. [
  32385. {
  32386. name: "Normal",
  32387. height: math.unit(9, "feet"),
  32388. default: true
  32389. },
  32390. ]
  32391. ))
  32392. characterMakers.push(() => makeCharacter(
  32393. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32394. {
  32395. side: {
  32396. height: math.unit(15, "feet"),
  32397. weight: math.unit(5000, "kg"),
  32398. name: "Side",
  32399. image: {
  32400. source: "./media/characters/kairne/side.svg",
  32401. extra: 979/811,
  32402. bottom: 13/992
  32403. }
  32404. },
  32405. front: {
  32406. height: math.unit(15, "feet"),
  32407. weight: math.unit(5000, "kg"),
  32408. name: "Front",
  32409. image: {
  32410. source: "./media/characters/kairne/front.svg",
  32411. extra: 908/814,
  32412. bottom: 26/934
  32413. }
  32414. },
  32415. sideNsfw: {
  32416. height: math.unit(15, "feet"),
  32417. weight: math.unit(5000, "kg"),
  32418. name: "Side (NSFW)",
  32419. image: {
  32420. source: "./media/characters/kairne/side-nsfw.svg",
  32421. extra: 979/811,
  32422. bottom: 13/992
  32423. }
  32424. },
  32425. frontNsfw: {
  32426. height: math.unit(15, "feet"),
  32427. weight: math.unit(5000, "kg"),
  32428. name: "Front (NSFW)",
  32429. image: {
  32430. source: "./media/characters/kairne/front-nsfw.svg",
  32431. extra: 908/814,
  32432. bottom: 26/934
  32433. }
  32434. },
  32435. dickCaged: {
  32436. height: math.unit(0.65, "meters"),
  32437. name: "Dick-caged",
  32438. image: {
  32439. source: "./media/characters/kairne/dick-caged.svg"
  32440. }
  32441. },
  32442. dick: {
  32443. height: math.unit(0.79, "meters"),
  32444. name: "Dick",
  32445. image: {
  32446. source: "./media/characters/kairne/dick.svg"
  32447. }
  32448. },
  32449. genitals: {
  32450. height: math.unit(1.29, "meters"),
  32451. name: "Genitals",
  32452. image: {
  32453. source: "./media/characters/kairne/genitals.svg"
  32454. }
  32455. },
  32456. maw: {
  32457. height: math.unit(1.73, "meters"),
  32458. name: "Maw",
  32459. image: {
  32460. source: "./media/characters/kairne/maw.svg"
  32461. }
  32462. },
  32463. },
  32464. [
  32465. {
  32466. name: "Normal",
  32467. height: math.unit(15, "feet"),
  32468. default: true
  32469. },
  32470. ]
  32471. ))
  32472. characterMakers.push(() => makeCharacter(
  32473. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32474. {
  32475. front: {
  32476. height: math.unit(5 + 8/12, "feet"),
  32477. weight: math.unit(139, "lb"),
  32478. name: "Front",
  32479. image: {
  32480. source: "./media/characters/biscuit-jackal/front.svg",
  32481. extra: 2106/1961,
  32482. bottom: 58/2164
  32483. }
  32484. },
  32485. back: {
  32486. height: math.unit(5 + 8/12, "feet"),
  32487. weight: math.unit(139, "lb"),
  32488. name: "Back",
  32489. image: {
  32490. source: "./media/characters/biscuit-jackal/back.svg",
  32491. extra: 2132/1976,
  32492. bottom: 57/2189
  32493. }
  32494. },
  32495. werejackal: {
  32496. height: math.unit(6 + 3/12, "feet"),
  32497. weight: math.unit(188, "lb"),
  32498. name: "Werejackal",
  32499. image: {
  32500. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32501. extra: 2373/2178,
  32502. bottom: 53/2426
  32503. }
  32504. },
  32505. },
  32506. [
  32507. {
  32508. name: "Normal",
  32509. height: math.unit(5 + 8/12, "feet"),
  32510. default: true
  32511. },
  32512. ]
  32513. ))
  32514. characterMakers.push(() => makeCharacter(
  32515. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32516. {
  32517. front: {
  32518. height: math.unit(140, "cm"),
  32519. weight: math.unit(45, "kg"),
  32520. name: "Front",
  32521. image: {
  32522. source: "./media/characters/tayra-white/front.svg",
  32523. extra: 2229/2192,
  32524. bottom: 75/2304
  32525. }
  32526. },
  32527. },
  32528. [
  32529. {
  32530. name: "Normal",
  32531. height: math.unit(140, "cm"),
  32532. default: true
  32533. },
  32534. ]
  32535. ))
  32536. characterMakers.push(() => makeCharacter(
  32537. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32538. {
  32539. front: {
  32540. height: math.unit(4 + 5/12, "feet"),
  32541. name: "Front",
  32542. image: {
  32543. source: "./media/characters/scoop/front.svg",
  32544. extra: 1257/1136,
  32545. bottom: 69/1326
  32546. }
  32547. },
  32548. back: {
  32549. height: math.unit(4 + 5/12, "feet"),
  32550. name: "Back",
  32551. image: {
  32552. source: "./media/characters/scoop/back.svg",
  32553. extra: 1321/1152,
  32554. bottom: 32/1353
  32555. }
  32556. },
  32557. maw: {
  32558. height: math.unit(0.68, "feet"),
  32559. name: "Maw",
  32560. image: {
  32561. source: "./media/characters/scoop/maw.svg"
  32562. }
  32563. },
  32564. },
  32565. [
  32566. {
  32567. name: "Really Small",
  32568. height: math.unit(1, "mm")
  32569. },
  32570. {
  32571. name: "Micro",
  32572. height: math.unit(1, "inch")
  32573. },
  32574. {
  32575. name: "Normal",
  32576. height: math.unit(4 + 5/12, "feet"),
  32577. default: true
  32578. },
  32579. {
  32580. name: "Macro",
  32581. height: math.unit(200, "feet")
  32582. },
  32583. {
  32584. name: "Megamacro",
  32585. height: math.unit(3240, "feet")
  32586. },
  32587. {
  32588. name: "Teramacro",
  32589. height: math.unit(2500, "miles")
  32590. },
  32591. ]
  32592. ))
  32593. characterMakers.push(() => makeCharacter(
  32594. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32595. {
  32596. front: {
  32597. height: math.unit(15 + 7/12, "feet"),
  32598. name: "Front",
  32599. image: {
  32600. source: "./media/characters/saphinara/front.svg",
  32601. extra: 604/546,
  32602. bottom: 19/623
  32603. }
  32604. },
  32605. side: {
  32606. height: math.unit(15 + 7/12, "feet"),
  32607. name: "Side",
  32608. image: {
  32609. source: "./media/characters/saphinara/side.svg",
  32610. extra: 605/547,
  32611. bottom: 6/611
  32612. }
  32613. },
  32614. back: {
  32615. height: math.unit(15 + 7/12, "feet"),
  32616. name: "Back",
  32617. image: {
  32618. source: "./media/characters/saphinara/back.svg",
  32619. extra: 591/531,
  32620. bottom: 13/604
  32621. }
  32622. },
  32623. frontTail: {
  32624. height: math.unit(15 + 7/12, "feet"),
  32625. name: "Front (Full Tail)",
  32626. image: {
  32627. source: "./media/characters/saphinara/front-tail.svg",
  32628. extra: 748/547,
  32629. bottom: 66/814
  32630. }
  32631. },
  32632. },
  32633. [
  32634. {
  32635. name: "Normal",
  32636. height: math.unit(15 + 7/12, "feet"),
  32637. default: true
  32638. },
  32639. {
  32640. name: "Angry",
  32641. height: math.unit(30 + 6/12, "feet")
  32642. },
  32643. {
  32644. name: "Enraged",
  32645. height: math.unit(102 + 1/12, "feet")
  32646. },
  32647. ]
  32648. ))
  32649. characterMakers.push(() => makeCharacter(
  32650. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32651. {
  32652. front: {
  32653. height: math.unit(6 + 8/12, "feet"),
  32654. weight: math.unit(300, "lb"),
  32655. name: "Front",
  32656. image: {
  32657. source: "./media/characters/jrain/front.svg",
  32658. extra: 3039/2865,
  32659. bottom: 399/3438
  32660. }
  32661. },
  32662. back: {
  32663. height: math.unit(6 + 8/12, "feet"),
  32664. weight: math.unit(300, "lb"),
  32665. name: "Back",
  32666. image: {
  32667. source: "./media/characters/jrain/back.svg",
  32668. extra: 3089/2938,
  32669. bottom: 172/3261
  32670. }
  32671. },
  32672. head: {
  32673. height: math.unit(2.14, "feet"),
  32674. name: "Head",
  32675. image: {
  32676. source: "./media/characters/jrain/head.svg"
  32677. }
  32678. },
  32679. maw: {
  32680. height: math.unit(1.77, "feet"),
  32681. name: "Maw",
  32682. image: {
  32683. source: "./media/characters/jrain/maw.svg"
  32684. }
  32685. },
  32686. leftHand: {
  32687. height: math.unit(1.1, "feet"),
  32688. name: "Left Hand",
  32689. image: {
  32690. source: "./media/characters/jrain/left-hand.svg"
  32691. }
  32692. },
  32693. rightHand: {
  32694. height: math.unit(1.1, "feet"),
  32695. name: "Right Hand",
  32696. image: {
  32697. source: "./media/characters/jrain/right-hand.svg"
  32698. }
  32699. },
  32700. eye: {
  32701. height: math.unit(0.35, "feet"),
  32702. name: "Eye",
  32703. image: {
  32704. source: "./media/characters/jrain/eye.svg"
  32705. }
  32706. },
  32707. },
  32708. [
  32709. {
  32710. name: "Normal",
  32711. height: math.unit(6 + 8/12, "feet"),
  32712. default: true
  32713. },
  32714. {
  32715. name: "Casually Large",
  32716. height: math.unit(25, "feet")
  32717. },
  32718. {
  32719. name: "Giant",
  32720. height: math.unit(100, "feet")
  32721. },
  32722. {
  32723. name: "Kaiju",
  32724. height: math.unit(300, "feet")
  32725. },
  32726. ]
  32727. ))
  32728. characterMakers.push(() => makeCharacter(
  32729. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32730. {
  32731. dragon: {
  32732. height: math.unit(5, "meters"),
  32733. name: "Dragon",
  32734. image: {
  32735. source: "./media/characters/sabrina/dragon.svg",
  32736. extra: 3670 / 2365,
  32737. bottom: 333 / 4003
  32738. }
  32739. },
  32740. gryphon: {
  32741. height: math.unit(3, "meters"),
  32742. name: "Gryphon",
  32743. image: {
  32744. source: "./media/characters/sabrina/gryphon.svg",
  32745. extra: 1576 / 945,
  32746. bottom: 71 / 1647
  32747. }
  32748. },
  32749. snake: {
  32750. height: math.unit(12, "meters"),
  32751. name: "Snake",
  32752. image: {
  32753. source: "./media/characters/sabrina/snake.svg",
  32754. extra: 1758 / 1320,
  32755. bottom: 186 / 1944
  32756. }
  32757. },
  32758. collar: {
  32759. height: math.unit(1.86, "meters"),
  32760. name: "Collar",
  32761. image: {
  32762. source: "./media/characters/sabrina/collar.svg"
  32763. }
  32764. },
  32765. eye: {
  32766. height: math.unit(0.53, "meters"),
  32767. name: "Eye",
  32768. image: {
  32769. source: "./media/characters/sabrina/eye.svg"
  32770. }
  32771. },
  32772. foot: {
  32773. height: math.unit(1.86, "meters"),
  32774. name: "Foot",
  32775. image: {
  32776. source: "./media/characters/sabrina/foot.svg"
  32777. }
  32778. },
  32779. hand: {
  32780. height: math.unit(1.32, "meters"),
  32781. name: "Hand",
  32782. image: {
  32783. source: "./media/characters/sabrina/hand.svg"
  32784. }
  32785. },
  32786. head: {
  32787. height: math.unit(2.44, "meters"),
  32788. name: "Head",
  32789. image: {
  32790. source: "./media/characters/sabrina/head.svg"
  32791. }
  32792. },
  32793. headAngry: {
  32794. height: math.unit(2.44, "meters"),
  32795. name: "Head (Angry))",
  32796. image: {
  32797. source: "./media/characters/sabrina/head-angry.svg"
  32798. }
  32799. },
  32800. maw: {
  32801. height: math.unit(1.65, "meters"),
  32802. name: "Maw",
  32803. image: {
  32804. source: "./media/characters/sabrina/maw.svg"
  32805. }
  32806. },
  32807. spikes: {
  32808. height: math.unit(1.69, "meters"),
  32809. name: "Spikes",
  32810. image: {
  32811. source: "./media/characters/sabrina/spikes.svg"
  32812. }
  32813. },
  32814. stomach: {
  32815. height: math.unit(1.15, "meters"),
  32816. name: "Stomach",
  32817. image: {
  32818. source: "./media/characters/sabrina/stomach.svg"
  32819. }
  32820. },
  32821. tongue: {
  32822. height: math.unit(1.27, "meters"),
  32823. name: "Tongue",
  32824. image: {
  32825. source: "./media/characters/sabrina/tongue.svg"
  32826. }
  32827. },
  32828. wingDorsal: {
  32829. height: math.unit(4.85, "meters"),
  32830. name: "Wing (Dorsal)",
  32831. image: {
  32832. source: "./media/characters/sabrina/wing-dorsal.svg"
  32833. }
  32834. },
  32835. wingVentral: {
  32836. height: math.unit(4.85, "meters"),
  32837. name: "Wing (Ventral)",
  32838. image: {
  32839. source: "./media/characters/sabrina/wing-ventral.svg"
  32840. }
  32841. },
  32842. },
  32843. [
  32844. {
  32845. name: "Normal",
  32846. height: math.unit(5, "meters"),
  32847. default: true
  32848. },
  32849. ]
  32850. ))
  32851. characterMakers.push(() => makeCharacter(
  32852. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32853. {
  32854. frontMaid: {
  32855. height: math.unit(5 + 5/12, "feet"),
  32856. weight: math.unit(130, "lb"),
  32857. name: "Front (Maid)",
  32858. image: {
  32859. source: "./media/characters/midnight-tales/front-maid.svg",
  32860. extra: 489/454,
  32861. bottom: 61/550
  32862. }
  32863. },
  32864. frontFormal: {
  32865. height: math.unit(5 + 5/12, "feet"),
  32866. weight: math.unit(130, "lb"),
  32867. name: "Front (Formal)",
  32868. image: {
  32869. source: "./media/characters/midnight-tales/front-formal.svg",
  32870. extra: 489/454,
  32871. bottom: 61/550
  32872. }
  32873. },
  32874. back: {
  32875. height: math.unit(5 + 5/12, "feet"),
  32876. weight: math.unit(130, "lb"),
  32877. name: "Back",
  32878. image: {
  32879. source: "./media/characters/midnight-tales/back.svg",
  32880. extra: 498/456,
  32881. bottom: 33/531
  32882. }
  32883. },
  32884. frontBeast: {
  32885. height: math.unit(40, "feet"),
  32886. weight: math.unit(64000, "lb"),
  32887. name: "Front (Beast)",
  32888. image: {
  32889. source: "./media/characters/midnight-tales/front-beast.svg",
  32890. extra: 927/860,
  32891. bottom: 53/980
  32892. }
  32893. },
  32894. backBeast: {
  32895. height: math.unit(40, "feet"),
  32896. weight: math.unit(64000, "lb"),
  32897. name: "Back (Beast)",
  32898. image: {
  32899. source: "./media/characters/midnight-tales/back-beast.svg",
  32900. extra: 929/855,
  32901. bottom: 16/945
  32902. }
  32903. },
  32904. footBeast: {
  32905. height: math.unit(6.7, "feet"),
  32906. name: "Foot (Beast)",
  32907. image: {
  32908. source: "./media/characters/midnight-tales/foot-beast.svg"
  32909. }
  32910. },
  32911. headBeast: {
  32912. height: math.unit(8, "feet"),
  32913. name: "Head (Beast)",
  32914. image: {
  32915. source: "./media/characters/midnight-tales/head-beast.svg"
  32916. }
  32917. },
  32918. },
  32919. [
  32920. {
  32921. name: "Normal",
  32922. height: math.unit(5 + 5 / 12, "feet"),
  32923. default: true
  32924. },
  32925. {
  32926. name: "Macro",
  32927. height: math.unit(25, "feet")
  32928. },
  32929. ]
  32930. ))
  32931. characterMakers.push(() => makeCharacter(
  32932. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32933. {
  32934. front: {
  32935. height: math.unit(5 + 10/12, "feet"),
  32936. name: "Front",
  32937. image: {
  32938. source: "./media/characters/argon/front.svg",
  32939. extra: 2009/1935,
  32940. bottom: 118/2127
  32941. }
  32942. },
  32943. back: {
  32944. height: math.unit(5 + 10/12, "feet"),
  32945. name: "Back",
  32946. image: {
  32947. source: "./media/characters/argon/back.svg",
  32948. extra: 2047/1992,
  32949. bottom: 20/2067
  32950. }
  32951. },
  32952. frontDressed: {
  32953. height: math.unit(5 + 10/12, "feet"),
  32954. name: "Front (Dressed)",
  32955. image: {
  32956. source: "./media/characters/argon/front-dressed.svg",
  32957. extra: 2009/1935,
  32958. bottom: 118/2127
  32959. }
  32960. },
  32961. },
  32962. [
  32963. {
  32964. name: "Normal",
  32965. height: math.unit(5 + 10/12, "feet"),
  32966. default: true
  32967. },
  32968. ]
  32969. ))
  32970. characterMakers.push(() => makeCharacter(
  32971. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32972. {
  32973. front: {
  32974. height: math.unit(8 + 6/12, "feet"),
  32975. weight: math.unit(1150, "lb"),
  32976. name: "Front",
  32977. image: {
  32978. source: "./media/characters/kichi/front.svg",
  32979. extra: 1267/1164,
  32980. bottom: 61/1328
  32981. }
  32982. },
  32983. back: {
  32984. height: math.unit(8 + 6/12, "feet"),
  32985. weight: math.unit(1150, "lb"),
  32986. name: "Back",
  32987. image: {
  32988. source: "./media/characters/kichi/back.svg",
  32989. extra: 1273/1166,
  32990. bottom: 33/1306
  32991. }
  32992. },
  32993. },
  32994. [
  32995. {
  32996. name: "Normal",
  32997. height: math.unit(8 + 6/12, "feet"),
  32998. default: true
  32999. },
  33000. ]
  33001. ))
  33002. characterMakers.push(() => makeCharacter(
  33003. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33004. {
  33005. front: {
  33006. height: math.unit(6, "feet"),
  33007. weight: math.unit(210, "lb"),
  33008. name: "Front",
  33009. image: {
  33010. source: "./media/characters/manetel-greyscale/front.svg",
  33011. extra: 350/312,
  33012. bottom: 8/358
  33013. }
  33014. },
  33015. },
  33016. [
  33017. {
  33018. name: "Micro",
  33019. height: math.unit(2, "inches")
  33020. },
  33021. {
  33022. name: "Normal",
  33023. height: math.unit(6, "feet"),
  33024. default: true
  33025. },
  33026. {
  33027. name: "Minimacro",
  33028. height: math.unit(17, "feet")
  33029. },
  33030. {
  33031. name: "Macro",
  33032. height: math.unit(117, "feet")
  33033. },
  33034. ]
  33035. ))
  33036. characterMakers.push(() => makeCharacter(
  33037. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33038. {
  33039. side: {
  33040. height: math.unit(5 + 1/12, "feet"),
  33041. weight: math.unit(418, "lb"),
  33042. name: "Side",
  33043. image: {
  33044. source: "./media/characters/softpurr/side.svg",
  33045. extra: 1993/1945,
  33046. bottom: 134/2127
  33047. }
  33048. },
  33049. front: {
  33050. height: math.unit(5 + 1/12, "feet"),
  33051. weight: math.unit(418, "lb"),
  33052. name: "Front",
  33053. image: {
  33054. source: "./media/characters/softpurr/front.svg",
  33055. extra: 1950/1856,
  33056. bottom: 174/2124
  33057. }
  33058. },
  33059. paw: {
  33060. height: math.unit(1, "feet"),
  33061. name: "Paw",
  33062. image: {
  33063. source: "./media/characters/softpurr/paw.svg"
  33064. }
  33065. },
  33066. },
  33067. [
  33068. {
  33069. name: "Normal",
  33070. height: math.unit(5 + 1/12, "feet"),
  33071. default: true
  33072. },
  33073. ]
  33074. ))
  33075. characterMakers.push(() => makeCharacter(
  33076. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33077. {
  33078. front: {
  33079. height: math.unit(260, "meters"),
  33080. name: "Front",
  33081. image: {
  33082. source: "./media/characters/anahita/front.svg",
  33083. extra: 665/635,
  33084. bottom: 89/754
  33085. }
  33086. },
  33087. },
  33088. [
  33089. {
  33090. name: "Macro",
  33091. height: math.unit(260, "meters"),
  33092. default: true
  33093. },
  33094. ]
  33095. ))
  33096. characterMakers.push(() => makeCharacter(
  33097. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33098. {
  33099. front: {
  33100. height: math.unit(4 + 10/12, "feet"),
  33101. weight: math.unit(160, "lb"),
  33102. name: "Front",
  33103. image: {
  33104. source: "./media/characters/chip-mouse/front.svg",
  33105. extra: 3528/3408,
  33106. bottom: 0/3528
  33107. }
  33108. },
  33109. frontNsfw: {
  33110. height: math.unit(4 + 10/12, "feet"),
  33111. weight: math.unit(160, "lb"),
  33112. name: "Front (NSFW)",
  33113. image: {
  33114. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33115. extra: 3528/3408,
  33116. bottom: 0/3528
  33117. }
  33118. },
  33119. },
  33120. [
  33121. {
  33122. name: "Normal",
  33123. height: math.unit(4 + 10/12, "feet"),
  33124. default: true
  33125. },
  33126. ]
  33127. ))
  33128. characterMakers.push(() => makeCharacter(
  33129. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33130. {
  33131. side: {
  33132. height: math.unit(10, "feet"),
  33133. weight: math.unit(14000, "lb"),
  33134. name: "Side",
  33135. image: {
  33136. source: "./media/characters/kremm/side.svg",
  33137. extra: 1390/1053,
  33138. bottom: 90/1480
  33139. }
  33140. },
  33141. gut: {
  33142. height: math.unit(5.8, "feet"),
  33143. name: "Gut",
  33144. image: {
  33145. source: "./media/characters/kremm/gut.svg"
  33146. }
  33147. },
  33148. ass: {
  33149. height: math.unit(6.1, "feet"),
  33150. name: "Ass",
  33151. image: {
  33152. source: "./media/characters/kremm/ass.svg"
  33153. }
  33154. },
  33155. jaws: {
  33156. height: math.unit(2.2, "feet"),
  33157. name: "Jaws",
  33158. image: {
  33159. source: "./media/characters/kremm/jaws.svg"
  33160. }
  33161. },
  33162. dick: {
  33163. height: math.unit(4.26, "feet"),
  33164. name: "Dick",
  33165. image: {
  33166. source: "./media/characters/kremm/dick.svg"
  33167. }
  33168. },
  33169. },
  33170. [
  33171. {
  33172. name: "Normal",
  33173. height: math.unit(10, "feet"),
  33174. default: true
  33175. },
  33176. ]
  33177. ))
  33178. characterMakers.push(() => makeCharacter(
  33179. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33180. {
  33181. front: {
  33182. height: math.unit(30, "stories"),
  33183. name: "Front",
  33184. image: {
  33185. source: "./media/characters/kai/front.svg",
  33186. extra: 1892/1718,
  33187. bottom: 162/2054
  33188. }
  33189. },
  33190. },
  33191. [
  33192. {
  33193. name: "Macro",
  33194. height: math.unit(30, "stories"),
  33195. default: true
  33196. },
  33197. ]
  33198. ))
  33199. characterMakers.push(() => makeCharacter(
  33200. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33201. {
  33202. front: {
  33203. height: math.unit(6 + 4/12, "feet"),
  33204. weight: math.unit(145, "lb"),
  33205. name: "Front",
  33206. image: {
  33207. source: "./media/characters/sykes/front.svg",
  33208. extra: 1321 / 1187,
  33209. bottom: 66 / 1387
  33210. }
  33211. },
  33212. back: {
  33213. height: math.unit(6 + 4/12, "feet"),
  33214. weight: math.unit(145, "lb"),
  33215. name: "Back",
  33216. image: {
  33217. source: "./media/characters/sykes/back.svg",
  33218. extra: 1326/1181,
  33219. bottom: 31/1357
  33220. }
  33221. },
  33222. handBack: {
  33223. height: math.unit(0.9, "feet"),
  33224. name: "Hand (Back)",
  33225. image: {
  33226. source: "./media/characters/sykes/hand-back.svg"
  33227. }
  33228. },
  33229. handFront: {
  33230. height: math.unit(0.839, "feet"),
  33231. name: "Hand (Front)",
  33232. image: {
  33233. source: "./media/characters/sykes/hand-front.svg"
  33234. }
  33235. },
  33236. leftFoot: {
  33237. height: math.unit(1.2, "feet"),
  33238. name: "Foot (Left)",
  33239. image: {
  33240. source: "./media/characters/sykes/foot-left.svg"
  33241. }
  33242. },
  33243. rightFoot: {
  33244. height: math.unit(1.2, "feet"),
  33245. name: "Foot (Right)",
  33246. image: {
  33247. source: "./media/characters/sykes/foot-right.svg"
  33248. }
  33249. },
  33250. maw: {
  33251. height: math.unit(1.93, "feet"),
  33252. name: "Maw",
  33253. image: {
  33254. source: "./media/characters/sykes/maw.svg"
  33255. }
  33256. },
  33257. teeth: {
  33258. height: math.unit(0.51, "feet"),
  33259. name: "Teeth",
  33260. image: {
  33261. source: "./media/characters/sykes/teeth.svg"
  33262. }
  33263. },
  33264. tongue: {
  33265. height: math.unit(2.13, "feet"),
  33266. name: "Tongue",
  33267. image: {
  33268. source: "./media/characters/sykes/tongue.svg"
  33269. }
  33270. },
  33271. uvula: {
  33272. height: math.unit(0.16, "feet"),
  33273. name: "Uvula",
  33274. image: {
  33275. source: "./media/characters/sykes/uvula.svg"
  33276. }
  33277. },
  33278. collar: {
  33279. height: math.unit(0.287, "feet"),
  33280. name: "Collar",
  33281. image: {
  33282. source: "./media/characters/sykes/collar.svg"
  33283. }
  33284. },
  33285. },
  33286. [
  33287. {
  33288. name: "Shrunken",
  33289. height: math.unit(5, "inches")
  33290. },
  33291. {
  33292. name: "Normal",
  33293. height: math.unit(6 + 4 / 12, "feet"),
  33294. default: true
  33295. },
  33296. {
  33297. name: "Big",
  33298. height: math.unit(15, "feet")
  33299. },
  33300. ]
  33301. ))
  33302. characterMakers.push(() => makeCharacter(
  33303. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33304. {
  33305. front: {
  33306. height: math.unit(5 + 8/12, "feet"),
  33307. weight: math.unit(190, "lb"),
  33308. name: "Front",
  33309. image: {
  33310. source: "./media/characters/oven-otter/front.svg",
  33311. extra: 1809/1740,
  33312. bottom: 181/1990
  33313. }
  33314. },
  33315. back: {
  33316. height: math.unit(5 + 8/12, "feet"),
  33317. weight: math.unit(190, "lb"),
  33318. name: "Back",
  33319. image: {
  33320. source: "./media/characters/oven-otter/back.svg",
  33321. extra: 1709/1635,
  33322. bottom: 118/1827
  33323. }
  33324. },
  33325. hand: {
  33326. height: math.unit(1.07, "feet"),
  33327. name: "Hand",
  33328. image: {
  33329. source: "./media/characters/oven-otter/hand.svg"
  33330. }
  33331. },
  33332. beans: {
  33333. height: math.unit(1.74, "feet"),
  33334. name: "Beans",
  33335. image: {
  33336. source: "./media/characters/oven-otter/beans.svg"
  33337. }
  33338. },
  33339. },
  33340. [
  33341. {
  33342. name: "Micro",
  33343. height: math.unit(0.5, "inches")
  33344. },
  33345. {
  33346. name: "Normal",
  33347. height: math.unit(5 + 8/12, "feet"),
  33348. default: true
  33349. },
  33350. {
  33351. name: "Macro",
  33352. height: math.unit(250, "feet")
  33353. },
  33354. {
  33355. name: "Really High",
  33356. height: math.unit(420, "feet")
  33357. },
  33358. ]
  33359. ))
  33360. characterMakers.push(() => makeCharacter(
  33361. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33362. {
  33363. front: {
  33364. height: math.unit(5, "meters"),
  33365. weight: math.unit(292000000000000, "kg"),
  33366. name: "Front",
  33367. image: {
  33368. source: "./media/characters/devourer/front.svg",
  33369. extra: 1800/1733,
  33370. bottom: 211/2011
  33371. }
  33372. },
  33373. maw: {
  33374. height: math.unit(1.1, "meter"),
  33375. name: "Maw",
  33376. image: {
  33377. source: "./media/characters/devourer/maw.svg"
  33378. }
  33379. },
  33380. },
  33381. [
  33382. {
  33383. name: "Small",
  33384. height: math.unit(3, "meters")
  33385. },
  33386. {
  33387. name: "Large",
  33388. height: math.unit(5, "meters"),
  33389. default: true
  33390. },
  33391. ]
  33392. ))
  33393. characterMakers.push(() => makeCharacter(
  33394. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33395. {
  33396. front: {
  33397. height: math.unit(6, "feet"),
  33398. weight: math.unit(400, "lb"),
  33399. name: "Front",
  33400. image: {
  33401. source: "./media/characters/ellarby/front.svg",
  33402. extra: 1909/1763,
  33403. bottom: 80/1989
  33404. }
  33405. },
  33406. back: {
  33407. height: math.unit(6, "feet"),
  33408. weight: math.unit(400, "lb"),
  33409. name: "Back",
  33410. image: {
  33411. source: "./media/characters/ellarby/back.svg",
  33412. extra: 1914/1784,
  33413. bottom: 172/2086
  33414. }
  33415. },
  33416. },
  33417. [
  33418. {
  33419. name: "Mischief",
  33420. height: math.unit(18, "inches")
  33421. },
  33422. {
  33423. name: "Trouble",
  33424. height: math.unit(12, "feet")
  33425. },
  33426. {
  33427. name: "Havoc",
  33428. height: math.unit(200, "feet"),
  33429. default: true
  33430. },
  33431. {
  33432. name: "Pandemonium",
  33433. height: math.unit(1, "mile")
  33434. },
  33435. {
  33436. name: "Catastrophe",
  33437. height: math.unit(100, "miles")
  33438. },
  33439. ]
  33440. ))
  33441. characterMakers.push(() => makeCharacter(
  33442. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33443. {
  33444. front: {
  33445. height: math.unit(4.7, "meters"),
  33446. weight: math.unit(6500, "kg"),
  33447. name: "Front",
  33448. image: {
  33449. source: "./media/characters/vex/front.svg",
  33450. extra: 1288/1140,
  33451. bottom: 100/1388
  33452. }
  33453. },
  33454. },
  33455. [
  33456. {
  33457. name: "Normal",
  33458. height: math.unit(4.7, "meters"),
  33459. default: true
  33460. },
  33461. ]
  33462. ))
  33463. characterMakers.push(() => makeCharacter(
  33464. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33465. {
  33466. normal: {
  33467. height: math.unit(6, "feet"),
  33468. weight: math.unit(350, "lb"),
  33469. name: "Normal",
  33470. image: {
  33471. source: "./media/characters/teshy/normal.svg",
  33472. extra: 1795/1735,
  33473. bottom: 16/1811
  33474. }
  33475. },
  33476. monsterFront: {
  33477. height: math.unit(12, "feet"),
  33478. weight: math.unit(4700, "lb"),
  33479. name: "Monster (Front)",
  33480. image: {
  33481. source: "./media/characters/teshy/monster-front.svg",
  33482. extra: 2042/2034,
  33483. bottom: 128/2170
  33484. }
  33485. },
  33486. monsterSide: {
  33487. height: math.unit(12, "feet"),
  33488. weight: math.unit(4700, "lb"),
  33489. name: "Monster (Side)",
  33490. image: {
  33491. source: "./media/characters/teshy/monster-side.svg",
  33492. extra: 2067/2056,
  33493. bottom: 70/2137
  33494. }
  33495. },
  33496. monsterBack: {
  33497. height: math.unit(12, "feet"),
  33498. weight: math.unit(4700, "lb"),
  33499. name: "Monster (Back)",
  33500. image: {
  33501. source: "./media/characters/teshy/monster-back.svg",
  33502. extra: 1921/1914,
  33503. bottom: 171/2092
  33504. }
  33505. },
  33506. },
  33507. [
  33508. {
  33509. name: "Normal",
  33510. height: math.unit(6, "feet"),
  33511. default: true
  33512. },
  33513. ]
  33514. ))
  33515. characterMakers.push(() => makeCharacter(
  33516. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33517. {
  33518. front: {
  33519. height: math.unit(6, "feet"),
  33520. name: "Front",
  33521. image: {
  33522. source: "./media/characters/ramey/front.svg",
  33523. extra: 790/787,
  33524. bottom: 27/817
  33525. }
  33526. },
  33527. },
  33528. [
  33529. {
  33530. name: "Normal",
  33531. height: math.unit(6, "feet"),
  33532. default: true
  33533. },
  33534. ]
  33535. ))
  33536. characterMakers.push(() => makeCharacter(
  33537. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33538. {
  33539. front: {
  33540. height: math.unit(5 + 5/12, "feet"),
  33541. weight: math.unit(120, "lb"),
  33542. name: "Front",
  33543. image: {
  33544. source: "./media/characters/phirae/front.svg",
  33545. extra: 2491/2436,
  33546. bottom: 38/2529
  33547. }
  33548. },
  33549. },
  33550. [
  33551. {
  33552. name: "Normal",
  33553. height: math.unit(5 + 5/12, "feet"),
  33554. default: true
  33555. },
  33556. ]
  33557. ))
  33558. characterMakers.push(() => makeCharacter(
  33559. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33560. {
  33561. front: {
  33562. height: math.unit(6, "feet"),
  33563. weight: math.unit(150, "lb"),
  33564. name: "Front",
  33565. image: {
  33566. source: "./media/characters/stagglas/front.svg",
  33567. extra: 962/882,
  33568. bottom: 53/1015
  33569. }
  33570. },
  33571. },
  33572. [
  33573. {
  33574. name: "Normal",
  33575. height: math.unit(5 + 3/12, "feet"),
  33576. default: true
  33577. },
  33578. ]
  33579. ))
  33580. characterMakers.push(() => makeCharacter(
  33581. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33582. {
  33583. front: {
  33584. height: math.unit(5 + 4/12, "feet"),
  33585. weight: math.unit(145, "lb"),
  33586. name: "Front",
  33587. image: {
  33588. source: "./media/characters/starra/front.svg",
  33589. extra: 1790/1691,
  33590. bottom: 91/1881
  33591. }
  33592. },
  33593. },
  33594. [
  33595. {
  33596. name: "Normal",
  33597. height: math.unit(5 + 4/12, "feet"),
  33598. default: true
  33599. },
  33600. ]
  33601. ))
  33602. characterMakers.push(() => makeCharacter(
  33603. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33604. {
  33605. front: {
  33606. height: math.unit(2.2, "meters"),
  33607. name: "Front",
  33608. image: {
  33609. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33610. extra: 1194/1005,
  33611. bottom: 25/1219
  33612. }
  33613. },
  33614. },
  33615. [
  33616. {
  33617. name: "Normal",
  33618. height: math.unit(2.2, "meters"),
  33619. default: true
  33620. },
  33621. ]
  33622. ))
  33623. characterMakers.push(() => makeCharacter(
  33624. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33625. {
  33626. side: {
  33627. height: math.unit(8 + 2/12, "feet"),
  33628. weight: math.unit(1240, "lb"),
  33629. name: "Side",
  33630. image: {
  33631. source: "./media/characters/mika-valentine/side.svg",
  33632. extra: 2670/2501,
  33633. bottom: 250/2920
  33634. }
  33635. },
  33636. },
  33637. [
  33638. {
  33639. name: "Normal",
  33640. height: math.unit(8 + 2/12, "feet"),
  33641. default: true
  33642. },
  33643. ]
  33644. ))
  33645. characterMakers.push(() => makeCharacter(
  33646. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33647. {
  33648. front: {
  33649. height: math.unit(7 + 2/12, "feet"),
  33650. name: "Front",
  33651. image: {
  33652. source: "./media/characters/xoltol/front.svg",
  33653. extra: 2212/2124,
  33654. bottom: 84/2296
  33655. }
  33656. },
  33657. side: {
  33658. height: math.unit(7 + 2/12, "feet"),
  33659. name: "Side",
  33660. image: {
  33661. source: "./media/characters/xoltol/side.svg",
  33662. extra: 2273/2197,
  33663. bottom: 26/2299
  33664. }
  33665. },
  33666. hand: {
  33667. height: math.unit(2.5, "feet"),
  33668. name: "Hand",
  33669. image: {
  33670. source: "./media/characters/xoltol/hand.svg"
  33671. }
  33672. },
  33673. },
  33674. [
  33675. {
  33676. name: "Small-ish",
  33677. height: math.unit(5 + 11/12, "feet")
  33678. },
  33679. {
  33680. name: "Normal",
  33681. height: math.unit(7 + 2/12, "feet")
  33682. },
  33683. {
  33684. name: "\"Macro\"",
  33685. height: math.unit(14 + 9/12, "feet"),
  33686. default: true
  33687. },
  33688. {
  33689. name: "Alternate Height",
  33690. height: math.unit(20, "feet")
  33691. },
  33692. {
  33693. name: "Actually Macro",
  33694. height: math.unit(100, "feet")
  33695. },
  33696. ]
  33697. ))
  33698. characterMakers.push(() => makeCharacter(
  33699. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33700. {
  33701. front: {
  33702. height: math.unit(5 + 2/12, "feet"),
  33703. name: "Front",
  33704. image: {
  33705. source: "./media/characters/kotetsu-redwood/front.svg",
  33706. extra: 1053/942,
  33707. bottom: 60/1113
  33708. }
  33709. },
  33710. },
  33711. [
  33712. {
  33713. name: "Normal",
  33714. height: math.unit(5 + 2/12, "feet"),
  33715. default: true
  33716. },
  33717. ]
  33718. ))
  33719. characterMakers.push(() => makeCharacter(
  33720. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33721. {
  33722. front: {
  33723. height: math.unit(2.4, "meters"),
  33724. weight: math.unit(125, "kg"),
  33725. name: "Front",
  33726. image: {
  33727. source: "./media/characters/lilith/front.svg",
  33728. extra: 1590/1513,
  33729. bottom: 203/1793
  33730. }
  33731. },
  33732. },
  33733. [
  33734. {
  33735. name: "Humanoid",
  33736. height: math.unit(2.4, "meters")
  33737. },
  33738. {
  33739. name: "Normal",
  33740. height: math.unit(6, "meters"),
  33741. default: true
  33742. },
  33743. {
  33744. name: "Largest",
  33745. height: math.unit(55, "meters")
  33746. },
  33747. ]
  33748. ))
  33749. characterMakers.push(() => makeCharacter(
  33750. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33751. {
  33752. front: {
  33753. height: math.unit(8 + 4/12, "feet"),
  33754. weight: math.unit(535, "lb"),
  33755. name: "Front",
  33756. image: {
  33757. source: "./media/characters/beh'kah-bolger/front.svg",
  33758. extra: 1660/1603,
  33759. bottom: 37/1697
  33760. }
  33761. },
  33762. },
  33763. [
  33764. {
  33765. name: "Normal",
  33766. height: math.unit(8 + 4/12, "feet"),
  33767. default: true
  33768. },
  33769. {
  33770. name: "Kaiju",
  33771. height: math.unit(250, "feet")
  33772. },
  33773. {
  33774. name: "Still Growing",
  33775. height: math.unit(10, "miles")
  33776. },
  33777. {
  33778. name: "Continental",
  33779. height: math.unit(5000, "miles")
  33780. },
  33781. {
  33782. name: "Final Form",
  33783. height: math.unit(2500000, "miles")
  33784. },
  33785. ]
  33786. ))
  33787. characterMakers.push(() => makeCharacter(
  33788. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33789. {
  33790. front: {
  33791. height: math.unit(7 + 2/12, "feet"),
  33792. weight: math.unit(230, "kg"),
  33793. name: "Front",
  33794. image: {
  33795. source: "./media/characters/tatyana-milewska/front.svg",
  33796. extra: 1199/1150,
  33797. bottom: 86/1285
  33798. }
  33799. },
  33800. },
  33801. [
  33802. {
  33803. name: "Normal",
  33804. height: math.unit(7 + 2/12, "feet"),
  33805. default: true
  33806. },
  33807. {
  33808. name: "Big",
  33809. height: math.unit(12, "feet")
  33810. },
  33811. {
  33812. name: "Minimacro",
  33813. height: math.unit(20, "feet")
  33814. },
  33815. {
  33816. name: "Macro",
  33817. height: math.unit(120, "feet")
  33818. },
  33819. ]
  33820. ))
  33821. characterMakers.push(() => makeCharacter(
  33822. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33823. {
  33824. front: {
  33825. height: math.unit(7 + 8/12, "feet"),
  33826. weight: math.unit(152, "kg"),
  33827. name: "Front",
  33828. image: {
  33829. source: "./media/characters/helen-arri/front.svg",
  33830. extra: 440/423,
  33831. bottom: 14/454
  33832. }
  33833. },
  33834. back: {
  33835. height: math.unit(7 + 8/12, "feet"),
  33836. weight: math.unit(152, "kg"),
  33837. name: "Back",
  33838. image: {
  33839. source: "./media/characters/helen-arri/back.svg",
  33840. extra: 443/426,
  33841. bottom: 8/451
  33842. }
  33843. },
  33844. },
  33845. [
  33846. {
  33847. name: "Normal",
  33848. height: math.unit(7 + 8/12, "feet"),
  33849. default: true
  33850. },
  33851. {
  33852. name: "Big",
  33853. height: math.unit(14, "feet")
  33854. },
  33855. {
  33856. name: "Minimacro",
  33857. height: math.unit(24, "feet")
  33858. },
  33859. {
  33860. name: "Macro",
  33861. height: math.unit(140, "feet")
  33862. },
  33863. ]
  33864. ))
  33865. characterMakers.push(() => makeCharacter(
  33866. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33867. {
  33868. front: {
  33869. height: math.unit(6, "meters"),
  33870. name: "Front",
  33871. image: {
  33872. source: "./media/characters/ehanu-rehu/front.svg",
  33873. extra: 1800/1800,
  33874. bottom: 59/1859
  33875. }
  33876. },
  33877. },
  33878. [
  33879. {
  33880. name: "Normal",
  33881. height: math.unit(6, "meters"),
  33882. default: true
  33883. },
  33884. ]
  33885. ))
  33886. characterMakers.push(() => makeCharacter(
  33887. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33888. {
  33889. front: {
  33890. height: math.unit(7 + 3/12, "feet"),
  33891. name: "Front",
  33892. image: {
  33893. source: "./media/characters/renholder/front.svg",
  33894. extra: 3096/2960,
  33895. bottom: 250/3346
  33896. }
  33897. },
  33898. },
  33899. [
  33900. {
  33901. name: "Normal Bat",
  33902. height: math.unit(7 + 3/12, "feet"),
  33903. default: true
  33904. },
  33905. {
  33906. name: "Slightly Tall Bat",
  33907. height: math.unit(100, "feet")
  33908. },
  33909. {
  33910. name: "Big Bat",
  33911. height: math.unit(1000, "feet")
  33912. },
  33913. {
  33914. name: "City-Sized Bat",
  33915. height: math.unit(200000, "feet")
  33916. },
  33917. {
  33918. name: "Bigger Bat",
  33919. height: math.unit(10000, "miles")
  33920. },
  33921. {
  33922. name: "Solar Sized Bat",
  33923. height: math.unit(100, "AU")
  33924. },
  33925. {
  33926. name: "Galactic Bat",
  33927. height: math.unit(200000, "lightyears")
  33928. },
  33929. {
  33930. name: "Universally Known Bat",
  33931. height: math.unit(1, "universe")
  33932. },
  33933. ]
  33934. ))
  33935. characterMakers.push(() => makeCharacter(
  33936. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33937. {
  33938. front: {
  33939. height: math.unit(6 + 11/12, "feet"),
  33940. weight: math.unit(250, "lb"),
  33941. name: "Front",
  33942. image: {
  33943. source: "./media/characters/cookiecat/front.svg",
  33944. extra: 893/827,
  33945. bottom: 14/907
  33946. }
  33947. },
  33948. },
  33949. [
  33950. {
  33951. name: "Micro",
  33952. height: math.unit(3, "inches")
  33953. },
  33954. {
  33955. name: "Normal",
  33956. height: math.unit(6 + 11/12, "feet"),
  33957. default: true
  33958. },
  33959. {
  33960. name: "Macro",
  33961. height: math.unit(100, "feet")
  33962. },
  33963. {
  33964. name: "Macro+",
  33965. height: math.unit(404, "feet")
  33966. },
  33967. {
  33968. name: "Megamacro",
  33969. height: math.unit(165, "miles")
  33970. },
  33971. {
  33972. name: "Planetary",
  33973. height: math.unit(4600, "miles")
  33974. },
  33975. ]
  33976. ))
  33977. characterMakers.push(() => makeCharacter(
  33978. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33979. {
  33980. front: {
  33981. height: math.unit(10 + 3/12, "feet"),
  33982. weight: math.unit(1500, "lb"),
  33983. name: "Front",
  33984. image: {
  33985. source: "./media/characters/tux-kusanagi/front.svg",
  33986. extra: 944/840,
  33987. bottom: 39/983
  33988. }
  33989. },
  33990. back: {
  33991. height: math.unit(10 + 3/12, "feet"),
  33992. weight: math.unit(1500, "lb"),
  33993. name: "Back",
  33994. image: {
  33995. source: "./media/characters/tux-kusanagi/back.svg",
  33996. extra: 941/842,
  33997. bottom: 28/969
  33998. }
  33999. },
  34000. rump: {
  34001. height: math.unit(5.25, "feet"),
  34002. name: "Rump",
  34003. image: {
  34004. source: "./media/characters/tux-kusanagi/rump.svg"
  34005. }
  34006. },
  34007. beak: {
  34008. height: math.unit(1.54, "feet"),
  34009. name: "Beak",
  34010. image: {
  34011. source: "./media/characters/tux-kusanagi/beak.svg"
  34012. }
  34013. },
  34014. },
  34015. [
  34016. {
  34017. name: "Normal",
  34018. height: math.unit(10 + 3/12, "feet"),
  34019. default: true
  34020. },
  34021. ]
  34022. ))
  34023. characterMakers.push(() => makeCharacter(
  34024. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34025. {
  34026. front: {
  34027. height: math.unit(58, "feet"),
  34028. weight: math.unit(200, "tons"),
  34029. name: "Front",
  34030. image: {
  34031. source: "./media/characters/uzarmazari/front.svg",
  34032. extra: 1575/1455,
  34033. bottom: 152/1727
  34034. }
  34035. },
  34036. back: {
  34037. height: math.unit(58, "feet"),
  34038. weight: math.unit(200, "tons"),
  34039. name: "Back",
  34040. image: {
  34041. source: "./media/characters/uzarmazari/back.svg",
  34042. extra: 1585/1510,
  34043. bottom: 157/1742
  34044. }
  34045. },
  34046. head: {
  34047. height: math.unit(26, "feet"),
  34048. name: "Head",
  34049. image: {
  34050. source: "./media/characters/uzarmazari/head.svg"
  34051. }
  34052. },
  34053. },
  34054. [
  34055. {
  34056. name: "Normal",
  34057. height: math.unit(58, "feet"),
  34058. default: true
  34059. },
  34060. ]
  34061. ))
  34062. characterMakers.push(() => makeCharacter(
  34063. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34064. {
  34065. side: {
  34066. height: math.unit(15, "feet"),
  34067. name: "Side",
  34068. image: {
  34069. source: "./media/characters/akitu/side.svg",
  34070. extra: 1421/1321,
  34071. bottom: 157/1578
  34072. }
  34073. },
  34074. front: {
  34075. height: math.unit(15, "feet"),
  34076. name: "Front",
  34077. image: {
  34078. source: "./media/characters/akitu/front.svg",
  34079. extra: 1435/1326,
  34080. bottom: 232/1667
  34081. }
  34082. },
  34083. },
  34084. [
  34085. {
  34086. name: "Normal",
  34087. height: math.unit(15, "feet"),
  34088. default: true
  34089. },
  34090. ]
  34091. ))
  34092. characterMakers.push(() => makeCharacter(
  34093. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34094. {
  34095. front: {
  34096. height: math.unit(10 + 8/12, "feet"),
  34097. name: "Front",
  34098. image: {
  34099. source: "./media/characters/azalie-croixland/front.svg",
  34100. extra: 1972/1856,
  34101. bottom: 31/2003
  34102. }
  34103. },
  34104. },
  34105. [
  34106. {
  34107. name: "Original Height",
  34108. height: math.unit(5 + 4/12, "feet")
  34109. },
  34110. {
  34111. name: "Normal Height",
  34112. height: math.unit(10 + 8/12, "feet"),
  34113. default: true
  34114. },
  34115. ]
  34116. ))
  34117. characterMakers.push(() => makeCharacter(
  34118. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34119. {
  34120. side: {
  34121. height: math.unit(7 + 1/12, "feet"),
  34122. weight: math.unit(245, "lb"),
  34123. name: "Side",
  34124. image: {
  34125. source: "./media/characters/kavus-kazian/side.svg",
  34126. extra: 349/342,
  34127. bottom: 15/364
  34128. }
  34129. },
  34130. },
  34131. [
  34132. {
  34133. name: "Normal",
  34134. height: math.unit(7 + 1/12, "feet"),
  34135. default: true
  34136. },
  34137. ]
  34138. ))
  34139. characterMakers.push(() => makeCharacter(
  34140. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34141. {
  34142. normal: {
  34143. height: math.unit(5 + 11/12, "feet"),
  34144. name: "Normal",
  34145. image: {
  34146. source: "./media/characters/moonlight-rose/normal.svg",
  34147. extra: 1979/1835,
  34148. bottom: 14/1993
  34149. }
  34150. },
  34151. demon: {
  34152. height: math.unit(5, "km"),
  34153. name: "Demon",
  34154. image: {
  34155. source: "./media/characters/moonlight-rose/demon.svg",
  34156. extra: 986/916,
  34157. bottom: 28/1014
  34158. }
  34159. },
  34160. },
  34161. [
  34162. {
  34163. name: "\"Natural\" height",
  34164. height: math.unit(5 + 11/12, "feet")
  34165. },
  34166. {
  34167. name: "Comfortable Size",
  34168. height: math.unit(40, "meters")
  34169. },
  34170. {
  34171. name: "Common Size",
  34172. height: math.unit(50, "km"),
  34173. default: true
  34174. },
  34175. {
  34176. name: "Demonic",
  34177. height: math.unit(1.24415e+21, "meters")
  34178. },
  34179. ]
  34180. ))
  34181. characterMakers.push(() => makeCharacter(
  34182. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34183. {
  34184. front: {
  34185. height: math.unit(16, "feet"),
  34186. weight: math.unit(610, "kg"),
  34187. name: "Front",
  34188. image: {
  34189. source: "./media/characters/huckle/front.svg",
  34190. extra: 1731/1625,
  34191. bottom: 33/1764
  34192. }
  34193. },
  34194. back: {
  34195. height: math.unit(16, "feet"),
  34196. weight: math.unit(610, "kg"),
  34197. name: "Back",
  34198. image: {
  34199. source: "./media/characters/huckle/back.svg",
  34200. extra: 1738/1651,
  34201. bottom: 37/1775
  34202. }
  34203. },
  34204. laughing: {
  34205. height: math.unit(3.75, "feet"),
  34206. name: "Laughing",
  34207. image: {
  34208. source: "./media/characters/huckle/laughing.svg"
  34209. }
  34210. },
  34211. angry: {
  34212. height: math.unit(4.15, "feet"),
  34213. name: "Angry",
  34214. image: {
  34215. source: "./media/characters/huckle/angry.svg"
  34216. }
  34217. },
  34218. },
  34219. [
  34220. {
  34221. name: "Normal",
  34222. height: math.unit(16, "feet"),
  34223. default: true
  34224. },
  34225. {
  34226. name: "Mini Macro",
  34227. height: math.unit(463, "feet")
  34228. },
  34229. {
  34230. name: "Macro",
  34231. height: math.unit(1680, "meters")
  34232. },
  34233. {
  34234. name: "Mega Macro",
  34235. height: math.unit(175, "km")
  34236. },
  34237. {
  34238. name: "Terra Macro",
  34239. height: math.unit(32, "gigameters")
  34240. },
  34241. {
  34242. name: "Multiverse+",
  34243. height: math.unit(2.56e23, "yottameters")
  34244. },
  34245. ]
  34246. ))
  34247. characterMakers.push(() => makeCharacter(
  34248. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34249. {
  34250. front: {
  34251. height: math.unit(6 + 9/12, "feet"),
  34252. weight: math.unit(280, "lb"),
  34253. name: "Front",
  34254. image: {
  34255. source: "./media/characters/candy/front.svg",
  34256. extra: 234/217,
  34257. bottom: 11/245
  34258. }
  34259. },
  34260. },
  34261. [
  34262. {
  34263. name: "Really Small",
  34264. height: math.unit(0.1, "nm")
  34265. },
  34266. {
  34267. name: "Micro",
  34268. height: math.unit(2, "inches")
  34269. },
  34270. {
  34271. name: "Normal",
  34272. height: math.unit(6 + 9/12, "feet"),
  34273. default: true
  34274. },
  34275. {
  34276. name: "Small Macro",
  34277. height: math.unit(69, "feet")
  34278. },
  34279. {
  34280. name: "Macro",
  34281. height: math.unit(160, "feet")
  34282. },
  34283. {
  34284. name: "Megamacro",
  34285. height: math.unit(22000, "miles")
  34286. },
  34287. {
  34288. name: "Gigamacro",
  34289. height: math.unit(50000, "miles")
  34290. },
  34291. ]
  34292. ))
  34293. characterMakers.push(() => makeCharacter(
  34294. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34295. {
  34296. front: {
  34297. height: math.unit(4, "feet"),
  34298. weight: math.unit(90, "lb"),
  34299. name: "Front",
  34300. image: {
  34301. source: "./media/characters/joey-mcdonald/front.svg",
  34302. extra: 1059/852,
  34303. bottom: 33/1092
  34304. }
  34305. },
  34306. back: {
  34307. height: math.unit(4, "feet"),
  34308. weight: math.unit(90, "lb"),
  34309. name: "Back",
  34310. image: {
  34311. source: "./media/characters/joey-mcdonald/back.svg",
  34312. extra: 1077/879,
  34313. bottom: 5/1082
  34314. }
  34315. },
  34316. },
  34317. [
  34318. {
  34319. name: "Normal",
  34320. height: math.unit(4, "feet"),
  34321. default: true
  34322. },
  34323. ]
  34324. ))
  34325. characterMakers.push(() => makeCharacter(
  34326. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34327. {
  34328. front: {
  34329. height: math.unit(12 + 6/12, "feet"),
  34330. name: "Front",
  34331. image: {
  34332. source: "./media/characters/kass-lockheed/front.svg",
  34333. extra: 354/343,
  34334. bottom: 9/363
  34335. }
  34336. },
  34337. back: {
  34338. height: math.unit(12 + 6/12, "feet"),
  34339. name: "Back",
  34340. image: {
  34341. source: "./media/characters/kass-lockheed/back.svg",
  34342. extra: 364/352,
  34343. bottom: 3/367
  34344. }
  34345. },
  34346. dick: {
  34347. height: math.unit(3.12, "feet"),
  34348. name: "Dick",
  34349. image: {
  34350. source: "./media/characters/kass-lockheed/dick.svg"
  34351. }
  34352. },
  34353. head: {
  34354. height: math.unit(2.6, "feet"),
  34355. name: "Head",
  34356. image: {
  34357. source: "./media/characters/kass-lockheed/head.svg"
  34358. }
  34359. },
  34360. bleh: {
  34361. height: math.unit(2.85, "feet"),
  34362. name: "Bleh",
  34363. image: {
  34364. source: "./media/characters/kass-lockheed/bleh.svg"
  34365. }
  34366. },
  34367. smug: {
  34368. height: math.unit(2.85, "feet"),
  34369. name: "Smug",
  34370. image: {
  34371. source: "./media/characters/kass-lockheed/smug.svg"
  34372. }
  34373. },
  34374. },
  34375. [
  34376. {
  34377. name: "Normal",
  34378. height: math.unit(12 + 6/12, "feet"),
  34379. default: true
  34380. },
  34381. ]
  34382. ))
  34383. characterMakers.push(() => makeCharacter(
  34384. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34385. {
  34386. front: {
  34387. height: math.unit(6 + 2/12, "feet"),
  34388. name: "Front",
  34389. image: {
  34390. source: "./media/characters/taylor/front.svg",
  34391. extra: 639/495,
  34392. bottom: 12/651
  34393. }
  34394. },
  34395. },
  34396. [
  34397. {
  34398. name: "Normal",
  34399. height: math.unit(6 + 2/12, "feet"),
  34400. default: true
  34401. },
  34402. {
  34403. name: "Big",
  34404. height: math.unit(15, "feet")
  34405. },
  34406. {
  34407. name: "Lorg",
  34408. height: math.unit(80, "feet")
  34409. },
  34410. {
  34411. name: "Too Lorg",
  34412. height: math.unit(120, "feet")
  34413. },
  34414. ]
  34415. ))
  34416. characterMakers.push(() => makeCharacter(
  34417. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34418. {
  34419. front: {
  34420. height: math.unit(15, "feet"),
  34421. name: "Front",
  34422. image: {
  34423. source: "./media/characters/kaizer/front.svg",
  34424. extra: 1612/1436,
  34425. bottom: 43/1655
  34426. }
  34427. },
  34428. },
  34429. [
  34430. {
  34431. name: "Normal",
  34432. height: math.unit(15, "feet"),
  34433. default: true
  34434. },
  34435. ]
  34436. ))
  34437. characterMakers.push(() => makeCharacter(
  34438. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34439. {
  34440. front: {
  34441. height: math.unit(2, "feet"),
  34442. weight: math.unit(30, "lb"),
  34443. name: "Front",
  34444. image: {
  34445. source: "./media/characters/sandy/front.svg",
  34446. extra: 1439/1307,
  34447. bottom: 194/1633
  34448. }
  34449. },
  34450. },
  34451. [
  34452. {
  34453. name: "Normal",
  34454. height: math.unit(2, "feet"),
  34455. default: true
  34456. },
  34457. ]
  34458. ))
  34459. characterMakers.push(() => makeCharacter(
  34460. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34461. {
  34462. front: {
  34463. height: math.unit(3, "feet"),
  34464. name: "Front",
  34465. image: {
  34466. source: "./media/characters/mellvi/front.svg",
  34467. extra: 1831/1630,
  34468. bottom: 58/1889
  34469. }
  34470. },
  34471. },
  34472. [
  34473. {
  34474. name: "Normal",
  34475. height: math.unit(3, "feet"),
  34476. default: true
  34477. },
  34478. ]
  34479. ))
  34480. characterMakers.push(() => makeCharacter(
  34481. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34482. {
  34483. front: {
  34484. height: math.unit(5 + 11/12, "feet"),
  34485. weight: math.unit(200, "lb"),
  34486. name: "Front",
  34487. image: {
  34488. source: "./media/characters/shirou/front.svg",
  34489. extra: 2491/2383,
  34490. bottom: 189/2680
  34491. }
  34492. },
  34493. back: {
  34494. height: math.unit(5 + 11/12, "feet"),
  34495. weight: math.unit(200, "lb"),
  34496. name: "Back",
  34497. image: {
  34498. source: "./media/characters/shirou/back.svg",
  34499. extra: 2554/2450,
  34500. bottom: 76/2630
  34501. }
  34502. },
  34503. },
  34504. [
  34505. {
  34506. name: "Normal",
  34507. height: math.unit(5 + 11/12, "feet"),
  34508. default: true
  34509. },
  34510. ]
  34511. ))
  34512. characterMakers.push(() => makeCharacter(
  34513. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34514. {
  34515. front: {
  34516. height: math.unit(6 + 3/12, "feet"),
  34517. weight: math.unit(177, "lb"),
  34518. name: "Front",
  34519. image: {
  34520. source: "./media/characters/noryu/front.svg",
  34521. extra: 973/885,
  34522. bottom: 10/983
  34523. }
  34524. },
  34525. },
  34526. [
  34527. {
  34528. name: "Normal",
  34529. height: math.unit(6 + 3/12, "feet"),
  34530. default: true
  34531. },
  34532. ]
  34533. ))
  34534. characterMakers.push(() => makeCharacter(
  34535. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34536. {
  34537. front: {
  34538. height: math.unit(5 + 6/12, "feet"),
  34539. weight: math.unit(170, "lb"),
  34540. name: "Front",
  34541. image: {
  34542. source: "./media/characters/mevolas-rubenido/front.svg",
  34543. extra: 2109/1901,
  34544. bottom: 96/2205
  34545. }
  34546. },
  34547. },
  34548. [
  34549. {
  34550. name: "Normal",
  34551. height: math.unit(5 + 6/12, "feet"),
  34552. default: true
  34553. },
  34554. ]
  34555. ))
  34556. characterMakers.push(() => makeCharacter(
  34557. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34558. {
  34559. front: {
  34560. height: math.unit(100, "feet"),
  34561. name: "Front",
  34562. image: {
  34563. source: "./media/characters/dee/front.svg",
  34564. extra: 2153/2036,
  34565. bottom: 59/2212
  34566. }
  34567. },
  34568. back: {
  34569. height: math.unit(100, "feet"),
  34570. name: "Back",
  34571. image: {
  34572. source: "./media/characters/dee/back.svg",
  34573. extra: 2183/2058,
  34574. bottom: 75/2258
  34575. }
  34576. },
  34577. foot: {
  34578. height: math.unit(19.43, "feet"),
  34579. name: "Foot",
  34580. image: {
  34581. source: "./media/characters/dee/foot.svg"
  34582. }
  34583. },
  34584. hoof: {
  34585. height: math.unit(20.6, "feet"),
  34586. name: "Hoof",
  34587. image: {
  34588. source: "./media/characters/dee/hoof.svg"
  34589. }
  34590. },
  34591. },
  34592. [
  34593. {
  34594. name: "Macro",
  34595. height: math.unit(100, "feet"),
  34596. default: true
  34597. },
  34598. ]
  34599. ))
  34600. characterMakers.push(() => makeCharacter(
  34601. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34602. {
  34603. front: {
  34604. height: math.unit(5 + 6/12, "feet"),
  34605. name: "Front",
  34606. image: {
  34607. source: "./media/characters/teh/front.svg",
  34608. extra: 1002/847,
  34609. bottom: 62/1064
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Normal",
  34616. height: math.unit(5 + 6/12, "feet"),
  34617. default: true
  34618. },
  34619. ]
  34620. ))
  34621. characterMakers.push(() => makeCharacter(
  34622. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34623. {
  34624. side: {
  34625. height: math.unit(6 + 1/12, "feet"),
  34626. weight: math.unit(204, "lb"),
  34627. name: "Side",
  34628. image: {
  34629. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34630. extra: 974/775,
  34631. bottom: 169/1143
  34632. }
  34633. },
  34634. sitting: {
  34635. height: math.unit(6 + 2/12, "feet"),
  34636. weight: math.unit(204, "lb"),
  34637. name: "Sitting",
  34638. image: {
  34639. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34640. extra: 1175/964,
  34641. bottom: 378/1553
  34642. }
  34643. },
  34644. },
  34645. [
  34646. {
  34647. name: "Normal",
  34648. height: math.unit(6 + 1/12, "feet"),
  34649. default: true
  34650. },
  34651. ]
  34652. ))
  34653. characterMakers.push(() => makeCharacter(
  34654. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34655. {
  34656. front: {
  34657. height: math.unit(6, "inches"),
  34658. name: "Front",
  34659. image: {
  34660. source: "./media/characters/tululi/front.svg",
  34661. extra: 1997/1876,
  34662. bottom: 20/2017
  34663. }
  34664. },
  34665. },
  34666. [
  34667. {
  34668. name: "Normal",
  34669. height: math.unit(6, "inches"),
  34670. default: true
  34671. },
  34672. ]
  34673. ))
  34674. characterMakers.push(() => makeCharacter(
  34675. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34676. {
  34677. front: {
  34678. height: math.unit(4 + 1/12, "feet"),
  34679. name: "Front",
  34680. image: {
  34681. source: "./media/characters/star/front.svg",
  34682. extra: 1493/1189,
  34683. bottom: 48/1541
  34684. }
  34685. },
  34686. },
  34687. [
  34688. {
  34689. name: "Normal",
  34690. height: math.unit(4 + 1/12, "feet"),
  34691. default: true
  34692. },
  34693. ]
  34694. ))
  34695. characterMakers.push(() => makeCharacter(
  34696. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34697. {
  34698. front: {
  34699. height: math.unit(6 + 3/12, "feet"),
  34700. name: "Front",
  34701. image: {
  34702. source: "./media/characters/comet/front.svg",
  34703. extra: 1681/1462,
  34704. bottom: 26/1707
  34705. }
  34706. },
  34707. },
  34708. [
  34709. {
  34710. name: "Normal",
  34711. height: math.unit(6 + 3/12, "feet"),
  34712. default: true
  34713. },
  34714. ]
  34715. ))
  34716. characterMakers.push(() => makeCharacter(
  34717. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34718. {
  34719. front: {
  34720. height: math.unit(950, "feet"),
  34721. name: "Front",
  34722. image: {
  34723. source: "./media/characters/vortex/front.svg",
  34724. extra: 1497/1434,
  34725. bottom: 56/1553
  34726. }
  34727. },
  34728. maw: {
  34729. height: math.unit(285, "feet"),
  34730. name: "Maw",
  34731. image: {
  34732. source: "./media/characters/vortex/maw.svg"
  34733. }
  34734. },
  34735. },
  34736. [
  34737. {
  34738. name: "Macro",
  34739. height: math.unit(950, "feet"),
  34740. default: true
  34741. },
  34742. ]
  34743. ))
  34744. characterMakers.push(() => makeCharacter(
  34745. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34746. {
  34747. front: {
  34748. height: math.unit(600, "feet"),
  34749. weight: math.unit(0.02, "grams"),
  34750. name: "Front",
  34751. image: {
  34752. source: "./media/characters/doodle/front.svg",
  34753. extra: 1578/1413,
  34754. bottom: 37/1615
  34755. }
  34756. },
  34757. },
  34758. [
  34759. {
  34760. name: "Macro",
  34761. height: math.unit(600, "feet"),
  34762. default: true
  34763. },
  34764. ]
  34765. ))
  34766. characterMakers.push(() => makeCharacter(
  34767. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34768. {
  34769. front: {
  34770. height: math.unit(6 + 6/12, "feet"),
  34771. name: "Front",
  34772. image: {
  34773. source: "./media/characters/jai/front.svg",
  34774. extra: 1645/1534,
  34775. bottom: 115/1760
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Normal",
  34782. height: math.unit(6 + 6/12, "feet"),
  34783. default: true
  34784. },
  34785. ]
  34786. ))
  34787. characterMakers.push(() => makeCharacter(
  34788. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34789. {
  34790. front: {
  34791. height: math.unit(6 + 8/12, "feet"),
  34792. name: "Front",
  34793. image: {
  34794. source: "./media/characters/pixel/front.svg",
  34795. extra: 1900/1735,
  34796. bottom: 63/1963
  34797. }
  34798. },
  34799. },
  34800. [
  34801. {
  34802. name: "Normal",
  34803. height: math.unit(6 + 8/12, "feet"),
  34804. default: true
  34805. },
  34806. ]
  34807. ))
  34808. characterMakers.push(() => makeCharacter(
  34809. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34810. {
  34811. front: {
  34812. height: math.unit(4 + 11/12, "feet"),
  34813. weight: math.unit(111, "lb"),
  34814. name: "Front",
  34815. image: {
  34816. source: "./media/characters/rhett/front.svg",
  34817. extra: 1682/1586,
  34818. bottom: 92/1774
  34819. }
  34820. },
  34821. },
  34822. [
  34823. {
  34824. name: "Mini",
  34825. height: math.unit(1 + 1/12, "feet")
  34826. },
  34827. {
  34828. name: "Normal",
  34829. height: math.unit(4 + 11/12, "feet"),
  34830. default: true
  34831. },
  34832. ]
  34833. ))
  34834. characterMakers.push(() => makeCharacter(
  34835. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34836. {
  34837. front: {
  34838. height: math.unit(3 + 3/12, "feet"),
  34839. name: "Front",
  34840. image: {
  34841. source: "./media/characters/penny/front.svg",
  34842. extra: 1406/1311,
  34843. bottom: 26/1432
  34844. }
  34845. },
  34846. },
  34847. [
  34848. {
  34849. name: "Normal",
  34850. height: math.unit(3 + 3/12, "feet"),
  34851. default: true
  34852. },
  34853. ]
  34854. ))
  34855. characterMakers.push(() => makeCharacter(
  34856. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34857. {
  34858. front: {
  34859. height: math.unit(4 + 11/12, "feet"),
  34860. name: "Front",
  34861. image: {
  34862. source: "./media/characters/monty/front.svg",
  34863. extra: 1479/1209,
  34864. bottom: 0/1479
  34865. }
  34866. },
  34867. },
  34868. [
  34869. {
  34870. name: "Normal",
  34871. height: math.unit(4 + 11/12, "feet"),
  34872. default: true
  34873. },
  34874. ]
  34875. ))
  34876. characterMakers.push(() => makeCharacter(
  34877. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34878. {
  34879. front: {
  34880. height: math.unit(8 + 4/12, "feet"),
  34881. name: "Front",
  34882. image: {
  34883. source: "./media/characters/sterling/front.svg",
  34884. extra: 1420/1236,
  34885. bottom: 27/1447
  34886. }
  34887. },
  34888. },
  34889. [
  34890. {
  34891. name: "Normal",
  34892. height: math.unit(8 + 4/12, "feet"),
  34893. default: true
  34894. },
  34895. ]
  34896. ))
  34897. characterMakers.push(() => makeCharacter(
  34898. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34899. {
  34900. front: {
  34901. height: math.unit(15, "feet"),
  34902. name: "Front",
  34903. image: {
  34904. source: "./media/characters/marble/front.svg",
  34905. extra: 973/937,
  34906. bottom: 32/1005
  34907. }
  34908. },
  34909. },
  34910. [
  34911. {
  34912. name: "Normal",
  34913. height: math.unit(15, "feet"),
  34914. default: true
  34915. },
  34916. ]
  34917. ))
  34918. characterMakers.push(() => makeCharacter(
  34919. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34920. {
  34921. front: {
  34922. height: math.unit(3, "inches"),
  34923. name: "Front",
  34924. image: {
  34925. source: "./media/characters/powder/front.svg",
  34926. extra: 1504/1334,
  34927. bottom: 518/2022
  34928. }
  34929. },
  34930. },
  34931. [
  34932. {
  34933. name: "Normal",
  34934. height: math.unit(3, "inches"),
  34935. default: true
  34936. },
  34937. ]
  34938. ))
  34939. characterMakers.push(() => makeCharacter(
  34940. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34941. {
  34942. front: {
  34943. height: math.unit(4 + 5/12, "feet"),
  34944. name: "Front",
  34945. image: {
  34946. source: "./media/characters/joey-raccoon/front.svg",
  34947. extra: 1273/1197,
  34948. bottom: 0/1273
  34949. }
  34950. },
  34951. },
  34952. [
  34953. {
  34954. name: "Normal",
  34955. height: math.unit(4 + 5/12, "feet"),
  34956. default: true
  34957. },
  34958. ]
  34959. ))
  34960. characterMakers.push(() => makeCharacter(
  34961. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34962. {
  34963. front: {
  34964. height: math.unit(8 + 4/12, "feet"),
  34965. name: "Front",
  34966. image: {
  34967. source: "./media/characters/vick/front.svg",
  34968. extra: 2187/2118,
  34969. bottom: 47/2234
  34970. }
  34971. },
  34972. },
  34973. [
  34974. {
  34975. name: "Normal",
  34976. height: math.unit(8 + 4/12, "feet"),
  34977. default: true
  34978. },
  34979. ]
  34980. ))
  34981. characterMakers.push(() => makeCharacter(
  34982. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34983. {
  34984. front: {
  34985. height: math.unit(5 + 5/12, "feet"),
  34986. name: "Front",
  34987. image: {
  34988. source: "./media/characters/mitsy/front.svg",
  34989. extra: 1842/1695,
  34990. bottom: 0/1842
  34991. }
  34992. },
  34993. },
  34994. [
  34995. {
  34996. name: "Normal",
  34997. height: math.unit(5 + 5/12, "feet"),
  34998. default: true
  34999. },
  35000. ]
  35001. ))
  35002. characterMakers.push(() => makeCharacter(
  35003. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35004. {
  35005. front: {
  35006. height: math.unit(6 + 3/12, "feet"),
  35007. name: "Front",
  35008. image: {
  35009. source: "./media/characters/silvy/front.svg",
  35010. extra: 1995/1836,
  35011. bottom: 225/2220
  35012. }
  35013. },
  35014. },
  35015. [
  35016. {
  35017. name: "Normal",
  35018. height: math.unit(6 + 3/12, "feet"),
  35019. default: true
  35020. },
  35021. ]
  35022. ))
  35023. characterMakers.push(() => makeCharacter(
  35024. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35025. {
  35026. front: {
  35027. height: math.unit(3 + 8/12, "feet"),
  35028. name: "Front",
  35029. image: {
  35030. source: "./media/characters/rodney/front.svg",
  35031. extra: 1956/1747,
  35032. bottom: 31/1987
  35033. }
  35034. },
  35035. frontDressed: {
  35036. height: math.unit(2.9, "feet"),
  35037. name: "Front (Dressed)",
  35038. image: {
  35039. source: "./media/characters/rodney/front-dressed.svg",
  35040. extra: 1382/1241,
  35041. bottom: 385/1767
  35042. }
  35043. },
  35044. },
  35045. [
  35046. {
  35047. name: "Normal",
  35048. height: math.unit(3 + 8/12, "feet"),
  35049. default: true
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35055. {
  35056. front: {
  35057. height: math.unit(5 + 9/12, "feet"),
  35058. weight: math.unit(194, "lbs"),
  35059. name: "Front",
  35060. image: {
  35061. source: "./media/characters/zakail-sudekai/front.svg",
  35062. extra: 2696/2533,
  35063. bottom: 248/2944
  35064. }
  35065. },
  35066. maw: {
  35067. height: math.unit(1.35, "feet"),
  35068. name: "Maw",
  35069. image: {
  35070. source: "./media/characters/zakail-sudekai/maw.svg"
  35071. }
  35072. },
  35073. },
  35074. [
  35075. {
  35076. name: "Normal",
  35077. height: math.unit(5 + 9/12, "feet"),
  35078. default: true
  35079. },
  35080. ]
  35081. ))
  35082. characterMakers.push(() => makeCharacter(
  35083. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35084. {
  35085. front: {
  35086. height: math.unit(8 + 4/12, "feet"),
  35087. weight: math.unit(1200, "lb"),
  35088. name: "Front",
  35089. image: {
  35090. source: "./media/characters/eleanor/front.svg",
  35091. extra: 1226/1192,
  35092. bottom: 52/1278
  35093. }
  35094. },
  35095. back: {
  35096. height: math.unit(8 + 4/12, "feet"),
  35097. weight: math.unit(1200, "lb"),
  35098. name: "Back",
  35099. image: {
  35100. source: "./media/characters/eleanor/back.svg",
  35101. extra: 1242/1184,
  35102. bottom: 60/1302
  35103. }
  35104. },
  35105. head: {
  35106. height: math.unit(2.62, "feet"),
  35107. name: "Head",
  35108. image: {
  35109. source: "./media/characters/eleanor/head.svg"
  35110. }
  35111. },
  35112. },
  35113. [
  35114. {
  35115. name: "Normal",
  35116. height: math.unit(8 + 4/12, "feet"),
  35117. default: true
  35118. },
  35119. ]
  35120. ))
  35121. characterMakers.push(() => makeCharacter(
  35122. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35123. {
  35124. front: {
  35125. height: math.unit(8 + 4/12, "feet"),
  35126. weight: math.unit(750, "lb"),
  35127. name: "Front",
  35128. image: {
  35129. source: "./media/characters/tanya/front.svg",
  35130. extra: 1749/1615,
  35131. bottom: 33/1782
  35132. }
  35133. },
  35134. },
  35135. [
  35136. {
  35137. name: "Normal",
  35138. height: math.unit(8 + 4/12, "feet"),
  35139. default: true
  35140. },
  35141. ]
  35142. ))
  35143. characterMakers.push(() => makeCharacter(
  35144. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35145. {
  35146. front: {
  35147. height: math.unit(5, "feet"),
  35148. weight: math.unit(225, "lb"),
  35149. name: "Front",
  35150. image: {
  35151. source: "./media/characters/cindy/front.svg",
  35152. extra: 1320/1250,
  35153. bottom: 42/1362
  35154. }
  35155. },
  35156. frontDressed: {
  35157. height: math.unit(5, "feet"),
  35158. weight: math.unit(225, "lb"),
  35159. name: "Front (Dressed)",
  35160. image: {
  35161. source: "./media/characters/cindy/front-dressed.svg",
  35162. extra: 1320/1250,
  35163. bottom: 42/1362
  35164. }
  35165. },
  35166. back: {
  35167. height: math.unit(5, "feet"),
  35168. weight: math.unit(225, "lb"),
  35169. name: "Back",
  35170. image: {
  35171. source: "./media/characters/cindy/back.svg",
  35172. extra: 1384/1346,
  35173. bottom: 14/1398
  35174. }
  35175. },
  35176. },
  35177. [
  35178. {
  35179. name: "Normal",
  35180. height: math.unit(5, "feet"),
  35181. default: true
  35182. },
  35183. ]
  35184. ))
  35185. characterMakers.push(() => makeCharacter(
  35186. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35187. {
  35188. front: {
  35189. height: math.unit(6 + 9/12, "feet"),
  35190. weight: math.unit(440, "lb"),
  35191. name: "Front",
  35192. image: {
  35193. source: "./media/characters/wilbur-owen/front.svg",
  35194. extra: 1575/1448,
  35195. bottom: 72/1647
  35196. }
  35197. },
  35198. back: {
  35199. height: math.unit(6 + 9/12, "feet"),
  35200. weight: math.unit(440, "lb"),
  35201. name: "Back",
  35202. image: {
  35203. source: "./media/characters/wilbur-owen/back.svg",
  35204. extra: 1578/1445,
  35205. bottom: 36/1614
  35206. }
  35207. },
  35208. },
  35209. [
  35210. {
  35211. name: "Normal",
  35212. height: math.unit(6 + 9/12, "feet"),
  35213. default: true
  35214. },
  35215. ]
  35216. ))
  35217. characterMakers.push(() => makeCharacter(
  35218. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35219. {
  35220. front: {
  35221. height: math.unit(6 + 5/12, "feet"),
  35222. weight: math.unit(650, "lb"),
  35223. name: "Front",
  35224. image: {
  35225. source: "./media/characters/keegan/front.svg",
  35226. extra: 2387/2198,
  35227. bottom: 33/2420
  35228. }
  35229. },
  35230. side: {
  35231. height: math.unit(6 + 5/12, "feet"),
  35232. weight: math.unit(650, "lb"),
  35233. name: "Side",
  35234. image: {
  35235. source: "./media/characters/keegan/side.svg",
  35236. extra: 2390/2202,
  35237. bottom: 47/2437
  35238. }
  35239. },
  35240. back: {
  35241. height: math.unit(6 + 5/12, "feet"),
  35242. weight: math.unit(650, "lb"),
  35243. name: "Back",
  35244. image: {
  35245. source: "./media/characters/keegan/back.svg",
  35246. extra: 2418/2268,
  35247. bottom: 15/2433
  35248. }
  35249. },
  35250. frontSfw: {
  35251. height: math.unit(6 + 5/12, "feet"),
  35252. weight: math.unit(650, "lb"),
  35253. name: "Front (SFW)",
  35254. image: {
  35255. source: "./media/characters/keegan/front-sfw.svg",
  35256. extra: 2387/2198,
  35257. bottom: 33/2420
  35258. }
  35259. },
  35260. beans: {
  35261. height: math.unit(1.85, "feet"),
  35262. name: "Beans",
  35263. image: {
  35264. source: "./media/characters/keegan/beans.svg"
  35265. }
  35266. },
  35267. },
  35268. [
  35269. {
  35270. name: "Normal",
  35271. height: math.unit(6 + 5/12, "feet"),
  35272. default: true
  35273. },
  35274. ]
  35275. ))
  35276. characterMakers.push(() => makeCharacter(
  35277. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35278. {
  35279. front: {
  35280. height: math.unit(9, "feet"),
  35281. name: "Front",
  35282. image: {
  35283. source: "./media/characters/colton/front.svg",
  35284. extra: 1589/1326,
  35285. bottom: 139/1728
  35286. }
  35287. },
  35288. },
  35289. [
  35290. {
  35291. name: "Normal",
  35292. height: math.unit(9, "feet"),
  35293. default: true
  35294. },
  35295. ]
  35296. ))
  35297. characterMakers.push(() => makeCharacter(
  35298. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35299. {
  35300. front: {
  35301. height: math.unit(2 + 9/12, "feet"),
  35302. name: "Front",
  35303. image: {
  35304. source: "./media/characters/bora/front.svg",
  35305. extra: 1265/1250,
  35306. bottom: 24/1289
  35307. }
  35308. },
  35309. },
  35310. [
  35311. {
  35312. name: "Normal",
  35313. height: math.unit(2 + 9/12, "feet"),
  35314. default: true
  35315. },
  35316. ]
  35317. ))
  35318. characterMakers.push(() => makeCharacter(
  35319. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35320. {
  35321. front: {
  35322. height: math.unit(8, "feet"),
  35323. name: "Front",
  35324. image: {
  35325. source: "./media/characters/myu-myu/front.svg",
  35326. extra: 1949/1857,
  35327. bottom: 90/2039
  35328. }
  35329. },
  35330. },
  35331. [
  35332. {
  35333. name: "Normal",
  35334. height: math.unit(8, "feet"),
  35335. default: true
  35336. },
  35337. {
  35338. name: "Big",
  35339. height: math.unit(15, "feet")
  35340. },
  35341. {
  35342. name: "BIG",
  35343. height: math.unit(25, "feet")
  35344. },
  35345. ]
  35346. ))
  35347. characterMakers.push(() => makeCharacter(
  35348. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35349. {
  35350. side: {
  35351. height: math.unit(7 + 5/12, "feet"),
  35352. weight: math.unit(2800, "lb"),
  35353. name: "Side",
  35354. image: {
  35355. source: "./media/characters/haloren/side.svg",
  35356. extra: 1793/409,
  35357. bottom: 59/1852
  35358. }
  35359. },
  35360. frontPaw: {
  35361. height: math.unit(2.36, "feet"),
  35362. name: "Front paw",
  35363. image: {
  35364. source: "./media/characters/haloren/front-paw.svg"
  35365. }
  35366. },
  35367. hindPaw: {
  35368. height: math.unit(3.18, "feet"),
  35369. name: "Hind paw",
  35370. image: {
  35371. source: "./media/characters/haloren/hind-paw.svg"
  35372. }
  35373. },
  35374. maw: {
  35375. height: math.unit(5.05, "feet"),
  35376. name: "Maw",
  35377. image: {
  35378. source: "./media/characters/haloren/maw.svg"
  35379. }
  35380. },
  35381. dick: {
  35382. height: math.unit(2.90, "feet"),
  35383. name: "Dick",
  35384. image: {
  35385. source: "./media/characters/haloren/dick.svg"
  35386. }
  35387. },
  35388. },
  35389. [
  35390. {
  35391. name: "Normal",
  35392. height: math.unit(7 + 5/12, "feet"),
  35393. default: true
  35394. },
  35395. {
  35396. name: "Enhanced",
  35397. height: math.unit(14 + 3/12, "feet")
  35398. },
  35399. ]
  35400. ))
  35401. characterMakers.push(() => makeCharacter(
  35402. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35403. {
  35404. front: {
  35405. height: math.unit(171, "cm"),
  35406. name: "Front",
  35407. image: {
  35408. source: "./media/characters/kimmy/front.svg",
  35409. extra: 1491/1435,
  35410. bottom: 53/1544
  35411. }
  35412. },
  35413. },
  35414. [
  35415. {
  35416. name: "Small",
  35417. height: math.unit(9, "cm")
  35418. },
  35419. {
  35420. name: "Normal",
  35421. height: math.unit(171, "cm"),
  35422. default: true
  35423. },
  35424. ]
  35425. ))
  35426. characterMakers.push(() => makeCharacter(
  35427. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35428. {
  35429. front: {
  35430. height: math.unit(8, "feet"),
  35431. weight: math.unit(300, "lb"),
  35432. name: "Front",
  35433. image: {
  35434. source: "./media/characters/galeboomer/front.svg",
  35435. extra: 4651/4415,
  35436. bottom: 162/4813
  35437. }
  35438. },
  35439. back: {
  35440. height: math.unit(8, "feet"),
  35441. weight: math.unit(300, "lb"),
  35442. name: "Back",
  35443. image: {
  35444. source: "./media/characters/galeboomer/back.svg",
  35445. extra: 4544/4314,
  35446. bottom: 16/4560
  35447. }
  35448. },
  35449. frontAlt: {
  35450. height: math.unit(8, "feet"),
  35451. weight: math.unit(300, "lb"),
  35452. name: "Front (Alt)",
  35453. image: {
  35454. source: "./media/characters/galeboomer/front-alt.svg",
  35455. extra: 4458/4228,
  35456. bottom: 68/4526
  35457. }
  35458. },
  35459. maw: {
  35460. height: math.unit(1.2, "feet"),
  35461. name: "Maw",
  35462. image: {
  35463. source: "./media/characters/galeboomer/maw.svg"
  35464. }
  35465. },
  35466. },
  35467. [
  35468. {
  35469. name: "Normal",
  35470. height: math.unit(8, "feet"),
  35471. default: true
  35472. },
  35473. ]
  35474. ))
  35475. characterMakers.push(() => makeCharacter(
  35476. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35477. {
  35478. front: {
  35479. height: math.unit(5 + 9/12, "feet"),
  35480. weight: math.unit(120, "lb"),
  35481. name: "Front",
  35482. image: {
  35483. source: "./media/characters/chyr/front.svg",
  35484. extra: 1323/1254,
  35485. bottom: 63/1386
  35486. }
  35487. },
  35488. back: {
  35489. height: math.unit(5 + 9/12, "feet"),
  35490. weight: math.unit(120, "lb"),
  35491. name: "Back",
  35492. image: {
  35493. source: "./media/characters/chyr/back.svg",
  35494. extra: 1323/1252,
  35495. bottom: 48/1371
  35496. }
  35497. },
  35498. },
  35499. [
  35500. {
  35501. name: "Normal",
  35502. height: math.unit(5 + 9/12, "feet"),
  35503. default: true
  35504. },
  35505. ]
  35506. ))
  35507. characterMakers.push(() => makeCharacter(
  35508. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35509. {
  35510. front: {
  35511. height: math.unit(7, "feet"),
  35512. weight: math.unit(310, "lb"),
  35513. name: "Front",
  35514. image: {
  35515. source: "./media/characters/solarus/front.svg",
  35516. extra: 2415/2021,
  35517. bottom: 103/2518
  35518. }
  35519. },
  35520. back: {
  35521. height: math.unit(7, "feet"),
  35522. weight: math.unit(310, "lb"),
  35523. name: "Back",
  35524. image: {
  35525. source: "./media/characters/solarus/back.svg",
  35526. extra: 2463/2089,
  35527. bottom: 79/2542
  35528. }
  35529. },
  35530. },
  35531. [
  35532. {
  35533. name: "Normal",
  35534. height: math.unit(7, "feet"),
  35535. default: true
  35536. },
  35537. ]
  35538. ))
  35539. characterMakers.push(() => makeCharacter(
  35540. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35541. {
  35542. front: {
  35543. height: math.unit(16, "feet"),
  35544. name: "Front",
  35545. image: {
  35546. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35547. extra: 1844/1780,
  35548. bottom: 58/1902
  35549. }
  35550. },
  35551. },
  35552. [
  35553. {
  35554. name: "Normal",
  35555. height: math.unit(16, "feet"),
  35556. default: true
  35557. },
  35558. ]
  35559. ))
  35560. characterMakers.push(() => makeCharacter(
  35561. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35562. {
  35563. front: {
  35564. height: math.unit(11 + 6/12, "feet"),
  35565. weight: math.unit(1366, "lb"),
  35566. name: "Front",
  35567. image: {
  35568. source: "./media/characters/lexor/front.svg",
  35569. extra: 1560/1481,
  35570. bottom: 211/1771
  35571. }
  35572. },
  35573. back: {
  35574. height: math.unit(11 + 6/12, "feet"),
  35575. weight: math.unit(1366, "lb"),
  35576. name: "Back",
  35577. image: {
  35578. source: "./media/characters/lexor/back.svg",
  35579. extra: 1614/1533,
  35580. bottom: 76/1690
  35581. }
  35582. },
  35583. maw: {
  35584. height: math.unit(3, "feet"),
  35585. name: "Maw",
  35586. image: {
  35587. source: "./media/characters/lexor/maw.svg"
  35588. }
  35589. },
  35590. dick: {
  35591. height: math.unit(2.59, "feet"),
  35592. name: "Dick",
  35593. image: {
  35594. source: "./media/characters/lexor/dick.svg"
  35595. }
  35596. },
  35597. },
  35598. [
  35599. {
  35600. name: "Normal",
  35601. height: math.unit(11 + 6/12, "feet"),
  35602. default: true
  35603. },
  35604. ]
  35605. ))
  35606. characterMakers.push(() => makeCharacter(
  35607. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35608. {
  35609. front: {
  35610. height: math.unit(5 + 8/12, "feet"),
  35611. name: "Front",
  35612. image: {
  35613. source: "./media/characters/magnum/front.svg",
  35614. extra: 942/855,
  35615. bottom: 26/968
  35616. }
  35617. },
  35618. },
  35619. [
  35620. {
  35621. name: "Normal",
  35622. height: math.unit(5 + 8/12, "feet"),
  35623. default: true
  35624. },
  35625. ]
  35626. ))
  35627. characterMakers.push(() => makeCharacter(
  35628. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35629. {
  35630. front: {
  35631. height: math.unit(18 + 4/12, "feet"),
  35632. weight: math.unit(1500, "kg"),
  35633. name: "Front",
  35634. image: {
  35635. source: "./media/characters/solas-sharpsman/front.svg",
  35636. extra: 1698/1589,
  35637. bottom: 0/1698
  35638. }
  35639. },
  35640. },
  35641. [
  35642. {
  35643. name: "Normal",
  35644. height: math.unit(18 + 4/12, "feet"),
  35645. default: true
  35646. },
  35647. ]
  35648. ))
  35649. characterMakers.push(() => makeCharacter(
  35650. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35651. {
  35652. front: {
  35653. height: math.unit(5 + 5/12, "feet"),
  35654. weight: math.unit(180, "lb"),
  35655. name: "Front",
  35656. image: {
  35657. source: "./media/characters/october/front.svg",
  35658. extra: 1800/1650,
  35659. bottom: 0/1800
  35660. }
  35661. },
  35662. frontNsfw: {
  35663. height: math.unit(5 + 5/12, "feet"),
  35664. weight: math.unit(180, "lb"),
  35665. name: "Front (NSFW)",
  35666. image: {
  35667. source: "./media/characters/october/front-nsfw.svg",
  35668. extra: 1392/1307,
  35669. bottom: 42/1434
  35670. }
  35671. },
  35672. },
  35673. [
  35674. {
  35675. name: "Normal",
  35676. height: math.unit(5 + 5/12, "feet"),
  35677. default: true
  35678. },
  35679. ]
  35680. ))
  35681. characterMakers.push(() => makeCharacter(
  35682. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35683. {
  35684. front: {
  35685. height: math.unit(8 + 6/12, "feet"),
  35686. name: "Front",
  35687. image: {
  35688. source: "./media/characters/essynkardi/front.svg",
  35689. extra: 1914/1846,
  35690. bottom: 22/1936
  35691. }
  35692. },
  35693. },
  35694. [
  35695. {
  35696. name: "Normal",
  35697. height: math.unit(8 + 6/12, "feet"),
  35698. default: true
  35699. },
  35700. ]
  35701. ))
  35702. characterMakers.push(() => makeCharacter(
  35703. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35704. {
  35705. front: {
  35706. height: math.unit(6 + 6/12, "feet"),
  35707. weight: math.unit(7, "lb"),
  35708. name: "Front",
  35709. image: {
  35710. source: "./media/characters/icky/front.svg",
  35711. extra: 813/782,
  35712. bottom: 66/879
  35713. }
  35714. },
  35715. back: {
  35716. height: math.unit(6 + 6/12, "feet"),
  35717. weight: math.unit(7, "lb"),
  35718. name: "Back",
  35719. image: {
  35720. source: "./media/characters/icky/back.svg",
  35721. extra: 754/735,
  35722. bottom: 56/810
  35723. }
  35724. },
  35725. },
  35726. [
  35727. {
  35728. name: "Normal",
  35729. height: math.unit(6 + 6/12, "feet"),
  35730. default: true
  35731. },
  35732. ]
  35733. ))
  35734. characterMakers.push(() => makeCharacter(
  35735. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35736. {
  35737. front: {
  35738. height: math.unit(15, "feet"),
  35739. name: "Front",
  35740. image: {
  35741. source: "./media/characters/rojas/front.svg",
  35742. extra: 1462/1408,
  35743. bottom: 95/1557
  35744. }
  35745. },
  35746. back: {
  35747. height: math.unit(15, "feet"),
  35748. name: "Back",
  35749. image: {
  35750. source: "./media/characters/rojas/back.svg",
  35751. extra: 1023/954,
  35752. bottom: 28/1051
  35753. }
  35754. },
  35755. },
  35756. [
  35757. {
  35758. name: "Normal",
  35759. height: math.unit(15, "feet"),
  35760. default: true
  35761. },
  35762. ]
  35763. ))
  35764. characterMakers.push(() => makeCharacter(
  35765. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35766. {
  35767. frontHuman: {
  35768. height: math.unit(5 + 7/12, "feet"),
  35769. name: "Front (Human)",
  35770. image: {
  35771. source: "./media/characters/alek-dryagan/front-human.svg",
  35772. extra: 1687/1667,
  35773. bottom: 69/1756
  35774. }
  35775. },
  35776. backHuman: {
  35777. height: math.unit(5 + 7/12, "feet"),
  35778. name: "Back (Human)",
  35779. image: {
  35780. source: "./media/characters/alek-dryagan/back-human.svg",
  35781. extra: 1670/1649,
  35782. bottom: 65/1735
  35783. }
  35784. },
  35785. frontDemi: {
  35786. height: math.unit(65, "feet"),
  35787. name: "Front (Demi)",
  35788. image: {
  35789. source: "./media/characters/alek-dryagan/front-demi.svg",
  35790. extra: 1669/1642,
  35791. bottom: 49/1718
  35792. }
  35793. },
  35794. backDemi: {
  35795. height: math.unit(65, "feet"),
  35796. name: "Back (Demi)",
  35797. image: {
  35798. source: "./media/characters/alek-dryagan/back-demi.svg",
  35799. extra: 1658/1637,
  35800. bottom: 40/1698
  35801. }
  35802. },
  35803. mawHuman: {
  35804. height: math.unit(0.3, "feet"),
  35805. name: "Maw (Human)",
  35806. image: {
  35807. source: "./media/characters/alek-dryagan/maw-human.svg"
  35808. }
  35809. },
  35810. mawDemi: {
  35811. height: math.unit(3.8, "feet"),
  35812. name: "Maw (Demi)",
  35813. image: {
  35814. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35815. }
  35816. },
  35817. },
  35818. [
  35819. {
  35820. name: "Normal",
  35821. height: math.unit(5 + 7/12, "feet"),
  35822. default: true
  35823. },
  35824. ]
  35825. ))
  35826. characterMakers.push(() => makeCharacter(
  35827. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35828. {
  35829. frontHuman: {
  35830. height: math.unit(5 + 2/12, "feet"),
  35831. name: "Front (Human)",
  35832. image: {
  35833. source: "./media/characters/gen/front-human.svg",
  35834. extra: 1627/1538,
  35835. bottom: 71/1698
  35836. }
  35837. },
  35838. backHuman: {
  35839. height: math.unit(5 + 2/12, "feet"),
  35840. name: "Back (Human)",
  35841. image: {
  35842. source: "./media/characters/gen/back-human.svg",
  35843. extra: 1638/1548,
  35844. bottom: 69/1707
  35845. }
  35846. },
  35847. frontDemi: {
  35848. height: math.unit(5 + 2/12, "feet"),
  35849. name: "Front (Demi)",
  35850. image: {
  35851. source: "./media/characters/gen/front-demi.svg",
  35852. extra: 1627/1538,
  35853. bottom: 71/1698
  35854. }
  35855. },
  35856. backDemi: {
  35857. height: math.unit(5 + 2/12, "feet"),
  35858. name: "Back (Demi)",
  35859. image: {
  35860. source: "./media/characters/gen/back-demi.svg",
  35861. extra: 1638/1548,
  35862. bottom: 69/1707
  35863. }
  35864. },
  35865. },
  35866. [
  35867. {
  35868. name: "Normal",
  35869. height: math.unit(5 + 2/12, "feet"),
  35870. default: true
  35871. },
  35872. ]
  35873. ))
  35874. characterMakers.push(() => makeCharacter(
  35875. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35876. {
  35877. frontImp: {
  35878. height: math.unit(1 + 11/12, "feet"),
  35879. name: "Front (Imp)",
  35880. image: {
  35881. source: "./media/characters/max-kobold/front-imp.svg",
  35882. extra: 1238/1134,
  35883. bottom: 81/1319
  35884. }
  35885. },
  35886. backImp: {
  35887. height: math.unit(1 + 11/12, "feet"),
  35888. name: "Back (Imp)",
  35889. image: {
  35890. source: "./media/characters/max-kobold/back-imp.svg",
  35891. extra: 1334/1175,
  35892. bottom: 34/1368
  35893. }
  35894. },
  35895. frontDemi: {
  35896. height: math.unit(5 + 9/12, "feet"),
  35897. name: "Front (Demi)",
  35898. image: {
  35899. source: "./media/characters/max-kobold/front-demi.svg",
  35900. extra: 1715/1685,
  35901. bottom: 54/1769
  35902. }
  35903. },
  35904. backDemi: {
  35905. height: math.unit(5 + 9/12, "feet"),
  35906. name: "Back (Demi)",
  35907. image: {
  35908. source: "./media/characters/max-kobold/back-demi.svg",
  35909. extra: 1752/1729,
  35910. bottom: 41/1793
  35911. }
  35912. },
  35913. handImp: {
  35914. height: math.unit(0.45, "feet"),
  35915. name: "Hand (Imp)",
  35916. image: {
  35917. source: "./media/characters/max-kobold/hand.svg"
  35918. }
  35919. },
  35920. pawImp: {
  35921. height: math.unit(0.46, "feet"),
  35922. name: "Paw (Imp)",
  35923. image: {
  35924. source: "./media/characters/max-kobold/paw.svg"
  35925. }
  35926. },
  35927. handDemi: {
  35928. height: math.unit(0.80, "feet"),
  35929. name: "Hand (Demi)",
  35930. image: {
  35931. source: "./media/characters/max-kobold/hand.svg"
  35932. }
  35933. },
  35934. pawDemi: {
  35935. height: math.unit(1.1, "feet"),
  35936. name: "Paw (Demi)",
  35937. image: {
  35938. source: "./media/characters/max-kobold/paw.svg"
  35939. }
  35940. },
  35941. headImp: {
  35942. height: math.unit(1.33, "feet"),
  35943. name: "Head (Imp)",
  35944. image: {
  35945. source: "./media/characters/max-kobold/head-imp.svg"
  35946. }
  35947. },
  35948. mawImp: {
  35949. height: math.unit(0.75, "feet"),
  35950. name: "Maw (Imp)",
  35951. image: {
  35952. source: "./media/characters/max-kobold/maw-imp.svg"
  35953. }
  35954. },
  35955. mawDemi: {
  35956. height: math.unit(0.42, "feet"),
  35957. name: "Maw (Demi)",
  35958. image: {
  35959. source: "./media/characters/max-kobold/maw-demi.svg"
  35960. }
  35961. },
  35962. },
  35963. [
  35964. {
  35965. name: "Normal",
  35966. height: math.unit(1 + 11/12, "feet"),
  35967. default: true
  35968. },
  35969. ]
  35970. ))
  35971. characterMakers.push(() => makeCharacter(
  35972. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35973. {
  35974. front: {
  35975. height: math.unit(7 + 5/12, "feet"),
  35976. name: "Front",
  35977. image: {
  35978. source: "./media/characters/carbon/front.svg",
  35979. extra: 1754/1689,
  35980. bottom: 65/1819
  35981. }
  35982. },
  35983. back: {
  35984. height: math.unit(7 + 5/12, "feet"),
  35985. name: "Back",
  35986. image: {
  35987. source: "./media/characters/carbon/back.svg",
  35988. extra: 1762/1695,
  35989. bottom: 24/1786
  35990. }
  35991. },
  35992. frontGigantamax: {
  35993. height: math.unit(150, "feet"),
  35994. name: "Front (Gigantamax)",
  35995. image: {
  35996. source: "./media/characters/carbon/front-gigantamax.svg",
  35997. extra: 1826/1669,
  35998. bottom: 59/1885
  35999. }
  36000. },
  36001. backGigantamax: {
  36002. height: math.unit(150, "feet"),
  36003. name: "Back (Gigantamax)",
  36004. image: {
  36005. source: "./media/characters/carbon/back-gigantamax.svg",
  36006. extra: 1796/1653,
  36007. bottom: 53/1849
  36008. }
  36009. },
  36010. maw: {
  36011. height: math.unit(0.48, "feet"),
  36012. name: "Maw",
  36013. image: {
  36014. source: "./media/characters/carbon/maw.svg"
  36015. }
  36016. },
  36017. mawGigantamax: {
  36018. height: math.unit(7.5, "feet"),
  36019. name: "Maw (Gigantamax)",
  36020. image: {
  36021. source: "./media/characters/carbon/maw-gigantamax.svg"
  36022. }
  36023. },
  36024. },
  36025. [
  36026. {
  36027. name: "Normal",
  36028. height: math.unit(7 + 5/12, "feet"),
  36029. default: true
  36030. },
  36031. ]
  36032. ))
  36033. characterMakers.push(() => makeCharacter(
  36034. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36035. {
  36036. front: {
  36037. height: math.unit(6, "feet"),
  36038. name: "Front",
  36039. image: {
  36040. source: "./media/characters/maverick/front.svg",
  36041. extra: 1672/1661,
  36042. bottom: 85/1757
  36043. }
  36044. },
  36045. back: {
  36046. height: math.unit(6, "feet"),
  36047. name: "Back",
  36048. image: {
  36049. source: "./media/characters/maverick/back.svg",
  36050. extra: 1642/1631,
  36051. bottom: 38/1680
  36052. }
  36053. },
  36054. },
  36055. [
  36056. {
  36057. name: "Normal",
  36058. height: math.unit(6, "feet"),
  36059. default: true
  36060. },
  36061. ]
  36062. ))
  36063. characterMakers.push(() => makeCharacter(
  36064. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36065. {
  36066. front: {
  36067. height: math.unit(15, "feet"),
  36068. weight: math.unit(615, "lb"),
  36069. name: "Front",
  36070. image: {
  36071. source: "./media/characters/grockle/front.svg",
  36072. extra: 1535/1427,
  36073. bottom: 56/1591
  36074. }
  36075. },
  36076. },
  36077. [
  36078. {
  36079. name: "Normal",
  36080. height: math.unit(15, "feet"),
  36081. default: true
  36082. },
  36083. {
  36084. name: "Large",
  36085. height: math.unit(150, "feet")
  36086. },
  36087. {
  36088. name: "Macro",
  36089. height: math.unit(1876, "feet")
  36090. },
  36091. {
  36092. name: "Mega Macro",
  36093. height: math.unit(121940, "feet")
  36094. },
  36095. {
  36096. name: "Giga Macro",
  36097. height: math.unit(750, "km")
  36098. },
  36099. {
  36100. name: "Tera Macro",
  36101. height: math.unit(750000, "km")
  36102. },
  36103. {
  36104. name: "Galactic",
  36105. height: math.unit(1.4e5, "km")
  36106. },
  36107. {
  36108. name: "Godlike",
  36109. height: math.unit(9.8e280, "galaxies")
  36110. },
  36111. ]
  36112. ))
  36113. characterMakers.push(() => makeCharacter(
  36114. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36115. {
  36116. front: {
  36117. height: math.unit(11, "meters"),
  36118. weight: math.unit(20, "tonnes"),
  36119. name: "Front",
  36120. image: {
  36121. source: "./media/characters/alistair/front.svg",
  36122. extra: 1265/1009,
  36123. bottom: 93/1358
  36124. }
  36125. },
  36126. },
  36127. [
  36128. {
  36129. name: "Normal",
  36130. height: math.unit(11, "meters"),
  36131. default: true
  36132. },
  36133. ]
  36134. ))
  36135. characterMakers.push(() => makeCharacter(
  36136. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36137. {
  36138. front: {
  36139. height: math.unit(5 + 8/12, "feet"),
  36140. name: "Front",
  36141. image: {
  36142. source: "./media/characters/haruka/front.svg",
  36143. extra: 2012/1952,
  36144. bottom: 0/2012
  36145. }
  36146. },
  36147. },
  36148. [
  36149. {
  36150. name: "Normal",
  36151. height: math.unit(5 + 8/12, "feet"),
  36152. default: true
  36153. },
  36154. ]
  36155. ))
  36156. characterMakers.push(() => makeCharacter(
  36157. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36158. {
  36159. back: {
  36160. height: math.unit(9, "feet"),
  36161. name: "Back",
  36162. image: {
  36163. source: "./media/characters/vivian-sylveon/back.svg",
  36164. extra: 1853/1714,
  36165. bottom: 0/1853
  36166. }
  36167. },
  36168. },
  36169. [
  36170. {
  36171. name: "Normal",
  36172. height: math.unit(9, "feet"),
  36173. default: true
  36174. },
  36175. {
  36176. name: "Macro",
  36177. height: math.unit(500, "feet")
  36178. },
  36179. {
  36180. name: "Megamacro",
  36181. height: math.unit(600, "miles")
  36182. },
  36183. {
  36184. name: "Gigamacro",
  36185. height: math.unit(30000, "miles")
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36191. {
  36192. anthro: {
  36193. height: math.unit(5 + 10/12, "feet"),
  36194. weight: math.unit(100, "lb"),
  36195. name: "Anthro",
  36196. image: {
  36197. source: "./media/characters/daiki/anthro.svg",
  36198. extra: 1115/1027,
  36199. bottom: 69/1184
  36200. }
  36201. },
  36202. feral: {
  36203. height: math.unit(200, "feet"),
  36204. name: "Feral",
  36205. image: {
  36206. source: "./media/characters/daiki/feral.svg",
  36207. extra: 1256/313,
  36208. bottom: 39/1295
  36209. }
  36210. },
  36211. feralHead: {
  36212. height: math.unit(171, "feet"),
  36213. name: "Feral Head",
  36214. image: {
  36215. source: "./media/characters/daiki/feral-head.svg"
  36216. }
  36217. },
  36218. },
  36219. [
  36220. {
  36221. name: "Normal",
  36222. height: math.unit(5 + 10/12, "feet"),
  36223. default: true
  36224. },
  36225. ]
  36226. ))
  36227. characterMakers.push(() => makeCharacter(
  36228. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36229. {
  36230. fullyEquippedFront: {
  36231. height: math.unit(3 + 1/12, "feet"),
  36232. weight: math.unit(24, "lb"),
  36233. name: "Fully Equipped (Front)",
  36234. image: {
  36235. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36236. extra: 687/605,
  36237. bottom: 18/705
  36238. }
  36239. },
  36240. fullyEquippedBack: {
  36241. height: math.unit(3 + 1/12, "feet"),
  36242. weight: math.unit(24, "lb"),
  36243. name: "Fully Equipped (Back)",
  36244. image: {
  36245. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36246. extra: 689/590,
  36247. bottom: 18/707
  36248. }
  36249. },
  36250. dailyWear: {
  36251. height: math.unit(3 + 1/12, "feet"),
  36252. weight: math.unit(24, "lb"),
  36253. name: "Daily Wear",
  36254. image: {
  36255. source: "./media/characters/tea-spot/daily-wear.svg",
  36256. extra: 701/620,
  36257. bottom: 21/722
  36258. }
  36259. },
  36260. maidWork: {
  36261. height: math.unit(3 + 1/12, "feet"),
  36262. weight: math.unit(24, "lb"),
  36263. name: "Maid Work",
  36264. image: {
  36265. source: "./media/characters/tea-spot/maid-work.svg",
  36266. extra: 693/609,
  36267. bottom: 15/708
  36268. }
  36269. },
  36270. },
  36271. [
  36272. {
  36273. name: "Normal",
  36274. height: math.unit(3 + 1/12, "feet"),
  36275. default: true
  36276. },
  36277. ]
  36278. ))
  36279. characterMakers.push(() => makeCharacter(
  36280. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36281. {
  36282. front: {
  36283. height: math.unit(175, "cm"),
  36284. weight: math.unit(75, "kg"),
  36285. name: "Front",
  36286. image: {
  36287. source: "./media/characters/chee/front.svg",
  36288. extra: 1796/1740,
  36289. bottom: 40/1836
  36290. }
  36291. },
  36292. },
  36293. [
  36294. {
  36295. name: "Micro-Micro",
  36296. height: math.unit(1, "nm")
  36297. },
  36298. {
  36299. name: "Micro-erst",
  36300. height: math.unit(1, "micrometer")
  36301. },
  36302. {
  36303. name: "Micro-er",
  36304. height: math.unit(1, "cm")
  36305. },
  36306. {
  36307. name: "Normal",
  36308. height: math.unit(175, "cm"),
  36309. default: true
  36310. },
  36311. {
  36312. name: "Macro",
  36313. height: math.unit(100, "m")
  36314. },
  36315. {
  36316. name: "Macro-er",
  36317. height: math.unit(1, "km")
  36318. },
  36319. {
  36320. name: "Macro-erst",
  36321. height: math.unit(10, "km")
  36322. },
  36323. {
  36324. name: "Macro-Macro",
  36325. height: math.unit(100, "km")
  36326. },
  36327. ]
  36328. ))
  36329. characterMakers.push(() => makeCharacter(
  36330. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36331. {
  36332. front: {
  36333. height: math.unit(11 + 9/12, "feet"),
  36334. weight: math.unit(935, "lb"),
  36335. name: "Front",
  36336. image: {
  36337. source: "./media/characters/kingsley/front.svg",
  36338. extra: 1803/1674,
  36339. bottom: 127/1930
  36340. }
  36341. },
  36342. frontNude: {
  36343. height: math.unit(11 + 9/12, "feet"),
  36344. weight: math.unit(935, "lb"),
  36345. name: "Front (Nude)",
  36346. image: {
  36347. source: "./media/characters/kingsley/front-nude.svg",
  36348. extra: 1803/1674,
  36349. bottom: 127/1930
  36350. }
  36351. },
  36352. },
  36353. [
  36354. {
  36355. name: "Normal",
  36356. height: math.unit(11 + 9/12, "feet"),
  36357. default: true
  36358. },
  36359. ]
  36360. ))
  36361. characterMakers.push(() => makeCharacter(
  36362. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36363. {
  36364. side: {
  36365. height: math.unit(9, "feet"),
  36366. name: "Side",
  36367. image: {
  36368. source: "./media/characters/rymel/side.svg",
  36369. extra: 792/469,
  36370. bottom: 121/913
  36371. }
  36372. },
  36373. maw: {
  36374. height: math.unit(2.4, "meters"),
  36375. name: "Maw",
  36376. image: {
  36377. source: "./media/characters/rymel/maw.svg"
  36378. }
  36379. },
  36380. },
  36381. [
  36382. {
  36383. name: "House Drake",
  36384. height: math.unit(2, "feet")
  36385. },
  36386. {
  36387. name: "Reduced",
  36388. height: math.unit(4.5, "feet")
  36389. },
  36390. {
  36391. name: "Normal",
  36392. height: math.unit(9, "feet"),
  36393. default: true
  36394. },
  36395. ]
  36396. ))
  36397. characterMakers.push(() => makeCharacter(
  36398. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36399. {
  36400. front: {
  36401. height: math.unit(1.74, "meters"),
  36402. weight: math.unit(55, "kg"),
  36403. name: "Front",
  36404. image: {
  36405. source: "./media/characters/rubus/front.svg",
  36406. extra: 1894/1742,
  36407. bottom: 44/1938
  36408. }
  36409. },
  36410. },
  36411. [
  36412. {
  36413. name: "Normal",
  36414. height: math.unit(1.74, "meters"),
  36415. default: true
  36416. },
  36417. ]
  36418. ))
  36419. characterMakers.push(() => makeCharacter(
  36420. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36421. {
  36422. front: {
  36423. height: math.unit(5 + 2/12, "feet"),
  36424. weight: math.unit(112, "lb"),
  36425. name: "Front",
  36426. image: {
  36427. source: "./media/characters/cassie-kingston/front.svg",
  36428. extra: 1438/1390,
  36429. bottom: 47/1485
  36430. }
  36431. },
  36432. },
  36433. [
  36434. {
  36435. name: "Normal",
  36436. height: math.unit(5 + 2/12, "feet"),
  36437. default: true
  36438. },
  36439. {
  36440. name: "Macro",
  36441. height: math.unit(128, "feet")
  36442. },
  36443. {
  36444. name: "Megamacro",
  36445. height: math.unit(2.56, "miles")
  36446. },
  36447. ]
  36448. ))
  36449. characterMakers.push(() => makeCharacter(
  36450. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36451. {
  36452. front: {
  36453. height: math.unit(7, "feet"),
  36454. name: "Front",
  36455. image: {
  36456. source: "./media/characters/fox/front.svg",
  36457. extra: 1798/1703,
  36458. bottom: 55/1853
  36459. }
  36460. },
  36461. back: {
  36462. height: math.unit(7, "feet"),
  36463. name: "Back",
  36464. image: {
  36465. source: "./media/characters/fox/back.svg",
  36466. extra: 1748/1649,
  36467. bottom: 32/1780
  36468. }
  36469. },
  36470. head: {
  36471. height: math.unit(1.95, "feet"),
  36472. name: "Head",
  36473. image: {
  36474. source: "./media/characters/fox/head.svg"
  36475. }
  36476. },
  36477. dick: {
  36478. height: math.unit(1.33, "feet"),
  36479. name: "Dick",
  36480. image: {
  36481. source: "./media/characters/fox/dick.svg"
  36482. }
  36483. },
  36484. foot: {
  36485. height: math.unit(1, "feet"),
  36486. name: "Foot",
  36487. image: {
  36488. source: "./media/characters/fox/foot.svg"
  36489. }
  36490. },
  36491. paw: {
  36492. height: math.unit(0.92, "feet"),
  36493. name: "Paw",
  36494. image: {
  36495. source: "./media/characters/fox/paw.svg"
  36496. }
  36497. },
  36498. },
  36499. [
  36500. {
  36501. name: "Small",
  36502. height: math.unit(3, "inches")
  36503. },
  36504. {
  36505. name: "\"Realistic\"",
  36506. height: math.unit(7, "feet")
  36507. },
  36508. {
  36509. name: "Normal",
  36510. height: math.unit(150, "feet"),
  36511. default: true
  36512. },
  36513. {
  36514. name: "BIG",
  36515. height: math.unit(1200, "feet")
  36516. },
  36517. {
  36518. name: "👀",
  36519. height: math.unit(5, "miles")
  36520. },
  36521. {
  36522. name: "👀👀👀",
  36523. height: math.unit(64, "miles")
  36524. },
  36525. ]
  36526. ))
  36527. characterMakers.push(() => makeCharacter(
  36528. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36529. {
  36530. front: {
  36531. height: math.unit(625, "feet"),
  36532. name: "Front",
  36533. image: {
  36534. source: "./media/characters/asonja-rossa/front.svg",
  36535. extra: 1833/1686,
  36536. bottom: 24/1857
  36537. }
  36538. },
  36539. back: {
  36540. height: math.unit(625, "feet"),
  36541. name: "Back",
  36542. image: {
  36543. source: "./media/characters/asonja-rossa/back.svg",
  36544. extra: 1852/1753,
  36545. bottom: 26/1878
  36546. }
  36547. },
  36548. },
  36549. [
  36550. {
  36551. name: "Macro",
  36552. height: math.unit(625, "feet"),
  36553. default: true
  36554. },
  36555. ]
  36556. ))
  36557. characterMakers.push(() => makeCharacter(
  36558. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36559. {
  36560. side: {
  36561. height: math.unit(6, "feet"),
  36562. weight: math.unit(150, "lb"),
  36563. name: "Side",
  36564. image: {
  36565. source: "./media/characters/rezukii/side.svg",
  36566. extra: 979/542,
  36567. bottom: 87/1066
  36568. }
  36569. },
  36570. },
  36571. [
  36572. {
  36573. name: "Tiny",
  36574. height: math.unit(2, "feet")
  36575. },
  36576. {
  36577. name: "Smol",
  36578. height: math.unit(4, "feet")
  36579. },
  36580. {
  36581. name: "Normal",
  36582. height: math.unit(8, "feet"),
  36583. default: true
  36584. },
  36585. {
  36586. name: "Big",
  36587. height: math.unit(12, "feet")
  36588. },
  36589. {
  36590. name: "Macro",
  36591. height: math.unit(30, "feet")
  36592. },
  36593. ]
  36594. ))
  36595. characterMakers.push(() => makeCharacter(
  36596. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36597. {
  36598. front: {
  36599. height: math.unit(14, "feet"),
  36600. weight: math.unit(9.5, "tonnes"),
  36601. name: "Front",
  36602. image: {
  36603. source: "./media/characters/dawnheart/front.svg",
  36604. extra: 2792/2675,
  36605. bottom: 64/2856
  36606. }
  36607. },
  36608. },
  36609. [
  36610. {
  36611. name: "Normal",
  36612. height: math.unit(14, "feet"),
  36613. default: true
  36614. },
  36615. ]
  36616. ))
  36617. characterMakers.push(() => makeCharacter(
  36618. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36619. {
  36620. front: {
  36621. height: math.unit(1.7, "m"),
  36622. name: "Front",
  36623. image: {
  36624. source: "./media/characters/gladi/front.svg",
  36625. extra: 1460/1362,
  36626. bottom: 19/1479
  36627. }
  36628. },
  36629. back: {
  36630. height: math.unit(1.7, "m"),
  36631. name: "Back",
  36632. image: {
  36633. source: "./media/characters/gladi/back.svg",
  36634. extra: 1459/1357,
  36635. bottom: 12/1471
  36636. }
  36637. },
  36638. feral: {
  36639. height: math.unit(2.05, "m"),
  36640. name: "Feral",
  36641. image: {
  36642. source: "./media/characters/gladi/feral.svg",
  36643. extra: 821/557,
  36644. bottom: 91/912
  36645. }
  36646. },
  36647. },
  36648. [
  36649. {
  36650. name: "Shortest",
  36651. height: math.unit(70, "cm")
  36652. },
  36653. {
  36654. name: "Normal",
  36655. height: math.unit(1.7, "m")
  36656. },
  36657. {
  36658. name: "Macro",
  36659. height: math.unit(10, "m"),
  36660. default: true
  36661. },
  36662. {
  36663. name: "Tallest",
  36664. height: math.unit(200, "m")
  36665. },
  36666. ]
  36667. ))
  36668. characterMakers.push(() => makeCharacter(
  36669. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36670. {
  36671. front: {
  36672. height: math.unit(5 + 7/12, "feet"),
  36673. weight: math.unit(92, "kg"),
  36674. name: "Front",
  36675. image: {
  36676. source: "./media/characters/erdno/front.svg",
  36677. extra: 1954/1889,
  36678. bottom: 22/1976
  36679. }
  36680. },
  36681. },
  36682. [
  36683. {
  36684. name: "Normal",
  36685. height: math.unit(5 + 7/12, "feet"),
  36686. default: true
  36687. },
  36688. ]
  36689. ))
  36690. characterMakers.push(() => makeCharacter(
  36691. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36692. {
  36693. front: {
  36694. height: math.unit(5 + 10/12, "feet"),
  36695. weight: math.unit(150, "lb"),
  36696. name: "Front",
  36697. image: {
  36698. source: "./media/characters/jamie/front.svg",
  36699. extra: 1908/1768,
  36700. bottom: 19/1927
  36701. }
  36702. },
  36703. },
  36704. [
  36705. {
  36706. name: "Minimum",
  36707. height: math.unit(2, "cm")
  36708. },
  36709. {
  36710. name: "Micro",
  36711. height: math.unit(3, "inches")
  36712. },
  36713. {
  36714. name: "Normal",
  36715. height: math.unit(5 + 10/12, "feet"),
  36716. default: true
  36717. },
  36718. {
  36719. name: "Macro",
  36720. height: math.unit(150, "feet")
  36721. },
  36722. {
  36723. name: "Megamacro",
  36724. height: math.unit(10000, "m")
  36725. },
  36726. ]
  36727. ))
  36728. characterMakers.push(() => makeCharacter(
  36729. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36730. {
  36731. front: {
  36732. height: math.unit(2, "meters"),
  36733. weight: math.unit(100, "kg"),
  36734. name: "Front",
  36735. image: {
  36736. source: "./media/characters/shiron/front.svg",
  36737. extra: 2103/1985,
  36738. bottom: 98/2201
  36739. }
  36740. },
  36741. back: {
  36742. height: math.unit(2, "meters"),
  36743. weight: math.unit(100, "kg"),
  36744. name: "Back",
  36745. image: {
  36746. source: "./media/characters/shiron/back.svg",
  36747. extra: 2110/2015,
  36748. bottom: 89/2199
  36749. }
  36750. },
  36751. hand: {
  36752. height: math.unit(0.96, "feet"),
  36753. name: "Hand",
  36754. image: {
  36755. source: "./media/characters/shiron/hand.svg"
  36756. }
  36757. },
  36758. foot: {
  36759. height: math.unit(1.464, "feet"),
  36760. name: "Foot",
  36761. image: {
  36762. source: "./media/characters/shiron/foot.svg"
  36763. }
  36764. },
  36765. },
  36766. [
  36767. {
  36768. name: "Normal",
  36769. height: math.unit(2, "meters")
  36770. },
  36771. {
  36772. name: "Macro",
  36773. height: math.unit(500, "meters"),
  36774. default: true
  36775. },
  36776. {
  36777. name: "Megamacro",
  36778. height: math.unit(20, "km")
  36779. },
  36780. ]
  36781. ))
  36782. characterMakers.push(() => makeCharacter(
  36783. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36784. {
  36785. front: {
  36786. height: math.unit(6, "feet"),
  36787. name: "Front",
  36788. image: {
  36789. source: "./media/characters/sam/front.svg",
  36790. extra: 849/826,
  36791. bottom: 19/868
  36792. }
  36793. },
  36794. },
  36795. [
  36796. {
  36797. name: "Normal",
  36798. height: math.unit(6, "feet"),
  36799. default: true
  36800. },
  36801. ]
  36802. ))
  36803. characterMakers.push(() => makeCharacter(
  36804. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36805. {
  36806. front: {
  36807. height: math.unit(8 + 4/12, "feet"),
  36808. weight: math.unit(122, "kg"),
  36809. name: "Front",
  36810. image: {
  36811. source: "./media/characters/namori-kurogawa/front.svg",
  36812. extra: 1894/1576,
  36813. bottom: 34/1928
  36814. }
  36815. },
  36816. },
  36817. [
  36818. {
  36819. name: "Normal",
  36820. height: math.unit(8 + 4/12, "feet"),
  36821. default: true
  36822. },
  36823. ]
  36824. ))
  36825. characterMakers.push(() => makeCharacter(
  36826. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36827. {
  36828. front: {
  36829. height: math.unit(9, "feet"),
  36830. weight: math.unit(621, "lb"),
  36831. name: "Front",
  36832. image: {
  36833. source: "./media/characters/unmru/front.svg",
  36834. extra: 1853/1747,
  36835. bottom: 73/1926
  36836. }
  36837. },
  36838. side: {
  36839. height: math.unit(9, "feet"),
  36840. weight: math.unit(621, "lb"),
  36841. name: "Side",
  36842. image: {
  36843. source: "./media/characters/unmru/side.svg",
  36844. extra: 1781/1671,
  36845. bottom: 127/1908
  36846. }
  36847. },
  36848. back: {
  36849. height: math.unit(9, "feet"),
  36850. weight: math.unit(621, "lb"),
  36851. name: "Back",
  36852. image: {
  36853. source: "./media/characters/unmru/back.svg",
  36854. extra: 1894/1765,
  36855. bottom: 75/1969
  36856. }
  36857. },
  36858. dick: {
  36859. height: math.unit(3, "feet"),
  36860. weight: math.unit(35, "lb"),
  36861. name: "Dick",
  36862. image: {
  36863. source: "./media/characters/unmru/dick.svg"
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Normal",
  36870. height: math.unit(9, "feet")
  36871. },
  36872. {
  36873. name: "Natural",
  36874. height: math.unit(27, "feet"),
  36875. default: true
  36876. },
  36877. {
  36878. name: "Giant",
  36879. height: math.unit(90, "feet")
  36880. },
  36881. {
  36882. name: "Kaiju",
  36883. height: math.unit(270, "feet")
  36884. },
  36885. {
  36886. name: "Macro",
  36887. height: math.unit(900, "feet")
  36888. },
  36889. {
  36890. name: "Macro+",
  36891. height: math.unit(2700, "feet")
  36892. },
  36893. {
  36894. name: "Megamacro",
  36895. height: math.unit(9000, "feet")
  36896. },
  36897. {
  36898. name: "City-Crushing",
  36899. height: math.unit(27000, "feet")
  36900. },
  36901. {
  36902. name: "Mountain-Mashing",
  36903. height: math.unit(90000, "feet")
  36904. },
  36905. {
  36906. name: "Earth-Eclipsing",
  36907. height: math.unit(2.7e8, "feet")
  36908. },
  36909. {
  36910. name: "Sol-Swallowing",
  36911. height: math.unit(9e10, "feet")
  36912. },
  36913. {
  36914. name: "Majoris-Munching",
  36915. height: math.unit(2.7e13, "feet")
  36916. },
  36917. ]
  36918. ))
  36919. characterMakers.push(() => makeCharacter(
  36920. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36921. {
  36922. front: {
  36923. height: math.unit(1, "inch"),
  36924. name: "Front",
  36925. image: {
  36926. source: "./media/characters/squeaks-mouse/front.svg",
  36927. extra: 352/308,
  36928. bottom: 25/377
  36929. }
  36930. },
  36931. },
  36932. [
  36933. {
  36934. name: "Micro",
  36935. height: math.unit(1, "inch"),
  36936. default: true
  36937. },
  36938. ]
  36939. ))
  36940. characterMakers.push(() => makeCharacter(
  36941. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  36942. {
  36943. side: {
  36944. height: math.unit(35, "feet"),
  36945. name: "Side",
  36946. image: {
  36947. source: "./media/characters/sayko/side.svg",
  36948. extra: 1697/1021,
  36949. bottom: 82/1779
  36950. }
  36951. },
  36952. head: {
  36953. height: math.unit(16, "feet"),
  36954. name: "Head",
  36955. image: {
  36956. source: "./media/characters/sayko/head.svg"
  36957. }
  36958. },
  36959. forepaw: {
  36960. height: math.unit(7.85, "feet"),
  36961. name: "Forepaw",
  36962. image: {
  36963. source: "./media/characters/sayko/forepaw.svg"
  36964. }
  36965. },
  36966. hindpaw: {
  36967. height: math.unit(8.8, "feet"),
  36968. name: "Hindpaw",
  36969. image: {
  36970. source: "./media/characters/sayko/hindpaw.svg"
  36971. }
  36972. },
  36973. },
  36974. [
  36975. {
  36976. name: "Normal",
  36977. height: math.unit(35, "feet"),
  36978. default: true
  36979. },
  36980. {
  36981. name: "Colossus",
  36982. height: math.unit(100, "meters")
  36983. },
  36984. {
  36985. name: "\"Small\" Deity",
  36986. height: math.unit(1, "km")
  36987. },
  36988. {
  36989. name: "\"Large\" Deity",
  36990. height: math.unit(15, "km")
  36991. },
  36992. ]
  36993. ))
  36994. characterMakers.push(() => makeCharacter(
  36995. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  36996. {
  36997. front: {
  36998. height: math.unit(6, "feet"),
  36999. weight: math.unit(250, "lb"),
  37000. name: "Front",
  37001. image: {
  37002. source: "./media/characters/mukiro/front.svg",
  37003. extra: 1368/1310,
  37004. bottom: 34/1402
  37005. }
  37006. },
  37007. },
  37008. [
  37009. {
  37010. name: "Normal",
  37011. height: math.unit(6, "feet"),
  37012. default: true
  37013. },
  37014. ]
  37015. ))
  37016. characterMakers.push(() => makeCharacter(
  37017. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37018. {
  37019. front: {
  37020. height: math.unit(12 + 4/12, "feet"),
  37021. name: "Front",
  37022. image: {
  37023. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37024. extra: 1346/1311,
  37025. bottom: 65/1411
  37026. }
  37027. },
  37028. },
  37029. [
  37030. {
  37031. name: "Base",
  37032. height: math.unit(12 + 4/12, "feet"),
  37033. default: true
  37034. },
  37035. {
  37036. name: "Macro",
  37037. height: math.unit(150, "feet")
  37038. },
  37039. {
  37040. name: "Mega",
  37041. height: math.unit(2, "miles")
  37042. },
  37043. {
  37044. name: "Demi God",
  37045. height: math.unit(4, "AU")
  37046. },
  37047. {
  37048. name: "God Size",
  37049. height: math.unit(1, "universe")
  37050. },
  37051. ]
  37052. ))
  37053. characterMakers.push(() => makeCharacter(
  37054. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37055. {
  37056. front: {
  37057. height: math.unit(3 + 3/12, "feet"),
  37058. weight: math.unit(88, "lb"),
  37059. name: "Front",
  37060. image: {
  37061. source: "./media/characters/trey/front.svg",
  37062. extra: 1815/1509,
  37063. bottom: 60/1875
  37064. }
  37065. },
  37066. },
  37067. [
  37068. {
  37069. name: "Normal",
  37070. height: math.unit(3 + 3/12, "feet"),
  37071. default: true
  37072. },
  37073. ]
  37074. ))
  37075. characterMakers.push(() => makeCharacter(
  37076. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37077. {
  37078. front: {
  37079. height: math.unit(4, "meters"),
  37080. name: "Front",
  37081. image: {
  37082. source: "./media/characters/adelonda/front.svg",
  37083. extra: 1942/1775,
  37084. bottom: 33/1975
  37085. }
  37086. },
  37087. back: {
  37088. height: math.unit(4, "meters"),
  37089. name: "Back",
  37090. image: {
  37091. source: "./media/characters/adelonda/back.svg",
  37092. extra: 1932/1780,
  37093. bottom: 42/1974
  37094. }
  37095. },
  37096. bust: {
  37097. height: math.unit(1.8, "meter"),
  37098. name: "Bust",
  37099. image: {
  37100. source: "./media/characters/adelonda/bust.svg"
  37101. }
  37102. },
  37103. },
  37104. [
  37105. {
  37106. name: "Normal",
  37107. height: math.unit(4, "meters"),
  37108. default: true
  37109. },
  37110. ]
  37111. ))
  37112. characterMakers.push(() => makeCharacter(
  37113. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37114. {
  37115. front: {
  37116. height: math.unit(8 + 4/12, "feet"),
  37117. weight: math.unit(670, "lb"),
  37118. name: "Front",
  37119. image: {
  37120. source: "./media/characters/acadiel/front.svg",
  37121. extra: 1901/1595,
  37122. bottom: 142/2043
  37123. }
  37124. },
  37125. },
  37126. [
  37127. {
  37128. name: "Normal",
  37129. height: math.unit(8 + 4/12, "feet"),
  37130. default: true
  37131. },
  37132. {
  37133. name: "Macro",
  37134. height: math.unit(200, "feet")
  37135. },
  37136. ]
  37137. ))
  37138. characterMakers.push(() => makeCharacter(
  37139. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37140. {
  37141. front: {
  37142. height: math.unit(6 + 2/12, "feet"),
  37143. weight: math.unit(185, "lb"),
  37144. name: "Front",
  37145. image: {
  37146. source: "./media/characters/kayne-ein/front.svg",
  37147. extra: 1780/1560,
  37148. bottom: 81/1861
  37149. }
  37150. },
  37151. },
  37152. [
  37153. {
  37154. name: "Normal",
  37155. height: math.unit(6 + 2/12, "feet"),
  37156. default: true
  37157. },
  37158. {
  37159. name: "Transformation Stage",
  37160. height: math.unit(15, "feet")
  37161. },
  37162. {
  37163. name: "Macro",
  37164. height: math.unit(150, "feet")
  37165. },
  37166. {
  37167. name: "Earth's Shadow",
  37168. height: math.unit(6200, "miles")
  37169. },
  37170. {
  37171. name: "Universal Demon",
  37172. height: math.unit(28e9, "parsecs")
  37173. },
  37174. {
  37175. name: "Multiverse God",
  37176. height: math.unit(3, "multiverses")
  37177. },
  37178. ]
  37179. ))
  37180. characterMakers.push(() => makeCharacter(
  37181. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37182. {
  37183. front: {
  37184. height: math.unit(5 + 5/12, "feet"),
  37185. name: "Front",
  37186. image: {
  37187. source: "./media/characters/fawn/front.svg",
  37188. extra: 1873/1731,
  37189. bottom: 95/1968
  37190. }
  37191. },
  37192. back: {
  37193. height: math.unit(5 + 5/12, "feet"),
  37194. name: "Back",
  37195. image: {
  37196. source: "./media/characters/fawn/back.svg",
  37197. extra: 1813/1700,
  37198. bottom: 14/1827
  37199. }
  37200. },
  37201. hoof: {
  37202. height: math.unit(1.45, "feet"),
  37203. name: "Hoof",
  37204. image: {
  37205. source: "./media/characters/fawn/hoof.svg"
  37206. }
  37207. },
  37208. },
  37209. [
  37210. {
  37211. name: "Normal",
  37212. height: math.unit(5 + 5/12, "feet"),
  37213. default: true
  37214. },
  37215. ]
  37216. ))
  37217. characterMakers.push(() => makeCharacter(
  37218. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37219. {
  37220. front: {
  37221. height: math.unit(2 + 5/12, "feet"),
  37222. name: "Front",
  37223. image: {
  37224. source: "./media/characters/orion/front.svg",
  37225. extra: 1366/1304,
  37226. bottom: 43/1409
  37227. }
  37228. },
  37229. paw: {
  37230. height: math.unit(0.52, "feet"),
  37231. name: "Paw",
  37232. image: {
  37233. source: "./media/characters/orion/paw.svg"
  37234. }
  37235. },
  37236. },
  37237. [
  37238. {
  37239. name: "Normal",
  37240. height: math.unit(2 + 5/12, "feet"),
  37241. default: true
  37242. },
  37243. ]
  37244. ))
  37245. characterMakers.push(() => makeCharacter(
  37246. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37247. {
  37248. front: {
  37249. height: math.unit(5 + 10/12, "feet"),
  37250. name: "Front",
  37251. image: {
  37252. source: "./media/characters/vera/front.svg",
  37253. extra: 1680/1575,
  37254. bottom: 49/1729
  37255. }
  37256. },
  37257. back: {
  37258. height: math.unit(5 + 10/12, "feet"),
  37259. name: "Back",
  37260. image: {
  37261. source: "./media/characters/vera/back.svg",
  37262. extra: 1700/1588,
  37263. bottom: 18/1718
  37264. }
  37265. },
  37266. arcanine: {
  37267. height: math.unit(6 + 8/12, "feet"),
  37268. name: "Arcanine",
  37269. image: {
  37270. source: "./media/characters/vera/arcanine.svg",
  37271. extra: 1590/1511,
  37272. bottom: 71/1661
  37273. }
  37274. },
  37275. maw: {
  37276. height: math.unit(0.82, "feet"),
  37277. name: "Maw",
  37278. image: {
  37279. source: "./media/characters/vera/maw.svg"
  37280. }
  37281. },
  37282. mawArcanine: {
  37283. height: math.unit(0.97, "feet"),
  37284. name: "Maw (Arcanine)",
  37285. image: {
  37286. source: "./media/characters/vera/maw-arcanine.svg"
  37287. }
  37288. },
  37289. paw: {
  37290. height: math.unit(0.75, "feet"),
  37291. name: "Paw",
  37292. image: {
  37293. source: "./media/characters/vera/paw.svg"
  37294. }
  37295. },
  37296. pawprint: {
  37297. height: math.unit(0.52, "feet"),
  37298. name: "Pawprint",
  37299. image: {
  37300. source: "./media/characters/vera/pawprint.svg"
  37301. }
  37302. },
  37303. },
  37304. [
  37305. {
  37306. name: "Normal",
  37307. height: math.unit(5 + 10/12, "feet"),
  37308. default: true
  37309. },
  37310. {
  37311. name: "Macro",
  37312. height: math.unit(75, "feet")
  37313. },
  37314. ]
  37315. ))
  37316. characterMakers.push(() => makeCharacter(
  37317. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37318. {
  37319. front: {
  37320. height: math.unit(4, "feet"),
  37321. weight: math.unit(40, "lb"),
  37322. name: "Front",
  37323. image: {
  37324. source: "./media/characters/orvan-rabbit/front.svg",
  37325. extra: 1896/1642,
  37326. bottom: 29/1925
  37327. }
  37328. },
  37329. },
  37330. [
  37331. {
  37332. name: "Normal",
  37333. height: math.unit(4, "feet"),
  37334. default: true
  37335. },
  37336. ]
  37337. ))
  37338. characterMakers.push(() => makeCharacter(
  37339. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37340. {
  37341. front: {
  37342. height: math.unit(6, "feet"),
  37343. weight: math.unit(168, "lb"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/lisa/front.svg",
  37347. extra: 2065/1867,
  37348. bottom: 46/2111
  37349. }
  37350. },
  37351. back: {
  37352. height: math.unit(6, "feet"),
  37353. weight: math.unit(168, "lb"),
  37354. name: "Back",
  37355. image: {
  37356. source: "./media/characters/lisa/back.svg",
  37357. extra: 1982/1838,
  37358. bottom: 29/2011
  37359. }
  37360. },
  37361. maw: {
  37362. height: math.unit(0.81, "feet"),
  37363. name: "Maw",
  37364. image: {
  37365. source: "./media/characters/lisa/maw.svg"
  37366. }
  37367. },
  37368. paw: {
  37369. height: math.unit(0.9, "feet"),
  37370. name: "Paw",
  37371. image: {
  37372. source: "./media/characters/lisa/paw.svg"
  37373. }
  37374. },
  37375. caribousune: {
  37376. height: math.unit(7 + 2/12, "feet"),
  37377. weight: math.unit(268, "lb"),
  37378. name: "Caribousune",
  37379. image: {
  37380. source: "./media/characters/lisa/caribousune.svg",
  37381. extra: 1843/1633,
  37382. bottom: 29/1872
  37383. }
  37384. },
  37385. frontCaribousune: {
  37386. height: math.unit(7 + 2/12, "feet"),
  37387. weight: math.unit(268, "lb"),
  37388. name: "Front (Caribousune)",
  37389. image: {
  37390. source: "./media/characters/lisa/front-caribousune.svg",
  37391. extra: 1818/1638,
  37392. bottom: 52/1870
  37393. }
  37394. },
  37395. sideCaribousune: {
  37396. height: math.unit(7 + 2/12, "feet"),
  37397. weight: math.unit(268, "lb"),
  37398. name: "Side (Caribousune)",
  37399. image: {
  37400. source: "./media/characters/lisa/side-caribousune.svg",
  37401. extra: 1851/1635,
  37402. bottom: 16/1867
  37403. }
  37404. },
  37405. backCaribousune: {
  37406. height: math.unit(7 + 2/12, "feet"),
  37407. weight: math.unit(268, "lb"),
  37408. name: "Back (Caribousune)",
  37409. image: {
  37410. source: "./media/characters/lisa/back-caribousune.svg",
  37411. extra: 1801/1604,
  37412. bottom: 44/1845
  37413. }
  37414. },
  37415. caribou: {
  37416. height: math.unit(7 + 2/12, "feet"),
  37417. weight: math.unit(268, "lb"),
  37418. name: "Caribou",
  37419. image: {
  37420. source: "./media/characters/lisa/caribou.svg",
  37421. extra: 1843/1633,
  37422. bottom: 29/1872
  37423. }
  37424. },
  37425. frontCaribou: {
  37426. height: math.unit(7 + 2/12, "feet"),
  37427. weight: math.unit(268, "lb"),
  37428. name: "Front (Caribou)",
  37429. image: {
  37430. source: "./media/characters/lisa/front-caribou.svg",
  37431. extra: 1818/1638,
  37432. bottom: 52/1870
  37433. }
  37434. },
  37435. sideCaribou: {
  37436. height: math.unit(7 + 2/12, "feet"),
  37437. weight: math.unit(268, "lb"),
  37438. name: "Side (Caribou)",
  37439. image: {
  37440. source: "./media/characters/lisa/side-caribou.svg",
  37441. extra: 1851/1635,
  37442. bottom: 16/1867
  37443. }
  37444. },
  37445. backCaribou: {
  37446. height: math.unit(7 + 2/12, "feet"),
  37447. weight: math.unit(268, "lb"),
  37448. name: "Back (Caribou)",
  37449. image: {
  37450. source: "./media/characters/lisa/back-caribou.svg",
  37451. extra: 1801/1604,
  37452. bottom: 44/1845
  37453. }
  37454. },
  37455. mawCaribou: {
  37456. height: math.unit(1.45, "feet"),
  37457. name: "Maw (Caribou)",
  37458. image: {
  37459. source: "./media/characters/lisa/maw-caribou.svg"
  37460. }
  37461. },
  37462. mawCaribousune: {
  37463. height: math.unit(1.45, "feet"),
  37464. name: "Maw (Caribousune)",
  37465. image: {
  37466. source: "./media/characters/lisa/maw-caribousune.svg"
  37467. }
  37468. },
  37469. pawCaribousune: {
  37470. height: math.unit(1.61, "feet"),
  37471. name: "Paw (Caribou)",
  37472. image: {
  37473. source: "./media/characters/lisa/paw-caribousune.svg"
  37474. }
  37475. },
  37476. },
  37477. [
  37478. {
  37479. name: "Normal",
  37480. height: math.unit(6, "feet")
  37481. },
  37482. {
  37483. name: "God Size",
  37484. height: math.unit(72, "feet"),
  37485. default: true
  37486. },
  37487. {
  37488. name: "Towering",
  37489. height: math.unit(288, "feet")
  37490. },
  37491. {
  37492. name: "City Size",
  37493. height: math.unit(48384, "feet")
  37494. },
  37495. {
  37496. name: "Continental",
  37497. height: math.unit(4200, "miles")
  37498. },
  37499. {
  37500. name: "Planet Eater",
  37501. height: math.unit(42, "earths")
  37502. },
  37503. {
  37504. name: "Star Swallower",
  37505. height: math.unit(42, "solarradii")
  37506. },
  37507. {
  37508. name: "System Swallower",
  37509. height: math.unit(84000, "AU")
  37510. },
  37511. {
  37512. name: "Galaxy Gobbler",
  37513. height: math.unit(42, "galaxies")
  37514. },
  37515. {
  37516. name: "Universe Devourer",
  37517. height: math.unit(42, "universes")
  37518. },
  37519. {
  37520. name: "Multiverse Muncher",
  37521. height: math.unit(42, "multiverses")
  37522. },
  37523. ]
  37524. ))
  37525. characterMakers.push(() => makeCharacter(
  37526. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37527. {
  37528. front: {
  37529. height: math.unit(36, "feet"),
  37530. name: "Front",
  37531. image: {
  37532. source: "./media/characters/shadow-rat/front.svg",
  37533. extra: 1845/1758,
  37534. bottom: 83/1928
  37535. }
  37536. },
  37537. },
  37538. [
  37539. {
  37540. name: "Macro",
  37541. height: math.unit(36, "feet"),
  37542. default: true
  37543. },
  37544. ]
  37545. ))
  37546. characterMakers.push(() => makeCharacter(
  37547. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37548. {
  37549. side: {
  37550. height: math.unit(8, "feet"),
  37551. weight: math.unit(2630, "lb"),
  37552. name: "Side",
  37553. image: {
  37554. source: "./media/characters/torallia/side.svg",
  37555. extra: 2164/2021,
  37556. bottom: 371/2535
  37557. }
  37558. },
  37559. },
  37560. [
  37561. {
  37562. name: "Mortal Interaction",
  37563. height: math.unit(8, "feet")
  37564. },
  37565. {
  37566. name: "Natural",
  37567. height: math.unit(24, "feet"),
  37568. default: true
  37569. },
  37570. {
  37571. name: "Giant",
  37572. height: math.unit(80, "feet")
  37573. },
  37574. {
  37575. name: "Kaiju",
  37576. height: math.unit(240, "feet")
  37577. },
  37578. {
  37579. name: "Macro",
  37580. height: math.unit(800, "feet")
  37581. },
  37582. {
  37583. name: "Macro+",
  37584. height: math.unit(2400, "feet")
  37585. },
  37586. {
  37587. name: "Macro++",
  37588. height: math.unit(8000, "feet")
  37589. },
  37590. {
  37591. name: "City-Crushing",
  37592. height: math.unit(24000, "feet")
  37593. },
  37594. {
  37595. name: "Mountain-Mashing",
  37596. height: math.unit(80000, "feet")
  37597. },
  37598. {
  37599. name: "District Demolisher",
  37600. height: math.unit(240000, "feet")
  37601. },
  37602. {
  37603. name: "Tri-County Terror",
  37604. height: math.unit(800000, "feet")
  37605. },
  37606. {
  37607. name: "State Smasher",
  37608. height: math.unit(2.4e6, "feet")
  37609. },
  37610. {
  37611. name: "Nation Nemesis",
  37612. height: math.unit(8e6, "feet")
  37613. },
  37614. {
  37615. name: "Continent Cracker",
  37616. height: math.unit(2.4e7, "feet")
  37617. },
  37618. {
  37619. name: "Planet-Pillaging",
  37620. height: math.unit(8e7, "feet")
  37621. },
  37622. {
  37623. name: "Earth-Eclipsing",
  37624. height: math.unit(2.4e8, "feet")
  37625. },
  37626. {
  37627. name: "Jovian-Jostling",
  37628. height: math.unit(8e8, "feet")
  37629. },
  37630. {
  37631. name: "Gas Giant Gulper",
  37632. height: math.unit(2.4e9, "feet")
  37633. },
  37634. {
  37635. name: "Astral Annihilator",
  37636. height: math.unit(8e9, "feet")
  37637. },
  37638. {
  37639. name: "Celestial Conqueror",
  37640. height: math.unit(2.4e10, "feet")
  37641. },
  37642. {
  37643. name: "Sol-Swallowing",
  37644. height: math.unit(8e10, "feet")
  37645. },
  37646. {
  37647. name: "Hunter of the Heavens",
  37648. height: math.unit(2.4e13, "feet")
  37649. },
  37650. ]
  37651. ))
  37652. characterMakers.push(() => makeCharacter(
  37653. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37654. {
  37655. front: {
  37656. height: math.unit(6 + 8/12, "feet"),
  37657. name: "Front",
  37658. image: {
  37659. source: "./media/characters/rebecca-pawlson/front.svg",
  37660. extra: 1737/1596,
  37661. bottom: 107/1844
  37662. }
  37663. },
  37664. back: {
  37665. height: math.unit(6 + 8/12, "feet"),
  37666. name: "Back",
  37667. image: {
  37668. source: "./media/characters/rebecca-pawlson/back.svg",
  37669. extra: 1702/1523,
  37670. bottom: 86/1788
  37671. }
  37672. },
  37673. },
  37674. [
  37675. {
  37676. name: "Normal",
  37677. height: math.unit(6 + 8/12, "feet")
  37678. },
  37679. {
  37680. name: "Mini Macro",
  37681. height: math.unit(10, "feet"),
  37682. default: true
  37683. },
  37684. {
  37685. name: "Macro",
  37686. height: math.unit(100, "feet")
  37687. },
  37688. {
  37689. name: "Mega Macro",
  37690. height: math.unit(2500, "feet")
  37691. },
  37692. {
  37693. name: "Giga Macro",
  37694. height: math.unit(50, "miles")
  37695. },
  37696. ]
  37697. ))
  37698. characterMakers.push(() => makeCharacter(
  37699. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37700. {
  37701. front: {
  37702. height: math.unit(7 + 6/12, "feet"),
  37703. weight: math.unit(600, "lb"),
  37704. name: "Front",
  37705. image: {
  37706. source: "./media/characters/moxie-nova/front.svg",
  37707. extra: 1734/1652,
  37708. bottom: 41/1775
  37709. }
  37710. },
  37711. },
  37712. [
  37713. {
  37714. name: "Normal",
  37715. height: math.unit(7 + 6/12, "feet"),
  37716. default: true
  37717. },
  37718. ]
  37719. ))
  37720. characterMakers.push(() => makeCharacter(
  37721. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37722. {
  37723. front: {
  37724. height: math.unit(5, "feet"),
  37725. weight: math.unit(150, "lb"),
  37726. name: "Front",
  37727. image: {
  37728. source: "./media/characters/tiffany/front.svg",
  37729. extra: 1941/1845,
  37730. bottom: 58/1999
  37731. }
  37732. },
  37733. },
  37734. [
  37735. {
  37736. name: "Normal",
  37737. height: math.unit(5, "feet"),
  37738. default: true
  37739. },
  37740. ]
  37741. ))
  37742. characterMakers.push(() => makeCharacter(
  37743. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37744. {
  37745. front: {
  37746. height: math.unit(8, "feet"),
  37747. weight: math.unit(300, "lb"),
  37748. name: "Front",
  37749. image: {
  37750. source: "./media/characters/raxinath/front.svg",
  37751. extra: 1407/1309,
  37752. bottom: 39/1446
  37753. }
  37754. },
  37755. back: {
  37756. height: math.unit(8, "feet"),
  37757. weight: math.unit(300, "lb"),
  37758. name: "Back",
  37759. image: {
  37760. source: "./media/characters/raxinath/back.svg",
  37761. extra: 1405/1315,
  37762. bottom: 9/1414
  37763. }
  37764. },
  37765. },
  37766. [
  37767. {
  37768. name: "Speck",
  37769. height: math.unit(0.5, "nm")
  37770. },
  37771. {
  37772. name: "Micro",
  37773. height: math.unit(3, "inches")
  37774. },
  37775. {
  37776. name: "Kobold",
  37777. height: math.unit(3, "feet")
  37778. },
  37779. {
  37780. name: "Normal",
  37781. height: math.unit(8, "feet"),
  37782. default: true
  37783. },
  37784. {
  37785. name: "Giant",
  37786. height: math.unit(50, "feet")
  37787. },
  37788. {
  37789. name: "Macro",
  37790. height: math.unit(1000, "feet")
  37791. },
  37792. {
  37793. name: "Megamacro",
  37794. height: math.unit(1, "mile")
  37795. },
  37796. ]
  37797. ))
  37798. characterMakers.push(() => makeCharacter(
  37799. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37800. {
  37801. front: {
  37802. height: math.unit(10, "feet"),
  37803. weight: math.unit(1442, "lb"),
  37804. name: "Front",
  37805. image: {
  37806. source: "./media/characters/mal-dragon/front.svg",
  37807. extra: 1515/1444,
  37808. bottom: 113/1628
  37809. }
  37810. },
  37811. back: {
  37812. height: math.unit(10, "feet"),
  37813. weight: math.unit(1442, "lb"),
  37814. name: "Back",
  37815. image: {
  37816. source: "./media/characters/mal-dragon/back.svg",
  37817. extra: 1527/1434,
  37818. bottom: 25/1552
  37819. }
  37820. },
  37821. },
  37822. [
  37823. {
  37824. name: "Mortal Interaction",
  37825. height: math.unit(10, "feet"),
  37826. default: true
  37827. },
  37828. {
  37829. name: "Large",
  37830. height: math.unit(30, "feet")
  37831. },
  37832. {
  37833. name: "Kaiju",
  37834. height: math.unit(300, "feet")
  37835. },
  37836. {
  37837. name: "Megamacro",
  37838. height: math.unit(10000, "feet")
  37839. },
  37840. {
  37841. name: "Continent Cracker",
  37842. height: math.unit(30000000, "feet")
  37843. },
  37844. {
  37845. name: "Sol-Swallowing",
  37846. height: math.unit(1e11, "feet")
  37847. },
  37848. {
  37849. name: "Light Universal",
  37850. height: math.unit(5, "universes")
  37851. },
  37852. {
  37853. name: "Universe Atoms",
  37854. height: math.unit(1.829e9, "universes")
  37855. },
  37856. {
  37857. name: "Light Multiversal",
  37858. height: math.unit(5, "multiverses")
  37859. },
  37860. {
  37861. name: "Multiverse Atoms",
  37862. height: math.unit(1.829e9, "multiverses")
  37863. },
  37864. {
  37865. name: "Fabric of Time",
  37866. height: math.unit(1e262, "multiverses")
  37867. },
  37868. ]
  37869. ))
  37870. characterMakers.push(() => makeCharacter(
  37871. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37872. {
  37873. front: {
  37874. height: math.unit(9, "feet"),
  37875. weight: math.unit(1050, "lb"),
  37876. name: "Front",
  37877. image: {
  37878. source: "./media/characters/tabitha/front.svg",
  37879. extra: 2083/1994,
  37880. bottom: 68/2151
  37881. }
  37882. },
  37883. },
  37884. [
  37885. {
  37886. name: "Baseline",
  37887. height: math.unit(9, "feet"),
  37888. default: true
  37889. },
  37890. {
  37891. name: "Giant",
  37892. height: math.unit(90, "feet")
  37893. },
  37894. {
  37895. name: "Macro",
  37896. height: math.unit(900, "feet")
  37897. },
  37898. {
  37899. name: "Megamacro",
  37900. height: math.unit(9000, "feet")
  37901. },
  37902. {
  37903. name: "City-Crushing",
  37904. height: math.unit(27000, "feet")
  37905. },
  37906. {
  37907. name: "Mountain-Mashing",
  37908. height: math.unit(90000, "feet")
  37909. },
  37910. {
  37911. name: "Nation Nemesis",
  37912. height: math.unit(9e6, "feet")
  37913. },
  37914. {
  37915. name: "Continent Cracker",
  37916. height: math.unit(27e6, "feet")
  37917. },
  37918. {
  37919. name: "Earth-Eclipsing",
  37920. height: math.unit(2.7e8, "feet")
  37921. },
  37922. {
  37923. name: "Gas Giant Gulper",
  37924. height: math.unit(2.7e9, "feet")
  37925. },
  37926. {
  37927. name: "Sol-Swallowing",
  37928. height: math.unit(9e10, "feet")
  37929. },
  37930. {
  37931. name: "Galaxy Gulper",
  37932. height: math.unit(9, "galaxies")
  37933. },
  37934. {
  37935. name: "Cosmos Churner",
  37936. height: math.unit(9, "universes")
  37937. },
  37938. ]
  37939. ))
  37940. characterMakers.push(() => makeCharacter(
  37941. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  37942. {
  37943. front: {
  37944. height: math.unit(160, "cm"),
  37945. weight: math.unit(55, "kg"),
  37946. name: "Front",
  37947. image: {
  37948. source: "./media/characters/tow/front.svg",
  37949. extra: 1751/1722,
  37950. bottom: 74/1825
  37951. }
  37952. },
  37953. },
  37954. [
  37955. {
  37956. name: "Norm",
  37957. height: math.unit(160, "cm")
  37958. },
  37959. {
  37960. name: "Casual",
  37961. height: math.unit(3200, "m"),
  37962. default: true
  37963. },
  37964. {
  37965. name: "Show-Off",
  37966. height: math.unit(160, "km")
  37967. },
  37968. ]
  37969. ))
  37970. characterMakers.push(() => makeCharacter(
  37971. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  37972. {
  37973. front: {
  37974. height: math.unit(7 + 11/12, "feet"),
  37975. weight: math.unit(342.8, "lb"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/vivian-orca-dragon/front.svg",
  37979. extra: 1890/1865,
  37980. bottom: 28/1918
  37981. }
  37982. },
  37983. },
  37984. [
  37985. {
  37986. name: "Micro",
  37987. height: math.unit(5, "inches")
  37988. },
  37989. {
  37990. name: "Normal",
  37991. height: math.unit(7 + 11/12, "feet"),
  37992. default: true
  37993. },
  37994. {
  37995. name: "Macro",
  37996. height: math.unit(395 + 7/12, "feet")
  37997. },
  37998. ]
  37999. ))
  38000. characterMakers.push(() => makeCharacter(
  38001. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38002. {
  38003. side: {
  38004. height: math.unit(10, "feet"),
  38005. weight: math.unit(1442, "lb"),
  38006. name: "Side",
  38007. image: {
  38008. source: "./media/characters/lotherakon/side.svg",
  38009. extra: 1604/1497,
  38010. bottom: 89/1693
  38011. }
  38012. },
  38013. },
  38014. [
  38015. {
  38016. name: "Mortal Interaction",
  38017. height: math.unit(10, "feet")
  38018. },
  38019. {
  38020. name: "Large",
  38021. height: math.unit(30, "feet"),
  38022. default: true
  38023. },
  38024. {
  38025. name: "Giant",
  38026. height: math.unit(100, "feet")
  38027. },
  38028. {
  38029. name: "Kaiju",
  38030. height: math.unit(300, "feet")
  38031. },
  38032. {
  38033. name: "Macro",
  38034. height: math.unit(1000, "feet")
  38035. },
  38036. {
  38037. name: "Macro+",
  38038. height: math.unit(3000, "feet")
  38039. },
  38040. {
  38041. name: "Megamacro",
  38042. height: math.unit(10000, "feet")
  38043. },
  38044. {
  38045. name: "City-Crushing",
  38046. height: math.unit(30000, "feet")
  38047. },
  38048. {
  38049. name: "Continent Cracker",
  38050. height: math.unit(30e6, "feet")
  38051. },
  38052. {
  38053. name: "Earth Eclipsing",
  38054. height: math.unit(3e8, "feet")
  38055. },
  38056. {
  38057. name: "Gas Giant Gulper",
  38058. height: math.unit(3e9, "feet")
  38059. },
  38060. {
  38061. name: "Sol-Swallowing",
  38062. height: math.unit(1e11, "feet")
  38063. },
  38064. {
  38065. name: "System Swallower",
  38066. height: math.unit(3e14, "feet")
  38067. },
  38068. {
  38069. name: "Galaxy Gulper",
  38070. height: math.unit(10, "galaxies")
  38071. },
  38072. {
  38073. name: "Light Universal",
  38074. height: math.unit(5, "universes")
  38075. },
  38076. {
  38077. name: "Universe Palm",
  38078. height: math.unit(20, "universes")
  38079. },
  38080. {
  38081. name: "Light Multiversal",
  38082. height: math.unit(5, "multiverses")
  38083. },
  38084. {
  38085. name: "Multiverse Palm",
  38086. height: math.unit(20, "multiverses")
  38087. },
  38088. {
  38089. name: "Inferno Incarnate",
  38090. height: math.unit(1e7, "multiverses")
  38091. },
  38092. ]
  38093. ))
  38094. characterMakers.push(() => makeCharacter(
  38095. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38096. {
  38097. front: {
  38098. height: math.unit(8, "feet"),
  38099. weight: math.unit(1200, "lb"),
  38100. name: "Front",
  38101. image: {
  38102. source: "./media/characters/malithee/front.svg",
  38103. extra: 1675/1640,
  38104. bottom: 162/1837
  38105. }
  38106. },
  38107. },
  38108. [
  38109. {
  38110. name: "Mortal Interaction",
  38111. height: math.unit(8, "feet"),
  38112. default: true
  38113. },
  38114. {
  38115. name: "Large",
  38116. height: math.unit(24, "feet")
  38117. },
  38118. {
  38119. name: "Kaiju",
  38120. height: math.unit(240, "feet")
  38121. },
  38122. {
  38123. name: "Megamacro",
  38124. height: math.unit(8000, "feet")
  38125. },
  38126. {
  38127. name: "Continent Cracker",
  38128. height: math.unit(24e6, "feet")
  38129. },
  38130. {
  38131. name: "Earth-Eclipsing",
  38132. height: math.unit(2.4e8, "feet")
  38133. },
  38134. {
  38135. name: "Sol-Swallowing",
  38136. height: math.unit(8e10, "feet")
  38137. },
  38138. {
  38139. name: "Galaxy Gulper",
  38140. height: math.unit(8, "galaxies")
  38141. },
  38142. {
  38143. name: "Light Universal",
  38144. height: math.unit(4, "universes")
  38145. },
  38146. {
  38147. name: "Universe Atoms",
  38148. height: math.unit(1.829e9, "universes")
  38149. },
  38150. {
  38151. name: "Light Multiversal",
  38152. height: math.unit(4, "multiverses")
  38153. },
  38154. {
  38155. name: "Multiverse Atoms",
  38156. height: math.unit(1.829e9, "multiverses")
  38157. },
  38158. {
  38159. name: "Nigh-Omnipresence",
  38160. height: math.unit(8e261, "multiverses")
  38161. },
  38162. ]
  38163. ))
  38164. characterMakers.push(() => makeCharacter(
  38165. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38166. {
  38167. front: {
  38168. height: math.unit(10, "feet"),
  38169. weight: math.unit(1500, "lb"),
  38170. name: "Front",
  38171. image: {
  38172. source: "./media/characters/miles-thestia/front.svg",
  38173. extra: 1812/1727,
  38174. bottom: 86/1898
  38175. }
  38176. },
  38177. back: {
  38178. height: math.unit(10, "feet"),
  38179. weight: math.unit(1500, "lb"),
  38180. name: "Back",
  38181. image: {
  38182. source: "./media/characters/miles-thestia/back.svg",
  38183. extra: 1799/1690,
  38184. bottom: 47/1846
  38185. }
  38186. },
  38187. frontNsfw: {
  38188. height: math.unit(10, "feet"),
  38189. weight: math.unit(1500, "lb"),
  38190. name: "Front (NSFW)",
  38191. image: {
  38192. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38193. extra: 1812/1727,
  38194. bottom: 86/1898
  38195. }
  38196. },
  38197. },
  38198. [
  38199. {
  38200. name: "Mini-Macro",
  38201. height: math.unit(10, "feet"),
  38202. default: true
  38203. },
  38204. ]
  38205. ))
  38206. characterMakers.push(() => makeCharacter(
  38207. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38208. {
  38209. front: {
  38210. height: math.unit(25, "feet"),
  38211. name: "Front",
  38212. image: {
  38213. source: "./media/characters/titan-s-wulf/front.svg",
  38214. extra: 1560/1484,
  38215. bottom: 76/1636
  38216. }
  38217. },
  38218. },
  38219. [
  38220. {
  38221. name: "Smallest",
  38222. height: math.unit(25, "feet"),
  38223. default: true
  38224. },
  38225. {
  38226. name: "Normal",
  38227. height: math.unit(200, "feet")
  38228. },
  38229. {
  38230. name: "Macro",
  38231. height: math.unit(200000, "feet")
  38232. },
  38233. {
  38234. name: "Multiversal Original",
  38235. height: math.unit(10000, "multiverses")
  38236. },
  38237. ]
  38238. ))
  38239. characterMakers.push(() => makeCharacter(
  38240. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38241. {
  38242. front: {
  38243. height: math.unit(8, "feet"),
  38244. weight: math.unit(553, "lb"),
  38245. name: "Front",
  38246. image: {
  38247. source: "./media/characters/tawendeh/front.svg",
  38248. extra: 2365/2268,
  38249. bottom: 83/2448
  38250. }
  38251. },
  38252. frontClothed: {
  38253. height: math.unit(8, "feet"),
  38254. weight: math.unit(553, "lb"),
  38255. name: "Front (Clothed)",
  38256. image: {
  38257. source: "./media/characters/tawendeh/front-clothed.svg",
  38258. extra: 2365/2268,
  38259. bottom: 83/2448
  38260. }
  38261. },
  38262. back: {
  38263. height: math.unit(8, "feet"),
  38264. weight: math.unit(553, "lb"),
  38265. name: "Back",
  38266. image: {
  38267. source: "./media/characters/tawendeh/back.svg",
  38268. extra: 2397/2294,
  38269. bottom: 42/2439
  38270. }
  38271. },
  38272. },
  38273. [
  38274. {
  38275. name: "Mortal Interaction",
  38276. height: math.unit(8, "feet"),
  38277. default: true
  38278. },
  38279. {
  38280. name: "Giant",
  38281. height: math.unit(80, "feet")
  38282. },
  38283. {
  38284. name: "Macro",
  38285. height: math.unit(800, "feet")
  38286. },
  38287. {
  38288. name: "Megamacro",
  38289. height: math.unit(8000, "feet")
  38290. },
  38291. {
  38292. name: "City-Crushing",
  38293. height: math.unit(24000, "feet")
  38294. },
  38295. {
  38296. name: "Mountain-Mashing",
  38297. height: math.unit(80000, "feet")
  38298. },
  38299. {
  38300. name: "Nation Nemesis",
  38301. height: math.unit(8e6, "feet")
  38302. },
  38303. {
  38304. name: "Continent Cracker",
  38305. height: math.unit(24e6, "feet")
  38306. },
  38307. {
  38308. name: "Earth-Eclipsing",
  38309. height: math.unit(2.4e8, "feet")
  38310. },
  38311. {
  38312. name: "Gas Giant Gulper",
  38313. height: math.unit(2.4e9, "feet")
  38314. },
  38315. {
  38316. name: "Sol-Swallowing",
  38317. height: math.unit(8e10, "feet")
  38318. },
  38319. {
  38320. name: "Galaxy Gulper",
  38321. height: math.unit(8, "galaxies")
  38322. },
  38323. {
  38324. name: "Cosmos Churner",
  38325. height: math.unit(8, "universes")
  38326. },
  38327. {
  38328. name: "Omnipotent Otter",
  38329. height: math.unit(80, "universes")
  38330. },
  38331. ]
  38332. ))
  38333. characterMakers.push(() => makeCharacter(
  38334. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38335. {
  38336. front: {
  38337. height: math.unit(2.6, "meters"),
  38338. weight: math.unit(900, "kg"),
  38339. name: "Front",
  38340. image: {
  38341. source: "./media/characters/neesha/front.svg",
  38342. extra: 1803/1653,
  38343. bottom: 128/1931
  38344. }
  38345. },
  38346. },
  38347. [
  38348. {
  38349. name: "Normal",
  38350. height: math.unit(2.6, "meters"),
  38351. default: true
  38352. },
  38353. {
  38354. name: "Macro",
  38355. height: math.unit(50, "meters")
  38356. },
  38357. ]
  38358. ))
  38359. characterMakers.push(() => makeCharacter(
  38360. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38361. {
  38362. front: {
  38363. height: math.unit(5, "feet"),
  38364. weight: math.unit(185, "lb"),
  38365. name: "Front",
  38366. image: {
  38367. source: "./media/characters/kyera/front.svg",
  38368. extra: 1875/1790,
  38369. bottom: 96/1971
  38370. }
  38371. },
  38372. },
  38373. [
  38374. {
  38375. name: "Normal",
  38376. height: math.unit(5, "feet"),
  38377. default: true
  38378. },
  38379. ]
  38380. ))
  38381. characterMakers.push(() => makeCharacter(
  38382. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38383. {
  38384. front: {
  38385. height: math.unit(7 + 6/12, "feet"),
  38386. weight: math.unit(540, "lb"),
  38387. name: "Front",
  38388. image: {
  38389. source: "./media/characters/yuko/front.svg",
  38390. extra: 1282/1222,
  38391. bottom: 101/1383
  38392. }
  38393. },
  38394. frontClothed: {
  38395. height: math.unit(7 + 6/12, "feet"),
  38396. weight: math.unit(540, "lb"),
  38397. name: "Front (Clothed)",
  38398. image: {
  38399. source: "./media/characters/yuko/front-clothed.svg",
  38400. extra: 1282/1222,
  38401. bottom: 101/1383
  38402. }
  38403. },
  38404. },
  38405. [
  38406. {
  38407. name: "Normal",
  38408. height: math.unit(7 + 6/12, "feet"),
  38409. default: true
  38410. },
  38411. {
  38412. name: "Macro",
  38413. height: math.unit(26 + 9/12, "feet")
  38414. },
  38415. {
  38416. name: "Megamacro",
  38417. height: math.unit(300, "feet")
  38418. },
  38419. {
  38420. name: "Gigamacro",
  38421. height: math.unit(5000, "feet")
  38422. },
  38423. {
  38424. name: "Planetary",
  38425. height: math.unit(10000, "miles")
  38426. },
  38427. ]
  38428. ))
  38429. characterMakers.push(() => makeCharacter(
  38430. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38431. {
  38432. front: {
  38433. height: math.unit(8 + 2/12, "feet"),
  38434. weight: math.unit(600, "lb"),
  38435. name: "Front",
  38436. image: {
  38437. source: "./media/characters/deam-nitrel/front.svg",
  38438. extra: 1308/1234,
  38439. bottom: 125/1433
  38440. }
  38441. },
  38442. },
  38443. [
  38444. {
  38445. name: "Normal",
  38446. height: math.unit(8 + 2/12, "feet"),
  38447. default: true
  38448. },
  38449. ]
  38450. ))
  38451. characterMakers.push(() => makeCharacter(
  38452. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38453. {
  38454. front: {
  38455. height: math.unit(6.1, "feet"),
  38456. weight: math.unit(180, "lb"),
  38457. name: "Front",
  38458. image: {
  38459. source: "./media/characters/skyress/front.svg",
  38460. extra: 1045/915,
  38461. bottom: 28/1073
  38462. }
  38463. },
  38464. maw: {
  38465. height: math.unit(1, "feet"),
  38466. name: "Maw",
  38467. image: {
  38468. source: "./media/characters/skyress/maw.svg"
  38469. }
  38470. },
  38471. },
  38472. [
  38473. {
  38474. name: "Normal",
  38475. height: math.unit(6.1, "feet"),
  38476. default: true
  38477. },
  38478. {
  38479. name: "Macro",
  38480. height: math.unit(200, "feet")
  38481. },
  38482. ]
  38483. ))
  38484. characterMakers.push(() => makeCharacter(
  38485. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38486. {
  38487. front: {
  38488. height: math.unit(4 + 2/12, "feet"),
  38489. weight: math.unit(40, "kg"),
  38490. name: "Front",
  38491. image: {
  38492. source: "./media/characters/amethyst-jones/front.svg",
  38493. extra: 1220/1150,
  38494. bottom: 101/1321
  38495. }
  38496. },
  38497. },
  38498. [
  38499. {
  38500. name: "Normal",
  38501. height: math.unit(4 + 2/12, "feet"),
  38502. default: true
  38503. },
  38504. ]
  38505. ))
  38506. characterMakers.push(() => makeCharacter(
  38507. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38508. {
  38509. front: {
  38510. height: math.unit(1.7, "m"),
  38511. weight: math.unit(135, "lb"),
  38512. name: "Front",
  38513. image: {
  38514. source: "./media/characters/jade/front.svg",
  38515. extra: 1818/1767,
  38516. bottom: 32/1850
  38517. }
  38518. },
  38519. back: {
  38520. height: math.unit(1.7, "m"),
  38521. weight: math.unit(135, "lb"),
  38522. name: "Back",
  38523. image: {
  38524. source: "./media/characters/jade/back.svg",
  38525. extra: 1869/1809,
  38526. bottom: 35/1904
  38527. }
  38528. },
  38529. hand: {
  38530. height: math.unit(0.24, "m"),
  38531. name: "Hand",
  38532. image: {
  38533. source: "./media/characters/jade/hand.svg"
  38534. }
  38535. },
  38536. foot: {
  38537. height: math.unit(0.263, "m"),
  38538. name: "Foot",
  38539. image: {
  38540. source: "./media/characters/jade/foot.svg"
  38541. }
  38542. },
  38543. dick: {
  38544. height: math.unit(0.47, "m"),
  38545. name: "Dick",
  38546. image: {
  38547. source: "./media/characters/jade/dick.svg"
  38548. }
  38549. },
  38550. },
  38551. [
  38552. {
  38553. name: "Micro",
  38554. height: math.unit(22, "cm")
  38555. },
  38556. {
  38557. name: "Normal",
  38558. height: math.unit(1.7, "m"),
  38559. default: true
  38560. },
  38561. {
  38562. name: "Macro",
  38563. height: math.unit(152, "m")
  38564. },
  38565. ]
  38566. ))
  38567. characterMakers.push(() => makeCharacter(
  38568. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38569. {
  38570. front: {
  38571. height: math.unit(100, "miles"),
  38572. weight: math.unit(20000, "tons"),
  38573. name: "Front",
  38574. image: {
  38575. source: "./media/characters/cookie/front.svg",
  38576. extra: 1125/1070,
  38577. bottom: 30/1155
  38578. }
  38579. },
  38580. },
  38581. [
  38582. {
  38583. name: "Big",
  38584. height: math.unit(50, "feet")
  38585. },
  38586. {
  38587. name: "Macro",
  38588. height: math.unit(100, "miles"),
  38589. default: true
  38590. },
  38591. {
  38592. name: "Megamacro",
  38593. height: math.unit(90000, "miles")
  38594. },
  38595. ]
  38596. ))
  38597. characterMakers.push(() => makeCharacter(
  38598. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38599. {
  38600. front: {
  38601. height: math.unit(6, "feet"),
  38602. weight: math.unit(145, "lb"),
  38603. name: "Front",
  38604. image: {
  38605. source: "./media/characters/farzian/front.svg",
  38606. extra: 1902/1693,
  38607. bottom: 108/2010
  38608. }
  38609. },
  38610. },
  38611. [
  38612. {
  38613. name: "Macro",
  38614. height: math.unit(500, "feet"),
  38615. default: true
  38616. },
  38617. ]
  38618. ))
  38619. characterMakers.push(() => makeCharacter(
  38620. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38621. {
  38622. front: {
  38623. height: math.unit(3 + 6/12, "feet"),
  38624. weight: math.unit(50, "lb"),
  38625. name: "Front",
  38626. image: {
  38627. source: "./media/characters/kimberly-tilson/front.svg",
  38628. extra: 1400/1322,
  38629. bottom: 36/1436
  38630. }
  38631. },
  38632. back: {
  38633. height: math.unit(3 + 6/12, "feet"),
  38634. weight: math.unit(50, "lb"),
  38635. name: "Back",
  38636. image: {
  38637. source: "./media/characters/kimberly-tilson/back.svg",
  38638. extra: 1370/1307,
  38639. bottom: 20/1390
  38640. }
  38641. },
  38642. },
  38643. [
  38644. {
  38645. name: "Normal",
  38646. height: math.unit(3 + 6/12, "feet"),
  38647. default: true
  38648. },
  38649. ]
  38650. ))
  38651. characterMakers.push(() => makeCharacter(
  38652. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38653. {
  38654. front: {
  38655. height: math.unit(1148, "feet"),
  38656. weight: math.unit(34057, "lb"),
  38657. name: "Front",
  38658. image: {
  38659. source: "./media/characters/harthos/front.svg",
  38660. extra: 1391/1339,
  38661. bottom: 13/1404
  38662. }
  38663. },
  38664. },
  38665. [
  38666. {
  38667. name: "Macro",
  38668. height: math.unit(1148, "feet"),
  38669. default: true
  38670. },
  38671. ]
  38672. ))
  38673. characterMakers.push(() => makeCharacter(
  38674. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38675. {
  38676. front: {
  38677. height: math.unit(15, "feet"),
  38678. name: "Front",
  38679. image: {
  38680. source: "./media/characters/hypatia/front.svg",
  38681. extra: 1653/1591,
  38682. bottom: 79/1732
  38683. }
  38684. },
  38685. },
  38686. [
  38687. {
  38688. name: "Normal",
  38689. height: math.unit(15, "feet")
  38690. },
  38691. {
  38692. name: "Small",
  38693. height: math.unit(300, "feet")
  38694. },
  38695. {
  38696. name: "Macro",
  38697. height: math.unit(2500, "feet"),
  38698. default: true
  38699. },
  38700. {
  38701. name: "Mega Macro",
  38702. height: math.unit(1500, "miles")
  38703. },
  38704. {
  38705. name: "Giga Macro",
  38706. height: math.unit(1.5e6, "miles")
  38707. },
  38708. ]
  38709. ))
  38710. characterMakers.push(() => makeCharacter(
  38711. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38712. {
  38713. front: {
  38714. height: math.unit(6, "feet"),
  38715. weight: math.unit(200, "lb"),
  38716. name: "Front",
  38717. image: {
  38718. source: "./media/characters/wulver/front.svg",
  38719. extra: 1724/1632,
  38720. bottom: 130/1854
  38721. }
  38722. },
  38723. frontNsfw: {
  38724. height: math.unit(6, "feet"),
  38725. weight: math.unit(200, "lb"),
  38726. name: "Front (NSFW)",
  38727. image: {
  38728. source: "./media/characters/wulver/front-nsfw.svg",
  38729. extra: 1724/1632,
  38730. bottom: 130/1854
  38731. }
  38732. },
  38733. },
  38734. [
  38735. {
  38736. name: "Human-Sized",
  38737. height: math.unit(6, "feet")
  38738. },
  38739. {
  38740. name: "Normal",
  38741. height: math.unit(4, "meters"),
  38742. default: true
  38743. },
  38744. {
  38745. name: "Large",
  38746. height: math.unit(6, "m")
  38747. },
  38748. ]
  38749. ))
  38750. characterMakers.push(() => makeCharacter(
  38751. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38752. {
  38753. front: {
  38754. height: math.unit(7, "feet"),
  38755. name: "Front",
  38756. image: {
  38757. source: "./media/characters/maru/front.svg",
  38758. extra: 1595/1570,
  38759. bottom: 0/1595
  38760. }
  38761. },
  38762. },
  38763. [
  38764. {
  38765. name: "Normal",
  38766. height: math.unit(7, "feet"),
  38767. default: true
  38768. },
  38769. {
  38770. name: "Macro",
  38771. height: math.unit(700, "feet")
  38772. },
  38773. {
  38774. name: "Mega Macro",
  38775. height: math.unit(25, "miles")
  38776. },
  38777. ]
  38778. ))
  38779. characterMakers.push(() => makeCharacter(
  38780. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38781. {
  38782. front: {
  38783. height: math.unit(6, "feet"),
  38784. weight: math.unit(170, "lb"),
  38785. name: "Front",
  38786. image: {
  38787. source: "./media/characters/xenon/front.svg",
  38788. extra: 1376/1305,
  38789. bottom: 56/1432
  38790. }
  38791. },
  38792. back: {
  38793. height: math.unit(6, "feet"),
  38794. weight: math.unit(170, "lb"),
  38795. name: "Back",
  38796. image: {
  38797. source: "./media/characters/xenon/back.svg",
  38798. extra: 1328/1259,
  38799. bottom: 95/1423
  38800. }
  38801. },
  38802. maw: {
  38803. height: math.unit(0.52, "feet"),
  38804. name: "Maw",
  38805. image: {
  38806. source: "./media/characters/xenon/maw.svg"
  38807. }
  38808. },
  38809. hand: {
  38810. height: math.unit(0.82, "feet"),
  38811. name: "Hand",
  38812. image: {
  38813. source: "./media/characters/xenon/hand.svg"
  38814. }
  38815. },
  38816. foot: {
  38817. height: math.unit(1.13, "feet"),
  38818. name: "Foot",
  38819. image: {
  38820. source: "./media/characters/xenon/foot.svg"
  38821. }
  38822. },
  38823. },
  38824. [
  38825. {
  38826. name: "Micro",
  38827. height: math.unit(0.8, "inches")
  38828. },
  38829. {
  38830. name: "Normal",
  38831. height: math.unit(6, "feet")
  38832. },
  38833. {
  38834. name: "Macro",
  38835. height: math.unit(50, "feet"),
  38836. default: true
  38837. },
  38838. {
  38839. name: "Macro+",
  38840. height: math.unit(250, "feet")
  38841. },
  38842. {
  38843. name: "Megamacro",
  38844. height: math.unit(1500, "feet")
  38845. },
  38846. ]
  38847. ))
  38848. characterMakers.push(() => makeCharacter(
  38849. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38850. {
  38851. front: {
  38852. height: math.unit(7 + 5/12, "feet"),
  38853. name: "Front",
  38854. image: {
  38855. source: "./media/characters/zane/front.svg",
  38856. extra: 1260/1203,
  38857. bottom: 94/1354
  38858. }
  38859. },
  38860. back: {
  38861. height: math.unit(5.05, "feet"),
  38862. name: "Back",
  38863. image: {
  38864. source: "./media/characters/zane/back.svg",
  38865. extra: 893/829,
  38866. bottom: 30/923
  38867. }
  38868. },
  38869. werewolf: {
  38870. height: math.unit(11, "feet"),
  38871. name: "Werewolf",
  38872. image: {
  38873. source: "./media/characters/zane/werewolf.svg",
  38874. extra: 1383/1323,
  38875. bottom: 89/1472
  38876. }
  38877. },
  38878. foot: {
  38879. height: math.unit(1.46, "feet"),
  38880. name: "Foot",
  38881. image: {
  38882. source: "./media/characters/zane/foot.svg"
  38883. }
  38884. },
  38885. footFront: {
  38886. height: math.unit(0.784, "feet"),
  38887. name: "Foot (Front)",
  38888. image: {
  38889. source: "./media/characters/zane/foot-front.svg"
  38890. }
  38891. },
  38892. dick: {
  38893. height: math.unit(1.95, "feet"),
  38894. name: "Dick",
  38895. image: {
  38896. source: "./media/characters/zane/dick.svg"
  38897. }
  38898. },
  38899. dickWerewolf: {
  38900. height: math.unit(3.77, "feet"),
  38901. name: "Dick (Werewolf)",
  38902. image: {
  38903. source: "./media/characters/zane/dick.svg"
  38904. }
  38905. },
  38906. },
  38907. [
  38908. {
  38909. name: "Normal",
  38910. height: math.unit(7 + 5/12, "feet"),
  38911. default: true
  38912. },
  38913. ]
  38914. ))
  38915. characterMakers.push(() => makeCharacter(
  38916. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  38917. {
  38918. front: {
  38919. height: math.unit(6 + 2/12, "feet"),
  38920. weight: math.unit(284, "lb"),
  38921. name: "Front",
  38922. image: {
  38923. source: "./media/characters/benni-desparque/front.svg",
  38924. extra: 1353/1126,
  38925. bottom: 69/1422
  38926. }
  38927. },
  38928. },
  38929. [
  38930. {
  38931. name: "Civilian",
  38932. height: math.unit(6 + 2/12, "feet")
  38933. },
  38934. {
  38935. name: "Normal",
  38936. height: math.unit(98, "feet"),
  38937. default: true
  38938. },
  38939. {
  38940. name: "Kaiju Fighter",
  38941. height: math.unit(268, "feet")
  38942. },
  38943. ]
  38944. ))
  38945. characterMakers.push(() => makeCharacter(
  38946. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  38947. {
  38948. front: {
  38949. height: math.unit(5, "feet"),
  38950. weight: math.unit(105, "lb"),
  38951. name: "Front",
  38952. image: {
  38953. source: "./media/characters/maxine/front.svg",
  38954. extra: 1386/1250,
  38955. bottom: 71/1457
  38956. }
  38957. },
  38958. },
  38959. [
  38960. {
  38961. name: "Normal",
  38962. height: math.unit(5, "feet"),
  38963. default: true
  38964. },
  38965. ]
  38966. ))
  38967. characterMakers.push(() => makeCharacter(
  38968. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  38969. {
  38970. front: {
  38971. height: math.unit(11 + 7/12, "feet"),
  38972. weight: math.unit(9576, "lb"),
  38973. name: "Front",
  38974. image: {
  38975. source: "./media/characters/scaly/front.svg",
  38976. extra: 888/867,
  38977. bottom: 36/924
  38978. }
  38979. },
  38980. },
  38981. [
  38982. {
  38983. name: "Normal",
  38984. height: math.unit(11 + 7/12, "feet"),
  38985. default: true
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  38991. {
  38992. front: {
  38993. height: math.unit(9, "inches"),
  38994. name: "Front",
  38995. image: {
  38996. source: "./media/characters/saelria/front.svg",
  38997. extra: 662/621,
  38998. bottom: 12/674
  38999. }
  39000. },
  39001. },
  39002. [
  39003. {
  39004. name: "Tiny",
  39005. height: math.unit(9, "inches"),
  39006. default: true
  39007. },
  39008. ]
  39009. ))
  39010. characterMakers.push(() => makeCharacter(
  39011. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39012. {
  39013. front: {
  39014. height: math.unit(80, "meters"),
  39015. weight: math.unit(7000, "tonnes"),
  39016. name: "Front",
  39017. image: {
  39018. source: "./media/characters/tef/front.svg",
  39019. extra: 2036/1991,
  39020. bottom: 54/2090
  39021. }
  39022. },
  39023. back: {
  39024. height: math.unit(80, "meters"),
  39025. weight: math.unit(7000, "tonnes"),
  39026. name: "Back",
  39027. image: {
  39028. source: "./media/characters/tef/back.svg",
  39029. extra: 2036/1991,
  39030. bottom: 54/2090
  39031. }
  39032. },
  39033. },
  39034. [
  39035. {
  39036. name: "Macro",
  39037. height: math.unit(80, "meters"),
  39038. default: true
  39039. },
  39040. ]
  39041. ))
  39042. characterMakers.push(() => makeCharacter(
  39043. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39044. {
  39045. front: {
  39046. height: math.unit(13, "feet"),
  39047. weight: math.unit(6, "tons"),
  39048. name: "Front",
  39049. image: {
  39050. source: "./media/characters/rover/front.svg",
  39051. extra: 1233/1156,
  39052. bottom: 50/1283
  39053. }
  39054. },
  39055. back: {
  39056. height: math.unit(13, "feet"),
  39057. weight: math.unit(6, "tons"),
  39058. name: "Back",
  39059. image: {
  39060. source: "./media/characters/rover/back.svg",
  39061. extra: 1327/1258,
  39062. bottom: 39/1366
  39063. }
  39064. },
  39065. },
  39066. [
  39067. {
  39068. name: "Normal",
  39069. height: math.unit(13, "feet"),
  39070. default: true
  39071. },
  39072. {
  39073. name: "Macro",
  39074. height: math.unit(1300, "feet")
  39075. },
  39076. {
  39077. name: "Megamacro",
  39078. height: math.unit(1300, "miles")
  39079. },
  39080. {
  39081. name: "Gigamacro",
  39082. height: math.unit(1300000, "miles")
  39083. },
  39084. ]
  39085. ))
  39086. characterMakers.push(() => makeCharacter(
  39087. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39088. {
  39089. front: {
  39090. height: math.unit(6, "feet"),
  39091. weight: math.unit(150, "lb"),
  39092. name: "Front",
  39093. image: {
  39094. source: "./media/characters/ariz/front.svg",
  39095. extra: 1401/1346,
  39096. bottom: 5/1406
  39097. }
  39098. },
  39099. },
  39100. [
  39101. {
  39102. name: "Normal",
  39103. height: math.unit(10, "feet"),
  39104. default: true
  39105. },
  39106. ]
  39107. ))
  39108. characterMakers.push(() => makeCharacter(
  39109. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39110. {
  39111. front: {
  39112. height: math.unit(6, "feet"),
  39113. weight: math.unit(140, "lb"),
  39114. name: "Front",
  39115. image: {
  39116. source: "./media/characters/sigrun/front.svg",
  39117. extra: 1418/1359,
  39118. bottom: 27/1445
  39119. }
  39120. },
  39121. },
  39122. [
  39123. {
  39124. name: "Macro",
  39125. height: math.unit(35, "feet"),
  39126. default: true
  39127. },
  39128. ]
  39129. ))
  39130. characterMakers.push(() => makeCharacter(
  39131. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39132. {
  39133. front: {
  39134. height: math.unit(6, "feet"),
  39135. weight: math.unit(150, "lb"),
  39136. name: "Front",
  39137. image: {
  39138. source: "./media/characters/numin/front.svg",
  39139. extra: 1433/1388,
  39140. bottom: 12/1445
  39141. }
  39142. },
  39143. },
  39144. [
  39145. {
  39146. name: "Macro",
  39147. height: math.unit(21.5, "km"),
  39148. default: true
  39149. },
  39150. ]
  39151. ))
  39152. characterMakers.push(() => makeCharacter(
  39153. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39154. {
  39155. front: {
  39156. height: math.unit(6, "feet"),
  39157. weight: math.unit(463, "lb"),
  39158. name: "Front",
  39159. image: {
  39160. source: "./media/characters/melwa/front.svg",
  39161. extra: 1307/1248,
  39162. bottom: 93/1400
  39163. }
  39164. },
  39165. },
  39166. [
  39167. {
  39168. name: "Macro",
  39169. height: math.unit(50, "meters"),
  39170. default: true
  39171. },
  39172. ]
  39173. ))
  39174. characterMakers.push(() => makeCharacter(
  39175. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39176. {
  39177. front: {
  39178. height: math.unit(325, "feet"),
  39179. name: "Front",
  39180. image: {
  39181. source: "./media/characters/zorkaiju/front.svg",
  39182. extra: 1955/1814,
  39183. bottom: 40/1995
  39184. }
  39185. },
  39186. frontExtended: {
  39187. height: math.unit(325, "feet"),
  39188. name: "Front (Extended)",
  39189. image: {
  39190. source: "./media/characters/zorkaiju/front-extended.svg",
  39191. extra: 1955/1814,
  39192. bottom: 40/1995
  39193. }
  39194. },
  39195. side: {
  39196. height: math.unit(325, "feet"),
  39197. name: "Side",
  39198. image: {
  39199. source: "./media/characters/zorkaiju/side.svg",
  39200. extra: 1495/1396,
  39201. bottom: 17/1512
  39202. }
  39203. },
  39204. sideExtended: {
  39205. height: math.unit(325, "feet"),
  39206. name: "Side (Extended)",
  39207. image: {
  39208. source: "./media/characters/zorkaiju/side-extended.svg",
  39209. extra: 1495/1396,
  39210. bottom: 17/1512
  39211. }
  39212. },
  39213. back: {
  39214. height: math.unit(325, "feet"),
  39215. name: "Back",
  39216. image: {
  39217. source: "./media/characters/zorkaiju/back.svg",
  39218. extra: 1959/1821,
  39219. bottom: 31/1990
  39220. }
  39221. },
  39222. backExtended: {
  39223. height: math.unit(325, "feet"),
  39224. name: "Back (Extended)",
  39225. image: {
  39226. source: "./media/characters/zorkaiju/back-extended.svg",
  39227. extra: 1959/1821,
  39228. bottom: 31/1990
  39229. }
  39230. },
  39231. hand: {
  39232. height: math.unit(58.4, "feet"),
  39233. name: "Hand",
  39234. image: {
  39235. source: "./media/characters/zorkaiju/hand.svg"
  39236. }
  39237. },
  39238. handExtended: {
  39239. height: math.unit(61.4, "feet"),
  39240. name: "Hand (Extended)",
  39241. image: {
  39242. source: "./media/characters/zorkaiju/hand-extended.svg"
  39243. }
  39244. },
  39245. foot: {
  39246. height: math.unit(95, "feet"),
  39247. name: "Foot",
  39248. image: {
  39249. source: "./media/characters/zorkaiju/foot.svg"
  39250. }
  39251. },
  39252. leftArm: {
  39253. height: math.unit(59, "feet"),
  39254. name: "Left Arm",
  39255. image: {
  39256. source: "./media/characters/zorkaiju/left-arm.svg"
  39257. }
  39258. },
  39259. rightArm: {
  39260. height: math.unit(59, "feet"),
  39261. name: "Right Arm",
  39262. image: {
  39263. source: "./media/characters/zorkaiju/right-arm.svg"
  39264. }
  39265. },
  39266. tail: {
  39267. height: math.unit(104, "feet"),
  39268. name: "Tail",
  39269. image: {
  39270. source: "./media/characters/zorkaiju/tail.svg"
  39271. }
  39272. },
  39273. tailExtended: {
  39274. height: math.unit(104, "feet"),
  39275. name: "Tail (Extended)",
  39276. image: {
  39277. source: "./media/characters/zorkaiju/tail-extended.svg"
  39278. }
  39279. },
  39280. tailBottom: {
  39281. height: math.unit(104, "feet"),
  39282. name: "Tail Bottom",
  39283. image: {
  39284. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39285. }
  39286. },
  39287. crystal: {
  39288. height: math.unit(27.54, "feet"),
  39289. name: "Crystal",
  39290. image: {
  39291. source: "./media/characters/zorkaiju/crystal.svg"
  39292. }
  39293. },
  39294. },
  39295. [
  39296. {
  39297. name: "Kaiju",
  39298. height: math.unit(325, "feet"),
  39299. default: true
  39300. },
  39301. ]
  39302. ))
  39303. characterMakers.push(() => makeCharacter(
  39304. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39305. {
  39306. front: {
  39307. height: math.unit(6 + 1/12, "feet"),
  39308. weight: math.unit(115, "lb"),
  39309. name: "Front",
  39310. image: {
  39311. source: "./media/characters/bailey-belfry/front.svg",
  39312. extra: 1240/1121,
  39313. bottom: 101/1341
  39314. }
  39315. },
  39316. },
  39317. [
  39318. {
  39319. name: "Normal",
  39320. height: math.unit(6 + 1/12, "feet"),
  39321. default: true
  39322. },
  39323. ]
  39324. ))
  39325. //characters
  39326. function makeCharacters() {
  39327. const results = [];
  39328. characterMakers.forEach(character => {
  39329. results.push(character());
  39330. });
  39331. return results;
  39332. }