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.
 
 
 

34243 Zeilen
861 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. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. "leviathan": {
  1476. "name": "Leviathan",
  1477. "url": "sea-monster"
  1478. },
  1479. "bull": {
  1480. name: "Bull",
  1481. parents: ["mammal"]
  1482. },
  1483. "tanuki": {
  1484. name: "Tanuki",
  1485. parents: ["monster"]
  1486. },
  1487. "chakat": {
  1488. name: "Chakat",
  1489. parents: ["cat"]
  1490. },
  1491. "hydra": {
  1492. name: "Hydra",
  1493. parents: ["monster"]
  1494. },
  1495. }
  1496. //species
  1497. function getSpeciesInfo(speciesList) {
  1498. let result = new Set();
  1499. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1500. result.add(entry)
  1501. });
  1502. return Array.from(result);
  1503. };
  1504. function getSpeciesInfoHelper(species) {
  1505. if (!speciesData[species]) {
  1506. console.warn(species + " doesn't exist");
  1507. return [];
  1508. }
  1509. if (speciesData[species].parents) {
  1510. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1511. } else {
  1512. return [species];
  1513. }
  1514. }
  1515. characterMakers.push(() => makeCharacter(
  1516. {
  1517. name: "Fen",
  1518. species: ["crux"],
  1519. description: {
  1520. title: "Bio",
  1521. text: "Very furry. Sheds on everything."
  1522. },
  1523. tags: [
  1524. "anthro",
  1525. "goo"
  1526. ]
  1527. },
  1528. {
  1529. back: {
  1530. height: math.unit(2.2428, "meter"),
  1531. weight: math.unit(124.738, "kg"),
  1532. name: "Back",
  1533. image: {
  1534. source: "./media/characters/fen/back.svg",
  1535. extra: 2024 / 1867,
  1536. bottom: 13 / 2037
  1537. },
  1538. info: {
  1539. description: {
  1540. mode: "append",
  1541. text: "\n\nHe is not currently looking at you."
  1542. }
  1543. }
  1544. },
  1545. full: {
  1546. height: math.unit(1.34, "meter"),
  1547. weight: math.unit(225, "kg"),
  1548. name: "Full",
  1549. image: {
  1550. source: "./media/characters/fen/full.svg"
  1551. },
  1552. info: {
  1553. description: {
  1554. mode: "append",
  1555. text: "\n\nMunch."
  1556. }
  1557. }
  1558. },
  1559. kneeling: {
  1560. height: math.unit(5.4, "feet"),
  1561. weight: math.unit(124.738, "kg"),
  1562. name: "Kneeling",
  1563. image: {
  1564. source: "./media/characters/fen/kneeling.svg",
  1565. extra: 563 / 507
  1566. }
  1567. },
  1568. goo: {
  1569. height: math.unit(2.8, "feet"),
  1570. weight: math.unit(125, "kg"),
  1571. capacity: math.unit(1, "people"),
  1572. name: "Goo",
  1573. image: {
  1574. source: "./media/characters/fen/goo.svg",
  1575. bottom: 116 / 613
  1576. }
  1577. },
  1578. lounging: {
  1579. height: math.unit(6.5, "feet"),
  1580. weight: math.unit(125, "kg"),
  1581. name: "Lounging",
  1582. image: {
  1583. source: "./media/characters/fen/lounging.svg"
  1584. }
  1585. },
  1586. },
  1587. [
  1588. {
  1589. name: "Normal",
  1590. height: math.unit(2.2428, "meter")
  1591. },
  1592. {
  1593. name: "Big",
  1594. height: math.unit(12, "feet")
  1595. },
  1596. {
  1597. name: "Minimacro",
  1598. height: math.unit(40, "feet"),
  1599. default: true,
  1600. info: {
  1601. description: {
  1602. mode: "append",
  1603. text: "\n\nTOO DAMN BIG"
  1604. }
  1605. }
  1606. },
  1607. {
  1608. name: "Macro",
  1609. height: math.unit(100, "feet"),
  1610. info: {
  1611. description: {
  1612. mode: "append",
  1613. text: "\n\nTOO DAMN BIG"
  1614. }
  1615. }
  1616. },
  1617. {
  1618. name: "Macro+",
  1619. height: math.unit(300, "feet")
  1620. },
  1621. {
  1622. name: "Megamacro",
  1623. height: math.unit(2, "miles")
  1624. }
  1625. ]
  1626. ))
  1627. characterMakers.push(() => makeCharacter(
  1628. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1629. {
  1630. front: {
  1631. height: math.unit(183, "cm"),
  1632. weight: math.unit(80, "kg"),
  1633. name: "Front",
  1634. image: {
  1635. source: "./media/characters/sofia-fluttertail/front.svg",
  1636. bottom: 0.01,
  1637. extra: 2154 / 2081
  1638. }
  1639. },
  1640. frontAlt: {
  1641. height: math.unit(183, "cm"),
  1642. weight: math.unit(80, "kg"),
  1643. name: "Front (alt)",
  1644. image: {
  1645. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1646. }
  1647. },
  1648. back: {
  1649. height: math.unit(183, "cm"),
  1650. weight: math.unit(80, "kg"),
  1651. name: "Back",
  1652. image: {
  1653. source: "./media/characters/sofia-fluttertail/back.svg"
  1654. }
  1655. },
  1656. kneeling: {
  1657. height: math.unit(125, "cm"),
  1658. weight: math.unit(80, "kg"),
  1659. name: "Kneeling",
  1660. image: {
  1661. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1662. extra: 1033 / 977,
  1663. bottom: 23.7 / 1057
  1664. }
  1665. },
  1666. maw: {
  1667. height: math.unit(183 / 5, "cm"),
  1668. name: "Maw",
  1669. image: {
  1670. source: "./media/characters/sofia-fluttertail/maw.svg"
  1671. }
  1672. },
  1673. mawcloseup: {
  1674. height: math.unit(183 / 5 * 0.41, "cm"),
  1675. name: "Maw (Closeup)",
  1676. image: {
  1677. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1678. }
  1679. },
  1680. paws: {
  1681. height: math.unit(1.17, "feet"),
  1682. name: "Paws",
  1683. image: {
  1684. source: "./media/characters/sofia-fluttertail/paws.svg",
  1685. extra: 851 / 851,
  1686. bottom: 17 / 868
  1687. }
  1688. },
  1689. },
  1690. [
  1691. {
  1692. name: "Normal",
  1693. height: math.unit(1.83, "meter")
  1694. },
  1695. {
  1696. name: "Size Thief",
  1697. height: math.unit(18, "feet")
  1698. },
  1699. {
  1700. name: "50 Foot Collie",
  1701. height: math.unit(50, "feet")
  1702. },
  1703. {
  1704. name: "Macro",
  1705. height: math.unit(96, "feet"),
  1706. default: true
  1707. },
  1708. {
  1709. name: "Megamerger",
  1710. height: math.unit(650, "feet")
  1711. },
  1712. ]
  1713. ))
  1714. characterMakers.push(() => makeCharacter(
  1715. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1716. {
  1717. front: {
  1718. height: math.unit(7, "feet"),
  1719. weight: math.unit(100, "kg"),
  1720. name: "Front",
  1721. image: {
  1722. source: "./media/characters/march/front.svg",
  1723. extra: 1,
  1724. bottom: 0.015
  1725. }
  1726. },
  1727. foot: {
  1728. height: math.unit(0.9, "feet"),
  1729. name: "Foot",
  1730. image: {
  1731. source: "./media/characters/march/foot.svg"
  1732. }
  1733. },
  1734. },
  1735. [
  1736. {
  1737. name: "Normal",
  1738. height: math.unit(7.9, "feet")
  1739. },
  1740. {
  1741. name: "Macro",
  1742. height: math.unit(220, "meters")
  1743. },
  1744. {
  1745. name: "Megamacro",
  1746. height: math.unit(2.98, "km"),
  1747. default: true
  1748. },
  1749. {
  1750. name: "Gigamacro",
  1751. height: math.unit(15963, "km")
  1752. },
  1753. {
  1754. name: "Teramacro",
  1755. height: math.unit(2980000000, "km")
  1756. },
  1757. {
  1758. name: "Examacro",
  1759. height: math.unit(250, "parsecs")
  1760. },
  1761. ]
  1762. ))
  1763. characterMakers.push(() => makeCharacter(
  1764. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1765. {
  1766. front: {
  1767. height: math.unit(6, "feet"),
  1768. weight: math.unit(60, "kg"),
  1769. name: "Front",
  1770. image: {
  1771. source: "./media/characters/noir/front.svg",
  1772. extra: 1,
  1773. bottom: 0.032
  1774. }
  1775. },
  1776. },
  1777. [
  1778. {
  1779. name: "Normal",
  1780. height: math.unit(6.6, "feet")
  1781. },
  1782. {
  1783. name: "Macro",
  1784. height: math.unit(500, "feet")
  1785. },
  1786. {
  1787. name: "Megamacro",
  1788. height: math.unit(2.5, "km"),
  1789. default: true
  1790. },
  1791. {
  1792. name: "Gigamacro",
  1793. height: math.unit(22500, "km")
  1794. },
  1795. {
  1796. name: "Teramacro",
  1797. height: math.unit(2500000000, "km")
  1798. },
  1799. {
  1800. name: "Examacro",
  1801. height: math.unit(200, "parsecs")
  1802. },
  1803. ]
  1804. ))
  1805. characterMakers.push(() => makeCharacter(
  1806. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1807. {
  1808. front: {
  1809. height: math.unit(7, "feet"),
  1810. weight: math.unit(100, "kg"),
  1811. name: "Front",
  1812. image: {
  1813. source: "./media/characters/okuri/front.svg",
  1814. extra: 1,
  1815. bottom: 0.037
  1816. }
  1817. },
  1818. back: {
  1819. height: math.unit(7, "feet"),
  1820. weight: math.unit(100, "kg"),
  1821. name: "Back",
  1822. image: {
  1823. source: "./media/characters/okuri/back.svg",
  1824. extra: 1,
  1825. bottom: 0.007
  1826. }
  1827. },
  1828. },
  1829. [
  1830. {
  1831. name: "Megamacro",
  1832. height: math.unit(100, "miles"),
  1833. default: true
  1834. },
  1835. ]
  1836. ))
  1837. characterMakers.push(() => makeCharacter(
  1838. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1839. {
  1840. front: {
  1841. height: math.unit(7, "feet"),
  1842. weight: math.unit(100, "kg"),
  1843. name: "Front",
  1844. image: {
  1845. source: "./media/characters/manny/front.svg",
  1846. extra: 1,
  1847. bottom: 0.06
  1848. }
  1849. },
  1850. back: {
  1851. height: math.unit(7, "feet"),
  1852. weight: math.unit(100, "kg"),
  1853. name: "Back",
  1854. image: {
  1855. source: "./media/characters/manny/back.svg",
  1856. extra: 1,
  1857. bottom: 0.014
  1858. }
  1859. },
  1860. },
  1861. [
  1862. {
  1863. name: "Normal",
  1864. height: math.unit(7, "feet"),
  1865. },
  1866. {
  1867. name: "Macro",
  1868. height: math.unit(78, "feet"),
  1869. default: true
  1870. },
  1871. {
  1872. name: "Macro+",
  1873. height: math.unit(300, "meters")
  1874. },
  1875. {
  1876. name: "Macro++",
  1877. height: math.unit(2400, "meters")
  1878. },
  1879. {
  1880. name: "Megamacro",
  1881. height: math.unit(5167, "meters")
  1882. },
  1883. {
  1884. name: "Gigamacro",
  1885. height: math.unit(41769, "miles")
  1886. },
  1887. ]
  1888. ))
  1889. characterMakers.push(() => makeCharacter(
  1890. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1891. {
  1892. front: {
  1893. height: math.unit(7, "feet"),
  1894. weight: math.unit(100, "kg"),
  1895. name: "Front",
  1896. image: {
  1897. source: "./media/characters/adake/front-1.svg"
  1898. }
  1899. },
  1900. frontAlt: {
  1901. height: math.unit(7, "feet"),
  1902. weight: math.unit(100, "kg"),
  1903. name: "Front (Alt)",
  1904. image: {
  1905. source: "./media/characters/adake/front-2.svg",
  1906. extra: 1,
  1907. bottom: 0.01
  1908. }
  1909. },
  1910. back: {
  1911. height: math.unit(7, "feet"),
  1912. weight: math.unit(100, "kg"),
  1913. name: "Back",
  1914. image: {
  1915. source: "./media/characters/adake/back.svg",
  1916. }
  1917. },
  1918. kneel: {
  1919. height: math.unit(5.385, "feet"),
  1920. weight: math.unit(100, "kg"),
  1921. name: "Kneeling",
  1922. image: {
  1923. source: "./media/characters/adake/kneel.svg",
  1924. bottom: 0.052
  1925. }
  1926. },
  1927. },
  1928. [
  1929. {
  1930. name: "Normal",
  1931. height: math.unit(7, "feet"),
  1932. },
  1933. {
  1934. name: "Macro",
  1935. height: math.unit(78, "feet"),
  1936. default: true
  1937. },
  1938. {
  1939. name: "Macro+",
  1940. height: math.unit(300, "meters")
  1941. },
  1942. {
  1943. name: "Macro++",
  1944. height: math.unit(2400, "meters")
  1945. },
  1946. {
  1947. name: "Megamacro",
  1948. height: math.unit(5167, "meters")
  1949. },
  1950. {
  1951. name: "Gigamacro",
  1952. height: math.unit(41769, "miles")
  1953. },
  1954. ]
  1955. ))
  1956. characterMakers.push(() => makeCharacter(
  1957. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1958. {
  1959. front: {
  1960. height: math.unit(1.65, "meters"),
  1961. weight: math.unit(50, "kg"),
  1962. name: "Front",
  1963. image: {
  1964. source: "./media/characters/elijah/front.svg",
  1965. extra: 858 / 830,
  1966. bottom: 95.5 / 953.8559
  1967. }
  1968. },
  1969. back: {
  1970. height: math.unit(1.65, "meters"),
  1971. weight: math.unit(50, "kg"),
  1972. name: "Back",
  1973. image: {
  1974. source: "./media/characters/elijah/back.svg",
  1975. extra: 895 / 850,
  1976. bottom: 5.3 / 897.956
  1977. }
  1978. },
  1979. frontNsfw: {
  1980. height: math.unit(1.65, "meters"),
  1981. weight: math.unit(50, "kg"),
  1982. name: "Front (NSFW)",
  1983. image: {
  1984. source: "./media/characters/elijah/front-nsfw.svg",
  1985. extra: 858 / 830,
  1986. bottom: 95.5 / 953.8559
  1987. }
  1988. },
  1989. backNsfw: {
  1990. height: math.unit(1.65, "meters"),
  1991. weight: math.unit(50, "kg"),
  1992. name: "Back (NSFW)",
  1993. image: {
  1994. source: "./media/characters/elijah/back-nsfw.svg",
  1995. extra: 895 / 850,
  1996. bottom: 5.3 / 897.956
  1997. }
  1998. },
  1999. dick: {
  2000. height: math.unit(1, "feet"),
  2001. name: "Dick",
  2002. image: {
  2003. source: "./media/characters/elijah/dick.svg"
  2004. }
  2005. },
  2006. beakOpen: {
  2007. height: math.unit(1.25, "feet"),
  2008. name: "Beak (Open)",
  2009. image: {
  2010. source: "./media/characters/elijah/beak-open.svg"
  2011. }
  2012. },
  2013. beakShut: {
  2014. height: math.unit(1.25, "feet"),
  2015. name: "Beak (Shut)",
  2016. image: {
  2017. source: "./media/characters/elijah/beak-shut.svg"
  2018. }
  2019. },
  2020. footFlexing: {
  2021. height: math.unit(1.61, "feet"),
  2022. name: "Foot (Flexing)",
  2023. image: {
  2024. source: "./media/characters/elijah/foot-flexing.svg"
  2025. }
  2026. },
  2027. footStepping: {
  2028. height: math.unit(1.44, "feet"),
  2029. name: "Foot (Stepping)",
  2030. image: {
  2031. source: "./media/characters/elijah/foot-stepping.svg"
  2032. }
  2033. },
  2034. plantigradeLeg: {
  2035. height: math.unit(2.34, "feet"),
  2036. name: "Plantigrade Leg",
  2037. image: {
  2038. source: "./media/characters/elijah/plantigrade-leg.svg"
  2039. }
  2040. },
  2041. plantigradeFootLeft: {
  2042. height: math.unit(0.9, "feet"),
  2043. name: "Plantigrade Foot (Left)",
  2044. image: {
  2045. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2046. }
  2047. },
  2048. plantigradeFootRight: {
  2049. height: math.unit(0.9, "feet"),
  2050. name: "Plantigrade Foot (Right)",
  2051. image: {
  2052. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2053. }
  2054. },
  2055. },
  2056. [
  2057. {
  2058. name: "Normal",
  2059. height: math.unit(1.65, "meters")
  2060. },
  2061. {
  2062. name: "Macro",
  2063. height: math.unit(55, "meters"),
  2064. default: true
  2065. },
  2066. {
  2067. name: "Macro+",
  2068. height: math.unit(105, "meters")
  2069. },
  2070. ]
  2071. ))
  2072. characterMakers.push(() => makeCharacter(
  2073. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2074. {
  2075. front: {
  2076. height: math.unit(11, "feet"),
  2077. weight: math.unit(80, "kg"),
  2078. name: "Front",
  2079. image: {
  2080. source: "./media/characters/rai/front.svg",
  2081. extra: 1,
  2082. bottom: 0.03
  2083. }
  2084. },
  2085. side: {
  2086. height: math.unit(11, "feet"),
  2087. weight: math.unit(80, "kg"),
  2088. name: "Side",
  2089. image: {
  2090. source: "./media/characters/rai/side.svg"
  2091. }
  2092. },
  2093. back: {
  2094. height: math.unit(11, "feet"),
  2095. weight: math.unit(80, "lb"),
  2096. name: "Back",
  2097. image: {
  2098. source: "./media/characters/rai/back.svg",
  2099. extra: 1,
  2100. bottom: 0.01
  2101. }
  2102. },
  2103. feral: {
  2104. height: math.unit(11, "feet"),
  2105. weight: math.unit(800, "lb"),
  2106. name: "Feral",
  2107. image: {
  2108. source: "./media/characters/rai/feral.svg",
  2109. extra: 1050 / 659,
  2110. bottom: 0.07
  2111. }
  2112. },
  2113. dragon: {
  2114. height: math.unit(23, "feet"),
  2115. weight: math.unit(50000, "lb"),
  2116. name: "Dragon",
  2117. image: {
  2118. source: "./media/characters/rai/dragon.svg",
  2119. extra: 2498 / 2030,
  2120. bottom: 85.2 / 2584
  2121. }
  2122. },
  2123. maw: {
  2124. height: math.unit(6 / 3.81416, "feet"),
  2125. name: "Maw",
  2126. image: {
  2127. source: "./media/characters/rai/maw.svg"
  2128. }
  2129. },
  2130. },
  2131. [
  2132. {
  2133. name: "Normal",
  2134. height: math.unit(11, "feet")
  2135. },
  2136. {
  2137. name: "Macro",
  2138. height: math.unit(302, "feet"),
  2139. default: true
  2140. },
  2141. ]
  2142. ))
  2143. characterMakers.push(() => makeCharacter(
  2144. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2145. {
  2146. frontDressed: {
  2147. height: math.unit(216, "feet"),
  2148. weight: math.unit(7000000, "lb"),
  2149. name: "Front (Dressed)",
  2150. image: {
  2151. source: "./media/characters/jazzy/front-dressed.svg",
  2152. extra: 2738 / 2651,
  2153. bottom: 41.8 / 2786
  2154. }
  2155. },
  2156. backDressed: {
  2157. height: math.unit(216, "feet"),
  2158. weight: math.unit(7000000, "lb"),
  2159. name: "Back (Dressed)",
  2160. image: {
  2161. source: "./media/characters/jazzy/back-dressed.svg",
  2162. extra: 2775 / 2673,
  2163. bottom: 36.8 / 2817
  2164. }
  2165. },
  2166. front: {
  2167. height: math.unit(216, "feet"),
  2168. weight: math.unit(7000000, "lb"),
  2169. name: "Front",
  2170. image: {
  2171. source: "./media/characters/jazzy/front.svg",
  2172. extra: 2738 / 2651,
  2173. bottom: 41.8 / 2786
  2174. }
  2175. },
  2176. back: {
  2177. height: math.unit(216, "feet"),
  2178. weight: math.unit(7000000, "lb"),
  2179. name: "Back",
  2180. image: {
  2181. source: "./media/characters/jazzy/back.svg",
  2182. extra: 2775 / 2673,
  2183. bottom: 36.8 / 2817
  2184. }
  2185. },
  2186. maw: {
  2187. height: math.unit(20, "feet"),
  2188. name: "Maw",
  2189. image: {
  2190. source: "./media/characters/jazzy/maw.svg"
  2191. }
  2192. },
  2193. paws: {
  2194. height: math.unit(27.5, "feet"),
  2195. name: "Paws",
  2196. image: {
  2197. source: "./media/characters/jazzy/paws.svg"
  2198. }
  2199. },
  2200. eye: {
  2201. height: math.unit(4.4, "feet"),
  2202. name: "Eye",
  2203. image: {
  2204. source: "./media/characters/jazzy/eye.svg"
  2205. }
  2206. },
  2207. droneOffense: {
  2208. height: math.unit(9.5, "inches"),
  2209. name: "Drone (Offense)",
  2210. image: {
  2211. source: "./media/characters/jazzy/drone-offense.svg"
  2212. }
  2213. },
  2214. droneRecon: {
  2215. height: math.unit(9.5, "inches"),
  2216. name: "Drone (Recon)",
  2217. image: {
  2218. source: "./media/characters/jazzy/drone-recon.svg"
  2219. }
  2220. },
  2221. droneDefense: {
  2222. height: math.unit(9.5, "inches"),
  2223. name: "Drone (Defense)",
  2224. image: {
  2225. source: "./media/characters/jazzy/drone-defense.svg"
  2226. }
  2227. },
  2228. },
  2229. [
  2230. {
  2231. name: "Macro",
  2232. height: math.unit(216, "feet"),
  2233. default: true
  2234. },
  2235. ]
  2236. ))
  2237. characterMakers.push(() => makeCharacter(
  2238. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2239. {
  2240. front: {
  2241. height: math.unit(7, "feet"),
  2242. weight: math.unit(80, "kg"),
  2243. name: "Front",
  2244. image: {
  2245. source: "./media/characters/flamm/front.svg",
  2246. extra: 1794 / 1677,
  2247. bottom: 31.7 / 1828.5
  2248. }
  2249. },
  2250. },
  2251. [
  2252. {
  2253. name: "Normal",
  2254. height: math.unit(9.5, "feet")
  2255. },
  2256. {
  2257. name: "Macro",
  2258. height: math.unit(200, "feet"),
  2259. default: true
  2260. },
  2261. ]
  2262. ))
  2263. characterMakers.push(() => makeCharacter(
  2264. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2265. {
  2266. front: {
  2267. height: math.unit(5 + 3/12, "feet"),
  2268. weight: math.unit(60, "kg"),
  2269. name: "Front",
  2270. image: {
  2271. source: "./media/characters/zephiro/front.svg",
  2272. extra: 2309 / 2162,
  2273. bottom: 0.069
  2274. }
  2275. },
  2276. side: {
  2277. height: math.unit(5 + 3/12, "feet"),
  2278. weight: math.unit(60, "kg"),
  2279. name: "Side",
  2280. image: {
  2281. source: "./media/characters/zephiro/side.svg",
  2282. extra: 2403 / 2279,
  2283. bottom: 0.015
  2284. }
  2285. },
  2286. back: {
  2287. height: math.unit(5 + 3/12, "feet"),
  2288. weight: math.unit(60, "kg"),
  2289. name: "Back",
  2290. image: {
  2291. source: "./media/characters/zephiro/back.svg",
  2292. extra: 2373 / 2244,
  2293. bottom: 0.013
  2294. }
  2295. },
  2296. hand: {
  2297. height: math.unit(0.68, "feet"),
  2298. name: "Hand",
  2299. image: {
  2300. source: "./media/characters/zephiro/hand.svg"
  2301. }
  2302. },
  2303. paw: {
  2304. height: math.unit(1, "feet"),
  2305. name: "Paw",
  2306. image: {
  2307. source: "./media/characters/zephiro/paw.svg"
  2308. }
  2309. },
  2310. beans: {
  2311. height: math.unit(0.93, "feet"),
  2312. name: "Beans",
  2313. image: {
  2314. source: "./media/characters/zephiro/beans.svg"
  2315. }
  2316. },
  2317. },
  2318. [
  2319. {
  2320. name: "Micro",
  2321. height: math.unit(3, "inches")
  2322. },
  2323. {
  2324. name: "Normal",
  2325. height: math.unit(5 + 3 / 12, "feet"),
  2326. default: true
  2327. },
  2328. {
  2329. name: "Macro",
  2330. height: math.unit(118, "feet")
  2331. },
  2332. ]
  2333. ))
  2334. characterMakers.push(() => makeCharacter(
  2335. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2336. {
  2337. front: {
  2338. height: math.unit(5, "feet"),
  2339. weight: math.unit(90, "kg"),
  2340. name: "Front",
  2341. image: {
  2342. source: "./media/characters/fory/front.svg",
  2343. extra: 2862 / 2674,
  2344. bottom: 180 / 3043.8
  2345. }
  2346. },
  2347. back: {
  2348. height: math.unit(5, "feet"),
  2349. weight: math.unit(90, "kg"),
  2350. name: "Back",
  2351. image: {
  2352. source: "./media/characters/fory/back.svg",
  2353. extra: 2962 / 2791,
  2354. bottom: 106 / 3071.8
  2355. }
  2356. },
  2357. foot: {
  2358. height: math.unit(2.14, "feet"),
  2359. name: "Foot",
  2360. image: {
  2361. source: "./media/characters/fory/foot.svg"
  2362. }
  2363. },
  2364. },
  2365. [
  2366. {
  2367. name: "Normal",
  2368. height: math.unit(5, "feet")
  2369. },
  2370. {
  2371. name: "Macro",
  2372. height: math.unit(50, "feet"),
  2373. default: true
  2374. },
  2375. {
  2376. name: "Megamacro",
  2377. height: math.unit(10, "miles")
  2378. },
  2379. {
  2380. name: "Gigamacro",
  2381. height: math.unit(5, "earths")
  2382. },
  2383. ]
  2384. ))
  2385. characterMakers.push(() => makeCharacter(
  2386. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2387. {
  2388. front: {
  2389. height: math.unit(7, "feet"),
  2390. weight: math.unit(90, "kg"),
  2391. name: "Front",
  2392. image: {
  2393. source: "./media/characters/kurrikage/front.svg",
  2394. extra: 1,
  2395. bottom: 0.035
  2396. }
  2397. },
  2398. back: {
  2399. height: math.unit(7, "feet"),
  2400. weight: math.unit(90, "lb"),
  2401. name: "Back",
  2402. image: {
  2403. source: "./media/characters/kurrikage/back.svg"
  2404. }
  2405. },
  2406. paw: {
  2407. height: math.unit(1.5, "feet"),
  2408. name: "Paw",
  2409. image: {
  2410. source: "./media/characters/kurrikage/paw.svg"
  2411. }
  2412. },
  2413. staff: {
  2414. height: math.unit(6.7, "feet"),
  2415. name: "Staff",
  2416. image: {
  2417. source: "./media/characters/kurrikage/staff.svg"
  2418. }
  2419. },
  2420. peek: {
  2421. height: math.unit(1.05, "feet"),
  2422. name: "Peeking",
  2423. image: {
  2424. source: "./media/characters/kurrikage/peek.svg",
  2425. bottom: 0.08
  2426. }
  2427. },
  2428. },
  2429. [
  2430. {
  2431. name: "Normal",
  2432. height: math.unit(12, "feet"),
  2433. default: true
  2434. },
  2435. {
  2436. name: "Big",
  2437. height: math.unit(20, "feet")
  2438. },
  2439. {
  2440. name: "Macro",
  2441. height: math.unit(500, "feet")
  2442. },
  2443. {
  2444. name: "Megamacro",
  2445. height: math.unit(20, "miles")
  2446. },
  2447. ]
  2448. ))
  2449. characterMakers.push(() => makeCharacter(
  2450. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2451. {
  2452. front: {
  2453. height: math.unit(6, "feet"),
  2454. weight: math.unit(75, "kg"),
  2455. name: "Front",
  2456. image: {
  2457. source: "./media/characters/shingo/front.svg",
  2458. extra: 706/681,
  2459. bottom: 11/717
  2460. }
  2461. },
  2462. frontAlt: {
  2463. height: math.unit(6, "feet"),
  2464. weight: math.unit(75, "kg"),
  2465. name: "Front (Alt)",
  2466. image: {
  2467. source: "./media/characters/shingo/front-alt.svg",
  2468. extra: 3511 / 3338,
  2469. bottom: 0.005
  2470. }
  2471. },
  2472. paw: {
  2473. height: math.unit(1, "feet"),
  2474. name: "Paw",
  2475. image: {
  2476. source: "./media/characters/shingo/paw.svg"
  2477. }
  2478. },
  2479. },
  2480. [
  2481. {
  2482. name: "Micro",
  2483. height: math.unit(4, "inches")
  2484. },
  2485. {
  2486. name: "Normal",
  2487. height: math.unit(6, "feet"),
  2488. default: true
  2489. },
  2490. {
  2491. name: "Macro",
  2492. height: math.unit(108, "feet")
  2493. },
  2494. {
  2495. name: "Macro+",
  2496. height: math.unit(1500, "feet")
  2497. },
  2498. ]
  2499. ))
  2500. characterMakers.push(() => makeCharacter(
  2501. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2502. {
  2503. side: {
  2504. height: math.unit(6, "feet"),
  2505. weight: math.unit(75, "kg"),
  2506. name: "Side",
  2507. image: {
  2508. source: "./media/characters/aigey/side.svg"
  2509. }
  2510. },
  2511. },
  2512. [
  2513. {
  2514. name: "Macro",
  2515. height: math.unit(200, "feet"),
  2516. default: true
  2517. },
  2518. {
  2519. name: "Megamacro",
  2520. height: math.unit(100, "miles")
  2521. },
  2522. ]
  2523. )
  2524. )
  2525. characterMakers.push(() => makeCharacter(
  2526. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2527. {
  2528. front: {
  2529. height: math.unit(5 + 5 / 12, "feet"),
  2530. weight: math.unit(75, "kg"),
  2531. name: "Front",
  2532. image: {
  2533. source: "./media/characters/natasha/front.svg",
  2534. extra: 859 / 824,
  2535. bottom: 23 / 879.6
  2536. }
  2537. },
  2538. frontNsfw: {
  2539. height: math.unit(5 + 5 / 12, "feet"),
  2540. weight: math.unit(75, "kg"),
  2541. name: "Front (NSFW)",
  2542. image: {
  2543. source: "./media/characters/natasha/front-nsfw.svg",
  2544. extra: 859 / 824,
  2545. bottom: 23 / 879.6
  2546. }
  2547. },
  2548. frontErect: {
  2549. height: math.unit(5 + 5 / 12, "feet"),
  2550. weight: math.unit(75, "kg"),
  2551. name: "Front (Erect)",
  2552. image: {
  2553. source: "./media/characters/natasha/front-erect.svg",
  2554. extra: 859 / 824,
  2555. bottom: 23 / 879.6
  2556. }
  2557. },
  2558. back: {
  2559. height: math.unit(5 + 5 / 12, "feet"),
  2560. weight: math.unit(75, "kg"),
  2561. name: "Back",
  2562. image: {
  2563. source: "./media/characters/natasha/back.svg",
  2564. extra: 887.9 / 852.6,
  2565. bottom: 9.7 / 896.4
  2566. }
  2567. },
  2568. backAlt: {
  2569. height: math.unit(5 + 5 / 12, "feet"),
  2570. weight: math.unit(75, "kg"),
  2571. name: "Back (Alt)",
  2572. image: {
  2573. source: "./media/characters/natasha/back-alt.svg",
  2574. extra: 1236.7 / 1192,
  2575. bottom: 22.3 / 1258.2
  2576. }
  2577. },
  2578. dick: {
  2579. height: math.unit(1.772, "feet"),
  2580. name: "Dick",
  2581. image: {
  2582. source: "./media/characters/natasha/dick.svg"
  2583. }
  2584. },
  2585. paw: {
  2586. height: math.unit(0.250, "meters"),
  2587. name: "Paw",
  2588. image: {
  2589. source: "./media/characters/natasha/paw.svg"
  2590. }
  2591. },
  2592. },
  2593. [
  2594. {
  2595. name: "Normal",
  2596. height: math.unit(5 + 5 / 12, "feet")
  2597. },
  2598. {
  2599. name: "Large",
  2600. height: math.unit(12, "feet")
  2601. },
  2602. {
  2603. name: "Macro",
  2604. height: math.unit(100, "feet"),
  2605. default: true
  2606. },
  2607. {
  2608. name: "Macro+",
  2609. height: math.unit(260, "feet")
  2610. },
  2611. {
  2612. name: "Macro++",
  2613. height: math.unit(1, "mile")
  2614. },
  2615. ]
  2616. ))
  2617. characterMakers.push(() => makeCharacter(
  2618. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2619. {
  2620. front: {
  2621. height: math.unit(6, "feet"),
  2622. weight: math.unit(75, "kg"),
  2623. name: "Front",
  2624. image: {
  2625. source: "./media/characters/malik/front.svg"
  2626. }
  2627. },
  2628. side: {
  2629. height: math.unit(6, "feet"),
  2630. weight: math.unit(75, "kg"),
  2631. name: "Side",
  2632. image: {
  2633. source: "./media/characters/malik/side.svg",
  2634. extra: 1.1539
  2635. }
  2636. },
  2637. back: {
  2638. height: math.unit(6, "feet"),
  2639. weight: math.unit(75, "kg"),
  2640. name: "Back",
  2641. image: {
  2642. source: "./media/characters/malik/back.svg"
  2643. }
  2644. },
  2645. },
  2646. [
  2647. {
  2648. name: "Macro",
  2649. height: math.unit(156, "feet"),
  2650. default: true
  2651. },
  2652. {
  2653. name: "Macro+",
  2654. height: math.unit(1188, "feet")
  2655. },
  2656. ]
  2657. ))
  2658. characterMakers.push(() => makeCharacter(
  2659. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2660. {
  2661. front: {
  2662. height: math.unit(6, "feet"),
  2663. weight: math.unit(75, "kg"),
  2664. name: "Front",
  2665. image: {
  2666. source: "./media/characters/sefer/front.svg",
  2667. extra: 848 / 659,
  2668. bottom: 28.3 / 876.442
  2669. }
  2670. },
  2671. back: {
  2672. height: math.unit(6, "feet"),
  2673. weight: math.unit(75, "kg"),
  2674. name: "Back",
  2675. image: {
  2676. source: "./media/characters/sefer/back.svg",
  2677. extra: 864 / 695,
  2678. bottom: 10 / 871
  2679. }
  2680. },
  2681. frontDressed: {
  2682. height: math.unit(6, "feet"),
  2683. weight: math.unit(75, "kg"),
  2684. name: "Front (Dressed)",
  2685. image: {
  2686. source: "./media/characters/sefer/front-dressed.svg",
  2687. extra: 839 / 653,
  2688. bottom: 37.6 / 878
  2689. }
  2690. },
  2691. },
  2692. [
  2693. {
  2694. name: "Normal",
  2695. height: math.unit(6, "feet"),
  2696. default: true
  2697. },
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2702. {
  2703. body: {
  2704. height: math.unit(2.2428, "meter"),
  2705. weight: math.unit(124.738, "kg"),
  2706. name: "Body",
  2707. image: {
  2708. extra: 1225 / 1050,
  2709. source: "./media/characters/north/front.svg"
  2710. }
  2711. }
  2712. },
  2713. [
  2714. {
  2715. name: "Micro",
  2716. height: math.unit(4, "inches")
  2717. },
  2718. {
  2719. name: "Macro",
  2720. height: math.unit(63, "meters")
  2721. },
  2722. {
  2723. name: "Megamacro",
  2724. height: math.unit(101, "miles"),
  2725. default: true
  2726. }
  2727. ]
  2728. ))
  2729. characterMakers.push(() => makeCharacter(
  2730. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2731. {
  2732. angled: {
  2733. height: math.unit(4, "meter"),
  2734. weight: math.unit(150, "kg"),
  2735. name: "Angled",
  2736. image: {
  2737. source: "./media/characters/talan/angled-sfw.svg",
  2738. bottom: 29 / 3734
  2739. }
  2740. },
  2741. angledNsfw: {
  2742. height: math.unit(4, "meter"),
  2743. weight: math.unit(150, "kg"),
  2744. name: "Angled (NSFW)",
  2745. image: {
  2746. source: "./media/characters/talan/angled-nsfw.svg",
  2747. bottom: 29 / 3734
  2748. }
  2749. },
  2750. frontNsfw: {
  2751. height: math.unit(4, "meter"),
  2752. weight: math.unit(150, "kg"),
  2753. name: "Front (NSFW)",
  2754. image: {
  2755. source: "./media/characters/talan/front-nsfw.svg",
  2756. bottom: 29 / 3734
  2757. }
  2758. },
  2759. sideNsfw: {
  2760. height: math.unit(4, "meter"),
  2761. weight: math.unit(150, "kg"),
  2762. name: "Side (NSFW)",
  2763. image: {
  2764. source: "./media/characters/talan/side-nsfw.svg",
  2765. bottom: 29 / 3734
  2766. }
  2767. },
  2768. back: {
  2769. height: math.unit(4, "meter"),
  2770. weight: math.unit(150, "kg"),
  2771. name: "Back",
  2772. image: {
  2773. source: "./media/characters/talan/back.svg"
  2774. }
  2775. },
  2776. dickBottom: {
  2777. height: math.unit(0.621, "meter"),
  2778. name: "Dick (Bottom)",
  2779. image: {
  2780. source: "./media/characters/talan/dick-bottom.svg"
  2781. }
  2782. },
  2783. dickTop: {
  2784. height: math.unit(0.621, "meter"),
  2785. name: "Dick (Top)",
  2786. image: {
  2787. source: "./media/characters/talan/dick-top.svg"
  2788. }
  2789. },
  2790. dickSide: {
  2791. height: math.unit(0.305, "meter"),
  2792. name: "Dick (Side)",
  2793. image: {
  2794. source: "./media/characters/talan/dick-side.svg"
  2795. }
  2796. },
  2797. dickFront: {
  2798. height: math.unit(0.305, "meter"),
  2799. name: "Dick (Front)",
  2800. image: {
  2801. source: "./media/characters/talan/dick-front.svg"
  2802. }
  2803. },
  2804. },
  2805. [
  2806. {
  2807. name: "Normal",
  2808. height: math.unit(4, "meters")
  2809. },
  2810. {
  2811. name: "Macro",
  2812. height: math.unit(100, "meters")
  2813. },
  2814. {
  2815. name: "Megamacro",
  2816. height: math.unit(2, "miles"),
  2817. default: true
  2818. },
  2819. {
  2820. name: "Gigamacro",
  2821. height: math.unit(5000, "miles")
  2822. },
  2823. {
  2824. name: "Teramacro",
  2825. height: math.unit(100, "parsecs")
  2826. }
  2827. ]
  2828. ))
  2829. characterMakers.push(() => makeCharacter(
  2830. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2831. {
  2832. front: {
  2833. height: math.unit(2, "meter"),
  2834. weight: math.unit(90, "kg"),
  2835. name: "Front",
  2836. image: {
  2837. source: "./media/characters/gael'rathus/front.svg"
  2838. }
  2839. },
  2840. frontAlt: {
  2841. height: math.unit(2, "meter"),
  2842. weight: math.unit(90, "kg"),
  2843. name: "Front (alt)",
  2844. image: {
  2845. source: "./media/characters/gael'rathus/front-alt.svg"
  2846. }
  2847. },
  2848. frontAlt2: {
  2849. height: math.unit(2, "meter"),
  2850. weight: math.unit(90, "kg"),
  2851. name: "Front (alt 2)",
  2852. image: {
  2853. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2854. }
  2855. }
  2856. },
  2857. [
  2858. {
  2859. name: "Normal",
  2860. height: math.unit(9, "feet"),
  2861. default: true
  2862. },
  2863. {
  2864. name: "Large",
  2865. height: math.unit(25, "feet")
  2866. },
  2867. {
  2868. name: "Macro",
  2869. height: math.unit(0.25, "miles")
  2870. },
  2871. {
  2872. name: "Megamacro",
  2873. height: math.unit(10, "miles")
  2874. }
  2875. ]
  2876. ))
  2877. characterMakers.push(() => makeCharacter(
  2878. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2879. {
  2880. side: {
  2881. height: math.unit(2, "meter"),
  2882. weight: math.unit(140, "kg"),
  2883. name: "Side",
  2884. image: {
  2885. source: "./media/characters/sosha/side.svg",
  2886. bottom: 0.042
  2887. }
  2888. },
  2889. },
  2890. [
  2891. {
  2892. name: "Normal",
  2893. height: math.unit(12, "feet"),
  2894. default: true
  2895. }
  2896. ]
  2897. ))
  2898. characterMakers.push(() => makeCharacter(
  2899. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2900. {
  2901. side: {
  2902. height: math.unit(5 + 5 / 12, "feet"),
  2903. weight: math.unit(170, "kg"),
  2904. name: "Side",
  2905. image: {
  2906. source: "./media/characters/runnola/side.svg",
  2907. extra: 741 / 448,
  2908. bottom: 0.05
  2909. }
  2910. },
  2911. },
  2912. [
  2913. {
  2914. name: "Small",
  2915. height: math.unit(3, "feet")
  2916. },
  2917. {
  2918. name: "Normal",
  2919. height: math.unit(5 + 5 / 12, "feet"),
  2920. default: true
  2921. },
  2922. {
  2923. name: "Big",
  2924. height: math.unit(10, "feet")
  2925. },
  2926. ]
  2927. ))
  2928. characterMakers.push(() => makeCharacter(
  2929. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2930. {
  2931. front: {
  2932. height: math.unit(2, "meter"),
  2933. weight: math.unit(50, "kg"),
  2934. name: "Front",
  2935. image: {
  2936. source: "./media/characters/kurribird/front.svg",
  2937. bottom: 0.015
  2938. }
  2939. },
  2940. frontAlt: {
  2941. height: math.unit(1.5, "meter"),
  2942. weight: math.unit(50, "kg"),
  2943. name: "Front (Alt)",
  2944. image: {
  2945. source: "./media/characters/kurribird/front-alt.svg",
  2946. extra: 1.45
  2947. }
  2948. },
  2949. },
  2950. [
  2951. {
  2952. name: "Normal",
  2953. height: math.unit(7, "feet")
  2954. },
  2955. {
  2956. name: "Big",
  2957. height: math.unit(12, "feet"),
  2958. default: true
  2959. },
  2960. {
  2961. name: "Macro",
  2962. height: math.unit(1500, "feet")
  2963. },
  2964. {
  2965. name: "Megamacro",
  2966. height: math.unit(2, "miles")
  2967. }
  2968. ]
  2969. ))
  2970. characterMakers.push(() => makeCharacter(
  2971. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2972. {
  2973. front: {
  2974. height: math.unit(2, "meter"),
  2975. weight: math.unit(80, "kg"),
  2976. name: "Front",
  2977. image: {
  2978. source: "./media/characters/elbial/front.svg",
  2979. extra: 1643 / 1556,
  2980. bottom: 60.2 / 1696
  2981. }
  2982. },
  2983. side: {
  2984. height: math.unit(2, "meter"),
  2985. weight: math.unit(80, "kg"),
  2986. name: "Side",
  2987. image: {
  2988. source: "./media/characters/elbial/side.svg",
  2989. extra: 1630 / 1565,
  2990. bottom: 71.5 / 1697
  2991. }
  2992. },
  2993. back: {
  2994. height: math.unit(2, "meter"),
  2995. weight: math.unit(80, "kg"),
  2996. name: "Back",
  2997. image: {
  2998. source: "./media/characters/elbial/back.svg",
  2999. extra: 1668 / 1595,
  3000. bottom: 5.6 / 1672
  3001. }
  3002. },
  3003. frontDressed: {
  3004. height: math.unit(2, "meter"),
  3005. weight: math.unit(80, "kg"),
  3006. name: "Front (Dressed)",
  3007. image: {
  3008. source: "./media/characters/elbial/front-dressed.svg",
  3009. extra: 1653 / 1584,
  3010. bottom: 57 / 1708
  3011. }
  3012. },
  3013. genitals: {
  3014. height: math.unit(2 / 3.367, "meter"),
  3015. name: "Genitals",
  3016. image: {
  3017. source: "./media/characters/elbial/genitals.svg"
  3018. }
  3019. },
  3020. },
  3021. [
  3022. {
  3023. name: "Large",
  3024. height: math.unit(100, "feet")
  3025. },
  3026. {
  3027. name: "Macro",
  3028. height: math.unit(500, "feet"),
  3029. default: true
  3030. },
  3031. {
  3032. name: "Megamacro",
  3033. height: math.unit(10, "miles")
  3034. },
  3035. {
  3036. name: "Gigamacro",
  3037. height: math.unit(25000, "miles")
  3038. },
  3039. {
  3040. name: "Full-Size",
  3041. height: math.unit(8000000, "gigaparsecs")
  3042. }
  3043. ]
  3044. ))
  3045. characterMakers.push(() => makeCharacter(
  3046. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3047. {
  3048. front: {
  3049. height: math.unit(2, "meter"),
  3050. weight: math.unit(60, "kg"),
  3051. name: "Front",
  3052. image: {
  3053. source: "./media/characters/noah/front.svg"
  3054. }
  3055. },
  3056. talons: {
  3057. height: math.unit(0.315, "meter"),
  3058. name: "Talons",
  3059. image: {
  3060. source: "./media/characters/noah/talons.svg"
  3061. }
  3062. }
  3063. },
  3064. [
  3065. {
  3066. name: "Large",
  3067. height: math.unit(50, "feet")
  3068. },
  3069. {
  3070. name: "Macro",
  3071. height: math.unit(750, "feet"),
  3072. default: true
  3073. },
  3074. {
  3075. name: "Megamacro",
  3076. height: math.unit(50, "miles")
  3077. },
  3078. {
  3079. name: "Gigamacro",
  3080. height: math.unit(100000, "miles")
  3081. },
  3082. {
  3083. name: "Full-Size",
  3084. height: math.unit(3000000000, "miles")
  3085. }
  3086. ]
  3087. ))
  3088. characterMakers.push(() => makeCharacter(
  3089. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3090. {
  3091. front: {
  3092. height: math.unit(2, "meter"),
  3093. weight: math.unit(80, "kg"),
  3094. name: "Front",
  3095. image: {
  3096. source: "./media/characters/natalya/front.svg"
  3097. }
  3098. },
  3099. back: {
  3100. height: math.unit(2, "meter"),
  3101. weight: math.unit(80, "kg"),
  3102. name: "Back",
  3103. image: {
  3104. source: "./media/characters/natalya/back.svg"
  3105. }
  3106. }
  3107. },
  3108. [
  3109. {
  3110. name: "Normal",
  3111. height: math.unit(150, "feet"),
  3112. default: true
  3113. },
  3114. {
  3115. name: "Megamacro",
  3116. height: math.unit(5, "miles")
  3117. },
  3118. {
  3119. name: "Full-Size",
  3120. height: math.unit(600, "kiloparsecs")
  3121. }
  3122. ]
  3123. ))
  3124. characterMakers.push(() => makeCharacter(
  3125. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3126. {
  3127. front: {
  3128. height: math.unit(2, "meter"),
  3129. weight: math.unit(50, "kg"),
  3130. name: "Front",
  3131. image: {
  3132. source: "./media/characters/erestrebah/front.svg",
  3133. extra: 208 / 193,
  3134. bottom: 0.055
  3135. }
  3136. },
  3137. back: {
  3138. height: math.unit(2, "meter"),
  3139. weight: math.unit(50, "kg"),
  3140. name: "Back",
  3141. image: {
  3142. source: "./media/characters/erestrebah/back.svg",
  3143. extra: 1.3
  3144. }
  3145. }
  3146. },
  3147. [
  3148. {
  3149. name: "Normal",
  3150. height: math.unit(10, "feet")
  3151. },
  3152. {
  3153. name: "Large",
  3154. height: math.unit(50, "feet"),
  3155. default: true
  3156. },
  3157. {
  3158. name: "Macro",
  3159. height: math.unit(300, "feet")
  3160. },
  3161. {
  3162. name: "Macro+",
  3163. height: math.unit(750, "feet")
  3164. },
  3165. {
  3166. name: "Megamacro",
  3167. height: math.unit(3, "miles")
  3168. }
  3169. ]
  3170. ))
  3171. characterMakers.push(() => makeCharacter(
  3172. { name: "Jennifer", species: ["rat", "demon"], 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/jennifer/front.svg",
  3180. bottom: 0.11,
  3181. extra: 1.16
  3182. }
  3183. },
  3184. frontAlt: {
  3185. height: math.unit(2, "meter"),
  3186. weight: math.unit(80, "kg"),
  3187. name: "Front (Alt)",
  3188. image: {
  3189. source: "./media/characters/jennifer/front-alt.svg"
  3190. }
  3191. }
  3192. },
  3193. [
  3194. {
  3195. name: "Canon Height",
  3196. height: math.unit(120, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro+",
  3201. height: math.unit(300, "feet")
  3202. },
  3203. {
  3204. name: "Megamacro",
  3205. height: math.unit(20000, "feet")
  3206. }
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(2, "meter"),
  3214. weight: math.unit(50, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/kalista/front.svg",
  3218. extra: 1947 / 1700,
  3219. bottom: 76.6 / 1412.98
  3220. }
  3221. },
  3222. back: {
  3223. height: math.unit(2, "meter"),
  3224. weight: math.unit(50, "kg"),
  3225. name: "Back",
  3226. image: {
  3227. source: "./media/characters/kalista/back.svg",
  3228. extra: 1366 / 1156,
  3229. bottom: 33.9 / 1362.78
  3230. }
  3231. }
  3232. },
  3233. [
  3234. {
  3235. name: "Uncomfortably Small",
  3236. height: math.unit(10, "feet")
  3237. },
  3238. {
  3239. name: "Small",
  3240. height: math.unit(30, "feet")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(100, "feet"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Macro+",
  3249. height: math.unit(2000, "feet")
  3250. },
  3251. {
  3252. name: "True Form",
  3253. height: math.unit(8924, "miles")
  3254. }
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3259. {
  3260. front: {
  3261. height: math.unit(2, "meter"),
  3262. weight: math.unit(120, "kg"),
  3263. name: "Front",
  3264. image: {
  3265. source: "./media/characters/ggv/front.svg"
  3266. }
  3267. },
  3268. side: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(120, "kg"),
  3271. name: "Side",
  3272. image: {
  3273. source: "./media/characters/ggv/side.svg"
  3274. }
  3275. }
  3276. },
  3277. [
  3278. {
  3279. name: "Extremely Puny",
  3280. height: math.unit(9 + 5 / 12, "feet")
  3281. },
  3282. {
  3283. name: "Horribly Small",
  3284. height: math.unit(47.7, "miles"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Reasonably Sized",
  3289. height: math.unit(25000, "parsecs")
  3290. },
  3291. {
  3292. name: "Slightly Uncompressed",
  3293. height: math.unit(7.77e31, "parsecs")
  3294. },
  3295. {
  3296. name: "Omniversal",
  3297. height: math.unit(1e300, "meters")
  3298. },
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(2, "meter"),
  3306. weight: math.unit(75, "lb"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/napalm/front.svg"
  3310. }
  3311. },
  3312. back: {
  3313. height: math.unit(2, "meter"),
  3314. weight: math.unit(75, "lb"),
  3315. name: "Back",
  3316. image: {
  3317. source: "./media/characters/napalm/back.svg"
  3318. }
  3319. }
  3320. },
  3321. [
  3322. {
  3323. name: "Standard",
  3324. height: math.unit(55, "feet"),
  3325. default: true
  3326. }
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3331. {
  3332. front: {
  3333. height: math.unit(7 + 5 / 6, "feet"),
  3334. weight: math.unit(325, "lb"),
  3335. name: "Front",
  3336. image: {
  3337. source: "./media/characters/asana/front.svg",
  3338. extra: 1133 / 1060,
  3339. bottom: 15.2 / 1148.6
  3340. }
  3341. },
  3342. back: {
  3343. height: math.unit(7 + 5 / 6, "feet"),
  3344. weight: math.unit(325, "lb"),
  3345. name: "Back",
  3346. image: {
  3347. source: "./media/characters/asana/back.svg",
  3348. extra: 1114 / 1043,
  3349. bottom: 5 / 1120
  3350. }
  3351. },
  3352. dressedDark: {
  3353. height: math.unit(7 + 5 / 6, "feet"),
  3354. weight: math.unit(325, "lb"),
  3355. name: "Dressed (Dark)",
  3356. image: {
  3357. source: "./media/characters/asana/dressed-dark.svg",
  3358. extra: 1133 / 1060,
  3359. bottom: 15.2 / 1148.6
  3360. }
  3361. },
  3362. dressedLight: {
  3363. height: math.unit(7 + 5 / 6, "feet"),
  3364. weight: math.unit(325, "lb"),
  3365. name: "Dressed (Light)",
  3366. image: {
  3367. source: "./media/characters/asana/dressed-light.svg",
  3368. extra: 1133 / 1060,
  3369. bottom: 15.2 / 1148.6
  3370. }
  3371. },
  3372. },
  3373. [
  3374. {
  3375. name: "Standard",
  3376. height: math.unit(7 + 5 / 6, "feet"),
  3377. default: true
  3378. },
  3379. {
  3380. name: "Large",
  3381. height: math.unit(10, "meters")
  3382. },
  3383. {
  3384. name: "Macro",
  3385. height: math.unit(2500, "meters")
  3386. },
  3387. {
  3388. name: "Megamacro",
  3389. height: math.unit(5e6, "meters")
  3390. },
  3391. {
  3392. name: "Examacro",
  3393. height: math.unit(5e12, "lightyears")
  3394. },
  3395. {
  3396. name: "Max Size",
  3397. height: math.unit(1e31, "lightyears")
  3398. }
  3399. ]
  3400. ))
  3401. characterMakers.push(() => makeCharacter(
  3402. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3403. {
  3404. front: {
  3405. height: math.unit(2, "meter"),
  3406. weight: math.unit(60, "kg"),
  3407. name: "Front",
  3408. image: {
  3409. source: "./media/characters/ebony/front.svg",
  3410. bottom: 0.03,
  3411. extra: 1045 / 810 + 0.03
  3412. }
  3413. },
  3414. side: {
  3415. height: math.unit(2, "meter"),
  3416. weight: math.unit(60, "kg"),
  3417. name: "Side",
  3418. image: {
  3419. source: "./media/characters/ebony/side.svg",
  3420. bottom: 0.03,
  3421. extra: 1045 / 810 + 0.03
  3422. }
  3423. },
  3424. back: {
  3425. height: math.unit(2, "meter"),
  3426. weight: math.unit(60, "kg"),
  3427. name: "Back",
  3428. image: {
  3429. source: "./media/characters/ebony/back.svg",
  3430. bottom: 0.01,
  3431. extra: 1045 / 810 + 0.01
  3432. }
  3433. },
  3434. },
  3435. [
  3436. // TODO check why I did this lol
  3437. {
  3438. name: "Standard",
  3439. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3440. default: true
  3441. },
  3442. {
  3443. name: "Macro",
  3444. height: math.unit(200, "feet")
  3445. },
  3446. {
  3447. name: "Gigamacro",
  3448. height: math.unit(13000, "km")
  3449. }
  3450. ]
  3451. ))
  3452. characterMakers.push(() => makeCharacter(
  3453. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3454. {
  3455. front: {
  3456. height: math.unit(6, "feet"),
  3457. weight: math.unit(175, "lb"),
  3458. name: "Front",
  3459. image: {
  3460. source: "./media/characters/mountain/front.svg",
  3461. extra: 972 / 955,
  3462. bottom: 64 / 1036.6
  3463. }
  3464. },
  3465. back: {
  3466. height: math.unit(6, "feet"),
  3467. weight: math.unit(175, "lb"),
  3468. name: "Back",
  3469. image: {
  3470. source: "./media/characters/mountain/back.svg",
  3471. extra: 970 / 950,
  3472. bottom: 28.25 / 999
  3473. }
  3474. },
  3475. },
  3476. [
  3477. {
  3478. name: "Large",
  3479. height: math.unit(20, "meters")
  3480. },
  3481. {
  3482. name: "Macro",
  3483. height: math.unit(300, "meters")
  3484. },
  3485. {
  3486. name: "Gigamacro",
  3487. height: math.unit(10000, "km"),
  3488. default: true
  3489. },
  3490. {
  3491. name: "Examacro",
  3492. height: math.unit(10e9, "lightyears")
  3493. }
  3494. ]
  3495. ))
  3496. characterMakers.push(() => makeCharacter(
  3497. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3498. {
  3499. front: {
  3500. height: math.unit(8, "feet"),
  3501. weight: math.unit(500, "lb"),
  3502. name: "Front",
  3503. image: {
  3504. source: "./media/characters/rick/front.svg"
  3505. }
  3506. }
  3507. },
  3508. [
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(8, "feet"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Macro",
  3516. height: math.unit(5, "km")
  3517. }
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(8, "feet"),
  3525. weight: math.unit(120, "lb"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/ona/front.svg"
  3529. }
  3530. },
  3531. frontAlt: {
  3532. height: math.unit(8, "feet"),
  3533. weight: math.unit(120, "lb"),
  3534. name: "Front (Alt)",
  3535. image: {
  3536. source: "./media/characters/ona/front-alt.svg"
  3537. }
  3538. },
  3539. back: {
  3540. height: math.unit(8, "feet"),
  3541. weight: math.unit(120, "lb"),
  3542. name: "Back",
  3543. image: {
  3544. source: "./media/characters/ona/back.svg"
  3545. }
  3546. },
  3547. foot: {
  3548. height: math.unit(1.1, "feet"),
  3549. name: "Foot",
  3550. image: {
  3551. source: "./media/characters/ona/foot.svg"
  3552. }
  3553. }
  3554. },
  3555. [
  3556. {
  3557. name: "Megamacro",
  3558. height: math.unit(70, "km"),
  3559. default: true
  3560. },
  3561. {
  3562. name: "Gigamacro",
  3563. height: math.unit(681818, "miles")
  3564. },
  3565. {
  3566. name: "Examacro",
  3567. height: math.unit(3800000, "lightyears")
  3568. },
  3569. ]
  3570. ))
  3571. characterMakers.push(() => makeCharacter(
  3572. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3573. {
  3574. front: {
  3575. height: math.unit(12, "feet"),
  3576. weight: math.unit(3000, "lb"),
  3577. name: "Front",
  3578. image: {
  3579. source: "./media/characters/mech/front.svg",
  3580. extra: 2900 / 2770,
  3581. bottom: 110 / 3010
  3582. }
  3583. },
  3584. back: {
  3585. height: math.unit(12, "feet"),
  3586. weight: math.unit(3000, "lb"),
  3587. name: "Back",
  3588. image: {
  3589. source: "./media/characters/mech/back.svg",
  3590. extra: 3011 / 2890,
  3591. bottom: 94 / 3105
  3592. }
  3593. },
  3594. maw: {
  3595. height: math.unit(3.07, "feet"),
  3596. name: "Maw",
  3597. image: {
  3598. source: "./media/characters/mech/maw.svg"
  3599. }
  3600. },
  3601. head: {
  3602. height: math.unit(2.82, "feet"),
  3603. name: "Head",
  3604. image: {
  3605. source: "./media/characters/mech/head.svg"
  3606. }
  3607. },
  3608. dick: {
  3609. height: math.unit(1.43, "feet"),
  3610. name: "Dick",
  3611. image: {
  3612. source: "./media/characters/mech/dick.svg"
  3613. }
  3614. },
  3615. },
  3616. [
  3617. {
  3618. name: "Normal",
  3619. height: math.unit(12, "feet")
  3620. },
  3621. {
  3622. name: "Macro",
  3623. height: math.unit(300, "feet"),
  3624. default: true
  3625. },
  3626. {
  3627. name: "Macro+",
  3628. height: math.unit(1500, "feet")
  3629. },
  3630. ]
  3631. ))
  3632. characterMakers.push(() => makeCharacter(
  3633. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3634. {
  3635. front: {
  3636. height: math.unit(1.3, "meter"),
  3637. weight: math.unit(30, "kg"),
  3638. name: "Front",
  3639. image: {
  3640. source: "./media/characters/gregory/front.svg",
  3641. }
  3642. }
  3643. },
  3644. [
  3645. {
  3646. name: "Normal",
  3647. height: math.unit(1.3, "meter"),
  3648. default: true
  3649. },
  3650. {
  3651. name: "Macro",
  3652. height: math.unit(20, "meter")
  3653. }
  3654. ]
  3655. ))
  3656. characterMakers.push(() => makeCharacter(
  3657. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3658. {
  3659. front: {
  3660. height: math.unit(2.8, "meter"),
  3661. weight: math.unit(200, "kg"),
  3662. name: "Front",
  3663. image: {
  3664. source: "./media/characters/elory/front.svg",
  3665. }
  3666. }
  3667. },
  3668. [
  3669. {
  3670. name: "Normal",
  3671. height: math.unit(2.8, "meter"),
  3672. default: true
  3673. },
  3674. {
  3675. name: "Macro",
  3676. height: math.unit(38, "meter")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(470, "feet"),
  3685. weight: math.unit(924, "tons"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/angelpatamon/front.svg",
  3689. }
  3690. }
  3691. },
  3692. [
  3693. {
  3694. name: "Normal",
  3695. height: math.unit(470, "feet"),
  3696. default: true
  3697. },
  3698. {
  3699. name: "Deity Size I",
  3700. height: math.unit(28651.2, "km")
  3701. },
  3702. {
  3703. name: "Deity Size II",
  3704. height: math.unit(171907.2, "km")
  3705. }
  3706. ]
  3707. ))
  3708. characterMakers.push(() => makeCharacter(
  3709. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3710. {
  3711. side: {
  3712. height: math.unit(7.2, "meter"),
  3713. weight: math.unit(8.2, "tons"),
  3714. name: "Side",
  3715. image: {
  3716. source: "./media/characters/cryae/side.svg",
  3717. extra: 3500 / 1500
  3718. }
  3719. }
  3720. },
  3721. [
  3722. {
  3723. name: "Normal",
  3724. height: math.unit(7.2, "meter"),
  3725. default: true
  3726. }
  3727. ]
  3728. ))
  3729. characterMakers.push(() => makeCharacter(
  3730. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3731. {
  3732. front: {
  3733. height: math.unit(6, "feet"),
  3734. weight: math.unit(175, "lb"),
  3735. name: "Front",
  3736. image: {
  3737. source: "./media/characters/xera/front.svg",
  3738. extra: 2377 / 1972,
  3739. bottom: 75.5 / 2452
  3740. }
  3741. },
  3742. side: {
  3743. height: math.unit(6, "feet"),
  3744. weight: math.unit(175, "lb"),
  3745. name: "Side",
  3746. image: {
  3747. source: "./media/characters/xera/side.svg",
  3748. extra: 2345 / 2019,
  3749. bottom: 39.7 / 2384
  3750. }
  3751. },
  3752. back: {
  3753. height: math.unit(6, "feet"),
  3754. weight: math.unit(175, "lb"),
  3755. name: "Back",
  3756. image: {
  3757. source: "./media/characters/xera/back.svg",
  3758. extra: 2095 / 1984,
  3759. bottom: 67 / 2166
  3760. }
  3761. },
  3762. },
  3763. [
  3764. {
  3765. name: "Small",
  3766. height: math.unit(10, "feet")
  3767. },
  3768. {
  3769. name: "Macro",
  3770. height: math.unit(500, "meters"),
  3771. default: true
  3772. },
  3773. {
  3774. name: "Macro+",
  3775. height: math.unit(10, "km")
  3776. },
  3777. {
  3778. name: "Gigamacro",
  3779. height: math.unit(25000, "km")
  3780. },
  3781. {
  3782. name: "Teramacro",
  3783. height: math.unit(3e6, "km")
  3784. }
  3785. ]
  3786. ))
  3787. characterMakers.push(() => makeCharacter(
  3788. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3789. {
  3790. front: {
  3791. height: math.unit(6, "feet"),
  3792. weight: math.unit(175, "lb"),
  3793. name: "Front",
  3794. image: {
  3795. source: "./media/characters/nebula/front.svg",
  3796. extra: 2566 / 2362,
  3797. bottom: 81 / 2644
  3798. }
  3799. }
  3800. },
  3801. [
  3802. {
  3803. name: "Small",
  3804. height: math.unit(4.5, "meters")
  3805. },
  3806. {
  3807. name: "Macro",
  3808. height: math.unit(1500, "meters"),
  3809. default: true
  3810. },
  3811. {
  3812. name: "Megamacro",
  3813. height: math.unit(150, "km")
  3814. },
  3815. {
  3816. name: "Gigamacro",
  3817. height: math.unit(27000, "km")
  3818. }
  3819. ]
  3820. ))
  3821. characterMakers.push(() => makeCharacter(
  3822. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3823. {
  3824. front: {
  3825. height: math.unit(6, "feet"),
  3826. weight: math.unit(225, "lb"),
  3827. name: "Front",
  3828. image: {
  3829. source: "./media/characters/abysgar/front.svg"
  3830. }
  3831. }
  3832. },
  3833. [
  3834. {
  3835. name: "Small",
  3836. height: math.unit(4.5, "meters")
  3837. },
  3838. {
  3839. name: "Macro",
  3840. height: math.unit(1250, "meters"),
  3841. default: true
  3842. },
  3843. {
  3844. name: "Megamacro",
  3845. height: math.unit(125, "km")
  3846. },
  3847. {
  3848. name: "Gigamacro",
  3849. height: math.unit(26000, "km")
  3850. }
  3851. ]
  3852. ))
  3853. characterMakers.push(() => makeCharacter(
  3854. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3855. {
  3856. front: {
  3857. height: math.unit(6, "feet"),
  3858. weight: math.unit(180, "lb"),
  3859. name: "Front",
  3860. image: {
  3861. source: "./media/characters/yakuz/front.svg"
  3862. }
  3863. }
  3864. },
  3865. [
  3866. {
  3867. name: "Small",
  3868. height: math.unit(5, "meters")
  3869. },
  3870. {
  3871. name: "Macro",
  3872. height: math.unit(1500, "meters"),
  3873. default: true
  3874. },
  3875. {
  3876. name: "Megamacro",
  3877. height: math.unit(200, "km")
  3878. },
  3879. {
  3880. name: "Gigamacro",
  3881. height: math.unit(100000, "km")
  3882. }
  3883. ]
  3884. ))
  3885. characterMakers.push(() => makeCharacter(
  3886. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3887. {
  3888. front: {
  3889. height: math.unit(6, "feet"),
  3890. weight: math.unit(175, "lb"),
  3891. name: "Front",
  3892. image: {
  3893. source: "./media/characters/mirova/front.svg",
  3894. extra: 3334 / 3071,
  3895. bottom: 42 / 3375.6
  3896. }
  3897. }
  3898. },
  3899. [
  3900. {
  3901. name: "Small",
  3902. height: math.unit(5, "meters")
  3903. },
  3904. {
  3905. name: "Macro",
  3906. height: math.unit(900, "meters"),
  3907. default: true
  3908. },
  3909. {
  3910. name: "Megamacro",
  3911. height: math.unit(135, "km")
  3912. },
  3913. {
  3914. name: "Gigamacro",
  3915. height: math.unit(20000, "km")
  3916. }
  3917. ]
  3918. ))
  3919. characterMakers.push(() => makeCharacter(
  3920. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3921. {
  3922. side: {
  3923. height: math.unit(28.35, "feet"),
  3924. weight: math.unit(99.75, "tons"),
  3925. name: "Side",
  3926. image: {
  3927. source: "./media/characters/asana-mech/side.svg",
  3928. extra: 923 / 699,
  3929. bottom: 50 / 975
  3930. }
  3931. },
  3932. chaingun: {
  3933. height: math.unit(7, "feet"),
  3934. weight: math.unit(2400, "lb"),
  3935. name: "Chaingun",
  3936. image: {
  3937. source: "./media/characters/asana-mech/chaingun.svg"
  3938. }
  3939. },
  3940. laser: {
  3941. height: math.unit(7.12, "feet"),
  3942. weight: math.unit(2000, "lb"),
  3943. name: "Laser",
  3944. image: {
  3945. source: "./media/characters/asana-mech/laser.svg"
  3946. }
  3947. },
  3948. },
  3949. [
  3950. {
  3951. name: "Normal",
  3952. height: math.unit(28.35, "feet"),
  3953. default: true
  3954. },
  3955. {
  3956. name: "Macro",
  3957. height: math.unit(2500, "feet")
  3958. },
  3959. {
  3960. name: "Megamacro",
  3961. height: math.unit(25, "miles")
  3962. },
  3963. {
  3964. name: "Examacro",
  3965. height: math.unit(6e8, "lightyears")
  3966. },
  3967. ]
  3968. ))
  3969. characterMakers.push(() => makeCharacter(
  3970. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3971. {
  3972. front: {
  3973. height: math.unit(5, "meters"),
  3974. weight: math.unit(1000, "kg"),
  3975. name: "Front",
  3976. image: {
  3977. source: "./media/characters/asche/front.svg",
  3978. extra: 1258 / 1190,
  3979. bottom: 47 / 1305
  3980. }
  3981. },
  3982. frontUnderwear: {
  3983. height: math.unit(5, "meters"),
  3984. weight: math.unit(1000, "kg"),
  3985. name: "Front (Underwear)",
  3986. image: {
  3987. source: "./media/characters/asche/front-underwear.svg",
  3988. extra: 1258 / 1190,
  3989. bottom: 47 / 1305
  3990. }
  3991. },
  3992. frontDressed: {
  3993. height: math.unit(5, "meters"),
  3994. weight: math.unit(1000, "kg"),
  3995. name: "Front (Dressed)",
  3996. image: {
  3997. source: "./media/characters/asche/front-dressed.svg",
  3998. extra: 1258 / 1190,
  3999. bottom: 47 / 1305
  4000. }
  4001. },
  4002. frontArmor: {
  4003. height: math.unit(5, "meters"),
  4004. weight: math.unit(1000, "kg"),
  4005. name: "Front (Armored)",
  4006. image: {
  4007. source: "./media/characters/asche/front-armored.svg",
  4008. extra: 1374 / 1308,
  4009. bottom: 23 / 1397
  4010. }
  4011. },
  4012. mp724: {
  4013. height: math.unit(0.96, "meters"),
  4014. weight: math.unit(38, "kg"),
  4015. name: "H&K MP724",
  4016. image: {
  4017. source: "./media/characters/asche/h&k-mp724.svg"
  4018. }
  4019. },
  4020. side: {
  4021. height: math.unit(5, "meters"),
  4022. weight: math.unit(1000, "kg"),
  4023. name: "Side",
  4024. image: {
  4025. source: "./media/characters/asche/side.svg",
  4026. extra: 1717 / 1609,
  4027. bottom: 0.005
  4028. }
  4029. },
  4030. back: {
  4031. height: math.unit(5, "meters"),
  4032. weight: math.unit(1000, "kg"),
  4033. name: "Back",
  4034. image: {
  4035. source: "./media/characters/asche/back.svg",
  4036. extra: 1570 / 1501
  4037. }
  4038. },
  4039. },
  4040. [
  4041. {
  4042. name: "DEFCON 5",
  4043. height: math.unit(5, "meters")
  4044. },
  4045. {
  4046. name: "DEFCON 4",
  4047. height: math.unit(500, "meters"),
  4048. default: true
  4049. },
  4050. {
  4051. name: "DEFCON 3",
  4052. height: math.unit(5, "km")
  4053. },
  4054. {
  4055. name: "DEFCON 2",
  4056. height: math.unit(500, "km")
  4057. },
  4058. {
  4059. name: "DEFCON 1",
  4060. height: math.unit(500000, "km")
  4061. },
  4062. {
  4063. name: "DEFCON 0",
  4064. height: math.unit(3, "gigaparsecs")
  4065. },
  4066. ]
  4067. ))
  4068. characterMakers.push(() => makeCharacter(
  4069. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4070. {
  4071. front: {
  4072. height: math.unit(2, "meters"),
  4073. weight: math.unit(76, "kg"),
  4074. name: "Front",
  4075. image: {
  4076. source: "./media/characters/gale/front.svg"
  4077. }
  4078. },
  4079. frontAlt1: {
  4080. height: math.unit(2, "meters"),
  4081. weight: math.unit(76, "kg"),
  4082. name: "Front (Alt 1)",
  4083. image: {
  4084. source: "./media/characters/gale/front-alt-1.svg"
  4085. }
  4086. },
  4087. frontAlt2: {
  4088. height: math.unit(2, "meters"),
  4089. weight: math.unit(76, "kg"),
  4090. name: "Front (Alt 2)",
  4091. image: {
  4092. source: "./media/characters/gale/front-alt-2.svg"
  4093. }
  4094. },
  4095. },
  4096. [
  4097. {
  4098. name: "Normal",
  4099. height: math.unit(7, "feet")
  4100. },
  4101. {
  4102. name: "Macro",
  4103. height: math.unit(150, "feet"),
  4104. default: true
  4105. },
  4106. {
  4107. name: "Macro+",
  4108. height: math.unit(300, "feet")
  4109. },
  4110. ]
  4111. ))
  4112. characterMakers.push(() => makeCharacter(
  4113. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4114. {
  4115. front: {
  4116. height: math.unit(2, "meters"),
  4117. weight: math.unit(76, "kg"),
  4118. name: "Front",
  4119. image: {
  4120. source: "./media/characters/draylen/front.svg"
  4121. }
  4122. }
  4123. },
  4124. [
  4125. {
  4126. name: "Macro",
  4127. height: math.unit(150, "feet"),
  4128. default: true
  4129. }
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4134. {
  4135. front: {
  4136. height: math.unit(7 + 9 / 12, "feet"),
  4137. weight: math.unit(379, "lbs"),
  4138. name: "Front",
  4139. image: {
  4140. source: "./media/characters/chez/front.svg"
  4141. }
  4142. },
  4143. side: {
  4144. height: math.unit(7 + 9 / 12, "feet"),
  4145. weight: math.unit(379, "lbs"),
  4146. name: "Side",
  4147. image: {
  4148. source: "./media/characters/chez/side.svg"
  4149. }
  4150. }
  4151. },
  4152. [
  4153. {
  4154. name: "Normal",
  4155. height: math.unit(7 + 9 / 12, "feet"),
  4156. default: true
  4157. },
  4158. {
  4159. name: "God King",
  4160. height: math.unit(9750000, "meters")
  4161. }
  4162. ]
  4163. ))
  4164. characterMakers.push(() => makeCharacter(
  4165. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4166. {
  4167. front: {
  4168. height: math.unit(6, "feet"),
  4169. weight: math.unit(275, "lbs"),
  4170. name: "Front",
  4171. image: {
  4172. source: "./media/characters/kaylum/front.svg",
  4173. bottom: 0.01,
  4174. extra: 1166 / 1031
  4175. }
  4176. },
  4177. frontWingless: {
  4178. height: math.unit(6, "feet"),
  4179. weight: math.unit(275, "lbs"),
  4180. name: "Front (Wingless)",
  4181. image: {
  4182. source: "./media/characters/kaylum/front-wingless.svg",
  4183. bottom: 0.01,
  4184. extra: 1117 / 1031
  4185. }
  4186. }
  4187. },
  4188. [
  4189. {
  4190. name: "Normal",
  4191. height: math.unit(3.05, "meters")
  4192. },
  4193. {
  4194. name: "Master",
  4195. height: math.unit(5.5, "meters")
  4196. },
  4197. {
  4198. name: "Rampage",
  4199. height: math.unit(19, "meters")
  4200. },
  4201. {
  4202. name: "Macro Lite",
  4203. height: math.unit(37, "meters")
  4204. },
  4205. {
  4206. name: "Hyper Predator",
  4207. height: math.unit(61, "meters")
  4208. },
  4209. {
  4210. name: "Macro",
  4211. height: math.unit(138, "meters"),
  4212. default: true
  4213. }
  4214. ]
  4215. ))
  4216. characterMakers.push(() => makeCharacter(
  4217. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4218. {
  4219. front: {
  4220. height: math.unit(6, "feet"),
  4221. weight: math.unit(150, "lbs"),
  4222. name: "Front",
  4223. image: {
  4224. source: "./media/characters/geta/front.svg"
  4225. }
  4226. }
  4227. },
  4228. [
  4229. {
  4230. name: "Micro",
  4231. height: math.unit(3, "inches"),
  4232. default: true
  4233. },
  4234. {
  4235. name: "Normal",
  4236. height: math.unit(5 + 5 / 12, "feet")
  4237. }
  4238. ]
  4239. ))
  4240. characterMakers.push(() => makeCharacter(
  4241. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4242. {
  4243. front: {
  4244. height: math.unit(6, "feet"),
  4245. weight: math.unit(300, "lbs"),
  4246. name: "Front",
  4247. image: {
  4248. source: "./media/characters/tyrnn/front.svg"
  4249. }
  4250. }
  4251. },
  4252. [
  4253. {
  4254. name: "Main Height",
  4255. height: math.unit(355, "feet"),
  4256. default: true
  4257. },
  4258. {
  4259. name: "Fave. Height",
  4260. height: math.unit(2400, "feet")
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4266. {
  4267. front: {
  4268. height: math.unit(6, "feet"),
  4269. weight: math.unit(300, "lbs"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/appledectomy/front.svg"
  4273. }
  4274. }
  4275. },
  4276. [
  4277. {
  4278. name: "Macro",
  4279. height: math.unit(2500, "feet")
  4280. },
  4281. {
  4282. name: "Megamacro",
  4283. height: math.unit(50, "miles"),
  4284. default: true
  4285. },
  4286. {
  4287. name: "Gigamacro",
  4288. height: math.unit(5000, "miles")
  4289. },
  4290. {
  4291. name: "Teramacro",
  4292. height: math.unit(250000, "miles")
  4293. },
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4298. {
  4299. front: {
  4300. height: math.unit(6, "feet"),
  4301. weight: math.unit(200, "lbs"),
  4302. name: "Front",
  4303. image: {
  4304. source: "./media/characters/vulpes/front.svg",
  4305. extra: 573 / 543,
  4306. bottom: 0.033
  4307. }
  4308. },
  4309. side: {
  4310. height: math.unit(6, "feet"),
  4311. weight: math.unit(200, "lbs"),
  4312. name: "Side",
  4313. image: {
  4314. source: "./media/characters/vulpes/side.svg",
  4315. extra: 577 / 549,
  4316. bottom: 11 / 588
  4317. }
  4318. },
  4319. back: {
  4320. height: math.unit(6, "feet"),
  4321. weight: math.unit(200, "lbs"),
  4322. name: "Back",
  4323. image: {
  4324. source: "./media/characters/vulpes/back.svg",
  4325. extra: 573 / 549,
  4326. bottom: 20 / 593
  4327. }
  4328. },
  4329. feet: {
  4330. height: math.unit(1.276, "feet"),
  4331. name: "Feet",
  4332. image: {
  4333. source: "./media/characters/vulpes/feet.svg"
  4334. }
  4335. },
  4336. maw: {
  4337. height: math.unit(1.18, "feet"),
  4338. name: "Maw",
  4339. image: {
  4340. source: "./media/characters/vulpes/maw.svg"
  4341. }
  4342. },
  4343. },
  4344. [
  4345. {
  4346. name: "Micro",
  4347. height: math.unit(2, "inches")
  4348. },
  4349. {
  4350. name: "Normal",
  4351. height: math.unit(6.3, "feet")
  4352. },
  4353. {
  4354. name: "Macro",
  4355. height: math.unit(850, "feet")
  4356. },
  4357. {
  4358. name: "Megamacro",
  4359. height: math.unit(7500, "feet"),
  4360. default: true
  4361. },
  4362. {
  4363. name: "Gigamacro",
  4364. height: math.unit(570000, "miles")
  4365. }
  4366. ]
  4367. ))
  4368. characterMakers.push(() => makeCharacter(
  4369. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4370. {
  4371. front: {
  4372. height: math.unit(6, "feet"),
  4373. weight: math.unit(210, "lbs"),
  4374. name: "Front",
  4375. image: {
  4376. source: "./media/characters/rain-fallen/front.svg"
  4377. }
  4378. },
  4379. side: {
  4380. height: math.unit(6, "feet"),
  4381. weight: math.unit(210, "lbs"),
  4382. name: "Side",
  4383. image: {
  4384. source: "./media/characters/rain-fallen/side.svg"
  4385. }
  4386. },
  4387. back: {
  4388. height: math.unit(6, "feet"),
  4389. weight: math.unit(210, "lbs"),
  4390. name: "Back",
  4391. image: {
  4392. source: "./media/characters/rain-fallen/back.svg"
  4393. }
  4394. },
  4395. feral: {
  4396. height: math.unit(9, "feet"),
  4397. weight: math.unit(700, "lbs"),
  4398. name: "Feral",
  4399. image: {
  4400. source: "./media/characters/rain-fallen/feral.svg"
  4401. }
  4402. },
  4403. },
  4404. [
  4405. {
  4406. name: "Meddling with Mortals",
  4407. height: math.unit(8 + 8/12, "feet")
  4408. },
  4409. {
  4410. name: "Normal",
  4411. height: math.unit(5, "meter")
  4412. },
  4413. {
  4414. name: "Macro",
  4415. height: math.unit(150, "meter"),
  4416. default: true
  4417. },
  4418. {
  4419. name: "Megamacro",
  4420. height: math.unit(278e6, "meter")
  4421. },
  4422. {
  4423. name: "Gigamacro",
  4424. height: math.unit(2e9, "meter")
  4425. },
  4426. {
  4427. name: "Teramacro",
  4428. height: math.unit(8e12, "meter")
  4429. },
  4430. {
  4431. name: "Devourer",
  4432. height: math.unit(14, "zettameters")
  4433. },
  4434. {
  4435. name: "Scarlet King",
  4436. height: math.unit(18, "yottameters")
  4437. },
  4438. {
  4439. name: "Void",
  4440. height: math.unit(1e88, "yottameters")
  4441. }
  4442. ]
  4443. ))
  4444. characterMakers.push(() => makeCharacter(
  4445. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4446. {
  4447. standing: {
  4448. height: math.unit(6, "feet"),
  4449. weight: math.unit(180, "lbs"),
  4450. name: "Standing",
  4451. image: {
  4452. source: "./media/characters/zaakira/standing.svg"
  4453. }
  4454. },
  4455. laying: {
  4456. height: math.unit(3, "feet"),
  4457. weight: math.unit(180, "lbs"),
  4458. name: "Laying",
  4459. image: {
  4460. source: "./media/characters/zaakira/laying.svg"
  4461. }
  4462. },
  4463. },
  4464. [
  4465. {
  4466. name: "Normal",
  4467. height: math.unit(12, "feet")
  4468. },
  4469. {
  4470. name: "Macro",
  4471. height: math.unit(279, "feet"),
  4472. default: true
  4473. }
  4474. ]
  4475. ))
  4476. characterMakers.push(() => makeCharacter(
  4477. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4478. {
  4479. femSfw: {
  4480. height: math.unit(8, "feet"),
  4481. weight: math.unit(350, "lb"),
  4482. name: "Fem",
  4483. image: {
  4484. source: "./media/characters/sigvald/fem-sfw.svg",
  4485. extra: 182 / 164,
  4486. bottom: 8.7 / 190.5
  4487. }
  4488. },
  4489. femNsfw: {
  4490. height: math.unit(8, "feet"),
  4491. weight: math.unit(350, "lb"),
  4492. name: "Fem (NSFW)",
  4493. image: {
  4494. source: "./media/characters/sigvald/fem-nsfw.svg",
  4495. extra: 182 / 164,
  4496. bottom: 8.7 / 190.5
  4497. }
  4498. },
  4499. maleNsfw: {
  4500. height: math.unit(8, "feet"),
  4501. weight: math.unit(350, "lb"),
  4502. name: "Male (NSFW)",
  4503. image: {
  4504. source: "./media/characters/sigvald/male-nsfw.svg",
  4505. extra: 182 / 164,
  4506. bottom: 8.7 / 190.5
  4507. }
  4508. },
  4509. hermNsfw: {
  4510. height: math.unit(8, "feet"),
  4511. weight: math.unit(350, "lb"),
  4512. name: "Herm (NSFW)",
  4513. image: {
  4514. source: "./media/characters/sigvald/herm-nsfw.svg",
  4515. extra: 182 / 164,
  4516. bottom: 8.7 / 190.5
  4517. }
  4518. },
  4519. dick: {
  4520. height: math.unit(2.36, "feet"),
  4521. name: "Dick",
  4522. image: {
  4523. source: "./media/characters/sigvald/dick.svg"
  4524. }
  4525. },
  4526. eye: {
  4527. height: math.unit(0.31, "feet"),
  4528. name: "Eye",
  4529. image: {
  4530. source: "./media/characters/sigvald/eye.svg"
  4531. }
  4532. },
  4533. mouth: {
  4534. height: math.unit(0.92, "feet"),
  4535. name: "Mouth",
  4536. image: {
  4537. source: "./media/characters/sigvald/mouth.svg"
  4538. }
  4539. },
  4540. paws: {
  4541. height: math.unit(2.2, "feet"),
  4542. name: "Paws",
  4543. image: {
  4544. source: "./media/characters/sigvald/paws.svg"
  4545. }
  4546. }
  4547. },
  4548. [
  4549. {
  4550. name: "Normal",
  4551. height: math.unit(8, "feet")
  4552. },
  4553. {
  4554. name: "Large",
  4555. height: math.unit(12, "feet")
  4556. },
  4557. {
  4558. name: "Larger",
  4559. height: math.unit(20, "feet")
  4560. },
  4561. {
  4562. name: "Macro",
  4563. height: math.unit(150, "feet")
  4564. },
  4565. {
  4566. name: "Macro+",
  4567. height: math.unit(200, "feet"),
  4568. default: true
  4569. },
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4574. {
  4575. side: {
  4576. height: math.unit(12, "feet"),
  4577. weight: math.unit(2000, "kg"),
  4578. name: "Side",
  4579. image: {
  4580. source: "./media/characters/scott/side.svg",
  4581. extra: 754 / 724,
  4582. bottom: 0.069
  4583. }
  4584. },
  4585. upright: {
  4586. height: math.unit(12, "feet"),
  4587. weight: math.unit(2000, "kg"),
  4588. name: "Upright",
  4589. image: {
  4590. source: "./media/characters/scott/upright.svg",
  4591. extra: 3881 / 3722,
  4592. bottom: 0.05
  4593. }
  4594. },
  4595. },
  4596. [
  4597. {
  4598. name: "Normal",
  4599. height: math.unit(12, "feet"),
  4600. default: true
  4601. },
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4606. {
  4607. side: {
  4608. height: math.unit(8, "meters"),
  4609. weight: math.unit(84755, "lbs"),
  4610. name: "Side",
  4611. image: {
  4612. source: "./media/characters/tobias/side.svg",
  4613. extra: 1474 / 1096,
  4614. bottom: 38.9 / 1513.1235
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Normal",
  4621. height: math.unit(8, "meters"),
  4622. default: true
  4623. },
  4624. ]
  4625. ))
  4626. characterMakers.push(() => makeCharacter(
  4627. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4628. {
  4629. front: {
  4630. height: math.unit(5.5, "feet"),
  4631. weight: math.unit(400, "lbs"),
  4632. name: "Front",
  4633. image: {
  4634. source: "./media/characters/kieran/front.svg",
  4635. extra: 2694 / 2364,
  4636. bottom: 217 / 2908
  4637. }
  4638. },
  4639. side: {
  4640. height: math.unit(5.5, "feet"),
  4641. weight: math.unit(400, "lbs"),
  4642. name: "Side",
  4643. image: {
  4644. source: "./media/characters/kieran/side.svg",
  4645. extra: 875 / 777,
  4646. bottom: 84.6 / 959
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "Normal",
  4653. height: math.unit(5.5, "feet"),
  4654. default: true
  4655. },
  4656. ]
  4657. ))
  4658. characterMakers.push(() => makeCharacter(
  4659. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4660. {
  4661. side: {
  4662. height: math.unit(2, "meters"),
  4663. weight: math.unit(70, "kg"),
  4664. name: "Side",
  4665. image: {
  4666. source: "./media/characters/sanya/side.svg",
  4667. bottom: 0.02,
  4668. extra: 1.02
  4669. }
  4670. },
  4671. },
  4672. [
  4673. {
  4674. name: "Small",
  4675. height: math.unit(2, "meters")
  4676. },
  4677. {
  4678. name: "Normal",
  4679. height: math.unit(3, "meters")
  4680. },
  4681. {
  4682. name: "Macro",
  4683. height: math.unit(16, "meters"),
  4684. default: true
  4685. },
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4690. {
  4691. front: {
  4692. height: math.unit(2, "meters"),
  4693. weight: math.unit(120, "kg"),
  4694. name: "Front",
  4695. image: {
  4696. source: "./media/characters/miranda/front.svg",
  4697. extra: 195 / 185,
  4698. bottom: 10.9 / 206.5
  4699. }
  4700. },
  4701. back: {
  4702. height: math.unit(2, "meters"),
  4703. weight: math.unit(120, "kg"),
  4704. name: "Back",
  4705. image: {
  4706. source: "./media/characters/miranda/back.svg",
  4707. extra: 201 / 193,
  4708. bottom: 2.3 / 203.7
  4709. }
  4710. },
  4711. },
  4712. [
  4713. {
  4714. name: "Normal",
  4715. height: math.unit(10, "feet"),
  4716. default: true
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "James", species: ["deer"], tags: ["anthro"] },
  4722. {
  4723. side: {
  4724. height: math.unit(2, "meters"),
  4725. weight: math.unit(100, "kg"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/james/front.svg",
  4729. extra: 10 / 8.5
  4730. }
  4731. },
  4732. },
  4733. [
  4734. {
  4735. name: "Normal",
  4736. height: math.unit(8.5, "feet"),
  4737. default: true
  4738. }
  4739. ]
  4740. ))
  4741. characterMakers.push(() => makeCharacter(
  4742. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4743. {
  4744. side: {
  4745. height: math.unit(9.5, "feet"),
  4746. weight: math.unit(2500, "lbs"),
  4747. name: "Side",
  4748. image: {
  4749. source: "./media/characters/heather/side.svg"
  4750. }
  4751. },
  4752. },
  4753. [
  4754. {
  4755. name: "Normal",
  4756. height: math.unit(9.5, "feet"),
  4757. default: true
  4758. }
  4759. ]
  4760. ))
  4761. characterMakers.push(() => makeCharacter(
  4762. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4763. {
  4764. side: {
  4765. height: math.unit(6.5, "feet"),
  4766. weight: math.unit(400, "lbs"),
  4767. name: "Side",
  4768. image: {
  4769. source: "./media/characters/lukas/side.svg",
  4770. extra: 7.25 / 6.5
  4771. }
  4772. },
  4773. },
  4774. [
  4775. {
  4776. name: "Normal",
  4777. height: math.unit(6.5, "feet"),
  4778. default: true
  4779. }
  4780. ]
  4781. ))
  4782. characterMakers.push(() => makeCharacter(
  4783. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4784. {
  4785. side: {
  4786. height: math.unit(5, "feet"),
  4787. weight: math.unit(3000, "lbs"),
  4788. name: "Side",
  4789. image: {
  4790. source: "./media/characters/louise/side.svg"
  4791. }
  4792. },
  4793. },
  4794. [
  4795. {
  4796. name: "Normal",
  4797. height: math.unit(5, "feet"),
  4798. default: true
  4799. }
  4800. ]
  4801. ))
  4802. characterMakers.push(() => makeCharacter(
  4803. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4804. {
  4805. side: {
  4806. height: math.unit(6, "feet"),
  4807. weight: math.unit(150, "lbs"),
  4808. name: "Side",
  4809. image: {
  4810. source: "./media/characters/ramona/side.svg"
  4811. }
  4812. },
  4813. },
  4814. [
  4815. {
  4816. name: "Normal",
  4817. height: math.unit(5.3, "meters"),
  4818. default: true
  4819. },
  4820. {
  4821. name: "Macro",
  4822. height: math.unit(20, "stories")
  4823. },
  4824. {
  4825. name: "Macro+",
  4826. height: math.unit(50, "stories")
  4827. },
  4828. ]
  4829. ))
  4830. characterMakers.push(() => makeCharacter(
  4831. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4832. {
  4833. standing: {
  4834. height: math.unit(5.75, "feet"),
  4835. weight: math.unit(160, "lbs"),
  4836. name: "Standing",
  4837. image: {
  4838. source: "./media/characters/deerpuff/standing.svg",
  4839. extra: 682 / 624
  4840. }
  4841. },
  4842. sitting: {
  4843. height: math.unit(5.75 / 1.79, "feet"),
  4844. weight: math.unit(160, "lbs"),
  4845. name: "Sitting",
  4846. image: {
  4847. source: "./media/characters/deerpuff/sitting.svg",
  4848. bottom: 44 / 400,
  4849. extra: 1
  4850. }
  4851. },
  4852. taurLaying: {
  4853. height: math.unit(6, "feet"),
  4854. weight: math.unit(400, "lbs"),
  4855. name: "Taur (Laying)",
  4856. image: {
  4857. source: "./media/characters/deerpuff/taur-laying.svg"
  4858. }
  4859. },
  4860. },
  4861. [
  4862. {
  4863. name: "Puffball",
  4864. height: math.unit(6, "inches")
  4865. },
  4866. {
  4867. name: "Normalpuff",
  4868. height: math.unit(5.75, "feet")
  4869. },
  4870. {
  4871. name: "Macropuff",
  4872. height: math.unit(1500, "feet"),
  4873. default: true
  4874. },
  4875. {
  4876. name: "Megapuff",
  4877. height: math.unit(500, "miles")
  4878. },
  4879. {
  4880. name: "Gigapuff",
  4881. height: math.unit(250000, "miles")
  4882. },
  4883. {
  4884. name: "Omegapuff",
  4885. height: math.unit(1000, "lightyears")
  4886. },
  4887. ]
  4888. ))
  4889. characterMakers.push(() => makeCharacter(
  4890. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4891. {
  4892. stomping: {
  4893. height: math.unit(6, "feet"),
  4894. weight: math.unit(170, "lbs"),
  4895. name: "Stomping",
  4896. image: {
  4897. source: "./media/characters/vivian/stomping.svg"
  4898. }
  4899. },
  4900. sitting: {
  4901. height: math.unit(6 / 1.75, "feet"),
  4902. weight: math.unit(170, "lbs"),
  4903. name: "Sitting",
  4904. image: {
  4905. source: "./media/characters/vivian/sitting.svg",
  4906. bottom: 1 / 6.4,
  4907. extra: 1,
  4908. }
  4909. },
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(7, "feet"),
  4915. default: true
  4916. },
  4917. {
  4918. name: "Macro",
  4919. height: math.unit(10, "stories")
  4920. },
  4921. {
  4922. name: "Macro+",
  4923. height: math.unit(30, "stories")
  4924. },
  4925. {
  4926. name: "Megamacro",
  4927. height: math.unit(10, "miles")
  4928. },
  4929. {
  4930. name: "Megamacro+",
  4931. height: math.unit(2750000, "meters")
  4932. },
  4933. ]
  4934. ))
  4935. characterMakers.push(() => makeCharacter(
  4936. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4937. {
  4938. front: {
  4939. height: math.unit(6, "feet"),
  4940. weight: math.unit(160, "lbs"),
  4941. name: "Front",
  4942. image: {
  4943. source: "./media/characters/prince/front.svg",
  4944. extra: 3400 / 3000
  4945. }
  4946. },
  4947. jumping: {
  4948. height: math.unit(6, "feet"),
  4949. weight: math.unit(160, "lbs"),
  4950. name: "Jumping",
  4951. image: {
  4952. source: "./media/characters/prince/jump.svg",
  4953. extra: 2555 / 2134
  4954. }
  4955. },
  4956. },
  4957. [
  4958. {
  4959. name: "Normal",
  4960. height: math.unit(7.75, "feet"),
  4961. default: true
  4962. },
  4963. {
  4964. name: "Not cute",
  4965. height: math.unit(17, "feet")
  4966. },
  4967. {
  4968. name: "I said NOT",
  4969. height: math.unit(91, "feet")
  4970. },
  4971. {
  4972. name: "Please stop",
  4973. height: math.unit(560, "feet")
  4974. },
  4975. {
  4976. name: "What have you done",
  4977. height: math.unit(2200, "feet")
  4978. },
  4979. {
  4980. name: "Deer God",
  4981. height: math.unit(3.6, "miles")
  4982. },
  4983. ]
  4984. ))
  4985. characterMakers.push(() => makeCharacter(
  4986. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4987. {
  4988. standing: {
  4989. height: math.unit(6, "feet"),
  4990. weight: math.unit(300, "lbs"),
  4991. name: "Standing",
  4992. image: {
  4993. source: "./media/characters/psymon/standing.svg",
  4994. extra: 1888 / 1810,
  4995. bottom: 0.05
  4996. }
  4997. },
  4998. slithering: {
  4999. height: math.unit(6, "feet"),
  5000. weight: math.unit(300, "lbs"),
  5001. name: "Slithering",
  5002. image: {
  5003. source: "./media/characters/psymon/slithering.svg",
  5004. extra: 1330 / 1224
  5005. }
  5006. },
  5007. slitheringAlt: {
  5008. height: math.unit(6, "feet"),
  5009. weight: math.unit(300, "lbs"),
  5010. name: "Slithering (Alt)",
  5011. image: {
  5012. source: "./media/characters/psymon/slithering-alt.svg",
  5013. extra: 1330 / 1224
  5014. }
  5015. },
  5016. },
  5017. [
  5018. {
  5019. name: "Normal",
  5020. height: math.unit(11.25, "feet"),
  5021. default: true
  5022. },
  5023. {
  5024. name: "Large",
  5025. height: math.unit(27, "feet")
  5026. },
  5027. {
  5028. name: "Giant",
  5029. height: math.unit(87, "feet")
  5030. },
  5031. {
  5032. name: "Macro",
  5033. height: math.unit(365, "feet")
  5034. },
  5035. {
  5036. name: "Megamacro",
  5037. height: math.unit(3, "miles")
  5038. },
  5039. {
  5040. name: "World Serpent",
  5041. height: math.unit(8000, "miles")
  5042. },
  5043. ]
  5044. ))
  5045. characterMakers.push(() => makeCharacter(
  5046. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5047. {
  5048. front: {
  5049. height: math.unit(6, "feet"),
  5050. weight: math.unit(180, "lbs"),
  5051. name: "Front",
  5052. image: {
  5053. source: "./media/characters/daimos/front.svg",
  5054. extra: 4160 / 3897,
  5055. bottom: 0.021
  5056. }
  5057. }
  5058. },
  5059. [
  5060. {
  5061. name: "Normal",
  5062. height: math.unit(8, "feet"),
  5063. default: true
  5064. },
  5065. {
  5066. name: "Big Dog",
  5067. height: math.unit(22, "feet")
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(127, "feet")
  5072. },
  5073. {
  5074. name: "Megamacro",
  5075. height: math.unit(3600, "feet")
  5076. },
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5081. {
  5082. side: {
  5083. height: math.unit(6, "feet"),
  5084. weight: math.unit(180, "lbs"),
  5085. name: "Side",
  5086. image: {
  5087. source: "./media/characters/blake/side.svg",
  5088. extra: 1212 / 1120,
  5089. bottom: 0.05
  5090. }
  5091. },
  5092. crouched: {
  5093. height: math.unit(6 * 0.57, "feet"),
  5094. weight: math.unit(180, "lbs"),
  5095. name: "Crouched",
  5096. image: {
  5097. source: "./media/characters/blake/crouched.svg",
  5098. extra: 840 / 587,
  5099. bottom: 0.04
  5100. }
  5101. },
  5102. bent: {
  5103. height: math.unit(6 * 0.75, "feet"),
  5104. weight: math.unit(180, "lbs"),
  5105. name: "Bent",
  5106. image: {
  5107. source: "./media/characters/blake/bent.svg",
  5108. extra: 592 / 544,
  5109. bottom: 0.035
  5110. }
  5111. },
  5112. },
  5113. [
  5114. {
  5115. name: "Normal",
  5116. height: math.unit(8 + 1 / 6, "feet"),
  5117. default: true
  5118. },
  5119. {
  5120. name: "Big Backside",
  5121. height: math.unit(37, "feet")
  5122. },
  5123. {
  5124. name: "Subway Shredder",
  5125. height: math.unit(72, "feet")
  5126. },
  5127. {
  5128. name: "City Carver",
  5129. height: math.unit(1675, "feet")
  5130. },
  5131. {
  5132. name: "Tectonic Tweaker",
  5133. height: math.unit(2300, "miles")
  5134. },
  5135. ]
  5136. ))
  5137. characterMakers.push(() => makeCharacter(
  5138. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5139. {
  5140. front: {
  5141. height: math.unit(6, "feet"),
  5142. weight: math.unit(180, "lbs"),
  5143. name: "Front",
  5144. image: {
  5145. source: "./media/characters/guisetto/front.svg",
  5146. extra: 856 / 817,
  5147. bottom: 0.06
  5148. }
  5149. },
  5150. airborne: {
  5151. height: math.unit(6, "feet"),
  5152. weight: math.unit(180, "lbs"),
  5153. name: "Airborne",
  5154. image: {
  5155. source: "./media/characters/guisetto/airborne.svg",
  5156. extra: 584 / 525
  5157. }
  5158. },
  5159. },
  5160. [
  5161. {
  5162. name: "Normal",
  5163. height: math.unit(10 + 11 / 12, "feet"),
  5164. default: true
  5165. },
  5166. {
  5167. name: "Large",
  5168. height: math.unit(35, "feet")
  5169. },
  5170. {
  5171. name: "Macro",
  5172. height: math.unit(475, "feet")
  5173. },
  5174. ]
  5175. ))
  5176. characterMakers.push(() => makeCharacter(
  5177. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5178. {
  5179. front: {
  5180. height: math.unit(6, "feet"),
  5181. weight: math.unit(180, "lbs"),
  5182. name: "Front",
  5183. image: {
  5184. source: "./media/characters/luxor/front.svg",
  5185. extra: 2940 / 2152
  5186. }
  5187. },
  5188. back: {
  5189. height: math.unit(6, "feet"),
  5190. weight: math.unit(180, "lbs"),
  5191. name: "Back",
  5192. image: {
  5193. source: "./media/characters/luxor/back.svg",
  5194. extra: 1083 / 960
  5195. }
  5196. },
  5197. },
  5198. [
  5199. {
  5200. name: "Normal",
  5201. height: math.unit(5 + 5 / 6, "feet"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Lamp",
  5206. height: math.unit(50, "feet")
  5207. },
  5208. {
  5209. name: "Lämp",
  5210. height: math.unit(300, "feet")
  5211. },
  5212. {
  5213. name: "The sun is a lamp",
  5214. height: math.unit(250000, "miles")
  5215. },
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5220. {
  5221. front: {
  5222. height: math.unit(6, "feet"),
  5223. weight: math.unit(50, "lbs"),
  5224. name: "Front",
  5225. image: {
  5226. source: "./media/characters/huoyan/front.svg"
  5227. }
  5228. },
  5229. side: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(180, "lbs"),
  5232. name: "Side",
  5233. image: {
  5234. source: "./media/characters/huoyan/side.svg"
  5235. }
  5236. },
  5237. },
  5238. [
  5239. {
  5240. name: "Chef",
  5241. height: math.unit(9, "feet")
  5242. },
  5243. {
  5244. name: "Normal",
  5245. height: math.unit(65, "feet"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Macro",
  5250. height: math.unit(780, "feet")
  5251. },
  5252. {
  5253. name: "Flaming Mountain",
  5254. height: math.unit(4.8, "miles")
  5255. },
  5256. {
  5257. name: "Celestial",
  5258. height: math.unit(765000, "miles")
  5259. },
  5260. ]
  5261. ))
  5262. characterMakers.push(() => makeCharacter(
  5263. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5264. {
  5265. front: {
  5266. height: math.unit(5 + 3 / 4, "feet"),
  5267. weight: math.unit(120, "lbs"),
  5268. name: "Front",
  5269. image: {
  5270. source: "./media/characters/tails/front.svg"
  5271. }
  5272. }
  5273. },
  5274. [
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(5 + 3 / 4, "feet"),
  5278. default: true
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(4, "feet"),
  5287. weight: math.unit(50, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/rainy/front.svg"
  5291. }
  5292. }
  5293. },
  5294. [
  5295. {
  5296. name: "Macro",
  5297. height: math.unit(800, "feet"),
  5298. default: true
  5299. }
  5300. ]
  5301. ))
  5302. characterMakers.push(() => makeCharacter(
  5303. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5304. {
  5305. front: {
  5306. height: math.unit(6, "feet"),
  5307. weight: math.unit(150, "lbs"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/rainier/front.svg"
  5311. }
  5312. }
  5313. },
  5314. [
  5315. {
  5316. name: "Micro",
  5317. height: math.unit(2, "mm"),
  5318. default: true
  5319. }
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5324. {
  5325. front: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(180, "lbs"),
  5328. name: "Front",
  5329. image: {
  5330. source: "./media/characters/andy/front.svg"
  5331. }
  5332. }
  5333. },
  5334. [
  5335. {
  5336. name: "Normal",
  5337. height: math.unit(8, "feet"),
  5338. default: true
  5339. },
  5340. {
  5341. name: "Macro",
  5342. height: math.unit(1000, "feet")
  5343. },
  5344. {
  5345. name: "Megamacro",
  5346. height: math.unit(5, "miles")
  5347. },
  5348. {
  5349. name: "Gigamacro",
  5350. height: math.unit(5000, "miles")
  5351. },
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5356. {
  5357. front: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(210, "lbs"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/cimmaron/front-sfw.svg",
  5363. extra: 701 / 676,
  5364. bottom: 0.046
  5365. }
  5366. },
  5367. back: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(210, "lbs"),
  5370. name: "Back",
  5371. image: {
  5372. source: "./media/characters/cimmaron/back-sfw.svg",
  5373. extra: 701 / 676,
  5374. bottom: 0.046
  5375. }
  5376. },
  5377. frontNsfw: {
  5378. height: math.unit(6, "feet"),
  5379. weight: math.unit(210, "lbs"),
  5380. name: "Front (NSFW)",
  5381. image: {
  5382. source: "./media/characters/cimmaron/front-nsfw.svg",
  5383. extra: 701 / 676,
  5384. bottom: 0.046
  5385. }
  5386. },
  5387. backNsfw: {
  5388. height: math.unit(6, "feet"),
  5389. weight: math.unit(210, "lbs"),
  5390. name: "Back (NSFW)",
  5391. image: {
  5392. source: "./media/characters/cimmaron/back-nsfw.svg",
  5393. extra: 701 / 676,
  5394. bottom: 0.046
  5395. }
  5396. },
  5397. dick: {
  5398. height: math.unit(1.714, "feet"),
  5399. name: "Dick",
  5400. image: {
  5401. source: "./media/characters/cimmaron/dick.svg"
  5402. }
  5403. },
  5404. },
  5405. [
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(6, "feet"),
  5409. default: true
  5410. },
  5411. {
  5412. name: "Macro Mayor",
  5413. height: math.unit(350, "meters")
  5414. },
  5415. ]
  5416. ))
  5417. characterMakers.push(() => makeCharacter(
  5418. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5419. {
  5420. front: {
  5421. height: math.unit(6, "feet"),
  5422. weight: math.unit(200, "lbs"),
  5423. name: "Front",
  5424. image: {
  5425. source: "./media/characters/akari/front.svg",
  5426. extra: 962 / 901,
  5427. bottom: 0.04
  5428. }
  5429. }
  5430. },
  5431. [
  5432. {
  5433. name: "Micro",
  5434. height: math.unit(5, "inches"),
  5435. default: true
  5436. },
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(7, "feet")
  5440. },
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5445. {
  5446. front: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(140, "lbs"),
  5449. name: "Front",
  5450. image: {
  5451. source: "./media/characters/cynosura/front.svg",
  5452. extra: 896 / 847
  5453. }
  5454. },
  5455. back: {
  5456. height: math.unit(6, "feet"),
  5457. weight: math.unit(140, "lbs"),
  5458. name: "Back",
  5459. image: {
  5460. source: "./media/characters/cynosura/back.svg",
  5461. extra: 1365 / 1250
  5462. }
  5463. },
  5464. },
  5465. [
  5466. {
  5467. name: "Micro",
  5468. height: math.unit(4, "inches")
  5469. },
  5470. {
  5471. name: "Normal",
  5472. height: math.unit(5.75, "feet"),
  5473. default: true
  5474. },
  5475. {
  5476. name: "Tall",
  5477. height: math.unit(10, "feet")
  5478. },
  5479. {
  5480. name: "Big",
  5481. height: math.unit(20, "feet")
  5482. },
  5483. {
  5484. name: "Macro",
  5485. height: math.unit(50, "feet")
  5486. },
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5491. {
  5492. front: {
  5493. height: math.unit(6, "feet"),
  5494. weight: math.unit(170, "lbs"),
  5495. name: "Front",
  5496. image: {
  5497. source: "./media/characters/gin/front.svg",
  5498. extra: 1.053,
  5499. bottom: 0.025
  5500. }
  5501. },
  5502. foot: {
  5503. height: math.unit(6 / 4.25, "feet"),
  5504. name: "Foot",
  5505. image: {
  5506. source: "./media/characters/gin/foot.svg"
  5507. }
  5508. },
  5509. sole: {
  5510. height: math.unit(6 / 4.40, "feet"),
  5511. name: "Sole",
  5512. image: {
  5513. source: "./media/characters/gin/sole.svg"
  5514. }
  5515. },
  5516. },
  5517. [
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(13 + 2 / 12, "feet")
  5521. },
  5522. {
  5523. name: "Macro",
  5524. height: math.unit(1500, "feet")
  5525. },
  5526. {
  5527. name: "Megamacro",
  5528. height: math.unit(200, "miles"),
  5529. default: true
  5530. },
  5531. {
  5532. name: "Gigamacro",
  5533. height: math.unit(500, "megameters")
  5534. },
  5535. {
  5536. name: "Teramacro",
  5537. height: math.unit(15, "lightyears")
  5538. }
  5539. ]
  5540. ))
  5541. characterMakers.push(() => makeCharacter(
  5542. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5543. {
  5544. front: {
  5545. height: math.unit(6 + 1 / 6, "feet"),
  5546. weight: math.unit(178, "lbs"),
  5547. name: "Front",
  5548. image: {
  5549. source: "./media/characters/guy/front.svg"
  5550. }
  5551. }
  5552. },
  5553. [
  5554. {
  5555. name: "Normal",
  5556. height: math.unit(6 + 1 / 6, "feet"),
  5557. default: true
  5558. },
  5559. {
  5560. name: "Large",
  5561. height: math.unit(25 + 7 / 12, "feet")
  5562. },
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(60 + 9 / 12, "feet")
  5566. },
  5567. {
  5568. name: "Macro+",
  5569. height: math.unit(246, "feet")
  5570. },
  5571. {
  5572. name: "Macro++",
  5573. height: math.unit(878, "feet")
  5574. }
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(9, "feet"),
  5582. weight: math.unit(800, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/tiberius/front.svg",
  5586. extra: 2295 / 2071
  5587. }
  5588. },
  5589. back: {
  5590. height: math.unit(9, "feet"),
  5591. weight: math.unit(800, "lbs"),
  5592. name: "Back",
  5593. image: {
  5594. source: "./media/characters/tiberius/back.svg",
  5595. extra: 2373 / 2160
  5596. }
  5597. },
  5598. },
  5599. [
  5600. {
  5601. name: "Normal",
  5602. height: math.unit(9, "feet"),
  5603. default: true
  5604. }
  5605. ]
  5606. ))
  5607. characterMakers.push(() => makeCharacter(
  5608. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5609. {
  5610. front: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(600, "lbs"),
  5613. name: "Front",
  5614. image: {
  5615. source: "./media/characters/surgo/front.svg",
  5616. extra: 3591 / 2227
  5617. }
  5618. },
  5619. back: {
  5620. height: math.unit(6, "feet"),
  5621. weight: math.unit(600, "lbs"),
  5622. name: "Back",
  5623. image: {
  5624. source: "./media/characters/surgo/back.svg",
  5625. extra: 3557 / 2228
  5626. }
  5627. },
  5628. laying: {
  5629. height: math.unit(6 * 0.85, "feet"),
  5630. weight: math.unit(600, "lbs"),
  5631. name: "Laying",
  5632. image: {
  5633. source: "./media/characters/surgo/laying.svg"
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(6, "feet"),
  5641. default: true
  5642. }
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5647. {
  5648. side: {
  5649. height: math.unit(6, "feet"),
  5650. weight: math.unit(150, "lbs"),
  5651. name: "Side",
  5652. image: {
  5653. source: "./media/characters/cibus/side.svg",
  5654. extra: 800 / 400
  5655. }
  5656. },
  5657. },
  5658. [
  5659. {
  5660. name: "Normal",
  5661. height: math.unit(6, "feet"),
  5662. default: true
  5663. }
  5664. ]
  5665. ))
  5666. characterMakers.push(() => makeCharacter(
  5667. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5668. {
  5669. front: {
  5670. height: math.unit(6, "feet"),
  5671. weight: math.unit(240, "lbs"),
  5672. name: "Front",
  5673. image: {
  5674. source: "./media/characters/nibbles/front.svg"
  5675. }
  5676. },
  5677. side: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(240, "lbs"),
  5680. name: "Side",
  5681. image: {
  5682. source: "./media/characters/nibbles/side.svg"
  5683. }
  5684. },
  5685. },
  5686. [
  5687. {
  5688. name: "Normal",
  5689. height: math.unit(9, "feet"),
  5690. default: true
  5691. }
  5692. ]
  5693. ))
  5694. characterMakers.push(() => makeCharacter(
  5695. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5696. {
  5697. side: {
  5698. height: math.unit(5 + 1 / 6, "feet"),
  5699. weight: math.unit(130, "lbs"),
  5700. name: "Side",
  5701. image: {
  5702. source: "./media/characters/rikky/side.svg",
  5703. extra: 851 / 801
  5704. }
  5705. },
  5706. },
  5707. [
  5708. {
  5709. name: "Normal",
  5710. height: math.unit(5 + 1 / 6, "feet")
  5711. },
  5712. {
  5713. name: "Macro",
  5714. height: math.unit(152, "feet"),
  5715. default: true
  5716. },
  5717. {
  5718. name: "Megamacro",
  5719. height: math.unit(7, "miles")
  5720. }
  5721. ]
  5722. ))
  5723. characterMakers.push(() => makeCharacter(
  5724. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5725. {
  5726. side: {
  5727. height: math.unit(370, "cm"),
  5728. weight: math.unit(350, "lbs"),
  5729. name: "Side",
  5730. image: {
  5731. source: "./media/characters/malfressa/side.svg"
  5732. }
  5733. },
  5734. walking: {
  5735. height: math.unit(370, "cm"),
  5736. weight: math.unit(350, "lbs"),
  5737. name: "Walking",
  5738. image: {
  5739. source: "./media/characters/malfressa/walking.svg"
  5740. }
  5741. },
  5742. feral: {
  5743. height: math.unit(2500, "cm"),
  5744. weight: math.unit(100000, "lbs"),
  5745. name: "Feral",
  5746. image: {
  5747. source: "./media/characters/malfressa/feral.svg",
  5748. extra: 2108 / 837,
  5749. bottom: 0.02
  5750. }
  5751. },
  5752. },
  5753. [
  5754. {
  5755. name: "Normal",
  5756. height: math.unit(370, "cm")
  5757. },
  5758. {
  5759. name: "Macro",
  5760. height: math.unit(300, "meters"),
  5761. default: true
  5762. }
  5763. ]
  5764. ))
  5765. characterMakers.push(() => makeCharacter(
  5766. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5767. {
  5768. front: {
  5769. height: math.unit(6, "feet"),
  5770. weight: math.unit(60, "kg"),
  5771. name: "Front",
  5772. image: {
  5773. source: "./media/characters/jaro/front.svg"
  5774. }
  5775. },
  5776. back: {
  5777. height: math.unit(6, "feet"),
  5778. weight: math.unit(60, "kg"),
  5779. name: "Back",
  5780. image: {
  5781. source: "./media/characters/jaro/back.svg"
  5782. }
  5783. },
  5784. },
  5785. [
  5786. {
  5787. name: "Micro",
  5788. height: math.unit(7, "inches")
  5789. },
  5790. {
  5791. name: "Normal",
  5792. height: math.unit(5.5, "feet"),
  5793. default: true
  5794. },
  5795. {
  5796. name: "Minimacro",
  5797. height: math.unit(20, "feet")
  5798. },
  5799. {
  5800. name: "Macro",
  5801. height: math.unit(200, "meters")
  5802. }
  5803. ]
  5804. ))
  5805. characterMakers.push(() => makeCharacter(
  5806. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5807. {
  5808. front: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(195, "lb"),
  5811. name: "Front",
  5812. image: {
  5813. source: "./media/characters/rogue/front.svg"
  5814. }
  5815. },
  5816. },
  5817. [
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(90, "feet"),
  5821. default: true
  5822. },
  5823. ]
  5824. ))
  5825. characterMakers.push(() => makeCharacter(
  5826. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5827. {
  5828. front: {
  5829. height: math.unit(5 + 8 / 12, "feet"),
  5830. weight: math.unit(140, "lb"),
  5831. name: "Front",
  5832. image: {
  5833. source: "./media/characters/piper/front.svg",
  5834. extra: 3948/3655,
  5835. bottom: 0/3948
  5836. }
  5837. },
  5838. },
  5839. [
  5840. {
  5841. name: "Micro",
  5842. height: math.unit(2, "inches")
  5843. },
  5844. {
  5845. name: "Normal",
  5846. height: math.unit(5 + 8 / 12, "feet")
  5847. },
  5848. {
  5849. name: "Macro",
  5850. height: math.unit(250, "feet"),
  5851. default: true
  5852. },
  5853. {
  5854. name: "Megamacro",
  5855. height: math.unit(7, "miles")
  5856. },
  5857. ]
  5858. ))
  5859. characterMakers.push(() => makeCharacter(
  5860. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5861. {
  5862. front: {
  5863. height: math.unit(6, "feet"),
  5864. weight: math.unit(220, "lb"),
  5865. name: "Front",
  5866. image: {
  5867. source: "./media/characters/gemini/front.svg"
  5868. }
  5869. },
  5870. back: {
  5871. height: math.unit(6, "feet"),
  5872. weight: math.unit(220, "lb"),
  5873. name: "Back",
  5874. image: {
  5875. source: "./media/characters/gemini/back.svg"
  5876. }
  5877. },
  5878. kneeling: {
  5879. height: math.unit(6 / 1.5, "feet"),
  5880. weight: math.unit(220, "lb"),
  5881. name: "Kneeling",
  5882. image: {
  5883. source: "./media/characters/gemini/kneeling.svg",
  5884. bottom: 0.02
  5885. }
  5886. },
  5887. },
  5888. [
  5889. {
  5890. name: "Macro",
  5891. height: math.unit(300, "meters"),
  5892. default: true
  5893. },
  5894. {
  5895. name: "Megamacro",
  5896. height: math.unit(6900, "meters")
  5897. },
  5898. ]
  5899. ))
  5900. characterMakers.push(() => makeCharacter(
  5901. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5902. {
  5903. anthro: {
  5904. height: math.unit(2.35, "meters"),
  5905. weight: math.unit(73, "kg"),
  5906. name: "Anthro",
  5907. image: {
  5908. source: "./media/characters/alicia/anthro.svg",
  5909. extra: 2571 / 2385,
  5910. bottom: 75 / 2648
  5911. }
  5912. },
  5913. paw: {
  5914. height: math.unit(1.32, "feet"),
  5915. name: "Paw",
  5916. image: {
  5917. source: "./media/characters/alicia/paw.svg"
  5918. }
  5919. },
  5920. feral: {
  5921. height: math.unit(1.69, "meters"),
  5922. weight: math.unit(73, "kg"),
  5923. name: "Feral",
  5924. image: {
  5925. source: "./media/characters/alicia/feral.svg",
  5926. extra: 2123 / 1715,
  5927. bottom: 222 / 2349
  5928. }
  5929. },
  5930. },
  5931. [
  5932. {
  5933. name: "Normal",
  5934. height: math.unit(2.35, "meters")
  5935. },
  5936. {
  5937. name: "Macro",
  5938. height: math.unit(60, "meters"),
  5939. default: true
  5940. },
  5941. {
  5942. name: "Megamacro",
  5943. height: math.unit(10000, "kilometers")
  5944. },
  5945. ]
  5946. ))
  5947. characterMakers.push(() => makeCharacter(
  5948. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5949. {
  5950. front: {
  5951. height: math.unit(7, "feet"),
  5952. weight: math.unit(250, "lbs"),
  5953. name: "Front",
  5954. image: {
  5955. source: "./media/characters/archy/front.svg"
  5956. }
  5957. }
  5958. },
  5959. [
  5960. {
  5961. name: "Micro",
  5962. height: math.unit(1, "inch")
  5963. },
  5964. {
  5965. name: "Shorty",
  5966. height: math.unit(5, "feet")
  5967. },
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(7, "feet")
  5971. },
  5972. {
  5973. name: "Macro",
  5974. height: math.unit(600, "meters"),
  5975. default: true
  5976. },
  5977. {
  5978. name: "Megamacro",
  5979. height: math.unit(1, "mile")
  5980. },
  5981. ]
  5982. ))
  5983. characterMakers.push(() => makeCharacter(
  5984. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5985. {
  5986. front: {
  5987. height: math.unit(1.65, "meters"),
  5988. weight: math.unit(74, "kg"),
  5989. name: "Front",
  5990. image: {
  5991. source: "./media/characters/berri/front.svg",
  5992. extra: 857 / 837,
  5993. bottom: 18 / 877
  5994. }
  5995. },
  5996. bum: {
  5997. height: math.unit(1.46, "feet"),
  5998. name: "Bum",
  5999. image: {
  6000. source: "./media/characters/berri/bum.svg"
  6001. }
  6002. },
  6003. mouth: {
  6004. height: math.unit(0.44, "feet"),
  6005. name: "Mouth",
  6006. image: {
  6007. source: "./media/characters/berri/mouth.svg"
  6008. }
  6009. },
  6010. paw: {
  6011. height: math.unit(0.826, "feet"),
  6012. name: "Paw",
  6013. image: {
  6014. source: "./media/characters/berri/paw.svg"
  6015. }
  6016. },
  6017. },
  6018. [
  6019. {
  6020. name: "Normal",
  6021. height: math.unit(1.65, "meters")
  6022. },
  6023. {
  6024. name: "Macro",
  6025. height: math.unit(60, "m"),
  6026. default: true
  6027. },
  6028. {
  6029. name: "Megamacro",
  6030. height: math.unit(9.213, "km")
  6031. },
  6032. {
  6033. name: "Planet Eater",
  6034. height: math.unit(489, "megameters")
  6035. },
  6036. {
  6037. name: "Teramacro",
  6038. height: math.unit(2471635000000, "meters")
  6039. },
  6040. {
  6041. name: "Examacro",
  6042. height: math.unit(8.0624e+26, "meters")
  6043. }
  6044. ]
  6045. ))
  6046. characterMakers.push(() => makeCharacter(
  6047. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6048. {
  6049. front: {
  6050. height: math.unit(1.72, "meters"),
  6051. weight: math.unit(68, "kg"),
  6052. name: "Front",
  6053. image: {
  6054. source: "./media/characters/lexi/front.svg"
  6055. }
  6056. }
  6057. },
  6058. [
  6059. {
  6060. name: "Very Smol",
  6061. height: math.unit(10, "mm")
  6062. },
  6063. {
  6064. name: "Micro",
  6065. height: math.unit(6.8, "cm"),
  6066. default: true
  6067. },
  6068. {
  6069. name: "Normal",
  6070. height: math.unit(1.72, "m")
  6071. }
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6076. {
  6077. front: {
  6078. height: math.unit(1.69, "meters"),
  6079. weight: math.unit(68, "kg"),
  6080. name: "Front",
  6081. image: {
  6082. source: "./media/characters/martin/front.svg",
  6083. extra: 596 / 581
  6084. }
  6085. }
  6086. },
  6087. [
  6088. {
  6089. name: "Micro",
  6090. height: math.unit(6.85, "cm"),
  6091. default: true
  6092. },
  6093. {
  6094. name: "Normal",
  6095. height: math.unit(1.69, "m")
  6096. }
  6097. ]
  6098. ))
  6099. characterMakers.push(() => makeCharacter(
  6100. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6101. {
  6102. front: {
  6103. height: math.unit(1.69, "meters"),
  6104. weight: math.unit(68, "kg"),
  6105. name: "Front",
  6106. image: {
  6107. source: "./media/characters/juno/front.svg"
  6108. }
  6109. }
  6110. },
  6111. [
  6112. {
  6113. name: "Micro",
  6114. height: math.unit(7, "cm")
  6115. },
  6116. {
  6117. name: "Normal",
  6118. height: math.unit(1.89, "m")
  6119. },
  6120. {
  6121. name: "Macro",
  6122. height: math.unit(353, "meters"),
  6123. default: true
  6124. }
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6129. {
  6130. front: {
  6131. height: math.unit(1.93, "meters"),
  6132. weight: math.unit(83, "kg"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/samantha/front.svg"
  6136. }
  6137. },
  6138. frontClothed: {
  6139. height: math.unit(1.93, "meters"),
  6140. weight: math.unit(83, "kg"),
  6141. name: "Front (Clothed)",
  6142. image: {
  6143. source: "./media/characters/samantha/front-clothed.svg"
  6144. }
  6145. },
  6146. back: {
  6147. height: math.unit(1.93, "meters"),
  6148. weight: math.unit(83, "kg"),
  6149. name: "Back",
  6150. image: {
  6151. source: "./media/characters/samantha/back.svg"
  6152. }
  6153. },
  6154. },
  6155. [
  6156. {
  6157. name: "Normal",
  6158. height: math.unit(1.93, "m")
  6159. },
  6160. {
  6161. name: "Macro",
  6162. height: math.unit(74, "meters"),
  6163. default: true
  6164. },
  6165. {
  6166. name: "Macro+",
  6167. height: math.unit(223, "meters"),
  6168. },
  6169. {
  6170. name: "Megamacro",
  6171. height: math.unit(8381, "meters"),
  6172. },
  6173. {
  6174. name: "Megamacro+",
  6175. height: math.unit(12000, "kilometers")
  6176. },
  6177. ]
  6178. ))
  6179. characterMakers.push(() => makeCharacter(
  6180. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6181. {
  6182. front: {
  6183. height: math.unit(1.92, "meters"),
  6184. weight: math.unit(80, "kg"),
  6185. name: "Front",
  6186. image: {
  6187. source: "./media/characters/dr-clay/front.svg"
  6188. }
  6189. },
  6190. frontClothed: {
  6191. height: math.unit(1.92, "meters"),
  6192. weight: math.unit(80, "kg"),
  6193. name: "Front (Clothed)",
  6194. image: {
  6195. source: "./media/characters/dr-clay/front-clothed.svg"
  6196. }
  6197. }
  6198. },
  6199. [
  6200. {
  6201. name: "Normal",
  6202. height: math.unit(1.92, "m")
  6203. },
  6204. {
  6205. name: "Macro",
  6206. height: math.unit(214, "meters"),
  6207. default: true
  6208. },
  6209. {
  6210. name: "Macro+",
  6211. height: math.unit(12.237, "meters"),
  6212. },
  6213. {
  6214. name: "Megamacro",
  6215. height: math.unit(557, "megameters"),
  6216. },
  6217. {
  6218. name: "Unimaginable",
  6219. height: math.unit(120e9, "lightyears")
  6220. },
  6221. ]
  6222. ))
  6223. characterMakers.push(() => makeCharacter(
  6224. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6225. {
  6226. front: {
  6227. height: math.unit(2, "meters"),
  6228. weight: math.unit(80, "kg"),
  6229. name: "Front",
  6230. image: {
  6231. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6232. }
  6233. }
  6234. },
  6235. [
  6236. {
  6237. name: "Teramacro",
  6238. height: math.unit(500000, "lightyears"),
  6239. default: true
  6240. },
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6245. {
  6246. front: {
  6247. height: math.unit(2, "meters"),
  6248. weight: math.unit(150, "kg"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/vemus/front.svg",
  6252. extra: 2384 / 2084,
  6253. bottom: 0.0123
  6254. }
  6255. }
  6256. },
  6257. [
  6258. {
  6259. name: "Normal",
  6260. height: math.unit(3.75, "meters"),
  6261. default: true
  6262. },
  6263. {
  6264. name: "Big",
  6265. height: math.unit(8, "meters")
  6266. },
  6267. {
  6268. name: "Macro",
  6269. height: math.unit(100, "meters")
  6270. },
  6271. {
  6272. name: "Macro+",
  6273. height: math.unit(1500, "meters")
  6274. },
  6275. {
  6276. name: "Stellar",
  6277. height: math.unit(14e8, "meters")
  6278. },
  6279. ]
  6280. ))
  6281. characterMakers.push(() => makeCharacter(
  6282. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6283. {
  6284. front: {
  6285. height: math.unit(2, "meters"),
  6286. weight: math.unit(70, "kg"),
  6287. name: "Front",
  6288. image: {
  6289. source: "./media/characters/beherit/front.svg",
  6290. extra: 1408 / 1242
  6291. }
  6292. }
  6293. },
  6294. [
  6295. {
  6296. name: "Normal",
  6297. height: math.unit(6, "feet")
  6298. },
  6299. {
  6300. name: "Lorg",
  6301. height: math.unit(25, "feet"),
  6302. default: true
  6303. },
  6304. {
  6305. name: "Lorger",
  6306. height: math.unit(75, "feet")
  6307. },
  6308. {
  6309. name: "Macro",
  6310. height: math.unit(200, "meters")
  6311. },
  6312. ]
  6313. ))
  6314. characterMakers.push(() => makeCharacter(
  6315. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6316. {
  6317. front: {
  6318. height: math.unit(2, "meters"),
  6319. weight: math.unit(150, "kg"),
  6320. name: "Front",
  6321. image: {
  6322. source: "./media/characters/everett/front.svg",
  6323. extra: 2038 / 1737,
  6324. bottom: 0.03
  6325. }
  6326. },
  6327. paw: {
  6328. height: math.unit(2 / 3.6, "meters"),
  6329. name: "Paw",
  6330. image: {
  6331. source: "./media/characters/everett/paw.svg"
  6332. }
  6333. },
  6334. },
  6335. [
  6336. {
  6337. name: "Normal",
  6338. height: math.unit(15, "feet"),
  6339. default: true
  6340. },
  6341. {
  6342. name: "Lorg",
  6343. height: math.unit(70, "feet"),
  6344. default: true
  6345. },
  6346. {
  6347. name: "Lorger",
  6348. height: math.unit(250, "feet")
  6349. },
  6350. {
  6351. name: "Macro",
  6352. height: math.unit(500, "meters")
  6353. },
  6354. ]
  6355. ))
  6356. characterMakers.push(() => makeCharacter(
  6357. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6358. {
  6359. front: {
  6360. height: math.unit(2, "meters"),
  6361. weight: math.unit(86, "kg"),
  6362. name: "Front",
  6363. image: {
  6364. source: "./media/characters/rose/front.svg",
  6365. extra: 350/335,
  6366. bottom: 10/360
  6367. }
  6368. },
  6369. frontAlt: {
  6370. height: math.unit(1.6, "meters"),
  6371. weight: math.unit(86, "kg"),
  6372. name: "Front (Alt)",
  6373. image: {
  6374. source: "./media/characters/rose/front-alt.svg",
  6375. extra: 299/283,
  6376. bottom: 3/302
  6377. }
  6378. },
  6379. plush: {
  6380. height: math.unit(2, "meters"),
  6381. weight: math.unit(86/3, "kg"),
  6382. name: "Plush",
  6383. image: {
  6384. source: "./media/characters/rose/plush.svg",
  6385. extra: 361/337,
  6386. bottom: 11/372
  6387. }
  6388. },
  6389. },
  6390. [
  6391. {
  6392. name: "Mini-Micro",
  6393. height: math.unit(1, "cm")
  6394. },
  6395. {
  6396. name: "Micro",
  6397. height: math.unit(3.5, "inches"),
  6398. default: true
  6399. },
  6400. {
  6401. name: "Normal",
  6402. height: math.unit(6 + 1 / 6, "feet")
  6403. },
  6404. {
  6405. name: "Mini-Macro",
  6406. height: math.unit(9 + 10 / 12, "feet")
  6407. },
  6408. ]
  6409. ))
  6410. characterMakers.push(() => makeCharacter(
  6411. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6412. {
  6413. front: {
  6414. height: math.unit(2, "meters"),
  6415. weight: math.unit(350, "lbs"),
  6416. name: "Front",
  6417. image: {
  6418. source: "./media/characters/regal/front.svg"
  6419. }
  6420. },
  6421. back: {
  6422. height: math.unit(2, "meters"),
  6423. weight: math.unit(350, "lbs"),
  6424. name: "Back",
  6425. image: {
  6426. source: "./media/characters/regal/back.svg"
  6427. }
  6428. },
  6429. },
  6430. [
  6431. {
  6432. name: "Macro",
  6433. height: math.unit(350, "feet"),
  6434. default: true
  6435. }
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6440. {
  6441. front: {
  6442. height: math.unit(4 + 11 / 12, "feet"),
  6443. weight: math.unit(100, "lbs"),
  6444. name: "Front",
  6445. image: {
  6446. source: "./media/characters/opal/front.svg"
  6447. }
  6448. },
  6449. frontAlt: {
  6450. height: math.unit(4 + 11 / 12, "feet"),
  6451. weight: math.unit(100, "lbs"),
  6452. name: "Front (Alt)",
  6453. image: {
  6454. source: "./media/characters/opal/front-alt.svg"
  6455. }
  6456. },
  6457. },
  6458. [
  6459. {
  6460. name: "Small",
  6461. height: math.unit(4 + 11 / 12, "feet")
  6462. },
  6463. {
  6464. name: "Normal",
  6465. height: math.unit(20, "feet"),
  6466. default: true
  6467. },
  6468. {
  6469. name: "Macro",
  6470. height: math.unit(120, "feet")
  6471. },
  6472. {
  6473. name: "Megamacro",
  6474. height: math.unit(80, "miles")
  6475. },
  6476. {
  6477. name: "True Size",
  6478. height: math.unit(100000, "lightyears")
  6479. },
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(6, "feet"),
  6487. weight: math.unit(200, "lbs"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/vector-wuff/front.svg"
  6491. }
  6492. }
  6493. },
  6494. [
  6495. {
  6496. name: "Normal",
  6497. height: math.unit(2.8, "meters")
  6498. },
  6499. {
  6500. name: "Macro",
  6501. height: math.unit(450, "meters"),
  6502. default: true
  6503. },
  6504. {
  6505. name: "Megamacro",
  6506. height: math.unit(15, "kilometers")
  6507. }
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6512. {
  6513. front: {
  6514. height: math.unit(6, "feet"),
  6515. weight: math.unit(256, "lbs"),
  6516. name: "Front",
  6517. image: {
  6518. source: "./media/characters/dannik/front.svg"
  6519. }
  6520. }
  6521. },
  6522. [
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(69.57, "meters"),
  6526. default: true
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6532. {
  6533. front: {
  6534. height: math.unit(6, "feet"),
  6535. weight: math.unit(120, "lbs"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/azura-saharah/front.svg"
  6539. }
  6540. },
  6541. back: {
  6542. height: math.unit(6, "feet"),
  6543. weight: math.unit(120, "lbs"),
  6544. name: "Back",
  6545. image: {
  6546. source: "./media/characters/azura-saharah/back.svg"
  6547. }
  6548. },
  6549. },
  6550. [
  6551. {
  6552. name: "Macro",
  6553. height: math.unit(100, "feet"),
  6554. default: true
  6555. },
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6560. {
  6561. side: {
  6562. height: math.unit(5 + 4 / 12, "feet"),
  6563. weight: math.unit(163, "lbs"),
  6564. name: "Side",
  6565. image: {
  6566. source: "./media/characters/kennedy/side.svg"
  6567. }
  6568. }
  6569. },
  6570. [
  6571. {
  6572. name: "Standard Doggo",
  6573. height: math.unit(5 + 4 / 12, "feet")
  6574. },
  6575. {
  6576. name: "Big Doggo",
  6577. height: math.unit(25 + 3 / 12, "feet"),
  6578. default: true
  6579. },
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(90, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/odi-lunar/front.svg"
  6591. }
  6592. }
  6593. },
  6594. [
  6595. {
  6596. name: "Micro",
  6597. height: math.unit(3, "inches"),
  6598. default: true
  6599. },
  6600. {
  6601. name: "Normal",
  6602. height: math.unit(5.5, "feet")
  6603. }
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6608. {
  6609. back: {
  6610. height: math.unit(6, "feet"),
  6611. weight: math.unit(220, "lbs"),
  6612. name: "Back",
  6613. image: {
  6614. source: "./media/characters/mandake/back.svg"
  6615. }
  6616. }
  6617. },
  6618. [
  6619. {
  6620. name: "Normal",
  6621. height: math.unit(7, "feet"),
  6622. default: true
  6623. },
  6624. {
  6625. name: "Macro",
  6626. height: math.unit(78, "feet")
  6627. },
  6628. {
  6629. name: "Macro+",
  6630. height: math.unit(300, "meters")
  6631. },
  6632. {
  6633. name: "Macro++",
  6634. height: math.unit(2400, "feet")
  6635. },
  6636. {
  6637. name: "Megamacro",
  6638. height: math.unit(5167, "meters")
  6639. },
  6640. {
  6641. name: "Gigamacro",
  6642. height: math.unit(41769, "miles")
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(120, "lbs"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/yozey/front.svg"
  6655. }
  6656. },
  6657. frontAlt: {
  6658. height: math.unit(6, "feet"),
  6659. weight: math.unit(120, "lbs"),
  6660. name: "Front (Alt)",
  6661. image: {
  6662. source: "./media/characters/yozey/front-alt.svg"
  6663. }
  6664. },
  6665. side: {
  6666. height: math.unit(6, "feet"),
  6667. weight: math.unit(120, "lbs"),
  6668. name: "Side",
  6669. image: {
  6670. source: "./media/characters/yozey/side.svg"
  6671. }
  6672. },
  6673. },
  6674. [
  6675. {
  6676. name: "Micro",
  6677. height: math.unit(3, "inches"),
  6678. default: true
  6679. },
  6680. {
  6681. name: "Normal",
  6682. height: math.unit(6, "feet")
  6683. }
  6684. ]
  6685. ))
  6686. characterMakers.push(() => makeCharacter(
  6687. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6688. {
  6689. front: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(103, "lbs"),
  6692. name: "Front",
  6693. image: {
  6694. source: "./media/characters/valeska-voss/front.svg"
  6695. }
  6696. }
  6697. },
  6698. [
  6699. {
  6700. name: "Mini-Sized Sub",
  6701. height: math.unit(3.1, "inches")
  6702. },
  6703. {
  6704. name: "Mid-Sized Sub",
  6705. height: math.unit(6.2, "inches")
  6706. },
  6707. {
  6708. name: "Full-Sized Sub",
  6709. height: math.unit(9.3, "inches")
  6710. },
  6711. {
  6712. name: "Normal",
  6713. height: math.unit(5 + 2 / 12, "foot"),
  6714. default: true
  6715. },
  6716. ]
  6717. ))
  6718. characterMakers.push(() => makeCharacter(
  6719. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6720. {
  6721. front: {
  6722. height: math.unit(6, "feet"),
  6723. weight: math.unit(160, "lbs"),
  6724. name: "Front",
  6725. image: {
  6726. source: "./media/characters/gene-zeta/front.svg",
  6727. extra: 3006 / 2826,
  6728. bottom: 182 / 3188
  6729. }
  6730. }
  6731. },
  6732. [
  6733. {
  6734. name: "Micro",
  6735. height: math.unit(6, "inches")
  6736. },
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(5 + 11 / 12, "foot"),
  6740. default: true
  6741. },
  6742. {
  6743. name: "Macro",
  6744. height: math.unit(140, "feet")
  6745. },
  6746. {
  6747. name: "Supercharged",
  6748. height: math.unit(2500, "feet")
  6749. },
  6750. ]
  6751. ))
  6752. characterMakers.push(() => makeCharacter(
  6753. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6754. {
  6755. front: {
  6756. height: math.unit(6, "feet"),
  6757. weight: math.unit(350, "lbs"),
  6758. name: "Front",
  6759. image: {
  6760. source: "./media/characters/razinox/front.svg",
  6761. extra: 1686 / 1548,
  6762. bottom: 28.2 / 1868
  6763. }
  6764. },
  6765. back: {
  6766. height: math.unit(6, "feet"),
  6767. weight: math.unit(350, "lbs"),
  6768. name: "Back",
  6769. image: {
  6770. source: "./media/characters/razinox/back.svg",
  6771. extra: 1660 / 1590,
  6772. bottom: 15 / 1665
  6773. }
  6774. },
  6775. },
  6776. [
  6777. {
  6778. name: "Normal",
  6779. height: math.unit(10 + 8 / 12, "foot")
  6780. },
  6781. {
  6782. name: "Minimacro",
  6783. height: math.unit(15, "foot")
  6784. },
  6785. {
  6786. name: "Macro",
  6787. height: math.unit(60, "foot"),
  6788. default: true
  6789. },
  6790. {
  6791. name: "Megamacro",
  6792. height: math.unit(5, "miles")
  6793. },
  6794. {
  6795. name: "Gigamacro",
  6796. height: math.unit(6000, "miles")
  6797. },
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(6, "feet"),
  6805. weight: math.unit(150, "lbs"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/cobalt/front.svg"
  6809. }
  6810. }
  6811. },
  6812. [
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(8 + 1 / 12, "foot")
  6816. },
  6817. {
  6818. name: "Macro",
  6819. height: math.unit(111, "foot"),
  6820. default: true
  6821. },
  6822. {
  6823. name: "Supracosmic",
  6824. height: math.unit(1e42, "feet")
  6825. },
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(6, "feet"),
  6833. weight: math.unit(140, "lbs"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/amanda/front.svg"
  6837. }
  6838. }
  6839. },
  6840. [
  6841. {
  6842. name: "Micro",
  6843. height: math.unit(5, "inches"),
  6844. default: true
  6845. },
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(2.75, "meters"),
  6853. weight: math.unit(1200, "lb"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/teal/front.svg",
  6857. extra: 2463 / 2320,
  6858. bottom: 166 / 2629
  6859. }
  6860. },
  6861. back: {
  6862. height: math.unit(2.75, "meters"),
  6863. weight: math.unit(1200, "lb"),
  6864. name: "Back",
  6865. image: {
  6866. source: "./media/characters/teal/back.svg",
  6867. extra: 2580 / 2489,
  6868. bottom: 151 / 2731
  6869. }
  6870. },
  6871. sitting: {
  6872. height: math.unit(1.9, "meters"),
  6873. weight: math.unit(1200, "lb"),
  6874. name: "Sitting",
  6875. image: {
  6876. source: "./media/characters/teal/sitting.svg",
  6877. extra: 623 / 590,
  6878. bottom: 121 / 744
  6879. }
  6880. },
  6881. standing: {
  6882. height: math.unit(2.75, "meters"),
  6883. weight: math.unit(1200, "lb"),
  6884. name: "Standing",
  6885. image: {
  6886. source: "./media/characters/teal/standing.svg",
  6887. extra: 923 / 893,
  6888. bottom: 60 / 983
  6889. }
  6890. },
  6891. stretching: {
  6892. height: math.unit(3.65, "meters"),
  6893. weight: math.unit(1200, "lb"),
  6894. name: "Stretching",
  6895. image: {
  6896. source: "./media/characters/teal/stretching.svg",
  6897. extra: 1276 / 1244,
  6898. bottom: 0 / 1276
  6899. }
  6900. },
  6901. legged: {
  6902. height: math.unit(1.3, "meters"),
  6903. weight: math.unit(100, "lb"),
  6904. name: "Legged",
  6905. image: {
  6906. source: "./media/characters/teal/legged.svg",
  6907. extra: 462 / 437,
  6908. bottom: 24 / 486
  6909. }
  6910. },
  6911. naga: {
  6912. height: math.unit(5.4, "meters"),
  6913. weight: math.unit(4000, "lb"),
  6914. name: "Naga",
  6915. image: {
  6916. source: "./media/characters/teal/naga.svg",
  6917. extra: 1902 / 1858,
  6918. bottom: 0 / 1902
  6919. }
  6920. },
  6921. hand: {
  6922. height: math.unit(0.52, "meters"),
  6923. name: "Hand",
  6924. image: {
  6925. source: "./media/characters/teal/hand.svg"
  6926. }
  6927. },
  6928. maw: {
  6929. height: math.unit(0.43, "meters"),
  6930. name: "Maw",
  6931. image: {
  6932. source: "./media/characters/teal/maw.svg"
  6933. }
  6934. },
  6935. slit: {
  6936. height: math.unit(0.25, "meters"),
  6937. name: "Slit",
  6938. image: {
  6939. source: "./media/characters/teal/slit.svg"
  6940. }
  6941. },
  6942. },
  6943. [
  6944. {
  6945. name: "Normal",
  6946. height: math.unit(2.75, "meters"),
  6947. default: true
  6948. },
  6949. {
  6950. name: "Macro",
  6951. height: math.unit(300, "feet")
  6952. },
  6953. {
  6954. name: "Macro+",
  6955. height: math.unit(2000, "feet")
  6956. },
  6957. ]
  6958. ))
  6959. characterMakers.push(() => makeCharacter(
  6960. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6961. {
  6962. frontCat: {
  6963. height: math.unit(6, "feet"),
  6964. weight: math.unit(180, "lbs"),
  6965. name: "Front (Cat)",
  6966. image: {
  6967. source: "./media/characters/ravin-amulet/front-cat.svg"
  6968. }
  6969. },
  6970. frontCatAlt: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(180, "lbs"),
  6973. name: "Front (Alt, Cat)",
  6974. image: {
  6975. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6976. }
  6977. },
  6978. frontWerewolf: {
  6979. height: math.unit(6 * 1.2, "feet"),
  6980. weight: math.unit(225, "lbs"),
  6981. name: "Front (Werewolf)",
  6982. image: {
  6983. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6984. }
  6985. },
  6986. backWerewolf: {
  6987. height: math.unit(6 * 1.2, "feet"),
  6988. weight: math.unit(225, "lbs"),
  6989. name: "Back (Werewolf)",
  6990. image: {
  6991. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6992. }
  6993. },
  6994. },
  6995. [
  6996. {
  6997. name: "Nano",
  6998. height: math.unit(1, "micrometer")
  6999. },
  7000. {
  7001. name: "Micro",
  7002. height: math.unit(1, "inch")
  7003. },
  7004. {
  7005. name: "Normal",
  7006. height: math.unit(6, "feet"),
  7007. default: true
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(60, "feet")
  7012. }
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7017. {
  7018. front: {
  7019. height: math.unit(6, "feet"),
  7020. weight: math.unit(165, "lbs"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/fluoresce/front.svg"
  7024. }
  7025. }
  7026. },
  7027. [
  7028. {
  7029. name: "Micro",
  7030. height: math.unit(6, "cm")
  7031. },
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(5 + 7 / 12, "feet"),
  7035. default: true
  7036. },
  7037. {
  7038. name: "Macro",
  7039. height: math.unit(56, "feet")
  7040. },
  7041. {
  7042. name: "Megamacro",
  7043. height: math.unit(1.9, "miles")
  7044. },
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(9 + 6 / 12, "feet"),
  7052. weight: math.unit(523, "lbs"),
  7053. name: "Side",
  7054. image: {
  7055. source: "./media/characters/aurora/side.svg"
  7056. }
  7057. }
  7058. },
  7059. [
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(9 + 6 / 12, "feet")
  7063. },
  7064. {
  7065. name: "Macro",
  7066. height: math.unit(96, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Macro+",
  7071. height: math.unit(243, "feet")
  7072. },
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7077. {
  7078. front: {
  7079. height: math.unit(194, "cm"),
  7080. weight: math.unit(90, "kg"),
  7081. name: "Front",
  7082. image: {
  7083. source: "./media/characters/ranek/front.svg"
  7084. }
  7085. },
  7086. side: {
  7087. height: math.unit(194, "cm"),
  7088. weight: math.unit(90, "kg"),
  7089. name: "Side",
  7090. image: {
  7091. source: "./media/characters/ranek/side.svg"
  7092. }
  7093. },
  7094. back: {
  7095. height: math.unit(194, "cm"),
  7096. weight: math.unit(90, "kg"),
  7097. name: "Back",
  7098. image: {
  7099. source: "./media/characters/ranek/back.svg"
  7100. }
  7101. },
  7102. feral: {
  7103. height: math.unit(30, "cm"),
  7104. weight: math.unit(1.6, "lbs"),
  7105. name: "Feral",
  7106. image: {
  7107. source: "./media/characters/ranek/feral.svg"
  7108. }
  7109. },
  7110. },
  7111. [
  7112. {
  7113. name: "Normal",
  7114. height: math.unit(194, "cm"),
  7115. default: true
  7116. },
  7117. {
  7118. name: "Macro",
  7119. height: math.unit(100, "meters")
  7120. },
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7125. {
  7126. front: {
  7127. height: math.unit(5 + 6 / 12, "feet"),
  7128. weight: math.unit(153, "lbs"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/andrew-cooper/front.svg"
  7132. }
  7133. },
  7134. },
  7135. [
  7136. {
  7137. name: "Nano",
  7138. height: math.unit(1, "mm")
  7139. },
  7140. {
  7141. name: "Micro",
  7142. height: math.unit(2, "inches")
  7143. },
  7144. {
  7145. name: "Normal",
  7146. height: math.unit(5 + 6 / 12, "feet"),
  7147. default: true
  7148. }
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7153. {
  7154. front: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(180, "lbs"),
  7157. name: "Front",
  7158. image: {
  7159. source: "./media/characters/akane-sato/front.svg",
  7160. extra: 1219 / 1140
  7161. }
  7162. },
  7163. back: {
  7164. height: math.unit(6, "feet"),
  7165. weight: math.unit(180, "lbs"),
  7166. name: "Back",
  7167. image: {
  7168. source: "./media/characters/akane-sato/back.svg",
  7169. extra: 1219 / 1170
  7170. }
  7171. },
  7172. },
  7173. [
  7174. {
  7175. name: "Normal",
  7176. height: math.unit(2.5, "meters")
  7177. },
  7178. {
  7179. name: "Macro",
  7180. height: math.unit(250, "meters"),
  7181. default: true
  7182. },
  7183. {
  7184. name: "Megamacro",
  7185. height: math.unit(25, "km")
  7186. },
  7187. ]
  7188. ))
  7189. characterMakers.push(() => makeCharacter(
  7190. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7191. {
  7192. front: {
  7193. height: math.unit(6, "feet"),
  7194. weight: math.unit(65, "kg"),
  7195. name: "Front",
  7196. image: {
  7197. source: "./media/characters/rook/front.svg",
  7198. extra: 960 / 950
  7199. }
  7200. }
  7201. },
  7202. [
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(8.8, "feet")
  7206. },
  7207. {
  7208. name: "Macro",
  7209. height: math.unit(88, "feet"),
  7210. default: true
  7211. },
  7212. {
  7213. name: "Megamacro",
  7214. height: math.unit(8, "miles")
  7215. },
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7220. {
  7221. front: {
  7222. height: math.unit(12 + 2 / 12, "feet"),
  7223. weight: math.unit(808, "lbs"),
  7224. name: "Front",
  7225. image: {
  7226. source: "./media/characters/prodigy/front.svg"
  7227. }
  7228. }
  7229. },
  7230. [
  7231. {
  7232. name: "Normal",
  7233. height: math.unit(12 + 2 / 12, "feet"),
  7234. default: true
  7235. },
  7236. {
  7237. name: "Macro",
  7238. height: math.unit(143, "feet")
  7239. },
  7240. {
  7241. name: "Macro+",
  7242. height: math.unit(400, "feet")
  7243. },
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7248. {
  7249. front: {
  7250. height: math.unit(6, "feet"),
  7251. weight: math.unit(225, "lbs"),
  7252. name: "Front",
  7253. image: {
  7254. source: "./media/characters/daniel/front.svg"
  7255. }
  7256. },
  7257. leaning: {
  7258. height: math.unit(6, "feet"),
  7259. weight: math.unit(225, "lbs"),
  7260. name: "Leaning",
  7261. image: {
  7262. source: "./media/characters/daniel/leaning.svg"
  7263. }
  7264. },
  7265. },
  7266. [
  7267. {
  7268. name: "Macro",
  7269. height: math.unit(1000, "feet"),
  7270. default: true
  7271. },
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7276. {
  7277. front: {
  7278. height: math.unit(6, "feet"),
  7279. weight: math.unit(88, "lbs"),
  7280. name: "Front",
  7281. image: {
  7282. source: "./media/characters/chiros/front.svg",
  7283. extra: 306 / 226
  7284. }
  7285. },
  7286. side: {
  7287. height: math.unit(6, "feet"),
  7288. weight: math.unit(88, "lbs"),
  7289. name: "Side",
  7290. image: {
  7291. source: "./media/characters/chiros/side.svg",
  7292. extra: 306 / 226
  7293. }
  7294. },
  7295. },
  7296. [
  7297. {
  7298. name: "Normal",
  7299. height: math.unit(6, "cm"),
  7300. default: true
  7301. },
  7302. ]
  7303. ))
  7304. characterMakers.push(() => makeCharacter(
  7305. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7306. {
  7307. front: {
  7308. height: math.unit(6, "feet"),
  7309. weight: math.unit(100, "lbs"),
  7310. name: "Front",
  7311. image: {
  7312. source: "./media/characters/selka/front.svg",
  7313. extra: 947 / 887
  7314. }
  7315. }
  7316. },
  7317. [
  7318. {
  7319. name: "Normal",
  7320. height: math.unit(5, "cm"),
  7321. default: true
  7322. },
  7323. ]
  7324. ))
  7325. characterMakers.push(() => makeCharacter(
  7326. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7327. {
  7328. front: {
  7329. height: math.unit(8 + 3 / 12, "feet"),
  7330. weight: math.unit(424, "lbs"),
  7331. name: "Front",
  7332. image: {
  7333. source: "./media/characters/verin/front.svg",
  7334. extra: 1845 / 1550
  7335. }
  7336. },
  7337. frontArmored: {
  7338. height: math.unit(8 + 3 / 12, "feet"),
  7339. weight: math.unit(424, "lbs"),
  7340. name: "Front (Armored)",
  7341. image: {
  7342. source: "./media/characters/verin/front-armor.svg",
  7343. extra: 1845 / 1550,
  7344. bottom: 0.01
  7345. }
  7346. },
  7347. back: {
  7348. height: math.unit(8 + 3 / 12, "feet"),
  7349. weight: math.unit(424, "lbs"),
  7350. name: "Back",
  7351. image: {
  7352. source: "./media/characters/verin/back.svg",
  7353. bottom: 0.1,
  7354. extra: 1
  7355. }
  7356. },
  7357. foot: {
  7358. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7359. name: "Foot",
  7360. image: {
  7361. source: "./media/characters/verin/foot.svg"
  7362. }
  7363. },
  7364. },
  7365. [
  7366. {
  7367. name: "Normal",
  7368. height: math.unit(8 + 3 / 12, "feet")
  7369. },
  7370. {
  7371. name: "Minimacro",
  7372. height: math.unit(21, "feet"),
  7373. default: true
  7374. },
  7375. {
  7376. name: "Macro",
  7377. height: math.unit(626, "feet")
  7378. },
  7379. ]
  7380. ))
  7381. characterMakers.push(() => makeCharacter(
  7382. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7383. {
  7384. front: {
  7385. height: math.unit(2.718, "meters"),
  7386. weight: math.unit(150, "lbs"),
  7387. name: "Front",
  7388. image: {
  7389. source: "./media/characters/sovrim-terraquian/front.svg"
  7390. }
  7391. },
  7392. back: {
  7393. height: math.unit(2.718, "meters"),
  7394. weight: math.unit(150, "lbs"),
  7395. name: "Back",
  7396. image: {
  7397. source: "./media/characters/sovrim-terraquian/back.svg"
  7398. }
  7399. }
  7400. },
  7401. [
  7402. {
  7403. name: "Micro",
  7404. height: math.unit(2, "inches")
  7405. },
  7406. {
  7407. name: "Small",
  7408. height: math.unit(1, "meter")
  7409. },
  7410. {
  7411. name: "Normal",
  7412. height: math.unit(Math.E, "meters"),
  7413. default: true
  7414. },
  7415. {
  7416. name: "Macro",
  7417. height: math.unit(20, "meters")
  7418. },
  7419. {
  7420. name: "Macro+",
  7421. height: math.unit(400, "meters")
  7422. },
  7423. ]
  7424. ))
  7425. characterMakers.push(() => makeCharacter(
  7426. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7427. {
  7428. front: {
  7429. height: math.unit(7, "feet"),
  7430. weight: math.unit(489, "lbs"),
  7431. name: "Front",
  7432. image: {
  7433. source: "./media/characters/reece-silvermane/front.svg",
  7434. bottom: 0.02,
  7435. extra: 1
  7436. }
  7437. },
  7438. },
  7439. [
  7440. {
  7441. name: "Macro",
  7442. height: math.unit(1.5, "miles"),
  7443. default: true
  7444. },
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(78, "kg"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/kane/front.svg",
  7456. extra: 978 / 899
  7457. }
  7458. },
  7459. },
  7460. [
  7461. {
  7462. name: "Normal",
  7463. height: math.unit(2.1, "m"),
  7464. },
  7465. {
  7466. name: "Macro",
  7467. height: math.unit(1, "km"),
  7468. default: true
  7469. },
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7474. {
  7475. front: {
  7476. height: math.unit(6, "feet"),
  7477. weight: math.unit(200, "kg"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/tegon/front.svg",
  7481. bottom: 0.01,
  7482. extra: 1
  7483. }
  7484. },
  7485. },
  7486. [
  7487. {
  7488. name: "Micro",
  7489. height: math.unit(1, "inch")
  7490. },
  7491. {
  7492. name: "Normal",
  7493. height: math.unit(6 + 3 / 12, "feet"),
  7494. default: true
  7495. },
  7496. {
  7497. name: "Macro",
  7498. height: math.unit(300, "feet")
  7499. },
  7500. {
  7501. name: "Megamacro",
  7502. height: math.unit(69, "miles")
  7503. },
  7504. ]
  7505. ))
  7506. characterMakers.push(() => makeCharacter(
  7507. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7508. {
  7509. side: {
  7510. height: math.unit(6, "feet"),
  7511. weight: math.unit(2304, "lbs"),
  7512. name: "Side",
  7513. image: {
  7514. source: "./media/characters/arcturax/side.svg",
  7515. extra: 790 / 376,
  7516. bottom: 0.01
  7517. }
  7518. },
  7519. },
  7520. [
  7521. {
  7522. name: "Micro",
  7523. height: math.unit(2, "inch")
  7524. },
  7525. {
  7526. name: "Normal",
  7527. height: math.unit(6, "feet")
  7528. },
  7529. {
  7530. name: "Macro",
  7531. height: math.unit(39, "feet"),
  7532. default: true
  7533. },
  7534. {
  7535. name: "Megamacro",
  7536. height: math.unit(7, "miles")
  7537. },
  7538. ]
  7539. ))
  7540. characterMakers.push(() => makeCharacter(
  7541. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7542. {
  7543. front: {
  7544. height: math.unit(6, "feet"),
  7545. weight: math.unit(50, "lbs"),
  7546. name: "Front",
  7547. image: {
  7548. source: "./media/characters/sentri/front.svg",
  7549. extra: 1750 / 1570,
  7550. bottom: 0.025
  7551. }
  7552. },
  7553. frontAlt: {
  7554. height: math.unit(6, "feet"),
  7555. weight: math.unit(50, "lbs"),
  7556. name: "Front (Alt)",
  7557. image: {
  7558. source: "./media/characters/sentri/front-alt.svg",
  7559. extra: 1750 / 1570,
  7560. bottom: 0.025
  7561. }
  7562. },
  7563. },
  7564. [
  7565. {
  7566. name: "Normal",
  7567. height: math.unit(15, "feet"),
  7568. default: true
  7569. },
  7570. {
  7571. name: "Macro",
  7572. height: math.unit(2500, "feet")
  7573. }
  7574. ]
  7575. ))
  7576. characterMakers.push(() => makeCharacter(
  7577. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7578. {
  7579. front: {
  7580. height: math.unit(5 + 8 / 12, "feet"),
  7581. weight: math.unit(130, "lbs"),
  7582. name: "Front",
  7583. image: {
  7584. source: "./media/characters/corvin/front.svg",
  7585. extra: 1803 / 1629
  7586. }
  7587. },
  7588. frontShirt: {
  7589. height: math.unit(5 + 8 / 12, "feet"),
  7590. weight: math.unit(130, "lbs"),
  7591. name: "Front (Shirt)",
  7592. image: {
  7593. source: "./media/characters/corvin/front-shirt.svg",
  7594. extra: 1803 / 1629
  7595. }
  7596. },
  7597. frontPoncho: {
  7598. height: math.unit(5 + 8 / 12, "feet"),
  7599. weight: math.unit(130, "lbs"),
  7600. name: "Front (Poncho)",
  7601. image: {
  7602. source: "./media/characters/corvin/front-poncho.svg",
  7603. extra: 1803 / 1629
  7604. }
  7605. },
  7606. side: {
  7607. height: math.unit(5 + 8 / 12, "feet"),
  7608. weight: math.unit(130, "lbs"),
  7609. name: "Side",
  7610. image: {
  7611. source: "./media/characters/corvin/side.svg",
  7612. extra: 1012 / 945
  7613. }
  7614. },
  7615. back: {
  7616. height: math.unit(5 + 8 / 12, "feet"),
  7617. weight: math.unit(130, "lbs"),
  7618. name: "Back",
  7619. image: {
  7620. source: "./media/characters/corvin/back.svg",
  7621. extra: 1803 / 1629
  7622. }
  7623. },
  7624. },
  7625. [
  7626. {
  7627. name: "Micro",
  7628. height: math.unit(3, "inches")
  7629. },
  7630. {
  7631. name: "Normal",
  7632. height: math.unit(5 + 8 / 12, "feet")
  7633. },
  7634. {
  7635. name: "Macro",
  7636. height: math.unit(300, "feet"),
  7637. default: true
  7638. },
  7639. {
  7640. name: "Megamacro",
  7641. height: math.unit(500, "miles")
  7642. }
  7643. ]
  7644. ))
  7645. characterMakers.push(() => makeCharacter(
  7646. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7647. {
  7648. front: {
  7649. height: math.unit(6, "feet"),
  7650. weight: math.unit(135, "lbs"),
  7651. name: "Front",
  7652. image: {
  7653. source: "./media/characters/q/front.svg",
  7654. extra: 854 / 752,
  7655. bottom: 0.005
  7656. }
  7657. },
  7658. back: {
  7659. height: math.unit(6, "feet"),
  7660. weight: math.unit(130, "lbs"),
  7661. name: "Back",
  7662. image: {
  7663. source: "./media/characters/q/back.svg",
  7664. extra: 854 / 752
  7665. }
  7666. },
  7667. },
  7668. [
  7669. {
  7670. name: "Macro",
  7671. height: math.unit(90, "feet"),
  7672. default: true
  7673. },
  7674. {
  7675. name: "Extra Macro",
  7676. height: math.unit(300, "feet"),
  7677. },
  7678. {
  7679. name: "BIG WALF",
  7680. height: math.unit(750, "feet"),
  7681. },
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7686. {
  7687. front: {
  7688. height: math.unit(6, "feet"),
  7689. weight: math.unit(150, "lbs"),
  7690. name: "Front",
  7691. image: {
  7692. source: "./media/characters/carley/front.svg",
  7693. extra: 3927 / 3540,
  7694. bottom: 29.2 / 735
  7695. }
  7696. }
  7697. },
  7698. [
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(6 + 3 / 12, "feet")
  7702. },
  7703. {
  7704. name: "Macro",
  7705. height: math.unit(185, "feet"),
  7706. default: true
  7707. },
  7708. {
  7709. name: "Megamacro",
  7710. height: math.unit(8, "miles"),
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(3, "feet"),
  7719. weight: math.unit(28, "lbs"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/citrine/front.svg"
  7723. }
  7724. }
  7725. },
  7726. [
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(3, "feet"),
  7730. default: true
  7731. }
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7736. {
  7737. front: {
  7738. height: math.unit(14, "feet"),
  7739. weight: math.unit(1450, "kg"),
  7740. capacity: math.unit(15, "people"),
  7741. name: "Front",
  7742. image: {
  7743. source: "./media/characters/aura-starwind/front.svg",
  7744. extra: 1455 / 1335
  7745. }
  7746. },
  7747. side: {
  7748. height: math.unit(14, "feet"),
  7749. weight: math.unit(1450, "kg"),
  7750. capacity: math.unit(15, "people"),
  7751. name: "Side",
  7752. image: {
  7753. source: "./media/characters/aura-starwind/side.svg",
  7754. extra: 1654 / 1497
  7755. }
  7756. },
  7757. taur: {
  7758. height: math.unit(18, "feet"),
  7759. weight: math.unit(5500, "kg"),
  7760. capacity: math.unit(50, "people"),
  7761. name: "Taur",
  7762. image: {
  7763. source: "./media/characters/aura-starwind/taur.svg",
  7764. extra: 1760 / 1650
  7765. }
  7766. },
  7767. feral: {
  7768. height: math.unit(46, "feet"),
  7769. weight: math.unit(25000, "kg"),
  7770. capacity: math.unit(120, "people"),
  7771. name: "Feral",
  7772. image: {
  7773. source: "./media/characters/aura-starwind/feral.svg"
  7774. }
  7775. },
  7776. },
  7777. [
  7778. {
  7779. name: "Normal",
  7780. height: math.unit(14, "feet"),
  7781. default: true
  7782. },
  7783. {
  7784. name: "Macro",
  7785. height: math.unit(50, "meters")
  7786. },
  7787. {
  7788. name: "Megamacro",
  7789. height: math.unit(5000, "meters")
  7790. },
  7791. {
  7792. name: "Gigamacro",
  7793. height: math.unit(100000, "kilometers")
  7794. },
  7795. ]
  7796. ))
  7797. characterMakers.push(() => makeCharacter(
  7798. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7799. {
  7800. front: {
  7801. height: math.unit(2 + 7 / 12, "feet"),
  7802. weight: math.unit(32, "lbs"),
  7803. name: "Front",
  7804. image: {
  7805. source: "./media/characters/rivet/front.svg",
  7806. extra: 1716 / 1658,
  7807. bottom: 0.03
  7808. }
  7809. },
  7810. foot: {
  7811. height: math.unit(0.551, "feet"),
  7812. name: "Rivet's Foot",
  7813. image: {
  7814. source: "./media/characters/rivet/foot.svg"
  7815. },
  7816. rename: true
  7817. }
  7818. },
  7819. [
  7820. {
  7821. name: "Micro",
  7822. height: math.unit(1.5, "inches"),
  7823. },
  7824. {
  7825. name: "Normal",
  7826. height: math.unit(2 + 7 / 12, "feet"),
  7827. default: true
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(85, "feet")
  7832. },
  7833. {
  7834. name: "Megamacro",
  7835. height: math.unit(2.2, "km")
  7836. }
  7837. ]
  7838. ))
  7839. characterMakers.push(() => makeCharacter(
  7840. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7841. {
  7842. front: {
  7843. height: math.unit(5 + 9 / 12, "feet"),
  7844. weight: math.unit(150, "lbs"),
  7845. name: "Front",
  7846. image: {
  7847. source: "./media/characters/coffee/front.svg",
  7848. extra: 3666 / 3032,
  7849. bottom: 0.04
  7850. }
  7851. },
  7852. foot: {
  7853. height: math.unit(1.29, "feet"),
  7854. name: "Foot",
  7855. image: {
  7856. source: "./media/characters/coffee/foot.svg"
  7857. }
  7858. },
  7859. },
  7860. [
  7861. {
  7862. name: "Micro",
  7863. height: math.unit(2, "inches"),
  7864. },
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(5 + 9 / 12, "feet"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(800, "feet")
  7873. },
  7874. {
  7875. name: "Megamacro",
  7876. height: math.unit(25, "miles")
  7877. }
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(6, "feet"),
  7885. weight: math.unit(200, "lbs"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/chari-gal/front.svg",
  7889. extra: 1568 / 1385,
  7890. bottom: 0.047
  7891. }
  7892. },
  7893. gigantamax: {
  7894. height: math.unit(6 * 16, "feet"),
  7895. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7896. name: "Gigantamax",
  7897. image: {
  7898. source: "./media/characters/chari-gal/gigantamax.svg",
  7899. extra: 1124 / 888,
  7900. bottom: 0.03
  7901. }
  7902. },
  7903. },
  7904. [
  7905. {
  7906. name: "Normal",
  7907. height: math.unit(5 + 7 / 12, "feet")
  7908. },
  7909. {
  7910. name: "Macro",
  7911. height: math.unit(200, "feet"),
  7912. default: true
  7913. }
  7914. ]
  7915. ))
  7916. characterMakers.push(() => makeCharacter(
  7917. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7918. {
  7919. front: {
  7920. height: math.unit(6, "feet"),
  7921. weight: math.unit(150, "lbs"),
  7922. name: "Front",
  7923. image: {
  7924. source: "./media/characters/nova/front.svg",
  7925. extra: 5000 / 4722,
  7926. bottom: 0.02
  7927. }
  7928. }
  7929. },
  7930. [
  7931. {
  7932. name: "Micro-",
  7933. height: math.unit(0.8, "inches")
  7934. },
  7935. {
  7936. name: "Micro",
  7937. height: math.unit(2, "inches"),
  7938. default: true
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(3 + 1 / 12, "feet"),
  7947. weight: math.unit(21.7, "lbs"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/argent/front.svg",
  7951. extra: 1471 / 1331,
  7952. bottom: 100.8 / 1575.5
  7953. }
  7954. }
  7955. },
  7956. [
  7957. {
  7958. name: "Micro",
  7959. height: math.unit(2, "inches")
  7960. },
  7961. {
  7962. name: "Normal",
  7963. height: math.unit(3 + 1 / 12, "feet"),
  7964. default: true
  7965. },
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(120, "feet")
  7969. },
  7970. ]
  7971. ))
  7972. characterMakers.push(() => makeCharacter(
  7973. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7974. {
  7975. lamp: {
  7976. height: math.unit(7 * 1559 / 989, "feet"),
  7977. name: "Magic Lamp",
  7978. image: {
  7979. source: "./media/characters/mira-al-cul/lamp.svg",
  7980. extra: 1617 / 1559
  7981. }
  7982. },
  7983. front: {
  7984. height: math.unit(7, "feet"),
  7985. name: "Front",
  7986. image: {
  7987. source: "./media/characters/mira-al-cul/front.svg",
  7988. extra: 1044 / 990
  7989. }
  7990. },
  7991. },
  7992. [
  7993. {
  7994. name: "Heavily Restricted",
  7995. height: math.unit(7 * 1559 / 989, "feet")
  7996. },
  7997. {
  7998. name: "Freshly Freed",
  7999. height: math.unit(50 * 1559 / 989, "feet")
  8000. },
  8001. {
  8002. name: "World Encompassing",
  8003. height: math.unit(10000 * 1559 / 989, "miles")
  8004. },
  8005. {
  8006. name: "Galactic",
  8007. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8008. },
  8009. {
  8010. name: "Palmed Universe",
  8011. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8012. default: true
  8013. },
  8014. {
  8015. name: "Multiversal Matriarch",
  8016. height: math.unit(8.87e10, "yottameters")
  8017. },
  8018. {
  8019. name: "Void Mother",
  8020. height: math.unit(3.14e110, "yottaparsecs")
  8021. },
  8022. {
  8023. name: "Toying with Transcendence",
  8024. height: math.unit(1e307, "meters")
  8025. },
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8030. {
  8031. front: {
  8032. height: math.unit(17 + 1 / 12, "feet"),
  8033. weight: math.unit(476.2 * 5, "lbs"),
  8034. name: "Front",
  8035. image: {
  8036. source: "./media/characters/kuro-shi-uchū/front.svg",
  8037. extra: 2329 / 1835,
  8038. bottom: 0.02
  8039. }
  8040. },
  8041. },
  8042. [
  8043. {
  8044. name: "Micro",
  8045. height: math.unit(2, "inches")
  8046. },
  8047. {
  8048. name: "Normal",
  8049. height: math.unit(12, "meters")
  8050. },
  8051. {
  8052. name: "Planetary",
  8053. height: math.unit(0.00929, "AU"),
  8054. default: true
  8055. },
  8056. {
  8057. name: "Universal",
  8058. height: math.unit(20, "gigaparsecs")
  8059. },
  8060. ]
  8061. ))
  8062. characterMakers.push(() => makeCharacter(
  8063. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8064. {
  8065. front: {
  8066. height: math.unit(5 + 2 / 12, "feet"),
  8067. weight: math.unit(120, "lbs"),
  8068. name: "Front",
  8069. image: {
  8070. source: "./media/characters/katherine/front.svg",
  8071. extra: 2075 / 1969
  8072. }
  8073. },
  8074. dress: {
  8075. height: math.unit(5 + 2 / 12, "feet"),
  8076. weight: math.unit(120, "lbs"),
  8077. name: "Dress",
  8078. image: {
  8079. source: "./media/characters/katherine/dress.svg",
  8080. extra: 2258 / 2064
  8081. }
  8082. },
  8083. },
  8084. [
  8085. {
  8086. name: "Micro",
  8087. height: math.unit(1, "inches"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Normal",
  8092. height: math.unit(5 + 2 / 12, "feet")
  8093. },
  8094. {
  8095. name: "Macro",
  8096. height: math.unit(100, "meters")
  8097. },
  8098. {
  8099. name: "Megamacro",
  8100. height: math.unit(80, "miles")
  8101. },
  8102. ]
  8103. ))
  8104. characterMakers.push(() => makeCharacter(
  8105. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8106. {
  8107. front: {
  8108. height: math.unit(7 + 8 / 12, "feet"),
  8109. weight: math.unit(250, "lbs"),
  8110. name: "Front",
  8111. image: {
  8112. source: "./media/characters/yevis/front.svg",
  8113. extra: 1938 / 1755
  8114. }
  8115. }
  8116. },
  8117. [
  8118. {
  8119. name: "Mortal",
  8120. height: math.unit(7 + 8 / 12, "feet")
  8121. },
  8122. {
  8123. name: "Battle",
  8124. height: math.unit(25 + 11 / 12, "feet")
  8125. },
  8126. {
  8127. name: "Wrath",
  8128. height: math.unit(1654 + 11 / 12, "feet")
  8129. },
  8130. {
  8131. name: "Planet Destroyer",
  8132. height: math.unit(12000, "miles")
  8133. },
  8134. {
  8135. name: "Galaxy Conqueror",
  8136. height: math.unit(1.45, "zettameters"),
  8137. default: true
  8138. },
  8139. {
  8140. name: "Universal War",
  8141. height: math.unit(184, "gigaparsecs")
  8142. },
  8143. {
  8144. name: "Eternity War",
  8145. height: math.unit(1.98e55, "yottaparsecs")
  8146. },
  8147. ]
  8148. ))
  8149. characterMakers.push(() => makeCharacter(
  8150. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8151. {
  8152. front: {
  8153. height: math.unit(5 + 8 / 12, "feet"),
  8154. weight: math.unit(63, "kg"),
  8155. name: "Front",
  8156. image: {
  8157. source: "./media/characters/xavier/front.svg",
  8158. extra: 944 / 883
  8159. }
  8160. },
  8161. frontStretch: {
  8162. height: math.unit(5 + 8 / 12, "feet"),
  8163. weight: math.unit(63, "kg"),
  8164. name: "Stretching",
  8165. image: {
  8166. source: "./media/characters/xavier/front-stretch.svg",
  8167. extra: 962 / 820
  8168. }
  8169. },
  8170. },
  8171. [
  8172. {
  8173. name: "Normal",
  8174. height: math.unit(5 + 8 / 12, "feet")
  8175. },
  8176. {
  8177. name: "Macro",
  8178. height: math.unit(100, "meters"),
  8179. default: true
  8180. },
  8181. {
  8182. name: "McLargeHuge",
  8183. height: math.unit(10, "miles")
  8184. },
  8185. ]
  8186. ))
  8187. characterMakers.push(() => makeCharacter(
  8188. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8189. {
  8190. front: {
  8191. height: math.unit(5 + 5 / 12, "feet"),
  8192. weight: math.unit(150, "lb"),
  8193. name: "Front",
  8194. image: {
  8195. source: "./media/characters/joshii/front.svg",
  8196. extra: 765 / 653,
  8197. bottom: 51 / 816
  8198. }
  8199. },
  8200. foot: {
  8201. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8202. name: "Foot",
  8203. image: {
  8204. source: "./media/characters/joshii/foot.svg"
  8205. }
  8206. },
  8207. },
  8208. [
  8209. {
  8210. name: "Micro",
  8211. height: math.unit(2, "inches"),
  8212. default: true
  8213. },
  8214. {
  8215. name: "Normal",
  8216. height: math.unit(5 + 5 / 12, "feet")
  8217. },
  8218. {
  8219. name: "Macro",
  8220. height: math.unit(785, "feet")
  8221. },
  8222. {
  8223. name: "Megamacro",
  8224. height: math.unit(24.5, "miles")
  8225. },
  8226. ]
  8227. ))
  8228. characterMakers.push(() => makeCharacter(
  8229. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8230. {
  8231. front: {
  8232. height: math.unit(6, "feet"),
  8233. weight: math.unit(150, "lb"),
  8234. name: "Front",
  8235. image: {
  8236. source: "./media/characters/goddess-elizabeth/front.svg",
  8237. extra: 1800 / 1525,
  8238. bottom: 0.005
  8239. }
  8240. },
  8241. foot: {
  8242. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8243. name: "Foot",
  8244. image: {
  8245. source: "./media/characters/goddess-elizabeth/foot.svg"
  8246. }
  8247. },
  8248. mouth: {
  8249. height: math.unit(6, "feet"),
  8250. name: "Mouth",
  8251. image: {
  8252. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8253. }
  8254. },
  8255. },
  8256. [
  8257. {
  8258. name: "Micro",
  8259. height: math.unit(12, "feet")
  8260. },
  8261. {
  8262. name: "Normal",
  8263. height: math.unit(80, "miles"),
  8264. default: true
  8265. },
  8266. {
  8267. name: "Macro",
  8268. height: math.unit(15000, "parsecs")
  8269. },
  8270. ]
  8271. ))
  8272. characterMakers.push(() => makeCharacter(
  8273. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8274. {
  8275. front: {
  8276. height: math.unit(5 + 9 / 12, "feet"),
  8277. weight: math.unit(144, "lb"),
  8278. name: "Front",
  8279. image: {
  8280. source: "./media/characters/kara/front.svg"
  8281. }
  8282. },
  8283. feet: {
  8284. height: math.unit(6 / 6.765, "feet"),
  8285. name: "Kara's Feet",
  8286. rename: true,
  8287. image: {
  8288. source: "./media/characters/kara/feet.svg"
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(5 + 9 / 12, "feet")
  8296. },
  8297. {
  8298. name: "Macro",
  8299. height: math.unit(174, "feet"),
  8300. default: true
  8301. },
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(18, "feet"),
  8309. weight: math.unit(4050, "lb"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/tyrone/front.svg",
  8313. extra: 2405 / 2270,
  8314. bottom: 182 / 2587
  8315. }
  8316. },
  8317. },
  8318. [
  8319. {
  8320. name: "Normal",
  8321. height: math.unit(18, "feet"),
  8322. default: true
  8323. },
  8324. {
  8325. name: "Macro",
  8326. height: math.unit(300, "feet")
  8327. },
  8328. {
  8329. name: "Megamacro",
  8330. height: math.unit(15, "km")
  8331. },
  8332. {
  8333. name: "Gigamacro",
  8334. height: math.unit(500, "km")
  8335. },
  8336. {
  8337. name: "Teramacro",
  8338. height: math.unit(0.5, "gigameters")
  8339. },
  8340. {
  8341. name: "Omnimacro",
  8342. height: math.unit(1e252, "yottauniverse")
  8343. },
  8344. ]
  8345. ))
  8346. characterMakers.push(() => makeCharacter(
  8347. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8348. {
  8349. front: {
  8350. height: math.unit(7 + 8 / 12, "feet"),
  8351. weight: math.unit(120, "lb"),
  8352. name: "Front",
  8353. image: {
  8354. source: "./media/characters/danny/front.svg",
  8355. extra: 1490 / 1350
  8356. }
  8357. },
  8358. back: {
  8359. height: math.unit(7 + 8 / 12, "feet"),
  8360. weight: math.unit(120, "lb"),
  8361. name: "Back",
  8362. image: {
  8363. source: "./media/characters/danny/back.svg",
  8364. extra: 1490 / 1350
  8365. }
  8366. },
  8367. },
  8368. [
  8369. {
  8370. name: "Normal",
  8371. height: math.unit(7 + 8 / 12, "feet"),
  8372. default: true
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(3.5, "inches"),
  8381. weight: math.unit(19, "grams"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/mallow/front.svg",
  8385. extra: 471 / 431
  8386. }
  8387. },
  8388. back: {
  8389. height: math.unit(3.5, "inches"),
  8390. weight: math.unit(19, "grams"),
  8391. name: "Back",
  8392. image: {
  8393. source: "./media/characters/mallow/back.svg",
  8394. extra: 471 / 431
  8395. }
  8396. },
  8397. },
  8398. [
  8399. {
  8400. name: "Normal",
  8401. height: math.unit(3.5, "inches"),
  8402. default: true
  8403. },
  8404. ]
  8405. ))
  8406. characterMakers.push(() => makeCharacter(
  8407. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8408. {
  8409. front: {
  8410. height: math.unit(9, "feet"),
  8411. weight: math.unit(230, "kg"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/starry-aqua/front.svg"
  8415. }
  8416. },
  8417. back: {
  8418. height: math.unit(9, "feet"),
  8419. weight: math.unit(230, "kg"),
  8420. name: "Back",
  8421. image: {
  8422. source: "./media/characters/starry-aqua/back.svg"
  8423. }
  8424. },
  8425. hand: {
  8426. height: math.unit(9 * 0.1168, "feet"),
  8427. name: "Hand",
  8428. image: {
  8429. source: "./media/characters/starry-aqua/hand.svg"
  8430. }
  8431. },
  8432. foot: {
  8433. height: math.unit(9 * 0.18, "feet"),
  8434. name: "Foot",
  8435. image: {
  8436. source: "./media/characters/starry-aqua/foot.svg"
  8437. }
  8438. }
  8439. },
  8440. [
  8441. {
  8442. name: "Micro",
  8443. height: math.unit(3, "inches")
  8444. },
  8445. {
  8446. name: "Normal",
  8447. height: math.unit(9, "feet")
  8448. },
  8449. {
  8450. name: "Macro",
  8451. height: math.unit(300, "feet"),
  8452. default: true
  8453. },
  8454. {
  8455. name: "Megamacro",
  8456. height: math.unit(3200, "feet")
  8457. }
  8458. ]
  8459. ))
  8460. characterMakers.push(() => makeCharacter(
  8461. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8462. {
  8463. front: {
  8464. height: math.unit(6, "feet"),
  8465. weight: math.unit(230, "lb"),
  8466. name: "Front",
  8467. image: {
  8468. source: "./media/characters/luka/front.svg",
  8469. extra: 1,
  8470. bottom: 0.025
  8471. }
  8472. },
  8473. },
  8474. [
  8475. {
  8476. name: "Normal",
  8477. height: math.unit(12 + 8 / 12, "feet"),
  8478. default: true
  8479. },
  8480. {
  8481. name: "Minimacro",
  8482. height: math.unit(20, "feet")
  8483. },
  8484. {
  8485. name: "Macro",
  8486. height: math.unit(250, "feet")
  8487. },
  8488. {
  8489. name: "Megamacro",
  8490. height: math.unit(5, "miles")
  8491. },
  8492. {
  8493. name: "Gigamacro",
  8494. height: math.unit(8000, "miles")
  8495. },
  8496. ]
  8497. ))
  8498. characterMakers.push(() => makeCharacter(
  8499. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8500. {
  8501. front: {
  8502. height: math.unit(6, "feet"),
  8503. weight: math.unit(150, "lb"),
  8504. name: "Front",
  8505. image: {
  8506. source: "./media/characters/natalie-nightring/front.svg",
  8507. extra: 1,
  8508. bottom: 0.06
  8509. }
  8510. },
  8511. },
  8512. [
  8513. {
  8514. name: "Uh Oh",
  8515. height: math.unit(0.1, "mm")
  8516. },
  8517. {
  8518. name: "Small",
  8519. height: math.unit(3, "inches")
  8520. },
  8521. {
  8522. name: "Human Scale",
  8523. height: math.unit(6, "feet")
  8524. },
  8525. {
  8526. name: "Librarian",
  8527. height: math.unit(50, "feet"),
  8528. default: true
  8529. },
  8530. {
  8531. name: "Immense",
  8532. height: math.unit(200, "miles")
  8533. },
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(6, "feet"),
  8541. weight: math.unit(180, "lbs"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/danni-rosie/front.svg",
  8545. extra: 1260 / 1128,
  8546. bottom: 0.022
  8547. }
  8548. },
  8549. },
  8550. [
  8551. {
  8552. name: "Micro",
  8553. height: math.unit(2, "inches"),
  8554. default: true
  8555. },
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8560. {
  8561. front: {
  8562. height: math.unit(5 + 9 / 12, "feet"),
  8563. weight: math.unit(220, "lb"),
  8564. name: "Front",
  8565. image: {
  8566. source: "./media/characters/samantha-kruse/front.svg",
  8567. extra: (985 / 935),
  8568. bottom: 0.03
  8569. }
  8570. },
  8571. frontUndressed: {
  8572. height: math.unit(5 + 9 / 12, "feet"),
  8573. weight: math.unit(220, "lb"),
  8574. name: "Front (Undressed)",
  8575. image: {
  8576. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8577. extra: (973 / 923),
  8578. bottom: 0.025
  8579. }
  8580. },
  8581. fat: {
  8582. height: math.unit(5 + 9 / 12, "feet"),
  8583. weight: math.unit(900, "lb"),
  8584. name: "Front (Fat)",
  8585. image: {
  8586. source: "./media/characters/samantha-kruse/fat.svg",
  8587. extra: 2688 / 2561
  8588. }
  8589. },
  8590. },
  8591. [
  8592. {
  8593. name: "Normal",
  8594. height: math.unit(5 + 9 / 12, "feet"),
  8595. default: true
  8596. }
  8597. ]
  8598. ))
  8599. characterMakers.push(() => makeCharacter(
  8600. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8601. {
  8602. back: {
  8603. height: math.unit(5 + 4 / 12, "feet"),
  8604. weight: math.unit(4963, "lb"),
  8605. name: "Back",
  8606. image: {
  8607. source: "./media/characters/amelia-rosie/back.svg",
  8608. extra: 1113 / 963,
  8609. bottom: 0.01
  8610. }
  8611. },
  8612. },
  8613. [
  8614. {
  8615. name: "Level 0",
  8616. height: math.unit(5 + 4 / 12, "feet")
  8617. },
  8618. {
  8619. name: "Level 1",
  8620. height: math.unit(164597, "feet"),
  8621. default: true
  8622. },
  8623. {
  8624. name: "Level 2",
  8625. height: math.unit(956243, "miles")
  8626. },
  8627. {
  8628. name: "Level 3",
  8629. height: math.unit(29421709423, "miles")
  8630. },
  8631. {
  8632. name: "Level 4",
  8633. height: math.unit(154, "lightyears")
  8634. },
  8635. {
  8636. name: "Level 5",
  8637. height: math.unit(4738272, "lightyears")
  8638. },
  8639. {
  8640. name: "Level 6",
  8641. height: math.unit(145787152896, "lightyears")
  8642. },
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8647. {
  8648. front: {
  8649. height: math.unit(5 + 11 / 12, "feet"),
  8650. weight: math.unit(65, "kg"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/rook-kitara/front.svg",
  8654. extra: 1347 / 1274,
  8655. bottom: 0.005
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Totally Unfair",
  8662. height: math.unit(1.8, "mm")
  8663. },
  8664. {
  8665. name: "Lap Rookie",
  8666. height: math.unit(1.4, "feet")
  8667. },
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(5 + 11 / 12, "feet"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "How Did This Happen",
  8675. height: math.unit(80, "miles")
  8676. }
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(7, "feet"),
  8684. weight: math.unit(300, "lb"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/pisces/front.svg",
  8688. extra: 2255 / 2115,
  8689. bottom: 0.03
  8690. }
  8691. },
  8692. back: {
  8693. height: math.unit(7, "feet"),
  8694. weight: math.unit(300, "lb"),
  8695. name: "Back",
  8696. image: {
  8697. source: "./media/characters/pisces/back.svg",
  8698. extra: 2146 / 2055,
  8699. bottom: 0.04
  8700. }
  8701. },
  8702. },
  8703. [
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(7, "feet"),
  8707. default: true
  8708. },
  8709. {
  8710. name: "Swimming Pool",
  8711. height: math.unit(12.2, "meters")
  8712. },
  8713. {
  8714. name: "Olympic Swimming Pool",
  8715. height: math.unit(56.3, "meters")
  8716. },
  8717. {
  8718. name: "Lake Superior",
  8719. height: math.unit(93900, "meters")
  8720. },
  8721. {
  8722. name: "Mediterranean Sea",
  8723. height: math.unit(644457, "meters")
  8724. },
  8725. {
  8726. name: "World's Oceans",
  8727. height: math.unit(4567491, "meters")
  8728. },
  8729. ]
  8730. ))
  8731. characterMakers.push(() => makeCharacter(
  8732. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8733. {
  8734. front: {
  8735. height: math.unit(2.3, "meters"),
  8736. weight: math.unit(120, "kg"),
  8737. name: "Front",
  8738. image: {
  8739. source: "./media/characters/zelas/front.svg"
  8740. }
  8741. },
  8742. side: {
  8743. height: math.unit(2.3, "meters"),
  8744. weight: math.unit(120, "kg"),
  8745. name: "Side",
  8746. image: {
  8747. source: "./media/characters/zelas/side.svg"
  8748. }
  8749. },
  8750. back: {
  8751. height: math.unit(2.3, "meters"),
  8752. weight: math.unit(120, "kg"),
  8753. name: "Back",
  8754. image: {
  8755. source: "./media/characters/zelas/back.svg"
  8756. }
  8757. },
  8758. foot: {
  8759. height: math.unit(1.116, "feet"),
  8760. name: "Foot",
  8761. image: {
  8762. source: "./media/characters/zelas/foot.svg"
  8763. }
  8764. },
  8765. },
  8766. [
  8767. {
  8768. name: "Normal",
  8769. height: math.unit(2.3, "meters")
  8770. },
  8771. {
  8772. name: "Macro",
  8773. height: math.unit(30, "meters"),
  8774. default: true
  8775. },
  8776. ]
  8777. ))
  8778. characterMakers.push(() => makeCharacter(
  8779. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8780. {
  8781. front: {
  8782. height: math.unit(1, "inch"),
  8783. weight: math.unit(0.21, "grams"),
  8784. name: "Front",
  8785. image: {
  8786. source: "./media/characters/talbot/front.svg",
  8787. extra: 594 / 544
  8788. }
  8789. },
  8790. },
  8791. [
  8792. {
  8793. name: "Micro",
  8794. height: math.unit(1, "inch"),
  8795. default: true
  8796. },
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8801. {
  8802. front: {
  8803. height: math.unit(3 + 3 / 12, "feet"),
  8804. weight: math.unit(51.8, "lb"),
  8805. name: "Front",
  8806. image: {
  8807. source: "./media/characters/fliss/front.svg",
  8808. extra: 840 / 640
  8809. }
  8810. },
  8811. },
  8812. [
  8813. {
  8814. name: "Teeny Tiny",
  8815. height: math.unit(1, "mm")
  8816. },
  8817. {
  8818. name: "Small",
  8819. height: math.unit(1, "inch"),
  8820. default: true
  8821. },
  8822. {
  8823. name: "Standard Sylveon",
  8824. height: math.unit(3 + 3 / 12, "feet")
  8825. },
  8826. {
  8827. name: "Large Nuisance",
  8828. height: math.unit(33, "feet")
  8829. },
  8830. {
  8831. name: "City Filler",
  8832. height: math.unit(3000, "feet")
  8833. },
  8834. {
  8835. name: "New Horizon",
  8836. height: math.unit(6000, "miles")
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8842. {
  8843. front: {
  8844. height: math.unit(5, "cm"),
  8845. weight: math.unit(1.94, "g"),
  8846. name: "Front",
  8847. image: {
  8848. source: "./media/characters/fleta/front.svg",
  8849. extra: 835 / 803
  8850. }
  8851. },
  8852. back: {
  8853. height: math.unit(5, "cm"),
  8854. weight: math.unit(1.94, "g"),
  8855. name: "Back",
  8856. image: {
  8857. source: "./media/characters/fleta/back.svg",
  8858. extra: 835 / 803
  8859. }
  8860. },
  8861. },
  8862. [
  8863. {
  8864. name: "Micro",
  8865. height: math.unit(5, "cm"),
  8866. default: true
  8867. },
  8868. ]
  8869. ))
  8870. characterMakers.push(() => makeCharacter(
  8871. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8872. {
  8873. front: {
  8874. height: math.unit(6, "feet"),
  8875. weight: math.unit(225, "lb"),
  8876. name: "Front",
  8877. image: {
  8878. source: "./media/characters/dominic/front.svg",
  8879. extra: 1770 / 1620,
  8880. bottom: 0.025
  8881. }
  8882. },
  8883. back: {
  8884. height: math.unit(6, "feet"),
  8885. weight: math.unit(225, "lb"),
  8886. name: "Back",
  8887. image: {
  8888. source: "./media/characters/dominic/back.svg",
  8889. extra: 1745 / 1620,
  8890. bottom: 0.065
  8891. }
  8892. },
  8893. },
  8894. [
  8895. {
  8896. name: "Nano",
  8897. height: math.unit(0.1, "mm")
  8898. },
  8899. {
  8900. name: "Micro-",
  8901. height: math.unit(1, "mm")
  8902. },
  8903. {
  8904. name: "Micro",
  8905. height: math.unit(4, "inches")
  8906. },
  8907. {
  8908. name: "Normal",
  8909. height: math.unit(6 + 4 / 12, "feet"),
  8910. default: true
  8911. },
  8912. {
  8913. name: "Macro",
  8914. height: math.unit(115, "feet")
  8915. },
  8916. {
  8917. name: "Macro+",
  8918. height: math.unit(955, "feet")
  8919. },
  8920. {
  8921. name: "Megamacro",
  8922. height: math.unit(8990, "feet")
  8923. },
  8924. {
  8925. name: "Gigmacro",
  8926. height: math.unit(9310, "miles")
  8927. },
  8928. {
  8929. name: "Teramacro",
  8930. height: math.unit(1567005010, "miles")
  8931. },
  8932. {
  8933. name: "Examacro",
  8934. height: math.unit(1425, "parsecs")
  8935. },
  8936. ]
  8937. ))
  8938. characterMakers.push(() => makeCharacter(
  8939. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8940. {
  8941. front: {
  8942. height: math.unit(400, "feet"),
  8943. weight: math.unit(44444444, "lb"),
  8944. name: "Front",
  8945. image: {
  8946. source: "./media/characters/major-colonel/front.svg"
  8947. }
  8948. },
  8949. back: {
  8950. height: math.unit(400, "feet"),
  8951. weight: math.unit(44444444, "lb"),
  8952. name: "Back",
  8953. image: {
  8954. source: "./media/characters/major-colonel/back.svg"
  8955. }
  8956. },
  8957. },
  8958. [
  8959. {
  8960. name: "Macro",
  8961. height: math.unit(400, "feet"),
  8962. default: true
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8968. {
  8969. catFront: {
  8970. height: math.unit(6, "feet"),
  8971. weight: math.unit(120, "lb"),
  8972. name: "Front (Cat Side)",
  8973. image: {
  8974. source: "./media/characters/axel-lycan/cat-front.svg",
  8975. extra: 430 / 402,
  8976. bottom: 43 / 472.35
  8977. }
  8978. },
  8979. catBack: {
  8980. height: math.unit(6, "feet"),
  8981. weight: math.unit(120, "lb"),
  8982. name: "Back (Cat Side)",
  8983. image: {
  8984. source: "./media/characters/axel-lycan/cat-back.svg",
  8985. extra: 447 / 419,
  8986. bottom: 23.3 / 469
  8987. }
  8988. },
  8989. wolfFront: {
  8990. height: math.unit(6, "feet"),
  8991. weight: math.unit(120, "lb"),
  8992. name: "Front (Wolf Side)",
  8993. image: {
  8994. source: "./media/characters/axel-lycan/wolf-front.svg",
  8995. extra: 485 / 456,
  8996. bottom: 19 / 504
  8997. }
  8998. },
  8999. wolfBack: {
  9000. height: math.unit(6, "feet"),
  9001. weight: math.unit(120, "lb"),
  9002. name: "Back (Wolf Side)",
  9003. image: {
  9004. source: "./media/characters/axel-lycan/wolf-back.svg",
  9005. extra: 475 / 438,
  9006. bottom: 39.2 / 514
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Macro",
  9013. height: math.unit(1, "km"),
  9014. default: true
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9020. {
  9021. front: {
  9022. height: math.unit(5 + 9 / 12, "feet"),
  9023. weight: math.unit(175, "lb"),
  9024. name: "Front",
  9025. image: {
  9026. source: "./media/characters/vanrel-hyena/front.svg",
  9027. extra: 1086 / 1010,
  9028. bottom: 0.04
  9029. }
  9030. },
  9031. },
  9032. [
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(5 + 9 / 12, "feet"),
  9036. default: true
  9037. },
  9038. ]
  9039. ))
  9040. characterMakers.push(() => makeCharacter(
  9041. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9042. {
  9043. front: {
  9044. height: math.unit(6, "feet"),
  9045. weight: math.unit(103, "lb"),
  9046. name: "Front",
  9047. image: {
  9048. source: "./media/characters/abbott-absol/front.svg",
  9049. extra: 2010 / 1842
  9050. }
  9051. },
  9052. },
  9053. [
  9054. {
  9055. name: "Megamicro",
  9056. height: math.unit(0.1, "mm")
  9057. },
  9058. {
  9059. name: "Micro",
  9060. height: math.unit(1, "inch")
  9061. },
  9062. {
  9063. name: "Normal",
  9064. height: math.unit(6, "feet"),
  9065. default: true
  9066. },
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9071. {
  9072. front: {
  9073. height: math.unit(6, "feet"),
  9074. weight: math.unit(264, "lb"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/hector/front.svg",
  9078. extra: 2280 / 2130,
  9079. bottom: 0.07
  9080. }
  9081. },
  9082. },
  9083. [
  9084. {
  9085. name: "Normal",
  9086. height: math.unit(12.25, "foot"),
  9087. default: true
  9088. },
  9089. {
  9090. name: "Macro",
  9091. height: math.unit(160, "feet")
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(6, "feet"),
  9100. weight: math.unit(150, "lb"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/sal/front.svg",
  9104. extra: 1846 / 1699,
  9105. bottom: 0.04
  9106. }
  9107. },
  9108. },
  9109. [
  9110. {
  9111. name: "Megamacro",
  9112. height: math.unit(10, "miles"),
  9113. default: true
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9119. {
  9120. front: {
  9121. height: math.unit(3, "meters"),
  9122. weight: math.unit(450, "kg"),
  9123. name: "front",
  9124. image: {
  9125. source: "./media/characters/ranger/front.svg",
  9126. extra: 2401 / 2243,
  9127. bottom: 0.05
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Normal",
  9134. height: math.unit(3, "meters"),
  9135. default: true
  9136. },
  9137. ]
  9138. ))
  9139. characterMakers.push(() => makeCharacter(
  9140. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9141. {
  9142. front: {
  9143. height: math.unit(14, "feet"),
  9144. weight: math.unit(800, "kg"),
  9145. name: "Front",
  9146. image: {
  9147. source: "./media/characters/theresa/front.svg",
  9148. extra: 3575 / 3346,
  9149. bottom: 0.03
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Normal",
  9156. height: math.unit(14, "feet"),
  9157. default: true
  9158. },
  9159. ]
  9160. ))
  9161. characterMakers.push(() => makeCharacter(
  9162. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9163. {
  9164. front: {
  9165. height: math.unit(6, "feet"),
  9166. weight: math.unit(3, "kg"),
  9167. name: "Front",
  9168. image: {
  9169. source: "./media/characters/ine/front.svg",
  9170. extra: 678 / 539,
  9171. bottom: 0.023
  9172. }
  9173. },
  9174. },
  9175. [
  9176. {
  9177. name: "Normal",
  9178. height: math.unit(2.265, "feet"),
  9179. default: true
  9180. },
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9185. {
  9186. front: {
  9187. height: math.unit(5, "feet"),
  9188. weight: math.unit(30, "kg"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/vial/front.svg",
  9192. extra: 1365 / 1277,
  9193. bottom: 0.04
  9194. }
  9195. },
  9196. },
  9197. [
  9198. {
  9199. name: "Normal",
  9200. height: math.unit(5, "feet"),
  9201. default: true
  9202. },
  9203. ]
  9204. ))
  9205. characterMakers.push(() => makeCharacter(
  9206. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9207. {
  9208. side: {
  9209. height: math.unit(3.4, "meters"),
  9210. weight: math.unit(1000, "lb"),
  9211. name: "Side",
  9212. image: {
  9213. source: "./media/characters/rovoska/side.svg",
  9214. extra: 4403 / 1515
  9215. }
  9216. },
  9217. },
  9218. [
  9219. {
  9220. name: "Normal",
  9221. height: math.unit(3.4, "meters"),
  9222. default: true
  9223. },
  9224. ]
  9225. ))
  9226. characterMakers.push(() => makeCharacter(
  9227. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9228. {
  9229. front: {
  9230. height: math.unit(8, "feet"),
  9231. weight: math.unit(315, "lb"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/gunner-rotthbauer/front.svg"
  9235. }
  9236. },
  9237. back: {
  9238. height: math.unit(8, "feet"),
  9239. weight: math.unit(315, "lb"),
  9240. name: "Back",
  9241. image: {
  9242. source: "./media/characters/gunner-rotthbauer/back.svg"
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Micro",
  9249. height: math.unit(3.5, "inches")
  9250. },
  9251. {
  9252. name: "Normal",
  9253. height: math.unit(8, "feet"),
  9254. default: true
  9255. },
  9256. {
  9257. name: "Macro",
  9258. height: math.unit(250, "feet")
  9259. },
  9260. {
  9261. name: "Megamacro",
  9262. height: math.unit(1, "AU")
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(5 + 5 / 12, "feet"),
  9271. weight: math.unit(140, "lb"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/allatia/front.svg",
  9275. extra: 1227 / 1180,
  9276. bottom: 0.027
  9277. }
  9278. },
  9279. },
  9280. [
  9281. {
  9282. name: "Normal",
  9283. height: math.unit(5 + 5 / 12, "feet")
  9284. },
  9285. {
  9286. name: "Macro",
  9287. height: math.unit(250, "feet"),
  9288. default: true
  9289. },
  9290. {
  9291. name: "Megamacro",
  9292. height: math.unit(8, "miles")
  9293. }
  9294. ]
  9295. ))
  9296. characterMakers.push(() => makeCharacter(
  9297. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9298. {
  9299. front: {
  9300. height: math.unit(6, "feet"),
  9301. weight: math.unit(120, "lb"),
  9302. name: "Front",
  9303. image: {
  9304. source: "./media/characters/tene/front.svg",
  9305. extra: 1728 / 1578,
  9306. bottom: 0.022
  9307. }
  9308. },
  9309. stomping: {
  9310. height: math.unit(2.025, "meters"),
  9311. weight: math.unit(120, "lb"),
  9312. name: "Stomping",
  9313. image: {
  9314. source: "./media/characters/tene/stomping.svg",
  9315. extra: 938 / 873,
  9316. bottom: 0.01
  9317. }
  9318. },
  9319. sitting: {
  9320. height: math.unit(1, "meter"),
  9321. weight: math.unit(120, "lb"),
  9322. name: "Sitting",
  9323. image: {
  9324. source: "./media/characters/tene/sitting.svg",
  9325. extra: 437 / 415,
  9326. bottom: 0.1
  9327. }
  9328. },
  9329. feral: {
  9330. height: math.unit(3.9, "feet"),
  9331. weight: math.unit(250, "lb"),
  9332. name: "Feral",
  9333. image: {
  9334. source: "./media/characters/tene/feral.svg",
  9335. extra: 717 / 458,
  9336. bottom: 0.179
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(6, "feet")
  9344. },
  9345. {
  9346. name: "Macro",
  9347. height: math.unit(300, "feet"),
  9348. default: true
  9349. },
  9350. {
  9351. name: "Megamacro",
  9352. height: math.unit(5, "miles")
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9358. {
  9359. side: {
  9360. height: math.unit(6, "feet"),
  9361. name: "Side",
  9362. image: {
  9363. source: "./media/characters/evander/side.svg",
  9364. extra: 877 / 477
  9365. }
  9366. },
  9367. },
  9368. [
  9369. {
  9370. name: "Normal",
  9371. height: math.unit(0.83, "meters"),
  9372. default: true
  9373. },
  9374. ]
  9375. ))
  9376. characterMakers.push(() => makeCharacter(
  9377. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9378. {
  9379. front: {
  9380. height: math.unit(12, "feet"),
  9381. weight: math.unit(1000, "lb"),
  9382. name: "Front",
  9383. image: {
  9384. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9385. extra: 1762 / 1611
  9386. }
  9387. },
  9388. back: {
  9389. height: math.unit(12, "feet"),
  9390. weight: math.unit(1000, "lb"),
  9391. name: "Back",
  9392. image: {
  9393. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9394. extra: 1762 / 1611
  9395. }
  9396. },
  9397. },
  9398. [
  9399. {
  9400. name: "Normal",
  9401. height: math.unit(12, "feet"),
  9402. default: true
  9403. },
  9404. {
  9405. name: "Kaiju",
  9406. height: math.unit(150, "feet")
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9412. {
  9413. front: {
  9414. height: math.unit(6, "feet"),
  9415. weight: math.unit(150, "lb"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/zero-alurus/front.svg"
  9419. }
  9420. },
  9421. back: {
  9422. height: math.unit(6, "feet"),
  9423. weight: math.unit(150, "lb"),
  9424. name: "Back",
  9425. image: {
  9426. source: "./media/characters/zero-alurus/back.svg"
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(5 + 10 / 12, "feet")
  9434. },
  9435. {
  9436. name: "Macro",
  9437. height: math.unit(60, "feet"),
  9438. default: true
  9439. },
  9440. {
  9441. name: "Macro+",
  9442. height: math.unit(450, "feet")
  9443. },
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9448. {
  9449. front: {
  9450. height: math.unit(6, "feet"),
  9451. weight: math.unit(200, "lb"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/mega-shi/front.svg",
  9455. extra: 1279 / 1250,
  9456. bottom: 0.02
  9457. }
  9458. },
  9459. back: {
  9460. height: math.unit(6, "feet"),
  9461. weight: math.unit(200, "lb"),
  9462. name: "Back",
  9463. image: {
  9464. source: "./media/characters/mega-shi/back.svg",
  9465. extra: 1279 / 1250,
  9466. bottom: 0.02
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Micro",
  9473. height: math.unit(16 + 6 / 12, "feet")
  9474. },
  9475. {
  9476. name: "Third Dimension",
  9477. height: math.unit(40, "meters")
  9478. },
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(660, "feet"),
  9482. default: true
  9483. },
  9484. {
  9485. name: "Megamacro",
  9486. height: math.unit(10, "miles")
  9487. },
  9488. {
  9489. name: "Planetary Launch",
  9490. height: math.unit(500, "miles")
  9491. },
  9492. {
  9493. name: "Interstellar",
  9494. height: math.unit(1e9, "miles")
  9495. },
  9496. {
  9497. name: "Leaving the Universe",
  9498. height: math.unit(1, "gigaparsec")
  9499. },
  9500. {
  9501. name: "Travelling Universes",
  9502. height: math.unit(30e15, "parsecs")
  9503. },
  9504. ]
  9505. ))
  9506. characterMakers.push(() => makeCharacter(
  9507. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9508. {
  9509. front: {
  9510. height: math.unit(6, "feet"),
  9511. weight: math.unit(150, "lb"),
  9512. name: "Front",
  9513. image: {
  9514. source: "./media/characters/odyssey/front.svg",
  9515. extra: 1782 / 1582,
  9516. bottom: 0.01
  9517. }
  9518. },
  9519. side: {
  9520. height: math.unit(5.7, "feet"),
  9521. weight: math.unit(140, "lb"),
  9522. name: "Side",
  9523. image: {
  9524. source: "./media/characters/odyssey/side.svg",
  9525. extra: 6462 / 5700
  9526. }
  9527. },
  9528. },
  9529. [
  9530. {
  9531. name: "Normal",
  9532. height: math.unit(5 + 4 / 12, "feet")
  9533. },
  9534. {
  9535. name: "Macro",
  9536. height: math.unit(1, "km")
  9537. },
  9538. {
  9539. name: "Megamacro",
  9540. height: math.unit(3000, "km")
  9541. },
  9542. {
  9543. name: "Gigamacro",
  9544. height: math.unit(1, "AU"),
  9545. default: true
  9546. },
  9547. {
  9548. name: "Omniversal",
  9549. height: math.unit(100e14, "lightyears")
  9550. },
  9551. ]
  9552. ))
  9553. characterMakers.push(() => makeCharacter(
  9554. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9555. {
  9556. front: {
  9557. height: math.unit(6, "feet"),
  9558. weight: math.unit(300, "lb"),
  9559. name: "Front",
  9560. image: {
  9561. source: "./media/characters/mekuto/front.svg",
  9562. extra: 921 / 832,
  9563. bottom: 0.03
  9564. }
  9565. },
  9566. hand: {
  9567. height: math.unit(6 / 10.24, "feet"),
  9568. name: "Hand",
  9569. image: {
  9570. source: "./media/characters/mekuto/hand.svg"
  9571. }
  9572. },
  9573. foot: {
  9574. height: math.unit(6 / 5.05, "feet"),
  9575. name: "Foot",
  9576. image: {
  9577. source: "./media/characters/mekuto/foot.svg"
  9578. }
  9579. },
  9580. },
  9581. [
  9582. {
  9583. name: "Minimicro",
  9584. height: math.unit(0.2, "inches")
  9585. },
  9586. {
  9587. name: "Micro",
  9588. height: math.unit(1.5, "inches")
  9589. },
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(5 + 11 / 12, "feet"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Minimacro",
  9597. height: math.unit(17 + 9 / 12, "feet")
  9598. },
  9599. {
  9600. name: "Macro",
  9601. height: math.unit(177.5, "feet")
  9602. },
  9603. {
  9604. name: "Megamacro",
  9605. height: math.unit(152, "miles")
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(6.5, "inches"),
  9614. weight: math.unit(13, "oz"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/dafydd-tomos/front.svg",
  9618. extra: 2990 / 2603,
  9619. bottom: 0.03
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Micro",
  9626. height: math.unit(6.5, "inches"),
  9627. default: true
  9628. },
  9629. ]
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9633. {
  9634. front: {
  9635. height: math.unit(6, "feet"),
  9636. weight: math.unit(150, "lb"),
  9637. name: "Front",
  9638. image: {
  9639. source: "./media/characters/splinter/front.svg",
  9640. extra: 2990 / 2882,
  9641. bottom: 0.04
  9642. }
  9643. },
  9644. back: {
  9645. height: math.unit(6, "feet"),
  9646. weight: math.unit(150, "lb"),
  9647. name: "Back",
  9648. image: {
  9649. source: "./media/characters/splinter/back.svg",
  9650. extra: 2990 / 2882,
  9651. bottom: 0.04
  9652. }
  9653. },
  9654. },
  9655. [
  9656. {
  9657. name: "Normal",
  9658. height: math.unit(6, "feet")
  9659. },
  9660. {
  9661. name: "Macro",
  9662. height: math.unit(230, "meters"),
  9663. default: true
  9664. },
  9665. ]
  9666. ))
  9667. characterMakers.push(() => makeCharacter(
  9668. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9669. {
  9670. front: {
  9671. height: math.unit(4 + 10 / 12, "feet"),
  9672. weight: math.unit(480, "lb"),
  9673. name: "Front",
  9674. image: {
  9675. source: "./media/characters/snow-gabumon/front.svg",
  9676. extra: 1140 / 963,
  9677. bottom: 0.058
  9678. }
  9679. },
  9680. back: {
  9681. height: math.unit(4 + 10 / 12, "feet"),
  9682. weight: math.unit(480, "lb"),
  9683. name: "Back",
  9684. image: {
  9685. source: "./media/characters/snow-gabumon/back.svg",
  9686. extra: 1115 / 962,
  9687. bottom: 0.041
  9688. }
  9689. },
  9690. frontUndresed: {
  9691. height: math.unit(4 + 10 / 12, "feet"),
  9692. weight: math.unit(480, "lb"),
  9693. name: "Front (Undressed)",
  9694. image: {
  9695. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9696. extra: 1061 / 960,
  9697. bottom: 0.045
  9698. }
  9699. },
  9700. },
  9701. [
  9702. {
  9703. name: "Micro",
  9704. height: math.unit(1, "inch")
  9705. },
  9706. {
  9707. name: "Normal",
  9708. height: math.unit(4 + 10 / 12, "feet"),
  9709. default: true
  9710. },
  9711. {
  9712. name: "Macro",
  9713. height: math.unit(200, "feet")
  9714. },
  9715. {
  9716. name: "Megamacro",
  9717. height: math.unit(120, "miles")
  9718. },
  9719. {
  9720. name: "Gigamacro",
  9721. height: math.unit(9800, "miles")
  9722. },
  9723. ]
  9724. ))
  9725. characterMakers.push(() => makeCharacter(
  9726. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9727. {
  9728. front: {
  9729. height: math.unit(1.7, "meters"),
  9730. weight: math.unit(140, "lb"),
  9731. name: "Front",
  9732. image: {
  9733. source: "./media/characters/moody/front.svg",
  9734. extra: 3226 / 3007,
  9735. bottom: 0.087
  9736. }
  9737. },
  9738. },
  9739. [
  9740. {
  9741. name: "Micro",
  9742. height: math.unit(1, "mm")
  9743. },
  9744. {
  9745. name: "Normal",
  9746. height: math.unit(1.7, "meters"),
  9747. default: true
  9748. },
  9749. {
  9750. name: "Macro",
  9751. height: math.unit(80, "meters")
  9752. },
  9753. {
  9754. name: "Macro+",
  9755. height: math.unit(500, "meters")
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9761. {
  9762. front: {
  9763. height: math.unit(6, "feet"),
  9764. weight: math.unit(150, "lb"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/zyas/front.svg",
  9768. extra: 1180 / 1120,
  9769. bottom: 0.045
  9770. }
  9771. },
  9772. },
  9773. [
  9774. {
  9775. name: "Normal",
  9776. height: math.unit(10, "feet"),
  9777. default: true
  9778. },
  9779. {
  9780. name: "Macro",
  9781. height: math.unit(500, "feet")
  9782. },
  9783. {
  9784. name: "Megamacro",
  9785. height: math.unit(5, "miles")
  9786. },
  9787. {
  9788. name: "Teramacro",
  9789. height: math.unit(150000, "miles")
  9790. },
  9791. ]
  9792. ))
  9793. characterMakers.push(() => makeCharacter(
  9794. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9795. {
  9796. front: {
  9797. height: math.unit(6, "feet"),
  9798. weight: math.unit(150, "lb"),
  9799. name: "Front",
  9800. image: {
  9801. source: "./media/characters/cuon/front.svg",
  9802. extra: 1390 / 1320,
  9803. bottom: 0.008
  9804. }
  9805. },
  9806. },
  9807. [
  9808. {
  9809. name: "Micro",
  9810. height: math.unit(3, "inches")
  9811. },
  9812. {
  9813. name: "Normal",
  9814. height: math.unit(18 + 9 / 12, "feet"),
  9815. default: true
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(360, "feet")
  9820. },
  9821. {
  9822. name: "Megamacro",
  9823. height: math.unit(360, "miles")
  9824. },
  9825. ]
  9826. ))
  9827. characterMakers.push(() => makeCharacter(
  9828. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9829. {
  9830. front: {
  9831. height: math.unit(2.4, "meters"),
  9832. weight: math.unit(70, "kg"),
  9833. name: "Front",
  9834. image: {
  9835. source: "./media/characters/nyanuxk/front.svg",
  9836. extra: 1172 / 1084,
  9837. bottom: 0.065
  9838. }
  9839. },
  9840. side: {
  9841. height: math.unit(2.4, "meters"),
  9842. weight: math.unit(70, "kg"),
  9843. name: "Side",
  9844. image: {
  9845. source: "./media/characters/nyanuxk/side.svg",
  9846. extra: 1190 / 1132,
  9847. bottom: 0.007
  9848. }
  9849. },
  9850. back: {
  9851. height: math.unit(2.4, "meters"),
  9852. weight: math.unit(70, "kg"),
  9853. name: "Back",
  9854. image: {
  9855. source: "./media/characters/nyanuxk/back.svg",
  9856. extra: 1200 / 1141,
  9857. bottom: 0.015
  9858. }
  9859. },
  9860. foot: {
  9861. height: math.unit(0.52, "meters"),
  9862. name: "Foot",
  9863. image: {
  9864. source: "./media/characters/nyanuxk/foot.svg"
  9865. }
  9866. },
  9867. },
  9868. [
  9869. {
  9870. name: "Micro",
  9871. height: math.unit(2, "cm")
  9872. },
  9873. {
  9874. name: "Normal",
  9875. height: math.unit(2.4, "meters"),
  9876. default: true
  9877. },
  9878. {
  9879. name: "Smaller Macro",
  9880. height: math.unit(120, "meters")
  9881. },
  9882. {
  9883. name: "Bigger Macro",
  9884. height: math.unit(1.2, "km")
  9885. },
  9886. {
  9887. name: "Megamacro",
  9888. height: math.unit(15, "kilometers")
  9889. },
  9890. {
  9891. name: "Gigamacro",
  9892. height: math.unit(2000, "km")
  9893. },
  9894. {
  9895. name: "Teramacro",
  9896. height: math.unit(500000, "km")
  9897. },
  9898. ]
  9899. ))
  9900. characterMakers.push(() => makeCharacter(
  9901. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9902. {
  9903. side: {
  9904. height: math.unit(6, "feet"),
  9905. name: "Side",
  9906. image: {
  9907. source: "./media/characters/ailbhe/side.svg",
  9908. extra: 757 / 464,
  9909. bottom: 0.041
  9910. }
  9911. },
  9912. },
  9913. [
  9914. {
  9915. name: "Normal",
  9916. height: math.unit(1.07, "meters"),
  9917. default: true
  9918. },
  9919. ]
  9920. ))
  9921. characterMakers.push(() => makeCharacter(
  9922. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9923. {
  9924. front: {
  9925. height: math.unit(6, "feet"),
  9926. weight: math.unit(120, "kg"),
  9927. name: "Front",
  9928. image: {
  9929. source: "./media/characters/zevulfius/front.svg",
  9930. extra: 965 / 903
  9931. }
  9932. },
  9933. side: {
  9934. height: math.unit(6, "feet"),
  9935. weight: math.unit(120, "kg"),
  9936. name: "Side",
  9937. image: {
  9938. source: "./media/characters/zevulfius/side.svg",
  9939. extra: 939 / 900
  9940. }
  9941. },
  9942. back: {
  9943. height: math.unit(6, "feet"),
  9944. weight: math.unit(120, "kg"),
  9945. name: "Back",
  9946. image: {
  9947. source: "./media/characters/zevulfius/back.svg",
  9948. extra: 918 / 854,
  9949. bottom: 0.005
  9950. }
  9951. },
  9952. foot: {
  9953. height: math.unit(6 / 3.72, "feet"),
  9954. name: "Foot",
  9955. image: {
  9956. source: "./media/characters/zevulfius/foot.svg"
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Macro",
  9963. height: math.unit(750, "meters")
  9964. },
  9965. {
  9966. name: "Megamacro",
  9967. height: math.unit(20, "km"),
  9968. default: true
  9969. },
  9970. {
  9971. name: "Gigamacro",
  9972. height: math.unit(2000, "km")
  9973. },
  9974. {
  9975. name: "Teramacro",
  9976. height: math.unit(250000, "km")
  9977. },
  9978. ]
  9979. ))
  9980. characterMakers.push(() => makeCharacter(
  9981. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9982. {
  9983. front: {
  9984. height: math.unit(100, "feet"),
  9985. weight: math.unit(350, "kg"),
  9986. name: "Front",
  9987. image: {
  9988. source: "./media/characters/rikes/front.svg",
  9989. extra: 1565 / 1483,
  9990. bottom: 0.017
  9991. }
  9992. },
  9993. },
  9994. [
  9995. {
  9996. name: "Macro",
  9997. height: math.unit(100, "feet"),
  9998. default: true
  9999. },
  10000. ]
  10001. ))
  10002. characterMakers.push(() => makeCharacter(
  10003. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10004. {
  10005. anthro: {
  10006. height: math.unit(8, "feet"),
  10007. weight: math.unit(120, "kg"),
  10008. name: "Anthro",
  10009. image: {
  10010. source: "./media/characters/adam-silver-mane/anthro.svg",
  10011. extra: 5743 / 5339,
  10012. bottom: 0.07
  10013. }
  10014. },
  10015. taur: {
  10016. height: math.unit(16, "feet"),
  10017. weight: math.unit(1500, "kg"),
  10018. name: "Taur",
  10019. image: {
  10020. source: "./media/characters/adam-silver-mane/taur.svg",
  10021. extra: 1713 / 1571,
  10022. bottom: 0.01
  10023. }
  10024. },
  10025. },
  10026. [
  10027. {
  10028. name: "Normal",
  10029. height: math.unit(8, "feet")
  10030. },
  10031. {
  10032. name: "Minimacro",
  10033. height: math.unit(80, "feet")
  10034. },
  10035. {
  10036. name: "Macro",
  10037. height: math.unit(800, "feet"),
  10038. default: true
  10039. },
  10040. {
  10041. name: "Megamacro",
  10042. height: math.unit(8000, "feet")
  10043. },
  10044. {
  10045. name: "Gigamacro",
  10046. height: math.unit(800, "miles")
  10047. },
  10048. {
  10049. name: "Teramacro",
  10050. height: math.unit(80000, "miles")
  10051. },
  10052. {
  10053. name: "Celestial",
  10054. height: math.unit(8e6, "miles")
  10055. },
  10056. {
  10057. name: "Star Dragon",
  10058. height: math.unit(800000, "parsecs")
  10059. },
  10060. {
  10061. name: "Godly",
  10062. height: math.unit(800, "teraparsecs")
  10063. },
  10064. ]
  10065. ))
  10066. characterMakers.push(() => makeCharacter(
  10067. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10068. {
  10069. front: {
  10070. height: math.unit(6, "feet"),
  10071. weight: math.unit(150, "lb"),
  10072. name: "Front",
  10073. image: {
  10074. source: "./media/characters/ky'owin/front.svg",
  10075. extra: 3888 / 3068,
  10076. bottom: 0.015
  10077. }
  10078. },
  10079. },
  10080. [
  10081. {
  10082. name: "Normal",
  10083. height: math.unit(6 + 8 / 12, "feet")
  10084. },
  10085. {
  10086. name: "Large",
  10087. height: math.unit(68, "feet")
  10088. },
  10089. {
  10090. name: "Macro",
  10091. height: math.unit(132, "feet")
  10092. },
  10093. {
  10094. name: "Macro+",
  10095. height: math.unit(340, "feet")
  10096. },
  10097. {
  10098. name: "Macro++",
  10099. height: math.unit(680, "feet"),
  10100. default: true
  10101. },
  10102. {
  10103. name: "Megamacro",
  10104. height: math.unit(1, "mile")
  10105. },
  10106. {
  10107. name: "Megamacro+",
  10108. height: math.unit(10, "miles")
  10109. },
  10110. ]
  10111. ))
  10112. characterMakers.push(() => makeCharacter(
  10113. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10114. {
  10115. front: {
  10116. height: math.unit(4, "feet"),
  10117. weight: math.unit(50, "lb"),
  10118. name: "Front",
  10119. image: {
  10120. source: "./media/characters/mal/front.svg",
  10121. extra: 785 / 724,
  10122. bottom: 0.07
  10123. }
  10124. },
  10125. },
  10126. [
  10127. {
  10128. name: "Micro",
  10129. height: math.unit(4, "inches")
  10130. },
  10131. {
  10132. name: "Normal",
  10133. height: math.unit(4, "feet"),
  10134. default: true
  10135. },
  10136. {
  10137. name: "Macro",
  10138. height: math.unit(200, "feet")
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(6, "feet"),
  10147. weight: math.unit(150, "lb"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/jordan-deware/front.svg",
  10151. extra: 1191 / 1012
  10152. }
  10153. },
  10154. },
  10155. [
  10156. {
  10157. name: "Nano",
  10158. height: math.unit(0.01, "mm")
  10159. },
  10160. {
  10161. name: "Minimicro",
  10162. height: math.unit(1, "mm")
  10163. },
  10164. {
  10165. name: "Micro",
  10166. height: math.unit(0.5, "inches")
  10167. },
  10168. {
  10169. name: "Normal",
  10170. height: math.unit(4, "feet"),
  10171. default: true
  10172. },
  10173. {
  10174. name: "Minimacro",
  10175. height: math.unit(40, "meters")
  10176. },
  10177. {
  10178. name: "Small Macro",
  10179. height: math.unit(400, "meters")
  10180. },
  10181. {
  10182. name: "Macro",
  10183. height: math.unit(4, "miles")
  10184. },
  10185. {
  10186. name: "Megamacro",
  10187. height: math.unit(40, "miles")
  10188. },
  10189. {
  10190. name: "Megamacro+",
  10191. height: math.unit(400, "miles")
  10192. },
  10193. {
  10194. name: "Gigamacro",
  10195. height: math.unit(400000, "miles")
  10196. },
  10197. ]
  10198. ))
  10199. characterMakers.push(() => makeCharacter(
  10200. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10201. {
  10202. side: {
  10203. height: math.unit(6, "feet"),
  10204. weight: math.unit(150, "lb"),
  10205. name: "Side",
  10206. image: {
  10207. source: "./media/characters/kimiko/side.svg",
  10208. extra: 600 / 358
  10209. }
  10210. },
  10211. },
  10212. [
  10213. {
  10214. name: "Normal",
  10215. height: math.unit(15, "feet"),
  10216. default: true
  10217. },
  10218. {
  10219. name: "Macro",
  10220. height: math.unit(220, "feet")
  10221. },
  10222. {
  10223. name: "Macro+",
  10224. height: math.unit(1450, "feet")
  10225. },
  10226. {
  10227. name: "Megamacro",
  10228. height: math.unit(11500, "feet")
  10229. },
  10230. {
  10231. name: "Gigamacro",
  10232. height: math.unit(9500, "miles")
  10233. },
  10234. {
  10235. name: "Teramacro",
  10236. height: math.unit(2208005005, "miles")
  10237. },
  10238. {
  10239. name: "Examacro",
  10240. height: math.unit(2750, "parsecs")
  10241. },
  10242. {
  10243. name: "Zettamacro",
  10244. height: math.unit(101500, "parsecs")
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10250. {
  10251. front: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(70, "kg"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/andrew-sleepy/front.svg"
  10257. }
  10258. },
  10259. side: {
  10260. height: math.unit(6, "feet"),
  10261. weight: math.unit(70, "kg"),
  10262. name: "Side",
  10263. image: {
  10264. source: "./media/characters/andrew-sleepy/side.svg"
  10265. }
  10266. },
  10267. },
  10268. [
  10269. {
  10270. name: "Micro",
  10271. height: math.unit(1, "mm"),
  10272. default: true
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(150, "lb"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/judio/front.svg",
  10285. extra: 1258 / 1110
  10286. }
  10287. },
  10288. },
  10289. [
  10290. {
  10291. name: "Normal",
  10292. height: math.unit(5 + 6 / 12, "feet")
  10293. },
  10294. {
  10295. name: "Macro",
  10296. height: math.unit(1000, "feet"),
  10297. default: true
  10298. },
  10299. {
  10300. name: "Megamacro",
  10301. height: math.unit(10, "miles")
  10302. },
  10303. ]
  10304. ))
  10305. characterMakers.push(() => makeCharacter(
  10306. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10307. {
  10308. front: {
  10309. height: math.unit(6, "feet"),
  10310. weight: math.unit(68, "kg"),
  10311. name: "Front",
  10312. image: {
  10313. source: "./media/characters/nomaxice/front.svg",
  10314. extra: 1498 / 1073,
  10315. bottom: 0.075
  10316. }
  10317. },
  10318. foot: {
  10319. height: math.unit(1.1, "feet"),
  10320. name: "Foot",
  10321. image: {
  10322. source: "./media/characters/nomaxice/foot.svg"
  10323. }
  10324. },
  10325. },
  10326. [
  10327. {
  10328. name: "Micro",
  10329. height: math.unit(8, "cm")
  10330. },
  10331. {
  10332. name: "Norm",
  10333. height: math.unit(1.82, "m")
  10334. },
  10335. {
  10336. name: "Norm+",
  10337. height: math.unit(8.8, "feet")
  10338. },
  10339. {
  10340. name: "Big",
  10341. height: math.unit(8, "meters"),
  10342. default: true
  10343. },
  10344. {
  10345. name: "Macro",
  10346. height: math.unit(18, "meters")
  10347. },
  10348. {
  10349. name: "Macro+",
  10350. height: math.unit(88, "meters")
  10351. },
  10352. ]
  10353. ))
  10354. characterMakers.push(() => makeCharacter(
  10355. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10356. {
  10357. front: {
  10358. height: math.unit(12, "feet"),
  10359. weight: math.unit(1.5, "tons"),
  10360. name: "Front",
  10361. image: {
  10362. source: "./media/characters/dydros/front.svg",
  10363. extra: 863 / 800,
  10364. bottom: 0.015
  10365. }
  10366. },
  10367. back: {
  10368. height: math.unit(12, "feet"),
  10369. weight: math.unit(1.5, "tons"),
  10370. name: "Back",
  10371. image: {
  10372. source: "./media/characters/dydros/back.svg",
  10373. extra: 900 / 843,
  10374. bottom: 0.005
  10375. }
  10376. },
  10377. },
  10378. [
  10379. {
  10380. name: "Normal",
  10381. height: math.unit(12, "feet"),
  10382. default: true
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10388. {
  10389. front: {
  10390. height: math.unit(6, "feet"),
  10391. weight: math.unit(100, "kg"),
  10392. name: "Front",
  10393. image: {
  10394. source: "./media/characters/riggi/front.svg",
  10395. extra: 5787 / 5303
  10396. }
  10397. },
  10398. hyper: {
  10399. height: math.unit(6 * 5 / 3, "feet"),
  10400. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10401. name: "Hyper",
  10402. image: {
  10403. source: "./media/characters/riggi/hyper.svg",
  10404. extra: 3595 / 3485
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Small Macro",
  10411. height: math.unit(50, "feet")
  10412. },
  10413. {
  10414. name: "Default",
  10415. height: math.unit(200, "feet"),
  10416. default: true
  10417. },
  10418. {
  10419. name: "Loom",
  10420. height: math.unit(10000, "feet")
  10421. },
  10422. {
  10423. name: "Cruising Altitude",
  10424. height: math.unit(30000, "feet")
  10425. },
  10426. {
  10427. name: "Megamacro",
  10428. height: math.unit(100, "miles")
  10429. },
  10430. {
  10431. name: "Continent Sized",
  10432. height: math.unit(2800, "miles")
  10433. },
  10434. {
  10435. name: "Earth Sized",
  10436. height: math.unit(8000, "miles")
  10437. },
  10438. ]
  10439. ))
  10440. characterMakers.push(() => makeCharacter(
  10441. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10442. {
  10443. front: {
  10444. height: math.unit(6, "feet"),
  10445. weight: math.unit(250, "lb"),
  10446. name: "Front",
  10447. image: {
  10448. source: "./media/characters/alexi/front.svg",
  10449. extra: 3483 / 3291,
  10450. bottom: 0.04
  10451. }
  10452. },
  10453. back: {
  10454. height: math.unit(6, "feet"),
  10455. weight: math.unit(250, "lb"),
  10456. name: "Back",
  10457. image: {
  10458. source: "./media/characters/alexi/back.svg",
  10459. extra: 3533 / 3356,
  10460. bottom: 0.021
  10461. }
  10462. },
  10463. frontTransforming: {
  10464. height: math.unit(8.58, "feet"),
  10465. weight: math.unit(1300, "lb"),
  10466. name: "Transforming",
  10467. image: {
  10468. source: "./media/characters/alexi/front-transforming.svg",
  10469. extra: 437 / 409,
  10470. bottom: 19 / 458.66
  10471. }
  10472. },
  10473. frontTransformed: {
  10474. height: math.unit(12.5, "feet"),
  10475. weight: math.unit(4000, "lb"),
  10476. name: "Transformed",
  10477. image: {
  10478. source: "./media/characters/alexi/front-transformed.svg",
  10479. extra: 639 / 614,
  10480. bottom: 30.55 / 671
  10481. }
  10482. },
  10483. },
  10484. [
  10485. {
  10486. name: "Normal",
  10487. height: math.unit(14, "feet"),
  10488. default: true
  10489. },
  10490. {
  10491. name: "Minimacro",
  10492. height: math.unit(30, "meters")
  10493. },
  10494. {
  10495. name: "Macro",
  10496. height: math.unit(500, "meters")
  10497. },
  10498. {
  10499. name: "Megamacro",
  10500. height: math.unit(9000, "km")
  10501. },
  10502. {
  10503. name: "Teramacro",
  10504. height: math.unit(384000, "km")
  10505. },
  10506. ]
  10507. ))
  10508. characterMakers.push(() => makeCharacter(
  10509. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10510. {
  10511. front: {
  10512. height: math.unit(6, "feet"),
  10513. weight: math.unit(150, "lb"),
  10514. name: "Front",
  10515. image: {
  10516. source: "./media/characters/kayroo/front.svg",
  10517. extra: 1153 / 1038,
  10518. bottom: 0.06
  10519. }
  10520. },
  10521. foot: {
  10522. height: math.unit(6, "feet"),
  10523. weight: math.unit(150, "lb"),
  10524. name: "Foot",
  10525. image: {
  10526. source: "./media/characters/kayroo/foot.svg"
  10527. }
  10528. },
  10529. },
  10530. [
  10531. {
  10532. name: "Normal",
  10533. height: math.unit(8, "feet"),
  10534. default: true
  10535. },
  10536. {
  10537. name: "Minimacro",
  10538. height: math.unit(250, "feet")
  10539. },
  10540. {
  10541. name: "Macro",
  10542. height: math.unit(2800, "feet")
  10543. },
  10544. {
  10545. name: "Megamacro",
  10546. height: math.unit(5200, "feet")
  10547. },
  10548. {
  10549. name: "Gigamacro",
  10550. height: math.unit(27000, "feet")
  10551. },
  10552. {
  10553. name: "Omega",
  10554. height: math.unit(45000, "feet")
  10555. },
  10556. ]
  10557. ))
  10558. characterMakers.push(() => makeCharacter(
  10559. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10560. {
  10561. front: {
  10562. height: math.unit(18, "feet"),
  10563. weight: math.unit(5800, "lb"),
  10564. name: "Front",
  10565. image: {
  10566. source: "./media/characters/rhys/front.svg",
  10567. extra: 3386 / 3090,
  10568. bottom: 0.07
  10569. }
  10570. },
  10571. },
  10572. [
  10573. {
  10574. name: "Normal",
  10575. height: math.unit(18, "feet"),
  10576. default: true
  10577. },
  10578. {
  10579. name: "Working Size",
  10580. height: math.unit(200, "feet")
  10581. },
  10582. {
  10583. name: "Demolition Size",
  10584. height: math.unit(2000, "feet")
  10585. },
  10586. {
  10587. name: "Maximum Licensed Size",
  10588. height: math.unit(5, "miles")
  10589. },
  10590. {
  10591. name: "Maximum Observed Size",
  10592. height: math.unit(10, "yottameters")
  10593. },
  10594. ]
  10595. ))
  10596. characterMakers.push(() => makeCharacter(
  10597. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10598. {
  10599. front: {
  10600. height: math.unit(6, "feet"),
  10601. weight: math.unit(250, "lb"),
  10602. name: "Front",
  10603. image: {
  10604. source: "./media/characters/toto/front.svg",
  10605. extra: 527 / 479,
  10606. bottom: 0.05
  10607. }
  10608. },
  10609. },
  10610. [
  10611. {
  10612. name: "Micro",
  10613. height: math.unit(3, "feet")
  10614. },
  10615. {
  10616. name: "Normal",
  10617. height: math.unit(10, "feet")
  10618. },
  10619. {
  10620. name: "Macro",
  10621. height: math.unit(150, "feet"),
  10622. default: true
  10623. },
  10624. {
  10625. name: "Megamacro",
  10626. height: math.unit(1200, "feet")
  10627. },
  10628. ]
  10629. ))
  10630. characterMakers.push(() => makeCharacter(
  10631. { name: "King", species: ["lion"], tags: ["anthro"] },
  10632. {
  10633. back: {
  10634. height: math.unit(6, "feet"),
  10635. weight: math.unit(150, "lb"),
  10636. name: "Back",
  10637. image: {
  10638. source: "./media/characters/king/back.svg"
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Micro",
  10645. height: math.unit(2, "inches")
  10646. },
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(8, "feet")
  10650. },
  10651. {
  10652. name: "Macro",
  10653. height: math.unit(200, "feet"),
  10654. default: true
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(50, "miles")
  10659. },
  10660. ]
  10661. ))
  10662. characterMakers.push(() => makeCharacter(
  10663. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10664. {
  10665. anthro: {
  10666. height: math.unit(6 + 5 / 12, "feet"),
  10667. weight: math.unit(280, "lb"),
  10668. name: "Anthro",
  10669. image: {
  10670. source: "./media/characters/cordite/anthro.svg",
  10671. extra: 1986 / 1905,
  10672. bottom: 0.025
  10673. }
  10674. },
  10675. feral: {
  10676. height: math.unit(2, "feet"),
  10677. weight: math.unit(90, "lb"),
  10678. name: "Feral",
  10679. image: {
  10680. source: "./media/characters/cordite/feral.svg",
  10681. extra: 1260 / 755,
  10682. bottom: 0.05
  10683. }
  10684. },
  10685. },
  10686. [
  10687. {
  10688. name: "Normal",
  10689. height: math.unit(6 + 5 / 12, "feet"),
  10690. default: true
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10696. {
  10697. front: {
  10698. height: math.unit(6, "feet"),
  10699. weight: math.unit(150, "lb"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/pianostrong/front.svg",
  10703. extra: 6577 / 6254,
  10704. bottom: 0.02
  10705. }
  10706. },
  10707. side: {
  10708. height: math.unit(6, "feet"),
  10709. weight: math.unit(150, "lb"),
  10710. name: "Side",
  10711. image: {
  10712. source: "./media/characters/pianostrong/side.svg",
  10713. extra: 6106 / 5730
  10714. }
  10715. },
  10716. back: {
  10717. height: math.unit(6, "feet"),
  10718. weight: math.unit(150, "lb"),
  10719. name: "Back",
  10720. image: {
  10721. source: "./media/characters/pianostrong/back.svg",
  10722. extra: 6085 / 5733,
  10723. bottom: 0.01
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Macro",
  10730. height: math.unit(100, "feet")
  10731. },
  10732. {
  10733. name: "Macro+",
  10734. height: math.unit(300, "feet"),
  10735. default: true
  10736. },
  10737. {
  10738. name: "Macro++",
  10739. height: math.unit(1000, "feet")
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10745. {
  10746. front: {
  10747. height: math.unit(6, "feet"),
  10748. weight: math.unit(150, "lb"),
  10749. name: "Front",
  10750. image: {
  10751. source: "./media/characters/kona/front.svg",
  10752. extra: 2960 / 2629,
  10753. bottom: 0.005
  10754. }
  10755. },
  10756. },
  10757. [
  10758. {
  10759. name: "Normal",
  10760. height: math.unit(11 + 8 / 12, "feet")
  10761. },
  10762. {
  10763. name: "Macro",
  10764. height: math.unit(850, "feet"),
  10765. default: true
  10766. },
  10767. {
  10768. name: "Macro+",
  10769. height: math.unit(1.5, "km"),
  10770. default: true
  10771. },
  10772. {
  10773. name: "Megamacro",
  10774. height: math.unit(80, "miles")
  10775. },
  10776. {
  10777. name: "Gigamacro",
  10778. height: math.unit(3500, "miles")
  10779. },
  10780. ]
  10781. ))
  10782. characterMakers.push(() => makeCharacter(
  10783. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10784. {
  10785. side: {
  10786. height: math.unit(1.9, "meters"),
  10787. weight: math.unit(326, "kg"),
  10788. name: "Side",
  10789. image: {
  10790. source: "./media/characters/levi/side.svg",
  10791. extra: 1704 / 1334,
  10792. bottom: 0.02
  10793. }
  10794. },
  10795. },
  10796. [
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(1.9, "meters"),
  10800. default: true
  10801. },
  10802. {
  10803. name: "Macro",
  10804. height: math.unit(20, "meters")
  10805. },
  10806. {
  10807. name: "Macro+",
  10808. height: math.unit(200, "meters")
  10809. },
  10810. {
  10811. name: "Megamacro",
  10812. height: math.unit(2, "km")
  10813. },
  10814. {
  10815. name: "Megamacro+",
  10816. height: math.unit(20, "km")
  10817. },
  10818. {
  10819. name: "Gigamacro",
  10820. height: math.unit(2500, "km")
  10821. },
  10822. {
  10823. name: "Gigamacro+",
  10824. height: math.unit(120000, "km")
  10825. },
  10826. {
  10827. name: "Teramacro",
  10828. height: math.unit(7.77e6, "km")
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10834. {
  10835. front: {
  10836. height: math.unit(6 + 4 / 12, "feet"),
  10837. weight: math.unit(188, "lb"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/bmc/front.svg",
  10841. extra: 1067 / 1022,
  10842. bottom: 0.047
  10843. }
  10844. },
  10845. },
  10846. [
  10847. {
  10848. name: "Human-sized",
  10849. height: math.unit(6 + 4 / 12, "feet")
  10850. },
  10851. {
  10852. name: "Small",
  10853. height: math.unit(250, "feet")
  10854. },
  10855. {
  10856. name: "Normal",
  10857. height: math.unit(1250, "feet"),
  10858. default: true
  10859. },
  10860. {
  10861. name: "Good Day",
  10862. height: math.unit(88, "miles")
  10863. },
  10864. {
  10865. name: "Largest Measured Size",
  10866. height: math.unit(11.2e6, "lightyears")
  10867. },
  10868. ]
  10869. ))
  10870. characterMakers.push(() => makeCharacter(
  10871. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10872. {
  10873. front: {
  10874. height: math.unit(20, "feet"),
  10875. weight: math.unit(2016, "kg"),
  10876. name: "Front",
  10877. image: {
  10878. source: "./media/characters/sven-the-kaiju/front.svg",
  10879. extra: 1479 / 1449,
  10880. bottom: 0.05
  10881. }
  10882. },
  10883. },
  10884. [
  10885. {
  10886. name: "Fairy",
  10887. height: math.unit(6, "inches")
  10888. },
  10889. {
  10890. name: "Normal",
  10891. height: math.unit(20, "feet"),
  10892. default: true
  10893. },
  10894. {
  10895. name: "Rampage",
  10896. height: math.unit(200, "feet")
  10897. },
  10898. {
  10899. name: "Archfey Forest Guardian",
  10900. height: math.unit(1, "mile")
  10901. },
  10902. ]
  10903. ))
  10904. characterMakers.push(() => makeCharacter(
  10905. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10906. {
  10907. front: {
  10908. height: math.unit(4, "meters"),
  10909. weight: math.unit(2, "tons"),
  10910. name: "Front",
  10911. image: {
  10912. source: "./media/characters/marik/front.svg",
  10913. extra: 1057 / 1003,
  10914. bottom: 0.08
  10915. }
  10916. },
  10917. },
  10918. [
  10919. {
  10920. name: "Normal",
  10921. height: math.unit(4, "meters"),
  10922. default: true
  10923. },
  10924. {
  10925. name: "Macro",
  10926. height: math.unit(20, "meters")
  10927. },
  10928. {
  10929. name: "Megamacro",
  10930. height: math.unit(50, "km")
  10931. },
  10932. {
  10933. name: "Gigamacro",
  10934. height: math.unit(100, "km")
  10935. },
  10936. {
  10937. name: "Alpha Macro",
  10938. height: math.unit(7.88e7, "yottameters")
  10939. },
  10940. ]
  10941. ))
  10942. characterMakers.push(() => makeCharacter(
  10943. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10944. {
  10945. front: {
  10946. height: math.unit(6, "feet"),
  10947. weight: math.unit(110, "lb"),
  10948. name: "Front",
  10949. image: {
  10950. source: "./media/characters/mel/front.svg",
  10951. extra: 736 / 617,
  10952. bottom: 0.017
  10953. }
  10954. },
  10955. },
  10956. [
  10957. {
  10958. name: "Pico",
  10959. height: math.unit(3, "pm")
  10960. },
  10961. {
  10962. name: "Nano",
  10963. height: math.unit(3, "nm")
  10964. },
  10965. {
  10966. name: "Micro",
  10967. height: math.unit(0.3, "mm"),
  10968. default: true
  10969. },
  10970. {
  10971. name: "Micro+",
  10972. height: math.unit(3, "mm")
  10973. },
  10974. {
  10975. name: "Normal",
  10976. height: math.unit(5 + 10.5 / 12, "feet")
  10977. },
  10978. ]
  10979. ))
  10980. characterMakers.push(() => makeCharacter(
  10981. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10982. {
  10983. kaiju: {
  10984. height: math.unit(1.75, "meters"),
  10985. weight: math.unit(55, "kg"),
  10986. name: "Kaiju",
  10987. image: {
  10988. source: "./media/characters/lykonous/kaiju.svg",
  10989. extra: 1055 / 946,
  10990. bottom: 0.135
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Normal",
  10997. height: math.unit(2.5, "meters"),
  10998. default: true
  10999. },
  11000. {
  11001. name: "Kaiju Dragon",
  11002. height: math.unit(60, "meters")
  11003. },
  11004. {
  11005. name: "Mega Kaiju",
  11006. height: math.unit(120, "km")
  11007. },
  11008. {
  11009. name: "Giga Kaiju",
  11010. height: math.unit(200, "megameters")
  11011. },
  11012. {
  11013. name: "Terra Kaiju",
  11014. height: math.unit(400, "gigameters")
  11015. },
  11016. {
  11017. name: "Kaiju Dragon God",
  11018. height: math.unit(13000, "exaparsecs")
  11019. },
  11020. ]
  11021. ))
  11022. characterMakers.push(() => makeCharacter(
  11023. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11024. {
  11025. front: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(150, "lb"),
  11028. name: "Front",
  11029. image: {
  11030. source: "./media/characters/blü/front.svg",
  11031. extra: 1883 / 1564,
  11032. bottom: 0.031
  11033. }
  11034. },
  11035. },
  11036. [
  11037. {
  11038. name: "Normal",
  11039. height: math.unit(13, "feet"),
  11040. default: true
  11041. },
  11042. {
  11043. name: "Big Boi",
  11044. height: math.unit(150, "meters")
  11045. },
  11046. {
  11047. name: "Mini Stomper",
  11048. height: math.unit(300, "meters")
  11049. },
  11050. {
  11051. name: "Macro",
  11052. height: math.unit(1000, "meters")
  11053. },
  11054. {
  11055. name: "Megamacro",
  11056. height: math.unit(11000, "meters")
  11057. },
  11058. {
  11059. name: "Gigamacro",
  11060. height: math.unit(11000, "km")
  11061. },
  11062. {
  11063. name: "Teramacro",
  11064. height: math.unit(420000, "km")
  11065. },
  11066. {
  11067. name: "Examacro",
  11068. height: math.unit(120, "parsecs")
  11069. },
  11070. {
  11071. name: "God Tho",
  11072. height: math.unit(98000000000, "parsecs")
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11078. {
  11079. taurFront: {
  11080. height: math.unit(6, "feet"),
  11081. weight: math.unit(200, "lb"),
  11082. name: "Taur (Front)",
  11083. image: {
  11084. source: "./media/characters/scales/taur-front.svg",
  11085. extra: 1,
  11086. bottom: 0.05
  11087. }
  11088. },
  11089. taurBack: {
  11090. height: math.unit(6, "feet"),
  11091. weight: math.unit(200, "lb"),
  11092. name: "Taur (Back)",
  11093. image: {
  11094. source: "./media/characters/scales/taur-back.svg",
  11095. extra: 1,
  11096. bottom: 0.08
  11097. }
  11098. },
  11099. anthro: {
  11100. height: math.unit(6 * 7 / 12, "feet"),
  11101. weight: math.unit(100, "lb"),
  11102. name: "Anthro",
  11103. image: {
  11104. source: "./media/characters/scales/anthro.svg",
  11105. extra: 1,
  11106. bottom: 0.06
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Normal",
  11113. height: math.unit(12, "feet"),
  11114. default: true
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11120. {
  11121. front: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(150, "lb"),
  11124. name: "Front",
  11125. image: {
  11126. source: "./media/characters/koragos/front.svg",
  11127. extra: 841 / 794,
  11128. bottom: 0.035
  11129. }
  11130. },
  11131. back: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(150, "lb"),
  11134. name: "Back",
  11135. image: {
  11136. source: "./media/characters/koragos/back.svg",
  11137. extra: 841 / 810,
  11138. bottom: 0.022
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Normal",
  11145. height: math.unit(6 + 11 / 12, "feet"),
  11146. default: true
  11147. },
  11148. {
  11149. name: "Macro",
  11150. height: math.unit(490, "feet")
  11151. },
  11152. {
  11153. name: "Megamacro",
  11154. height: math.unit(10, "miles")
  11155. },
  11156. {
  11157. name: "Gigamacro",
  11158. height: math.unit(50, "miles")
  11159. },
  11160. ]
  11161. ))
  11162. characterMakers.push(() => makeCharacter(
  11163. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11164. {
  11165. front: {
  11166. height: math.unit(6, "feet"),
  11167. weight: math.unit(250, "lb"),
  11168. name: "Front",
  11169. image: {
  11170. source: "./media/characters/xylrem/front.svg",
  11171. extra: 3323 / 3050,
  11172. bottom: 0.065
  11173. }
  11174. },
  11175. },
  11176. [
  11177. {
  11178. name: "Micro",
  11179. height: math.unit(4, "feet")
  11180. },
  11181. {
  11182. name: "Normal",
  11183. height: math.unit(16, "feet"),
  11184. default: true
  11185. },
  11186. {
  11187. name: "Macro",
  11188. height: math.unit(2720, "feet")
  11189. },
  11190. {
  11191. name: "Megamacro",
  11192. height: math.unit(25000, "miles")
  11193. },
  11194. ]
  11195. ))
  11196. characterMakers.push(() => makeCharacter(
  11197. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11198. {
  11199. front: {
  11200. height: math.unit(8, "feet"),
  11201. weight: math.unit(250, "kg"),
  11202. name: "Front",
  11203. image: {
  11204. source: "./media/characters/ikideru/front.svg",
  11205. extra: 930 / 870,
  11206. bottom: 0.087
  11207. }
  11208. },
  11209. back: {
  11210. height: math.unit(8, "feet"),
  11211. weight: math.unit(250, "kg"),
  11212. name: "Back",
  11213. image: {
  11214. source: "./media/characters/ikideru/back.svg",
  11215. extra: 919 / 852,
  11216. bottom: 0.055
  11217. }
  11218. },
  11219. },
  11220. [
  11221. {
  11222. name: "Rare",
  11223. height: math.unit(8, "feet"),
  11224. default: true
  11225. },
  11226. {
  11227. name: "Playful Loom",
  11228. height: math.unit(80, "feet")
  11229. },
  11230. {
  11231. name: "City Leaner",
  11232. height: math.unit(230, "feet")
  11233. },
  11234. {
  11235. name: "Megamacro",
  11236. height: math.unit(2500, "feet")
  11237. },
  11238. {
  11239. name: "Gigamacro",
  11240. height: math.unit(26400, "feet")
  11241. },
  11242. {
  11243. name: "Tectonic Shifter",
  11244. height: math.unit(1.7, "megameters")
  11245. },
  11246. {
  11247. name: "Planet Carer",
  11248. height: math.unit(21, "megameters")
  11249. },
  11250. {
  11251. name: "God",
  11252. height: math.unit(11157.22, "parsecs")
  11253. },
  11254. ]
  11255. ))
  11256. characterMakers.push(() => makeCharacter(
  11257. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11258. {
  11259. front: {
  11260. height: math.unit(6, "feet"),
  11261. weight: math.unit(120, "lb"),
  11262. name: "Front",
  11263. image: {
  11264. source: "./media/characters/neo/front.svg"
  11265. }
  11266. },
  11267. },
  11268. [
  11269. {
  11270. name: "Micro",
  11271. height: math.unit(2, "inches"),
  11272. default: true
  11273. },
  11274. {
  11275. name: "Human Size",
  11276. height: math.unit(5 + 8 / 12, "feet")
  11277. },
  11278. ]
  11279. ))
  11280. characterMakers.push(() => makeCharacter(
  11281. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11282. {
  11283. front: {
  11284. height: math.unit(13 + 10 / 12, "feet"),
  11285. weight: math.unit(5320, "lb"),
  11286. name: "Front",
  11287. image: {
  11288. source: "./media/characters/chauncey-chantz/front.svg",
  11289. extra: 1587 / 1435,
  11290. bottom: 0.02
  11291. }
  11292. },
  11293. },
  11294. [
  11295. {
  11296. name: "Normal",
  11297. height: math.unit(13 + 10 / 12, "feet"),
  11298. default: true
  11299. },
  11300. {
  11301. name: "Macro",
  11302. height: math.unit(45, "feet")
  11303. },
  11304. {
  11305. name: "Megamacro",
  11306. height: math.unit(250, "miles")
  11307. },
  11308. {
  11309. name: "Planetary",
  11310. height: math.unit(10000, "miles")
  11311. },
  11312. {
  11313. name: "Galactic",
  11314. height: math.unit(40000, "parsecs")
  11315. },
  11316. {
  11317. name: "Universal",
  11318. height: math.unit(1, "yottameter")
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11324. {
  11325. front: {
  11326. height: math.unit(6, "feet"),
  11327. weight: math.unit(150, "lb"),
  11328. name: "Front",
  11329. image: {
  11330. source: "./media/characters/epifox/front.svg",
  11331. extra: 1,
  11332. bottom: 0.075
  11333. }
  11334. },
  11335. },
  11336. [
  11337. {
  11338. name: "Micro",
  11339. height: math.unit(6, "inches")
  11340. },
  11341. {
  11342. name: "Normal",
  11343. height: math.unit(12, "feet"),
  11344. default: true
  11345. },
  11346. {
  11347. name: "Macro",
  11348. height: math.unit(3810, "feet")
  11349. },
  11350. {
  11351. name: "Megamacro",
  11352. height: math.unit(500, "miles")
  11353. },
  11354. ]
  11355. ))
  11356. characterMakers.push(() => makeCharacter(
  11357. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11358. {
  11359. front: {
  11360. height: math.unit(1.8796, "m"),
  11361. weight: math.unit(230, "lb"),
  11362. name: "Front",
  11363. image: {
  11364. source: "./media/characters/colin-t/front.svg",
  11365. extra: 1272 / 1193,
  11366. bottom: 0.07
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Micro",
  11373. height: math.unit(0.571, "meters")
  11374. },
  11375. {
  11376. name: "Normal",
  11377. height: math.unit(1.8796, "meters"),
  11378. default: true
  11379. },
  11380. {
  11381. name: "Tall",
  11382. height: math.unit(4, "meters")
  11383. },
  11384. {
  11385. name: "Macro",
  11386. height: math.unit(67.241, "meters")
  11387. },
  11388. {
  11389. name: "Megamacro",
  11390. height: math.unit(371.856, "meters")
  11391. },
  11392. {
  11393. name: "Planetary",
  11394. height: math.unit(12631.5689, "km")
  11395. },
  11396. ]
  11397. ))
  11398. characterMakers.push(() => makeCharacter(
  11399. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11400. {
  11401. front: {
  11402. height: math.unit(1.85, "meters"),
  11403. weight: math.unit(80, "kg"),
  11404. name: "Front",
  11405. image: {
  11406. source: "./media/characters/matvei/front.svg",
  11407. extra: 614 / 594,
  11408. bottom: 0.01
  11409. }
  11410. },
  11411. },
  11412. [
  11413. {
  11414. name: "Normal",
  11415. height: math.unit(1.85, "meters"),
  11416. default: true
  11417. },
  11418. ]
  11419. ))
  11420. characterMakers.push(() => makeCharacter(
  11421. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11422. {
  11423. front: {
  11424. height: math.unit(5 + 9 / 12, "feet"),
  11425. weight: math.unit(70, "lb"),
  11426. name: "Front",
  11427. image: {
  11428. source: "./media/characters/quincy/front.svg",
  11429. extra: 3041 / 2751
  11430. }
  11431. },
  11432. back: {
  11433. height: math.unit(5 + 9 / 12, "feet"),
  11434. weight: math.unit(70, "lb"),
  11435. name: "Back",
  11436. image: {
  11437. source: "./media/characters/quincy/back.svg",
  11438. extra: 3041 / 2751
  11439. }
  11440. },
  11441. flying: {
  11442. height: math.unit(5 + 4 / 12, "feet"),
  11443. weight: math.unit(70, "lb"),
  11444. name: "Flying",
  11445. image: {
  11446. source: "./media/characters/quincy/flying.svg",
  11447. extra: 1044 / 930
  11448. }
  11449. },
  11450. },
  11451. [
  11452. {
  11453. name: "Micro",
  11454. height: math.unit(3, "cm")
  11455. },
  11456. {
  11457. name: "Normal",
  11458. height: math.unit(5 + 9 / 12, "feet")
  11459. },
  11460. {
  11461. name: "Macro",
  11462. height: math.unit(200, "meters"),
  11463. default: true
  11464. },
  11465. {
  11466. name: "Megamacro",
  11467. height: math.unit(1000, "meters")
  11468. },
  11469. ]
  11470. ))
  11471. characterMakers.push(() => makeCharacter(
  11472. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11473. {
  11474. front: {
  11475. height: math.unit(4 + 7 / 12, "feet"),
  11476. weight: math.unit(50, "lb"),
  11477. name: "Front",
  11478. image: {
  11479. source: "./media/characters/vanrel/front.svg",
  11480. extra: 1,
  11481. bottom: 0.02
  11482. }
  11483. },
  11484. frontAlt: {
  11485. height: math.unit(4 + 7 / 12, "feet"),
  11486. weight: math.unit(50, "lb"),
  11487. name: "Front-alt",
  11488. image: {
  11489. source: "./media/characters/vanrel/front-alt.svg",
  11490. extra: 1,
  11491. bottom: 15 / 1511
  11492. }
  11493. },
  11494. elemental: {
  11495. height: math.unit(3, "feet"),
  11496. weight: math.unit(50, "lb"),
  11497. name: "Elemental",
  11498. image: {
  11499. source: "./media/characters/vanrel/elemental.svg",
  11500. extra: 192.3 / 162.8,
  11501. bottom: 1.79 / 194.17
  11502. }
  11503. },
  11504. side: {
  11505. height: math.unit(4 + 7 / 12, "feet"),
  11506. weight: math.unit(50, "lb"),
  11507. name: "Side",
  11508. image: {
  11509. source: "./media/characters/vanrel/side.svg",
  11510. extra: 1,
  11511. bottom: 0.025
  11512. }
  11513. },
  11514. tome: {
  11515. height: math.unit(1.35, "feet"),
  11516. weight: math.unit(10, "lb"),
  11517. name: "Vanrel's Tome",
  11518. rename: true,
  11519. image: {
  11520. source: "./media/characters/vanrel/tome.svg"
  11521. }
  11522. },
  11523. beans: {
  11524. height: math.unit(0.89, "feet"),
  11525. name: "Beans",
  11526. image: {
  11527. source: "./media/characters/vanrel/beans.svg"
  11528. }
  11529. },
  11530. },
  11531. [
  11532. {
  11533. name: "Normal",
  11534. height: math.unit(4 + 7 / 12, "feet"),
  11535. default: true
  11536. },
  11537. ]
  11538. ))
  11539. characterMakers.push(() => makeCharacter(
  11540. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11541. {
  11542. front: {
  11543. height: math.unit(7 + 5 / 12, "feet"),
  11544. weight: math.unit(150, "lb"),
  11545. name: "Front",
  11546. image: {
  11547. source: "./media/characters/kuiper-vanrel/front.svg",
  11548. extra: 1118 / 1068,
  11549. bottom: 0.09
  11550. }
  11551. },
  11552. foot: {
  11553. height: math.unit(0.55, "meters"),
  11554. name: "Foot",
  11555. image: {
  11556. source: "./media/characters/kuiper-vanrel/foot.svg",
  11557. }
  11558. },
  11559. battle: {
  11560. height: math.unit(6.824, "feet"),
  11561. weight: math.unit(150, "lb"),
  11562. name: "Battle",
  11563. image: {
  11564. source: "./media/characters/kuiper-vanrel/battle.svg",
  11565. extra: 1466 / 1327,
  11566. bottom: 29 / 1492.5
  11567. }
  11568. },
  11569. battleAlt: {
  11570. height: math.unit(6.824, "feet"),
  11571. weight: math.unit(150, "lb"),
  11572. name: "Battle (Alt)",
  11573. image: {
  11574. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11575. extra: 2081 / 1965,
  11576. bottom: 40 / 2121
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Normal",
  11583. height: math.unit(7 + 5 / 12, "feet"),
  11584. default: true
  11585. },
  11586. ]
  11587. ))
  11588. characterMakers.push(() => makeCharacter(
  11589. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11590. {
  11591. front: {
  11592. height: math.unit(8 + 5 / 12, "feet"),
  11593. weight: math.unit(150, "lb"),
  11594. name: "Front",
  11595. image: {
  11596. source: "./media/characters/keset-vanrel/front.svg",
  11597. extra: 1150 / 1084,
  11598. bottom: 0.05
  11599. }
  11600. },
  11601. hand: {
  11602. height: math.unit(0.6, "meters"),
  11603. name: "Hand",
  11604. image: {
  11605. source: "./media/characters/keset-vanrel/hand.svg"
  11606. }
  11607. },
  11608. foot: {
  11609. height: math.unit(0.94978, "meters"),
  11610. name: "Foot",
  11611. image: {
  11612. source: "./media/characters/keset-vanrel/foot.svg"
  11613. }
  11614. },
  11615. battle: {
  11616. height: math.unit(7.408, "feet"),
  11617. weight: math.unit(150, "lb"),
  11618. name: "Battle",
  11619. image: {
  11620. source: "./media/characters/keset-vanrel/battle.svg",
  11621. extra: 1890 / 1386,
  11622. bottom: 73.28 / 1970
  11623. }
  11624. },
  11625. },
  11626. [
  11627. {
  11628. name: "Normal",
  11629. height: math.unit(8 + 5 / 12, "feet"),
  11630. default: true
  11631. },
  11632. ]
  11633. ))
  11634. characterMakers.push(() => makeCharacter(
  11635. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11636. {
  11637. front: {
  11638. height: math.unit(6, "feet"),
  11639. weight: math.unit(150, "lb"),
  11640. name: "Front",
  11641. image: {
  11642. source: "./media/characters/neos/front.svg",
  11643. extra: 1696 / 992,
  11644. bottom: 0.14
  11645. }
  11646. },
  11647. },
  11648. [
  11649. {
  11650. name: "Normal",
  11651. height: math.unit(54, "cm"),
  11652. default: true
  11653. },
  11654. {
  11655. name: "Macro",
  11656. height: math.unit(100, "m")
  11657. },
  11658. {
  11659. name: "Megamacro",
  11660. height: math.unit(10, "km")
  11661. },
  11662. {
  11663. name: "Megamacro+",
  11664. height: math.unit(100, "km")
  11665. },
  11666. {
  11667. name: "Gigamacro",
  11668. height: math.unit(100, "Mm")
  11669. },
  11670. {
  11671. name: "Teramacro",
  11672. height: math.unit(100, "Gm")
  11673. },
  11674. {
  11675. name: "Examacro",
  11676. height: math.unit(100, "Em")
  11677. },
  11678. {
  11679. name: "Godly",
  11680. height: math.unit(10000, "Ym")
  11681. },
  11682. {
  11683. name: "Beyond Godly",
  11684. height: math.unit(25, "multiverses")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11690. {
  11691. feminine: {
  11692. height: math.unit(5, "feet"),
  11693. weight: math.unit(100, "lb"),
  11694. name: "Feminine",
  11695. image: {
  11696. source: "./media/characters/sammy-mouse/feminine.svg",
  11697. extra: 2526 / 2425,
  11698. bottom: 0.123
  11699. }
  11700. },
  11701. masculine: {
  11702. height: math.unit(5, "feet"),
  11703. weight: math.unit(100, "lb"),
  11704. name: "Masculine",
  11705. image: {
  11706. source: "./media/characters/sammy-mouse/masculine.svg",
  11707. extra: 2526 / 2425,
  11708. bottom: 0.123
  11709. }
  11710. },
  11711. },
  11712. [
  11713. {
  11714. name: "Micro",
  11715. height: math.unit(5, "inches")
  11716. },
  11717. {
  11718. name: "Normal",
  11719. height: math.unit(5, "feet"),
  11720. default: true
  11721. },
  11722. {
  11723. name: "Macro",
  11724. height: math.unit(60, "feet")
  11725. },
  11726. ]
  11727. ))
  11728. characterMakers.push(() => makeCharacter(
  11729. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11730. {
  11731. front: {
  11732. height: math.unit(4, "feet"),
  11733. weight: math.unit(50, "lb"),
  11734. name: "Front",
  11735. image: {
  11736. source: "./media/characters/kole/front.svg",
  11737. extra: 1423 / 1303,
  11738. bottom: 0.025
  11739. }
  11740. },
  11741. back: {
  11742. height: math.unit(4, "feet"),
  11743. weight: math.unit(50, "lb"),
  11744. name: "Back",
  11745. image: {
  11746. source: "./media/characters/kole/back.svg",
  11747. extra: 1426 / 1280,
  11748. bottom: 0.02
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(4, "feet"),
  11756. default: true
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11762. {
  11763. front: {
  11764. height: math.unit(2 + 6 / 12, "feet"),
  11765. weight: math.unit(20, "lb"),
  11766. name: "Front",
  11767. image: {
  11768. source: "./media/characters/rufran/front.svg",
  11769. extra: 2041 / 1839,
  11770. bottom: 0.055
  11771. }
  11772. },
  11773. back: {
  11774. height: math.unit(2 + 6 / 12, "feet"),
  11775. weight: math.unit(20, "lb"),
  11776. name: "Back",
  11777. image: {
  11778. source: "./media/characters/rufran/back.svg",
  11779. extra: 2054 / 1839,
  11780. bottom: 0.01
  11781. }
  11782. },
  11783. hand: {
  11784. height: math.unit(0.2166, "meters"),
  11785. name: "Hand",
  11786. image: {
  11787. source: "./media/characters/rufran/hand.svg"
  11788. }
  11789. },
  11790. foot: {
  11791. height: math.unit(0.185, "meters"),
  11792. name: "Foot",
  11793. image: {
  11794. source: "./media/characters/rufran/foot.svg"
  11795. }
  11796. },
  11797. },
  11798. [
  11799. {
  11800. name: "Micro",
  11801. height: math.unit(1, "inch")
  11802. },
  11803. {
  11804. name: "Normal",
  11805. height: math.unit(2 + 6 / 12, "feet"),
  11806. default: true
  11807. },
  11808. {
  11809. name: "Big",
  11810. height: math.unit(60, "feet")
  11811. },
  11812. {
  11813. name: "Macro",
  11814. height: math.unit(325, "feet")
  11815. },
  11816. ]
  11817. ))
  11818. characterMakers.push(() => makeCharacter(
  11819. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11820. {
  11821. front: {
  11822. height: math.unit(0.3, "meters"),
  11823. weight: math.unit(3.5, "kg"),
  11824. name: "Front",
  11825. image: {
  11826. source: "./media/characters/chip/front.svg",
  11827. extra: 748 / 674
  11828. }
  11829. },
  11830. },
  11831. [
  11832. {
  11833. name: "Micro",
  11834. height: math.unit(1, "inch"),
  11835. default: true
  11836. },
  11837. ]
  11838. ))
  11839. characterMakers.push(() => makeCharacter(
  11840. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11841. {
  11842. side: {
  11843. height: math.unit(2.3, "meters"),
  11844. weight: math.unit(3500, "lb"),
  11845. name: "Side",
  11846. image: {
  11847. source: "./media/characters/torvid/side.svg",
  11848. extra: 1972 / 722,
  11849. bottom: 0.035
  11850. }
  11851. },
  11852. },
  11853. [
  11854. {
  11855. name: "Normal",
  11856. height: math.unit(2.3, "meters"),
  11857. default: true
  11858. },
  11859. ]
  11860. ))
  11861. characterMakers.push(() => makeCharacter(
  11862. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11863. {
  11864. front: {
  11865. height: math.unit(2, "meters"),
  11866. weight: math.unit(150.5, "kg"),
  11867. name: "Front",
  11868. image: {
  11869. source: "./media/characters/susan/front.svg",
  11870. extra: 693 / 635,
  11871. bottom: 0.05
  11872. }
  11873. },
  11874. },
  11875. [
  11876. {
  11877. name: "Megamacro",
  11878. height: math.unit(505, "miles"),
  11879. default: true
  11880. },
  11881. ]
  11882. ))
  11883. characterMakers.push(() => makeCharacter(
  11884. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11885. {
  11886. front: {
  11887. height: math.unit(6, "feet"),
  11888. weight: math.unit(150, "lb"),
  11889. name: "Front",
  11890. image: {
  11891. source: "./media/characters/raindrops/front.svg",
  11892. extra: 2655 / 2461,
  11893. bottom: 49 / 2705
  11894. }
  11895. },
  11896. back: {
  11897. height: math.unit(6, "feet"),
  11898. weight: math.unit(150, "lb"),
  11899. name: "Back",
  11900. image: {
  11901. source: "./media/characters/raindrops/back.svg",
  11902. extra: 2574 / 2400,
  11903. bottom: 65 / 2634
  11904. }
  11905. },
  11906. },
  11907. [
  11908. {
  11909. name: "Micro",
  11910. height: math.unit(6, "inches")
  11911. },
  11912. {
  11913. name: "Normal",
  11914. height: math.unit(6 + 2 / 12, "feet")
  11915. },
  11916. {
  11917. name: "Macro",
  11918. height: math.unit(131, "feet"),
  11919. default: true
  11920. },
  11921. {
  11922. name: "Megamacro",
  11923. height: math.unit(15, "miles")
  11924. },
  11925. {
  11926. name: "Gigamacro",
  11927. height: math.unit(4000, "miles")
  11928. },
  11929. {
  11930. name: "Teramacro",
  11931. height: math.unit(315000, "miles")
  11932. },
  11933. ]
  11934. ))
  11935. characterMakers.push(() => makeCharacter(
  11936. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11937. {
  11938. front: {
  11939. height: math.unit(2.794, "meters"),
  11940. weight: math.unit(325, "kg"),
  11941. name: "Front",
  11942. image: {
  11943. source: "./media/characters/tezwa/front.svg",
  11944. extra: 2083 / 1906,
  11945. bottom: 0.031
  11946. }
  11947. },
  11948. foot: {
  11949. height: math.unit(0.687, "meters"),
  11950. name: "Foot",
  11951. image: {
  11952. source: "./media/characters/tezwa/foot.svg"
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Normal",
  11959. height: math.unit(9 + 2 / 12, "feet"),
  11960. default: true
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11966. {
  11967. front: {
  11968. height: math.unit(58, "feet"),
  11969. weight: math.unit(89000, "lb"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/typhus/front.svg",
  11973. extra: 816 / 800,
  11974. bottom: 0.065
  11975. }
  11976. },
  11977. },
  11978. [
  11979. {
  11980. name: "Macro",
  11981. height: math.unit(58, "feet"),
  11982. default: true
  11983. },
  11984. ]
  11985. ))
  11986. characterMakers.push(() => makeCharacter(
  11987. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11988. {
  11989. front: {
  11990. height: math.unit(12, "feet"),
  11991. weight: math.unit(6, "tonnes"),
  11992. name: "Front",
  11993. image: {
  11994. source: "./media/characters/lyra-von-wulf/front.svg",
  11995. extra: 1,
  11996. bottom: 0.10
  11997. }
  11998. },
  11999. frontMecha: {
  12000. height: math.unit(12, "feet"),
  12001. weight: math.unit(12, "tonnes"),
  12002. name: "Front (Mecha)",
  12003. image: {
  12004. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12005. extra: 1,
  12006. bottom: 0.042
  12007. }
  12008. },
  12009. maw: {
  12010. height: math.unit(2.2, "feet"),
  12011. name: "Maw",
  12012. image: {
  12013. source: "./media/characters/lyra-von-wulf/maw.svg"
  12014. }
  12015. },
  12016. },
  12017. [
  12018. {
  12019. name: "Normal",
  12020. height: math.unit(12, "feet"),
  12021. default: true
  12022. },
  12023. {
  12024. name: "Classic",
  12025. height: math.unit(50, "feet")
  12026. },
  12027. {
  12028. name: "Macro",
  12029. height: math.unit(500, "feet")
  12030. },
  12031. {
  12032. name: "Megamacro",
  12033. height: math.unit(1, "mile")
  12034. },
  12035. {
  12036. name: "Gigamacro",
  12037. height: math.unit(400, "miles")
  12038. },
  12039. {
  12040. name: "Teramacro",
  12041. height: math.unit(22000, "miles")
  12042. },
  12043. {
  12044. name: "Solarmacro",
  12045. height: math.unit(8600000, "miles")
  12046. },
  12047. {
  12048. name: "Galactic",
  12049. height: math.unit(1057000, "lightyears")
  12050. },
  12051. ]
  12052. ))
  12053. characterMakers.push(() => makeCharacter(
  12054. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12055. {
  12056. front: {
  12057. height: math.unit(6 + 10 / 12, "feet"),
  12058. weight: math.unit(150, "lb"),
  12059. name: "Front",
  12060. image: {
  12061. source: "./media/characters/dixon/front.svg",
  12062. extra: 3361 / 3209,
  12063. bottom: 0.01
  12064. }
  12065. },
  12066. },
  12067. [
  12068. {
  12069. name: "Normal",
  12070. height: math.unit(6 + 10 / 12, "feet"),
  12071. default: true
  12072. },
  12073. {
  12074. name: "Big",
  12075. height: math.unit(12, "meters")
  12076. },
  12077. {
  12078. name: "Macro",
  12079. height: math.unit(500, "meters")
  12080. },
  12081. {
  12082. name: "Megamacro",
  12083. height: math.unit(2, "km")
  12084. },
  12085. ]
  12086. ))
  12087. characterMakers.push(() => makeCharacter(
  12088. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12089. {
  12090. front: {
  12091. height: math.unit(185, "cm"),
  12092. weight: math.unit(68, "kg"),
  12093. name: "Front",
  12094. image: {
  12095. source: "./media/characters/kauko/front.svg",
  12096. extra: 1455 / 1421,
  12097. bottom: 0.03
  12098. }
  12099. },
  12100. back: {
  12101. height: math.unit(185, "cm"),
  12102. weight: math.unit(68, "kg"),
  12103. name: "Back",
  12104. image: {
  12105. source: "./media/characters/kauko/back.svg",
  12106. extra: 1455 / 1421,
  12107. bottom: 0.004
  12108. }
  12109. },
  12110. },
  12111. [
  12112. {
  12113. name: "Normal",
  12114. height: math.unit(185, "cm"),
  12115. default: true
  12116. },
  12117. ]
  12118. ))
  12119. characterMakers.push(() => makeCharacter(
  12120. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12121. {
  12122. front: {
  12123. height: math.unit(6, "feet"),
  12124. weight: math.unit(150, "kg"),
  12125. name: "Front",
  12126. image: {
  12127. source: "./media/characters/varg/front.svg",
  12128. extra: 1108 / 1018,
  12129. bottom: 0.0375
  12130. }
  12131. },
  12132. },
  12133. [
  12134. {
  12135. name: "Normal",
  12136. height: math.unit(5, "meters")
  12137. },
  12138. {
  12139. name: "Macro",
  12140. height: math.unit(200, "meters")
  12141. },
  12142. {
  12143. name: "Megamacro",
  12144. height: math.unit(20, "kilometers")
  12145. },
  12146. {
  12147. name: "True Size",
  12148. height: math.unit(211, "km"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Gigamacro",
  12153. height: math.unit(1000, "km")
  12154. },
  12155. {
  12156. name: "Gigamacro+",
  12157. height: math.unit(8000, "km")
  12158. },
  12159. {
  12160. name: "Teramacro",
  12161. height: math.unit(1000000, "km")
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12167. {
  12168. front: {
  12169. height: math.unit(7 + 7 / 12, "feet"),
  12170. weight: math.unit(267, "lb"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/dayza/front.svg",
  12174. extra: 1262 / 1200,
  12175. bottom: 0.035
  12176. }
  12177. },
  12178. side: {
  12179. height: math.unit(7 + 7 / 12, "feet"),
  12180. weight: math.unit(267, "lb"),
  12181. name: "Side",
  12182. image: {
  12183. source: "./media/characters/dayza/side.svg",
  12184. extra: 1295 / 1245,
  12185. bottom: 0.05
  12186. }
  12187. },
  12188. back: {
  12189. height: math.unit(7 + 7 / 12, "feet"),
  12190. weight: math.unit(267, "lb"),
  12191. name: "Back",
  12192. image: {
  12193. source: "./media/characters/dayza/back.svg",
  12194. extra: 1241 / 1170
  12195. }
  12196. },
  12197. },
  12198. [
  12199. {
  12200. name: "Normal",
  12201. height: math.unit(7 + 7 / 12, "feet"),
  12202. default: true
  12203. },
  12204. {
  12205. name: "Macro",
  12206. height: math.unit(155, "feet")
  12207. },
  12208. ]
  12209. ))
  12210. characterMakers.push(() => makeCharacter(
  12211. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12212. {
  12213. front: {
  12214. height: math.unit(6 + 5 / 12, "feet"),
  12215. weight: math.unit(160, "lb"),
  12216. name: "Front",
  12217. image: {
  12218. source: "./media/characters/xanthos/front.svg",
  12219. extra: 1,
  12220. bottom: 0.04
  12221. }
  12222. },
  12223. back: {
  12224. height: math.unit(6 + 5 / 12, "feet"),
  12225. weight: math.unit(160, "lb"),
  12226. name: "Back",
  12227. image: {
  12228. source: "./media/characters/xanthos/back.svg",
  12229. extra: 1,
  12230. bottom: 0.03
  12231. }
  12232. },
  12233. hand: {
  12234. height: math.unit(0.928, "feet"),
  12235. name: "Hand",
  12236. image: {
  12237. source: "./media/characters/xanthos/hand.svg"
  12238. }
  12239. },
  12240. foot: {
  12241. height: math.unit(1.286, "feet"),
  12242. name: "Foot",
  12243. image: {
  12244. source: "./media/characters/xanthos/foot.svg"
  12245. }
  12246. },
  12247. },
  12248. [
  12249. {
  12250. name: "Normal",
  12251. height: math.unit(6 + 5 / 12, "feet"),
  12252. default: true
  12253. },
  12254. {
  12255. name: "Normal+",
  12256. height: math.unit(6, "meters")
  12257. },
  12258. {
  12259. name: "Macro",
  12260. height: math.unit(40, "feet")
  12261. },
  12262. {
  12263. name: "Macro+",
  12264. height: math.unit(200, "meters")
  12265. },
  12266. {
  12267. name: "Megamacro",
  12268. height: math.unit(20, "km")
  12269. },
  12270. {
  12271. name: "Megamacro+",
  12272. height: math.unit(100, "km")
  12273. },
  12274. ]
  12275. ))
  12276. characterMakers.push(() => makeCharacter(
  12277. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12278. {
  12279. front: {
  12280. height: math.unit(6 + 3 / 12, "feet"),
  12281. weight: math.unit(215, "lb"),
  12282. name: "Front",
  12283. image: {
  12284. source: "./media/characters/grynn/front.svg",
  12285. extra: 4627 / 4209,
  12286. bottom: 0.047
  12287. }
  12288. },
  12289. },
  12290. [
  12291. {
  12292. name: "Micro",
  12293. height: math.unit(6, "inches")
  12294. },
  12295. {
  12296. name: "Normal",
  12297. height: math.unit(6 + 3 / 12, "feet"),
  12298. default: true
  12299. },
  12300. {
  12301. name: "Big",
  12302. height: math.unit(104, "feet")
  12303. },
  12304. {
  12305. name: "Macro",
  12306. height: math.unit(944, "feet")
  12307. },
  12308. {
  12309. name: "Macro+",
  12310. height: math.unit(9480, "feet")
  12311. },
  12312. {
  12313. name: "Megamacro",
  12314. height: math.unit(78752, "feet")
  12315. },
  12316. {
  12317. name: "Megamacro+",
  12318. height: math.unit(630128, "feet")
  12319. },
  12320. {
  12321. name: "Megamacro++",
  12322. height: math.unit(3150695, "feet")
  12323. },
  12324. ]
  12325. ))
  12326. characterMakers.push(() => makeCharacter(
  12327. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12328. {
  12329. front: {
  12330. height: math.unit(7 + 5 / 12, "feet"),
  12331. weight: math.unit(450, "lb"),
  12332. name: "Front",
  12333. image: {
  12334. source: "./media/characters/mocha-aura/front.svg",
  12335. extra: 1907 / 1817,
  12336. bottom: 0.04
  12337. }
  12338. },
  12339. back: {
  12340. height: math.unit(7 + 5 / 12, "feet"),
  12341. weight: math.unit(450, "lb"),
  12342. name: "Back",
  12343. image: {
  12344. source: "./media/characters/mocha-aura/back.svg",
  12345. extra: 1900 / 1825,
  12346. bottom: 0.045
  12347. }
  12348. },
  12349. },
  12350. [
  12351. {
  12352. name: "Nano",
  12353. height: math.unit(1, "nm")
  12354. },
  12355. {
  12356. name: "Megamicro",
  12357. height: math.unit(1, "mm")
  12358. },
  12359. {
  12360. name: "Micro",
  12361. height: math.unit(3, "inches")
  12362. },
  12363. {
  12364. name: "Normal",
  12365. height: math.unit(7 + 5 / 12, "feet"),
  12366. default: true
  12367. },
  12368. {
  12369. name: "Macro",
  12370. height: math.unit(30, "feet")
  12371. },
  12372. {
  12373. name: "Megamacro",
  12374. height: math.unit(3500, "feet")
  12375. },
  12376. {
  12377. name: "Teramacro",
  12378. height: math.unit(500000, "miles")
  12379. },
  12380. {
  12381. name: "Petamacro",
  12382. height: math.unit(50000000000000000, "parsecs")
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12388. {
  12389. front: {
  12390. height: math.unit(6, "feet"),
  12391. weight: math.unit(150, "lb"),
  12392. name: "Front",
  12393. image: {
  12394. source: "./media/characters/ilisha-devya/front.svg",
  12395. extra: 1,
  12396. bottom: 0.175
  12397. }
  12398. },
  12399. back: {
  12400. height: math.unit(6, "feet"),
  12401. weight: math.unit(150, "lb"),
  12402. name: "Back",
  12403. image: {
  12404. source: "./media/characters/ilisha-devya/back.svg",
  12405. extra: 1,
  12406. bottom: 0.015
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Macro",
  12413. height: math.unit(500, "feet"),
  12414. default: true
  12415. },
  12416. {
  12417. name: "Megamacro",
  12418. height: math.unit(10, "miles")
  12419. },
  12420. {
  12421. name: "Gigamacro",
  12422. height: math.unit(100000, "miles")
  12423. },
  12424. {
  12425. name: "Examacro",
  12426. height: math.unit(1e9, "lightyears")
  12427. },
  12428. {
  12429. name: "Omniversal",
  12430. height: math.unit(1e33, "lightyears")
  12431. },
  12432. {
  12433. name: "Beyond Infinite",
  12434. height: math.unit(1e100, "lightyears")
  12435. },
  12436. ]
  12437. ))
  12438. characterMakers.push(() => makeCharacter(
  12439. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12440. {
  12441. Side: {
  12442. height: math.unit(6, "feet"),
  12443. weight: math.unit(150, "lb"),
  12444. name: "Side",
  12445. image: {
  12446. source: "./media/characters/mira/side.svg",
  12447. extra: 900 / 799,
  12448. bottom: 0.02
  12449. }
  12450. },
  12451. },
  12452. [
  12453. {
  12454. name: "Human Size",
  12455. height: math.unit(6, "feet")
  12456. },
  12457. {
  12458. name: "Macro",
  12459. height: math.unit(100, "feet"),
  12460. default: true
  12461. },
  12462. {
  12463. name: "Megamacro",
  12464. height: math.unit(10, "miles")
  12465. },
  12466. {
  12467. name: "Gigamacro",
  12468. height: math.unit(25000, "miles")
  12469. },
  12470. {
  12471. name: "Teramacro",
  12472. height: math.unit(300, "AU")
  12473. },
  12474. {
  12475. name: "Full Size",
  12476. height: math.unit(4.5e10, "lightyears")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(6, "feet"),
  12485. weight: math.unit(150, "lb"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/holly/front.svg",
  12489. extra: 639 / 606
  12490. }
  12491. },
  12492. back: {
  12493. height: math.unit(6, "feet"),
  12494. weight: math.unit(150, "lb"),
  12495. name: "Back",
  12496. image: {
  12497. source: "./media/characters/holly/back.svg",
  12498. extra: 623 / 598
  12499. }
  12500. },
  12501. frontWorking: {
  12502. height: math.unit(6, "feet"),
  12503. weight: math.unit(150, "lb"),
  12504. name: "Front (Working)",
  12505. image: {
  12506. source: "./media/characters/holly/front-working.svg",
  12507. extra: 607 / 577,
  12508. bottom: 0.048
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(12 + 3 / 12, "feet"),
  12516. default: true
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(6, "feet"),
  12525. weight: math.unit(150, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/porter/front.svg",
  12529. extra: 1,
  12530. bottom: 0.01
  12531. }
  12532. },
  12533. frontRobes: {
  12534. height: math.unit(6, "feet"),
  12535. weight: math.unit(150, "lb"),
  12536. name: "Front (Robes)",
  12537. image: {
  12538. source: "./media/characters/porter/front-robes.svg",
  12539. extra: 1.01,
  12540. bottom: 0.01
  12541. }
  12542. },
  12543. },
  12544. [
  12545. {
  12546. name: "Normal",
  12547. height: math.unit(11 + 9 / 12, "feet"),
  12548. default: true
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12554. {
  12555. legendary: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(150, "lb"),
  12558. name: "Legendary",
  12559. image: {
  12560. source: "./media/characters/lucy/legendary.svg",
  12561. extra: 1355 / 1100,
  12562. bottom: 0.045
  12563. }
  12564. },
  12565. },
  12566. [
  12567. {
  12568. name: "Legendary",
  12569. height: math.unit(86882 * 2, "miles"),
  12570. default: true
  12571. },
  12572. ]
  12573. ))
  12574. characterMakers.push(() => makeCharacter(
  12575. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12576. {
  12577. front: {
  12578. height: math.unit(6, "feet"),
  12579. weight: math.unit(150, "lb"),
  12580. name: "Front",
  12581. image: {
  12582. source: "./media/characters/drusilla/front.svg",
  12583. extra: 678 / 635,
  12584. bottom: 0.03
  12585. }
  12586. },
  12587. back: {
  12588. height: math.unit(6, "feet"),
  12589. weight: math.unit(150, "lb"),
  12590. name: "Back",
  12591. image: {
  12592. source: "./media/characters/drusilla/back.svg",
  12593. extra: 678 / 635,
  12594. bottom: 0.005
  12595. }
  12596. },
  12597. },
  12598. [
  12599. {
  12600. name: "Macro",
  12601. height: math.unit(100, "feet")
  12602. },
  12603. {
  12604. name: "Canon Height",
  12605. height: math.unit(2000, "feet"),
  12606. default: true
  12607. },
  12608. ]
  12609. ))
  12610. characterMakers.push(() => makeCharacter(
  12611. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12612. {
  12613. front: {
  12614. height: math.unit(6, "feet"),
  12615. weight: math.unit(180, "lb"),
  12616. name: "Front",
  12617. image: {
  12618. source: "./media/characters/renard-thatch/front.svg",
  12619. extra: 2411 / 2275,
  12620. bottom: 0.01
  12621. }
  12622. },
  12623. frontPosing: {
  12624. height: math.unit(6, "feet"),
  12625. weight: math.unit(180, "lb"),
  12626. name: "Front (Posing)",
  12627. image: {
  12628. source: "./media/characters/renard-thatch/front-posing.svg",
  12629. extra: 2381 / 2261,
  12630. bottom: 0.01
  12631. }
  12632. },
  12633. back: {
  12634. height: math.unit(6, "feet"),
  12635. weight: math.unit(180, "lb"),
  12636. name: "Back",
  12637. image: {
  12638. source: "./media/characters/renard-thatch/back.svg",
  12639. extra: 2428 / 2288
  12640. }
  12641. },
  12642. },
  12643. [
  12644. {
  12645. name: "Micro",
  12646. height: math.unit(3, "inches")
  12647. },
  12648. {
  12649. name: "Default",
  12650. height: math.unit(6, "feet"),
  12651. default: true
  12652. },
  12653. {
  12654. name: "Macro",
  12655. height: math.unit(75, "feet")
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12661. {
  12662. front: {
  12663. height: math.unit(1450, "feet"),
  12664. weight: math.unit(1.21e6, "tons"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/sekvra/front.svg",
  12668. extra: 1,
  12669. bottom: 0.03
  12670. }
  12671. },
  12672. frontClothed: {
  12673. height: math.unit(1450, "feet"),
  12674. weight: math.unit(1.21e6, "tons"),
  12675. name: "Front (Clothed)",
  12676. image: {
  12677. source: "./media/characters/sekvra/front-clothed.svg",
  12678. extra: 1,
  12679. bottom: 0.03
  12680. }
  12681. },
  12682. side: {
  12683. height: math.unit(1450, "feet"),
  12684. weight: math.unit(1.21e6, "tons"),
  12685. name: "Side",
  12686. image: {
  12687. source: "./media/characters/sekvra/side.svg",
  12688. extra: 1,
  12689. bottom: 0.025
  12690. }
  12691. },
  12692. back: {
  12693. height: math.unit(1450, "feet"),
  12694. weight: math.unit(1.21e6, "tons"),
  12695. name: "Back",
  12696. image: {
  12697. source: "./media/characters/sekvra/back.svg",
  12698. extra: 1,
  12699. bottom: 0.005
  12700. }
  12701. },
  12702. },
  12703. [
  12704. {
  12705. name: "Macro",
  12706. height: math.unit(1450, "feet"),
  12707. default: true
  12708. },
  12709. {
  12710. name: "Megamacro",
  12711. height: math.unit(15000, "feet")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(6, "feet"),
  12720. weight: math.unit(150, "lb"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/carmine/front.svg",
  12724. extra: 1,
  12725. bottom: 0.035
  12726. }
  12727. },
  12728. frontArmor: {
  12729. height: math.unit(6, "feet"),
  12730. weight: math.unit(150, "lb"),
  12731. name: "Front (Armor)",
  12732. image: {
  12733. source: "./media/characters/carmine/front-armor.svg",
  12734. extra: 1,
  12735. bottom: 0.035
  12736. }
  12737. },
  12738. },
  12739. [
  12740. {
  12741. name: "Large",
  12742. height: math.unit(1, "mile")
  12743. },
  12744. {
  12745. name: "Huge",
  12746. height: math.unit(40, "miles"),
  12747. default: true
  12748. },
  12749. {
  12750. name: "Colossal",
  12751. height: math.unit(2500, "miles")
  12752. },
  12753. ]
  12754. ))
  12755. characterMakers.push(() => makeCharacter(
  12756. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12757. {
  12758. front: {
  12759. height: math.unit(6, "feet"),
  12760. weight: math.unit(150, "lb"),
  12761. name: "Front",
  12762. image: {
  12763. source: "./media/characters/elyssia/front.svg",
  12764. extra: 2201 / 2035,
  12765. bottom: 0.05
  12766. }
  12767. },
  12768. frontClothed: {
  12769. height: math.unit(6, "feet"),
  12770. weight: math.unit(150, "lb"),
  12771. name: "Front (Clothed)",
  12772. image: {
  12773. source: "./media/characters/elyssia/front-clothed.svg",
  12774. extra: 2201 / 2035,
  12775. bottom: 0.05
  12776. }
  12777. },
  12778. back: {
  12779. height: math.unit(6, "feet"),
  12780. weight: math.unit(150, "lb"),
  12781. name: "Back",
  12782. image: {
  12783. source: "./media/characters/elyssia/back.svg",
  12784. extra: 2201 / 2035,
  12785. bottom: 0.013
  12786. }
  12787. },
  12788. },
  12789. [
  12790. {
  12791. name: "Smaller",
  12792. height: math.unit(150, "feet")
  12793. },
  12794. {
  12795. name: "Standard",
  12796. height: math.unit(1400, "feet"),
  12797. default: true
  12798. },
  12799. {
  12800. name: "Distracted",
  12801. height: math.unit(15000, "feet")
  12802. },
  12803. ]
  12804. ))
  12805. characterMakers.push(() => makeCharacter(
  12806. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12807. {
  12808. front: {
  12809. height: math.unit(7 + 4 / 12, "feet"),
  12810. weight: math.unit(500, "lb"),
  12811. name: "Front",
  12812. image: {
  12813. source: "./media/characters/geno-maxwell/front.svg",
  12814. extra: 2207 / 2040,
  12815. bottom: 0.015
  12816. }
  12817. },
  12818. },
  12819. [
  12820. {
  12821. name: "Micro",
  12822. height: math.unit(3, "inches")
  12823. },
  12824. {
  12825. name: "Normal",
  12826. height: math.unit(7 + 4 / 12, "feet"),
  12827. default: true
  12828. },
  12829. {
  12830. name: "Macro",
  12831. height: math.unit(220, "feet")
  12832. },
  12833. {
  12834. name: "Megamacro",
  12835. height: math.unit(11, "miles")
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12841. {
  12842. front: {
  12843. height: math.unit(7 + 4 / 12, "feet"),
  12844. weight: math.unit(500, "lb"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/regena-maxwell/front.svg",
  12848. extra: 3115 / 2770,
  12849. bottom: 0.02
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Normal",
  12856. height: math.unit(7 + 4 / 12, "feet"),
  12857. default: true
  12858. },
  12859. {
  12860. name: "Macro",
  12861. height: math.unit(220, "feet")
  12862. },
  12863. {
  12864. name: "Megamacro",
  12865. height: math.unit(11, "miles")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(6, "feet"),
  12874. weight: math.unit(150, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12878. extra: 860 / 690,
  12879. bottom: 0.03
  12880. }
  12881. },
  12882. },
  12883. [
  12884. {
  12885. name: "Normal",
  12886. height: math.unit(1.7, "meters"),
  12887. default: true
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(6, "feet"),
  12896. weight: math.unit(150, "lb"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/quilly/front.svg",
  12900. extra: 890 / 776
  12901. }
  12902. },
  12903. },
  12904. [
  12905. {
  12906. name: "Gigamacro",
  12907. height: math.unit(404090, "miles"),
  12908. default: true
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12914. {
  12915. front: {
  12916. height: math.unit(7 + 8 / 12, "feet"),
  12917. weight: math.unit(350, "lb"),
  12918. name: "Front",
  12919. image: {
  12920. source: "./media/characters/tempest/front.svg",
  12921. extra: 1175 / 1086,
  12922. bottom: 0.02
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Normal",
  12929. height: math.unit(7 + 8 / 12, "feet"),
  12930. default: true
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12936. {
  12937. side: {
  12938. height: math.unit(4 + 5 / 12, "feet"),
  12939. weight: math.unit(80, "lb"),
  12940. name: "Side",
  12941. image: {
  12942. source: "./media/characters/rodger/side.svg",
  12943. extra: 1235 / 1118
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Micro",
  12950. height: math.unit(1, "inch")
  12951. },
  12952. {
  12953. name: "Normal",
  12954. height: math.unit(4 + 5 / 12, "feet"),
  12955. default: true
  12956. },
  12957. {
  12958. name: "Macro",
  12959. height: math.unit(120, "feet")
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(6, "feet"),
  12968. weight: math.unit(150, "lb"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/danyel/front.svg",
  12972. extra: 1185 / 1123,
  12973. bottom: 0.05
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Shrunken",
  12980. height: math.unit(0.5, "mm")
  12981. },
  12982. {
  12983. name: "Micro",
  12984. height: math.unit(1, "mm"),
  12985. default: true
  12986. },
  12987. {
  12988. name: "Upsized",
  12989. height: math.unit(5 + 5 / 12, "feet")
  12990. },
  12991. ]
  12992. ))
  12993. characterMakers.push(() => makeCharacter(
  12994. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12995. {
  12996. front: {
  12997. height: math.unit(5 + 6 / 12, "feet"),
  12998. weight: math.unit(200, "lb"),
  12999. name: "Front",
  13000. image: {
  13001. source: "./media/characters/vivian-bijoux/front.svg",
  13002. extra: 1,
  13003. bottom: 0.072
  13004. }
  13005. },
  13006. },
  13007. [
  13008. {
  13009. name: "Normal",
  13010. height: math.unit(5 + 6 / 12, "feet"),
  13011. default: true
  13012. },
  13013. {
  13014. name: "Bad Dream",
  13015. height: math.unit(500, "feet")
  13016. },
  13017. {
  13018. name: "Nightmare",
  13019. height: math.unit(500, "miles")
  13020. },
  13021. ]
  13022. ))
  13023. characterMakers.push(() => makeCharacter(
  13024. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13025. {
  13026. front: {
  13027. height: math.unit(6 + 1 / 12, "feet"),
  13028. weight: math.unit(260, "lb"),
  13029. name: "Front",
  13030. image: {
  13031. source: "./media/characters/zeta/front.svg",
  13032. extra: 1968 / 1889,
  13033. bottom: 0.06
  13034. }
  13035. },
  13036. back: {
  13037. height: math.unit(6 + 1 / 12, "feet"),
  13038. weight: math.unit(260, "lb"),
  13039. name: "Back",
  13040. image: {
  13041. source: "./media/characters/zeta/back.svg",
  13042. extra: 1944 / 1858,
  13043. bottom: 0.03
  13044. }
  13045. },
  13046. hand: {
  13047. height: math.unit(1.112, "feet"),
  13048. name: "Hand",
  13049. image: {
  13050. source: "./media/characters/zeta/hand.svg"
  13051. }
  13052. },
  13053. foot: {
  13054. height: math.unit(1.48, "feet"),
  13055. name: "Foot",
  13056. image: {
  13057. source: "./media/characters/zeta/foot.svg"
  13058. }
  13059. },
  13060. },
  13061. [
  13062. {
  13063. name: "Micro",
  13064. height: math.unit(6, "inches")
  13065. },
  13066. {
  13067. name: "Normal",
  13068. height: math.unit(6 + 1 / 12, "feet"),
  13069. default: true
  13070. },
  13071. {
  13072. name: "Macro",
  13073. height: math.unit(20, "feet")
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13079. {
  13080. front: {
  13081. height: math.unit(6, "feet"),
  13082. weight: math.unit(150, "lb"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/jamie-larsen/front.svg",
  13086. extra: 962 / 933,
  13087. bottom: 0.02
  13088. }
  13089. },
  13090. back: {
  13091. height: math.unit(6, "feet"),
  13092. weight: math.unit(150, "lb"),
  13093. name: "Back",
  13094. image: {
  13095. source: "./media/characters/jamie-larsen/back.svg",
  13096. extra: 997 / 946
  13097. }
  13098. },
  13099. },
  13100. [
  13101. {
  13102. name: "Macro",
  13103. height: math.unit(28 + 7 / 12, "feet"),
  13104. default: true
  13105. },
  13106. {
  13107. name: "Macro+",
  13108. height: math.unit(180, "feet")
  13109. },
  13110. {
  13111. name: "Megamacro",
  13112. height: math.unit(10, "miles")
  13113. },
  13114. {
  13115. name: "Gigamacro",
  13116. height: math.unit(200000, "miles")
  13117. },
  13118. ]
  13119. ))
  13120. characterMakers.push(() => makeCharacter(
  13121. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13122. {
  13123. front: {
  13124. height: math.unit(6, "feet"),
  13125. weight: math.unit(120, "lb"),
  13126. name: "Front",
  13127. image: {
  13128. source: "./media/characters/vance/front.svg",
  13129. extra: 1980 / 1890,
  13130. bottom: 0.09
  13131. }
  13132. },
  13133. back: {
  13134. height: math.unit(6, "feet"),
  13135. weight: math.unit(120, "lb"),
  13136. name: "Back",
  13137. image: {
  13138. source: "./media/characters/vance/back.svg",
  13139. extra: 2081 / 1994,
  13140. bottom: 0.014
  13141. }
  13142. },
  13143. hand: {
  13144. height: math.unit(0.88, "feet"),
  13145. name: "Hand",
  13146. image: {
  13147. source: "./media/characters/vance/hand.svg"
  13148. }
  13149. },
  13150. foot: {
  13151. height: math.unit(0.64, "feet"),
  13152. name: "Foot",
  13153. image: {
  13154. source: "./media/characters/vance/foot.svg"
  13155. }
  13156. },
  13157. },
  13158. [
  13159. {
  13160. name: "Small",
  13161. height: math.unit(90, "feet"),
  13162. default: true
  13163. },
  13164. {
  13165. name: "Macro",
  13166. height: math.unit(100, "meters")
  13167. },
  13168. {
  13169. name: "Megamacro",
  13170. height: math.unit(15, "miles")
  13171. },
  13172. ]
  13173. ))
  13174. characterMakers.push(() => makeCharacter(
  13175. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13176. {
  13177. front: {
  13178. height: math.unit(6, "feet"),
  13179. weight: math.unit(180, "lb"),
  13180. name: "Front",
  13181. image: {
  13182. source: "./media/characters/xochitl/front.svg",
  13183. extra: 2297 / 2261,
  13184. bottom: 0.065
  13185. }
  13186. },
  13187. back: {
  13188. height: math.unit(6, "feet"),
  13189. weight: math.unit(180, "lb"),
  13190. name: "Back",
  13191. image: {
  13192. source: "./media/characters/xochitl/back.svg",
  13193. extra: 2386 / 2354,
  13194. bottom: 0.01
  13195. }
  13196. },
  13197. foot: {
  13198. height: math.unit(6 / 5 * 1.15, "feet"),
  13199. weight: math.unit(150, "lb"),
  13200. name: "Foot",
  13201. image: {
  13202. source: "./media/characters/xochitl/foot.svg"
  13203. }
  13204. },
  13205. },
  13206. [
  13207. {
  13208. name: "Macro",
  13209. height: math.unit(80, "feet")
  13210. },
  13211. {
  13212. name: "Macro+",
  13213. height: math.unit(400, "feet"),
  13214. default: true
  13215. },
  13216. {
  13217. name: "Gigamacro",
  13218. height: math.unit(80000, "miles")
  13219. },
  13220. {
  13221. name: "Gigamacro+",
  13222. height: math.unit(400000, "miles")
  13223. },
  13224. {
  13225. name: "Teramacro",
  13226. height: math.unit(300, "AU")
  13227. },
  13228. ]
  13229. ))
  13230. characterMakers.push(() => makeCharacter(
  13231. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13232. {
  13233. front: {
  13234. height: math.unit(6, "feet"),
  13235. weight: math.unit(150, "lb"),
  13236. name: "Front",
  13237. image: {
  13238. source: "./media/characters/vincent/front.svg",
  13239. extra: 1130 / 1080,
  13240. bottom: 0.055
  13241. }
  13242. },
  13243. beak: {
  13244. height: math.unit(6 * 0.1, "feet"),
  13245. name: "Beak",
  13246. image: {
  13247. source: "./media/characters/vincent/beak.svg"
  13248. }
  13249. },
  13250. hand: {
  13251. height: math.unit(6 * 0.85, "feet"),
  13252. weight: math.unit(150, "lb"),
  13253. name: "Hand",
  13254. image: {
  13255. source: "./media/characters/vincent/hand.svg"
  13256. }
  13257. },
  13258. foot: {
  13259. height: math.unit(6 * 0.19, "feet"),
  13260. weight: math.unit(150, "lb"),
  13261. name: "Foot",
  13262. image: {
  13263. source: "./media/characters/vincent/foot.svg"
  13264. }
  13265. },
  13266. },
  13267. [
  13268. {
  13269. name: "Base",
  13270. height: math.unit(6 + 5 / 12, "feet"),
  13271. default: true
  13272. },
  13273. {
  13274. name: "Macro",
  13275. height: math.unit(300, "feet")
  13276. },
  13277. {
  13278. name: "Megamacro",
  13279. height: math.unit(2, "miles")
  13280. },
  13281. {
  13282. name: "Gigamacro",
  13283. height: math.unit(1000, "miles")
  13284. },
  13285. ]
  13286. ))
  13287. characterMakers.push(() => makeCharacter(
  13288. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13289. {
  13290. front: {
  13291. height: math.unit(6 + 2 / 12, "feet"),
  13292. weight: math.unit(265, "lb"),
  13293. name: "Front",
  13294. image: {
  13295. source: "./media/characters/jay/front.svg",
  13296. extra: 1510 / 1430,
  13297. bottom: 0.042
  13298. }
  13299. },
  13300. back: {
  13301. height: math.unit(6 + 2 / 12, "feet"),
  13302. weight: math.unit(265, "lb"),
  13303. name: "Back",
  13304. image: {
  13305. source: "./media/characters/jay/back.svg",
  13306. extra: 1510 / 1430,
  13307. bottom: 0.025
  13308. }
  13309. },
  13310. clothed: {
  13311. height: math.unit(6 + 2 / 12, "feet"),
  13312. weight: math.unit(265, "lb"),
  13313. name: "Front (Clothed)",
  13314. image: {
  13315. source: "./media/characters/jay/clothed.svg",
  13316. extra: 744 / 699,
  13317. bottom: 0.043
  13318. }
  13319. },
  13320. head: {
  13321. height: math.unit(1.772, "feet"),
  13322. name: "Head",
  13323. image: {
  13324. source: "./media/characters/jay/head.svg"
  13325. }
  13326. },
  13327. sizeRay: {
  13328. height: math.unit(1.331, "feet"),
  13329. name: "Size Ray",
  13330. image: {
  13331. source: "./media/characters/jay/size-ray.svg"
  13332. }
  13333. },
  13334. },
  13335. [
  13336. {
  13337. name: "Micro",
  13338. height: math.unit(1, "inch")
  13339. },
  13340. {
  13341. name: "Normal",
  13342. height: math.unit(6 + 2 / 12, "feet"),
  13343. default: true
  13344. },
  13345. {
  13346. name: "Macro",
  13347. height: math.unit(1, "mile")
  13348. },
  13349. {
  13350. name: "Megamacro",
  13351. height: math.unit(100, "miles")
  13352. },
  13353. ]
  13354. ))
  13355. characterMakers.push(() => makeCharacter(
  13356. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13357. {
  13358. front: {
  13359. height: math.unit(2, "meters"),
  13360. weight: math.unit(500, "kg"),
  13361. name: "Front",
  13362. image: {
  13363. source: "./media/characters/coatl/front.svg",
  13364. extra: 3948 / 3500,
  13365. bottom: 0.082
  13366. }
  13367. },
  13368. },
  13369. [
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(4, "meters")
  13373. },
  13374. {
  13375. name: "Macro",
  13376. height: math.unit(100, "meters"),
  13377. default: true
  13378. },
  13379. {
  13380. name: "Macro+",
  13381. height: math.unit(300, "meters")
  13382. },
  13383. {
  13384. name: "Megamacro",
  13385. height: math.unit(3, "gigameters")
  13386. },
  13387. {
  13388. name: "Megamacro+",
  13389. height: math.unit(300, "terameters")
  13390. },
  13391. {
  13392. name: "Megamacro++",
  13393. height: math.unit(3, "lightyears")
  13394. },
  13395. ]
  13396. ))
  13397. characterMakers.push(() => makeCharacter(
  13398. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13399. {
  13400. front: {
  13401. height: math.unit(6, "feet"),
  13402. weight: math.unit(50, "kg"),
  13403. name: "front",
  13404. image: {
  13405. source: "./media/characters/shiroryu/front.svg",
  13406. extra: 1990 / 1935
  13407. }
  13408. },
  13409. },
  13410. [
  13411. {
  13412. name: "Mortal Mingling",
  13413. height: math.unit(3, "meters")
  13414. },
  13415. {
  13416. name: "Kaiju-ish",
  13417. height: math.unit(250, "meters")
  13418. },
  13419. {
  13420. name: "Somewhat Godly",
  13421. height: math.unit(400, "km"),
  13422. default: true
  13423. },
  13424. {
  13425. name: "Planetary",
  13426. height: math.unit(300, "megameters")
  13427. },
  13428. {
  13429. name: "Galaxy-dwarfing",
  13430. height: math.unit(450, "kiloparsecs")
  13431. },
  13432. {
  13433. name: "Universe Eater",
  13434. height: math.unit(150, "gigaparsecs")
  13435. },
  13436. {
  13437. name: "Almost Immeasurable",
  13438. height: math.unit(1.3e266, "yottaparsecs")
  13439. },
  13440. ]
  13441. ))
  13442. characterMakers.push(() => makeCharacter(
  13443. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13444. {
  13445. front: {
  13446. height: math.unit(6, "feet"),
  13447. weight: math.unit(150, "lb"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/umeko/front.svg",
  13451. extra: 1,
  13452. bottom: 0.019
  13453. }
  13454. },
  13455. frontArmored: {
  13456. height: math.unit(6, "feet"),
  13457. weight: math.unit(150, "lb"),
  13458. name: "Front (Armored)",
  13459. image: {
  13460. source: "./media/characters/umeko/front-armored.svg",
  13461. extra: 1,
  13462. bottom: 0.021
  13463. }
  13464. },
  13465. },
  13466. [
  13467. {
  13468. name: "Macro",
  13469. height: math.unit(220, "feet"),
  13470. default: true
  13471. },
  13472. {
  13473. name: "Guardian Dragon",
  13474. height: math.unit(50, "miles")
  13475. },
  13476. {
  13477. name: "Cosmic",
  13478. height: math.unit(800000, "miles")
  13479. },
  13480. ]
  13481. ))
  13482. characterMakers.push(() => makeCharacter(
  13483. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13484. {
  13485. front: {
  13486. height: math.unit(6, "feet"),
  13487. weight: math.unit(150, "lb"),
  13488. name: "Front",
  13489. image: {
  13490. source: "./media/characters/cassidy/front.svg",
  13491. extra: 1,
  13492. bottom: 0.043
  13493. }
  13494. },
  13495. },
  13496. [
  13497. {
  13498. name: "Canon Height",
  13499. height: math.unit(120, "feet"),
  13500. default: true
  13501. },
  13502. {
  13503. name: "Macro+",
  13504. height: math.unit(400, "feet")
  13505. },
  13506. {
  13507. name: "Macro++",
  13508. height: math.unit(4000, "feet")
  13509. },
  13510. {
  13511. name: "Megamacro",
  13512. height: math.unit(3, "miles")
  13513. },
  13514. ]
  13515. ))
  13516. characterMakers.push(() => makeCharacter(
  13517. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13518. {
  13519. front: {
  13520. height: math.unit(6, "feet"),
  13521. weight: math.unit(150, "lb"),
  13522. name: "Front",
  13523. image: {
  13524. source: "./media/characters/isaac/front.svg",
  13525. extra: 896 / 815,
  13526. bottom: 0.11
  13527. }
  13528. },
  13529. },
  13530. [
  13531. {
  13532. name: "Human Size",
  13533. height: math.unit(8, "feet"),
  13534. default: true
  13535. },
  13536. {
  13537. name: "Macro",
  13538. height: math.unit(400, "feet")
  13539. },
  13540. {
  13541. name: "Megamacro",
  13542. height: math.unit(50, "miles")
  13543. },
  13544. {
  13545. name: "Canon Height",
  13546. height: math.unit(200, "AU")
  13547. },
  13548. ]
  13549. ))
  13550. characterMakers.push(() => makeCharacter(
  13551. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13552. {
  13553. front: {
  13554. height: math.unit(6, "feet"),
  13555. weight: math.unit(72, "kg"),
  13556. name: "Front",
  13557. image: {
  13558. source: "./media/characters/sleekit/front.svg",
  13559. extra: 4693 / 4487,
  13560. bottom: 0.012
  13561. }
  13562. },
  13563. },
  13564. [
  13565. {
  13566. name: "Minimum Height",
  13567. height: math.unit(10, "meters")
  13568. },
  13569. {
  13570. name: "Smaller",
  13571. height: math.unit(25, "meters")
  13572. },
  13573. {
  13574. name: "Larger",
  13575. height: math.unit(38, "meters"),
  13576. default: true
  13577. },
  13578. {
  13579. name: "Maximum height",
  13580. height: math.unit(100, "meters")
  13581. },
  13582. ]
  13583. ))
  13584. characterMakers.push(() => makeCharacter(
  13585. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13586. {
  13587. front: {
  13588. height: math.unit(6, "feet"),
  13589. weight: math.unit(150, "lb"),
  13590. name: "Front",
  13591. image: {
  13592. source: "./media/characters/nillia/front.svg",
  13593. extra: 2195 / 2037,
  13594. bottom: 0.005
  13595. }
  13596. },
  13597. back: {
  13598. height: math.unit(6, "feet"),
  13599. weight: math.unit(150, "lb"),
  13600. name: "Back",
  13601. image: {
  13602. source: "./media/characters/nillia/back.svg",
  13603. extra: 2195 / 2037,
  13604. bottom: 0.005
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Canon Height",
  13611. height: math.unit(489, "feet"),
  13612. default: true
  13613. }
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(150, "lb"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/mesmyriza/front.svg",
  13625. extra: 2067 / 1784,
  13626. bottom: 0.035
  13627. }
  13628. },
  13629. foot: {
  13630. height: math.unit(6 / (250 / 35), "feet"),
  13631. name: "Foot",
  13632. image: {
  13633. source: "./media/characters/mesmyriza/foot.svg"
  13634. }
  13635. },
  13636. },
  13637. [
  13638. {
  13639. name: "Macro",
  13640. height: math.unit(457, "meters"),
  13641. default: true
  13642. },
  13643. {
  13644. name: "Megamacro",
  13645. height: math.unit(8, "megameters")
  13646. },
  13647. ]
  13648. ))
  13649. characterMakers.push(() => makeCharacter(
  13650. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13651. {
  13652. front: {
  13653. height: math.unit(6, "feet"),
  13654. weight: math.unit(250, "lb"),
  13655. name: "Front",
  13656. image: {
  13657. source: "./media/characters/saudade/front.svg",
  13658. extra: 1172 / 1139,
  13659. bottom: 0.035
  13660. }
  13661. },
  13662. },
  13663. [
  13664. {
  13665. name: "Micro",
  13666. height: math.unit(3, "inches")
  13667. },
  13668. {
  13669. name: "Normal",
  13670. height: math.unit(6, "feet"),
  13671. default: true
  13672. },
  13673. {
  13674. name: "Macro",
  13675. height: math.unit(50, "feet")
  13676. },
  13677. {
  13678. name: "Megamacro",
  13679. height: math.unit(2800, "feet")
  13680. },
  13681. ]
  13682. ))
  13683. characterMakers.push(() => makeCharacter(
  13684. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13685. {
  13686. front: {
  13687. height: math.unit(5 + 4 / 12, "feet"),
  13688. weight: math.unit(100, "lb"),
  13689. name: "Front",
  13690. image: {
  13691. source: "./media/characters/keireer/front.svg",
  13692. extra: 716 / 666,
  13693. bottom: 0.05
  13694. }
  13695. },
  13696. },
  13697. [
  13698. {
  13699. name: "Normal",
  13700. height: math.unit(5 + 4 / 12, "feet"),
  13701. default: true
  13702. },
  13703. ]
  13704. ))
  13705. characterMakers.push(() => makeCharacter(
  13706. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13707. {
  13708. front: {
  13709. height: math.unit(6, "feet"),
  13710. weight: math.unit(90, "kg"),
  13711. name: "Front",
  13712. image: {
  13713. source: "./media/characters/mirja/front.svg",
  13714. extra: 1789 / 1683,
  13715. bottom: 0.05
  13716. }
  13717. },
  13718. frontDressed: {
  13719. height: math.unit(6, "feet"),
  13720. weight: math.unit(90, "lb"),
  13721. name: "Front (Dressed)",
  13722. image: {
  13723. source: "./media/characters/mirja/front-dressed.svg",
  13724. extra: 1789 / 1683,
  13725. bottom: 0.05
  13726. }
  13727. },
  13728. back: {
  13729. height: math.unit(6, "feet"),
  13730. weight: math.unit(90, "lb"),
  13731. name: "Back",
  13732. image: {
  13733. source: "./media/characters/mirja/back.svg",
  13734. extra: 953 / 917,
  13735. bottom: 0.017
  13736. }
  13737. },
  13738. },
  13739. [
  13740. {
  13741. name: "\"Incognito\"",
  13742. height: math.unit(3, "meters")
  13743. },
  13744. {
  13745. name: "Strolling Size",
  13746. height: math.unit(15, "km")
  13747. },
  13748. {
  13749. name: "Larger Strolling Size",
  13750. height: math.unit(400, "km")
  13751. },
  13752. {
  13753. name: "Preferred Size",
  13754. height: math.unit(5000, "km")
  13755. },
  13756. {
  13757. name: "True Size",
  13758. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13759. default: true
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13765. {
  13766. front: {
  13767. height: math.unit(15, "feet"),
  13768. weight: math.unit(880, "kg"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/nightraver/front.svg",
  13772. extra: 2444 / 2160,
  13773. bottom: 0.027
  13774. }
  13775. },
  13776. back: {
  13777. height: math.unit(15, "feet"),
  13778. weight: math.unit(880, "kg"),
  13779. name: "Back",
  13780. image: {
  13781. source: "./media/characters/nightraver/back.svg",
  13782. extra: 2309 / 2180,
  13783. bottom: 0.005
  13784. }
  13785. },
  13786. sole: {
  13787. height: math.unit(2.878, "feet"),
  13788. name: "Sole",
  13789. image: {
  13790. source: "./media/characters/nightraver/sole.svg"
  13791. }
  13792. },
  13793. foot: {
  13794. height: math.unit(2.285, "feet"),
  13795. name: "Foot",
  13796. image: {
  13797. source: "./media/characters/nightraver/foot.svg"
  13798. }
  13799. },
  13800. maw: {
  13801. height: math.unit(2.67, "feet"),
  13802. name: "Maw",
  13803. image: {
  13804. source: "./media/characters/nightraver/maw.svg"
  13805. }
  13806. },
  13807. },
  13808. [
  13809. {
  13810. name: "Micro",
  13811. height: math.unit(1, "cm")
  13812. },
  13813. {
  13814. name: "Normal",
  13815. height: math.unit(15, "feet"),
  13816. default: true
  13817. },
  13818. {
  13819. name: "Macro",
  13820. height: math.unit(300, "feet")
  13821. },
  13822. {
  13823. name: "Megamacro",
  13824. height: math.unit(300, "miles")
  13825. },
  13826. {
  13827. name: "Gigamacro",
  13828. height: math.unit(10000, "miles")
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13834. {
  13835. side: {
  13836. height: math.unit(2, "inches"),
  13837. weight: math.unit(5, "grams"),
  13838. name: "Side",
  13839. image: {
  13840. source: "./media/characters/arc/side.svg"
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Micro",
  13847. height: math.unit(2, "inches"),
  13848. default: true
  13849. },
  13850. ]
  13851. ))
  13852. characterMakers.push(() => makeCharacter(
  13853. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13854. {
  13855. front: {
  13856. height: math.unit(1.1938, "meters"),
  13857. weight: math.unit(54, "kg"),
  13858. name: "Front",
  13859. image: {
  13860. source: "./media/characters/nebula-shahar/front.svg",
  13861. extra: 1642 / 1436,
  13862. bottom: 0.06
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Megamicro",
  13869. height: math.unit(0.3, "mm")
  13870. },
  13871. {
  13872. name: "Micro",
  13873. height: math.unit(3, "cm")
  13874. },
  13875. {
  13876. name: "Normal",
  13877. height: math.unit(138, "cm"),
  13878. default: true
  13879. },
  13880. {
  13881. name: "Macro",
  13882. height: math.unit(30, "m")
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13888. {
  13889. front: {
  13890. height: math.unit(5.24, "feet"),
  13891. weight: math.unit(150, "lb"),
  13892. name: "Front",
  13893. image: {
  13894. source: "./media/characters/shayla/front.svg",
  13895. extra: 1512 / 1414,
  13896. bottom: 0.01
  13897. }
  13898. },
  13899. back: {
  13900. height: math.unit(5.24, "feet"),
  13901. weight: math.unit(150, "lb"),
  13902. name: "Back",
  13903. image: {
  13904. source: "./media/characters/shayla/back.svg",
  13905. extra: 1512 / 1414
  13906. }
  13907. },
  13908. hand: {
  13909. height: math.unit(0.7781496062992126, "feet"),
  13910. name: "Hand",
  13911. image: {
  13912. source: "./media/characters/shayla/hand.svg"
  13913. }
  13914. },
  13915. foot: {
  13916. height: math.unit(1.4206036745406823, "feet"),
  13917. name: "Foot",
  13918. image: {
  13919. source: "./media/characters/shayla/foot.svg"
  13920. }
  13921. },
  13922. },
  13923. [
  13924. {
  13925. name: "Micro",
  13926. height: math.unit(0.32, "feet")
  13927. },
  13928. {
  13929. name: "Normal",
  13930. height: math.unit(5.24, "feet"),
  13931. default: true
  13932. },
  13933. {
  13934. name: "Macro",
  13935. height: math.unit(492.12, "feet")
  13936. },
  13937. {
  13938. name: "Megamacro",
  13939. height: math.unit(186.41, "miles")
  13940. },
  13941. ]
  13942. ))
  13943. characterMakers.push(() => makeCharacter(
  13944. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13945. {
  13946. front: {
  13947. height: math.unit(2.2, "m"),
  13948. weight: math.unit(120, "kg"),
  13949. name: "Front",
  13950. image: {
  13951. source: "./media/characters/pia-jr/front.svg",
  13952. extra: 1000 / 970,
  13953. bottom: 0.035
  13954. }
  13955. },
  13956. hand: {
  13957. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13958. name: "Hand",
  13959. image: {
  13960. source: "./media/characters/pia-jr/hand.svg"
  13961. }
  13962. },
  13963. paw: {
  13964. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13965. name: "Paw",
  13966. image: {
  13967. source: "./media/characters/pia-jr/paw.svg"
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Micro",
  13974. height: math.unit(1.2, "cm")
  13975. },
  13976. {
  13977. name: "Normal",
  13978. height: math.unit(2.2, "m"),
  13979. default: true
  13980. },
  13981. {
  13982. name: "Macro",
  13983. height: math.unit(180, "m")
  13984. },
  13985. {
  13986. name: "Megamacro",
  13987. height: math.unit(420, "km")
  13988. },
  13989. ]
  13990. ))
  13991. characterMakers.push(() => makeCharacter(
  13992. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13993. {
  13994. front: {
  13995. height: math.unit(2, "m"),
  13996. weight: math.unit(115, "kg"),
  13997. name: "Front",
  13998. image: {
  13999. source: "./media/characters/pia-sr/front.svg",
  14000. extra: 760 / 730,
  14001. bottom: 0.015
  14002. }
  14003. },
  14004. back: {
  14005. height: math.unit(2, "m"),
  14006. weight: math.unit(115, "kg"),
  14007. name: "Back",
  14008. image: {
  14009. source: "./media/characters/pia-sr/back.svg",
  14010. extra: 760 / 730,
  14011. bottom: 0.01
  14012. }
  14013. },
  14014. hand: {
  14015. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14016. name: "Hand",
  14017. image: {
  14018. source: "./media/characters/pia-sr/hand.svg"
  14019. }
  14020. },
  14021. foot: {
  14022. height: math.unit(1.83, "feet"),
  14023. name: "Foot",
  14024. image: {
  14025. source: "./media/characters/pia-sr/foot.svg"
  14026. }
  14027. },
  14028. },
  14029. [
  14030. {
  14031. name: "Micro",
  14032. height: math.unit(88, "mm")
  14033. },
  14034. {
  14035. name: "Normal",
  14036. height: math.unit(2, "m"),
  14037. default: true
  14038. },
  14039. {
  14040. name: "Macro",
  14041. height: math.unit(200, "m")
  14042. },
  14043. {
  14044. name: "Megamacro",
  14045. height: math.unit(420, "km")
  14046. },
  14047. ]
  14048. ))
  14049. characterMakers.push(() => makeCharacter(
  14050. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14051. {
  14052. front: {
  14053. height: math.unit(8 + 2 / 12, "feet"),
  14054. weight: math.unit(300, "lb"),
  14055. name: "Front",
  14056. image: {
  14057. source: "./media/characters/kibibyte/front.svg",
  14058. extra: 2221 / 2098,
  14059. bottom: 0.04
  14060. }
  14061. },
  14062. },
  14063. [
  14064. {
  14065. name: "Normal",
  14066. height: math.unit(8 + 2 / 12, "feet"),
  14067. default: true
  14068. },
  14069. {
  14070. name: "Socialable Macro",
  14071. height: math.unit(50, "feet")
  14072. },
  14073. {
  14074. name: "Macro",
  14075. height: math.unit(300, "feet")
  14076. },
  14077. {
  14078. name: "Megamacro",
  14079. height: math.unit(500, "miles")
  14080. },
  14081. ]
  14082. ))
  14083. characterMakers.push(() => makeCharacter(
  14084. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14085. {
  14086. front: {
  14087. height: math.unit(6, "feet"),
  14088. weight: math.unit(150, "lb"),
  14089. name: "Front",
  14090. image: {
  14091. source: "./media/characters/felix/front.svg",
  14092. extra: 762 / 722,
  14093. bottom: 0.02
  14094. }
  14095. },
  14096. frontClothed: {
  14097. height: math.unit(6, "feet"),
  14098. weight: math.unit(150, "lb"),
  14099. name: "Front (Clothed)",
  14100. image: {
  14101. source: "./media/characters/felix/front-clothed.svg",
  14102. extra: 762 / 722,
  14103. bottom: 0.02
  14104. }
  14105. },
  14106. },
  14107. [
  14108. {
  14109. name: "Normal",
  14110. height: math.unit(6 + 8 / 12, "feet"),
  14111. default: true
  14112. },
  14113. {
  14114. name: "Macro",
  14115. height: math.unit(2600, "feet")
  14116. },
  14117. {
  14118. name: "Megamacro",
  14119. height: math.unit(450, "miles")
  14120. },
  14121. ]
  14122. ))
  14123. characterMakers.push(() => makeCharacter(
  14124. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14125. {
  14126. front: {
  14127. height: math.unit(6 + 1 / 12, "feet"),
  14128. weight: math.unit(250, "lb"),
  14129. name: "Front",
  14130. image: {
  14131. source: "./media/characters/tobo/front.svg",
  14132. extra: 608 / 586,
  14133. bottom: 0.023
  14134. }
  14135. },
  14136. back: {
  14137. height: math.unit(6 + 1 / 12, "feet"),
  14138. weight: math.unit(250, "lb"),
  14139. name: "Back",
  14140. image: {
  14141. source: "./media/characters/tobo/back.svg",
  14142. extra: 608 / 586
  14143. }
  14144. },
  14145. },
  14146. [
  14147. {
  14148. name: "Nano",
  14149. height: math.unit(2, "nm")
  14150. },
  14151. {
  14152. name: "Megamicro",
  14153. height: math.unit(0.1, "mm")
  14154. },
  14155. {
  14156. name: "Micro",
  14157. height: math.unit(1, "inch"),
  14158. default: true
  14159. },
  14160. {
  14161. name: "Human-sized",
  14162. height: math.unit(6 + 1 / 12, "feet")
  14163. },
  14164. {
  14165. name: "Macro",
  14166. height: math.unit(250, "feet")
  14167. },
  14168. {
  14169. name: "Megamacro",
  14170. height: math.unit(75, "miles")
  14171. },
  14172. {
  14173. name: "Texas-sized",
  14174. height: math.unit(750, "miles")
  14175. },
  14176. {
  14177. name: "Teramacro",
  14178. height: math.unit(50000, "miles")
  14179. },
  14180. ]
  14181. ))
  14182. characterMakers.push(() => makeCharacter(
  14183. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14184. {
  14185. front: {
  14186. height: math.unit(6, "feet"),
  14187. weight: math.unit(269, "lb"),
  14188. name: "Front",
  14189. image: {
  14190. source: "./media/characters/danny-kapowsky/front.svg",
  14191. extra: 766 / 736,
  14192. bottom: 0.044
  14193. }
  14194. },
  14195. back: {
  14196. height: math.unit(6, "feet"),
  14197. weight: math.unit(269, "lb"),
  14198. name: "Back",
  14199. image: {
  14200. source: "./media/characters/danny-kapowsky/back.svg",
  14201. extra: 797 / 760,
  14202. bottom: 0.025
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Macro",
  14209. height: math.unit(150, "feet"),
  14210. default: true
  14211. },
  14212. {
  14213. name: "Macro+",
  14214. height: math.unit(200, "feet")
  14215. },
  14216. {
  14217. name: "Macro++",
  14218. height: math.unit(300, "feet")
  14219. },
  14220. {
  14221. name: "Macro+++",
  14222. height: math.unit(400, "feet")
  14223. },
  14224. ]
  14225. ))
  14226. characterMakers.push(() => makeCharacter(
  14227. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14228. {
  14229. side: {
  14230. height: math.unit(6, "feet"),
  14231. weight: math.unit(170, "lb"),
  14232. name: "Side",
  14233. image: {
  14234. source: "./media/characters/finn/side.svg",
  14235. extra: 1953 / 1807,
  14236. bottom: 0.057
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "Megamacro",
  14243. height: math.unit(14445, "feet"),
  14244. default: true
  14245. },
  14246. ]
  14247. ))
  14248. characterMakers.push(() => makeCharacter(
  14249. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14250. {
  14251. front: {
  14252. height: math.unit(5 + 6 / 12, "feet"),
  14253. weight: math.unit(125, "lb"),
  14254. name: "Front",
  14255. image: {
  14256. source: "./media/characters/roy/front.svg",
  14257. extra: 1,
  14258. bottom: 0.11
  14259. }
  14260. },
  14261. },
  14262. [
  14263. {
  14264. name: "Micro",
  14265. height: math.unit(3, "inches"),
  14266. default: true
  14267. },
  14268. {
  14269. name: "Normal",
  14270. height: math.unit(5 + 6 / 12, "feet")
  14271. },
  14272. {
  14273. name: "Lesser Macro",
  14274. height: math.unit(60, "feet")
  14275. },
  14276. {
  14277. name: "Greater Macro",
  14278. height: math.unit(120, "feet")
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14284. {
  14285. front: {
  14286. height: math.unit(6, "feet"),
  14287. weight: math.unit(100, "lb"),
  14288. name: "Front",
  14289. image: {
  14290. source: "./media/characters/aevsivs/front.svg",
  14291. extra: 1,
  14292. bottom: 0.03
  14293. }
  14294. },
  14295. back: {
  14296. height: math.unit(6, "feet"),
  14297. weight: math.unit(100, "lb"),
  14298. name: "Back",
  14299. image: {
  14300. source: "./media/characters/aevsivs/back.svg"
  14301. }
  14302. },
  14303. },
  14304. [
  14305. {
  14306. name: "Micro",
  14307. height: math.unit(2, "inches"),
  14308. default: true
  14309. },
  14310. {
  14311. name: "Normal",
  14312. height: math.unit(5, "feet")
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14318. {
  14319. front: {
  14320. height: math.unit(5 + 7 / 12, "feet"),
  14321. weight: math.unit(159, "lb"),
  14322. name: "Front",
  14323. image: {
  14324. source: "./media/characters/hildegard/front.svg",
  14325. extra: 289 / 269,
  14326. bottom: 7.63 / 297.8
  14327. }
  14328. },
  14329. back: {
  14330. height: math.unit(5 + 7 / 12, "feet"),
  14331. weight: math.unit(159, "lb"),
  14332. name: "Back",
  14333. image: {
  14334. source: "./media/characters/hildegard/back.svg",
  14335. extra: 280 / 260,
  14336. bottom: 2.3 / 282
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Normal",
  14343. height: math.unit(5 + 7 / 12, "feet"),
  14344. default: true
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14350. {
  14351. bernard: {
  14352. height: math.unit(2 + 7 / 12, "feet"),
  14353. weight: math.unit(66, "lb"),
  14354. name: "Bernard",
  14355. rename: true,
  14356. image: {
  14357. source: "./media/characters/bernard-wilder/bernard.svg",
  14358. extra: 192 / 128,
  14359. bottom: 0.05
  14360. }
  14361. },
  14362. wilder: {
  14363. height: math.unit(5 + 8 / 12, "feet"),
  14364. weight: math.unit(143, "lb"),
  14365. name: "Wilder",
  14366. rename: true,
  14367. image: {
  14368. source: "./media/characters/bernard-wilder/wilder.svg",
  14369. extra: 361 / 312,
  14370. bottom: 0.02
  14371. }
  14372. },
  14373. },
  14374. [
  14375. {
  14376. name: "Normal",
  14377. height: math.unit(2 + 7 / 12, "feet"),
  14378. default: true
  14379. },
  14380. ]
  14381. ))
  14382. characterMakers.push(() => makeCharacter(
  14383. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14384. {
  14385. anthro: {
  14386. height: math.unit(6 + 1 / 12, "feet"),
  14387. weight: math.unit(155, "lb"),
  14388. name: "Anthro",
  14389. image: {
  14390. source: "./media/characters/hearth/anthro.svg",
  14391. extra: 260 / 250,
  14392. bottom: 0.02
  14393. }
  14394. },
  14395. feral: {
  14396. height: math.unit(3.78, "feet"),
  14397. weight: math.unit(35, "kg"),
  14398. name: "Feral",
  14399. image: {
  14400. source: "./media/characters/hearth/feral.svg",
  14401. extra: 153 / 135,
  14402. bottom: 0.03
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Normal",
  14409. height: math.unit(6 + 1 / 12, "feet"),
  14410. default: true
  14411. },
  14412. ]
  14413. ))
  14414. characterMakers.push(() => makeCharacter(
  14415. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14416. {
  14417. front: {
  14418. height: math.unit(6, "feet"),
  14419. weight: math.unit(182, "lb"),
  14420. name: "Front",
  14421. image: {
  14422. source: "./media/characters/ingrid/front.svg",
  14423. extra: 294 / 268,
  14424. bottom: 0.027
  14425. }
  14426. },
  14427. },
  14428. [
  14429. {
  14430. name: "Normal",
  14431. height: math.unit(6, "feet"),
  14432. default: true
  14433. },
  14434. ]
  14435. ))
  14436. characterMakers.push(() => makeCharacter(
  14437. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14438. {
  14439. eevee: {
  14440. height: math.unit(2 + 10 / 12, "feet"),
  14441. weight: math.unit(86, "lb"),
  14442. name: "Malgam",
  14443. image: {
  14444. source: "./media/characters/malgam/eevee.svg",
  14445. extra: 218 / 180,
  14446. bottom: 0.2
  14447. }
  14448. },
  14449. sylveon: {
  14450. height: math.unit(4, "feet"),
  14451. weight: math.unit(101, "lb"),
  14452. name: "Future Malgam",
  14453. rename: true,
  14454. image: {
  14455. source: "./media/characters/malgam/sylveon.svg",
  14456. extra: 371 / 325,
  14457. bottom: 0.015
  14458. }
  14459. },
  14460. gigantamax: {
  14461. height: math.unit(50, "feet"),
  14462. name: "Gigantamax Malgam",
  14463. rename: true,
  14464. image: {
  14465. source: "./media/characters/malgam/gigantamax.svg"
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(2 + 10 / 12, "feet"),
  14473. default: true
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14479. {
  14480. front: {
  14481. height: math.unit(5 + 11 / 12, "feet"),
  14482. weight: math.unit(188, "lb"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/fleur/front.svg",
  14486. extra: 309 / 283,
  14487. bottom: 0.007
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(5 + 11 / 12, "feet"),
  14495. default: true
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(5 + 4 / 12, "feet"),
  14504. weight: math.unit(122, "lb"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/jude/front.svg",
  14508. extra: 288 / 273,
  14509. bottom: 0.03
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(5 + 4 / 12, "feet"),
  14517. default: true
  14518. },
  14519. ]
  14520. ))
  14521. characterMakers.push(() => makeCharacter(
  14522. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14523. {
  14524. front: {
  14525. height: math.unit(5 + 11 / 12, "feet"),
  14526. weight: math.unit(190, "lb"),
  14527. name: "Front",
  14528. image: {
  14529. source: "./media/characters/seara/front.svg",
  14530. extra: 1,
  14531. bottom: 0.05
  14532. }
  14533. },
  14534. },
  14535. [
  14536. {
  14537. name: "Normal",
  14538. height: math.unit(5 + 11 / 12, "feet"),
  14539. default: true
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14545. {
  14546. front: {
  14547. height: math.unit(16 + 5 / 12, "feet"),
  14548. weight: math.unit(524, "lb"),
  14549. name: "Front",
  14550. image: {
  14551. source: "./media/characters/caspian/front.svg",
  14552. extra: 1,
  14553. bottom: 0.04
  14554. }
  14555. },
  14556. },
  14557. [
  14558. {
  14559. name: "Normal",
  14560. height: math.unit(16 + 5 / 12, "feet"),
  14561. default: true
  14562. },
  14563. ]
  14564. ))
  14565. characterMakers.push(() => makeCharacter(
  14566. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14567. {
  14568. front: {
  14569. height: math.unit(5 + 7 / 12, "feet"),
  14570. weight: math.unit(170, "lb"),
  14571. name: "Front",
  14572. image: {
  14573. source: "./media/characters/mika/front.svg",
  14574. extra: 1,
  14575. bottom: 0.016
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "Normal",
  14582. height: math.unit(5 + 7 / 12, "feet"),
  14583. default: true
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14589. {
  14590. front: {
  14591. height: math.unit(6 + 2 / 12, "feet"),
  14592. weight: math.unit(268, "lb"),
  14593. name: "Front",
  14594. image: {
  14595. source: "./media/characters/sol/front.svg",
  14596. extra: 247 / 231,
  14597. bottom: 0.05
  14598. }
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Normal",
  14604. height: math.unit(6 + 2 / 12, "feet"),
  14605. default: true
  14606. },
  14607. ]
  14608. ))
  14609. characterMakers.push(() => makeCharacter(
  14610. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14611. {
  14612. buizel: {
  14613. height: math.unit(2 + 5 / 12, "feet"),
  14614. weight: math.unit(87, "lb"),
  14615. name: "Buizel",
  14616. image: {
  14617. source: "./media/characters/umiko/buizel.svg",
  14618. extra: 172 / 157,
  14619. bottom: 0.01
  14620. }
  14621. },
  14622. floatzel: {
  14623. height: math.unit(5 + 9 / 12, "feet"),
  14624. weight: math.unit(250, "lb"),
  14625. name: "Floatzel",
  14626. image: {
  14627. source: "./media/characters/umiko/floatzel.svg",
  14628. extra: 262 / 248
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Normal",
  14635. height: math.unit(2 + 5 / 12, "feet"),
  14636. default: true
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14642. {
  14643. front: {
  14644. height: math.unit(6 + 2 / 12, "feet"),
  14645. weight: math.unit(146, "lb"),
  14646. name: "Front",
  14647. image: {
  14648. source: "./media/characters/iliac/front.svg",
  14649. extra: 389 / 365,
  14650. bottom: 0.035
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "Normal",
  14657. height: math.unit(6 + 2 / 12, "feet"),
  14658. default: true
  14659. },
  14660. ]
  14661. ))
  14662. characterMakers.push(() => makeCharacter(
  14663. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14664. {
  14665. front: {
  14666. height: math.unit(6, "feet"),
  14667. weight: math.unit(170, "lb"),
  14668. name: "Front",
  14669. image: {
  14670. source: "./media/characters/topaz/front.svg",
  14671. extra: 317 / 303,
  14672. bottom: 0.055
  14673. }
  14674. },
  14675. },
  14676. [
  14677. {
  14678. name: "Normal",
  14679. height: math.unit(6, "feet"),
  14680. default: true
  14681. },
  14682. ]
  14683. ))
  14684. characterMakers.push(() => makeCharacter(
  14685. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14686. {
  14687. front: {
  14688. height: math.unit(5 + 11 / 12, "feet"),
  14689. weight: math.unit(144, "lb"),
  14690. name: "Front",
  14691. image: {
  14692. source: "./media/characters/gabriel/front.svg",
  14693. extra: 285 / 262,
  14694. bottom: 0.004
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(5 + 11 / 12, "feet"),
  14702. default: true
  14703. },
  14704. ]
  14705. ))
  14706. characterMakers.push(() => makeCharacter(
  14707. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14708. {
  14709. side: {
  14710. height: math.unit(6 + 5 / 12, "feet"),
  14711. weight: math.unit(300, "lb"),
  14712. name: "Side",
  14713. image: {
  14714. source: "./media/characters/tempest-suicune/side.svg",
  14715. extra: 195 / 154,
  14716. bottom: 0.04
  14717. }
  14718. },
  14719. },
  14720. [
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(6 + 5 / 12, "feet"),
  14724. default: true
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(7 + 2 / 12, "feet"),
  14733. weight: math.unit(322, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/vulcan/front.svg",
  14737. extra: 154 / 147,
  14738. bottom: 0.04
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Normal",
  14745. height: math.unit(7 + 2 / 12, "feet"),
  14746. default: true
  14747. },
  14748. ]
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14752. {
  14753. front: {
  14754. height: math.unit(5 + 10 / 12, "feet"),
  14755. weight: math.unit(264, "lb"),
  14756. name: "Front",
  14757. image: {
  14758. source: "./media/characters/gault/front.svg",
  14759. extra: 161 / 140,
  14760. bottom: 0.028
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Normal",
  14767. height: math.unit(5 + 10 / 12, "feet"),
  14768. default: true
  14769. },
  14770. ]
  14771. ))
  14772. characterMakers.push(() => makeCharacter(
  14773. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14774. {
  14775. front: {
  14776. height: math.unit(6, "feet"),
  14777. weight: math.unit(150, "lb"),
  14778. name: "Front",
  14779. image: {
  14780. source: "./media/characters/shard/front.svg",
  14781. extra: 273 / 238,
  14782. bottom: 0.02
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(3 + 6 / 12, "feet"),
  14790. default: true
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14796. {
  14797. front: {
  14798. height: math.unit(5 + 11 / 12, "feet"),
  14799. weight: math.unit(146, "lb"),
  14800. name: "Front",
  14801. image: {
  14802. source: "./media/characters/ashe/front.svg",
  14803. extra: 400 / 373,
  14804. bottom: 0.01
  14805. }
  14806. },
  14807. },
  14808. [
  14809. {
  14810. name: "Normal",
  14811. height: math.unit(5 + 11 / 12, "feet"),
  14812. default: true
  14813. },
  14814. ]
  14815. ))
  14816. characterMakers.push(() => makeCharacter(
  14817. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14818. {
  14819. front: {
  14820. height: math.unit(5 + 5 / 12, "feet"),
  14821. weight: math.unit(135, "lb"),
  14822. name: "Front",
  14823. image: {
  14824. source: "./media/characters/beatrix/front.svg",
  14825. extra: 392 / 379,
  14826. bottom: 0.01
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Normal",
  14833. height: math.unit(6, "feet"),
  14834. default: true
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14840. {
  14841. front: {
  14842. height: math.unit(6, "feet"),
  14843. weight: math.unit(150, "lb"),
  14844. name: "Front",
  14845. image: {
  14846. source: "./media/characters/ignatius/front.svg",
  14847. extra: 245 / 222,
  14848. bottom: 0.01
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Normal",
  14855. height: math.unit(5 + 5 / 12, "feet"),
  14856. default: true
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14862. {
  14863. front: {
  14864. height: math.unit(6 + 2 / 12, "feet"),
  14865. weight: math.unit(138, "lb"),
  14866. name: "Front",
  14867. image: {
  14868. source: "./media/characters/mei-li/front.svg",
  14869. extra: 237 / 229,
  14870. bottom: 0.03
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(6 + 2 / 12, "feet"),
  14878. default: true
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14884. {
  14885. front: {
  14886. height: math.unit(2 + 4 / 12, "feet"),
  14887. weight: math.unit(62, "lb"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/puru/front.svg",
  14891. extra: 206 / 149,
  14892. bottom: 0.06
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Normal",
  14899. height: math.unit(2 + 4 / 12, "feet"),
  14900. default: true
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14906. {
  14907. taur: {
  14908. height: math.unit(11, "feet"),
  14909. weight: math.unit(500, "lb"),
  14910. name: "Taur",
  14911. image: {
  14912. source: "./media/characters/kee/taur.svg",
  14913. extra: 1,
  14914. bottom: 0.04
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Normal",
  14921. height: math.unit(11, "feet"),
  14922. default: true
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14928. {
  14929. anthro: {
  14930. height: math.unit(7, "feet"),
  14931. weight: math.unit(190, "lb"),
  14932. name: "Anthro",
  14933. image: {
  14934. source: "./media/characters/cobalt-dracha/anthro.svg",
  14935. extra: 231 / 225,
  14936. bottom: 0.04
  14937. }
  14938. },
  14939. feral: {
  14940. height: math.unit(9 + 7 / 12, "feet"),
  14941. weight: math.unit(294, "lb"),
  14942. name: "Feral",
  14943. image: {
  14944. source: "./media/characters/cobalt-dracha/feral.svg",
  14945. extra: 692 / 633,
  14946. bottom: 0.05
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Normal",
  14953. height: math.unit(7, "feet"),
  14954. default: true
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14960. {
  14961. fallen: {
  14962. height: math.unit(11 + 8 / 12, "feet"),
  14963. weight: math.unit(485, "lb"),
  14964. name: "Java (Fallen)",
  14965. rename: true,
  14966. image: {
  14967. source: "./media/characters/java/fallen.svg",
  14968. extra: 226 / 208,
  14969. bottom: 0.005
  14970. }
  14971. },
  14972. godkin: {
  14973. height: math.unit(10 + 6 / 12, "feet"),
  14974. weight: math.unit(328, "lb"),
  14975. name: "Java (Godkin)",
  14976. rename: true,
  14977. image: {
  14978. source: "./media/characters/java/godkin.svg",
  14979. extra: 270 / 262,
  14980. bottom: 0.02
  14981. }
  14982. },
  14983. },
  14984. [
  14985. {
  14986. name: "Normal",
  14987. height: math.unit(11 + 8 / 12, "feet"),
  14988. default: true
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14994. {
  14995. front: {
  14996. height: math.unit(7 + 8 / 12, "feet"),
  14997. weight: math.unit(320, "lb"),
  14998. name: "Front",
  14999. image: {
  15000. source: "./media/characters/skoll/front.svg",
  15001. extra: 232 / 220,
  15002. bottom: 0.02
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(7 + 8 / 12, "feet"),
  15010. default: true
  15011. },
  15012. ]
  15013. ))
  15014. characterMakers.push(() => makeCharacter(
  15015. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15016. {
  15017. front: {
  15018. height: math.unit(5 + 9 / 12, "feet"),
  15019. weight: math.unit(170, "lb"),
  15020. name: "Front",
  15021. image: {
  15022. source: "./media/characters/purna/front.svg",
  15023. extra: 239 / 229,
  15024. bottom: 0.01
  15025. }
  15026. },
  15027. },
  15028. [
  15029. {
  15030. name: "Normal",
  15031. height: math.unit(5 + 9 / 12, "feet"),
  15032. default: true
  15033. },
  15034. ]
  15035. ))
  15036. characterMakers.push(() => makeCharacter(
  15037. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15038. {
  15039. front: {
  15040. height: math.unit(5 + 9 / 12, "feet"),
  15041. weight: math.unit(142, "lb"),
  15042. name: "Front",
  15043. image: {
  15044. source: "./media/characters/kuva/front.svg",
  15045. extra: 281 / 271,
  15046. bottom: 0.006
  15047. }
  15048. },
  15049. },
  15050. [
  15051. {
  15052. name: "Normal",
  15053. height: math.unit(5 + 9 / 12, "feet"),
  15054. default: true
  15055. },
  15056. ]
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15060. {
  15061. anthro: {
  15062. height: math.unit(9 + 2 / 12, "feet"),
  15063. weight: math.unit(270, "lb"),
  15064. name: "Anthro",
  15065. image: {
  15066. source: "./media/characters/embra/anthro.svg",
  15067. extra: 200 / 187,
  15068. bottom: 0.02
  15069. }
  15070. },
  15071. feral: {
  15072. height: math.unit(18 + 8 / 12, "feet"),
  15073. weight: math.unit(576, "lb"),
  15074. name: "Feral",
  15075. image: {
  15076. source: "./media/characters/embra/feral.svg",
  15077. extra: 152 / 137,
  15078. bottom: 0.037
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(9 + 2 / 12, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15092. {
  15093. anthro: {
  15094. height: math.unit(10 + 9 / 12, "feet"),
  15095. weight: math.unit(224, "lb"),
  15096. name: "Anthro",
  15097. image: {
  15098. source: "./media/characters/grottos/anthro.svg",
  15099. extra: 350 / 332,
  15100. bottom: 0.045
  15101. }
  15102. },
  15103. feral: {
  15104. height: math.unit(20 + 7 / 12, "feet"),
  15105. weight: math.unit(629, "lb"),
  15106. name: "Feral",
  15107. image: {
  15108. source: "./media/characters/grottos/feral.svg",
  15109. extra: 207 / 190,
  15110. bottom: 0.05
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(10 + 9 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15124. {
  15125. anthro: {
  15126. height: math.unit(9 + 6 / 12, "feet"),
  15127. weight: math.unit(298, "lb"),
  15128. name: "Anthro",
  15129. image: {
  15130. source: "./media/characters/frifna/anthro.svg",
  15131. extra: 282 / 269,
  15132. bottom: 0.015
  15133. }
  15134. },
  15135. feral: {
  15136. height: math.unit(16 + 2 / 12, "feet"),
  15137. weight: math.unit(624, "lb"),
  15138. name: "Feral",
  15139. image: {
  15140. source: "./media/characters/frifna/feral.svg"
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Normal",
  15147. height: math.unit(9 + 6 / 12, "feet"),
  15148. default: true
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15154. {
  15155. front: {
  15156. height: math.unit(6 + 2 / 12, "feet"),
  15157. weight: math.unit(168, "lb"),
  15158. name: "Front",
  15159. image: {
  15160. source: "./media/characters/elise/front.svg",
  15161. extra: 276 / 271
  15162. }
  15163. },
  15164. },
  15165. [
  15166. {
  15167. name: "Normal",
  15168. height: math.unit(6 + 2 / 12, "feet"),
  15169. default: true
  15170. },
  15171. ]
  15172. ))
  15173. characterMakers.push(() => makeCharacter(
  15174. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15175. {
  15176. front: {
  15177. height: math.unit(5 + 10 / 12, "feet"),
  15178. weight: math.unit(210, "lb"),
  15179. name: "Front",
  15180. image: {
  15181. source: "./media/characters/glade/front.svg",
  15182. extra: 258 / 247,
  15183. bottom: 0.008
  15184. }
  15185. },
  15186. },
  15187. [
  15188. {
  15189. name: "Normal",
  15190. height: math.unit(5 + 10 / 12, "feet"),
  15191. default: true
  15192. },
  15193. ]
  15194. ))
  15195. characterMakers.push(() => makeCharacter(
  15196. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15197. {
  15198. front: {
  15199. height: math.unit(5 + 10 / 12, "feet"),
  15200. weight: math.unit(129, "lb"),
  15201. name: "Front",
  15202. image: {
  15203. source: "./media/characters/rina/front.svg",
  15204. extra: 266 / 255,
  15205. bottom: 0.005
  15206. }
  15207. },
  15208. },
  15209. [
  15210. {
  15211. name: "Normal",
  15212. height: math.unit(5 + 10 / 12, "feet"),
  15213. default: true
  15214. },
  15215. ]
  15216. ))
  15217. characterMakers.push(() => makeCharacter(
  15218. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15219. {
  15220. front: {
  15221. height: math.unit(6 + 1 / 12, "feet"),
  15222. weight: math.unit(192, "lb"),
  15223. name: "Front",
  15224. image: {
  15225. source: "./media/characters/veronica/front.svg",
  15226. extra: 319 / 309,
  15227. bottom: 0.005
  15228. }
  15229. },
  15230. },
  15231. [
  15232. {
  15233. name: "Normal",
  15234. height: math.unit(6 + 1 / 12, "feet"),
  15235. default: true
  15236. },
  15237. ]
  15238. ))
  15239. characterMakers.push(() => makeCharacter(
  15240. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15241. {
  15242. front: {
  15243. height: math.unit(9 + 3 / 12, "feet"),
  15244. weight: math.unit(1100, "lb"),
  15245. name: "Front",
  15246. image: {
  15247. source: "./media/characters/braxton/front.svg",
  15248. extra: 1057 / 984,
  15249. bottom: 0.05
  15250. }
  15251. },
  15252. },
  15253. [
  15254. {
  15255. name: "Normal",
  15256. height: math.unit(9 + 3 / 12, "feet")
  15257. },
  15258. {
  15259. name: "Giant",
  15260. height: math.unit(300, "feet"),
  15261. default: true
  15262. },
  15263. {
  15264. name: "Macro",
  15265. height: math.unit(700, "feet")
  15266. },
  15267. {
  15268. name: "Megamacro",
  15269. height: math.unit(6000, "feet")
  15270. },
  15271. ]
  15272. ))
  15273. characterMakers.push(() => makeCharacter(
  15274. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15275. {
  15276. front: {
  15277. height: math.unit(6 + 7 / 12, "feet"),
  15278. weight: math.unit(150, "lb"),
  15279. name: "Front",
  15280. image: {
  15281. source: "./media/characters/blue-feyonics/front.svg",
  15282. extra: 1403 / 1306,
  15283. bottom: 0.047
  15284. }
  15285. },
  15286. },
  15287. [
  15288. {
  15289. name: "Normal",
  15290. height: math.unit(6 + 7 / 12, "feet"),
  15291. default: true
  15292. },
  15293. ]
  15294. ))
  15295. characterMakers.push(() => makeCharacter(
  15296. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15297. {
  15298. front: {
  15299. height: math.unit(1.8, "meters"),
  15300. weight: math.unit(60, "kg"),
  15301. name: "Front",
  15302. image: {
  15303. source: "./media/characters/maxwell/front.svg",
  15304. extra: 2060 / 1873
  15305. }
  15306. },
  15307. },
  15308. [
  15309. {
  15310. name: "Micro",
  15311. height: math.unit(1, "mm")
  15312. },
  15313. {
  15314. name: "Normal",
  15315. height: math.unit(1.8, "meter"),
  15316. default: true
  15317. },
  15318. {
  15319. name: "Macro",
  15320. height: math.unit(30, "meters")
  15321. },
  15322. {
  15323. name: "Megamacro",
  15324. height: math.unit(10, "km")
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15330. {
  15331. front: {
  15332. height: math.unit(6, "feet"),
  15333. weight: math.unit(150, "lb"),
  15334. name: "Front",
  15335. image: {
  15336. source: "./media/characters/jack/front.svg",
  15337. extra: 1754 / 1640,
  15338. bottom: 0.01
  15339. }
  15340. },
  15341. },
  15342. [
  15343. {
  15344. name: "Normal",
  15345. height: math.unit(80000, "feet"),
  15346. default: true
  15347. },
  15348. {
  15349. name: "Max size",
  15350. height: math.unit(10, "lightyears")
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15356. {
  15357. upright: {
  15358. height: math.unit(7, "feet"),
  15359. weight: math.unit(170, "lb"),
  15360. name: "Upright",
  15361. image: {
  15362. source: "./media/characters/cafat/upright.svg",
  15363. bottom: 0.01
  15364. }
  15365. },
  15366. uprightFull: {
  15367. height: math.unit(7, "feet"),
  15368. weight: math.unit(170, "lb"),
  15369. name: "Upright (Full)",
  15370. image: {
  15371. source: "./media/characters/cafat/upright-full.svg",
  15372. bottom: 0.01
  15373. }
  15374. },
  15375. side: {
  15376. height: math.unit(5, "feet"),
  15377. weight: math.unit(150, "lb"),
  15378. name: "Side",
  15379. image: {
  15380. source: "./media/characters/cafat/side.svg"
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Small",
  15387. height: math.unit(7, "feet"),
  15388. default: true
  15389. },
  15390. {
  15391. name: "Large",
  15392. height: math.unit(15.5, "feet")
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15398. {
  15399. front: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(150, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/verin-raharra/front.svg",
  15405. extra: 5019 / 4835,
  15406. bottom: 0.023
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Normal",
  15413. height: math.unit(7 + 5 / 12, "feet"),
  15414. default: true
  15415. },
  15416. {
  15417. name: "Upsized",
  15418. height: math.unit(20, "feet")
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(7, "feet"),
  15427. weight: math.unit(230, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/nakata/front.svg",
  15431. extra: 1.005,
  15432. bottom: 0.01
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Normal",
  15439. height: math.unit(7, "feet"),
  15440. default: true
  15441. },
  15442. {
  15443. name: "Big",
  15444. height: math.unit(14, "feet")
  15445. },
  15446. {
  15447. name: "Macro",
  15448. height: math.unit(400, "feet")
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(4.91, "feet"),
  15457. weight: math.unit(100, "lb"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/lily/front.svg",
  15461. extra: 1585 / 1415,
  15462. bottom: 0.02
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Normal",
  15469. height: math.unit(4.91, "feet"),
  15470. default: true
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15476. {
  15477. laying: {
  15478. height: math.unit(4 + 4 / 12, "feet"),
  15479. weight: math.unit(600, "lb"),
  15480. name: "Laying",
  15481. image: {
  15482. source: "./media/characters/sheila/laying.svg",
  15483. extra: 1333 / 1265,
  15484. bottom: 0.16
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Normal",
  15491. height: math.unit(4 + 4 / 12, "feet"),
  15492. default: true
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(6, "feet"),
  15501. weight: math.unit(190, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/sax/front.svg",
  15505. extra: 1187 / 973,
  15506. bottom: 0.042
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Micro",
  15513. height: math.unit(4, "inches"),
  15514. default: true
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(6, "feet"),
  15523. weight: math.unit(150, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/pandora/front.svg",
  15527. extra: 2720 / 2556,
  15528. bottom: 0.015
  15529. }
  15530. },
  15531. back: {
  15532. height: math.unit(6, "feet"),
  15533. weight: math.unit(150, "lb"),
  15534. name: "Back",
  15535. image: {
  15536. source: "./media/characters/pandora/back.svg",
  15537. extra: 2720 / 2556,
  15538. bottom: 0.01
  15539. }
  15540. },
  15541. beans: {
  15542. height: math.unit(6 / 8, "feet"),
  15543. name: "Beans",
  15544. image: {
  15545. source: "./media/characters/pandora/beans.svg"
  15546. }
  15547. },
  15548. skirt: {
  15549. height: math.unit(6, "feet"),
  15550. weight: math.unit(150, "lb"),
  15551. name: "Skirt",
  15552. image: {
  15553. source: "./media/characters/pandora/skirt.svg",
  15554. extra: 1622 / 1525,
  15555. bottom: 0.015
  15556. }
  15557. },
  15558. hoodie: {
  15559. height: math.unit(6, "feet"),
  15560. weight: math.unit(150, "lb"),
  15561. name: "Hoodie",
  15562. image: {
  15563. source: "./media/characters/pandora/hoodie.svg",
  15564. extra: 1622 / 1525,
  15565. bottom: 0.015
  15566. }
  15567. },
  15568. casual: {
  15569. height: math.unit(6, "feet"),
  15570. weight: math.unit(150, "lb"),
  15571. name: "Casual",
  15572. image: {
  15573. source: "./media/characters/pandora/casual.svg",
  15574. extra: 1622 / 1525,
  15575. bottom: 0.015
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Normal",
  15582. height: math.unit(6, "feet")
  15583. },
  15584. {
  15585. name: "Big Steppy",
  15586. height: math.unit(1, "km"),
  15587. default: true
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15593. {
  15594. side: {
  15595. height: math.unit(10, "feet"),
  15596. weight: math.unit(800, "kg"),
  15597. name: "Side",
  15598. image: {
  15599. source: "./media/characters/venio-darcony/side.svg",
  15600. extra: 1373 / 1003,
  15601. bottom: 0.037
  15602. }
  15603. },
  15604. front: {
  15605. height: math.unit(19, "feet"),
  15606. weight: math.unit(800, "kg"),
  15607. name: "Front",
  15608. image: {
  15609. source: "./media/characters/venio-darcony/front.svg"
  15610. }
  15611. },
  15612. back: {
  15613. height: math.unit(19, "feet"),
  15614. weight: math.unit(800, "kg"),
  15615. name: "Back",
  15616. image: {
  15617. source: "./media/characters/venio-darcony/back.svg"
  15618. }
  15619. },
  15620. sideNsfw: {
  15621. height: math.unit(10, "feet"),
  15622. weight: math.unit(800, "kg"),
  15623. name: "Side (NSFW)",
  15624. image: {
  15625. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15626. extra: 1373 / 1003,
  15627. bottom: 0.037
  15628. }
  15629. },
  15630. frontNsfw: {
  15631. height: math.unit(19, "feet"),
  15632. weight: math.unit(800, "kg"),
  15633. name: "Front (NSFW)",
  15634. image: {
  15635. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15636. }
  15637. },
  15638. backNsfw: {
  15639. height: math.unit(19, "feet"),
  15640. weight: math.unit(800, "kg"),
  15641. name: "Back (NSFW)",
  15642. image: {
  15643. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15644. }
  15645. },
  15646. sideArmored: {
  15647. height: math.unit(10, "feet"),
  15648. weight: math.unit(800, "kg"),
  15649. name: "Side (Armored)",
  15650. image: {
  15651. source: "./media/characters/venio-darcony/side-armored.svg",
  15652. extra: 1373 / 1003,
  15653. bottom: 0.037
  15654. }
  15655. },
  15656. frontArmored: {
  15657. height: math.unit(19, "feet"),
  15658. weight: math.unit(900, "kg"),
  15659. name: "Front (Armored)",
  15660. image: {
  15661. source: "./media/characters/venio-darcony/front-armored.svg"
  15662. }
  15663. },
  15664. backArmored: {
  15665. height: math.unit(19, "feet"),
  15666. weight: math.unit(900, "kg"),
  15667. name: "Back (Armored)",
  15668. image: {
  15669. source: "./media/characters/venio-darcony/back-armored.svg"
  15670. }
  15671. },
  15672. sword: {
  15673. height: math.unit(10, "feet"),
  15674. weight: math.unit(50, "lb"),
  15675. name: "Sword",
  15676. image: {
  15677. source: "./media/characters/venio-darcony/sword.svg"
  15678. }
  15679. },
  15680. },
  15681. [
  15682. {
  15683. name: "Normal",
  15684. height: math.unit(10, "feet")
  15685. },
  15686. {
  15687. name: "Macro",
  15688. height: math.unit(130, "feet"),
  15689. default: true
  15690. },
  15691. {
  15692. name: "Macro+",
  15693. height: math.unit(240, "feet")
  15694. },
  15695. ]
  15696. ))
  15697. characterMakers.push(() => makeCharacter(
  15698. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15699. {
  15700. front: {
  15701. height: math.unit(6, "feet"),
  15702. weight: math.unit(150, "lb"),
  15703. name: "Front",
  15704. image: {
  15705. source: "./media/characters/veski/front.svg",
  15706. extra: 1299 / 1225,
  15707. bottom: 0.04
  15708. }
  15709. },
  15710. back: {
  15711. height: math.unit(6, "feet"),
  15712. weight: math.unit(150, "lb"),
  15713. name: "Back",
  15714. image: {
  15715. source: "./media/characters/veski/back.svg",
  15716. extra: 1299 / 1225,
  15717. bottom: 0.008
  15718. }
  15719. },
  15720. maw: {
  15721. height: math.unit(1.5 * 1.21, "feet"),
  15722. name: "Maw",
  15723. image: {
  15724. source: "./media/characters/veski/maw.svg"
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Macro",
  15731. height: math.unit(2, "km"),
  15732. default: true
  15733. },
  15734. ]
  15735. ))
  15736. characterMakers.push(() => makeCharacter(
  15737. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15738. {
  15739. front: {
  15740. height: math.unit(5 + 7 / 12, "feet"),
  15741. name: "Front",
  15742. image: {
  15743. source: "./media/characters/isabelle/front.svg",
  15744. extra: 2130 / 1976,
  15745. bottom: 0.05
  15746. }
  15747. },
  15748. },
  15749. [
  15750. {
  15751. name: "Supermicro",
  15752. height: math.unit(10, "micrometers")
  15753. },
  15754. {
  15755. name: "Micro",
  15756. height: math.unit(1, "inch")
  15757. },
  15758. {
  15759. name: "Tiny",
  15760. height: math.unit(5, "inches")
  15761. },
  15762. {
  15763. name: "Standard",
  15764. height: math.unit(5 + 7 / 12, "inches")
  15765. },
  15766. {
  15767. name: "Macro",
  15768. height: math.unit(80, "meters"),
  15769. default: true
  15770. },
  15771. {
  15772. name: "Megamacro",
  15773. height: math.unit(250, "meters")
  15774. },
  15775. {
  15776. name: "Gigamacro",
  15777. height: math.unit(5, "km")
  15778. },
  15779. {
  15780. name: "Cosmic",
  15781. height: math.unit(2.5e6, "miles")
  15782. },
  15783. ]
  15784. ))
  15785. characterMakers.push(() => makeCharacter(
  15786. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15787. {
  15788. front: {
  15789. height: math.unit(6, "feet"),
  15790. weight: math.unit(150, "lb"),
  15791. name: "Front",
  15792. image: {
  15793. source: "./media/characters/hanzo/front.svg",
  15794. extra: 374 / 344,
  15795. bottom: 0.02
  15796. }
  15797. },
  15798. },
  15799. [
  15800. {
  15801. name: "Normal",
  15802. height: math.unit(8, "feet"),
  15803. default: true
  15804. },
  15805. ]
  15806. ))
  15807. characterMakers.push(() => makeCharacter(
  15808. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15809. {
  15810. front: {
  15811. height: math.unit(7, "feet"),
  15812. weight: math.unit(130, "lb"),
  15813. name: "Front",
  15814. image: {
  15815. source: "./media/characters/anna/front.svg",
  15816. extra: 169 / 145,
  15817. bottom: 0.06
  15818. }
  15819. },
  15820. full: {
  15821. height: math.unit(4.96, "feet"),
  15822. weight: math.unit(220, "lb"),
  15823. name: "Full",
  15824. image: {
  15825. source: "./media/characters/anna/full.svg",
  15826. extra: 138 / 114,
  15827. bottom: 0.15
  15828. }
  15829. },
  15830. tongue: {
  15831. height: math.unit(2.53, "feet"),
  15832. name: "Tongue",
  15833. image: {
  15834. source: "./media/characters/anna/tongue.svg"
  15835. }
  15836. },
  15837. },
  15838. [
  15839. {
  15840. name: "Normal",
  15841. height: math.unit(7, "feet"),
  15842. default: true
  15843. },
  15844. ]
  15845. ))
  15846. characterMakers.push(() => makeCharacter(
  15847. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15848. {
  15849. front: {
  15850. height: math.unit(7, "feet"),
  15851. weight: math.unit(150, "lb"),
  15852. name: "Front",
  15853. image: {
  15854. source: "./media/characters/ian-corvid/front.svg",
  15855. extra: 150 / 142,
  15856. bottom: 0.02
  15857. }
  15858. },
  15859. back: {
  15860. height: math.unit(7, "feet"),
  15861. weight: math.unit(150, "lb"),
  15862. name: "Back",
  15863. image: {
  15864. source: "./media/characters/ian-corvid/back.svg",
  15865. extra: 150 / 143,
  15866. bottom: 0.01
  15867. }
  15868. },
  15869. stomping: {
  15870. height: math.unit(7, "feet"),
  15871. weight: math.unit(150, "lb"),
  15872. name: "Stomping",
  15873. image: {
  15874. source: "./media/characters/ian-corvid/stomping.svg",
  15875. extra: 76 / 72
  15876. }
  15877. },
  15878. sitting: {
  15879. height: math.unit(7 / 1.8, "feet"),
  15880. weight: math.unit(150, "lb"),
  15881. name: "Sitting",
  15882. image: {
  15883. source: "./media/characters/ian-corvid/sitting.svg",
  15884. extra: 1400 / 1269,
  15885. bottom: 0.15
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Tiny Microw",
  15892. height: math.unit(1, "inch")
  15893. },
  15894. {
  15895. name: "Microw",
  15896. height: math.unit(6, "inches")
  15897. },
  15898. {
  15899. name: "Crow",
  15900. height: math.unit(7 + 1 / 12, "feet"),
  15901. default: true
  15902. },
  15903. {
  15904. name: "Macrow",
  15905. height: math.unit(176, "feet")
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15911. {
  15912. front: {
  15913. height: math.unit(5 + 7 / 12, "feet"),
  15914. weight: math.unit(147, "lb"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/natalie-kellon/front.svg",
  15918. extra: 1214 / 1141,
  15919. bottom: 0.02
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Micro",
  15926. height: math.unit(1 / 16, "inch")
  15927. },
  15928. {
  15929. name: "Tiny",
  15930. height: math.unit(4, "inches")
  15931. },
  15932. {
  15933. name: "Normal",
  15934. height: math.unit(5 + 7 / 12, "feet"),
  15935. default: true
  15936. },
  15937. {
  15938. name: "Amazon",
  15939. height: math.unit(12, "feet")
  15940. },
  15941. {
  15942. name: "Giantess",
  15943. height: math.unit(160, "meters")
  15944. },
  15945. {
  15946. name: "Titaness",
  15947. height: math.unit(800, "meters")
  15948. },
  15949. ]
  15950. ))
  15951. characterMakers.push(() => makeCharacter(
  15952. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15953. {
  15954. front: {
  15955. height: math.unit(6, "feet"),
  15956. weight: math.unit(150, "lb"),
  15957. name: "Front",
  15958. image: {
  15959. source: "./media/characters/alluria/front.svg",
  15960. extra: 806 / 738,
  15961. bottom: 0.01
  15962. }
  15963. },
  15964. side: {
  15965. height: math.unit(6, "feet"),
  15966. weight: math.unit(150, "lb"),
  15967. name: "Side",
  15968. image: {
  15969. source: "./media/characters/alluria/side.svg",
  15970. extra: 800 / 750,
  15971. }
  15972. },
  15973. back: {
  15974. height: math.unit(6, "feet"),
  15975. weight: math.unit(150, "lb"),
  15976. name: "Back",
  15977. image: {
  15978. source: "./media/characters/alluria/back.svg",
  15979. extra: 806 / 738,
  15980. }
  15981. },
  15982. frontMaid: {
  15983. height: math.unit(6, "feet"),
  15984. weight: math.unit(150, "lb"),
  15985. name: "Front (Maid)",
  15986. image: {
  15987. source: "./media/characters/alluria/front-maid.svg",
  15988. extra: 806 / 738,
  15989. bottom: 0.01
  15990. }
  15991. },
  15992. sideMaid: {
  15993. height: math.unit(6, "feet"),
  15994. weight: math.unit(150, "lb"),
  15995. name: "Side (Maid)",
  15996. image: {
  15997. source: "./media/characters/alluria/side-maid.svg",
  15998. extra: 800 / 750,
  15999. bottom: 0.005
  16000. }
  16001. },
  16002. backMaid: {
  16003. height: math.unit(6, "feet"),
  16004. weight: math.unit(150, "lb"),
  16005. name: "Back (Maid)",
  16006. image: {
  16007. source: "./media/characters/alluria/back-maid.svg",
  16008. extra: 806 / 738,
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Micro",
  16015. height: math.unit(6, "inches"),
  16016. default: true
  16017. },
  16018. ]
  16019. ))
  16020. characterMakers.push(() => makeCharacter(
  16021. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16022. {
  16023. front: {
  16024. height: math.unit(6, "feet"),
  16025. weight: math.unit(150, "lb"),
  16026. name: "Front",
  16027. image: {
  16028. source: "./media/characters/kyle/front.svg",
  16029. extra: 1069 / 962,
  16030. bottom: 77.228 / 1727.45
  16031. }
  16032. },
  16033. },
  16034. [
  16035. {
  16036. name: "Macro",
  16037. height: math.unit(150, "feet"),
  16038. default: true
  16039. },
  16040. ]
  16041. ))
  16042. characterMakers.push(() => makeCharacter(
  16043. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16044. {
  16045. front: {
  16046. height: math.unit(6, "feet"),
  16047. weight: math.unit(300, "lb"),
  16048. name: "Front",
  16049. image: {
  16050. source: "./media/characters/duncan/front.svg",
  16051. extra: 1650 / 1482,
  16052. bottom: 0.05
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Macro",
  16059. height: math.unit(100, "feet"),
  16060. default: true
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16066. {
  16067. front: {
  16068. height: math.unit(5 + 4 / 12, "feet"),
  16069. weight: math.unit(220, "lb"),
  16070. name: "Front",
  16071. image: {
  16072. source: "./media/characters/memory/front.svg",
  16073. extra: 3641 / 3545,
  16074. bottom: 0.03
  16075. }
  16076. },
  16077. back: {
  16078. height: math.unit(5 + 4 / 12, "feet"),
  16079. weight: math.unit(220, "lb"),
  16080. name: "Back",
  16081. image: {
  16082. source: "./media/characters/memory/back.svg",
  16083. extra: 3641 / 3545,
  16084. bottom: 0.025
  16085. }
  16086. },
  16087. frontSkirt: {
  16088. height: math.unit(5 + 4 / 12, "feet"),
  16089. weight: math.unit(220, "lb"),
  16090. name: "Front (Skirt)",
  16091. image: {
  16092. source: "./media/characters/memory/front-skirt.svg",
  16093. extra: 3641 / 3545,
  16094. bottom: 0.03
  16095. }
  16096. },
  16097. frontDress: {
  16098. height: math.unit(5 + 4 / 12, "feet"),
  16099. weight: math.unit(220, "lb"),
  16100. name: "Front (Dress)",
  16101. image: {
  16102. source: "./media/characters/memory/front-dress.svg",
  16103. extra: 3641 / 3545,
  16104. bottom: 0.03
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Micro",
  16111. height: math.unit(6, "inches"),
  16112. default: true
  16113. },
  16114. {
  16115. name: "Normal",
  16116. height: math.unit(5 + 4 / 12, "feet")
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16122. {
  16123. front: {
  16124. height: math.unit(4 + 11 / 12, "feet"),
  16125. weight: math.unit(100, "lb"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/luno/front.svg",
  16129. extra: 1535 / 1487,
  16130. bottom: 0.03
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Micro",
  16137. height: math.unit(3, "inches")
  16138. },
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(4 + 11 / 12, "feet"),
  16142. default: true
  16143. },
  16144. {
  16145. name: "Macro",
  16146. height: math.unit(300, "feet")
  16147. },
  16148. {
  16149. name: "Megamacro",
  16150. height: math.unit(700, "miles")
  16151. },
  16152. ]
  16153. ))
  16154. characterMakers.push(() => makeCharacter(
  16155. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16156. {
  16157. front: {
  16158. height: math.unit(6 + 2 / 12, "feet"),
  16159. weight: math.unit(170, "lb"),
  16160. name: "Front",
  16161. image: {
  16162. source: "./media/characters/jamesy/front.svg",
  16163. extra: 440 / 382,
  16164. bottom: 0.005
  16165. }
  16166. },
  16167. },
  16168. [
  16169. {
  16170. name: "Micro",
  16171. height: math.unit(3, "inches")
  16172. },
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(6 + 2 / 12, "feet"),
  16176. default: true
  16177. },
  16178. {
  16179. name: "Macro",
  16180. height: math.unit(300, "feet")
  16181. },
  16182. {
  16183. name: "Megamacro",
  16184. height: math.unit(700, "miles")
  16185. },
  16186. ]
  16187. ))
  16188. characterMakers.push(() => makeCharacter(
  16189. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16190. {
  16191. front: {
  16192. height: math.unit(6, "feet"),
  16193. weight: math.unit(160, "lb"),
  16194. name: "Front",
  16195. image: {
  16196. source: "./media/characters/mark/front.svg",
  16197. extra: 3300 / 3100,
  16198. bottom: 136.42 / 3440.47
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Macro",
  16205. height: math.unit(120, "meters")
  16206. },
  16207. {
  16208. name: "Bigger Macro",
  16209. height: math.unit(350, "meters")
  16210. },
  16211. {
  16212. name: "Megamacro",
  16213. height: math.unit(8, "km"),
  16214. default: true
  16215. },
  16216. {
  16217. name: "Continental",
  16218. height: math.unit(4550, "km")
  16219. },
  16220. {
  16221. name: "Planetary",
  16222. height: math.unit(65000, "km")
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16228. {
  16229. front: {
  16230. height: math.unit(6, "feet"),
  16231. weight: math.unit(400, "lb"),
  16232. name: "Front",
  16233. image: {
  16234. source: "./media/characters/mac/front.svg",
  16235. extra: 1048 / 987.7,
  16236. bottom: 60 / 1107.6,
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Macro",
  16243. height: math.unit(500, "feet"),
  16244. default: true
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(5 + 2 / 12, "feet"),
  16253. weight: math.unit(190, "lb"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/bari/front.svg",
  16257. extra: 3156 / 2880,
  16258. bottom: 0.03
  16259. }
  16260. },
  16261. back: {
  16262. height: math.unit(5 + 2 / 12, "feet"),
  16263. weight: math.unit(190, "lb"),
  16264. name: "Back",
  16265. image: {
  16266. source: "./media/characters/bari/back.svg",
  16267. extra: 3260 / 2834,
  16268. bottom: 0.025
  16269. }
  16270. },
  16271. frontPlush: {
  16272. height: math.unit(5 + 2 / 12, "feet"),
  16273. weight: math.unit(190, "lb"),
  16274. name: "Front (Plush)",
  16275. image: {
  16276. source: "./media/characters/bari/front-plush.svg",
  16277. extra: 1112 / 1061,
  16278. bottom: 0.002
  16279. }
  16280. },
  16281. },
  16282. [
  16283. {
  16284. name: "Micro",
  16285. height: math.unit(3, "inches")
  16286. },
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(5 + 2 / 12, "feet"),
  16290. default: true
  16291. },
  16292. {
  16293. name: "Macro",
  16294. height: math.unit(20, "feet")
  16295. },
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16300. {
  16301. front: {
  16302. height: math.unit(6 + 1 / 12, "feet"),
  16303. weight: math.unit(275, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/hunter-misha-raven/front.svg"
  16307. }
  16308. },
  16309. },
  16310. [
  16311. {
  16312. name: "Mortal",
  16313. height: math.unit(6 + 1 / 12, "feet")
  16314. },
  16315. {
  16316. name: "Divine",
  16317. height: math.unit(1.12134e34, "parsecs"),
  16318. default: true
  16319. },
  16320. ]
  16321. ))
  16322. characterMakers.push(() => makeCharacter(
  16323. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16324. {
  16325. front: {
  16326. height: math.unit(6 + 3 / 12, "feet"),
  16327. weight: math.unit(220, "lb"),
  16328. name: "Front",
  16329. image: {
  16330. source: "./media/characters/max-calore/front.svg",
  16331. extra: 1700 / 1648,
  16332. bottom: 0.01
  16333. }
  16334. },
  16335. back: {
  16336. height: math.unit(6 + 3 / 12, "feet"),
  16337. weight: math.unit(220, "lb"),
  16338. name: "Back",
  16339. image: {
  16340. source: "./media/characters/max-calore/back.svg",
  16341. extra: 1700 / 1648,
  16342. bottom: 0.01
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(6 + 3 / 12, "feet"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16356. {
  16357. side: {
  16358. height: math.unit(2 + 8 / 12, "feet"),
  16359. weight: math.unit(99, "lb"),
  16360. name: "Side",
  16361. image: {
  16362. source: "./media/characters/aspen/side.svg",
  16363. extra: 152 / 138,
  16364. bottom: 0.032
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(2 + 8 / 12, "feet"),
  16372. default: true
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16378. {
  16379. side: {
  16380. height: math.unit(3 + 2 / 12, "feet"),
  16381. weight: math.unit(224, "lb"),
  16382. name: "Side",
  16383. image: {
  16384. source: "./media/characters/sheila-feral-wolf/side.svg",
  16385. extra: 179 / 166,
  16386. bottom: 0.03
  16387. }
  16388. },
  16389. },
  16390. [
  16391. {
  16392. name: "Normal",
  16393. height: math.unit(3 + 2 / 12, "feet"),
  16394. default: true
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16400. {
  16401. side: {
  16402. height: math.unit(1 + 9 / 12, "feet"),
  16403. weight: math.unit(38, "lb"),
  16404. name: "Side",
  16405. image: {
  16406. source: "./media/characters/michelle/side.svg",
  16407. extra: 147 / 136.7,
  16408. bottom: 0.03
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Normal",
  16415. height: math.unit(1 + 9 / 12, "feet"),
  16416. default: true
  16417. },
  16418. ]
  16419. ))
  16420. characterMakers.push(() => makeCharacter(
  16421. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16422. {
  16423. front: {
  16424. height: math.unit(1 + 1 / 12, "feet"),
  16425. weight: math.unit(18, "lb"),
  16426. name: "Front",
  16427. image: {
  16428. source: "./media/characters/nino/front.svg"
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(1 + 1 / 12, "feet"),
  16436. default: true
  16437. },
  16438. ]
  16439. ))
  16440. characterMakers.push(() => makeCharacter(
  16441. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16442. {
  16443. front: {
  16444. height: math.unit(1, "feet"),
  16445. weight: math.unit(16, "lb"),
  16446. name: "Front",
  16447. image: {
  16448. source: "./media/characters/viola/front.svg"
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(1, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16462. {
  16463. front: {
  16464. height: math.unit(6 + 5 / 12, "feet"),
  16465. weight: math.unit(580, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/atlas/front.svg",
  16469. extra: 298.5 / 290,
  16470. bottom: 0.015
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Normal",
  16477. height: math.unit(6 + 5 / 12, "feet"),
  16478. default: true
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16484. {
  16485. side: {
  16486. height: math.unit(1 + 10 / 12, "feet"),
  16487. weight: math.unit(25, "lb"),
  16488. name: "Side",
  16489. image: {
  16490. source: "./media/characters/davy/side.svg",
  16491. extra: 200 / 170,
  16492. bottom: 0.01
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Normal",
  16499. height: math.unit(1 + 10 / 12, "feet"),
  16500. default: true
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16506. {
  16507. side: {
  16508. height: math.unit(4 + 8 / 12, "feet"),
  16509. weight: math.unit(166, "lb"),
  16510. name: "Side",
  16511. image: {
  16512. source: "./media/characters/fiona/side.svg",
  16513. extra: 232 / 220,
  16514. bottom: 0.03
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(4 + 8 / 12, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16528. {
  16529. front: {
  16530. height: math.unit(2, "feet"),
  16531. weight: math.unit(62, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/lyla/front.svg",
  16535. bottom: 0.1
  16536. }
  16537. },
  16538. },
  16539. [
  16540. {
  16541. name: "Normal",
  16542. height: math.unit(2, "feet"),
  16543. default: true
  16544. },
  16545. ]
  16546. ))
  16547. characterMakers.push(() => makeCharacter(
  16548. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16549. {
  16550. side: {
  16551. height: math.unit(1.8, "feet"),
  16552. weight: math.unit(44, "lb"),
  16553. name: "Side",
  16554. image: {
  16555. source: "./media/characters/perseus/side.svg",
  16556. bottom: 0.21
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(1.8, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16570. {
  16571. side: {
  16572. height: math.unit(4 + 2 / 12, "feet"),
  16573. weight: math.unit(20, "lb"),
  16574. name: "Side",
  16575. image: {
  16576. source: "./media/characters/remus/side.svg"
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Normal",
  16583. height: math.unit(4 + 2 / 12, "feet"),
  16584. default: true
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16590. {
  16591. front: {
  16592. height: math.unit(4 + 11 / 12, "feet"),
  16593. weight: math.unit(114, "lb"),
  16594. name: "Front",
  16595. image: {
  16596. source: "./media/characters/raf/front.svg",
  16597. bottom: 20.5 / 1863
  16598. }
  16599. },
  16600. side: {
  16601. height: math.unit(4 + 11 / 12, "feet"),
  16602. weight: math.unit(114, "lb"),
  16603. name: "Side",
  16604. image: {
  16605. source: "./media/characters/raf/side.svg",
  16606. bottom: 22 / 1822
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Micro",
  16613. height: math.unit(2, "inches")
  16614. },
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(4 + 11 / 12, "feet"),
  16618. default: true
  16619. },
  16620. {
  16621. name: "Macro",
  16622. height: math.unit(70, "feet")
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16628. {
  16629. front: {
  16630. height: math.unit(1.5, "meters"),
  16631. weight: math.unit(68, "kg"),
  16632. name: "Front",
  16633. image: {
  16634. source: "./media/characters/liam-einarr/front.svg",
  16635. extra: 2822 / 2666
  16636. }
  16637. },
  16638. back: {
  16639. height: math.unit(1.5, "meters"),
  16640. weight: math.unit(68, "kg"),
  16641. name: "Back",
  16642. image: {
  16643. source: "./media/characters/liam-einarr/back.svg",
  16644. extra: 2822 / 2666,
  16645. bottom: 0.015
  16646. }
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Normal",
  16652. height: math.unit(1.5, "meters"),
  16653. default: true
  16654. },
  16655. {
  16656. name: "Macro",
  16657. height: math.unit(150, "meters")
  16658. },
  16659. {
  16660. name: "Megamacro",
  16661. height: math.unit(35, "km")
  16662. },
  16663. ]
  16664. ))
  16665. characterMakers.push(() => makeCharacter(
  16666. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16667. {
  16668. front: {
  16669. height: math.unit(6, "feet"),
  16670. weight: math.unit(75, "kg"),
  16671. name: "Front",
  16672. image: {
  16673. source: "./media/characters/linda/front.svg",
  16674. extra: 930 / 874,
  16675. bottom: 0.004
  16676. }
  16677. },
  16678. },
  16679. [
  16680. {
  16681. name: "Normal",
  16682. height: math.unit(6, "feet"),
  16683. default: true
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16689. {
  16690. front: {
  16691. height: math.unit(6 + 8 / 12, "feet"),
  16692. weight: math.unit(220, "lb"),
  16693. name: "Front",
  16694. image: {
  16695. source: "./media/characters/caylex/front.svg",
  16696. extra: 821 / 772,
  16697. bottom: 0.07
  16698. }
  16699. },
  16700. back: {
  16701. height: math.unit(6 + 8 / 12, "feet"),
  16702. weight: math.unit(220, "lb"),
  16703. name: "Back",
  16704. image: {
  16705. source: "./media/characters/caylex/back.svg",
  16706. extra: 821 / 772,
  16707. bottom: 0.022
  16708. }
  16709. },
  16710. hand: {
  16711. height: math.unit(1.25, "feet"),
  16712. name: "Hand",
  16713. image: {
  16714. source: "./media/characters/caylex/hand.svg"
  16715. }
  16716. },
  16717. foot: {
  16718. height: math.unit(1.6, "feet"),
  16719. name: "Foot",
  16720. image: {
  16721. source: "./media/characters/caylex/foot.svg"
  16722. }
  16723. },
  16724. armored: {
  16725. height: math.unit(6 + 8 / 12, "feet"),
  16726. weight: math.unit(250, "lb"),
  16727. name: "Armored",
  16728. image: {
  16729. source: "./media/characters/caylex/armored.svg",
  16730. extra: 1420 / 1310,
  16731. bottom: 0.045
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Normal",
  16738. height: math.unit(6 + 8 / 12, "feet"),
  16739. default: true
  16740. },
  16741. {
  16742. name: "Normal+",
  16743. height: math.unit(12, "feet")
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16749. {
  16750. front: {
  16751. height: math.unit(7 + 6 / 12, "feet"),
  16752. weight: math.unit(288, "lb"),
  16753. name: "Front",
  16754. image: {
  16755. source: "./media/characters/alana/front.svg",
  16756. extra: 679 / 653,
  16757. bottom: 22.5 / 701
  16758. }
  16759. },
  16760. },
  16761. [
  16762. {
  16763. name: "Normal",
  16764. height: math.unit(7 + 6 / 12, "feet")
  16765. },
  16766. {
  16767. name: "Large",
  16768. height: math.unit(50, "feet")
  16769. },
  16770. {
  16771. name: "Macro",
  16772. height: math.unit(100, "feet"),
  16773. default: true
  16774. },
  16775. {
  16776. name: "Macro+",
  16777. height: math.unit(200, "feet")
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(6 + 1 / 12, "feet"),
  16786. weight: math.unit(210, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/hasani/front.svg",
  16790. extra: 244 / 232,
  16791. bottom: 0.01
  16792. }
  16793. },
  16794. back: {
  16795. height: math.unit(6 + 1 / 12, "feet"),
  16796. weight: math.unit(210, "lb"),
  16797. name: "Back",
  16798. image: {
  16799. source: "./media/characters/hasani/back.svg",
  16800. extra: 244 / 232,
  16801. bottom: 0.01
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Normal",
  16808. height: math.unit(6 + 1 / 12, "feet")
  16809. },
  16810. {
  16811. name: "Macro",
  16812. height: math.unit(175, "feet"),
  16813. default: true
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16819. {
  16820. front: {
  16821. height: math.unit(1.82, "meters"),
  16822. weight: math.unit(140, "lb"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/nita/front.svg",
  16826. extra: 2473 / 2363,
  16827. bottom: 0.01
  16828. }
  16829. },
  16830. },
  16831. [
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(1.82, "m")
  16835. },
  16836. {
  16837. name: "Macro",
  16838. height: math.unit(300, "m")
  16839. },
  16840. {
  16841. name: "Mistake Canon",
  16842. height: math.unit(0.5, "miles"),
  16843. default: true
  16844. },
  16845. {
  16846. name: "Big Mistake",
  16847. height: math.unit(13, "miles")
  16848. },
  16849. {
  16850. name: "Playing God",
  16851. height: math.unit(2450, "miles")
  16852. },
  16853. ]
  16854. ))
  16855. characterMakers.push(() => makeCharacter(
  16856. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16857. {
  16858. front: {
  16859. height: math.unit(4, "feet"),
  16860. weight: math.unit(120, "lb"),
  16861. name: "Front",
  16862. image: {
  16863. source: "./media/characters/shiriko/front.svg",
  16864. extra: 195 / 188
  16865. }
  16866. },
  16867. },
  16868. [
  16869. {
  16870. name: "Normal",
  16871. height: math.unit(4, "feet"),
  16872. default: true
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16878. {
  16879. front: {
  16880. height: math.unit(6, "feet"),
  16881. name: "front",
  16882. image: {
  16883. source: "./media/characters/deja/front.svg",
  16884. extra: 926 / 840,
  16885. bottom: 0.07
  16886. }
  16887. },
  16888. },
  16889. [
  16890. {
  16891. name: "Planck Length",
  16892. height: math.unit(1.6e-35, "meters")
  16893. },
  16894. {
  16895. name: "Normal",
  16896. height: math.unit(30.48, "meters"),
  16897. default: true
  16898. },
  16899. {
  16900. name: "Universal",
  16901. height: math.unit(8.8e26, "meters")
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16907. {
  16908. side: {
  16909. height: math.unit(8, "feet"),
  16910. weight: math.unit(6300, "lb"),
  16911. name: "Side",
  16912. image: {
  16913. source: "./media/characters/anima/side.svg",
  16914. bottom: 0.035
  16915. }
  16916. },
  16917. },
  16918. [
  16919. {
  16920. name: "Normal",
  16921. height: math.unit(8, "feet"),
  16922. default: true
  16923. },
  16924. ]
  16925. ))
  16926. characterMakers.push(() => makeCharacter(
  16927. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16928. {
  16929. front: {
  16930. height: math.unit(8, "feet"),
  16931. weight: math.unit(350, "lb"),
  16932. name: "Front",
  16933. image: {
  16934. source: "./media/characters/bianca/front.svg",
  16935. extra: 234 / 225,
  16936. bottom: 0.03
  16937. }
  16938. },
  16939. },
  16940. [
  16941. {
  16942. name: "Normal",
  16943. height: math.unit(8, "feet"),
  16944. default: true
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16950. {
  16951. front: {
  16952. height: math.unit(6, "feet"),
  16953. weight: math.unit(150, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/adinia/front.svg",
  16957. extra: 1845 / 1672,
  16958. bottom: 0.02
  16959. }
  16960. },
  16961. back: {
  16962. height: math.unit(6, "feet"),
  16963. weight: math.unit(150, "lb"),
  16964. name: "Back",
  16965. image: {
  16966. source: "./media/characters/adinia/back.svg",
  16967. extra: 1845 / 1672,
  16968. bottom: 0.002
  16969. }
  16970. },
  16971. },
  16972. [
  16973. {
  16974. name: "Normal",
  16975. height: math.unit(11 + 5 / 12, "feet"),
  16976. default: true
  16977. },
  16978. ]
  16979. ))
  16980. characterMakers.push(() => makeCharacter(
  16981. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16982. {
  16983. front: {
  16984. height: math.unit(3, "meters"),
  16985. weight: math.unit(200, "kg"),
  16986. name: "Front",
  16987. image: {
  16988. source: "./media/characters/lykasa/front.svg",
  16989. extra: 1076 / 976,
  16990. bottom: 0.06
  16991. }
  16992. },
  16993. },
  16994. [
  16995. {
  16996. name: "Normal",
  16997. height: math.unit(3, "meters")
  16998. },
  16999. {
  17000. name: "Kaiju",
  17001. height: math.unit(120, "meters"),
  17002. default: true
  17003. },
  17004. {
  17005. name: "Mega Kaiju",
  17006. height: math.unit(240, "km")
  17007. },
  17008. {
  17009. name: "Giga Kaiju",
  17010. height: math.unit(400, "megameters")
  17011. },
  17012. {
  17013. name: "Tera Kaiju",
  17014. height: math.unit(800, "gigameters")
  17015. },
  17016. {
  17017. name: "Kaiju Dragon Goddess",
  17018. height: math.unit(26, "zettaparsecs")
  17019. },
  17020. ]
  17021. ))
  17022. characterMakers.push(() => makeCharacter(
  17023. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17024. {
  17025. side: {
  17026. height: math.unit(283 / 124 * 6, "feet"),
  17027. weight: math.unit(35000, "lb"),
  17028. name: "Side",
  17029. image: {
  17030. source: "./media/characters/malfaren/side.svg",
  17031. extra: 2500 / 1010,
  17032. bottom: 0.01
  17033. }
  17034. },
  17035. front: {
  17036. height: math.unit(22.36, "feet"),
  17037. weight: math.unit(35000, "lb"),
  17038. name: "Front",
  17039. image: {
  17040. source: "./media/characters/malfaren/front.svg",
  17041. extra: 1631 / 1476,
  17042. bottom: 0.01
  17043. }
  17044. },
  17045. maw: {
  17046. height: math.unit(6.9, "feet"),
  17047. name: "Maw",
  17048. image: {
  17049. source: "./media/characters/malfaren/maw.svg"
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Big",
  17056. height: math.unit(283 / 162 * 6, "feet"),
  17057. },
  17058. {
  17059. name: "Bigger",
  17060. height: math.unit(283 / 124 * 6, "feet")
  17061. },
  17062. {
  17063. name: "Massive",
  17064. height: math.unit(283 / 92 * 6, "feet"),
  17065. default: true
  17066. },
  17067. {
  17068. name: "👀💦",
  17069. height: math.unit(283 / 73 * 6, "feet"),
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17075. {
  17076. front: {
  17077. height: math.unit(1.7, "m"),
  17078. weight: math.unit(70, "kg"),
  17079. name: "Front",
  17080. image: {
  17081. source: "./media/characters/kernel/front.svg",
  17082. extra: 222 / 210,
  17083. bottom: 0.007
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Nano",
  17090. height: math.unit(17, "micrometers")
  17091. },
  17092. {
  17093. name: "Micro",
  17094. height: math.unit(1.7, "mm")
  17095. },
  17096. {
  17097. name: "Small",
  17098. height: math.unit(1.7, "cm")
  17099. },
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(1.7, "m"),
  17103. default: true
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17109. {
  17110. front: {
  17111. height: math.unit(1.75, "meters"),
  17112. weight: math.unit(65, "kg"),
  17113. name: "Front",
  17114. image: {
  17115. source: "./media/characters/jayne-folest/front.svg",
  17116. extra: 2115 / 2007,
  17117. bottom: 0.02
  17118. }
  17119. },
  17120. back: {
  17121. height: math.unit(1.75, "meters"),
  17122. weight: math.unit(65, "kg"),
  17123. name: "Back",
  17124. image: {
  17125. source: "./media/characters/jayne-folest/back.svg",
  17126. extra: 2115 / 2007,
  17127. bottom: 0.005
  17128. }
  17129. },
  17130. frontClothed: {
  17131. height: math.unit(1.75, "meters"),
  17132. weight: math.unit(65, "kg"),
  17133. name: "Front (Clothed)",
  17134. image: {
  17135. source: "./media/characters/jayne-folest/front-clothed.svg",
  17136. extra: 2115 / 2007,
  17137. bottom: 0.035
  17138. }
  17139. },
  17140. hand: {
  17141. height: math.unit(1 / 1.260, "feet"),
  17142. name: "Hand",
  17143. image: {
  17144. source: "./media/characters/jayne-folest/hand.svg"
  17145. }
  17146. },
  17147. foot: {
  17148. height: math.unit(1 / 0.918, "feet"),
  17149. name: "Foot",
  17150. image: {
  17151. source: "./media/characters/jayne-folest/foot.svg"
  17152. }
  17153. },
  17154. },
  17155. [
  17156. {
  17157. name: "Micro",
  17158. height: math.unit(4, "cm")
  17159. },
  17160. {
  17161. name: "Normal",
  17162. height: math.unit(1.75, "meters")
  17163. },
  17164. {
  17165. name: "Macro",
  17166. height: math.unit(47.5, "meters"),
  17167. default: true
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17173. {
  17174. front: {
  17175. height: math.unit(180, "cm"),
  17176. weight: math.unit(70, "kg"),
  17177. name: "Front",
  17178. image: {
  17179. source: "./media/characters/algier/front.svg",
  17180. extra: 596 / 572,
  17181. bottom: 0.04
  17182. }
  17183. },
  17184. back: {
  17185. height: math.unit(180, "cm"),
  17186. weight: math.unit(70, "kg"),
  17187. name: "Back",
  17188. image: {
  17189. source: "./media/characters/algier/back.svg",
  17190. extra: 596 / 572,
  17191. bottom: 0.025
  17192. }
  17193. },
  17194. frontdressed: {
  17195. height: math.unit(180, "cm"),
  17196. weight: math.unit(150, "kg"),
  17197. name: "Front-dressed",
  17198. image: {
  17199. source: "./media/characters/algier/front-dressed.svg",
  17200. extra: 596 / 572,
  17201. bottom: 0.038
  17202. }
  17203. },
  17204. },
  17205. [
  17206. {
  17207. name: "Micro",
  17208. height: math.unit(5, "cm")
  17209. },
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(180, "cm"),
  17213. default: true
  17214. },
  17215. {
  17216. name: "Macro",
  17217. height: math.unit(64, "m")
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17223. {
  17224. upright: {
  17225. height: math.unit(7, "feet"),
  17226. weight: math.unit(300, "lb"),
  17227. name: "Upright",
  17228. image: {
  17229. source: "./media/characters/pretzel/upright.svg",
  17230. extra: 534 / 522,
  17231. bottom: 0.065
  17232. }
  17233. },
  17234. sprawling: {
  17235. height: math.unit(3.75, "feet"),
  17236. weight: math.unit(300, "lb"),
  17237. name: "Sprawling",
  17238. image: {
  17239. source: "./media/characters/pretzel/sprawling.svg",
  17240. extra: 314 / 281,
  17241. bottom: 0.1
  17242. }
  17243. },
  17244. tongue: {
  17245. height: math.unit(2, "feet"),
  17246. name: "Tongue",
  17247. image: {
  17248. source: "./media/characters/pretzel/tongue.svg"
  17249. }
  17250. },
  17251. },
  17252. [
  17253. {
  17254. name: "Normal",
  17255. height: math.unit(7, "feet"),
  17256. default: true
  17257. },
  17258. {
  17259. name: "Oversized",
  17260. height: math.unit(15, "feet")
  17261. },
  17262. {
  17263. name: "Huge",
  17264. height: math.unit(30, "feet")
  17265. },
  17266. {
  17267. name: "Macro",
  17268. height: math.unit(250, "feet")
  17269. },
  17270. ]
  17271. ))
  17272. characterMakers.push(() => makeCharacter(
  17273. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17274. {
  17275. sideFront: {
  17276. height: math.unit(5 + 2 / 12, "feet"),
  17277. weight: math.unit(120, "lb"),
  17278. name: "Front Side",
  17279. image: {
  17280. source: "./media/characters/roxi/side-front.svg",
  17281. extra: 2924 / 2717,
  17282. bottom: 0.08
  17283. }
  17284. },
  17285. sideBack: {
  17286. height: math.unit(5 + 2 / 12, "feet"),
  17287. weight: math.unit(120, "lb"),
  17288. name: "Back Side",
  17289. image: {
  17290. source: "./media/characters/roxi/side-back.svg",
  17291. extra: 2904 / 2693,
  17292. bottom: 0.06
  17293. }
  17294. },
  17295. front: {
  17296. height: math.unit(5 + 2 / 12, "feet"),
  17297. weight: math.unit(120, "lb"),
  17298. name: "Front",
  17299. image: {
  17300. source: "./media/characters/roxi/front.svg",
  17301. extra: 2028 / 1907,
  17302. bottom: 0.01
  17303. }
  17304. },
  17305. frontAlt: {
  17306. height: math.unit(5 + 2 / 12, "feet"),
  17307. weight: math.unit(120, "lb"),
  17308. name: "Front (Alt)",
  17309. image: {
  17310. source: "./media/characters/roxi/front-alt.svg",
  17311. extra: 1828 / 1798,
  17312. bottom: 0.01
  17313. }
  17314. },
  17315. sitting: {
  17316. height: math.unit(2.8, "feet"),
  17317. weight: math.unit(120, "lb"),
  17318. name: "Sitting",
  17319. image: {
  17320. source: "./media/characters/roxi/sitting.svg",
  17321. extra: 2660 / 2462,
  17322. bottom: 0.1
  17323. }
  17324. },
  17325. },
  17326. [
  17327. {
  17328. name: "Normal",
  17329. height: math.unit(5 + 2 / 12, "feet"),
  17330. default: true
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17336. {
  17337. side: {
  17338. height: math.unit(55, "feet"),
  17339. weight: math.unit(153, "tons"),
  17340. name: "Side",
  17341. image: {
  17342. source: "./media/characters/shadow/side.svg",
  17343. extra: 701 / 628,
  17344. bottom: 0.02
  17345. }
  17346. },
  17347. flying: {
  17348. height: math.unit(145, "feet"),
  17349. weight: math.unit(153, "tons"),
  17350. name: "Flying",
  17351. image: {
  17352. source: "./media/characters/shadow/flying.svg"
  17353. }
  17354. },
  17355. },
  17356. [
  17357. {
  17358. name: "Normal",
  17359. height: math.unit(55, "feet"),
  17360. default: true
  17361. },
  17362. ]
  17363. ))
  17364. characterMakers.push(() => makeCharacter(
  17365. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17366. {
  17367. front: {
  17368. height: math.unit(6, "feet"),
  17369. weight: math.unit(200, "lb"),
  17370. name: "Front",
  17371. image: {
  17372. source: "./media/characters/marcie/front.svg",
  17373. extra: 960 / 876,
  17374. bottom: 58 / 1017.87
  17375. }
  17376. },
  17377. },
  17378. [
  17379. {
  17380. name: "Macro",
  17381. height: math.unit(1, "mile"),
  17382. default: true
  17383. },
  17384. ]
  17385. ))
  17386. characterMakers.push(() => makeCharacter(
  17387. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17388. {
  17389. front: {
  17390. height: math.unit(7, "feet"),
  17391. weight: math.unit(200, "lb"),
  17392. name: "Front",
  17393. image: {
  17394. source: "./media/characters/kachina/front.svg",
  17395. extra: 1290.68 / 1119,
  17396. bottom: 36.5 / 1327.18
  17397. }
  17398. },
  17399. },
  17400. [
  17401. {
  17402. name: "Normal",
  17403. height: math.unit(7, "feet"),
  17404. default: true
  17405. },
  17406. ]
  17407. ))
  17408. characterMakers.push(() => makeCharacter(
  17409. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17410. {
  17411. looking: {
  17412. height: math.unit(2, "meters"),
  17413. weight: math.unit(300, "kg"),
  17414. name: "Looking",
  17415. image: {
  17416. source: "./media/characters/kash/looking.svg",
  17417. extra: 474 / 344,
  17418. bottom: 0.03
  17419. }
  17420. },
  17421. side: {
  17422. height: math.unit(2, "meters"),
  17423. weight: math.unit(300, "kg"),
  17424. name: "Side",
  17425. image: {
  17426. source: "./media/characters/kash/side.svg",
  17427. extra: 302 / 251,
  17428. bottom: 0.03
  17429. }
  17430. },
  17431. front: {
  17432. height: math.unit(2, "meters"),
  17433. weight: math.unit(300, "kg"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/kash/front.svg",
  17437. extra: 495 / 360,
  17438. bottom: 0.015
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(2, "meters"),
  17446. default: true
  17447. },
  17448. {
  17449. name: "Big",
  17450. height: math.unit(3, "meters")
  17451. },
  17452. {
  17453. name: "Large",
  17454. height: math.unit(5, "meters")
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17460. {
  17461. feeding: {
  17462. height: math.unit(6.7, "feet"),
  17463. weight: math.unit(350, "lb"),
  17464. name: "Feeding",
  17465. image: {
  17466. source: "./media/characters/lalim/feeding.svg",
  17467. }
  17468. },
  17469. },
  17470. [
  17471. {
  17472. name: "Normal",
  17473. height: math.unit(6.7, "feet"),
  17474. default: true
  17475. },
  17476. ]
  17477. ))
  17478. characterMakers.push(() => makeCharacter(
  17479. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17480. {
  17481. front: {
  17482. height: math.unit(9.5, "feet"),
  17483. weight: math.unit(600, "lb"),
  17484. name: "Front",
  17485. image: {
  17486. source: "./media/characters/de'vout/front.svg",
  17487. extra: 1443 / 1328,
  17488. bottom: 0.025
  17489. }
  17490. },
  17491. back: {
  17492. height: math.unit(9.5, "feet"),
  17493. weight: math.unit(600, "lb"),
  17494. name: "Back",
  17495. image: {
  17496. source: "./media/characters/de'vout/back.svg",
  17497. extra: 1443 / 1328
  17498. }
  17499. },
  17500. frontDressed: {
  17501. height: math.unit(9.5, "feet"),
  17502. weight: math.unit(600, "lb"),
  17503. name: "Front (Dressed",
  17504. image: {
  17505. source: "./media/characters/de'vout/front-dressed.svg",
  17506. extra: 1443 / 1328,
  17507. bottom: 0.025
  17508. }
  17509. },
  17510. backDressed: {
  17511. height: math.unit(9.5, "feet"),
  17512. weight: math.unit(600, "lb"),
  17513. name: "Back (Dressed",
  17514. image: {
  17515. source: "./media/characters/de'vout/back-dressed.svg",
  17516. extra: 1443 / 1328
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Normal",
  17523. height: math.unit(9.5, "feet"),
  17524. default: true
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(8, "feet"),
  17533. weight: math.unit(225, "lb"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/talana/front.svg",
  17537. extra: 1410 / 1300,
  17538. bottom: 0.015
  17539. }
  17540. },
  17541. frontDressed: {
  17542. height: math.unit(8, "feet"),
  17543. weight: math.unit(225, "lb"),
  17544. name: "Front (Dressed",
  17545. image: {
  17546. source: "./media/characters/talana/front-dressed.svg",
  17547. extra: 1410 / 1300,
  17548. bottom: 0.015
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(8, "feet"),
  17556. default: true
  17557. },
  17558. ]
  17559. ))
  17560. characterMakers.push(() => makeCharacter(
  17561. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17562. {
  17563. side: {
  17564. height: math.unit(7.2, "feet"),
  17565. weight: math.unit(150, "lb"),
  17566. name: "Side",
  17567. image: {
  17568. source: "./media/characters/xeauvok/side.svg",
  17569. extra: 1975 / 1523,
  17570. bottom: 0.07
  17571. }
  17572. },
  17573. },
  17574. [
  17575. {
  17576. name: "Normal",
  17577. height: math.unit(7.2, "feet"),
  17578. default: true
  17579. },
  17580. ]
  17581. ))
  17582. characterMakers.push(() => makeCharacter(
  17583. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17584. {
  17585. side: {
  17586. height: math.unit(10, "feet"),
  17587. weight: math.unit(900, "kg"),
  17588. name: "Side",
  17589. image: {
  17590. source: "./media/characters/zara/side.svg",
  17591. extra: 504 / 498
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Normal",
  17598. height: math.unit(10, "feet"),
  17599. default: true
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17605. {
  17606. side: {
  17607. height: math.unit(6, "feet"),
  17608. weight: math.unit(150, "lb"),
  17609. name: "Side",
  17610. image: {
  17611. source: "./media/characters/richard-dragon/side.svg",
  17612. extra: 845 / 340,
  17613. bottom: 0.017
  17614. }
  17615. },
  17616. maw: {
  17617. height: math.unit(2.97, "feet"),
  17618. name: "Maw",
  17619. image: {
  17620. source: "./media/characters/richard-dragon/maw.svg"
  17621. }
  17622. },
  17623. },
  17624. [
  17625. ]
  17626. ))
  17627. characterMakers.push(() => makeCharacter(
  17628. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17629. {
  17630. front: {
  17631. height: math.unit(4, "feet"),
  17632. weight: math.unit(100, "lb"),
  17633. name: "Front",
  17634. image: {
  17635. source: "./media/characters/richard-smeargle/front.svg",
  17636. extra: 2952 / 2820,
  17637. bottom: 0.028
  17638. }
  17639. },
  17640. },
  17641. [
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(4, "feet"),
  17645. default: true
  17646. },
  17647. {
  17648. name: "Dynamax",
  17649. height: math.unit(20, "meters")
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17655. {
  17656. front: {
  17657. height: math.unit(6, "feet"),
  17658. weight: math.unit(110, "lb"),
  17659. name: "Front",
  17660. image: {
  17661. source: "./media/characters/klay/front.svg",
  17662. extra: 962 / 883,
  17663. bottom: 0.04
  17664. }
  17665. },
  17666. back: {
  17667. height: math.unit(6, "feet"),
  17668. weight: math.unit(110, "lb"),
  17669. name: "Back",
  17670. image: {
  17671. source: "./media/characters/klay/back.svg",
  17672. extra: 962 / 883
  17673. }
  17674. },
  17675. beans: {
  17676. height: math.unit(1.15, "feet"),
  17677. name: "Beans",
  17678. image: {
  17679. source: "./media/characters/klay/beans.svg"
  17680. }
  17681. },
  17682. },
  17683. [
  17684. {
  17685. name: "Micro",
  17686. height: math.unit(6, "inches")
  17687. },
  17688. {
  17689. name: "Mini",
  17690. height: math.unit(3, "feet")
  17691. },
  17692. {
  17693. name: "Normal",
  17694. height: math.unit(6, "feet"),
  17695. default: true
  17696. },
  17697. {
  17698. name: "Big",
  17699. height: math.unit(25, "feet")
  17700. },
  17701. {
  17702. name: "Macro",
  17703. height: math.unit(100, "feet")
  17704. },
  17705. {
  17706. name: "Megamacro",
  17707. height: math.unit(400, "feet")
  17708. },
  17709. ]
  17710. ))
  17711. characterMakers.push(() => makeCharacter(
  17712. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17713. {
  17714. front: {
  17715. height: math.unit(6, "feet"),
  17716. weight: math.unit(160, "lb"),
  17717. name: "Front",
  17718. image: {
  17719. source: "./media/characters/marcus/front.svg",
  17720. extra: 734 / 676,
  17721. bottom: 0.03
  17722. }
  17723. },
  17724. },
  17725. [
  17726. {
  17727. name: "Little",
  17728. height: math.unit(6, "feet")
  17729. },
  17730. {
  17731. name: "Normal",
  17732. height: math.unit(110, "feet"),
  17733. default: true
  17734. },
  17735. {
  17736. name: "Macro",
  17737. height: math.unit(250, "feet")
  17738. },
  17739. {
  17740. name: "Megamacro",
  17741. height: math.unit(1000, "feet")
  17742. },
  17743. ]
  17744. ))
  17745. characterMakers.push(() => makeCharacter(
  17746. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17747. {
  17748. front: {
  17749. height: math.unit(7, "feet"),
  17750. weight: math.unit(275, "lb"),
  17751. name: "Front",
  17752. image: {
  17753. source: "./media/characters/claude-delroute/front.svg",
  17754. extra: 230 / 214,
  17755. bottom: 0.007
  17756. }
  17757. },
  17758. side: {
  17759. height: math.unit(7, "feet"),
  17760. weight: math.unit(275, "lb"),
  17761. name: "Side",
  17762. image: {
  17763. source: "./media/characters/claude-delroute/side.svg",
  17764. extra: 222 / 214,
  17765. bottom: 0.01
  17766. }
  17767. },
  17768. back: {
  17769. height: math.unit(7, "feet"),
  17770. weight: math.unit(275, "lb"),
  17771. name: "Back",
  17772. image: {
  17773. source: "./media/characters/claude-delroute/back.svg",
  17774. extra: 230 / 214,
  17775. bottom: 0.015
  17776. }
  17777. },
  17778. maw: {
  17779. height: math.unit(0.6407, "meters"),
  17780. name: "Maw",
  17781. image: {
  17782. source: "./media/characters/claude-delroute/maw.svg"
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Normal",
  17789. height: math.unit(7, "feet"),
  17790. default: true
  17791. },
  17792. {
  17793. name: "Lorge",
  17794. height: math.unit(20, "feet")
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17800. {
  17801. front: {
  17802. height: math.unit(8 + 4 / 12, "feet"),
  17803. weight: math.unit(600, "lb"),
  17804. name: "Front",
  17805. image: {
  17806. source: "./media/characters/dragonien/front.svg",
  17807. extra: 100 / 94,
  17808. bottom: 3.3 / 103.3445
  17809. }
  17810. },
  17811. back: {
  17812. height: math.unit(8 + 4 / 12, "feet"),
  17813. weight: math.unit(600, "lb"),
  17814. name: "Back",
  17815. image: {
  17816. source: "./media/characters/dragonien/back.svg",
  17817. extra: 776 / 746,
  17818. bottom: 6.4 / 782.0616
  17819. }
  17820. },
  17821. foot: {
  17822. height: math.unit(1.54, "feet"),
  17823. name: "Foot",
  17824. image: {
  17825. source: "./media/characters/dragonien/foot.svg",
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Normal",
  17832. height: math.unit(8 + 4 / 12, "feet"),
  17833. default: true
  17834. },
  17835. {
  17836. name: "Macro",
  17837. height: math.unit(200, "feet")
  17838. },
  17839. {
  17840. name: "Megamacro",
  17841. height: math.unit(1, "mile")
  17842. },
  17843. {
  17844. name: "Gigamacro",
  17845. height: math.unit(1000, "miles")
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17851. {
  17852. front: {
  17853. height: math.unit(5 + 2 / 12, "feet"),
  17854. weight: math.unit(110, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/desta/front.svg",
  17858. extra: 767 / 726,
  17859. bottom: 11.7 / 779
  17860. }
  17861. },
  17862. back: {
  17863. height: math.unit(5 + 2 / 12, "feet"),
  17864. weight: math.unit(110, "lb"),
  17865. name: "Back",
  17866. image: {
  17867. source: "./media/characters/desta/back.svg",
  17868. extra: 777 / 728,
  17869. bottom: 6 / 784
  17870. }
  17871. },
  17872. frontAlt: {
  17873. height: math.unit(5 + 2 / 12, "feet"),
  17874. weight: math.unit(110, "lb"),
  17875. name: "Front",
  17876. image: {
  17877. source: "./media/characters/desta/front-alt.svg",
  17878. extra: 1482 / 1417
  17879. }
  17880. },
  17881. side: {
  17882. height: math.unit(5 + 2 / 12, "feet"),
  17883. weight: math.unit(110, "lb"),
  17884. name: "Side",
  17885. image: {
  17886. source: "./media/characters/desta/side.svg",
  17887. extra: 2579 / 2491,
  17888. bottom: 0.053
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Micro",
  17895. height: math.unit(6, "inches")
  17896. },
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(5 + 2 / 12, "feet"),
  17900. default: true
  17901. },
  17902. {
  17903. name: "Macro",
  17904. height: math.unit(62, "feet")
  17905. },
  17906. {
  17907. name: "Megamacro",
  17908. height: math.unit(1800, "feet")
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17914. {
  17915. front: {
  17916. height: math.unit(10, "feet"),
  17917. weight: math.unit(700, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/storm-alystar/front.svg",
  17921. extra: 2112 / 1898,
  17922. bottom: 0.034
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Micro",
  17929. height: math.unit(3.5, "inches")
  17930. },
  17931. {
  17932. name: "Normal",
  17933. height: math.unit(10, "feet"),
  17934. default: true
  17935. },
  17936. {
  17937. name: "Macro",
  17938. height: math.unit(400, "feet")
  17939. },
  17940. {
  17941. name: "Deific",
  17942. height: math.unit(60, "miles")
  17943. },
  17944. ]
  17945. ))
  17946. characterMakers.push(() => makeCharacter(
  17947. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17948. {
  17949. front: {
  17950. height: math.unit(2.35, "meters"),
  17951. weight: math.unit(119, "kg"),
  17952. name: "Front",
  17953. image: {
  17954. source: "./media/characters/ilia/front.svg",
  17955. extra: 1285 / 1255,
  17956. bottom: 0.06
  17957. }
  17958. },
  17959. },
  17960. [
  17961. {
  17962. name: "Normal",
  17963. height: math.unit(2.35, "meters")
  17964. },
  17965. {
  17966. name: "Macro",
  17967. height: math.unit(140, "meters"),
  17968. default: true
  17969. },
  17970. {
  17971. name: "Megamacro",
  17972. height: math.unit(100, "miles")
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17978. {
  17979. front: {
  17980. height: math.unit(6 + 5 / 12, "feet"),
  17981. weight: math.unit(190, "lb"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/kingdead/front.svg",
  17985. extra: 1228 / 1177
  17986. }
  17987. },
  17988. },
  17989. [
  17990. {
  17991. name: "Micro",
  17992. height: math.unit(7, "inches")
  17993. },
  17994. {
  17995. name: "Normal",
  17996. height: math.unit(6 + 5 / 12, "feet")
  17997. },
  17998. {
  17999. name: "Macro",
  18000. height: math.unit(150, "feet"),
  18001. default: true
  18002. },
  18003. {
  18004. name: "Megamacro",
  18005. height: math.unit(200, "miles")
  18006. },
  18007. ]
  18008. ))
  18009. characterMakers.push(() => makeCharacter(
  18010. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18011. {
  18012. front: {
  18013. height: math.unit(8, "feet"),
  18014. weight: math.unit(600, "lb"),
  18015. name: "Front",
  18016. image: {
  18017. source: "./media/characters/kyrehx/front.svg",
  18018. extra: 1195 / 1095,
  18019. bottom: 0.034
  18020. }
  18021. },
  18022. },
  18023. [
  18024. {
  18025. name: "Micro",
  18026. height: math.unit(2, "inches")
  18027. },
  18028. {
  18029. name: "Normal",
  18030. height: math.unit(8, "feet"),
  18031. default: true
  18032. },
  18033. {
  18034. name: "Macro",
  18035. height: math.unit(255, "feet")
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18041. {
  18042. front: {
  18043. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18044. weight: math.unit(184, "lb"),
  18045. name: "Front",
  18046. image: {
  18047. source: "./media/characters/xang/front.svg",
  18048. extra: 845 / 755
  18049. }
  18050. },
  18051. },
  18052. [
  18053. {
  18054. name: "Normal",
  18055. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18056. default: true
  18057. },
  18058. {
  18059. name: "Macro",
  18060. height: math.unit(0.935 * 146, "feet")
  18061. },
  18062. {
  18063. name: "Megamacro",
  18064. height: math.unit(0.935 * 3, "miles")
  18065. },
  18066. ]
  18067. ))
  18068. characterMakers.push(() => makeCharacter(
  18069. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18070. {
  18071. frontDressed: {
  18072. height: math.unit(5 + 7 / 12, "feet"),
  18073. weight: math.unit(140, "lb"),
  18074. name: "Front (Dressed)",
  18075. image: {
  18076. source: "./media/characters/doc-weardno/front-dressed.svg",
  18077. extra: 263 / 234
  18078. }
  18079. },
  18080. backDressed: {
  18081. height: math.unit(5 + 7 / 12, "feet"),
  18082. weight: math.unit(140, "lb"),
  18083. name: "Back (Dressed)",
  18084. image: {
  18085. source: "./media/characters/doc-weardno/back-dressed.svg",
  18086. extra: 266 / 238
  18087. }
  18088. },
  18089. front: {
  18090. height: math.unit(5 + 7 / 12, "feet"),
  18091. weight: math.unit(140, "lb"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/doc-weardno/front.svg",
  18095. extra: 254 / 233
  18096. }
  18097. },
  18098. },
  18099. [
  18100. {
  18101. name: "Micro",
  18102. height: math.unit(3, "inches")
  18103. },
  18104. {
  18105. name: "Normal",
  18106. height: math.unit(5 + 7 / 12, "feet"),
  18107. default: true
  18108. },
  18109. {
  18110. name: "Macro",
  18111. height: math.unit(25, "feet")
  18112. },
  18113. {
  18114. name: "Megamacro",
  18115. height: math.unit(2, "miles")
  18116. },
  18117. ]
  18118. ))
  18119. characterMakers.push(() => makeCharacter(
  18120. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18121. {
  18122. front: {
  18123. height: math.unit(6 + 2 / 12, "feet"),
  18124. weight: math.unit(153, "lb"),
  18125. name: "Front",
  18126. image: {
  18127. source: "./media/characters/seth-whilst/front.svg",
  18128. bottom: 0.07
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Micro",
  18135. height: math.unit(5, "inches")
  18136. },
  18137. {
  18138. name: "Normal",
  18139. height: math.unit(6 + 2 / 12, "feet"),
  18140. default: true
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18146. {
  18147. front: {
  18148. height: math.unit(3, "inches"),
  18149. weight: math.unit(8, "grams"),
  18150. name: "Front",
  18151. image: {
  18152. source: "./media/characters/pocket-jabari/front.svg",
  18153. extra: 1024 / 974,
  18154. bottom: 0.039
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Minimicro",
  18161. height: math.unit(8, "mm")
  18162. },
  18163. {
  18164. name: "Micro",
  18165. height: math.unit(3, "inches"),
  18166. default: true
  18167. },
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(3, "feet")
  18171. },
  18172. ]
  18173. ))
  18174. characterMakers.push(() => makeCharacter(
  18175. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18176. {
  18177. front: {
  18178. height: math.unit(15, "feet"),
  18179. weight: math.unit(3280, "lb"),
  18180. name: "Front",
  18181. image: {
  18182. source: "./media/characters/sapphy/front.svg",
  18183. extra: 671 / 577,
  18184. bottom: 0.085
  18185. }
  18186. },
  18187. back: {
  18188. height: math.unit(15, "feet"),
  18189. weight: math.unit(3280, "lb"),
  18190. name: "Back",
  18191. image: {
  18192. source: "./media/characters/sapphy/back.svg",
  18193. extra: 631 / 607,
  18194. bottom: 0.045
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(15, "feet")
  18202. },
  18203. {
  18204. name: "Casual Macro",
  18205. height: math.unit(120, "feet")
  18206. },
  18207. {
  18208. name: "Macro",
  18209. height: math.unit(2150, "feet"),
  18210. default: true
  18211. },
  18212. {
  18213. name: "Megamacro",
  18214. height: math.unit(8, "miles")
  18215. },
  18216. {
  18217. name: "Galaxy Mom",
  18218. height: math.unit(6, "megalightyears")
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18224. {
  18225. front: {
  18226. height: math.unit(6, "feet"),
  18227. weight: math.unit(170, "lb"),
  18228. name: "Front",
  18229. image: {
  18230. source: "./media/characters/kiro/front.svg",
  18231. extra: 1064 / 1012,
  18232. bottom: 0.052
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Micro",
  18239. height: math.unit(6, "inches")
  18240. },
  18241. {
  18242. name: "Normal",
  18243. height: math.unit(6, "feet"),
  18244. default: true
  18245. },
  18246. {
  18247. name: "Macro",
  18248. height: math.unit(72, "feet")
  18249. },
  18250. ]
  18251. ))
  18252. characterMakers.push(() => makeCharacter(
  18253. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18254. {
  18255. front: {
  18256. height: math.unit(5 + 9 / 12, "feet"),
  18257. weight: math.unit(175, "lb"),
  18258. name: "Front",
  18259. image: {
  18260. source: "./media/characters/irishfox/front.svg",
  18261. extra: 1912 / 1680,
  18262. bottom: 0.02
  18263. }
  18264. },
  18265. },
  18266. [
  18267. {
  18268. name: "Nano",
  18269. height: math.unit(1, "mm")
  18270. },
  18271. {
  18272. name: "Micro",
  18273. height: math.unit(2, "inches")
  18274. },
  18275. {
  18276. name: "Normal",
  18277. height: math.unit(5 + 9 / 12, "feet"),
  18278. default: true
  18279. },
  18280. {
  18281. name: "Macro",
  18282. height: math.unit(45, "feet")
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18288. {
  18289. front: {
  18290. height: math.unit(6 + 1 / 12, "feet"),
  18291. weight: math.unit(75, "lb"),
  18292. name: "Front",
  18293. image: {
  18294. source: "./media/characters/aronai-sieyes/front.svg",
  18295. extra: 1556 / 1480,
  18296. bottom: 0.015
  18297. }
  18298. },
  18299. side: {
  18300. height: math.unit(6 + 1 / 12, "feet"),
  18301. weight: math.unit(75, "lb"),
  18302. name: "Side",
  18303. image: {
  18304. source: "./media/characters/aronai-sieyes/side.svg",
  18305. extra: 1433 / 1390,
  18306. bottom: 0.0393
  18307. }
  18308. },
  18309. back: {
  18310. height: math.unit(6 + 1 / 12, "feet"),
  18311. weight: math.unit(75, "lb"),
  18312. name: "Back",
  18313. image: {
  18314. source: "./media/characters/aronai-sieyes/back.svg",
  18315. extra: 1544 / 1494,
  18316. bottom: 0.02
  18317. }
  18318. },
  18319. frontClothed: {
  18320. height: math.unit(6 + 1 / 12, "feet"),
  18321. weight: math.unit(75, "lb"),
  18322. name: "Front (Clothed)",
  18323. image: {
  18324. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18325. extra: 1582 / 1527
  18326. }
  18327. },
  18328. feral: {
  18329. height: math.unit(18, "feet"),
  18330. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18331. name: "Feral",
  18332. image: {
  18333. source: "./media/characters/aronai-sieyes/feral.svg",
  18334. extra: 1530 / 1240,
  18335. bottom: 0.035
  18336. }
  18337. },
  18338. },
  18339. [
  18340. {
  18341. name: "Micro",
  18342. height: math.unit(2, "inches")
  18343. },
  18344. {
  18345. name: "Normal",
  18346. height: math.unit(6 + 1 / 12, "feet"),
  18347. default: true
  18348. }
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18353. {
  18354. front: {
  18355. height: math.unit(12, "feet"),
  18356. weight: math.unit(410, "kg"),
  18357. name: "Front",
  18358. image: {
  18359. source: "./media/characters/xuna/front.svg",
  18360. extra: 2184 / 1980
  18361. }
  18362. },
  18363. side: {
  18364. height: math.unit(12, "feet"),
  18365. weight: math.unit(410, "kg"),
  18366. name: "Side",
  18367. image: {
  18368. source: "./media/characters/xuna/side.svg",
  18369. extra: 2184 / 1980
  18370. }
  18371. },
  18372. back: {
  18373. height: math.unit(12, "feet"),
  18374. weight: math.unit(410, "kg"),
  18375. name: "Back",
  18376. image: {
  18377. source: "./media/characters/xuna/back.svg",
  18378. extra: 2184 / 1980
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Nano glow",
  18385. height: math.unit(10, "nm")
  18386. },
  18387. {
  18388. name: "Micro floof",
  18389. height: math.unit(0.3, "m")
  18390. },
  18391. {
  18392. name: "Huggable softy boi",
  18393. height: math.unit(3.6576, "m"),
  18394. default: true
  18395. },
  18396. {
  18397. name: "Admirable floof",
  18398. height: math.unit(80, "meters")
  18399. },
  18400. {
  18401. name: "Gentle macro",
  18402. height: math.unit(300, "meters")
  18403. },
  18404. {
  18405. name: "Very careful floof",
  18406. height: math.unit(3200, "meters")
  18407. },
  18408. {
  18409. name: "The mega floof",
  18410. height: math.unit(36000, "meters")
  18411. },
  18412. {
  18413. name: "Giga-fur-Wicker",
  18414. height: math.unit(4800000, "meters")
  18415. },
  18416. {
  18417. name: "Licky world",
  18418. height: math.unit(20000000, "meters")
  18419. },
  18420. {
  18421. name: "Floofy cyan sun",
  18422. height: math.unit(1500000000, "meters")
  18423. },
  18424. {
  18425. name: "Milky Wicker",
  18426. height: math.unit(1000000000000000000000, "meters")
  18427. },
  18428. {
  18429. name: "The observing Wicker",
  18430. height: math.unit(999999999999999999999999999, "meters")
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18436. {
  18437. front: {
  18438. height: math.unit(5 + 9 / 12, "feet"),
  18439. weight: math.unit(150, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/arokha-sieyes/front.svg",
  18443. extra: 1425 / 1284,
  18444. bottom: 0.05
  18445. }
  18446. },
  18447. },
  18448. [
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(5 + 9 / 12, "feet")
  18452. },
  18453. {
  18454. name: "Macro",
  18455. height: math.unit(30, "meters"),
  18456. default: true
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18462. {
  18463. front: {
  18464. height: math.unit(6, "feet"),
  18465. weight: math.unit(180, "lb"),
  18466. name: "Front",
  18467. image: {
  18468. source: "./media/characters/arokh-sieyes/front.svg",
  18469. extra: 1830 / 1769,
  18470. bottom: 0.01
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Normal",
  18477. height: math.unit(6, "feet")
  18478. },
  18479. {
  18480. name: "Macro",
  18481. height: math.unit(30, "meters"),
  18482. default: true
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18488. {
  18489. side: {
  18490. height: math.unit(13 + 1 / 12, "feet"),
  18491. weight: math.unit(8.5, "tonnes"),
  18492. name: "Side",
  18493. image: {
  18494. source: "./media/characters/goldeneye/side.svg",
  18495. extra: 1182 / 778,
  18496. bottom: 0.067
  18497. }
  18498. },
  18499. paw: {
  18500. height: math.unit(3.4, "feet"),
  18501. name: "Paw",
  18502. image: {
  18503. source: "./media/characters/goldeneye/paw.svg"
  18504. }
  18505. },
  18506. },
  18507. [
  18508. {
  18509. name: "Normal",
  18510. height: math.unit(13 + 1 / 12, "feet"),
  18511. default: true
  18512. },
  18513. ]
  18514. ))
  18515. characterMakers.push(() => makeCharacter(
  18516. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18517. {
  18518. front: {
  18519. height: math.unit(6 + 1 / 12, "feet"),
  18520. weight: math.unit(210, "lb"),
  18521. name: "Front",
  18522. image: {
  18523. source: "./media/characters/leonardo-lycheborne/front.svg",
  18524. extra: 390 / 365,
  18525. bottom: 0.032
  18526. }
  18527. },
  18528. side: {
  18529. height: math.unit(6 + 1 / 12, "feet"),
  18530. weight: math.unit(210, "lb"),
  18531. name: "Side",
  18532. image: {
  18533. source: "./media/characters/leonardo-lycheborne/side.svg",
  18534. extra: 390 / 365,
  18535. bottom: 0.005
  18536. }
  18537. },
  18538. back: {
  18539. height: math.unit(6 + 1 / 12, "feet"),
  18540. weight: math.unit(210, "lb"),
  18541. name: "Back",
  18542. image: {
  18543. source: "./media/characters/leonardo-lycheborne/back.svg",
  18544. extra: 392 / 366,
  18545. bottom: 0.01
  18546. }
  18547. },
  18548. hand: {
  18549. height: math.unit(1.08, "feet"),
  18550. name: "Hand",
  18551. image: {
  18552. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18553. }
  18554. },
  18555. foot: {
  18556. height: math.unit(1.32, "feet"),
  18557. name: "Foot",
  18558. image: {
  18559. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18560. }
  18561. },
  18562. were: {
  18563. height: math.unit(20, "feet"),
  18564. weight: math.unit(7800, "lb"),
  18565. name: "Were",
  18566. image: {
  18567. source: "./media/characters/leonardo-lycheborne/were.svg",
  18568. extra: 308 / 294,
  18569. bottom: 0.048
  18570. }
  18571. },
  18572. feral: {
  18573. height: math.unit(7.5, "feet"),
  18574. weight: math.unit(600, "lb"),
  18575. name: "Feral",
  18576. image: {
  18577. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18578. extra: 210 / 186,
  18579. bottom: 0.108
  18580. }
  18581. },
  18582. taur: {
  18583. height: math.unit(11, "feet"),
  18584. weight: math.unit(3300, "lb"),
  18585. name: "Taur",
  18586. image: {
  18587. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18588. extra: 320 / 303,
  18589. bottom: 0.025
  18590. }
  18591. },
  18592. barghest: {
  18593. height: math.unit(11, "feet"),
  18594. weight: math.unit(1300, "lb"),
  18595. name: "Barghest",
  18596. image: {
  18597. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18598. extra: 323 / 302,
  18599. bottom: 0.027
  18600. }
  18601. },
  18602. dick: {
  18603. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18604. name: "Dick",
  18605. image: {
  18606. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18607. }
  18608. },
  18609. dickWere: {
  18610. height: math.unit((20) / 3.8, "feet"),
  18611. name: "Dick (Were)",
  18612. image: {
  18613. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(6 + 1 / 12, "feet"),
  18621. default: true
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18627. {
  18628. front: {
  18629. height: math.unit(10, "feet"),
  18630. weight: math.unit(350, "lb"),
  18631. name: "Front",
  18632. image: {
  18633. source: "./media/characters/jet/front.svg",
  18634. extra: 2050 / 1980,
  18635. bottom: 0.013
  18636. }
  18637. },
  18638. back: {
  18639. height: math.unit(10, "feet"),
  18640. weight: math.unit(350, "lb"),
  18641. name: "Back",
  18642. image: {
  18643. source: "./media/characters/jet/back.svg",
  18644. extra: 2050 / 1980,
  18645. bottom: 0.013
  18646. }
  18647. },
  18648. },
  18649. [
  18650. {
  18651. name: "Micro",
  18652. height: math.unit(6, "inches")
  18653. },
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(10, "feet"),
  18657. default: true
  18658. },
  18659. {
  18660. name: "Macro",
  18661. height: math.unit(100, "feet")
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18667. {
  18668. front: {
  18669. height: math.unit(15, "feet"),
  18670. weight: math.unit(2800, "lb"),
  18671. name: "Front",
  18672. image: {
  18673. source: "./media/characters/tanarath/front.svg",
  18674. extra: 2392 / 2220,
  18675. bottom: 0.03
  18676. }
  18677. },
  18678. back: {
  18679. height: math.unit(15, "feet"),
  18680. weight: math.unit(2800, "lb"),
  18681. name: "Back",
  18682. image: {
  18683. source: "./media/characters/tanarath/back.svg",
  18684. extra: 2392 / 2220,
  18685. bottom: 0.03
  18686. }
  18687. },
  18688. },
  18689. [
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(15, "feet"),
  18693. default: true
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(7 + 1 / 12, "feet"),
  18702. weight: math.unit(175, "lb"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/patty-cattybatty/front.svg",
  18706. extra: 908 / 874,
  18707. bottom: 0.025
  18708. }
  18709. },
  18710. },
  18711. [
  18712. {
  18713. name: "Micro",
  18714. height: math.unit(1, "inch")
  18715. },
  18716. {
  18717. name: "Normal",
  18718. height: math.unit(7 + 1 / 12, "feet")
  18719. },
  18720. {
  18721. name: "Mini Macro",
  18722. height: math.unit(155, "feet")
  18723. },
  18724. {
  18725. name: "Macro",
  18726. height: math.unit(1077, "feet")
  18727. },
  18728. {
  18729. name: "Mega Macro",
  18730. height: math.unit(47650, "feet"),
  18731. default: true
  18732. },
  18733. {
  18734. name: "Giga Macro",
  18735. height: math.unit(440, "miles")
  18736. },
  18737. {
  18738. name: "Tera Macro",
  18739. height: math.unit(8700, "miles")
  18740. },
  18741. {
  18742. name: "Planetary Macro",
  18743. height: math.unit(32700, "miles")
  18744. },
  18745. {
  18746. name: "Solar Macro",
  18747. height: math.unit(550000, "miles")
  18748. },
  18749. {
  18750. name: "Celestial Macro",
  18751. height: math.unit(2.5, "AU")
  18752. },
  18753. ]
  18754. ))
  18755. characterMakers.push(() => makeCharacter(
  18756. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18757. {
  18758. front: {
  18759. height: math.unit(4 + 5 / 12, "feet"),
  18760. weight: math.unit(90, "lb"),
  18761. name: "Front",
  18762. image: {
  18763. source: "./media/characters/cappu/front.svg",
  18764. extra: 1247 / 1152,
  18765. bottom: 0.012
  18766. }
  18767. },
  18768. },
  18769. [
  18770. {
  18771. name: "Normal",
  18772. height: math.unit(4 + 5 / 12, "feet"),
  18773. default: true
  18774. },
  18775. ]
  18776. ))
  18777. characterMakers.push(() => makeCharacter(
  18778. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18779. {
  18780. frontDressed: {
  18781. height: math.unit(70, "cm"),
  18782. weight: math.unit(6, "kg"),
  18783. name: "Front (Dressed)",
  18784. image: {
  18785. source: "./media/characters/sebi/front-dressed.svg",
  18786. extra: 713.5 / 686.5,
  18787. bottom: 0.003
  18788. }
  18789. },
  18790. front: {
  18791. height: math.unit(70, "cm"),
  18792. weight: math.unit(5, "kg"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/sebi/front.svg",
  18796. extra: 713.5 / 686.5,
  18797. bottom: 0.003
  18798. }
  18799. }
  18800. },
  18801. [
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(70, "cm"),
  18805. default: true
  18806. },
  18807. {
  18808. name: "Macro",
  18809. height: math.unit(8, "meters")
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18815. {
  18816. front: {
  18817. height: math.unit(6, "feet"),
  18818. weight: math.unit(150, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/typhek/front.svg",
  18822. extra: 1948 / 1929,
  18823. bottom: 0.025
  18824. }
  18825. },
  18826. side: {
  18827. height: math.unit(6, "feet"),
  18828. weight: math.unit(150, "lb"),
  18829. name: "Side",
  18830. image: {
  18831. source: "./media/characters/typhek/side.svg",
  18832. extra: 2034 / 2010,
  18833. bottom: 0.003
  18834. }
  18835. },
  18836. back: {
  18837. height: math.unit(6, "feet"),
  18838. weight: math.unit(150, "lb"),
  18839. name: "Back",
  18840. image: {
  18841. source: "./media/characters/typhek/back.svg",
  18842. extra: 2005 / 1978,
  18843. bottom: 0.004
  18844. }
  18845. },
  18846. palm: {
  18847. height: math.unit(1.2, "feet"),
  18848. name: "Palm",
  18849. image: {
  18850. source: "./media/characters/typhek/palm.svg"
  18851. }
  18852. },
  18853. fist: {
  18854. height: math.unit(1.1, "feet"),
  18855. name: "Fist",
  18856. image: {
  18857. source: "./media/characters/typhek/fist.svg"
  18858. }
  18859. },
  18860. foot: {
  18861. height: math.unit(1.57, "feet"),
  18862. name: "Foot",
  18863. image: {
  18864. source: "./media/characters/typhek/foot.svg"
  18865. }
  18866. },
  18867. sole: {
  18868. height: math.unit(2.05, "feet"),
  18869. name: "Sole",
  18870. image: {
  18871. source: "./media/characters/typhek/sole.svg"
  18872. }
  18873. },
  18874. },
  18875. [
  18876. {
  18877. name: "Macro",
  18878. height: math.unit(40, "stories"),
  18879. default: true
  18880. },
  18881. {
  18882. name: "Megamacro",
  18883. height: math.unit(1, "mile")
  18884. },
  18885. {
  18886. name: "Gigamacro",
  18887. height: math.unit(4000, "solarradii")
  18888. },
  18889. {
  18890. name: "Universal",
  18891. height: math.unit(1.1, "universes")
  18892. }
  18893. ]
  18894. ))
  18895. characterMakers.push(() => makeCharacter(
  18896. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18897. {
  18898. side: {
  18899. height: math.unit(5 + 7 / 12, "feet"),
  18900. weight: math.unit(150, "lb"),
  18901. name: "Side",
  18902. image: {
  18903. source: "./media/characters/kassy/side.svg",
  18904. extra: 1280 / 1225,
  18905. bottom: 0.002
  18906. }
  18907. },
  18908. front: {
  18909. height: math.unit(5 + 7 / 12, "feet"),
  18910. weight: math.unit(150, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/kassy/front.svg",
  18914. extra: 1280 / 1225,
  18915. bottom: 0.025
  18916. }
  18917. },
  18918. back: {
  18919. height: math.unit(5 + 7 / 12, "feet"),
  18920. weight: math.unit(150, "lb"),
  18921. name: "Back",
  18922. image: {
  18923. source: "./media/characters/kassy/back.svg",
  18924. extra: 1280 / 1225,
  18925. bottom: 0.002
  18926. }
  18927. },
  18928. foot: {
  18929. height: math.unit(1.266, "feet"),
  18930. name: "Foot",
  18931. image: {
  18932. source: "./media/characters/kassy/foot.svg"
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(5 + 7 / 12, "feet")
  18940. },
  18941. {
  18942. name: "Macro",
  18943. height: math.unit(137, "feet"),
  18944. default: true
  18945. },
  18946. {
  18947. name: "Megamacro",
  18948. height: math.unit(1, "mile")
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18954. {
  18955. front: {
  18956. height: math.unit(6 + 1 / 12, "feet"),
  18957. weight: math.unit(200, "lb"),
  18958. name: "Front",
  18959. image: {
  18960. source: "./media/characters/neil/front.svg",
  18961. extra: 1326 / 1250,
  18962. bottom: 0.023
  18963. }
  18964. },
  18965. },
  18966. [
  18967. {
  18968. name: "Normal",
  18969. height: math.unit(6 + 1 / 12, "feet"),
  18970. default: true
  18971. },
  18972. {
  18973. name: "Macro",
  18974. height: math.unit(200, "feet")
  18975. },
  18976. ]
  18977. ))
  18978. characterMakers.push(() => makeCharacter(
  18979. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18980. {
  18981. front: {
  18982. height: math.unit(5 + 9 / 12, "feet"),
  18983. weight: math.unit(190, "lb"),
  18984. name: "Front",
  18985. image: {
  18986. source: "./media/characters/atticus/front.svg",
  18987. extra: 2934 / 2785,
  18988. bottom: 0.025
  18989. }
  18990. },
  18991. },
  18992. [
  18993. {
  18994. name: "Normal",
  18995. height: math.unit(5 + 9 / 12, "feet"),
  18996. default: true
  18997. },
  18998. {
  18999. name: "Macro",
  19000. height: math.unit(180, "feet")
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19006. {
  19007. side: {
  19008. height: math.unit(9, "feet"),
  19009. weight: math.unit(650, "lb"),
  19010. name: "Side",
  19011. image: {
  19012. source: "./media/characters/milo/side.svg",
  19013. extra: 2644 / 2310,
  19014. bottom: 0.032
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(9, "feet"),
  19022. default: true
  19023. },
  19024. {
  19025. name: "Macro",
  19026. height: math.unit(300, "feet")
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19032. {
  19033. side: {
  19034. height: math.unit(8, "meters"),
  19035. weight: math.unit(90000, "kg"),
  19036. name: "Side",
  19037. image: {
  19038. source: "./media/characters/ijzer/side.svg",
  19039. extra: 2756 / 1600,
  19040. bottom: 0.01
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Small",
  19047. height: math.unit(3, "meters")
  19048. },
  19049. {
  19050. name: "Normal",
  19051. height: math.unit(8, "meters"),
  19052. default: true
  19053. },
  19054. {
  19055. name: "Normal+",
  19056. height: math.unit(10, "meters")
  19057. },
  19058. {
  19059. name: "Bigger",
  19060. height: math.unit(24, "meters")
  19061. },
  19062. {
  19063. name: "Huge",
  19064. height: math.unit(80, "meters")
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19070. {
  19071. front: {
  19072. height: math.unit(6 + 2 / 12, "feet"),
  19073. weight: math.unit(153, "lb"),
  19074. name: "Front",
  19075. image: {
  19076. source: "./media/characters/luca-cervicum/front.svg",
  19077. extra: 370 / 327,
  19078. bottom: 0.015
  19079. }
  19080. },
  19081. back: {
  19082. height: math.unit(6 + 2 / 12, "feet"),
  19083. weight: math.unit(153, "lb"),
  19084. name: "Back",
  19085. image: {
  19086. source: "./media/characters/luca-cervicum/back.svg",
  19087. extra: 367 / 333,
  19088. bottom: 0.005
  19089. }
  19090. },
  19091. frontGear: {
  19092. height: math.unit(6 + 2 / 12, "feet"),
  19093. weight: math.unit(173, "lb"),
  19094. name: "Front (Gear)",
  19095. image: {
  19096. source: "./media/characters/luca-cervicum/front-gear.svg",
  19097. extra: 377 / 333,
  19098. bottom: 0.006
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(6 + 2 / 12, "feet"),
  19106. default: true
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19112. {
  19113. front: {
  19114. height: math.unit(6 + 1 / 12, "feet"),
  19115. weight: math.unit(304, "lb"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/oliver/front.svg",
  19119. extra: 157 / 143,
  19120. bottom: 0.08
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Normal",
  19127. height: math.unit(6 + 1 / 12, "feet"),
  19128. default: true
  19129. },
  19130. ]
  19131. ))
  19132. characterMakers.push(() => makeCharacter(
  19133. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19134. {
  19135. front: {
  19136. height: math.unit(5 + 7 / 12, "feet"),
  19137. weight: math.unit(140, "lb"),
  19138. name: "Front",
  19139. image: {
  19140. source: "./media/characters/shane/front.svg",
  19141. extra: 304 / 289,
  19142. bottom: 0.005
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Normal",
  19149. height: math.unit(5 + 7 / 12, "feet"),
  19150. default: true
  19151. },
  19152. ]
  19153. ))
  19154. characterMakers.push(() => makeCharacter(
  19155. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19156. {
  19157. front: {
  19158. height: math.unit(5 + 9 / 12, "feet"),
  19159. weight: math.unit(178, "lb"),
  19160. name: "Front",
  19161. image: {
  19162. source: "./media/characters/shin/front.svg",
  19163. extra: 159 / 151,
  19164. bottom: 0.015
  19165. }
  19166. },
  19167. },
  19168. [
  19169. {
  19170. name: "Normal",
  19171. height: math.unit(5 + 9 / 12, "feet"),
  19172. default: true
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19178. {
  19179. front: {
  19180. height: math.unit(5 + 10 / 12, "feet"),
  19181. weight: math.unit(168, "lb"),
  19182. name: "Front",
  19183. image: {
  19184. source: "./media/characters/xerxes/front.svg",
  19185. extra: 282 / 260,
  19186. bottom: 0.045
  19187. }
  19188. },
  19189. },
  19190. [
  19191. {
  19192. name: "Normal",
  19193. height: math.unit(5 + 10 / 12, "feet"),
  19194. default: true
  19195. },
  19196. ]
  19197. ))
  19198. characterMakers.push(() => makeCharacter(
  19199. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19200. {
  19201. front: {
  19202. height: math.unit(6 + 7 / 12, "feet"),
  19203. weight: math.unit(208, "lb"),
  19204. name: "Front",
  19205. image: {
  19206. source: "./media/characters/chaska/front.svg",
  19207. extra: 332 / 319,
  19208. bottom: 0.015
  19209. }
  19210. },
  19211. },
  19212. [
  19213. {
  19214. name: "Normal",
  19215. height: math.unit(6 + 7 / 12, "feet"),
  19216. default: true
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19222. {
  19223. front: {
  19224. height: math.unit(5 + 8 / 12, "feet"),
  19225. weight: math.unit(208, "lb"),
  19226. name: "Front",
  19227. image: {
  19228. source: "./media/characters/enuk/front.svg",
  19229. extra: 437 / 406,
  19230. bottom: 0.02
  19231. }
  19232. },
  19233. },
  19234. [
  19235. {
  19236. name: "Normal",
  19237. height: math.unit(5 + 8 / 12, "feet"),
  19238. default: true
  19239. },
  19240. ]
  19241. ))
  19242. characterMakers.push(() => makeCharacter(
  19243. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19244. {
  19245. front: {
  19246. height: math.unit(5 + 10 / 12, "feet"),
  19247. weight: math.unit(252, "lb"),
  19248. name: "Front",
  19249. image: {
  19250. source: "./media/characters/bruun/front.svg",
  19251. extra: 197 / 187,
  19252. bottom: 0.012
  19253. }
  19254. },
  19255. },
  19256. [
  19257. {
  19258. name: "Normal",
  19259. height: math.unit(5 + 10 / 12, "feet"),
  19260. default: true
  19261. },
  19262. ]
  19263. ))
  19264. characterMakers.push(() => makeCharacter(
  19265. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19266. {
  19267. front: {
  19268. height: math.unit(6 + 10 / 12, "feet"),
  19269. weight: math.unit(255, "lb"),
  19270. name: "Front",
  19271. image: {
  19272. source: "./media/characters/alexeev/front.svg",
  19273. extra: 213 / 200,
  19274. bottom: 0.05
  19275. }
  19276. },
  19277. },
  19278. [
  19279. {
  19280. name: "Normal",
  19281. height: math.unit(6 + 10 / 12, "feet"),
  19282. default: true
  19283. },
  19284. ]
  19285. ))
  19286. characterMakers.push(() => makeCharacter(
  19287. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19288. {
  19289. front: {
  19290. height: math.unit(2 + 8 / 12, "feet"),
  19291. weight: math.unit(22, "lb"),
  19292. name: "Front",
  19293. image: {
  19294. source: "./media/characters/evelyn/front.svg",
  19295. extra: 208 / 180
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(2 + 8 / 12, "feet"),
  19303. default: true
  19304. },
  19305. ]
  19306. ))
  19307. characterMakers.push(() => makeCharacter(
  19308. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19309. {
  19310. front: {
  19311. height: math.unit(5 + 9 / 12, "feet"),
  19312. weight: math.unit(139, "lb"),
  19313. name: "Front",
  19314. image: {
  19315. source: "./media/characters/inca/front.svg",
  19316. extra: 294 / 291,
  19317. bottom: 0.03
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Normal",
  19324. height: math.unit(5 + 9 / 12, "feet"),
  19325. default: true
  19326. },
  19327. ]
  19328. ))
  19329. characterMakers.push(() => makeCharacter(
  19330. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19331. {
  19332. front: {
  19333. height: math.unit(5 + 1 / 12, "feet"),
  19334. weight: math.unit(84, "lb"),
  19335. name: "Front",
  19336. image: {
  19337. source: "./media/characters/magdalene/front.svg",
  19338. extra: 293 / 273
  19339. }
  19340. },
  19341. },
  19342. [
  19343. {
  19344. name: "Normal",
  19345. height: math.unit(5 + 1 / 12, "feet"),
  19346. default: true
  19347. },
  19348. ]
  19349. ))
  19350. characterMakers.push(() => makeCharacter(
  19351. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19352. {
  19353. front: {
  19354. height: math.unit(6 + 3 / 12, "feet"),
  19355. weight: math.unit(185, "lb"),
  19356. name: "Front",
  19357. image: {
  19358. source: "./media/characters/mera/front.svg",
  19359. extra: 291 / 277,
  19360. bottom: 0.03
  19361. }
  19362. },
  19363. },
  19364. [
  19365. {
  19366. name: "Normal",
  19367. height: math.unit(6 + 3 / 12, "feet"),
  19368. default: true
  19369. },
  19370. ]
  19371. ))
  19372. characterMakers.push(() => makeCharacter(
  19373. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19374. {
  19375. front: {
  19376. height: math.unit(6 + 7 / 12, "feet"),
  19377. weight: math.unit(160, "lb"),
  19378. name: "Front",
  19379. image: {
  19380. source: "./media/characters/ceres/front.svg",
  19381. extra: 1023 / 950,
  19382. bottom: 0.027
  19383. }
  19384. },
  19385. back: {
  19386. height: math.unit(6 + 7 / 12, "feet"),
  19387. weight: math.unit(160, "lb"),
  19388. name: "Back",
  19389. image: {
  19390. source: "./media/characters/ceres/back.svg",
  19391. extra: 1023 / 950
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(6 + 7 / 12, "feet"),
  19399. default: true
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(5 + 10 / 12, "feet"),
  19408. weight: math.unit(150, "lb"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/kris/front.svg",
  19412. extra: 885 / 803,
  19413. bottom: 0.03
  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: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19427. {
  19428. front: {
  19429. height: math.unit(7, "feet"),
  19430. weight: math.unit(120, "kg"),
  19431. name: "Front",
  19432. image: {
  19433. source: "./media/characters/taluthus/front.svg",
  19434. extra: 903 / 833,
  19435. bottom: 0.015
  19436. }
  19437. },
  19438. },
  19439. [
  19440. {
  19441. name: "Normal",
  19442. height: math.unit(7, "feet"),
  19443. default: true
  19444. },
  19445. {
  19446. name: "Macro",
  19447. height: math.unit(300, "feet")
  19448. },
  19449. ]
  19450. ))
  19451. characterMakers.push(() => makeCharacter(
  19452. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19453. {
  19454. front: {
  19455. height: math.unit(5 + 9 / 12, "feet"),
  19456. weight: math.unit(145, "lb"),
  19457. name: "Front",
  19458. image: {
  19459. source: "./media/characters/dawn/front.svg",
  19460. extra: 2094 / 2016,
  19461. bottom: 0.025
  19462. }
  19463. },
  19464. back: {
  19465. height: math.unit(5 + 9 / 12, "feet"),
  19466. weight: math.unit(160, "lb"),
  19467. name: "Back",
  19468. image: {
  19469. source: "./media/characters/dawn/back.svg",
  19470. extra: 2112 / 2080,
  19471. bottom: 0.005
  19472. }
  19473. },
  19474. },
  19475. [
  19476. {
  19477. name: "Normal",
  19478. height: math.unit(6 + 7 / 12, "feet"),
  19479. default: true
  19480. },
  19481. ]
  19482. ))
  19483. characterMakers.push(() => makeCharacter(
  19484. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19485. {
  19486. anthro: {
  19487. height: math.unit(8 + 3 / 12, "feet"),
  19488. weight: math.unit(450, "lb"),
  19489. name: "Anthro",
  19490. image: {
  19491. source: "./media/characters/arador/anthro.svg",
  19492. extra: 1835 / 1718,
  19493. bottom: 0.025
  19494. }
  19495. },
  19496. feral: {
  19497. height: math.unit(4, "feet"),
  19498. weight: math.unit(200, "lb"),
  19499. name: "Feral",
  19500. image: {
  19501. source: "./media/characters/arador/feral.svg",
  19502. extra: 1683 / 1514,
  19503. bottom: 0.07
  19504. }
  19505. },
  19506. },
  19507. [
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(8 + 3 / 12, "feet")
  19511. },
  19512. {
  19513. name: "Macro",
  19514. height: math.unit(82.5, "feet"),
  19515. default: true
  19516. },
  19517. ]
  19518. ))
  19519. characterMakers.push(() => makeCharacter(
  19520. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19521. {
  19522. front: {
  19523. height: math.unit(5 + 10 / 12, "feet"),
  19524. weight: math.unit(125, "lb"),
  19525. name: "Front",
  19526. image: {
  19527. source: "./media/characters/dharsi/front.svg",
  19528. extra: 716 / 630,
  19529. bottom: 0.035
  19530. }
  19531. },
  19532. },
  19533. [
  19534. {
  19535. name: "Nano",
  19536. height: math.unit(100, "nm")
  19537. },
  19538. {
  19539. name: "Micro",
  19540. height: math.unit(2, "inches")
  19541. },
  19542. {
  19543. name: "Normal",
  19544. height: math.unit(5 + 10 / 12, "feet"),
  19545. default: true
  19546. },
  19547. {
  19548. name: "Macro",
  19549. height: math.unit(1000, "feet")
  19550. },
  19551. {
  19552. name: "Megamacro",
  19553. height: math.unit(10, "miles")
  19554. },
  19555. {
  19556. name: "Gigamacro",
  19557. height: math.unit(3000, "miles")
  19558. },
  19559. {
  19560. name: "Teramacro",
  19561. height: math.unit(500000, "miles")
  19562. },
  19563. {
  19564. name: "Teramacro+",
  19565. height: math.unit(30, "galaxies")
  19566. },
  19567. ]
  19568. ))
  19569. characterMakers.push(() => makeCharacter(
  19570. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19571. {
  19572. front: {
  19573. height: math.unit(6, "feet"),
  19574. weight: math.unit(150, "lb"),
  19575. name: "Front",
  19576. image: {
  19577. source: "./media/characters/deathy/front.svg",
  19578. extra: 1552 / 1463,
  19579. bottom: 0.025
  19580. }
  19581. },
  19582. side: {
  19583. height: math.unit(6, "feet"),
  19584. weight: math.unit(150, "lb"),
  19585. name: "Side",
  19586. image: {
  19587. source: "./media/characters/deathy/side.svg",
  19588. extra: 1604 / 1455,
  19589. bottom: 0.025
  19590. }
  19591. },
  19592. back: {
  19593. height: math.unit(6, "feet"),
  19594. weight: math.unit(150, "lb"),
  19595. name: "Back",
  19596. image: {
  19597. source: "./media/characters/deathy/back.svg",
  19598. extra: 1580 / 1463,
  19599. bottom: 0.005
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Micro",
  19606. height: math.unit(5, "millimeters")
  19607. },
  19608. {
  19609. name: "Normal",
  19610. height: math.unit(6 + 5 / 12, "feet"),
  19611. default: true
  19612. },
  19613. ]
  19614. ))
  19615. characterMakers.push(() => makeCharacter(
  19616. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19617. {
  19618. front: {
  19619. height: math.unit(16, "feet"),
  19620. weight: math.unit(4000, "lb"),
  19621. name: "Front",
  19622. image: {
  19623. source: "./media/characters/juniper/front.svg",
  19624. bottom: 0.04
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(16, "feet"),
  19632. default: true
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(6, "feet"),
  19641. weight: math.unit(150, "lb"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/hipster/front.svg",
  19645. extra: 1312 / 1209,
  19646. bottom: 0.025
  19647. }
  19648. },
  19649. back: {
  19650. height: math.unit(6, "feet"),
  19651. weight: math.unit(150, "lb"),
  19652. name: "Back",
  19653. image: {
  19654. source: "./media/characters/hipster/back.svg",
  19655. extra: 1281 / 1196,
  19656. bottom: 0.01
  19657. }
  19658. },
  19659. },
  19660. [
  19661. {
  19662. name: "Micro",
  19663. height: math.unit(1, "mm")
  19664. },
  19665. {
  19666. name: "Normal",
  19667. height: math.unit(4, "inches"),
  19668. default: true
  19669. },
  19670. {
  19671. name: "Macro",
  19672. height: math.unit(500, "feet")
  19673. },
  19674. {
  19675. name: "Megamacro",
  19676. height: math.unit(1000, "miles")
  19677. },
  19678. ]
  19679. ))
  19680. characterMakers.push(() => makeCharacter(
  19681. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19682. {
  19683. front: {
  19684. height: math.unit(6, "feet"),
  19685. weight: math.unit(150, "lb"),
  19686. name: "Front",
  19687. image: {
  19688. source: "./media/characters/tendirmuldr/front.svg",
  19689. extra: 1878 / 1772,
  19690. bottom: 0.015
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Megamacro",
  19697. height: math.unit(1500, "miles"),
  19698. default: true
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19704. {
  19705. front: {
  19706. height: math.unit(14, "feet"),
  19707. weight: math.unit(12000, "lb"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/mort/front.svg",
  19711. extra: 365 / 318,
  19712. bottom: 0.01
  19713. }
  19714. },
  19715. side: {
  19716. height: math.unit(14, "feet"),
  19717. weight: math.unit(12000, "lb"),
  19718. name: "Side",
  19719. image: {
  19720. source: "./media/characters/mort/side.svg",
  19721. extra: 365 / 318,
  19722. bottom: 0.052
  19723. },
  19724. default: true
  19725. },
  19726. back: {
  19727. height: math.unit(14, "feet"),
  19728. weight: math.unit(12000, "lb"),
  19729. name: "Back",
  19730. image: {
  19731. source: "./media/characters/mort/back.svg",
  19732. extra: 371 / 332,
  19733. bottom: 0.18
  19734. }
  19735. },
  19736. },
  19737. [
  19738. {
  19739. name: "Normal",
  19740. height: math.unit(14, "feet"),
  19741. default: true
  19742. },
  19743. ]
  19744. ))
  19745. characterMakers.push(() => makeCharacter(
  19746. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19747. {
  19748. front: {
  19749. height: math.unit(8, "feet"),
  19750. weight: math.unit(1, "ton"),
  19751. name: "Front",
  19752. image: {
  19753. source: "./media/characters/lycoa/front.svg",
  19754. extra: 1875 / 1789,
  19755. bottom: 0.022
  19756. }
  19757. },
  19758. back: {
  19759. height: math.unit(8, "feet"),
  19760. weight: math.unit(1, "ton"),
  19761. name: "Back",
  19762. image: {
  19763. source: "./media/characters/lycoa/back.svg",
  19764. extra: 1835 / 1781,
  19765. bottom: 0.03
  19766. }
  19767. },
  19768. head: {
  19769. height: math.unit(2.1, "feet"),
  19770. name: "Head",
  19771. image: {
  19772. source: "./media/characters/lycoa/head.svg"
  19773. }
  19774. },
  19775. tailmaw: {
  19776. height: math.unit(1.9, "feet"),
  19777. name: "Tailmaw",
  19778. image: {
  19779. source: "./media/characters/lycoa/tailmaw.svg"
  19780. }
  19781. },
  19782. tentacles: {
  19783. height: math.unit(2.1, "feet"),
  19784. name: "Tentacles",
  19785. image: {
  19786. source: "./media/characters/lycoa/tentacles.svg"
  19787. }
  19788. },
  19789. dick: {
  19790. height: math.unit(1.73, "feet"),
  19791. name: "Dick",
  19792. image: {
  19793. source: "./media/characters/lycoa/dick.svg"
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(8, "feet"),
  19801. default: true
  19802. },
  19803. {
  19804. name: "Macro",
  19805. height: math.unit(30, "feet")
  19806. },
  19807. ]
  19808. ))
  19809. characterMakers.push(() => makeCharacter(
  19810. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19811. {
  19812. front: {
  19813. height: math.unit(4 + 2 / 12, "feet"),
  19814. weight: math.unit(70, "lb"),
  19815. name: "Front",
  19816. image: {
  19817. source: "./media/characters/naldara/front.svg",
  19818. extra: 841 / 720,
  19819. bottom: 0.04
  19820. }
  19821. },
  19822. naga: {
  19823. height: math.unit(23, "feet"),
  19824. weight: math.unit(15000, "kg"),
  19825. name: "Naga",
  19826. image: {
  19827. source: "./media/characters/naldara/naga.svg",
  19828. extra: 3290 / 2959,
  19829. bottom: 124 / 3432
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(4 + 2 / 12, "feet"),
  19837. default: true
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19843. {
  19844. front: {
  19845. height: math.unit(13 + 7 / 12, "feet"),
  19846. weight: math.unit(1500, "lb"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/briar/front.svg",
  19850. extra: 626 / 596,
  19851. bottom: 0.08
  19852. }
  19853. },
  19854. },
  19855. [
  19856. {
  19857. name: "Normal",
  19858. height: math.unit(13 + 7 / 12, "feet"),
  19859. default: true
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19865. {
  19866. side: {
  19867. height: math.unit(10, "feet"),
  19868. weight: math.unit(500, "lb"),
  19869. name: "Side",
  19870. image: {
  19871. source: "./media/characters/vanguard/side.svg",
  19872. extra: 502 / 425,
  19873. bottom: 0.087
  19874. }
  19875. },
  19876. },
  19877. [
  19878. {
  19879. name: "Normal",
  19880. height: math.unit(10, "feet"),
  19881. default: true
  19882. },
  19883. ]
  19884. ))
  19885. characterMakers.push(() => makeCharacter(
  19886. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19887. {
  19888. front: {
  19889. height: math.unit(7.5, "feet"),
  19890. weight: math.unit(2, "lb"),
  19891. name: "Front",
  19892. image: {
  19893. source: "./media/characters/artemis/front.svg",
  19894. extra: 1192 / 1075,
  19895. bottom: 0.07
  19896. }
  19897. },
  19898. frontNsfw: {
  19899. height: math.unit(7.5, "feet"),
  19900. weight: math.unit(2, "lb"),
  19901. name: "Front (NSFW)",
  19902. image: {
  19903. source: "./media/characters/artemis/front-nsfw.svg",
  19904. extra: 1192 / 1075,
  19905. bottom: 0.07
  19906. }
  19907. },
  19908. frontNsfwer: {
  19909. height: math.unit(7.5, "feet"),
  19910. weight: math.unit(2, "lb"),
  19911. name: "Front (NSFW-er)",
  19912. image: {
  19913. source: "./media/characters/artemis/front-nsfwer.svg",
  19914. extra: 1192 / 1075,
  19915. bottom: 0.07
  19916. }
  19917. },
  19918. side: {
  19919. height: math.unit(7.5, "feet"),
  19920. weight: math.unit(2, "lb"),
  19921. name: "Side",
  19922. image: {
  19923. source: "./media/characters/artemis/side.svg",
  19924. extra: 1192 / 1075,
  19925. bottom: 0.07
  19926. }
  19927. },
  19928. sideNsfw: {
  19929. height: math.unit(7.5, "feet"),
  19930. weight: math.unit(2, "lb"),
  19931. name: "Side (NSFW)",
  19932. image: {
  19933. source: "./media/characters/artemis/side-nsfw.svg",
  19934. extra: 1192 / 1075,
  19935. bottom: 0.07
  19936. }
  19937. },
  19938. sideNsfwer: {
  19939. height: math.unit(7.5, "feet"),
  19940. weight: math.unit(2, "lb"),
  19941. name: "Side (NSFW-er)",
  19942. image: {
  19943. source: "./media/characters/artemis/side-nsfwer.svg",
  19944. extra: 1192 / 1075,
  19945. bottom: 0.07
  19946. }
  19947. },
  19948. maw: {
  19949. height: math.unit(1.1, "feet"),
  19950. name: "Maw",
  19951. image: {
  19952. source: "./media/characters/artemis/maw.svg"
  19953. }
  19954. },
  19955. stomach: {
  19956. height: math.unit(0.95, "feet"),
  19957. name: "Stomach",
  19958. image: {
  19959. source: "./media/characters/artemis/stomach.svg"
  19960. }
  19961. },
  19962. dickCanine: {
  19963. height: math.unit(1, "feet"),
  19964. name: "Dick (Canine)",
  19965. image: {
  19966. source: "./media/characters/artemis/dick-canine.svg"
  19967. }
  19968. },
  19969. dickEquine: {
  19970. height: math.unit(0.85, "feet"),
  19971. name: "Dick (Equine)",
  19972. image: {
  19973. source: "./media/characters/artemis/dick-equine.svg"
  19974. }
  19975. },
  19976. dickExotic: {
  19977. height: math.unit(0.85, "feet"),
  19978. name: "Dick (Exotic)",
  19979. image: {
  19980. source: "./media/characters/artemis/dick-exotic.svg"
  19981. }
  19982. },
  19983. },
  19984. [
  19985. {
  19986. name: "Normal",
  19987. height: math.unit(7.5, "feet"),
  19988. default: true
  19989. },
  19990. {
  19991. name: "Enlarged",
  19992. height: math.unit(12, "feet")
  19993. },
  19994. ]
  19995. ))
  19996. characterMakers.push(() => makeCharacter(
  19997. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19998. {
  19999. front: {
  20000. height: math.unit(5 + 3 / 12, "feet"),
  20001. weight: math.unit(160, "lb"),
  20002. name: "Front",
  20003. image: {
  20004. source: "./media/characters/kira/front.svg",
  20005. extra: 906 / 786,
  20006. bottom: 0.01
  20007. }
  20008. },
  20009. back: {
  20010. height: math.unit(5 + 3 / 12, "feet"),
  20011. weight: math.unit(160, "lb"),
  20012. name: "Back",
  20013. image: {
  20014. source: "./media/characters/kira/back.svg",
  20015. extra: 882 / 757,
  20016. bottom: 0.005
  20017. }
  20018. },
  20019. frontDressed: {
  20020. height: math.unit(5 + 3 / 12, "feet"),
  20021. weight: math.unit(160, "lb"),
  20022. name: "Front (Dressed)",
  20023. image: {
  20024. source: "./media/characters/kira/front-dressed.svg",
  20025. extra: 906 / 786,
  20026. bottom: 0.01
  20027. }
  20028. },
  20029. beans: {
  20030. height: math.unit(0.92, "feet"),
  20031. name: "Beans",
  20032. image: {
  20033. source: "./media/characters/kira/beans.svg"
  20034. }
  20035. },
  20036. },
  20037. [
  20038. {
  20039. name: "Normal",
  20040. height: math.unit(5 + 3 / 12, "feet"),
  20041. default: true
  20042. },
  20043. ]
  20044. ))
  20045. characterMakers.push(() => makeCharacter(
  20046. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20047. {
  20048. front: {
  20049. height: math.unit(5 + 4 / 12, "feet"),
  20050. weight: math.unit(145, "lb"),
  20051. name: "Front",
  20052. image: {
  20053. source: "./media/characters/scramble/front.svg",
  20054. extra: 763 / 727,
  20055. bottom: 0.05
  20056. }
  20057. },
  20058. back: {
  20059. height: math.unit(5 + 4 / 12, "feet"),
  20060. weight: math.unit(145, "lb"),
  20061. name: "Back",
  20062. image: {
  20063. source: "./media/characters/scramble/back.svg",
  20064. extra: 826 / 737,
  20065. bottom: 0.002
  20066. }
  20067. },
  20068. },
  20069. [
  20070. {
  20071. name: "Normal",
  20072. height: math.unit(5 + 4 / 12, "feet"),
  20073. default: true
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20079. {
  20080. side: {
  20081. height: math.unit(6 + 2 / 12, "feet"),
  20082. weight: math.unit(190, "lb"),
  20083. name: "Side",
  20084. image: {
  20085. source: "./media/characters/biscuit/side.svg",
  20086. extra: 858 / 791,
  20087. bottom: 0.044
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(6 + 2 / 12, "feet"),
  20095. default: true
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20101. {
  20102. front: {
  20103. height: math.unit(5 + 2 / 12, "feet"),
  20104. weight: math.unit(120, "lb"),
  20105. name: "Front",
  20106. image: {
  20107. source: "./media/characters/poffin/front.svg",
  20108. extra: 786 / 680,
  20109. bottom: 0.005
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(5 + 2 / 12, "feet"),
  20117. default: true
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20123. {
  20124. front: {
  20125. height: math.unit(6 + 3 / 12, "feet"),
  20126. weight: math.unit(519, "lb"),
  20127. name: "Front",
  20128. image: {
  20129. source: "./media/characters/dhari/front.svg",
  20130. extra: 1048 / 946,
  20131. bottom: 0.015
  20132. }
  20133. },
  20134. back: {
  20135. height: math.unit(6 + 3 / 12, "feet"),
  20136. weight: math.unit(519, "lb"),
  20137. name: "Back",
  20138. image: {
  20139. source: "./media/characters/dhari/back.svg",
  20140. extra: 1048 / 931,
  20141. bottom: 0.005
  20142. }
  20143. },
  20144. frontDressed: {
  20145. height: math.unit(6 + 3 / 12, "feet"),
  20146. weight: math.unit(519, "lb"),
  20147. name: "Front (Dressed)",
  20148. image: {
  20149. source: "./media/characters/dhari/front-dressed.svg",
  20150. extra: 1713 / 1546,
  20151. bottom: 0.02
  20152. }
  20153. },
  20154. backDressed: {
  20155. height: math.unit(6 + 3 / 12, "feet"),
  20156. weight: math.unit(519, "lb"),
  20157. name: "Back (Dressed)",
  20158. image: {
  20159. source: "./media/characters/dhari/back-dressed.svg",
  20160. extra: 1699 / 1537,
  20161. bottom: 0.01
  20162. }
  20163. },
  20164. maw: {
  20165. height: math.unit(0.95, "feet"),
  20166. name: "Maw",
  20167. image: {
  20168. source: "./media/characters/dhari/maw.svg"
  20169. }
  20170. },
  20171. wereFront: {
  20172. height: math.unit(12 + 8 / 12, "feet"),
  20173. weight: math.unit(4000, "lb"),
  20174. name: "Front (Were)",
  20175. image: {
  20176. source: "./media/characters/dhari/were-front.svg",
  20177. extra: 1065 / 969,
  20178. bottom: 0.015
  20179. }
  20180. },
  20181. wereBack: {
  20182. height: math.unit(12 + 8 / 12, "feet"),
  20183. weight: math.unit(4000, "lb"),
  20184. name: "Back (Were)",
  20185. image: {
  20186. source: "./media/characters/dhari/were-back.svg",
  20187. extra: 1065 / 969,
  20188. bottom: 0.012
  20189. }
  20190. },
  20191. wereMaw: {
  20192. height: math.unit(0.625, "meters"),
  20193. name: "Maw (Were)",
  20194. image: {
  20195. source: "./media/characters/dhari/were-maw.svg"
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "Normal",
  20202. height: math.unit(6 + 3 / 12, "feet"),
  20203. default: true
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20209. {
  20210. anthro: {
  20211. height: math.unit(5 + 7 / 12, "feet"),
  20212. weight: math.unit(175, "lb"),
  20213. name: "Anthro",
  20214. image: {
  20215. source: "./media/characters/rena-dyne/anthro.svg",
  20216. extra: 1849 / 1785,
  20217. bottom: 0.005
  20218. }
  20219. },
  20220. taur: {
  20221. height: math.unit(15 + 6 / 12, "feet"),
  20222. weight: math.unit(8000, "lb"),
  20223. name: "Taur",
  20224. image: {
  20225. source: "./media/characters/rena-dyne/taur.svg",
  20226. extra: 2315 / 2234,
  20227. bottom: 0.033
  20228. }
  20229. },
  20230. },
  20231. [
  20232. {
  20233. name: "Normal",
  20234. height: math.unit(5 + 7 / 12, "feet"),
  20235. default: true
  20236. },
  20237. ]
  20238. ))
  20239. characterMakers.push(() => makeCharacter(
  20240. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20241. {
  20242. front: {
  20243. height: math.unit(8, "feet"),
  20244. weight: math.unit(600, "lb"),
  20245. name: "Front",
  20246. image: {
  20247. source: "./media/characters/weremeep/front.svg",
  20248. extra: 967 / 862,
  20249. bottom: 0.01
  20250. }
  20251. },
  20252. },
  20253. [
  20254. {
  20255. name: "Normal",
  20256. height: math.unit(8, "feet"),
  20257. default: true
  20258. },
  20259. {
  20260. name: "Lorg",
  20261. height: math.unit(12, "feet")
  20262. },
  20263. {
  20264. name: "Oh Lawd She Comin'",
  20265. height: math.unit(20, "feet")
  20266. },
  20267. ]
  20268. ))
  20269. characterMakers.push(() => makeCharacter(
  20270. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20271. {
  20272. front: {
  20273. height: math.unit(4, "feet"),
  20274. weight: math.unit(90, "lb"),
  20275. name: "Front",
  20276. image: {
  20277. source: "./media/characters/reza/front.svg",
  20278. extra: 1183 / 1111,
  20279. bottom: 0.017
  20280. }
  20281. },
  20282. back: {
  20283. height: math.unit(4, "feet"),
  20284. weight: math.unit(90, "lb"),
  20285. name: "Back",
  20286. image: {
  20287. source: "./media/characters/reza/back.svg",
  20288. extra: 1183 / 1111,
  20289. bottom: 0.01
  20290. }
  20291. },
  20292. drake: {
  20293. height: math.unit(30, "feet"),
  20294. weight: math.unit(246960, "lb"),
  20295. name: "Drake",
  20296. image: {
  20297. source: "./media/characters/reza/drake.svg",
  20298. extra: 2350 / 2024,
  20299. bottom: 60.7 / 2403
  20300. }
  20301. },
  20302. },
  20303. [
  20304. {
  20305. name: "Normal",
  20306. height: math.unit(4, "feet"),
  20307. default: true
  20308. },
  20309. ]
  20310. ))
  20311. characterMakers.push(() => makeCharacter(
  20312. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20313. {
  20314. side: {
  20315. height: math.unit(15, "feet"),
  20316. weight: math.unit(14, "tons"),
  20317. name: "Side",
  20318. image: {
  20319. source: "./media/characters/athea/side.svg",
  20320. extra: 960 / 540,
  20321. bottom: 0.003
  20322. }
  20323. },
  20324. sitting: {
  20325. height: math.unit(6 * 2.85, "feet"),
  20326. weight: math.unit(14, "tons"),
  20327. name: "Sitting",
  20328. image: {
  20329. source: "./media/characters/athea/sitting.svg",
  20330. extra: 621 / 581,
  20331. bottom: 0.075
  20332. }
  20333. },
  20334. maw: {
  20335. height: math.unit(7.59498031496063, "feet"),
  20336. name: "Maw",
  20337. image: {
  20338. source: "./media/characters/athea/maw.svg"
  20339. }
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Lap Cat",
  20345. height: math.unit(2.5, "feet")
  20346. },
  20347. {
  20348. name: "Minimacro",
  20349. height: math.unit(15, "feet"),
  20350. default: true
  20351. },
  20352. {
  20353. name: "Macro",
  20354. height: math.unit(120, "feet")
  20355. },
  20356. {
  20357. name: "Macro+",
  20358. height: math.unit(640, "feet")
  20359. },
  20360. {
  20361. name: "Colossus",
  20362. height: math.unit(2.2, "miles")
  20363. },
  20364. ]
  20365. ))
  20366. characterMakers.push(() => makeCharacter(
  20367. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20368. {
  20369. front: {
  20370. height: math.unit(8 + 8 / 12, "feet"),
  20371. weight: math.unit(130, "kg"),
  20372. name: "Front",
  20373. image: {
  20374. source: "./media/characters/seroko/front.svg",
  20375. extra: 1385 / 1280,
  20376. bottom: 0.025
  20377. }
  20378. },
  20379. back: {
  20380. height: math.unit(8 + 8 / 12, "feet"),
  20381. weight: math.unit(130, "kg"),
  20382. name: "Back",
  20383. image: {
  20384. source: "./media/characters/seroko/back.svg",
  20385. extra: 1369 / 1238,
  20386. bottom: 0.018
  20387. }
  20388. },
  20389. frontDressed: {
  20390. height: math.unit(8 + 8 / 12, "feet"),
  20391. weight: math.unit(130, "kg"),
  20392. name: "Front (Dressed)",
  20393. image: {
  20394. source: "./media/characters/seroko/front-dressed.svg",
  20395. extra: 1366 / 1275,
  20396. bottom: 0.03
  20397. }
  20398. },
  20399. },
  20400. [
  20401. {
  20402. name: "Normal",
  20403. height: math.unit(8 + 8 / 12, "feet"),
  20404. default: true
  20405. },
  20406. ]
  20407. ))
  20408. characterMakers.push(() => makeCharacter(
  20409. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20410. {
  20411. front: {
  20412. height: math.unit(5.5, "feet"),
  20413. weight: math.unit(160, "lb"),
  20414. name: "Front",
  20415. image: {
  20416. source: "./media/characters/quatzi/front.svg",
  20417. extra: 2346 / 2242,
  20418. bottom: 0.015
  20419. }
  20420. },
  20421. },
  20422. [
  20423. {
  20424. name: "Normal",
  20425. height: math.unit(5.5, "feet"),
  20426. default: true
  20427. },
  20428. {
  20429. name: "Big",
  20430. height: math.unit(7.7, "feet")
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20436. {
  20437. front: {
  20438. height: math.unit(5 + 11 / 12, "feet"),
  20439. weight: math.unit(180, "lb"),
  20440. name: "Front",
  20441. image: {
  20442. source: "./media/characters/sen/front.svg",
  20443. extra: 1321 / 1254,
  20444. bottom: 0.015
  20445. }
  20446. },
  20447. side: {
  20448. height: math.unit(5 + 11 / 12, "feet"),
  20449. weight: math.unit(180, "lb"),
  20450. name: "Side",
  20451. image: {
  20452. source: "./media/characters/sen/side.svg",
  20453. extra: 1321 / 1254,
  20454. bottom: 0.007
  20455. }
  20456. },
  20457. back: {
  20458. height: math.unit(5 + 11 / 12, "feet"),
  20459. weight: math.unit(180, "lb"),
  20460. name: "Back",
  20461. image: {
  20462. source: "./media/characters/sen/back.svg",
  20463. extra: 1321 / 1254
  20464. }
  20465. },
  20466. },
  20467. [
  20468. {
  20469. name: "Normal",
  20470. height: math.unit(5 + 11 / 12, "feet"),
  20471. default: true
  20472. },
  20473. ]
  20474. ))
  20475. characterMakers.push(() => makeCharacter(
  20476. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20477. {
  20478. front: {
  20479. height: math.unit(166.6, "cm"),
  20480. weight: math.unit(66.6, "kg"),
  20481. name: "Front",
  20482. image: {
  20483. source: "./media/characters/fruity/front.svg",
  20484. extra: 1510 / 1386,
  20485. bottom: 0.04
  20486. }
  20487. },
  20488. back: {
  20489. height: math.unit(166.6, "cm"),
  20490. weight: math.unit(66.6, "lb"),
  20491. name: "Back",
  20492. image: {
  20493. source: "./media/characters/fruity/back.svg",
  20494. extra: 1563 / 1435,
  20495. bottom: 0.005
  20496. }
  20497. },
  20498. },
  20499. [
  20500. {
  20501. name: "Normal",
  20502. height: math.unit(166.6, "cm"),
  20503. default: true
  20504. },
  20505. {
  20506. name: "Demonic",
  20507. height: math.unit(166.6, "feet")
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20513. {
  20514. side: {
  20515. height: math.unit(10, "feet"),
  20516. weight: math.unit(500, "lb"),
  20517. name: "Side",
  20518. image: {
  20519. source: "./media/characters/zost/side.svg",
  20520. extra: 966 / 880,
  20521. bottom: 0.075
  20522. }
  20523. },
  20524. mawFront: {
  20525. height: math.unit(1.08, "meters"),
  20526. name: "Maw (Front)",
  20527. image: {
  20528. source: "./media/characters/zost/maw-front.svg"
  20529. }
  20530. },
  20531. mawSide: {
  20532. height: math.unit(2.66, "feet"),
  20533. name: "Maw (Side)",
  20534. image: {
  20535. source: "./media/characters/zost/maw-side.svg"
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Normal",
  20542. height: math.unit(10, "feet"),
  20543. default: true
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20549. {
  20550. front: {
  20551. height: math.unit(5 + 4 / 12, "feet"),
  20552. weight: math.unit(120, "lb"),
  20553. name: "Front",
  20554. image: {
  20555. source: "./media/characters/luci/front.svg",
  20556. extra: 1985 / 1884,
  20557. bottom: 0.04
  20558. }
  20559. },
  20560. back: {
  20561. height: math.unit(5 + 4 / 12, "feet"),
  20562. weight: math.unit(120, "lb"),
  20563. name: "Back",
  20564. image: {
  20565. source: "./media/characters/luci/back.svg",
  20566. extra: 1892 / 1791,
  20567. bottom: 0.002
  20568. }
  20569. },
  20570. },
  20571. [
  20572. {
  20573. name: "Normal",
  20574. height: math.unit(5 + 4 / 12, "feet"),
  20575. default: true
  20576. },
  20577. ]
  20578. ))
  20579. characterMakers.push(() => makeCharacter(
  20580. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20581. {
  20582. front: {
  20583. height: math.unit(1500, "feet"),
  20584. weight: math.unit(3.8e6, "tons"),
  20585. name: "Front",
  20586. image: {
  20587. source: "./media/characters/2th/front.svg",
  20588. extra: 3489 / 3350,
  20589. bottom: 0.1
  20590. }
  20591. },
  20592. foot: {
  20593. height: math.unit(461, "feet"),
  20594. name: "Foot",
  20595. image: {
  20596. source: "./media/characters/2th/foot.svg"
  20597. }
  20598. },
  20599. },
  20600. [
  20601. {
  20602. name: "\"Micro\"",
  20603. height: math.unit(15 + 7 / 12, "feet")
  20604. },
  20605. {
  20606. name: "Normal",
  20607. height: math.unit(1500, "feet"),
  20608. default: true
  20609. },
  20610. {
  20611. name: "Macro",
  20612. height: math.unit(5000, "feet")
  20613. },
  20614. {
  20615. name: "Megamacro",
  20616. height: math.unit(15, "miles")
  20617. },
  20618. {
  20619. name: "Gigamacro",
  20620. height: math.unit(4000, "miles")
  20621. },
  20622. {
  20623. name: "Galactic",
  20624. height: math.unit(50, "AU")
  20625. },
  20626. ]
  20627. ))
  20628. characterMakers.push(() => makeCharacter(
  20629. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20630. {
  20631. front: {
  20632. height: math.unit(5 + 6 / 12, "feet"),
  20633. weight: math.unit(220, "lb"),
  20634. name: "Front",
  20635. image: {
  20636. source: "./media/characters/amethyst/front.svg",
  20637. extra: 2078 / 2040,
  20638. bottom: 0.045
  20639. }
  20640. },
  20641. back: {
  20642. height: math.unit(5 + 6 / 12, "feet"),
  20643. weight: math.unit(220, "lb"),
  20644. name: "Back",
  20645. image: {
  20646. source: "./media/characters/amethyst/back.svg",
  20647. extra: 2021 / 1989,
  20648. bottom: 0.02
  20649. }
  20650. },
  20651. },
  20652. [
  20653. {
  20654. name: "Normal",
  20655. height: math.unit(5 + 6 / 12, "feet"),
  20656. default: true
  20657. },
  20658. ]
  20659. ))
  20660. characterMakers.push(() => makeCharacter(
  20661. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20662. {
  20663. front: {
  20664. height: math.unit(4 + 11 / 12, "feet"),
  20665. weight: math.unit(120, "lb"),
  20666. name: "Front",
  20667. image: {
  20668. source: "./media/characters/yumi-akiyama/front.svg",
  20669. extra: 1327 / 1235,
  20670. bottom: 0.02
  20671. }
  20672. },
  20673. back: {
  20674. height: math.unit(4 + 11 / 12, "feet"),
  20675. weight: math.unit(120, "lb"),
  20676. name: "Back",
  20677. image: {
  20678. source: "./media/characters/yumi-akiyama/back.svg",
  20679. extra: 1287 / 1245,
  20680. bottom: 0.002
  20681. }
  20682. },
  20683. },
  20684. [
  20685. {
  20686. name: "Galactic",
  20687. height: math.unit(50, "galaxies"),
  20688. default: true
  20689. },
  20690. {
  20691. name: "Universal",
  20692. height: math.unit(100, "universes")
  20693. },
  20694. ]
  20695. ))
  20696. characterMakers.push(() => makeCharacter(
  20697. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20698. {
  20699. front: {
  20700. height: math.unit(8, "feet"),
  20701. weight: math.unit(500, "lb"),
  20702. name: "Front",
  20703. image: {
  20704. source: "./media/characters/rifter-yrmori/front.svg",
  20705. extra: 1180 / 1125,
  20706. bottom: 0.02
  20707. }
  20708. },
  20709. back: {
  20710. height: math.unit(8, "feet"),
  20711. weight: math.unit(500, "lb"),
  20712. name: "Back",
  20713. image: {
  20714. source: "./media/characters/rifter-yrmori/back.svg",
  20715. extra: 1190 / 1145,
  20716. bottom: 0.001
  20717. }
  20718. },
  20719. wings: {
  20720. height: math.unit(7.75, "feet"),
  20721. weight: math.unit(500, "lb"),
  20722. name: "Wings",
  20723. image: {
  20724. source: "./media/characters/rifter-yrmori/wings.svg",
  20725. extra: 1357 / 1285
  20726. }
  20727. },
  20728. maw: {
  20729. height: math.unit(0.8, "feet"),
  20730. name: "Maw",
  20731. image: {
  20732. source: "./media/characters/rifter-yrmori/maw.svg"
  20733. }
  20734. },
  20735. mawfront: {
  20736. height: math.unit(1.45, "feet"),
  20737. name: "Maw (Front)",
  20738. image: {
  20739. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20740. }
  20741. },
  20742. },
  20743. [
  20744. {
  20745. name: "Normal",
  20746. height: math.unit(8, "feet"),
  20747. default: true
  20748. },
  20749. {
  20750. name: "Macro",
  20751. height: math.unit(42, "meters")
  20752. },
  20753. ]
  20754. ))
  20755. characterMakers.push(() => makeCharacter(
  20756. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20757. {
  20758. were: {
  20759. height: math.unit(25 + 6 / 12, "feet"),
  20760. weight: math.unit(10000, "lb"),
  20761. name: "Were",
  20762. image: {
  20763. source: "./media/characters/tahajin/were.svg",
  20764. extra: 801 / 770,
  20765. bottom: 0.042
  20766. }
  20767. },
  20768. aquatic: {
  20769. height: math.unit(6 + 4 / 12, "feet"),
  20770. weight: math.unit(160, "lb"),
  20771. name: "Aquatic",
  20772. image: {
  20773. source: "./media/characters/tahajin/aquatic.svg",
  20774. extra: 572 / 542,
  20775. bottom: 0.04
  20776. }
  20777. },
  20778. chow: {
  20779. height: math.unit(8 + 11 / 12, "feet"),
  20780. weight: math.unit(450, "lb"),
  20781. name: "Chow",
  20782. image: {
  20783. source: "./media/characters/tahajin/chow.svg",
  20784. extra: 660 / 640,
  20785. bottom: 0.015
  20786. }
  20787. },
  20788. demiNaga: {
  20789. height: math.unit(6 + 8 / 12, "feet"),
  20790. weight: math.unit(300, "lb"),
  20791. name: "Demi Naga",
  20792. image: {
  20793. source: "./media/characters/tahajin/demi-naga.svg",
  20794. extra: 643 / 615,
  20795. bottom: 0.1
  20796. }
  20797. },
  20798. data: {
  20799. height: math.unit(5, "inches"),
  20800. weight: math.unit(0.1, "lb"),
  20801. name: "Data",
  20802. image: {
  20803. source: "./media/characters/tahajin/data.svg"
  20804. }
  20805. },
  20806. fluu: {
  20807. height: math.unit(5 + 7 / 12, "feet"),
  20808. weight: math.unit(140, "lb"),
  20809. name: "Fluu",
  20810. image: {
  20811. source: "./media/characters/tahajin/fluu.svg",
  20812. extra: 628 / 592,
  20813. bottom: 0.02
  20814. }
  20815. },
  20816. starWarrior: {
  20817. height: math.unit(4 + 5 / 12, "feet"),
  20818. weight: math.unit(50, "lb"),
  20819. name: "Star Warrior",
  20820. image: {
  20821. source: "./media/characters/tahajin/star-warrior.svg"
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Normal",
  20828. height: math.unit(25 + 6 / 12, "feet"),
  20829. default: true
  20830. },
  20831. ]
  20832. ))
  20833. characterMakers.push(() => makeCharacter(
  20834. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20835. {
  20836. front: {
  20837. height: math.unit(8, "feet"),
  20838. weight: math.unit(350, "lb"),
  20839. name: "Front",
  20840. image: {
  20841. source: "./media/characters/gabira/front.svg",
  20842. extra: 608 / 580,
  20843. bottom: 0.03
  20844. }
  20845. },
  20846. back: {
  20847. height: math.unit(8, "feet"),
  20848. weight: math.unit(350, "lb"),
  20849. name: "Back",
  20850. image: {
  20851. source: "./media/characters/gabira/back.svg",
  20852. extra: 608 / 580,
  20853. bottom: 0.03
  20854. }
  20855. },
  20856. },
  20857. [
  20858. {
  20859. name: "Normal",
  20860. height: math.unit(8, "feet"),
  20861. default: true
  20862. },
  20863. ]
  20864. ))
  20865. characterMakers.push(() => makeCharacter(
  20866. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20867. {
  20868. front: {
  20869. height: math.unit(5 + 3 / 12, "feet"),
  20870. weight: math.unit(137, "lb"),
  20871. name: "Front",
  20872. image: {
  20873. source: "./media/characters/sasha-katraine/front.svg",
  20874. bottom: 0.045
  20875. }
  20876. },
  20877. },
  20878. [
  20879. {
  20880. name: "Micro",
  20881. height: math.unit(5, "inches")
  20882. },
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(5 + 3 / 12, "feet"),
  20886. default: true
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20892. {
  20893. side: {
  20894. height: math.unit(4, "inches"),
  20895. weight: math.unit(200, "grams"),
  20896. name: "Side",
  20897. image: {
  20898. source: "./media/characters/der/side.svg",
  20899. extra: 719 / 400,
  20900. bottom: 30.6 / 749.9187
  20901. }
  20902. },
  20903. },
  20904. [
  20905. {
  20906. name: "Micro",
  20907. height: math.unit(4, "inches"),
  20908. default: true
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20914. {
  20915. side: {
  20916. height: math.unit(30, "meters"),
  20917. weight: math.unit(700, "tonnes"),
  20918. name: "Side",
  20919. image: {
  20920. source: "./media/characters/fixerdragon/side.svg",
  20921. extra: (1293.0514 - 116.03) / 1106.86,
  20922. bottom: 116.03 / 1293.0514
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Planck",
  20929. height: math.unit(1.6e-35, "meters")
  20930. },
  20931. {
  20932. name: "Micro",
  20933. height: math.unit(0.4, "meters")
  20934. },
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(30, "meters"),
  20938. default: true
  20939. },
  20940. {
  20941. name: "Megamacro",
  20942. height: math.unit(1.2, "megameters")
  20943. },
  20944. {
  20945. name: "Teramacro",
  20946. height: math.unit(130, "terameters")
  20947. },
  20948. {
  20949. name: "Yottamacro",
  20950. height: math.unit(6200, "yottameters")
  20951. },
  20952. ]
  20953. ));
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20956. {
  20957. front: {
  20958. height: math.unit(8, "feet"),
  20959. weight: math.unit(250, "lb"),
  20960. name: "Front",
  20961. image: {
  20962. source: "./media/characters/kite/front.svg",
  20963. extra: 2796 / 2659,
  20964. bottom: 0.002
  20965. }
  20966. },
  20967. },
  20968. [
  20969. {
  20970. name: "Normal",
  20971. height: math.unit(8, "feet"),
  20972. default: true
  20973. },
  20974. {
  20975. name: "Macro",
  20976. height: math.unit(360, "feet")
  20977. },
  20978. {
  20979. name: "Megamacro",
  20980. height: math.unit(1500, "feet")
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(5 + 10 / 12, "feet"),
  20989. weight: math.unit(150, "lb"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/poojawa-vynar/front.svg",
  20993. extra: (1506.1547 - 55) / 1356.6,
  20994. bottom: 55 / 1506.1547
  20995. }
  20996. },
  20997. frontTailless: {
  20998. height: math.unit(5 + 10 / 12, "feet"),
  20999. weight: math.unit(150, "lb"),
  21000. name: "Front (Tailless)",
  21001. image: {
  21002. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21003. extra: (1506.1547 - 55) / 1356.6,
  21004. bottom: 55 / 1506.1547
  21005. }
  21006. },
  21007. },
  21008. [
  21009. {
  21010. name: "Normal",
  21011. height: math.unit(5 + 10 / 12, "feet"),
  21012. default: true
  21013. },
  21014. ]
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21018. {
  21019. front: {
  21020. height: math.unit(293, "meters"),
  21021. weight: math.unit(70400, "tons"),
  21022. name: "Front",
  21023. image: {
  21024. source: "./media/characters/violette/front.svg",
  21025. extra: 1227 / 1180,
  21026. bottom: 0.005
  21027. }
  21028. },
  21029. back: {
  21030. height: math.unit(293, "meters"),
  21031. weight: math.unit(70400, "tons"),
  21032. name: "Back",
  21033. image: {
  21034. source: "./media/characters/violette/back.svg",
  21035. extra: 1227 / 1180,
  21036. bottom: 0.005
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Macro",
  21043. height: math.unit(293, "meters"),
  21044. default: true
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21050. {
  21051. front: {
  21052. height: math.unit(1050, "feet"),
  21053. weight: math.unit(200000, "tons"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/alessandra/front.svg",
  21057. extra: 960 / 912,
  21058. bottom: 0.06
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Macro",
  21065. height: math.unit(1050, "feet")
  21066. },
  21067. {
  21068. name: "Macro+",
  21069. height: math.unit(900, "meters"),
  21070. default: true
  21071. },
  21072. ]
  21073. ))
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21076. {
  21077. front: {
  21078. height: math.unit(5, "feet"),
  21079. weight: math.unit(187, "lb"),
  21080. name: "Front",
  21081. image: {
  21082. source: "./media/characters/person/front.svg",
  21083. extra: 3087 / 2945,
  21084. bottom: 91 / 3181
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Micro",
  21091. height: math.unit(3, "inches")
  21092. },
  21093. {
  21094. name: "Normal",
  21095. height: math.unit(5, "feet"),
  21096. default: true
  21097. },
  21098. {
  21099. name: "Macro",
  21100. height: math.unit(90, "feet")
  21101. },
  21102. {
  21103. name: "Max Size",
  21104. height: math.unit(280, "feet")
  21105. },
  21106. ]
  21107. ))
  21108. characterMakers.push(() => makeCharacter(
  21109. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21110. {
  21111. front: {
  21112. height: math.unit(4.5, "meters"),
  21113. weight: math.unit(3200, "lb"),
  21114. name: "Front",
  21115. image: {
  21116. source: "./media/characters/ty/front.svg",
  21117. extra: 1038 / 960,
  21118. bottom: 31.156 / 1068
  21119. }
  21120. },
  21121. back: {
  21122. height: math.unit(4.5, "meters"),
  21123. weight: math.unit(3200, "lb"),
  21124. name: "Back",
  21125. image: {
  21126. source: "./media/characters/ty/back.svg",
  21127. extra: 1044 / 966,
  21128. bottom: 7.48 / 1049
  21129. }
  21130. },
  21131. },
  21132. [
  21133. {
  21134. name: "Normal",
  21135. height: math.unit(4.5, "meters"),
  21136. default: true
  21137. },
  21138. ]
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21142. {
  21143. front: {
  21144. height: math.unit(5 + 4 / 12, "feet"),
  21145. weight: math.unit(115, "lb"),
  21146. name: "Front",
  21147. image: {
  21148. source: "./media/characters/rocky/front.svg",
  21149. extra: 1012 / 975,
  21150. bottom: 54 / 1066
  21151. }
  21152. },
  21153. },
  21154. [
  21155. {
  21156. name: "Normal",
  21157. height: math.unit(5 + 4 / 12, "feet"),
  21158. default: true
  21159. },
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21164. {
  21165. upright: {
  21166. height: math.unit(6, "meters"),
  21167. weight: math.unit(4000, "kg"),
  21168. name: "Upright",
  21169. image: {
  21170. source: "./media/characters/ruin/upright.svg",
  21171. extra: 668 / 661,
  21172. bottom: 42 / 799.8396
  21173. }
  21174. },
  21175. },
  21176. [
  21177. {
  21178. name: "Normal",
  21179. height: math.unit(6, "meters"),
  21180. default: true
  21181. },
  21182. ]
  21183. ))
  21184. characterMakers.push(() => makeCharacter(
  21185. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21186. {
  21187. front: {
  21188. height: math.unit(5, "feet"),
  21189. weight: math.unit(106, "lb"),
  21190. name: "Front",
  21191. image: {
  21192. source: "./media/characters/robin/front.svg",
  21193. extra: 862 / 799,
  21194. bottom: 42.4 / 914.8856
  21195. }
  21196. },
  21197. },
  21198. [
  21199. {
  21200. name: "Normal",
  21201. height: math.unit(5, "feet"),
  21202. default: true
  21203. },
  21204. ]
  21205. ))
  21206. characterMakers.push(() => makeCharacter(
  21207. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21208. {
  21209. side: {
  21210. height: math.unit(3, "feet"),
  21211. weight: math.unit(225, "lb"),
  21212. name: "Side",
  21213. image: {
  21214. source: "./media/characters/saian/side.svg",
  21215. extra: 566 / 356,
  21216. bottom: 79.7 / 643
  21217. }
  21218. },
  21219. maw: {
  21220. height: math.unit(2.85, "feet"),
  21221. name: "Maw",
  21222. image: {
  21223. source: "./media/characters/saian/maw.svg"
  21224. }
  21225. },
  21226. },
  21227. [
  21228. {
  21229. name: "Normal",
  21230. height: math.unit(3, "feet"),
  21231. default: true
  21232. },
  21233. ]
  21234. ))
  21235. characterMakers.push(() => makeCharacter(
  21236. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21237. {
  21238. side: {
  21239. height: math.unit(8, "feet"),
  21240. weight: math.unit(300, "lb"),
  21241. name: "Side",
  21242. image: {
  21243. source: "./media/characters/equus-silvermane/side.svg",
  21244. extra: 2176 / 2050,
  21245. bottom: 65.7 / 2245
  21246. }
  21247. },
  21248. front: {
  21249. height: math.unit(8, "feet"),
  21250. weight: math.unit(300, "lb"),
  21251. name: "Front",
  21252. image: {
  21253. source: "./media/characters/equus-silvermane/front.svg",
  21254. extra: 4633 / 4400,
  21255. bottom: 71.3 / 4706.915
  21256. }
  21257. },
  21258. sideStepping: {
  21259. height: math.unit(8, "feet"),
  21260. weight: math.unit(300, "lb"),
  21261. name: "Side (Stepping)",
  21262. image: {
  21263. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21264. extra: 1968 / 1860,
  21265. bottom: 16.4 / 1989
  21266. }
  21267. },
  21268. },
  21269. [
  21270. {
  21271. name: "Normal",
  21272. height: math.unit(8, "feet")
  21273. },
  21274. {
  21275. name: "Minimacro",
  21276. height: math.unit(75, "feet"),
  21277. default: true
  21278. },
  21279. {
  21280. name: "Macro",
  21281. height: math.unit(150, "feet")
  21282. },
  21283. {
  21284. name: "Macro+",
  21285. height: math.unit(1000, "feet")
  21286. },
  21287. {
  21288. name: "Megamacro",
  21289. height: math.unit(1, "mile")
  21290. },
  21291. ]
  21292. ))
  21293. characterMakers.push(() => makeCharacter(
  21294. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21295. {
  21296. side: {
  21297. height: math.unit(20, "feet"),
  21298. weight: math.unit(30000, "kg"),
  21299. name: "Side",
  21300. image: {
  21301. source: "./media/characters/windar/side.svg",
  21302. extra: 1491 / 1248,
  21303. bottom: 82.56 / 1568
  21304. }
  21305. },
  21306. },
  21307. [
  21308. {
  21309. name: "Normal",
  21310. height: math.unit(20, "feet"),
  21311. default: true
  21312. },
  21313. ]
  21314. ))
  21315. characterMakers.push(() => makeCharacter(
  21316. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21317. {
  21318. side: {
  21319. height: math.unit(15.66, "feet"),
  21320. weight: math.unit(150, "lb"),
  21321. name: "Side",
  21322. image: {
  21323. source: "./media/characters/melody/side.svg",
  21324. extra: 1097 / 944,
  21325. bottom: 11.8 / 1109
  21326. }
  21327. },
  21328. sideOutfit: {
  21329. height: math.unit(15.66, "feet"),
  21330. weight: math.unit(150, "lb"),
  21331. name: "Side (Outfit)",
  21332. image: {
  21333. source: "./media/characters/melody/side-outfit.svg",
  21334. extra: 1097 / 944,
  21335. bottom: 11.8 / 1109
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Normal",
  21342. height: math.unit(15.66, "feet"),
  21343. default: true
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21349. {
  21350. front: {
  21351. height: math.unit(8, "feet"),
  21352. weight: math.unit(325, "lb"),
  21353. name: "Front",
  21354. image: {
  21355. source: "./media/characters/windera/front.svg",
  21356. extra: 3180 / 2845,
  21357. bottom: 178 / 3365
  21358. }
  21359. },
  21360. },
  21361. [
  21362. {
  21363. name: "Normal",
  21364. height: math.unit(8, "feet"),
  21365. default: true
  21366. },
  21367. ]
  21368. ))
  21369. characterMakers.push(() => makeCharacter(
  21370. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21371. {
  21372. front: {
  21373. height: math.unit(28.75, "feet"),
  21374. weight: math.unit(2000, "kg"),
  21375. name: "Front",
  21376. image: {
  21377. source: "./media/characters/sonear/front.svg",
  21378. extra: 1041.1 / 964.9,
  21379. bottom: 53.7 / 1096.6
  21380. }
  21381. },
  21382. },
  21383. [
  21384. {
  21385. name: "Normal",
  21386. height: math.unit(28.75, "feet"),
  21387. default: true
  21388. },
  21389. ]
  21390. ))
  21391. characterMakers.push(() => makeCharacter(
  21392. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21393. {
  21394. side: {
  21395. height: math.unit(25.5, "feet"),
  21396. weight: math.unit(23000, "kg"),
  21397. name: "Side",
  21398. image: {
  21399. source: "./media/characters/kanara/side.svg"
  21400. }
  21401. },
  21402. },
  21403. [
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(25.5, "feet"),
  21407. default: true
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21413. {
  21414. side: {
  21415. height: math.unit(10, "feet"),
  21416. weight: math.unit(1000, "kg"),
  21417. name: "Side",
  21418. image: {
  21419. source: "./media/characters/ereus/side.svg",
  21420. extra: 1157 / 959,
  21421. bottom: 153 / 1312.5
  21422. }
  21423. },
  21424. },
  21425. [
  21426. {
  21427. name: "Normal",
  21428. height: math.unit(10, "feet"),
  21429. default: true
  21430. },
  21431. ]
  21432. ))
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21435. {
  21436. side: {
  21437. height: math.unit(4.5, "feet"),
  21438. weight: math.unit(500, "lb"),
  21439. name: "Side",
  21440. image: {
  21441. source: "./media/characters/e-ter/side.svg",
  21442. extra: 1550 / 1248,
  21443. bottom: 146 / 1694
  21444. }
  21445. },
  21446. },
  21447. [
  21448. {
  21449. name: "Normal",
  21450. height: math.unit(4.5, "feet"),
  21451. default: true
  21452. },
  21453. ]
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21457. {
  21458. side: {
  21459. height: math.unit(9.7, "feet"),
  21460. weight: math.unit(4000, "kg"),
  21461. name: "Side",
  21462. image: {
  21463. source: "./media/characters/yamie/side.svg"
  21464. }
  21465. },
  21466. },
  21467. [
  21468. {
  21469. name: "Normal",
  21470. height: math.unit(9.7, "feet"),
  21471. default: true
  21472. },
  21473. ]
  21474. ))
  21475. characterMakers.push(() => makeCharacter(
  21476. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21477. {
  21478. front: {
  21479. height: math.unit(50, "feet"),
  21480. weight: math.unit(50000, "kg"),
  21481. name: "Front",
  21482. image: {
  21483. source: "./media/characters/anders/front.svg",
  21484. extra: 570 / 539,
  21485. bottom: 14.7 / 586.7
  21486. }
  21487. },
  21488. },
  21489. [
  21490. {
  21491. name: "Large",
  21492. height: math.unit(50, "feet")
  21493. },
  21494. {
  21495. name: "Macro",
  21496. height: math.unit(2000, "feet"),
  21497. default: true
  21498. },
  21499. {
  21500. name: "Megamacro",
  21501. height: math.unit(12, "miles")
  21502. },
  21503. ]
  21504. ))
  21505. characterMakers.push(() => makeCharacter(
  21506. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21507. {
  21508. front: {
  21509. height: math.unit(7 + 2 / 12, "feet"),
  21510. weight: math.unit(300, "lb"),
  21511. name: "Front",
  21512. image: {
  21513. source: "./media/characters/reban/front.svg",
  21514. extra: 516 / 487,
  21515. bottom: 42.82 / 558.356
  21516. }
  21517. },
  21518. dick: {
  21519. height: math.unit(7 / 5, "feet"),
  21520. name: "Dick",
  21521. image: {
  21522. source: "./media/characters/reban/dick.svg"
  21523. }
  21524. },
  21525. },
  21526. [
  21527. {
  21528. name: "Natural Height",
  21529. height: math.unit(7 + 2 / 12, "feet")
  21530. },
  21531. {
  21532. name: "Macro",
  21533. height: math.unit(500, "feet"),
  21534. default: true
  21535. },
  21536. {
  21537. name: "Canon Height",
  21538. height: math.unit(50, "AU")
  21539. },
  21540. ]
  21541. ))
  21542. characterMakers.push(() => makeCharacter(
  21543. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21544. {
  21545. front: {
  21546. height: math.unit(6, "feet"),
  21547. weight: math.unit(150, "lb"),
  21548. name: "Front",
  21549. image: {
  21550. source: "./media/characters/terrance-keayes/front.svg",
  21551. extra: 1.005,
  21552. bottom: 151 / 1615
  21553. }
  21554. },
  21555. side: {
  21556. height: math.unit(6, "feet"),
  21557. weight: math.unit(150, "lb"),
  21558. name: "Side",
  21559. image: {
  21560. source: "./media/characters/terrance-keayes/side.svg",
  21561. extra: 1.005,
  21562. bottom: 129.4 / 1544
  21563. }
  21564. },
  21565. back: {
  21566. height: math.unit(6, "feet"),
  21567. weight: math.unit(150, "lb"),
  21568. name: "Back",
  21569. image: {
  21570. source: "./media/characters/terrance-keayes/back.svg",
  21571. extra: 1.005,
  21572. bottom: 58.4 / 1557.3
  21573. }
  21574. },
  21575. dick: {
  21576. height: math.unit(6 * 0.208, "feet"),
  21577. name: "Dick",
  21578. image: {
  21579. source: "./media/characters/terrance-keayes/dick.svg"
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Canon Height",
  21586. height: math.unit(35, "miles"),
  21587. default: true
  21588. },
  21589. ]
  21590. ))
  21591. characterMakers.push(() => makeCharacter(
  21592. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21593. {
  21594. front: {
  21595. height: math.unit(6, "feet"),
  21596. weight: math.unit(150, "lb"),
  21597. name: "Front",
  21598. image: {
  21599. source: "./media/characters/ofelia/front.svg",
  21600. extra: 546 / 541,
  21601. bottom: 39 / 583
  21602. }
  21603. },
  21604. back: {
  21605. height: math.unit(6, "feet"),
  21606. weight: math.unit(150, "lb"),
  21607. name: "Back",
  21608. image: {
  21609. source: "./media/characters/ofelia/back.svg",
  21610. extra: 564 / 559.5,
  21611. bottom: 8.69 / 573.02
  21612. }
  21613. },
  21614. maw: {
  21615. height: math.unit(1, "feet"),
  21616. name: "Maw",
  21617. image: {
  21618. source: "./media/characters/ofelia/maw.svg"
  21619. }
  21620. },
  21621. foot: {
  21622. height: math.unit(1.949, "feet"),
  21623. name: "Foot",
  21624. image: {
  21625. source: "./media/characters/ofelia/foot.svg"
  21626. }
  21627. },
  21628. },
  21629. [
  21630. {
  21631. name: "Canon Height",
  21632. height: math.unit(2000, "miles"),
  21633. default: true
  21634. },
  21635. ]
  21636. ))
  21637. characterMakers.push(() => makeCharacter(
  21638. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21639. {
  21640. front: {
  21641. height: math.unit(6, "feet"),
  21642. weight: math.unit(150, "lb"),
  21643. name: "Front",
  21644. image: {
  21645. source: "./media/characters/samuel/front.svg",
  21646. extra: 265 / 258,
  21647. bottom: 2 / 266.1566
  21648. }
  21649. },
  21650. },
  21651. [
  21652. {
  21653. name: "Macro",
  21654. height: math.unit(100, "feet"),
  21655. default: true
  21656. },
  21657. {
  21658. name: "Full Size",
  21659. height: math.unit(1000, "miles")
  21660. },
  21661. ]
  21662. ))
  21663. characterMakers.push(() => makeCharacter(
  21664. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21665. {
  21666. front: {
  21667. height: math.unit(6, "feet"),
  21668. weight: math.unit(300, "lb"),
  21669. name: "Front",
  21670. image: {
  21671. source: "./media/characters/beishir-kiel/front.svg",
  21672. extra: 569 / 547,
  21673. bottom: 41.9 / 609
  21674. }
  21675. },
  21676. maw: {
  21677. height: math.unit(6 * 0.202, "feet"),
  21678. name: "Maw",
  21679. image: {
  21680. source: "./media/characters/beishir-kiel/maw.svg"
  21681. }
  21682. },
  21683. },
  21684. [
  21685. {
  21686. name: "Macro",
  21687. height: math.unit(300, "feet"),
  21688. default: true
  21689. },
  21690. ]
  21691. ))
  21692. characterMakers.push(() => makeCharacter(
  21693. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21694. {
  21695. front: {
  21696. height: math.unit(5 + 8 / 12, "feet"),
  21697. weight: math.unit(120, "lb"),
  21698. name: "Front",
  21699. image: {
  21700. source: "./media/characters/logan-grey/front.svg",
  21701. extra: 2539 / 2393,
  21702. bottom: 97.6 / 2636.37
  21703. }
  21704. },
  21705. frontAlt: {
  21706. height: math.unit(5 + 8 / 12, "feet"),
  21707. weight: math.unit(120, "lb"),
  21708. name: "Front (Alt)",
  21709. image: {
  21710. source: "./media/characters/logan-grey/front-alt.svg",
  21711. extra: 958 / 893,
  21712. bottom: 15 / 970.768
  21713. }
  21714. },
  21715. back: {
  21716. height: math.unit(5 + 8 / 12, "feet"),
  21717. weight: math.unit(120, "lb"),
  21718. name: "Back",
  21719. image: {
  21720. source: "./media/characters/logan-grey/back.svg",
  21721. extra: 958 / 893,
  21722. bottom: 2.1881 / 970.9788
  21723. }
  21724. },
  21725. dick: {
  21726. height: math.unit(1.437, "feet"),
  21727. name: "Dick",
  21728. image: {
  21729. source: "./media/characters/logan-grey/dick.svg"
  21730. }
  21731. },
  21732. },
  21733. [
  21734. {
  21735. name: "Normal",
  21736. height: math.unit(5 + 8 / 12, "feet")
  21737. },
  21738. {
  21739. name: "The 500 Foot Femboy",
  21740. height: math.unit(500, "feet"),
  21741. default: true
  21742. },
  21743. {
  21744. name: "Megmacro",
  21745. height: math.unit(20, "miles")
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21751. {
  21752. front: {
  21753. height: math.unit(8 + 2 / 12, "feet"),
  21754. weight: math.unit(275, "lb"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/draganta/front.svg",
  21758. extra: 1177 / 1135,
  21759. bottom: 33.46 / 1212.1
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Normal",
  21766. height: math.unit(8 + 6 / 12, "feet"),
  21767. default: true
  21768. },
  21769. {
  21770. name: "Macro",
  21771. height: math.unit(150, "feet")
  21772. },
  21773. {
  21774. name: "Megamacro",
  21775. height: math.unit(1000, "miles")
  21776. },
  21777. ]
  21778. ))
  21779. characterMakers.push(() => makeCharacter(
  21780. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21781. {
  21782. front: {
  21783. height: math.unit(1.72, "m"),
  21784. weight: math.unit(80, "lb"),
  21785. name: "Front",
  21786. image: {
  21787. source: "./media/characters/voski/front.svg",
  21788. extra: 2076.22 / 2022.4,
  21789. bottom: 102.7 / 2177.3866
  21790. }
  21791. },
  21792. frontNsfw: {
  21793. height: math.unit(1.72, "m"),
  21794. weight: math.unit(80, "lb"),
  21795. name: "Front (NSFW)",
  21796. image: {
  21797. source: "./media/characters/voski/front-nsfw.svg",
  21798. extra: 2076.22 / 2022.4,
  21799. bottom: 102.7 / 2177.3866
  21800. }
  21801. },
  21802. back: {
  21803. height: math.unit(1.72, "m"),
  21804. weight: math.unit(80, "lb"),
  21805. name: "Back",
  21806. image: {
  21807. source: "./media/characters/voski/back.svg",
  21808. extra: 2104 / 2051,
  21809. bottom: 10.45 / 2113.63
  21810. }
  21811. },
  21812. },
  21813. [
  21814. {
  21815. name: "Normal",
  21816. height: math.unit(1.72, "m")
  21817. },
  21818. {
  21819. name: "Macro",
  21820. height: math.unit(55, "m"),
  21821. default: true
  21822. },
  21823. {
  21824. name: "Macro+",
  21825. height: math.unit(300, "m")
  21826. },
  21827. {
  21828. name: "Macro++",
  21829. height: math.unit(700, "m")
  21830. },
  21831. {
  21832. name: "Macro+++",
  21833. height: math.unit(4500, "m")
  21834. },
  21835. {
  21836. name: "Macro++++",
  21837. height: math.unit(45, "km")
  21838. },
  21839. {
  21840. name: "Macro+++++",
  21841. height: math.unit(1220, "km")
  21842. },
  21843. ]
  21844. ))
  21845. characterMakers.push(() => makeCharacter(
  21846. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21847. {
  21848. front: {
  21849. height: math.unit(2.3, "m"),
  21850. weight: math.unit(304, "kg"),
  21851. name: "Front",
  21852. image: {
  21853. source: "./media/characters/icowom-lee/front.svg",
  21854. extra: 985 / 955,
  21855. bottom: 25.4 / 1012
  21856. }
  21857. },
  21858. fronttentacles: {
  21859. height: math.unit(2.3, "m"),
  21860. weight: math.unit(304, "kg"),
  21861. name: "Front-tentacles",
  21862. image: {
  21863. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21864. extra: 985 / 955,
  21865. bottom: 25.4 / 1012
  21866. }
  21867. },
  21868. back: {
  21869. height: math.unit(2.3, "m"),
  21870. weight: math.unit(304, "kg"),
  21871. name: "Back",
  21872. image: {
  21873. source: "./media/characters/icowom-lee/back.svg",
  21874. extra: 975 / 954,
  21875. bottom: 9.5 / 985
  21876. }
  21877. },
  21878. backtentacles: {
  21879. height: math.unit(2.3, "m"),
  21880. weight: math.unit(304, "kg"),
  21881. name: "Back-tentacles",
  21882. image: {
  21883. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21884. extra: 975 / 954,
  21885. bottom: 9.5 / 985
  21886. }
  21887. },
  21888. frontDressed: {
  21889. height: math.unit(2.3, "m"),
  21890. weight: math.unit(304, "kg"),
  21891. name: "Front (Dressed)",
  21892. image: {
  21893. source: "./media/characters/icowom-lee/front-dressed.svg",
  21894. extra: 3076 / 2933,
  21895. bottom: 51.4 / 3125.1889
  21896. }
  21897. },
  21898. rump: {
  21899. height: math.unit(0.776, "meters"),
  21900. name: "Rump",
  21901. image: {
  21902. source: "./media/characters/icowom-lee/rump.svg"
  21903. }
  21904. },
  21905. genitals: {
  21906. height: math.unit(0.78, "meters"),
  21907. name: "Genitals",
  21908. image: {
  21909. source: "./media/characters/icowom-lee/genitals.svg"
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(2.3, "meters"),
  21917. default: true
  21918. },
  21919. {
  21920. name: "Macro",
  21921. height: math.unit(94, "meters"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21928. {
  21929. front: {
  21930. height: math.unit(22, "meters"),
  21931. weight: math.unit(21000, "kg"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/shock-diamond/front.svg",
  21935. extra: 2204 / 2053,
  21936. bottom: 65 / 2239.47
  21937. }
  21938. },
  21939. frontNude: {
  21940. height: math.unit(22, "meters"),
  21941. weight: math.unit(21000, "kg"),
  21942. name: "Front (Nude)",
  21943. image: {
  21944. source: "./media/characters/shock-diamond/front-nude.svg",
  21945. extra: 2514 / 2285,
  21946. bottom: 13 / 2527.56
  21947. }
  21948. },
  21949. },
  21950. [
  21951. {
  21952. name: "Normal",
  21953. height: math.unit(3, "meters")
  21954. },
  21955. {
  21956. name: "Macro",
  21957. height: math.unit(22, "meters"),
  21958. default: true
  21959. },
  21960. ]
  21961. ))
  21962. characterMakers.push(() => makeCharacter(
  21963. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21964. {
  21965. front: {
  21966. height: math.unit(5 + 4 / 12, "feet"),
  21967. weight: math.unit(120, "lb"),
  21968. name: "Front",
  21969. image: {
  21970. source: "./media/characters/rory/front.svg",
  21971. extra: 589 / 556,
  21972. bottom: 45.7 / 635.76
  21973. }
  21974. },
  21975. frontNude: {
  21976. height: math.unit(5 + 4 / 12, "feet"),
  21977. weight: math.unit(120, "lb"),
  21978. name: "Front (Nude)",
  21979. image: {
  21980. source: "./media/characters/rory/front-nude.svg",
  21981. extra: 589 / 556,
  21982. bottom: 45.7 / 635.76
  21983. }
  21984. },
  21985. side: {
  21986. height: math.unit(5 + 4 / 12, "feet"),
  21987. weight: math.unit(120, "lb"),
  21988. name: "Side",
  21989. image: {
  21990. source: "./media/characters/rory/side.svg",
  21991. extra: 597 / 564,
  21992. bottom: 55 / 653
  21993. }
  21994. },
  21995. back: {
  21996. height: math.unit(5 + 4 / 12, "feet"),
  21997. weight: math.unit(120, "lb"),
  21998. name: "Back",
  21999. image: {
  22000. source: "./media/characters/rory/back.svg",
  22001. extra: 620 / 585,
  22002. bottom: 8.86 / 630.43
  22003. }
  22004. },
  22005. dick: {
  22006. height: math.unit(0.86, "feet"),
  22007. name: "Dick",
  22008. image: {
  22009. source: "./media/characters/rory/dick.svg"
  22010. }
  22011. },
  22012. },
  22013. [
  22014. {
  22015. name: "Normal",
  22016. height: math.unit(5 + 4 / 12, "feet"),
  22017. default: true
  22018. },
  22019. {
  22020. name: "Macro",
  22021. height: math.unit(100, "feet")
  22022. },
  22023. {
  22024. name: "Macro+",
  22025. height: math.unit(140, "feet")
  22026. },
  22027. {
  22028. name: "Macro++",
  22029. height: math.unit(300, "feet")
  22030. },
  22031. ]
  22032. ))
  22033. characterMakers.push(() => makeCharacter(
  22034. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22035. {
  22036. front: {
  22037. height: math.unit(5 + 9 / 12, "feet"),
  22038. weight: math.unit(190, "lb"),
  22039. name: "Front",
  22040. image: {
  22041. source: "./media/characters/sprisk/front.svg",
  22042. extra: 1225 / 1180,
  22043. bottom: 42.7 / 1266.4
  22044. }
  22045. },
  22046. frontNsfw: {
  22047. height: math.unit(5 + 9 / 12, "feet"),
  22048. weight: math.unit(190, "lb"),
  22049. name: "Front (NSFW)",
  22050. image: {
  22051. source: "./media/characters/sprisk/front-nsfw.svg",
  22052. extra: 1225 / 1180,
  22053. bottom: 42.7 / 1266.4
  22054. }
  22055. },
  22056. back: {
  22057. height: math.unit(5 + 9 / 12, "feet"),
  22058. weight: math.unit(190, "lb"),
  22059. name: "Back",
  22060. image: {
  22061. source: "./media/characters/sprisk/back.svg",
  22062. extra: 1247 / 1200,
  22063. bottom: 5.6 / 1253.04
  22064. }
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "Tiny",
  22070. height: math.unit(2, "inches")
  22071. },
  22072. {
  22073. name: "Normal",
  22074. height: math.unit(5 + 9 / 12, "feet"),
  22075. default: true
  22076. },
  22077. {
  22078. name: "Mini Macro",
  22079. height: math.unit(18, "feet")
  22080. },
  22081. {
  22082. name: "Macro",
  22083. height: math.unit(100, "feet")
  22084. },
  22085. {
  22086. name: "MACRO",
  22087. height: math.unit(50, "miles")
  22088. },
  22089. {
  22090. name: "M A C R O",
  22091. height: math.unit(300, "miles")
  22092. },
  22093. ]
  22094. ))
  22095. characterMakers.push(() => makeCharacter(
  22096. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22097. {
  22098. side: {
  22099. height: math.unit(15.6, "meters"),
  22100. weight: math.unit(700000, "kg"),
  22101. name: "Side",
  22102. image: {
  22103. source: "./media/characters/bunsen/side.svg",
  22104. extra: 1644 / 358
  22105. }
  22106. },
  22107. foot: {
  22108. height: math.unit(1.611 * 1644 / 358, "meter"),
  22109. name: "Foot",
  22110. image: {
  22111. source: "./media/characters/bunsen/foot.svg"
  22112. }
  22113. },
  22114. },
  22115. [
  22116. {
  22117. name: "Small",
  22118. height: math.unit(10, "feet")
  22119. },
  22120. {
  22121. name: "Normal",
  22122. height: math.unit(15.6, "meters"),
  22123. default: true
  22124. },
  22125. ]
  22126. ))
  22127. characterMakers.push(() => makeCharacter(
  22128. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22129. {
  22130. front: {
  22131. height: math.unit(4 + 11 / 12, "feet"),
  22132. weight: math.unit(140, "lb"),
  22133. name: "Front",
  22134. image: {
  22135. source: "./media/characters/sesh/front.svg",
  22136. extra: 3420 / 3231,
  22137. bottom: 72 / 3949.5
  22138. }
  22139. },
  22140. },
  22141. [
  22142. {
  22143. name: "Normal",
  22144. height: math.unit(4 + 11 / 12, "feet")
  22145. },
  22146. {
  22147. name: "Grown",
  22148. height: math.unit(15, "feet"),
  22149. default: true
  22150. },
  22151. {
  22152. name: "Macro",
  22153. height: math.unit(1500, "feet")
  22154. },
  22155. {
  22156. name: "Megamacro",
  22157. height: math.unit(30, "miles")
  22158. },
  22159. {
  22160. name: "Continental",
  22161. height: math.unit(3000, "miles")
  22162. },
  22163. {
  22164. name: "Gravity Mass",
  22165. height: math.unit(300000, "miles")
  22166. },
  22167. {
  22168. name: "Planet Buster",
  22169. height: math.unit(30000000, "miles")
  22170. },
  22171. {
  22172. name: "Big",
  22173. height: math.unit(3000000000, "miles")
  22174. },
  22175. ]
  22176. ))
  22177. characterMakers.push(() => makeCharacter(
  22178. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22179. {
  22180. front: {
  22181. height: math.unit(9, "feet"),
  22182. weight: math.unit(350, "lb"),
  22183. name: "Front",
  22184. image: {
  22185. source: "./media/characters/pepper/front.svg",
  22186. extra: 1448 / 1312,
  22187. bottom: 9.4 / 1457.88
  22188. }
  22189. },
  22190. back: {
  22191. height: math.unit(9, "feet"),
  22192. weight: math.unit(350, "lb"),
  22193. name: "Back",
  22194. image: {
  22195. source: "./media/characters/pepper/back.svg",
  22196. extra: 1423 / 1300,
  22197. bottom: 4.6 / 1429
  22198. }
  22199. },
  22200. maw: {
  22201. height: math.unit(0.932, "feet"),
  22202. name: "Maw",
  22203. image: {
  22204. source: "./media/characters/pepper/maw.svg"
  22205. }
  22206. },
  22207. },
  22208. [
  22209. {
  22210. name: "Normal",
  22211. height: math.unit(9, "feet"),
  22212. default: true
  22213. },
  22214. ]
  22215. ))
  22216. characterMakers.push(() => makeCharacter(
  22217. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22218. {
  22219. front: {
  22220. height: math.unit(6, "feet"),
  22221. weight: math.unit(150, "lb"),
  22222. name: "Front",
  22223. image: {
  22224. source: "./media/characters/maelstrom/front.svg",
  22225. extra: 2100 / 1883,
  22226. bottom: 94 / 2196.7
  22227. }
  22228. },
  22229. },
  22230. [
  22231. {
  22232. name: "Less Kaiju",
  22233. height: math.unit(200, "feet")
  22234. },
  22235. {
  22236. name: "Kaiju",
  22237. height: math.unit(400, "feet"),
  22238. default: true
  22239. },
  22240. {
  22241. name: "Kaiju-er",
  22242. height: math.unit(600, "feet")
  22243. },
  22244. ]
  22245. ))
  22246. characterMakers.push(() => makeCharacter(
  22247. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22248. {
  22249. front: {
  22250. height: math.unit(6 + 5 / 12, "feet"),
  22251. weight: math.unit(180, "lb"),
  22252. name: "Front",
  22253. image: {
  22254. source: "./media/characters/lexir/front.svg",
  22255. extra: 180 / 172,
  22256. bottom: 12 / 192
  22257. }
  22258. },
  22259. back: {
  22260. height: math.unit(6 + 5 / 12, "feet"),
  22261. weight: math.unit(180, "lb"),
  22262. name: "Back",
  22263. image: {
  22264. source: "./media/characters/lexir/back.svg",
  22265. extra: 183.84 / 175.5,
  22266. bottom: 3.1 / 187
  22267. }
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Very Smal",
  22273. height: math.unit(1, "nm")
  22274. },
  22275. {
  22276. name: "Normal",
  22277. height: math.unit(6 + 5 / 12, "feet"),
  22278. default: true
  22279. },
  22280. {
  22281. name: "Macro",
  22282. height: math.unit(1, "mile")
  22283. },
  22284. {
  22285. name: "Megamacro",
  22286. height: math.unit(50, "miles")
  22287. },
  22288. ]
  22289. ))
  22290. characterMakers.push(() => makeCharacter(
  22291. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22292. {
  22293. front: {
  22294. height: math.unit(1.5, "meters"),
  22295. weight: math.unit(100, "lb"),
  22296. name: "Front",
  22297. image: {
  22298. source: "./media/characters/maksio/front.svg",
  22299. extra: 1549 / 1531,
  22300. bottom: 123.7 / 1674.5429
  22301. }
  22302. },
  22303. back: {
  22304. height: math.unit(1.5, "meters"),
  22305. weight: math.unit(100, "lb"),
  22306. name: "Back",
  22307. image: {
  22308. source: "./media/characters/maksio/back.svg",
  22309. extra: 1541 / 1509,
  22310. bottom: 97 / 1639
  22311. }
  22312. },
  22313. hand: {
  22314. height: math.unit(0.621, "feet"),
  22315. name: "Hand",
  22316. image: {
  22317. source: "./media/characters/maksio/hand.svg"
  22318. }
  22319. },
  22320. foot: {
  22321. height: math.unit(1.611, "feet"),
  22322. name: "Foot",
  22323. image: {
  22324. source: "./media/characters/maksio/foot.svg"
  22325. }
  22326. },
  22327. },
  22328. [
  22329. {
  22330. name: "Shrunken",
  22331. height: math.unit(10, "cm")
  22332. },
  22333. {
  22334. name: "Normal",
  22335. height: math.unit(150, "cm"),
  22336. default: true
  22337. },
  22338. ]
  22339. ))
  22340. characterMakers.push(() => makeCharacter(
  22341. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22342. {
  22343. front: {
  22344. height: math.unit(100, "feet"),
  22345. name: "Front",
  22346. image: {
  22347. source: "./media/characters/erza-bear/front.svg",
  22348. extra: 2449 / 2390,
  22349. bottom: 46 / 2494
  22350. }
  22351. },
  22352. back: {
  22353. height: math.unit(100, "feet"),
  22354. name: "Back",
  22355. image: {
  22356. source: "./media/characters/erza-bear/back.svg",
  22357. extra: 2489 / 2430,
  22358. bottom: 85.4 / 2480
  22359. }
  22360. },
  22361. tail: {
  22362. height: math.unit(42, "feet"),
  22363. name: "Tail",
  22364. image: {
  22365. source: "./media/characters/erza-bear/tail.svg"
  22366. }
  22367. },
  22368. tongue: {
  22369. height: math.unit(8, "feet"),
  22370. name: "Tongue",
  22371. image: {
  22372. source: "./media/characters/erza-bear/tongue.svg"
  22373. }
  22374. },
  22375. dick: {
  22376. height: math.unit(10.5, "feet"),
  22377. name: "Dick",
  22378. image: {
  22379. source: "./media/characters/erza-bear/dick.svg"
  22380. }
  22381. },
  22382. dickVertical: {
  22383. height: math.unit(16.9, "feet"),
  22384. name: "Dick (Vertical)",
  22385. image: {
  22386. source: "./media/characters/erza-bear/dick-vertical.svg"
  22387. }
  22388. },
  22389. },
  22390. [
  22391. {
  22392. name: "Macro",
  22393. height: math.unit(100, "feet"),
  22394. default: true
  22395. },
  22396. ]
  22397. ))
  22398. characterMakers.push(() => makeCharacter(
  22399. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22400. {
  22401. front: {
  22402. height: math.unit(172, "cm"),
  22403. weight: math.unit(73, "kg"),
  22404. name: "Front",
  22405. image: {
  22406. source: "./media/characters/violet-flor/front.svg",
  22407. extra: 1530 / 1442,
  22408. bottom: 61.9 / 1588.8
  22409. }
  22410. },
  22411. back: {
  22412. height: math.unit(180, "cm"),
  22413. weight: math.unit(73, "kg"),
  22414. name: "Back",
  22415. image: {
  22416. source: "./media/characters/violet-flor/back.svg",
  22417. extra: 1692 / 1630,
  22418. bottom: 20 / 1712
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Normal",
  22425. height: math.unit(172, "cm"),
  22426. default: true
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22432. {
  22433. front: {
  22434. height: math.unit(6, "feet"),
  22435. weight: math.unit(220, "lb"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/lynn-rhea/front.svg",
  22439. extra: 310 / 273
  22440. }
  22441. },
  22442. back: {
  22443. height: math.unit(6, "feet"),
  22444. weight: math.unit(220, "lb"),
  22445. name: "Back",
  22446. image: {
  22447. source: "./media/characters/lynn-rhea/back.svg",
  22448. extra: 310 / 273
  22449. }
  22450. },
  22451. dicks: {
  22452. height: math.unit(0.9, "feet"),
  22453. name: "Dicks",
  22454. image: {
  22455. source: "./media/characters/lynn-rhea/dicks.svg"
  22456. }
  22457. },
  22458. slit: {
  22459. height: math.unit(0.4, "feet"),
  22460. name: "Slit",
  22461. image: {
  22462. source: "./media/characters/lynn-rhea/slit.svg"
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Micro",
  22469. height: math.unit(1, "inch")
  22470. },
  22471. {
  22472. name: "Macro",
  22473. height: math.unit(60, "feet"),
  22474. default: true
  22475. },
  22476. {
  22477. name: "Megamacro",
  22478. height: math.unit(2, "miles")
  22479. },
  22480. {
  22481. name: "Gigamacro",
  22482. height: math.unit(3, "earths")
  22483. },
  22484. {
  22485. name: "Galactic",
  22486. height: math.unit(0.8, "galaxies")
  22487. },
  22488. ]
  22489. ))
  22490. characterMakers.push(() => makeCharacter(
  22491. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22492. {
  22493. front: {
  22494. height: math.unit(1600, "feet"),
  22495. weight: math.unit(85758785169, "kg"),
  22496. name: "Front",
  22497. image: {
  22498. source: "./media/characters/valathos/front.svg",
  22499. extra: 1451 / 1339
  22500. }
  22501. },
  22502. },
  22503. [
  22504. {
  22505. name: "Macro",
  22506. height: math.unit(1600, "feet"),
  22507. default: true
  22508. },
  22509. ]
  22510. ))
  22511. characterMakers.push(() => makeCharacter(
  22512. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22513. {
  22514. front: {
  22515. height: math.unit(7 + 5 / 12, "feet"),
  22516. weight: math.unit(300, "lb"),
  22517. name: "Front",
  22518. image: {
  22519. source: "./media/characters/azula/front.svg",
  22520. extra: 3208 / 2880,
  22521. bottom: 80.2 / 3277
  22522. }
  22523. },
  22524. back: {
  22525. height: math.unit(7 + 5 / 12, "feet"),
  22526. weight: math.unit(300, "lb"),
  22527. name: "Back",
  22528. image: {
  22529. source: "./media/characters/azula/back.svg",
  22530. extra: 3169 / 2822,
  22531. bottom: 150.6 / 3321
  22532. }
  22533. },
  22534. },
  22535. [
  22536. {
  22537. name: "Normal",
  22538. height: math.unit(7 + 5 / 12, "feet"),
  22539. default: true
  22540. },
  22541. {
  22542. name: "Big",
  22543. height: math.unit(20, "feet")
  22544. },
  22545. ]
  22546. ))
  22547. characterMakers.push(() => makeCharacter(
  22548. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22549. {
  22550. front: {
  22551. height: math.unit(5 + 1 / 12, "feet"),
  22552. weight: math.unit(110, "lb"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/rupert/front.svg",
  22556. extra: 1549 / 1495,
  22557. bottom: 54.2 / 1604.4
  22558. }
  22559. },
  22560. },
  22561. [
  22562. {
  22563. name: "Normal",
  22564. height: math.unit(5 + 1 / 12, "feet"),
  22565. default: true
  22566. },
  22567. ]
  22568. ))
  22569. characterMakers.push(() => makeCharacter(
  22570. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22571. {
  22572. front: {
  22573. height: math.unit(8 + 4 / 12, "feet"),
  22574. weight: math.unit(350, "lb"),
  22575. name: "Front",
  22576. image: {
  22577. source: "./media/characters/sheera-castellar/front.svg",
  22578. extra: 1957 / 1894,
  22579. bottom: 26.97 / 1975.017
  22580. }
  22581. },
  22582. side: {
  22583. height: math.unit(8 + 4 / 12, "feet"),
  22584. weight: math.unit(350, "lb"),
  22585. name: "Side",
  22586. image: {
  22587. source: "./media/characters/sheera-castellar/side.svg",
  22588. extra: 1957 / 1894
  22589. }
  22590. },
  22591. back: {
  22592. height: math.unit(8 + 4 / 12, "feet"),
  22593. weight: math.unit(350, "lb"),
  22594. name: "Back",
  22595. image: {
  22596. source: "./media/characters/sheera-castellar/back.svg",
  22597. extra: 1957 / 1894
  22598. }
  22599. },
  22600. angled: {
  22601. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22602. weight: math.unit(350, "lb"),
  22603. name: "Angled",
  22604. image: {
  22605. source: "./media/characters/sheera-castellar/angled.svg",
  22606. extra: 1807 / 1707,
  22607. bottom: 68 / 1875
  22608. }
  22609. },
  22610. genitals: {
  22611. height: math.unit(2.2, "feet"),
  22612. name: "Genitals",
  22613. image: {
  22614. source: "./media/characters/sheera-castellar/genitals.svg"
  22615. }
  22616. },
  22617. },
  22618. [
  22619. {
  22620. name: "Normal",
  22621. height: math.unit(8 + 4 / 12, "feet")
  22622. },
  22623. {
  22624. name: "Macro",
  22625. height: math.unit(150, "feet"),
  22626. default: true
  22627. },
  22628. {
  22629. name: "Macro+",
  22630. height: math.unit(800, "feet")
  22631. },
  22632. ]
  22633. ))
  22634. characterMakers.push(() => makeCharacter(
  22635. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22636. {
  22637. front: {
  22638. height: math.unit(6, "feet"),
  22639. weight: math.unit(150, "lb"),
  22640. name: "Front",
  22641. image: {
  22642. source: "./media/characters/jaipur/front.svg",
  22643. extra: 3860 / 3731,
  22644. bottom: 287 / 4140
  22645. }
  22646. },
  22647. back: {
  22648. height: math.unit(6, "feet"),
  22649. weight: math.unit(150, "lb"),
  22650. name: "Back",
  22651. image: {
  22652. source: "./media/characters/jaipur/back.svg",
  22653. extra: 4060 / 3930,
  22654. bottom: 151 / 4200
  22655. }
  22656. },
  22657. },
  22658. [
  22659. {
  22660. name: "Normal",
  22661. height: math.unit(1.85, "meters"),
  22662. default: true
  22663. },
  22664. {
  22665. name: "Macro",
  22666. height: math.unit(150, "meters")
  22667. },
  22668. {
  22669. name: "Macro+",
  22670. height: math.unit(0.5, "miles")
  22671. },
  22672. {
  22673. name: "Macro++",
  22674. height: math.unit(2.5, "miles")
  22675. },
  22676. {
  22677. name: "Macro+++",
  22678. height: math.unit(12, "miles")
  22679. },
  22680. {
  22681. name: "Macro++++",
  22682. height: math.unit(120, "miles")
  22683. },
  22684. {
  22685. name: "Macro+++++",
  22686. height: math.unit(1200, "miles")
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22692. {
  22693. front: {
  22694. height: math.unit(6, "feet"),
  22695. weight: math.unit(150, "lb"),
  22696. name: "Front",
  22697. image: {
  22698. source: "./media/characters/sheila-wolf/front.svg",
  22699. extra: 1931 / 1808,
  22700. bottom: 29.5 / 1960
  22701. }
  22702. },
  22703. dick: {
  22704. height: math.unit(1.464, "feet"),
  22705. name: "Dick",
  22706. image: {
  22707. source: "./media/characters/sheila-wolf/dick.svg"
  22708. }
  22709. },
  22710. muzzle: {
  22711. height: math.unit(0.513, "feet"),
  22712. name: "Muzzle",
  22713. image: {
  22714. source: "./media/characters/sheila-wolf/muzzle.svg"
  22715. }
  22716. },
  22717. },
  22718. [
  22719. {
  22720. name: "Macro",
  22721. height: math.unit(70, "feet"),
  22722. default: true
  22723. },
  22724. ]
  22725. ))
  22726. characterMakers.push(() => makeCharacter(
  22727. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22728. {
  22729. front: {
  22730. height: math.unit(32, "meters"),
  22731. weight: math.unit(300000, "kg"),
  22732. name: "Front",
  22733. image: {
  22734. source: "./media/characters/almor/front.svg",
  22735. extra: 1408 / 1322,
  22736. bottom: 94.6 / 1506.5
  22737. }
  22738. },
  22739. },
  22740. [
  22741. {
  22742. name: "Macro",
  22743. height: math.unit(32, "meters"),
  22744. default: true
  22745. },
  22746. ]
  22747. ))
  22748. characterMakers.push(() => makeCharacter(
  22749. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22750. {
  22751. front: {
  22752. height: math.unit(7, "feet"),
  22753. weight: math.unit(200, "lb"),
  22754. name: "Front",
  22755. image: {
  22756. source: "./media/characters/silver/front.svg",
  22757. extra: 472.1 / 450.5,
  22758. bottom: 26.5 / 499.424
  22759. }
  22760. },
  22761. },
  22762. [
  22763. {
  22764. name: "Normal",
  22765. height: math.unit(7, "feet"),
  22766. default: true
  22767. },
  22768. {
  22769. name: "Macro",
  22770. height: math.unit(800, "feet")
  22771. },
  22772. {
  22773. name: "Megamacro",
  22774. height: math.unit(250, "miles")
  22775. },
  22776. ]
  22777. ))
  22778. characterMakers.push(() => makeCharacter(
  22779. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22780. {
  22781. front: {
  22782. height: math.unit(6, "feet"),
  22783. weight: math.unit(150, "lb"),
  22784. name: "Front",
  22785. image: {
  22786. source: "./media/characters/pliskin/front.svg",
  22787. extra: 1469 / 1359,
  22788. bottom: 70 / 1540
  22789. }
  22790. },
  22791. },
  22792. [
  22793. {
  22794. name: "Micro",
  22795. height: math.unit(3, "inches")
  22796. },
  22797. {
  22798. name: "Normal",
  22799. height: math.unit(5 + 11 / 12, "feet"),
  22800. default: true
  22801. },
  22802. {
  22803. name: "Macro",
  22804. height: math.unit(120, "feet")
  22805. },
  22806. ]
  22807. ))
  22808. characterMakers.push(() => makeCharacter(
  22809. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22810. {
  22811. front: {
  22812. height: math.unit(6, "feet"),
  22813. weight: math.unit(150, "lb"),
  22814. name: "Front",
  22815. image: {
  22816. source: "./media/characters/sammy/front.svg",
  22817. extra: 1193 / 1089,
  22818. bottom: 30.5 / 1226
  22819. }
  22820. },
  22821. },
  22822. [
  22823. {
  22824. name: "Macro",
  22825. height: math.unit(1700, "feet"),
  22826. default: true
  22827. },
  22828. {
  22829. name: "Examacro",
  22830. height: math.unit(2.5e9, "lightyears")
  22831. },
  22832. ]
  22833. ))
  22834. characterMakers.push(() => makeCharacter(
  22835. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22836. {
  22837. front: {
  22838. height: math.unit(21, "meters"),
  22839. weight: math.unit(12, "tonnes"),
  22840. name: "Front",
  22841. image: {
  22842. source: "./media/characters/kuru/front.svg",
  22843. extra: 4301 / 3785,
  22844. bottom: 371.3 / 4691
  22845. }
  22846. },
  22847. },
  22848. [
  22849. {
  22850. name: "Macro",
  22851. height: math.unit(21, "meters"),
  22852. default: true
  22853. },
  22854. ]
  22855. ))
  22856. characterMakers.push(() => makeCharacter(
  22857. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22858. {
  22859. front: {
  22860. height: math.unit(23, "meters"),
  22861. weight: math.unit(12.2, "tonnes"),
  22862. name: "Front",
  22863. image: {
  22864. source: "./media/characters/rakka/front.svg",
  22865. extra: 4670 / 4169,
  22866. bottom: 301 / 4968.7
  22867. }
  22868. },
  22869. },
  22870. [
  22871. {
  22872. name: "Macro",
  22873. height: math.unit(23, "meters"),
  22874. default: true
  22875. },
  22876. ]
  22877. ))
  22878. characterMakers.push(() => makeCharacter(
  22879. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22880. {
  22881. front: {
  22882. height: math.unit(6, "feet"),
  22883. weight: math.unit(150, "lb"),
  22884. name: "Front",
  22885. image: {
  22886. source: "./media/characters/rhys-feline/front.svg",
  22887. extra: 2488 / 2308,
  22888. bottom: 35.67 / 2519.19
  22889. }
  22890. },
  22891. },
  22892. [
  22893. {
  22894. name: "Really Small",
  22895. height: math.unit(1, "nm")
  22896. },
  22897. {
  22898. name: "Micro",
  22899. height: math.unit(4, "inches")
  22900. },
  22901. {
  22902. name: "Normal",
  22903. height: math.unit(4 + 10 / 12, "feet"),
  22904. default: true
  22905. },
  22906. {
  22907. name: "Macro",
  22908. height: math.unit(100, "feet")
  22909. },
  22910. {
  22911. name: "Megamacto",
  22912. height: math.unit(50, "miles")
  22913. },
  22914. ]
  22915. ))
  22916. characterMakers.push(() => makeCharacter(
  22917. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22918. {
  22919. side: {
  22920. height: math.unit(30, "feet"),
  22921. weight: math.unit(35000, "kg"),
  22922. name: "Side",
  22923. image: {
  22924. source: "./media/characters/alydar/side.svg",
  22925. extra: 234 / 222,
  22926. bottom: 6.5 / 241
  22927. }
  22928. },
  22929. front: {
  22930. height: math.unit(30, "feet"),
  22931. weight: math.unit(35000, "kg"),
  22932. name: "Front",
  22933. image: {
  22934. source: "./media/characters/alydar/front.svg",
  22935. extra: 223.37 / 210.2,
  22936. bottom: 22.3 / 246.76
  22937. }
  22938. },
  22939. top: {
  22940. height: math.unit(64.54, "feet"),
  22941. weight: math.unit(35000, "kg"),
  22942. name: "Top",
  22943. image: {
  22944. source: "./media/characters/alydar/top.svg"
  22945. }
  22946. },
  22947. anthro: {
  22948. height: math.unit(30, "feet"),
  22949. weight: math.unit(9000, "kg"),
  22950. name: "Anthro",
  22951. image: {
  22952. source: "./media/characters/alydar/anthro.svg",
  22953. extra: 432 / 421,
  22954. bottom: 7.18 / 440
  22955. }
  22956. },
  22957. maw: {
  22958. height: math.unit(11.693, "feet"),
  22959. name: "Maw",
  22960. image: {
  22961. source: "./media/characters/alydar/maw.svg"
  22962. }
  22963. },
  22964. head: {
  22965. height: math.unit(11.693, "feet"),
  22966. name: "Head",
  22967. image: {
  22968. source: "./media/characters/alydar/head.svg"
  22969. }
  22970. },
  22971. headAlt: {
  22972. height: math.unit(12.861, "feet"),
  22973. name: "Head (Alt)",
  22974. image: {
  22975. source: "./media/characters/alydar/head-alt.svg"
  22976. }
  22977. },
  22978. wing: {
  22979. height: math.unit(20.712, "feet"),
  22980. name: "Wing",
  22981. image: {
  22982. source: "./media/characters/alydar/wing.svg"
  22983. }
  22984. },
  22985. wingFeather: {
  22986. height: math.unit(9.662, "feet"),
  22987. name: "Wing Feather",
  22988. image: {
  22989. source: "./media/characters/alydar/wing-feather.svg"
  22990. }
  22991. },
  22992. countourFeather: {
  22993. height: math.unit(4.154, "feet"),
  22994. name: "Contour Feather",
  22995. image: {
  22996. source: "./media/characters/alydar/contour-feather.svg"
  22997. }
  22998. },
  22999. },
  23000. [
  23001. {
  23002. name: "Diplomatic",
  23003. height: math.unit(13, "feet"),
  23004. default: true
  23005. },
  23006. {
  23007. name: "Small",
  23008. height: math.unit(30, "feet")
  23009. },
  23010. {
  23011. name: "Normal",
  23012. height: math.unit(95, "feet"),
  23013. default: true
  23014. },
  23015. {
  23016. name: "Large",
  23017. height: math.unit(285, "feet")
  23018. },
  23019. {
  23020. name: "Incomprehensible",
  23021. height: math.unit(450, "megameters")
  23022. },
  23023. ]
  23024. ))
  23025. characterMakers.push(() => makeCharacter(
  23026. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23027. {
  23028. side: {
  23029. height: math.unit(11, "feet"),
  23030. weight: math.unit(1750, "kg"),
  23031. name: "Side",
  23032. image: {
  23033. source: "./media/characters/selicia/side.svg",
  23034. extra: 440 / 396,
  23035. bottom: 24.8 / 465.979
  23036. }
  23037. },
  23038. maw: {
  23039. height: math.unit(4.665, "feet"),
  23040. name: "Maw",
  23041. image: {
  23042. source: "./media/characters/selicia/maw.svg"
  23043. }
  23044. },
  23045. },
  23046. [
  23047. {
  23048. name: "Normal",
  23049. height: math.unit(11, "feet"),
  23050. default: true
  23051. },
  23052. ]
  23053. ))
  23054. characterMakers.push(() => makeCharacter(
  23055. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23056. {
  23057. side: {
  23058. height: math.unit(2 + 6 / 12, "feet"),
  23059. weight: math.unit(30, "lb"),
  23060. name: "Side",
  23061. image: {
  23062. source: "./media/characters/layla/side.svg",
  23063. extra: 244 / 188,
  23064. bottom: 18.2 / 262.1
  23065. }
  23066. },
  23067. back: {
  23068. height: math.unit(2 + 6 / 12, "feet"),
  23069. weight: math.unit(30, "lb"),
  23070. name: "Back",
  23071. image: {
  23072. source: "./media/characters/layla/back.svg",
  23073. extra: 308 / 241.5,
  23074. bottom: 8.9 / 316.8
  23075. }
  23076. },
  23077. cumming: {
  23078. height: math.unit(2 + 6 / 12, "feet"),
  23079. weight: math.unit(30, "lb"),
  23080. name: "Cumming",
  23081. image: {
  23082. source: "./media/characters/layla/cumming.svg",
  23083. extra: 342 / 279,
  23084. bottom: 595 / 938
  23085. }
  23086. },
  23087. dickFlaccid: {
  23088. height: math.unit(2.595, "feet"),
  23089. name: "Flaccid Genitals",
  23090. image: {
  23091. source: "./media/characters/layla/dick-flaccid.svg"
  23092. }
  23093. },
  23094. dickErect: {
  23095. height: math.unit(2.359, "feet"),
  23096. name: "Erect Genitals",
  23097. image: {
  23098. source: "./media/characters/layla/dick-erect.svg"
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Micro",
  23105. height: math.unit(1, "inch")
  23106. },
  23107. {
  23108. name: "Small",
  23109. height: math.unit(1, "foot")
  23110. },
  23111. {
  23112. name: "Normal",
  23113. height: math.unit(2 + 6 / 12, "feet"),
  23114. default: true
  23115. },
  23116. {
  23117. name: "Macro",
  23118. height: math.unit(200, "feet")
  23119. },
  23120. {
  23121. name: "Megamacro",
  23122. height: math.unit(1000, "miles")
  23123. },
  23124. {
  23125. name: "Planetary",
  23126. height: math.unit(8000, "miles")
  23127. },
  23128. {
  23129. name: "True Layla",
  23130. height: math.unit(200000 * 7, "multiverses")
  23131. },
  23132. ]
  23133. ))
  23134. characterMakers.push(() => makeCharacter(
  23135. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23136. {
  23137. back: {
  23138. height: math.unit(10.5, "feet"),
  23139. weight: math.unit(800, "lb"),
  23140. name: "Back",
  23141. image: {
  23142. source: "./media/characters/knox/back.svg",
  23143. extra: 1486 / 1089,
  23144. bottom: 107 / 1601.4
  23145. }
  23146. },
  23147. side: {
  23148. height: math.unit(10.5, "feet"),
  23149. weight: math.unit(800, "lb"),
  23150. name: "Side",
  23151. image: {
  23152. source: "./media/characters/knox/side.svg",
  23153. extra: 244 / 218,
  23154. bottom: 14 / 260
  23155. }
  23156. },
  23157. },
  23158. [
  23159. {
  23160. name: "Compact",
  23161. height: math.unit(10.5, "feet"),
  23162. default: true
  23163. },
  23164. {
  23165. name: "Dynamax",
  23166. height: math.unit(210, "feet")
  23167. },
  23168. {
  23169. name: "Full Macro",
  23170. height: math.unit(850, "feet")
  23171. },
  23172. ]
  23173. ))
  23174. characterMakers.push(() => makeCharacter(
  23175. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23176. {
  23177. front: {
  23178. height: math.unit(6, "feet"),
  23179. weight: math.unit(152, "lb"),
  23180. name: "Front",
  23181. image: {
  23182. source: "./media/characters/shin-pikachu/front.svg",
  23183. extra: 1574 / 1480,
  23184. bottom: 53.3 / 1626
  23185. }
  23186. },
  23187. hand: {
  23188. height: math.unit(1.055, "feet"),
  23189. name: "Hand",
  23190. image: {
  23191. source: "./media/characters/shin-pikachu/hand.svg"
  23192. }
  23193. },
  23194. foot: {
  23195. height: math.unit(1.1, "feet"),
  23196. name: "Foot",
  23197. image: {
  23198. source: "./media/characters/shin-pikachu/foot.svg"
  23199. }
  23200. },
  23201. collar: {
  23202. height: math.unit(0.386, "feet"),
  23203. name: "Collar",
  23204. image: {
  23205. source: "./media/characters/shin-pikachu/collar.svg"
  23206. }
  23207. },
  23208. },
  23209. [
  23210. {
  23211. name: "Smallest",
  23212. height: math.unit(0.5, "inches")
  23213. },
  23214. {
  23215. name: "Micro",
  23216. height: math.unit(6, "inches")
  23217. },
  23218. {
  23219. name: "Normal",
  23220. height: math.unit(6, "feet"),
  23221. default: true
  23222. },
  23223. {
  23224. name: "Macro",
  23225. height: math.unit(150, "feet")
  23226. },
  23227. ]
  23228. ))
  23229. characterMakers.push(() => makeCharacter(
  23230. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23231. {
  23232. front: {
  23233. height: math.unit(28, "feet"),
  23234. weight: math.unit(10500, "lb"),
  23235. name: "Front",
  23236. image: {
  23237. source: "./media/characters/kayda/front.svg",
  23238. extra: 1536 / 1428,
  23239. bottom: 68.7 / 1603
  23240. }
  23241. },
  23242. back: {
  23243. height: math.unit(28, "feet"),
  23244. weight: math.unit(10500, "lb"),
  23245. name: "Back",
  23246. image: {
  23247. source: "./media/characters/kayda/back.svg",
  23248. extra: 1557 / 1464,
  23249. bottom: 39.5 / 1597.49
  23250. }
  23251. },
  23252. dick: {
  23253. height: math.unit(3.858, "feet"),
  23254. name: "Dick",
  23255. image: {
  23256. source: "./media/characters/kayda/dick.svg"
  23257. }
  23258. },
  23259. },
  23260. [
  23261. {
  23262. name: "Macro",
  23263. height: math.unit(28, "feet"),
  23264. default: true
  23265. },
  23266. ]
  23267. ))
  23268. characterMakers.push(() => makeCharacter(
  23269. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23270. {
  23271. front: {
  23272. height: math.unit(10 + 11 / 12, "feet"),
  23273. weight: math.unit(1400, "lb"),
  23274. name: "Front",
  23275. image: {
  23276. source: "./media/characters/brian/front.svg",
  23277. extra: 737 / 692,
  23278. bottom: 55.4 / 785
  23279. }
  23280. },
  23281. },
  23282. [
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(10 + 11 / 12, "feet"),
  23286. default: true
  23287. },
  23288. ]
  23289. ))
  23290. characterMakers.push(() => makeCharacter(
  23291. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23292. {
  23293. front: {
  23294. height: math.unit(5 + 8 / 12, "feet"),
  23295. weight: math.unit(140, "lb"),
  23296. name: "Front",
  23297. image: {
  23298. source: "./media/characters/khemri/front.svg",
  23299. extra: 4780 / 4059,
  23300. bottom: 80.1 / 4859.25
  23301. }
  23302. },
  23303. },
  23304. [
  23305. {
  23306. name: "Micro",
  23307. height: math.unit(6, "inches")
  23308. },
  23309. {
  23310. name: "Normal",
  23311. height: math.unit(5 + 8 / 12, "feet"),
  23312. default: true
  23313. },
  23314. ]
  23315. ))
  23316. characterMakers.push(() => makeCharacter(
  23317. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23318. {
  23319. front: {
  23320. height: math.unit(13, "feet"),
  23321. weight: math.unit(1700, "lb"),
  23322. name: "Front",
  23323. image: {
  23324. source: "./media/characters/felix-braveheart/front.svg",
  23325. extra: 1222 / 1157,
  23326. bottom: 53.2 / 1280
  23327. }
  23328. },
  23329. back: {
  23330. height: math.unit(13, "feet"),
  23331. weight: math.unit(1700, "lb"),
  23332. name: "Back",
  23333. image: {
  23334. source: "./media/characters/felix-braveheart/back.svg",
  23335. extra: 1277 / 1203,
  23336. bottom: 50.2 / 1327
  23337. }
  23338. },
  23339. feral: {
  23340. height: math.unit(6, "feet"),
  23341. weight: math.unit(400, "lb"),
  23342. name: "Feral",
  23343. image: {
  23344. source: "./media/characters/felix-braveheart/feral.svg",
  23345. extra: 682 / 625,
  23346. bottom: 6.9 / 688
  23347. }
  23348. },
  23349. },
  23350. [
  23351. {
  23352. name: "Normal",
  23353. height: math.unit(13, "feet"),
  23354. default: true
  23355. },
  23356. ]
  23357. ))
  23358. characterMakers.push(() => makeCharacter(
  23359. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23360. {
  23361. side: {
  23362. height: math.unit(5 + 11 / 12, "feet"),
  23363. weight: math.unit(1400, "lb"),
  23364. name: "Side",
  23365. image: {
  23366. source: "./media/characters/shadow-blade/side.svg",
  23367. extra: 1726 / 1267,
  23368. bottom: 58.4 / 1785
  23369. }
  23370. },
  23371. },
  23372. [
  23373. {
  23374. name: "Normal",
  23375. height: math.unit(5 + 11 / 12, "feet"),
  23376. default: true
  23377. },
  23378. ]
  23379. ))
  23380. characterMakers.push(() => makeCharacter(
  23381. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23382. {
  23383. front: {
  23384. height: math.unit(1 + 6 / 12, "feet"),
  23385. weight: math.unit(25, "lb"),
  23386. name: "Front",
  23387. image: {
  23388. source: "./media/characters/karla-halldor/front.svg",
  23389. extra: 1459 / 1383,
  23390. bottom: 12 / 1472
  23391. }
  23392. },
  23393. },
  23394. [
  23395. {
  23396. name: "Normal",
  23397. height: math.unit(1 + 6 / 12, "feet"),
  23398. default: true
  23399. },
  23400. ]
  23401. ))
  23402. characterMakers.push(() => makeCharacter(
  23403. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23404. {
  23405. front: {
  23406. height: math.unit(6 + 2 / 12, "feet"),
  23407. weight: math.unit(160, "lb"),
  23408. name: "Front",
  23409. image: {
  23410. source: "./media/characters/ariam/front.svg",
  23411. extra: 714 / 617,
  23412. bottom: 23.4 / 737,
  23413. }
  23414. },
  23415. squatting: {
  23416. height: math.unit(4.1, "feet"),
  23417. weight: math.unit(160, "lb"),
  23418. name: "Squatting",
  23419. image: {
  23420. source: "./media/characters/ariam/squatting.svg",
  23421. extra: 2617 / 2112,
  23422. bottom: 61.2 / 2681,
  23423. }
  23424. },
  23425. },
  23426. [
  23427. {
  23428. name: "Normal",
  23429. height: math.unit(6 + 2 / 12, "feet"),
  23430. default: true
  23431. },
  23432. {
  23433. name: "Normal+",
  23434. height: math.unit(4, "meters")
  23435. },
  23436. {
  23437. name: "Macro",
  23438. height: math.unit(50, "meters")
  23439. },
  23440. {
  23441. name: "Macro+",
  23442. height: math.unit(100, "meters")
  23443. },
  23444. {
  23445. name: "Megamacro",
  23446. height: math.unit(20, "km")
  23447. },
  23448. ]
  23449. ))
  23450. characterMakers.push(() => makeCharacter(
  23451. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23452. {
  23453. front: {
  23454. height: math.unit(1.67, "meters"),
  23455. weight: math.unit(140, "lb"),
  23456. name: "Front",
  23457. image: {
  23458. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23459. extra: 438 / 410,
  23460. bottom: 0.75 / 439
  23461. }
  23462. },
  23463. },
  23464. [
  23465. {
  23466. name: "Shrunken",
  23467. height: math.unit(7.6, "cm")
  23468. },
  23469. {
  23470. name: "Human Scale",
  23471. height: math.unit(1.67, "meters")
  23472. },
  23473. {
  23474. name: "Wolxi Scale",
  23475. height: math.unit(36.7, "meters"),
  23476. default: true
  23477. },
  23478. ]
  23479. ))
  23480. characterMakers.push(() => makeCharacter(
  23481. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23482. {
  23483. front: {
  23484. height: math.unit(1.73, "meters"),
  23485. weight: math.unit(240, "lb"),
  23486. name: "Front",
  23487. image: {
  23488. source: "./media/characters/izue-two-mothers/front.svg",
  23489. extra: 469 / 437,
  23490. bottom: 1.24 / 470.6
  23491. }
  23492. },
  23493. },
  23494. [
  23495. {
  23496. name: "Shrunken",
  23497. height: math.unit(7.86, "cm")
  23498. },
  23499. {
  23500. name: "Human Scale",
  23501. height: math.unit(1.73, "meters")
  23502. },
  23503. {
  23504. name: "Wolxi Scale",
  23505. height: math.unit(38, "meters"),
  23506. default: true
  23507. },
  23508. ]
  23509. ))
  23510. characterMakers.push(() => makeCharacter(
  23511. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23512. {
  23513. front: {
  23514. height: math.unit(1.55, "meters"),
  23515. weight: math.unit(120, "lb"),
  23516. name: "Front",
  23517. image: {
  23518. source: "./media/characters/teeku-love-shack/front.svg",
  23519. extra: 387 / 362,
  23520. bottom: 1.51 / 388
  23521. }
  23522. },
  23523. },
  23524. [
  23525. {
  23526. name: "Shrunken",
  23527. height: math.unit(7, "cm")
  23528. },
  23529. {
  23530. name: "Human Scale",
  23531. height: math.unit(1.55, "meters")
  23532. },
  23533. {
  23534. name: "Wolxi Scale",
  23535. height: math.unit(34.1, "meters"),
  23536. default: true
  23537. },
  23538. ]
  23539. ))
  23540. characterMakers.push(() => makeCharacter(
  23541. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23542. {
  23543. front: {
  23544. height: math.unit(1.83, "meters"),
  23545. weight: math.unit(135, "lb"),
  23546. name: "Front",
  23547. image: {
  23548. source: "./media/characters/dejma-the-red/front.svg",
  23549. extra: 480 / 458,
  23550. bottom: 1.8 / 482
  23551. }
  23552. },
  23553. },
  23554. [
  23555. {
  23556. name: "Shrunken",
  23557. height: math.unit(8.3, "cm")
  23558. },
  23559. {
  23560. name: "Human Scale",
  23561. height: math.unit(1.83, "meters")
  23562. },
  23563. {
  23564. name: "Wolxi Scale",
  23565. height: math.unit(40, "meters"),
  23566. default: true
  23567. },
  23568. ]
  23569. ))
  23570. characterMakers.push(() => makeCharacter(
  23571. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23572. {
  23573. front: {
  23574. height: math.unit(1.78, "meters"),
  23575. weight: math.unit(65, "kg"),
  23576. name: "Front",
  23577. image: {
  23578. source: "./media/characters/aki/front.svg",
  23579. extra: 452 / 415
  23580. }
  23581. },
  23582. frontNsfw: {
  23583. height: math.unit(1.78, "meters"),
  23584. weight: math.unit(65, "kg"),
  23585. name: "Front (NSFW)",
  23586. image: {
  23587. source: "./media/characters/aki/front-nsfw.svg",
  23588. extra: 452 / 415
  23589. }
  23590. },
  23591. back: {
  23592. height: math.unit(1.78, "meters"),
  23593. weight: math.unit(65, "kg"),
  23594. name: "Back",
  23595. image: {
  23596. source: "./media/characters/aki/back.svg",
  23597. extra: 452 / 415
  23598. }
  23599. },
  23600. rump: {
  23601. height: math.unit(2.05, "feet"),
  23602. name: "Rump",
  23603. image: {
  23604. source: "./media/characters/aki/rump.svg"
  23605. }
  23606. },
  23607. dick: {
  23608. height: math.unit(0.95, "feet"),
  23609. name: "Dick",
  23610. image: {
  23611. source: "./media/characters/aki/dick.svg"
  23612. }
  23613. },
  23614. },
  23615. [
  23616. {
  23617. name: "Micro",
  23618. height: math.unit(15, "cm")
  23619. },
  23620. {
  23621. name: "Normal",
  23622. height: math.unit(178, "cm"),
  23623. default: true
  23624. },
  23625. {
  23626. name: "Macro",
  23627. height: math.unit(214, "m")
  23628. },
  23629. {
  23630. name: "Macro+",
  23631. height: math.unit(534, "m")
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23637. {
  23638. front: {
  23639. height: math.unit(5 + 5 / 12, "feet"),
  23640. weight: math.unit(120, "lb"),
  23641. name: "Front",
  23642. image: {
  23643. source: "./media/characters/ari/front.svg",
  23644. extra: 714.5 / 682,
  23645. bottom: 8 / 722.5
  23646. }
  23647. },
  23648. },
  23649. [
  23650. {
  23651. name: "Normal",
  23652. height: math.unit(5 + 5 / 12, "feet")
  23653. },
  23654. {
  23655. name: "Macro",
  23656. height: math.unit(100, "feet"),
  23657. default: true
  23658. },
  23659. {
  23660. name: "Megamacro",
  23661. height: math.unit(100, "miles")
  23662. },
  23663. {
  23664. name: "Gigamacro",
  23665. height: math.unit(80000, "miles")
  23666. },
  23667. ]
  23668. ))
  23669. characterMakers.push(() => makeCharacter(
  23670. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23671. {
  23672. side: {
  23673. height: math.unit(9, "feet"),
  23674. weight: math.unit(400, "kg"),
  23675. name: "Side",
  23676. image: {
  23677. source: "./media/characters/bolt/side.svg",
  23678. extra: 1126 / 896,
  23679. bottom: 60 / 1187.3,
  23680. }
  23681. },
  23682. },
  23683. [
  23684. {
  23685. name: "Micro",
  23686. height: math.unit(5, "inches")
  23687. },
  23688. {
  23689. name: "Normal",
  23690. height: math.unit(9, "feet"),
  23691. default: true
  23692. },
  23693. {
  23694. name: "Macro",
  23695. height: math.unit(700, "feet")
  23696. },
  23697. {
  23698. name: "Max Size",
  23699. height: math.unit(1.52e22, "yottameters")
  23700. },
  23701. ]
  23702. ))
  23703. characterMakers.push(() => makeCharacter(
  23704. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23705. {
  23706. front: {
  23707. height: math.unit(4.53, "meters"),
  23708. weight: math.unit(3, "tons"),
  23709. name: "Front",
  23710. image: {
  23711. source: "./media/characters/draekon-sylviar/front.svg",
  23712. extra: 1228 / 1068,
  23713. bottom: 41 / 1270
  23714. }
  23715. },
  23716. tail: {
  23717. height: math.unit(1.772, "meter"),
  23718. name: "Tail",
  23719. image: {
  23720. source: "./media/characters/draekon-sylviar/tail.svg"
  23721. }
  23722. },
  23723. head: {
  23724. height: math.unit(1.331, "meter"),
  23725. name: "Head",
  23726. image: {
  23727. source: "./media/characters/draekon-sylviar/head.svg"
  23728. }
  23729. },
  23730. hand: {
  23731. height: math.unit(0.564, "meter"),
  23732. name: "Hand",
  23733. image: {
  23734. source: "./media/characters/draekon-sylviar/hand.svg"
  23735. }
  23736. },
  23737. foot: {
  23738. height: math.unit(0.621, "meter"),
  23739. name: "Foot",
  23740. image: {
  23741. source: "./media/characters/draekon-sylviar/foot.svg",
  23742. bottom: 32 / 324
  23743. }
  23744. },
  23745. dick: {
  23746. height: math.unit(61, "cm"),
  23747. name: "Dick",
  23748. image: {
  23749. source: "./media/characters/draekon-sylviar/dick.svg"
  23750. }
  23751. },
  23752. dickseparated: {
  23753. height: math.unit(61, "cm"),
  23754. name: "Dick-separated",
  23755. image: {
  23756. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Small",
  23763. height: math.unit(4.53 / 2, "meters"),
  23764. default: true
  23765. },
  23766. {
  23767. name: "Normal",
  23768. height: math.unit(4.53, "meters"),
  23769. default: true
  23770. },
  23771. {
  23772. name: "Large",
  23773. height: math.unit(4.53 * 2, "meters"),
  23774. },
  23775. ]
  23776. ))
  23777. characterMakers.push(() => makeCharacter(
  23778. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23779. {
  23780. front: {
  23781. height: math.unit(6 + 2 / 12, "feet"),
  23782. weight: math.unit(180, "lb"),
  23783. name: "Front",
  23784. image: {
  23785. source: "./media/characters/brawler/front.svg",
  23786. extra: 3301 / 3027,
  23787. bottom: 138 / 3439
  23788. }
  23789. },
  23790. },
  23791. [
  23792. {
  23793. name: "Normal",
  23794. height: math.unit(6 + 2 / 12, "feet"),
  23795. default: true
  23796. },
  23797. ]
  23798. ))
  23799. characterMakers.push(() => makeCharacter(
  23800. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23801. {
  23802. front: {
  23803. height: math.unit(11, "feet"),
  23804. weight: math.unit(1000, "lb"),
  23805. name: "Front",
  23806. image: {
  23807. source: "./media/characters/alex/front.svg",
  23808. bottom: 44.5 / 620
  23809. }
  23810. },
  23811. },
  23812. [
  23813. {
  23814. name: "Micro",
  23815. height: math.unit(5, "inches")
  23816. },
  23817. {
  23818. name: "Normal",
  23819. height: math.unit(11, "feet"),
  23820. default: true
  23821. },
  23822. {
  23823. name: "Macro",
  23824. height: math.unit(9.5e9, "feet")
  23825. },
  23826. {
  23827. name: "Max Size",
  23828. height: math.unit(1.4e283, "yottameters")
  23829. },
  23830. ]
  23831. ))
  23832. characterMakers.push(() => makeCharacter(
  23833. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23834. {
  23835. female: {
  23836. height: math.unit(29.9, "m"),
  23837. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23838. name: "Female",
  23839. image: {
  23840. source: "./media/characters/zenari/female.svg",
  23841. extra: 3281.6 / 3217,
  23842. bottom: 72.2 / 3353
  23843. }
  23844. },
  23845. male: {
  23846. height: math.unit(27.7, "m"),
  23847. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23848. name: "Male",
  23849. image: {
  23850. source: "./media/characters/zenari/male.svg",
  23851. extra: 3008 / 2991,
  23852. bottom: 54.6 / 3069
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Macro",
  23859. height: math.unit(29.7, "meters"),
  23860. default: true
  23861. },
  23862. ]
  23863. ))
  23864. characterMakers.push(() => makeCharacter(
  23865. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23866. {
  23867. female: {
  23868. height: math.unit(23.8, "m"),
  23869. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23870. name: "Female",
  23871. image: {
  23872. source: "./media/characters/mactarian/female.svg",
  23873. extra: 2662 / 2569,
  23874. bottom: 73 / 2736
  23875. }
  23876. },
  23877. male: {
  23878. height: math.unit(23.8, "m"),
  23879. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23880. name: "Male",
  23881. image: {
  23882. source: "./media/characters/mactarian/male.svg",
  23883. extra: 2673 / 2600,
  23884. bottom: 76 / 2750
  23885. }
  23886. },
  23887. },
  23888. [
  23889. {
  23890. name: "Macro",
  23891. height: math.unit(23.8, "meters"),
  23892. default: true
  23893. },
  23894. ]
  23895. ))
  23896. characterMakers.push(() => makeCharacter(
  23897. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23898. {
  23899. female: {
  23900. height: math.unit(19.3, "m"),
  23901. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23902. name: "Female",
  23903. image: {
  23904. source: "./media/characters/umok/female.svg",
  23905. extra: 2186 / 2078,
  23906. bottom: 87 / 2277
  23907. }
  23908. },
  23909. male: {
  23910. height: math.unit(19.5, "m"),
  23911. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23912. name: "Male",
  23913. image: {
  23914. source: "./media/characters/umok/male.svg",
  23915. extra: 2233 / 2140,
  23916. bottom: 24.4 / 2258
  23917. }
  23918. },
  23919. },
  23920. [
  23921. {
  23922. name: "Macro",
  23923. height: math.unit(19.3, "meters"),
  23924. default: true
  23925. },
  23926. ]
  23927. ))
  23928. characterMakers.push(() => makeCharacter(
  23929. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23930. {
  23931. female: {
  23932. height: math.unit(26.15, "m"),
  23933. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23934. name: "Female",
  23935. image: {
  23936. source: "./media/characters/joraxian/female.svg",
  23937. extra: 2912 / 2824,
  23938. bottom: 36 / 2956
  23939. }
  23940. },
  23941. male: {
  23942. height: math.unit(25.4, "m"),
  23943. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23944. name: "Male",
  23945. image: {
  23946. source: "./media/characters/joraxian/male.svg",
  23947. extra: 2877 / 2721,
  23948. bottom: 82 / 2967
  23949. }
  23950. },
  23951. },
  23952. [
  23953. {
  23954. name: "Macro",
  23955. height: math.unit(26.15, "meters"),
  23956. default: true
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23962. {
  23963. female: {
  23964. height: math.unit(21.6, "m"),
  23965. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23966. name: "Female",
  23967. image: {
  23968. source: "./media/characters/sthara/female.svg",
  23969. extra: 2516 / 2347,
  23970. bottom: 21.5 / 2537
  23971. }
  23972. },
  23973. male: {
  23974. height: math.unit(24, "m"),
  23975. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23976. name: "Male",
  23977. image: {
  23978. source: "./media/characters/sthara/male.svg",
  23979. extra: 2732 / 2607,
  23980. bottom: 23 / 2732
  23981. }
  23982. },
  23983. },
  23984. [
  23985. {
  23986. name: "Macro",
  23987. height: math.unit(21.6, "meters"),
  23988. default: true
  23989. },
  23990. ]
  23991. ))
  23992. characterMakers.push(() => makeCharacter(
  23993. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23994. {
  23995. front: {
  23996. height: math.unit(6 + 4 / 12, "feet"),
  23997. weight: math.unit(175, "lb"),
  23998. name: "Front",
  23999. image: {
  24000. source: "./media/characters/luka-bryzant/front.svg",
  24001. extra: 311 / 289,
  24002. bottom: 4 / 315
  24003. }
  24004. },
  24005. back: {
  24006. height: math.unit(6 + 4 / 12, "feet"),
  24007. weight: math.unit(175, "lb"),
  24008. name: "Back",
  24009. image: {
  24010. source: "./media/characters/luka-bryzant/back.svg",
  24011. extra: 311 / 289,
  24012. bottom: 3.8 / 313.7
  24013. }
  24014. },
  24015. },
  24016. [
  24017. {
  24018. name: "Micro",
  24019. height: math.unit(10, "inches")
  24020. },
  24021. {
  24022. name: "Normal",
  24023. height: math.unit(6 + 4 / 12, "feet"),
  24024. default: true
  24025. },
  24026. {
  24027. name: "Large",
  24028. height: math.unit(12, "feet")
  24029. },
  24030. ]
  24031. ))
  24032. characterMakers.push(() => makeCharacter(
  24033. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24034. {
  24035. front: {
  24036. height: math.unit(5 + 7 / 12, "feet"),
  24037. weight: math.unit(185, "lb"),
  24038. name: "Front",
  24039. image: {
  24040. source: "./media/characters/aman-aquila/front.svg",
  24041. extra: 1013 / 976,
  24042. bottom: 45.6 / 1057
  24043. }
  24044. },
  24045. side: {
  24046. height: math.unit(5 + 7 / 12, "feet"),
  24047. weight: math.unit(185, "lb"),
  24048. name: "Side",
  24049. image: {
  24050. source: "./media/characters/aman-aquila/side.svg",
  24051. extra: 1054 / 1011,
  24052. bottom: 15 / 1070
  24053. }
  24054. },
  24055. back: {
  24056. height: math.unit(5 + 7 / 12, "feet"),
  24057. weight: math.unit(185, "lb"),
  24058. name: "Back",
  24059. image: {
  24060. source: "./media/characters/aman-aquila/back.svg",
  24061. extra: 1026 / 970,
  24062. bottom: 12 / 1039
  24063. }
  24064. },
  24065. head: {
  24066. height: math.unit(1.211, "feet"),
  24067. name: "Head",
  24068. image: {
  24069. source: "./media/characters/aman-aquila/head.svg",
  24070. }
  24071. },
  24072. },
  24073. [
  24074. {
  24075. name: "Minimicro",
  24076. height: math.unit(0.057, "inches")
  24077. },
  24078. {
  24079. name: "Micro",
  24080. height: math.unit(7, "inches")
  24081. },
  24082. {
  24083. name: "Mini",
  24084. height: math.unit(3 + 7 / 12, "feet")
  24085. },
  24086. {
  24087. name: "Normal",
  24088. height: math.unit(5 + 7 / 12, "feet"),
  24089. default: true
  24090. },
  24091. {
  24092. name: "Macro",
  24093. height: math.unit(157 + 7 / 12, "feet")
  24094. },
  24095. {
  24096. name: "Megamacro",
  24097. height: math.unit(1557 + 7 / 12, "feet")
  24098. },
  24099. {
  24100. name: "Gigamacro",
  24101. height: math.unit(15557 + 7 / 12, "feet")
  24102. },
  24103. ]
  24104. ))
  24105. characterMakers.push(() => makeCharacter(
  24106. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24107. {
  24108. front: {
  24109. height: math.unit(3 + 2 / 12, "inches"),
  24110. weight: math.unit(0.3, "ounces"),
  24111. name: "Front",
  24112. image: {
  24113. source: "./media/characters/hiphae/front.svg",
  24114. extra: 1931 / 1683,
  24115. bottom: 24 / 1955
  24116. }
  24117. },
  24118. },
  24119. [
  24120. {
  24121. name: "Normal",
  24122. height: math.unit(3 + 1 / 2, "inches"),
  24123. default: true
  24124. },
  24125. ]
  24126. ))
  24127. characterMakers.push(() => makeCharacter(
  24128. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24129. {
  24130. front: {
  24131. height: math.unit(5 + 10 / 12, "feet"),
  24132. weight: math.unit(165, "lb"),
  24133. name: "Front",
  24134. image: {
  24135. source: "./media/characters/nicky/front.svg",
  24136. extra: 3144 / 2886,
  24137. bottom: 45.6 / 3192
  24138. }
  24139. },
  24140. back: {
  24141. height: math.unit(5 + 10 / 12, "feet"),
  24142. weight: math.unit(165, "lb"),
  24143. name: "Back",
  24144. image: {
  24145. source: "./media/characters/nicky/back.svg",
  24146. extra: 3055 / 2804,
  24147. bottom: 28.4 / 3087
  24148. }
  24149. },
  24150. frontclothed: {
  24151. height: math.unit(5 + 10 / 12, "feet"),
  24152. weight: math.unit(165, "lb"),
  24153. name: "Front-clothed",
  24154. image: {
  24155. source: "./media/characters/nicky/front-clothed.svg",
  24156. extra: 3184.9 / 2926.9,
  24157. bottom: 86.5 / 3239.9
  24158. }
  24159. },
  24160. foot: {
  24161. height: math.unit(1.16, "feet"),
  24162. name: "Foot",
  24163. image: {
  24164. source: "./media/characters/nicky/foot.svg"
  24165. }
  24166. },
  24167. feet: {
  24168. height: math.unit(1.34, "feet"),
  24169. name: "Feet",
  24170. image: {
  24171. source: "./media/characters/nicky/feet.svg"
  24172. }
  24173. },
  24174. maw: {
  24175. height: math.unit(0.9, "feet"),
  24176. name: "Maw",
  24177. image: {
  24178. source: "./media/characters/nicky/maw.svg"
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Normal",
  24185. height: math.unit(5 + 10 / 12, "feet"),
  24186. default: true
  24187. },
  24188. {
  24189. name: "Macro",
  24190. height: math.unit(60, "feet")
  24191. },
  24192. {
  24193. name: "Megamacro",
  24194. height: math.unit(1, "mile")
  24195. },
  24196. ]
  24197. ))
  24198. characterMakers.push(() => makeCharacter(
  24199. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24200. {
  24201. side: {
  24202. height: math.unit(10, "feet"),
  24203. weight: math.unit(600, "lb"),
  24204. name: "Side",
  24205. image: {
  24206. source: "./media/characters/blair/side.svg",
  24207. bottom: 16.6 / 475,
  24208. extra: 458 / 431
  24209. }
  24210. },
  24211. },
  24212. [
  24213. {
  24214. name: "Micro",
  24215. height: math.unit(8, "inches")
  24216. },
  24217. {
  24218. name: "Normal",
  24219. height: math.unit(10, "feet"),
  24220. default: true
  24221. },
  24222. {
  24223. name: "Macro",
  24224. height: math.unit(180, "feet")
  24225. },
  24226. ]
  24227. ))
  24228. characterMakers.push(() => makeCharacter(
  24229. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24230. {
  24231. front: {
  24232. height: math.unit(5 + 4 / 12, "feet"),
  24233. weight: math.unit(125, "lb"),
  24234. name: "Front",
  24235. image: {
  24236. source: "./media/characters/fisher/front.svg",
  24237. extra: 444 / 390,
  24238. bottom: 2 / 444.8
  24239. }
  24240. },
  24241. },
  24242. [
  24243. {
  24244. name: "Micro",
  24245. height: math.unit(4, "inches")
  24246. },
  24247. {
  24248. name: "Normal",
  24249. height: math.unit(5 + 4 / 12, "feet"),
  24250. default: true
  24251. },
  24252. {
  24253. name: "Macro",
  24254. height: math.unit(100, "feet")
  24255. },
  24256. ]
  24257. ))
  24258. characterMakers.push(() => makeCharacter(
  24259. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24260. {
  24261. front: {
  24262. height: math.unit(6.71, "feet"),
  24263. weight: math.unit(200, "lb"),
  24264. capacity: math.unit(1000000, "people"),
  24265. name: "Front",
  24266. image: {
  24267. source: "./media/characters/gliss/front.svg",
  24268. extra: 2347 / 2231,
  24269. bottom: 113 / 2462
  24270. }
  24271. },
  24272. hammerspaceSize: {
  24273. height: math.unit(6.71 * 717, "feet"),
  24274. weight: math.unit(200, "lb"),
  24275. capacity: math.unit(1000000, "people"),
  24276. name: "Hammerspace Size",
  24277. image: {
  24278. source: "./media/characters/gliss/front.svg",
  24279. extra: 2347 / 2231,
  24280. bottom: 113 / 2462
  24281. }
  24282. },
  24283. },
  24284. [
  24285. {
  24286. name: "Normal",
  24287. height: math.unit(6.71, "feet"),
  24288. default: true
  24289. },
  24290. ]
  24291. ))
  24292. characterMakers.push(() => makeCharacter(
  24293. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24294. {
  24295. side: {
  24296. height: math.unit(1.44, "m"),
  24297. weight: math.unit(80, "kg"),
  24298. name: "Side",
  24299. image: {
  24300. source: "./media/characters/dune-anderson/side.svg",
  24301. bottom: 49 / 1426
  24302. }
  24303. },
  24304. },
  24305. [
  24306. {
  24307. name: "Wolf-sized",
  24308. height: math.unit(1.44, "meters")
  24309. },
  24310. {
  24311. name: "Normal",
  24312. height: math.unit(5.05, "meters"),
  24313. default: true
  24314. },
  24315. {
  24316. name: "Big",
  24317. height: math.unit(14.4, "meters")
  24318. },
  24319. {
  24320. name: "Huge",
  24321. height: math.unit(144, "meters")
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24327. {
  24328. front: {
  24329. height: math.unit(7, "feet"),
  24330. weight: math.unit(425, "lb"),
  24331. name: "Front",
  24332. image: {
  24333. source: "./media/characters/hind/front.svg",
  24334. extra: 2091 / 1860,
  24335. bottom: 129 / 2220
  24336. }
  24337. },
  24338. back: {
  24339. height: math.unit(7, "feet"),
  24340. weight: math.unit(425, "lb"),
  24341. name: "Back",
  24342. image: {
  24343. source: "./media/characters/hind/back.svg",
  24344. extra: 2091 / 1860,
  24345. bottom: 24.6 / 2309
  24346. }
  24347. },
  24348. tail: {
  24349. height: math.unit(2.8, "feet"),
  24350. name: "Tail",
  24351. image: {
  24352. source: "./media/characters/hind/tail.svg"
  24353. }
  24354. },
  24355. head: {
  24356. height: math.unit(2.55, "feet"),
  24357. name: "Head",
  24358. image: {
  24359. source: "./media/characters/hind/head.svg"
  24360. }
  24361. },
  24362. },
  24363. [
  24364. {
  24365. name: "XS",
  24366. height: math.unit(0.7, "feet")
  24367. },
  24368. {
  24369. name: "Normal",
  24370. height: math.unit(7, "feet"),
  24371. default: true
  24372. },
  24373. {
  24374. name: "XL",
  24375. height: math.unit(70, "feet")
  24376. },
  24377. ]
  24378. ))
  24379. characterMakers.push(() => makeCharacter(
  24380. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24381. {
  24382. front: {
  24383. height: math.unit(6, "feet"),
  24384. weight: math.unit(150, "lb"),
  24385. name: "Front",
  24386. image: {
  24387. source: "./media/characters/dylan-skaven/front.svg",
  24388. extra: 2318 / 2063,
  24389. bottom: 93.4 / 2410
  24390. }
  24391. },
  24392. },
  24393. [
  24394. {
  24395. name: "Nano",
  24396. height: math.unit(1, "mm")
  24397. },
  24398. {
  24399. name: "Micro",
  24400. height: math.unit(1, "cm")
  24401. },
  24402. {
  24403. name: "Normal",
  24404. height: math.unit(2.1, "meters"),
  24405. default: true
  24406. },
  24407. ]
  24408. ))
  24409. characterMakers.push(() => makeCharacter(
  24410. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24411. {
  24412. front: {
  24413. height: math.unit(7 + 5 / 12, "feet"),
  24414. weight: math.unit(357, "lb"),
  24415. name: "Front",
  24416. image: {
  24417. source: "./media/characters/solex-draconov/front.svg",
  24418. extra: 1993 / 1865,
  24419. bottom: 117 / 2111
  24420. }
  24421. },
  24422. },
  24423. [
  24424. {
  24425. name: "Natural Height",
  24426. height: math.unit(7 + 5 / 12, "feet"),
  24427. default: true
  24428. },
  24429. {
  24430. name: "Macro",
  24431. height: math.unit(350, "feet")
  24432. },
  24433. {
  24434. name: "Macro+",
  24435. height: math.unit(1000, "feet")
  24436. },
  24437. {
  24438. name: "Megamacro",
  24439. height: math.unit(20, "km")
  24440. },
  24441. {
  24442. name: "Megamacro+",
  24443. height: math.unit(1000, "km")
  24444. },
  24445. {
  24446. name: "Gigamacro",
  24447. height: math.unit(2.5, "Gm")
  24448. },
  24449. {
  24450. name: "Teramacro",
  24451. height: math.unit(15, "Tm")
  24452. },
  24453. {
  24454. name: "Galactic",
  24455. height: math.unit(30, "Zm")
  24456. },
  24457. {
  24458. name: "Universal",
  24459. height: math.unit(21000, "Ym")
  24460. },
  24461. {
  24462. name: "Omniversal",
  24463. height: math.unit(9.861e50, "Ym")
  24464. },
  24465. {
  24466. name: "Existential",
  24467. height: math.unit(1e300, "meters")
  24468. },
  24469. ]
  24470. ))
  24471. characterMakers.push(() => makeCharacter(
  24472. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24473. {
  24474. side: {
  24475. height: math.unit(25, "feet"),
  24476. weight: math.unit(90000, "lb"),
  24477. name: "Side",
  24478. image: {
  24479. source: "./media/characters/mandarax/side.svg",
  24480. extra: 614 / 332,
  24481. bottom: 55 / 630
  24482. }
  24483. },
  24484. head: {
  24485. height: math.unit(11.4, "feet"),
  24486. name: "Head",
  24487. image: {
  24488. source: "./media/characters/mandarax/head.svg"
  24489. }
  24490. },
  24491. belly: {
  24492. height: math.unit(33, "feet"),
  24493. name: "Belly",
  24494. capacity: math.unit(500, "people"),
  24495. image: {
  24496. source: "./media/characters/mandarax/belly.svg"
  24497. }
  24498. },
  24499. dick: {
  24500. height: math.unit(8.46, "feet"),
  24501. name: "Dick",
  24502. image: {
  24503. source: "./media/characters/mandarax/dick.svg"
  24504. }
  24505. },
  24506. top: {
  24507. height: math.unit(28, "meters"),
  24508. name: "Top",
  24509. image: {
  24510. source: "./media/characters/mandarax/top.svg"
  24511. }
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "Normal",
  24517. height: math.unit(25, "feet"),
  24518. default: true
  24519. },
  24520. ]
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24524. {
  24525. front: {
  24526. height: math.unit(5, "feet"),
  24527. weight: math.unit(90, "lb"),
  24528. name: "Front",
  24529. image: {
  24530. source: "./media/characters/pixil/front.svg",
  24531. extra: 2000 / 1618,
  24532. bottom: 12.3 / 2011
  24533. }
  24534. },
  24535. },
  24536. [
  24537. {
  24538. name: "Normal",
  24539. height: math.unit(5, "feet"),
  24540. default: true
  24541. },
  24542. {
  24543. name: "Megamacro",
  24544. height: math.unit(10, "miles"),
  24545. },
  24546. ]
  24547. ))
  24548. characterMakers.push(() => makeCharacter(
  24549. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24550. {
  24551. front: {
  24552. height: math.unit(7 + 2 / 12, "feet"),
  24553. weight: math.unit(200, "lb"),
  24554. name: "Front",
  24555. image: {
  24556. source: "./media/characters/angel/front.svg",
  24557. extra: 1830 / 1737,
  24558. bottom: 22.6 / 1854,
  24559. }
  24560. },
  24561. },
  24562. [
  24563. {
  24564. name: "Normal",
  24565. height: math.unit(7 + 2 / 12, "feet"),
  24566. default: true
  24567. },
  24568. {
  24569. name: "Macro",
  24570. height: math.unit(1000, "feet")
  24571. },
  24572. {
  24573. name: "Megamacro",
  24574. height: math.unit(2, "miles")
  24575. },
  24576. {
  24577. name: "Gigamacro",
  24578. height: math.unit(20, "earths")
  24579. },
  24580. ]
  24581. ))
  24582. characterMakers.push(() => makeCharacter(
  24583. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24584. {
  24585. front: {
  24586. height: math.unit(5, "feet"),
  24587. weight: math.unit(180, "lb"),
  24588. name: "Front",
  24589. image: {
  24590. source: "./media/characters/mekana/front.svg",
  24591. extra: 1671 / 1605,
  24592. bottom: 3.5 / 1691
  24593. }
  24594. },
  24595. side: {
  24596. height: math.unit(5, "feet"),
  24597. weight: math.unit(180, "lb"),
  24598. name: "Side",
  24599. image: {
  24600. source: "./media/characters/mekana/side.svg",
  24601. extra: 1671 / 1605,
  24602. bottom: 3.5 / 1691
  24603. }
  24604. },
  24605. back: {
  24606. height: math.unit(5, "feet"),
  24607. weight: math.unit(180, "lb"),
  24608. name: "Back",
  24609. image: {
  24610. source: "./media/characters/mekana/back.svg",
  24611. extra: 1671 / 1605,
  24612. bottom: 3.5 / 1691
  24613. }
  24614. },
  24615. },
  24616. [
  24617. {
  24618. name: "Normal",
  24619. height: math.unit(5, "feet"),
  24620. default: true
  24621. },
  24622. ]
  24623. ))
  24624. characterMakers.push(() => makeCharacter(
  24625. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24626. {
  24627. front: {
  24628. height: math.unit(4 + 6 / 12, "feet"),
  24629. weight: math.unit(80, "lb"),
  24630. name: "Front",
  24631. image: {
  24632. source: "./media/characters/pixie/front.svg",
  24633. extra: 1924 / 1825,
  24634. bottom: 22.4 / 1946
  24635. }
  24636. },
  24637. },
  24638. [
  24639. {
  24640. name: "Normal",
  24641. height: math.unit(4 + 6 / 12, "feet"),
  24642. default: true
  24643. },
  24644. {
  24645. name: "Macro",
  24646. height: math.unit(40, "feet")
  24647. },
  24648. ]
  24649. ))
  24650. characterMakers.push(() => makeCharacter(
  24651. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24652. {
  24653. front: {
  24654. height: math.unit(2.1, "meters"),
  24655. weight: math.unit(200, "lb"),
  24656. name: "Front",
  24657. image: {
  24658. source: "./media/characters/the-lascivious/front.svg",
  24659. extra: 1 / 0.893,
  24660. bottom: 3.5 / 573.7
  24661. }
  24662. },
  24663. },
  24664. [
  24665. {
  24666. name: "Human Scale",
  24667. height: math.unit(2.1, "meters")
  24668. },
  24669. {
  24670. name: "Wolxi Scale",
  24671. height: math.unit(46.2, "m"),
  24672. default: true
  24673. },
  24674. {
  24675. name: "Boinker of Buildings",
  24676. height: math.unit(10, "km")
  24677. },
  24678. {
  24679. name: "Shagger of Skyscrapers",
  24680. height: math.unit(40, "km")
  24681. },
  24682. {
  24683. name: "Banger of Boroughs",
  24684. height: math.unit(4000, "km")
  24685. },
  24686. {
  24687. name: "Screwer of States",
  24688. height: math.unit(100000, "km")
  24689. },
  24690. {
  24691. name: "Pounder of Planets",
  24692. height: math.unit(2000000, "km")
  24693. },
  24694. ]
  24695. ))
  24696. characterMakers.push(() => makeCharacter(
  24697. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24698. {
  24699. front: {
  24700. height: math.unit(6, "feet"),
  24701. weight: math.unit(150, "lb"),
  24702. name: "Front",
  24703. image: {
  24704. source: "./media/characters/aj/front.svg",
  24705. extra: 2039 / 1562,
  24706. bottom: 40 / 2079
  24707. }
  24708. },
  24709. },
  24710. [
  24711. {
  24712. name: "Normal",
  24713. height: math.unit(11 + 6 / 12, "feet"),
  24714. default: true
  24715. },
  24716. {
  24717. name: "Megamacro",
  24718. height: math.unit(60, "megameters")
  24719. },
  24720. ]
  24721. ))
  24722. characterMakers.push(() => makeCharacter(
  24723. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24724. {
  24725. side: {
  24726. height: math.unit(31 + 8 / 12, "feet"),
  24727. weight: math.unit(75000, "kg"),
  24728. name: "Side",
  24729. image: {
  24730. source: "./media/characters/koros/side.svg",
  24731. extra: 1442 / 1297,
  24732. bottom: 122.7 / 1562
  24733. }
  24734. },
  24735. dicksKingsCrown: {
  24736. height: math.unit(6, "feet"),
  24737. name: "Dicks (King's Crown)",
  24738. image: {
  24739. source: "./media/characters/koros/dicks-kings-crown.svg"
  24740. }
  24741. },
  24742. dicksTailSet: {
  24743. height: math.unit(3, "feet"),
  24744. name: "Dicks (Tail Set)",
  24745. image: {
  24746. source: "./media/characters/koros/dicks-tail-set.svg"
  24747. }
  24748. },
  24749. dickCumming: {
  24750. height: math.unit(7.98, "feet"),
  24751. name: "Dick (Cumming)",
  24752. image: {
  24753. source: "./media/characters/koros/dick-cumming.svg"
  24754. }
  24755. },
  24756. dicksBack: {
  24757. height: math.unit(5.9, "feet"),
  24758. name: "Dicks (Back)",
  24759. image: {
  24760. source: "./media/characters/koros/dicks-back.svg"
  24761. }
  24762. },
  24763. dicksFront: {
  24764. height: math.unit(3.72, "feet"),
  24765. name: "Dicks (Front)",
  24766. image: {
  24767. source: "./media/characters/koros/dicks-front.svg"
  24768. }
  24769. },
  24770. dicksPeeking: {
  24771. height: math.unit(3.0, "feet"),
  24772. name: "Dicks (Peeking)",
  24773. image: {
  24774. source: "./media/characters/koros/dicks-peeking.svg"
  24775. }
  24776. },
  24777. eye: {
  24778. height: math.unit(1.7, "feet"),
  24779. name: "Eye",
  24780. image: {
  24781. source: "./media/characters/koros/eye.svg"
  24782. }
  24783. },
  24784. headFront: {
  24785. height: math.unit(11.69, "feet"),
  24786. name: "Head (Front)",
  24787. image: {
  24788. source: "./media/characters/koros/head-front.svg"
  24789. }
  24790. },
  24791. headSide: {
  24792. height: math.unit(14, "feet"),
  24793. name: "Head (Side)",
  24794. image: {
  24795. source: "./media/characters/koros/head-side.svg"
  24796. }
  24797. },
  24798. leg: {
  24799. height: math.unit(17, "feet"),
  24800. name: "Leg",
  24801. image: {
  24802. source: "./media/characters/koros/leg.svg"
  24803. }
  24804. },
  24805. mawSide: {
  24806. height: math.unit(12.8, "feet"),
  24807. name: "Maw (Side)",
  24808. image: {
  24809. source: "./media/characters/koros/maw-side.svg"
  24810. }
  24811. },
  24812. mawSpitting: {
  24813. height: math.unit(17, "feet"),
  24814. name: "Maw (Spitting)",
  24815. image: {
  24816. source: "./media/characters/koros/maw-spitting.svg"
  24817. }
  24818. },
  24819. slit: {
  24820. height: math.unit(2.8, "feet"),
  24821. name: "Slit",
  24822. image: {
  24823. source: "./media/characters/koros/slit.svg"
  24824. }
  24825. },
  24826. stomach: {
  24827. height: math.unit(6.8, "feet"),
  24828. capacity: math.unit(20, "people"),
  24829. name: "Stomach",
  24830. image: {
  24831. source: "./media/characters/koros/stomach.svg"
  24832. }
  24833. },
  24834. wingspanBottom: {
  24835. height: math.unit(114, "feet"),
  24836. name: "Wingspan (Bottom)",
  24837. image: {
  24838. source: "./media/characters/koros/wingspan-bottom.svg"
  24839. }
  24840. },
  24841. wingspanTop: {
  24842. height: math.unit(104, "feet"),
  24843. name: "Wingspan (Top)",
  24844. image: {
  24845. source: "./media/characters/koros/wingspan-top.svg"
  24846. }
  24847. },
  24848. },
  24849. [
  24850. {
  24851. name: "Normal",
  24852. height: math.unit(31 + 8 / 12, "feet"),
  24853. default: true
  24854. },
  24855. ]
  24856. ))
  24857. characterMakers.push(() => makeCharacter(
  24858. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24859. {
  24860. front: {
  24861. height: math.unit(18 + 5 / 12, "feet"),
  24862. weight: math.unit(3750, "kg"),
  24863. name: "Front",
  24864. image: {
  24865. source: "./media/characters/vexx/front.svg",
  24866. extra: 426 / 396,
  24867. bottom: 31.5 / 458
  24868. }
  24869. },
  24870. maw: {
  24871. height: math.unit(6, "feet"),
  24872. name: "Maw",
  24873. image: {
  24874. source: "./media/characters/vexx/maw.svg"
  24875. }
  24876. },
  24877. },
  24878. [
  24879. {
  24880. name: "Normal",
  24881. height: math.unit(18 + 5 / 12, "feet"),
  24882. default: true
  24883. },
  24884. ]
  24885. ))
  24886. characterMakers.push(() => makeCharacter(
  24887. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24888. {
  24889. front: {
  24890. height: math.unit(17 + 6 / 12, "feet"),
  24891. weight: math.unit(150, "lb"),
  24892. name: "Front",
  24893. image: {
  24894. source: "./media/characters/baadra/front.svg",
  24895. extra: 3137 / 2890,
  24896. bottom: 168.4 / 3305
  24897. }
  24898. },
  24899. back: {
  24900. height: math.unit(17 + 6 / 12, "feet"),
  24901. weight: math.unit(150, "lb"),
  24902. name: "Back",
  24903. image: {
  24904. source: "./media/characters/baadra/back.svg",
  24905. extra: 3142 / 2890,
  24906. bottom: 220 / 3371
  24907. }
  24908. },
  24909. head: {
  24910. height: math.unit(5.45, "feet"),
  24911. name: "Head",
  24912. image: {
  24913. source: "./media/characters/baadra/head.svg"
  24914. }
  24915. },
  24916. headAngry: {
  24917. height: math.unit(4.95, "feet"),
  24918. name: "Head (Angry)",
  24919. image: {
  24920. source: "./media/characters/baadra/head-angry.svg"
  24921. }
  24922. },
  24923. headOpen: {
  24924. height: math.unit(6, "feet"),
  24925. name: "Head (Open)",
  24926. image: {
  24927. source: "./media/characters/baadra/head-open.svg"
  24928. }
  24929. },
  24930. },
  24931. [
  24932. {
  24933. name: "Normal",
  24934. height: math.unit(17 + 6 / 12, "feet"),
  24935. default: true
  24936. },
  24937. ]
  24938. ))
  24939. characterMakers.push(() => makeCharacter(
  24940. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24941. {
  24942. front: {
  24943. height: math.unit(7 + 3 / 12, "feet"),
  24944. weight: math.unit(180, "lb"),
  24945. name: "Front",
  24946. image: {
  24947. source: "./media/characters/juri/front.svg",
  24948. extra: 1401 / 1237,
  24949. bottom: 18.5 / 1418
  24950. }
  24951. },
  24952. side: {
  24953. height: math.unit(7 + 3 / 12, "feet"),
  24954. weight: math.unit(180, "lb"),
  24955. name: "Side",
  24956. image: {
  24957. source: "./media/characters/juri/side.svg",
  24958. extra: 1424 / 1242,
  24959. bottom: 18.5 / 1447
  24960. }
  24961. },
  24962. sitting: {
  24963. height: math.unit(6, "feet"),
  24964. weight: math.unit(180, "lb"),
  24965. name: "Sitting",
  24966. image: {
  24967. source: "./media/characters/juri/sitting.svg",
  24968. extra: 1270 / 1143,
  24969. bottom: 100 / 1343
  24970. }
  24971. },
  24972. back: {
  24973. height: math.unit(7 + 3 / 12, "feet"),
  24974. weight: math.unit(180, "lb"),
  24975. name: "Back",
  24976. image: {
  24977. source: "./media/characters/juri/back.svg",
  24978. extra: 1377 / 1240,
  24979. bottom: 23.7 / 1405
  24980. }
  24981. },
  24982. maw: {
  24983. height: math.unit(2.8, "feet"),
  24984. name: "Maw",
  24985. image: {
  24986. source: "./media/characters/juri/maw.svg"
  24987. }
  24988. },
  24989. stomach: {
  24990. height: math.unit(0.89, "feet"),
  24991. capacity: math.unit(4, "liters"),
  24992. name: "Stomach",
  24993. image: {
  24994. source: "./media/characters/juri/stomach.svg"
  24995. }
  24996. },
  24997. },
  24998. [
  24999. {
  25000. name: "Normal",
  25001. height: math.unit(7 + 3 / 12, "feet"),
  25002. default: true
  25003. },
  25004. ]
  25005. ))
  25006. characterMakers.push(() => makeCharacter(
  25007. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25008. {
  25009. fox: {
  25010. height: math.unit(5 + 6 / 12, "feet"),
  25011. weight: math.unit(140, "lb"),
  25012. name: "Fox",
  25013. image: {
  25014. source: "./media/characters/maxene-sita/fox.svg",
  25015. extra: 146 / 138,
  25016. bottom: 2.1 / 148.19
  25017. }
  25018. },
  25019. foxLaying: {
  25020. height: math.unit(1.70, "feet"),
  25021. weight: math.unit(140, "lb"),
  25022. name: "Fox (Laying)",
  25023. image: {
  25024. source: "./media/characters/maxene-sita/fox-laying.svg",
  25025. extra: 910 / 572,
  25026. bottom: 71 / 981
  25027. }
  25028. },
  25029. kitsune: {
  25030. height: math.unit(10, "feet"),
  25031. weight: math.unit(800, "lb"),
  25032. name: "Kitsune",
  25033. image: {
  25034. source: "./media/characters/maxene-sita/kitsune.svg",
  25035. extra: 185 / 176,
  25036. bottom: 4.7 / 189.9
  25037. }
  25038. },
  25039. hellhound: {
  25040. height: math.unit(10, "feet"),
  25041. weight: math.unit(700, "lb"),
  25042. name: "Hellhound",
  25043. image: {
  25044. source: "./media/characters/maxene-sita/hellhound.svg",
  25045. extra: 1600 / 1545,
  25046. bottom: 81 / 1681
  25047. }
  25048. },
  25049. },
  25050. [
  25051. {
  25052. name: "Normal",
  25053. height: math.unit(5 + 6 / 12, "feet"),
  25054. default: true
  25055. },
  25056. ]
  25057. ))
  25058. characterMakers.push(() => makeCharacter(
  25059. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25060. {
  25061. front: {
  25062. height: math.unit(3 + 4 / 12, "feet"),
  25063. weight: math.unit(70, "lb"),
  25064. name: "Front",
  25065. image: {
  25066. source: "./media/characters/maia/front.svg",
  25067. extra: 227 / 219.5,
  25068. bottom: 40 / 267
  25069. }
  25070. },
  25071. back: {
  25072. height: math.unit(3 + 4 / 12, "feet"),
  25073. weight: math.unit(70, "lb"),
  25074. name: "Back",
  25075. image: {
  25076. source: "./media/characters/maia/back.svg",
  25077. extra: 237 / 225
  25078. }
  25079. },
  25080. },
  25081. [
  25082. {
  25083. name: "Normal",
  25084. height: math.unit(3 + 4 / 12, "feet"),
  25085. default: true
  25086. },
  25087. ]
  25088. ))
  25089. characterMakers.push(() => makeCharacter(
  25090. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25091. {
  25092. front: {
  25093. height: math.unit(5 + 10 / 12, "feet"),
  25094. weight: math.unit(197, "lb"),
  25095. name: "Front",
  25096. image: {
  25097. source: "./media/characters/jabaro/front.svg",
  25098. extra: 225 / 216,
  25099. bottom: 5.06 / 230
  25100. }
  25101. },
  25102. back: {
  25103. height: math.unit(5 + 10 / 12, "feet"),
  25104. weight: math.unit(197, "lb"),
  25105. name: "Back",
  25106. image: {
  25107. source: "./media/characters/jabaro/back.svg",
  25108. extra: 225 / 219,
  25109. bottom: 1.9 / 227
  25110. }
  25111. },
  25112. },
  25113. [
  25114. {
  25115. name: "Normal",
  25116. height: math.unit(5 + 10 / 12, "feet"),
  25117. default: true
  25118. },
  25119. ]
  25120. ))
  25121. characterMakers.push(() => makeCharacter(
  25122. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25123. {
  25124. front: {
  25125. height: math.unit(5 + 8 / 12, "feet"),
  25126. weight: math.unit(139, "lb"),
  25127. name: "Front",
  25128. image: {
  25129. source: "./media/characters/risa/front.svg",
  25130. extra: 270 / 260,
  25131. bottom: 11.2 / 282
  25132. }
  25133. },
  25134. back: {
  25135. height: math.unit(5 + 8 / 12, "feet"),
  25136. weight: math.unit(139, "lb"),
  25137. name: "Back",
  25138. image: {
  25139. source: "./media/characters/risa/back.svg",
  25140. extra: 264 / 255,
  25141. bottom: 4 / 268
  25142. }
  25143. },
  25144. },
  25145. [
  25146. {
  25147. name: "Normal",
  25148. height: math.unit(5 + 8 / 12, "feet"),
  25149. default: true
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25155. {
  25156. front: {
  25157. height: math.unit(2 + 11 / 12, "feet"),
  25158. weight: math.unit(30, "lb"),
  25159. name: "Front",
  25160. image: {
  25161. source: "./media/characters/weatley/front.svg",
  25162. bottom: 10.7 / 414,
  25163. extra: 403.5 / 362
  25164. }
  25165. },
  25166. back: {
  25167. height: math.unit(2 + 11 / 12, "feet"),
  25168. weight: math.unit(30, "lb"),
  25169. name: "Back",
  25170. image: {
  25171. source: "./media/characters/weatley/back.svg",
  25172. bottom: 10.7 / 414,
  25173. extra: 403.5 / 362
  25174. }
  25175. },
  25176. },
  25177. [
  25178. {
  25179. name: "Normal",
  25180. height: math.unit(2 + 11 / 12, "feet"),
  25181. default: true
  25182. },
  25183. ]
  25184. ))
  25185. characterMakers.push(() => makeCharacter(
  25186. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25187. {
  25188. front: {
  25189. height: math.unit(5 + 2 / 12, "feet"),
  25190. weight: math.unit(50, "kg"),
  25191. name: "Front",
  25192. image: {
  25193. source: "./media/characters/mercury-crescent/front.svg",
  25194. extra: 1088 / 1033,
  25195. bottom: 18.9 / 1109
  25196. }
  25197. },
  25198. },
  25199. [
  25200. {
  25201. name: "Normal",
  25202. height: math.unit(5 + 2 / 12, "feet"),
  25203. default: true
  25204. },
  25205. ]
  25206. ))
  25207. characterMakers.push(() => makeCharacter(
  25208. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25209. {
  25210. front: {
  25211. height: math.unit(2, "feet"),
  25212. weight: math.unit(15, "kg"),
  25213. name: "Front",
  25214. image: {
  25215. source: "./media/characters/diamond-jones/front.svg",
  25216. bottom: 16 / 568
  25217. }
  25218. },
  25219. },
  25220. [
  25221. {
  25222. name: "Normal",
  25223. height: math.unit(2, "feet"),
  25224. default: true
  25225. },
  25226. ]
  25227. ))
  25228. characterMakers.push(() => makeCharacter(
  25229. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25230. {
  25231. front: {
  25232. height: math.unit(3, "feet"),
  25233. weight: math.unit(30, "kg"),
  25234. name: "Front",
  25235. image: {
  25236. source: "./media/characters/sweet-bit/front.svg",
  25237. extra: 675 / 567,
  25238. bottom: 27.7 / 703
  25239. }
  25240. },
  25241. },
  25242. [
  25243. {
  25244. name: "Normal",
  25245. height: math.unit(3, "feet"),
  25246. default: true
  25247. },
  25248. ]
  25249. ))
  25250. characterMakers.push(() => makeCharacter(
  25251. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25252. {
  25253. side: {
  25254. height: math.unit(9.178, "feet"),
  25255. weight: math.unit(500, "lb"),
  25256. name: "Side",
  25257. image: {
  25258. source: "./media/characters/umbrazen/side.svg",
  25259. extra: 1730 / 1473,
  25260. bottom: 34.6 / 1765
  25261. }
  25262. },
  25263. },
  25264. [
  25265. {
  25266. name: "Normal",
  25267. height: math.unit(9.178, "feet"),
  25268. default: true
  25269. },
  25270. ]
  25271. ))
  25272. characterMakers.push(() => makeCharacter(
  25273. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25274. {
  25275. front: {
  25276. height: math.unit(10, "feet"),
  25277. weight: math.unit(750, "lb"),
  25278. name: "Front",
  25279. image: {
  25280. source: "./media/characters/arlist/front.svg",
  25281. extra: 961 / 778,
  25282. bottom: 6.2 / 986
  25283. }
  25284. },
  25285. },
  25286. [
  25287. {
  25288. name: "Normal",
  25289. height: math.unit(10, "feet"),
  25290. default: true
  25291. },
  25292. ]
  25293. ))
  25294. characterMakers.push(() => makeCharacter(
  25295. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25296. {
  25297. front: {
  25298. height: math.unit(5 + 1 / 12, "feet"),
  25299. weight: math.unit(110, "lb"),
  25300. name: "Front",
  25301. image: {
  25302. source: "./media/characters/aradel/front.svg",
  25303. extra: 324 / 303,
  25304. bottom: 3.6 / 329.4
  25305. }
  25306. },
  25307. },
  25308. [
  25309. {
  25310. name: "Normal",
  25311. height: math.unit(5 + 1 / 12, "feet"),
  25312. default: true
  25313. },
  25314. ]
  25315. ))
  25316. characterMakers.push(() => makeCharacter(
  25317. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25318. {
  25319. front: {
  25320. height: math.unit(3 + 8 / 12, "feet"),
  25321. weight: math.unit(50, "lb"),
  25322. name: "Front",
  25323. image: {
  25324. source: "./media/characters/serryn/front.svg",
  25325. extra: 1792 / 1656,
  25326. bottom: 43.5 / 1840
  25327. }
  25328. },
  25329. },
  25330. [
  25331. {
  25332. name: "Normal",
  25333. height: math.unit(3 + 8 / 12, "feet"),
  25334. default: true
  25335. },
  25336. ]
  25337. ))
  25338. characterMakers.push(() => makeCharacter(
  25339. { name: "Xavier Thyme" },
  25340. {
  25341. front: {
  25342. height: math.unit(7 + 10 / 12, "feet"),
  25343. weight: math.unit(255, "lb"),
  25344. name: "Front",
  25345. image: {
  25346. source: "./media/characters/xavier-thyme/front.svg",
  25347. extra: 3733 / 3642,
  25348. bottom: 131 / 3869
  25349. }
  25350. },
  25351. frontRaven: {
  25352. height: math.unit(7 + 10 / 12, "feet"),
  25353. weight: math.unit(255, "lb"),
  25354. name: "Front (Raven)",
  25355. image: {
  25356. source: "./media/characters/xavier-thyme/front-raven.svg",
  25357. extra: 4385 / 3642,
  25358. bottom: 131 / 4517
  25359. }
  25360. },
  25361. },
  25362. [
  25363. {
  25364. name: "Normal",
  25365. height: math.unit(7 + 10 / 12, "feet"),
  25366. default: true
  25367. },
  25368. ]
  25369. ))
  25370. characterMakers.push(() => makeCharacter(
  25371. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25372. {
  25373. front: {
  25374. height: math.unit(1.6, "m"),
  25375. weight: math.unit(50, "kg"),
  25376. name: "Front",
  25377. image: {
  25378. source: "./media/characters/kiki/front.svg",
  25379. extra: 4682 / 3610,
  25380. bottom: 115 / 4777
  25381. }
  25382. },
  25383. },
  25384. [
  25385. {
  25386. name: "Normal",
  25387. height: math.unit(1.6, "meters"),
  25388. default: true
  25389. },
  25390. ]
  25391. ))
  25392. characterMakers.push(() => makeCharacter(
  25393. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25394. {
  25395. front: {
  25396. height: math.unit(50, "m"),
  25397. weight: math.unit(500, "tonnes"),
  25398. name: "Front",
  25399. image: {
  25400. source: "./media/characters/ryoko/front.svg",
  25401. extra: 4632 / 3926,
  25402. bottom: 193 / 4823
  25403. }
  25404. },
  25405. },
  25406. [
  25407. {
  25408. name: "Normal",
  25409. height: math.unit(50, "meters"),
  25410. default: true
  25411. },
  25412. ]
  25413. ))
  25414. characterMakers.push(() => makeCharacter(
  25415. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25416. {
  25417. front: {
  25418. height: math.unit(30, "m"),
  25419. weight: math.unit(22, "tonnes"),
  25420. name: "Front",
  25421. image: {
  25422. source: "./media/characters/elio/front.svg",
  25423. extra: 4582 / 3720,
  25424. bottom: 236 / 4828
  25425. }
  25426. },
  25427. },
  25428. [
  25429. {
  25430. name: "Normal",
  25431. height: math.unit(30, "meters"),
  25432. default: true
  25433. },
  25434. ]
  25435. ))
  25436. characterMakers.push(() => makeCharacter(
  25437. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25438. {
  25439. front: {
  25440. height: math.unit(6 + 3 / 12, "feet"),
  25441. weight: math.unit(120, "lb"),
  25442. name: "Front",
  25443. image: {
  25444. source: "./media/characters/azura/front.svg",
  25445. extra: 1149 / 1135,
  25446. bottom: 45 / 1194
  25447. }
  25448. },
  25449. frontClothed: {
  25450. height: math.unit(6 + 3 / 12, "feet"),
  25451. weight: math.unit(120, "lb"),
  25452. name: "Front (Clothed)",
  25453. image: {
  25454. source: "./media/characters/azura/front-clothed.svg",
  25455. extra: 1149 / 1135,
  25456. bottom: 45 / 1194
  25457. }
  25458. },
  25459. },
  25460. [
  25461. {
  25462. name: "Normal",
  25463. height: math.unit(6 + 3 / 12, "feet"),
  25464. default: true
  25465. },
  25466. {
  25467. name: "Macro",
  25468. height: math.unit(20 + 6 / 12, "feet")
  25469. },
  25470. {
  25471. name: "Megamacro",
  25472. height: math.unit(12, "miles")
  25473. },
  25474. {
  25475. name: "Gigamacro",
  25476. height: math.unit(10000, "miles")
  25477. },
  25478. {
  25479. name: "Teramacro",
  25480. height: math.unit(900000, "miles")
  25481. },
  25482. ]
  25483. ))
  25484. characterMakers.push(() => makeCharacter(
  25485. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25486. {
  25487. front: {
  25488. height: math.unit(12, "feet"),
  25489. weight: math.unit(1, "ton"),
  25490. capacity: math.unit(660000, "gallons"),
  25491. name: "Front",
  25492. image: {
  25493. source: "./media/characters/zeus/front.svg",
  25494. extra: 5005 / 4717,
  25495. bottom: 363 / 5388
  25496. }
  25497. },
  25498. },
  25499. [
  25500. {
  25501. name: "Normal",
  25502. height: math.unit(12, "feet")
  25503. },
  25504. {
  25505. name: "Preferred Size",
  25506. height: math.unit(0.5, "miles"),
  25507. default: true
  25508. },
  25509. {
  25510. name: "Giga Horse",
  25511. height: math.unit(300, "miles")
  25512. },
  25513. {
  25514. name: "Riding Planets",
  25515. height: math.unit(30, "megameters")
  25516. },
  25517. {
  25518. name: "Cosmic Giant",
  25519. height: math.unit(3, "zettameters")
  25520. },
  25521. {
  25522. name: "Breeding God",
  25523. height: math.unit(9.92e22, "yottameters")
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25529. {
  25530. side: {
  25531. height: math.unit(9, "feet"),
  25532. weight: math.unit(1500, "kg"),
  25533. name: "Side",
  25534. image: {
  25535. source: "./media/characters/fang/side.svg",
  25536. extra: 924 / 866,
  25537. bottom: 47.5 / 972.3
  25538. }
  25539. },
  25540. },
  25541. [
  25542. {
  25543. name: "Normal",
  25544. height: math.unit(9, "feet"),
  25545. default: true
  25546. },
  25547. {
  25548. name: "Macro",
  25549. height: math.unit(75 + 6 / 12, "feet")
  25550. },
  25551. {
  25552. name: "Teramacro",
  25553. height: math.unit(50000, "miles")
  25554. },
  25555. ]
  25556. ))
  25557. characterMakers.push(() => makeCharacter(
  25558. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25559. {
  25560. front: {
  25561. height: math.unit(10, "feet"),
  25562. weight: math.unit(2, "tons"),
  25563. name: "Front",
  25564. image: {
  25565. source: "./media/characters/rekhit/front.svg",
  25566. extra: 2796 / 2590,
  25567. bottom: 225 / 3022
  25568. }
  25569. },
  25570. },
  25571. [
  25572. {
  25573. name: "Normal",
  25574. height: math.unit(10, "feet"),
  25575. default: true
  25576. },
  25577. {
  25578. name: "Macro",
  25579. height: math.unit(500, "feet")
  25580. },
  25581. ]
  25582. ))
  25583. characterMakers.push(() => makeCharacter(
  25584. { name: "Dahlia Verrick" },
  25585. {
  25586. front: {
  25587. height: math.unit(7 + 6.451 / 12, "feet"),
  25588. weight: math.unit(310, "lb"),
  25589. name: "Front",
  25590. image: {
  25591. source: "./media/characters/dahlia-verrick/front.svg",
  25592. extra: 1488 / 1365,
  25593. bottom: 6.2 / 1495
  25594. }
  25595. },
  25596. back: {
  25597. height: math.unit(7 + 6.451 / 12, "feet"),
  25598. weight: math.unit(310, "lb"),
  25599. name: "Back",
  25600. image: {
  25601. source: "./media/characters/dahlia-verrick/back.svg",
  25602. extra: 1472 / 1351,
  25603. bottom: 5.28 / 1477
  25604. }
  25605. },
  25606. frontBusiness: {
  25607. height: math.unit(7 + 6.451 / 12, "feet"),
  25608. weight: math.unit(200, "lb"),
  25609. name: "Front (Business)",
  25610. image: {
  25611. source: "./media/characters/dahlia-verrick/front-business.svg",
  25612. extra: 1478 / 1381,
  25613. bottom: 5.5 / 1484
  25614. }
  25615. },
  25616. frontCasual: {
  25617. height: math.unit(7 + 6.451 / 12, "feet"),
  25618. weight: math.unit(200, "lb"),
  25619. name: "Front (Casual)",
  25620. image: {
  25621. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25622. extra: 1478 / 1381,
  25623. bottom: 5.5 / 1484
  25624. }
  25625. },
  25626. },
  25627. [
  25628. {
  25629. name: "Travel-Sized",
  25630. height: math.unit(7.45, "inches")
  25631. },
  25632. {
  25633. name: "Normal",
  25634. height: math.unit(7 + 6.451 / 12, "feet"),
  25635. default: true
  25636. },
  25637. {
  25638. name: "Hitting the Town",
  25639. height: math.unit(37 + 8 / 12, "feet")
  25640. },
  25641. {
  25642. name: "Stomp in the Suburbs",
  25643. height: math.unit(964 + 9.728 / 12, "feet")
  25644. },
  25645. {
  25646. name: "Sit on the City",
  25647. height: math.unit(61747 + 10.592 / 12, "feet")
  25648. },
  25649. {
  25650. name: "Glomp the Globe",
  25651. height: math.unit(252919327 + 4.832 / 12, "feet")
  25652. },
  25653. ]
  25654. ))
  25655. characterMakers.push(() => makeCharacter(
  25656. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25657. {
  25658. front: {
  25659. height: math.unit(6 + 4 / 12, "feet"),
  25660. weight: math.unit(320, "lb"),
  25661. name: "Front",
  25662. image: {
  25663. source: "./media/characters/balina-mahigan/front.svg",
  25664. extra: 447 / 428,
  25665. bottom: 18 / 466
  25666. }
  25667. },
  25668. back: {
  25669. height: math.unit(6 + 4 / 12, "feet"),
  25670. weight: math.unit(320, "lb"),
  25671. name: "Back",
  25672. image: {
  25673. source: "./media/characters/balina-mahigan/back.svg",
  25674. extra: 445 / 428,
  25675. bottom: 4.07 / 448
  25676. }
  25677. },
  25678. arm: {
  25679. height: math.unit(1.88, "feet"),
  25680. name: "Arm",
  25681. image: {
  25682. source: "./media/characters/balina-mahigan/arm.svg"
  25683. }
  25684. },
  25685. backPort: {
  25686. height: math.unit(0.685, "feet"),
  25687. name: "Back Port",
  25688. image: {
  25689. source: "./media/characters/balina-mahigan/back-port.svg"
  25690. }
  25691. },
  25692. hoofpaw: {
  25693. height: math.unit(1.41, "feet"),
  25694. name: "Hoofpaw",
  25695. image: {
  25696. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25697. }
  25698. },
  25699. leftHandBack: {
  25700. height: math.unit(0.938, "feet"),
  25701. name: "Left Hand (Back)",
  25702. image: {
  25703. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25704. }
  25705. },
  25706. leftHandFront: {
  25707. height: math.unit(0.938, "feet"),
  25708. name: "Left Hand (Front)",
  25709. image: {
  25710. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25711. }
  25712. },
  25713. rightHandBack: {
  25714. height: math.unit(0.95, "feet"),
  25715. name: "Right Hand (Back)",
  25716. image: {
  25717. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25718. }
  25719. },
  25720. rightHandFront: {
  25721. height: math.unit(0.95, "feet"),
  25722. name: "Right Hand (Front)",
  25723. image: {
  25724. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25725. }
  25726. },
  25727. },
  25728. [
  25729. {
  25730. name: "Normal",
  25731. height: math.unit(6 + 4 / 12, "feet"),
  25732. default: true
  25733. },
  25734. ]
  25735. ))
  25736. characterMakers.push(() => makeCharacter(
  25737. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25738. {
  25739. front: {
  25740. height: math.unit(6, "feet"),
  25741. weight: math.unit(320, "lb"),
  25742. name: "Front",
  25743. image: {
  25744. source: "./media/characters/balina-mejeri/front.svg",
  25745. extra: 517 / 488,
  25746. bottom: 44.2 / 561
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "Normal",
  25753. height: math.unit(6 + 4 / 12, "feet")
  25754. },
  25755. {
  25756. name: "Business",
  25757. height: math.unit(155, "feet"),
  25758. default: true
  25759. },
  25760. ]
  25761. ))
  25762. characterMakers.push(() => makeCharacter(
  25763. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25764. {
  25765. kneeling: {
  25766. height: math.unit(6 + 4 / 12, "feet"),
  25767. weight: math.unit(300 * 20, "lb"),
  25768. name: "Kneeling",
  25769. image: {
  25770. source: "./media/characters/balbarian/kneeling.svg",
  25771. extra: 922 / 862,
  25772. bottom: 42.4 / 965
  25773. }
  25774. },
  25775. },
  25776. [
  25777. {
  25778. name: "Normal",
  25779. height: math.unit(6 + 4 / 12, "feet")
  25780. },
  25781. {
  25782. name: "Treasured",
  25783. height: math.unit(18 + 9 / 12, "feet"),
  25784. default: true
  25785. },
  25786. {
  25787. name: "Macro",
  25788. height: math.unit(900, "feet")
  25789. },
  25790. ]
  25791. ))
  25792. characterMakers.push(() => makeCharacter(
  25793. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25794. {
  25795. front: {
  25796. height: math.unit(6 + 4 / 12, "feet"),
  25797. weight: math.unit(325, "lb"),
  25798. name: "Front",
  25799. image: {
  25800. source: "./media/characters/balina-amarini/front.svg",
  25801. extra: 415 / 403,
  25802. bottom: 19 / 433.4
  25803. }
  25804. },
  25805. back: {
  25806. height: math.unit(6 + 4 / 12, "feet"),
  25807. weight: math.unit(325, "lb"),
  25808. name: "Back",
  25809. image: {
  25810. source: "./media/characters/balina-amarini/back.svg",
  25811. extra: 415 / 403,
  25812. bottom: 13.5 / 432
  25813. }
  25814. },
  25815. overdrive: {
  25816. height: math.unit(6 + 4 / 12, "feet"),
  25817. weight: math.unit(400, "lb"),
  25818. name: "Overdrive",
  25819. image: {
  25820. source: "./media/characters/balina-amarini/overdrive.svg",
  25821. extra: 269 / 259,
  25822. bottom: 12 / 282
  25823. }
  25824. },
  25825. },
  25826. [
  25827. {
  25828. name: "Boom",
  25829. height: math.unit(9 + 10 / 12, "feet"),
  25830. default: true
  25831. },
  25832. {
  25833. name: "Macro",
  25834. height: math.unit(280, "feet")
  25835. },
  25836. ]
  25837. ))
  25838. characterMakers.push(() => makeCharacter(
  25839. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25840. {
  25841. goddess: {
  25842. height: math.unit(600, "feet"),
  25843. weight: math.unit(2000000, "tons"),
  25844. name: "Goddess",
  25845. image: {
  25846. source: "./media/characters/lady-kubwa/goddess.svg",
  25847. extra: 1240.5 / 1223,
  25848. bottom: 22 / 1263
  25849. }
  25850. },
  25851. goddesser: {
  25852. height: math.unit(900, "feet"),
  25853. weight: math.unit(20000000, "lb"),
  25854. name: "Goddess-er",
  25855. image: {
  25856. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25857. extra: 899 / 888,
  25858. bottom: 12.6 / 912
  25859. }
  25860. },
  25861. },
  25862. [
  25863. {
  25864. name: "Macro",
  25865. height: math.unit(600, "feet"),
  25866. default: true
  25867. },
  25868. {
  25869. name: "Megamacro",
  25870. height: math.unit(250, "miles")
  25871. },
  25872. ]
  25873. ))
  25874. characterMakers.push(() => makeCharacter(
  25875. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25876. {
  25877. front: {
  25878. height: math.unit(7 + 7 / 12, "feet"),
  25879. weight: math.unit(250, "lb"),
  25880. name: "Front",
  25881. image: {
  25882. source: "./media/characters/tala-grovehorn/front.svg",
  25883. extra: 2636 / 2525,
  25884. bottom: 147 / 2781
  25885. }
  25886. },
  25887. back: {
  25888. height: math.unit(7 + 7 / 12, "feet"),
  25889. weight: math.unit(250, "lb"),
  25890. name: "Back",
  25891. image: {
  25892. source: "./media/characters/tala-grovehorn/back.svg",
  25893. extra: 2635 / 2539,
  25894. bottom: 100 / 2732.8
  25895. }
  25896. },
  25897. mouth: {
  25898. height: math.unit(1.15, "feet"),
  25899. name: "Mouth",
  25900. image: {
  25901. source: "./media/characters/tala-grovehorn/mouth.svg"
  25902. }
  25903. },
  25904. dick: {
  25905. height: math.unit(2.36, "feet"),
  25906. name: "Dick",
  25907. image: {
  25908. source: "./media/characters/tala-grovehorn/dick.svg"
  25909. }
  25910. },
  25911. slit: {
  25912. height: math.unit(0.61, "feet"),
  25913. name: "Slit",
  25914. image: {
  25915. source: "./media/characters/tala-grovehorn/slit.svg"
  25916. }
  25917. },
  25918. },
  25919. [
  25920. ]
  25921. ))
  25922. characterMakers.push(() => makeCharacter(
  25923. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25924. {
  25925. front: {
  25926. height: math.unit(7 + 7 / 12, "feet"),
  25927. weight: math.unit(225, "lb"),
  25928. name: "Front",
  25929. image: {
  25930. source: "./media/characters/epona/front.svg",
  25931. extra: 2445 / 2290,
  25932. bottom: 251 / 2696
  25933. }
  25934. },
  25935. back: {
  25936. height: math.unit(7 + 7 / 12, "feet"),
  25937. weight: math.unit(225, "lb"),
  25938. name: "Back",
  25939. image: {
  25940. source: "./media/characters/epona/back.svg",
  25941. extra: 2546 / 2408,
  25942. bottom: 44 / 2589
  25943. }
  25944. },
  25945. genitals: {
  25946. height: math.unit(1.5, "feet"),
  25947. name: "Genitals",
  25948. image: {
  25949. source: "./media/characters/epona/genitals.svg"
  25950. }
  25951. },
  25952. },
  25953. [
  25954. {
  25955. name: "Normal",
  25956. height: math.unit(7 + 7 / 12, "feet"),
  25957. default: true
  25958. },
  25959. ]
  25960. ))
  25961. characterMakers.push(() => makeCharacter(
  25962. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25963. {
  25964. front: {
  25965. height: math.unit(7, "feet"),
  25966. weight: math.unit(518, "lb"),
  25967. name: "Front",
  25968. image: {
  25969. source: "./media/characters/avia-bloodbourn/front.svg",
  25970. extra: 1466 / 1350,
  25971. bottom: 65 / 1527
  25972. }
  25973. },
  25974. },
  25975. [
  25976. ]
  25977. ))
  25978. characterMakers.push(() => makeCharacter(
  25979. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25980. {
  25981. front: {
  25982. height: math.unit(9.35, "feet"),
  25983. weight: math.unit(600, "lb"),
  25984. name: "Front",
  25985. image: {
  25986. source: "./media/characters/amera/front.svg",
  25987. extra: 891 / 818,
  25988. bottom: 30 / 922.7
  25989. }
  25990. },
  25991. back: {
  25992. height: math.unit(9.35, "feet"),
  25993. weight: math.unit(600, "lb"),
  25994. name: "Back",
  25995. image: {
  25996. source: "./media/characters/amera/back.svg",
  25997. extra: 876 / 824,
  25998. bottom: 6.8 / 884
  25999. }
  26000. },
  26001. dick: {
  26002. height: math.unit(2.14, "feet"),
  26003. name: "Dick",
  26004. image: {
  26005. source: "./media/characters/amera/dick.svg"
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(9.35, "feet"),
  26013. default: true
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26019. {
  26020. kneeling: {
  26021. height: math.unit(3 + 4 / 12, "feet"),
  26022. weight: math.unit(90, "lb"),
  26023. name: "Kneeling",
  26024. image: {
  26025. source: "./media/characters/rosewen/kneeling.svg",
  26026. extra: 1835 / 1571,
  26027. bottom: 27.7 / 1862
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Normal",
  26034. height: math.unit(3 + 4 / 12, "feet"),
  26035. default: true
  26036. },
  26037. ]
  26038. ))
  26039. characterMakers.push(() => makeCharacter(
  26040. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26041. {
  26042. front: {
  26043. height: math.unit(5 + 10 / 12, "feet"),
  26044. weight: math.unit(200, "lb"),
  26045. name: "Front",
  26046. image: {
  26047. source: "./media/characters/sabah/front.svg",
  26048. extra: 849 / 763,
  26049. bottom: 33.9 / 881
  26050. }
  26051. },
  26052. },
  26053. [
  26054. {
  26055. name: "Normal",
  26056. height: math.unit(5 + 10 / 12, "feet"),
  26057. default: true
  26058. },
  26059. ]
  26060. ))
  26061. characterMakers.push(() => makeCharacter(
  26062. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26063. {
  26064. front: {
  26065. height: math.unit(3 + 5 / 12, "feet"),
  26066. weight: math.unit(40, "kg"),
  26067. name: "Front",
  26068. image: {
  26069. source: "./media/characters/purple-flame/front.svg",
  26070. extra: 1577 / 1412,
  26071. bottom: 97 / 1694
  26072. }
  26073. },
  26074. frontDressed: {
  26075. height: math.unit(3 + 5 / 12, "feet"),
  26076. weight: math.unit(40, "kg"),
  26077. name: "Front (Dressed)",
  26078. image: {
  26079. source: "./media/characters/purple-flame/front-dressed.svg",
  26080. extra: 1577 / 1412,
  26081. bottom: 97 / 1694
  26082. }
  26083. },
  26084. headphones: {
  26085. height: math.unit(0.85, "feet"),
  26086. name: "Headphones",
  26087. image: {
  26088. source: "./media/characters/purple-flame/headphones.svg"
  26089. }
  26090. },
  26091. },
  26092. [
  26093. {
  26094. name: "Really Small",
  26095. height: math.unit(5, "cm")
  26096. },
  26097. {
  26098. name: "Micro",
  26099. height: math.unit(1 + 5 / 12, "feet")
  26100. },
  26101. {
  26102. name: "Normal",
  26103. height: math.unit(3 + 5 / 12, "feet"),
  26104. default: true
  26105. },
  26106. {
  26107. name: "Minimacro",
  26108. height: math.unit(125, "feet")
  26109. },
  26110. {
  26111. name: "Macro",
  26112. height: math.unit(0.5, "miles")
  26113. },
  26114. {
  26115. name: "Megamacro",
  26116. height: math.unit(50, "miles")
  26117. },
  26118. {
  26119. name: "Gigantic",
  26120. height: math.unit(750, "miles")
  26121. },
  26122. {
  26123. name: "Planetary",
  26124. height: math.unit(15000, "miles")
  26125. },
  26126. ]
  26127. ))
  26128. characterMakers.push(() => makeCharacter(
  26129. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26130. {
  26131. front: {
  26132. height: math.unit(14, "feet"),
  26133. weight: math.unit(959, "lb"),
  26134. name: "Front",
  26135. image: {
  26136. source: "./media/characters/arsenal/front.svg",
  26137. extra: 2357 / 2157,
  26138. bottom: 93 / 2458
  26139. }
  26140. },
  26141. },
  26142. [
  26143. {
  26144. name: "Normal",
  26145. height: math.unit(14, "feet"),
  26146. default: true
  26147. },
  26148. ]
  26149. ))
  26150. characterMakers.push(() => makeCharacter(
  26151. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26152. {
  26153. front: {
  26154. height: math.unit(6, "feet"),
  26155. weight: math.unit(150, "lb"),
  26156. name: "Front",
  26157. image: {
  26158. source: "./media/characters/adira/front.svg",
  26159. extra: 1078 / 1029,
  26160. bottom: 87 / 1166
  26161. }
  26162. },
  26163. },
  26164. [
  26165. {
  26166. name: "Micro",
  26167. height: math.unit(4, "inches"),
  26168. default: true
  26169. },
  26170. {
  26171. name: "Macro",
  26172. height: math.unit(50, "feet")
  26173. },
  26174. ]
  26175. ))
  26176. characterMakers.push(() => makeCharacter(
  26177. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26178. {
  26179. front: {
  26180. height: math.unit(16, "feet"),
  26181. weight: math.unit(1000, "lb"),
  26182. name: "Front",
  26183. image: {
  26184. source: "./media/characters/grim/front.svg",
  26185. extra: 622 / 614,
  26186. bottom: 18.1 / 642
  26187. }
  26188. },
  26189. back: {
  26190. height: math.unit(16, "feet"),
  26191. weight: math.unit(1000, "lb"),
  26192. name: "Back",
  26193. image: {
  26194. source: "./media/characters/grim/back.svg",
  26195. extra: 610.6 / 602,
  26196. bottom: 40.8 / 652
  26197. }
  26198. },
  26199. hunched: {
  26200. height: math.unit(9.75, "feet"),
  26201. weight: math.unit(1000, "lb"),
  26202. name: "Hunched",
  26203. image: {
  26204. source: "./media/characters/grim/hunched.svg",
  26205. extra: 304 / 297,
  26206. bottom: 35.4 / 394
  26207. }
  26208. },
  26209. },
  26210. [
  26211. {
  26212. name: "Normal",
  26213. height: math.unit(16, "feet"),
  26214. default: true
  26215. },
  26216. ]
  26217. ))
  26218. characterMakers.push(() => makeCharacter(
  26219. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26220. {
  26221. front: {
  26222. height: math.unit(2.3, "meters"),
  26223. weight: math.unit(300, "lb"),
  26224. name: "Front",
  26225. image: {
  26226. source: "./media/characters/sinja/front-sfw.svg",
  26227. extra: 1393 / 1294,
  26228. bottom: 70 / 1463
  26229. }
  26230. },
  26231. frontNsfw: {
  26232. height: math.unit(2.3, "meters"),
  26233. weight: math.unit(300, "lb"),
  26234. name: "Front (NSFW)",
  26235. image: {
  26236. source: "./media/characters/sinja/front-nsfw.svg",
  26237. extra: 1393 / 1294,
  26238. bottom: 70 / 1463
  26239. }
  26240. },
  26241. back: {
  26242. height: math.unit(2.3, "meters"),
  26243. weight: math.unit(300, "lb"),
  26244. name: "Back",
  26245. image: {
  26246. source: "./media/characters/sinja/back.svg",
  26247. extra: 1393 / 1294,
  26248. bottom: 70 / 1463
  26249. }
  26250. },
  26251. head: {
  26252. height: math.unit(1.771, "feet"),
  26253. name: "Head",
  26254. image: {
  26255. source: "./media/characters/sinja/head.svg"
  26256. }
  26257. },
  26258. slit: {
  26259. height: math.unit(0.8, "feet"),
  26260. name: "Slit",
  26261. image: {
  26262. source: "./media/characters/sinja/slit.svg"
  26263. }
  26264. },
  26265. },
  26266. [
  26267. {
  26268. name: "Normal",
  26269. height: math.unit(2.3, "meters")
  26270. },
  26271. {
  26272. name: "Macro",
  26273. height: math.unit(91, "meters"),
  26274. default: true
  26275. },
  26276. {
  26277. name: "Megamacro",
  26278. height: math.unit(91440, "meters")
  26279. },
  26280. {
  26281. name: "Gigamacro",
  26282. height: math.unit(60960000, "meters")
  26283. },
  26284. {
  26285. name: "Teramacro",
  26286. height: math.unit(9144000000, "meters")
  26287. },
  26288. ]
  26289. ))
  26290. characterMakers.push(() => makeCharacter(
  26291. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26292. {
  26293. front: {
  26294. height: math.unit(1.7, "meters"),
  26295. weight: math.unit(130, "lb"),
  26296. name: "Front",
  26297. image: {
  26298. source: "./media/characters/kyu/front.svg",
  26299. extra: 415 / 395,
  26300. bottom: 5 / 420
  26301. }
  26302. },
  26303. head: {
  26304. height: math.unit(1.75, "feet"),
  26305. name: "Head",
  26306. image: {
  26307. source: "./media/characters/kyu/head.svg"
  26308. }
  26309. },
  26310. foot: {
  26311. height: math.unit(0.81, "feet"),
  26312. name: "Foot",
  26313. image: {
  26314. source: "./media/characters/kyu/foot.svg"
  26315. }
  26316. },
  26317. },
  26318. [
  26319. {
  26320. name: "Normal",
  26321. height: math.unit(1.7, "meters")
  26322. },
  26323. {
  26324. name: "Macro",
  26325. height: math.unit(131, "feet"),
  26326. default: true
  26327. },
  26328. {
  26329. name: "Megamacro",
  26330. height: math.unit(91440, "meters")
  26331. },
  26332. {
  26333. name: "Gigamacro",
  26334. height: math.unit(60960000, "meters")
  26335. },
  26336. {
  26337. name: "Teramacro",
  26338. height: math.unit(9144000000, "meters")
  26339. },
  26340. ]
  26341. ))
  26342. characterMakers.push(() => makeCharacter(
  26343. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26344. {
  26345. front: {
  26346. height: math.unit(7 + 1 / 12, "feet"),
  26347. weight: math.unit(250, "lb"),
  26348. name: "Front",
  26349. image: {
  26350. source: "./media/characters/joey/front.svg",
  26351. extra: 1791 / 1537,
  26352. bottom: 28 / 1816
  26353. }
  26354. },
  26355. },
  26356. [
  26357. {
  26358. name: "Micro",
  26359. height: math.unit(3, "inches")
  26360. },
  26361. {
  26362. name: "Normal",
  26363. height: math.unit(7 + 1 / 12, "feet"),
  26364. default: true
  26365. },
  26366. ]
  26367. ))
  26368. characterMakers.push(() => makeCharacter(
  26369. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26370. {
  26371. front: {
  26372. height: math.unit(165, "cm"),
  26373. weight: math.unit(140, "lb"),
  26374. name: "Front",
  26375. image: {
  26376. source: "./media/characters/sam-evans/front.svg",
  26377. extra: 3417 / 3230,
  26378. bottom: 41.3 / 3417
  26379. }
  26380. },
  26381. frontSixTails: {
  26382. height: math.unit(165, "cm"),
  26383. weight: math.unit(140, "lb"),
  26384. name: "Front-six-tails",
  26385. image: {
  26386. source: "./media/characters/sam-evans/front-six-tails.svg",
  26387. extra: 3417 / 3230,
  26388. bottom: 41.3 / 3417
  26389. }
  26390. },
  26391. back: {
  26392. height: math.unit(165, "cm"),
  26393. weight: math.unit(140, "lb"),
  26394. name: "Back",
  26395. image: {
  26396. source: "./media/characters/sam-evans/back.svg",
  26397. extra: 3227 / 3032,
  26398. bottom: 6.8 / 3234
  26399. }
  26400. },
  26401. face: {
  26402. height: math.unit(0.68, "feet"),
  26403. name: "Face",
  26404. image: {
  26405. source: "./media/characters/sam-evans/face.svg"
  26406. }
  26407. },
  26408. },
  26409. [
  26410. {
  26411. name: "Normal",
  26412. height: math.unit(165, "cm"),
  26413. default: true
  26414. },
  26415. {
  26416. name: "Macro",
  26417. height: math.unit(100, "meters")
  26418. },
  26419. {
  26420. name: "Macro+",
  26421. height: math.unit(800, "meters")
  26422. },
  26423. {
  26424. name: "Macro++",
  26425. height: math.unit(3, "km")
  26426. },
  26427. {
  26428. name: "Macro+++",
  26429. height: math.unit(30, "km")
  26430. },
  26431. ]
  26432. ))
  26433. characterMakers.push(() => makeCharacter(
  26434. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26435. {
  26436. front: {
  26437. height: math.unit(10, "feet"),
  26438. weight: math.unit(750, "lb"),
  26439. name: "Front",
  26440. image: {
  26441. source: "./media/characters/juliet-a/front.svg",
  26442. extra: 1766 / 1720,
  26443. bottom: 43 / 1809
  26444. }
  26445. },
  26446. back: {
  26447. height: math.unit(10, "feet"),
  26448. weight: math.unit(750, "lb"),
  26449. name: "Back",
  26450. image: {
  26451. source: "./media/characters/juliet-a/back.svg",
  26452. extra: 1781 / 1734,
  26453. bottom: 35 / 1810,
  26454. }
  26455. },
  26456. },
  26457. [
  26458. {
  26459. name: "Normal",
  26460. height: math.unit(10, "feet"),
  26461. default: true
  26462. },
  26463. {
  26464. name: "Dragon Form",
  26465. height: math.unit(250, "feet")
  26466. },
  26467. {
  26468. name: "Macro",
  26469. height: math.unit(1000, "feet")
  26470. },
  26471. {
  26472. name: "Megamacro",
  26473. height: math.unit(10000, "feet")
  26474. }
  26475. ]
  26476. ))
  26477. characterMakers.push(() => makeCharacter(
  26478. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26479. {
  26480. regular: {
  26481. height: math.unit(7 + 3 / 12, "feet"),
  26482. weight: math.unit(260, "lb"),
  26483. name: "Regular",
  26484. image: {
  26485. source: "./media/characters/wild/regular.svg",
  26486. extra: 97.45 / 92,
  26487. bottom: 6.8 / 104.3
  26488. }
  26489. },
  26490. biggums: {
  26491. height: math.unit(8 + 6 / 12, "feet"),
  26492. weight: math.unit(425, "lb"),
  26493. name: "Biggums",
  26494. image: {
  26495. source: "./media/characters/wild/biggums.svg",
  26496. extra: 97.45 / 92,
  26497. bottom: 7.5 / 132.34
  26498. }
  26499. },
  26500. mawRegular: {
  26501. height: math.unit(1.24, "feet"),
  26502. name: "Maw (Regular)",
  26503. image: {
  26504. source: "./media/characters/wild/maw.svg"
  26505. }
  26506. },
  26507. mawBiggums: {
  26508. height: math.unit(1.47, "feet"),
  26509. name: "Maw (Biggums)",
  26510. image: {
  26511. source: "./media/characters/wild/maw.svg"
  26512. }
  26513. },
  26514. },
  26515. [
  26516. {
  26517. name: "Normal",
  26518. height: math.unit(7 + 3 / 12, "feet"),
  26519. default: true
  26520. },
  26521. ]
  26522. ))
  26523. characterMakers.push(() => makeCharacter(
  26524. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26525. {
  26526. front: {
  26527. height: math.unit(2.5, "meters"),
  26528. weight: math.unit(200, "kg"),
  26529. name: "Front",
  26530. image: {
  26531. source: "./media/characters/vidar/front.svg",
  26532. extra: 2994 / 2795,
  26533. bottom: 56 / 3061
  26534. }
  26535. },
  26536. back: {
  26537. height: math.unit(2.5, "meters"),
  26538. weight: math.unit(200, "kg"),
  26539. name: "Back",
  26540. image: {
  26541. source: "./media/characters/vidar/back.svg",
  26542. extra: 3131 / 2928,
  26543. bottom: 13.5 / 3141.5
  26544. }
  26545. },
  26546. feral: {
  26547. height: math.unit(2.5, "meters"),
  26548. weight: math.unit(2000, "kg"),
  26549. name: "Feral",
  26550. image: {
  26551. source: "./media/characters/vidar/feral.svg",
  26552. extra: 2790 / 1765,
  26553. bottom: 6 / 2796
  26554. }
  26555. },
  26556. },
  26557. [
  26558. {
  26559. name: "Normal",
  26560. height: math.unit(2.5, "meters"),
  26561. default: true
  26562. },
  26563. {
  26564. name: "Macro",
  26565. height: math.unit(100, "meters")
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(5 + 9 / 12, "feet"),
  26574. weight: math.unit(120, "lb"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/ash/front.svg",
  26578. extra: 2189 / 1961,
  26579. bottom: 5.2 / 2194
  26580. }
  26581. },
  26582. },
  26583. [
  26584. {
  26585. name: "Normal",
  26586. height: math.unit(5 + 9 / 12, "feet"),
  26587. default: true
  26588. },
  26589. ]
  26590. ))
  26591. characterMakers.push(() => makeCharacter(
  26592. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26593. {
  26594. front: {
  26595. height: math.unit(9, "feet"),
  26596. weight: math.unit(10000, "lb"),
  26597. name: "Front",
  26598. image: {
  26599. source: "./media/characters/gygabite/front.svg",
  26600. bottom: 31.7 / 537.8,
  26601. extra: 505 / 370
  26602. }
  26603. },
  26604. },
  26605. [
  26606. {
  26607. name: "Normal",
  26608. height: math.unit(9, "feet"),
  26609. default: true
  26610. },
  26611. ]
  26612. ))
  26613. characterMakers.push(() => makeCharacter(
  26614. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26615. {
  26616. front: {
  26617. height: math.unit(12, "feet"),
  26618. weight: math.unit(35000, "lb"),
  26619. name: "Front",
  26620. image: {
  26621. source: "./media/characters/p0tat0/front.svg",
  26622. extra: 1065 / 921,
  26623. bottom: 55.7 / 1121.25
  26624. }
  26625. },
  26626. },
  26627. [
  26628. {
  26629. name: "Normal",
  26630. height: math.unit(12, "feet"),
  26631. default: true
  26632. },
  26633. ]
  26634. ))
  26635. characterMakers.push(() => makeCharacter(
  26636. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26637. {
  26638. side: {
  26639. height: math.unit(6.5, "feet"),
  26640. weight: math.unit(800, "lb"),
  26641. name: "Side",
  26642. image: {
  26643. source: "./media/characters/dusk/side.svg",
  26644. extra: 615 / 373,
  26645. bottom: 53 / 664
  26646. }
  26647. },
  26648. sitting: {
  26649. height: math.unit(7, "feet"),
  26650. weight: math.unit(800, "lb"),
  26651. name: "Sitting",
  26652. image: {
  26653. source: "./media/characters/dusk/sitting.svg",
  26654. extra: 753 / 425,
  26655. bottom: 33 / 774
  26656. }
  26657. },
  26658. head: {
  26659. height: math.unit(6.1, "feet"),
  26660. name: "Head",
  26661. image: {
  26662. source: "./media/characters/dusk/head.svg"
  26663. }
  26664. },
  26665. },
  26666. [
  26667. {
  26668. name: "Normal",
  26669. height: math.unit(7, "feet"),
  26670. default: true
  26671. },
  26672. ]
  26673. ))
  26674. characterMakers.push(() => makeCharacter(
  26675. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26676. {
  26677. front: {
  26678. height: math.unit(15, "feet"),
  26679. weight: math.unit(7000, "lb"),
  26680. name: "Front",
  26681. image: {
  26682. source: "./media/characters/jay-direwolf/front.svg",
  26683. extra: 1810 / 1732,
  26684. bottom: 66 / 1892
  26685. }
  26686. },
  26687. },
  26688. [
  26689. {
  26690. name: "Normal",
  26691. height: math.unit(15, "feet"),
  26692. default: true
  26693. },
  26694. ]
  26695. ))
  26696. characterMakers.push(() => makeCharacter(
  26697. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26698. {
  26699. front: {
  26700. height: math.unit(4 + 9 / 12, "feet"),
  26701. weight: math.unit(130, "lb"),
  26702. name: "Front",
  26703. image: {
  26704. source: "./media/characters/anchovie/front.svg",
  26705. extra: 382 / 350,
  26706. bottom: 25 / 409
  26707. }
  26708. },
  26709. back: {
  26710. height: math.unit(4 + 9 / 12, "feet"),
  26711. weight: math.unit(130, "lb"),
  26712. name: "Back",
  26713. image: {
  26714. source: "./media/characters/anchovie/back.svg",
  26715. extra: 385 / 352,
  26716. bottom: 16.6 / 402
  26717. }
  26718. },
  26719. frontDressed: {
  26720. height: math.unit(4 + 9 / 12, "feet"),
  26721. weight: math.unit(130, "lb"),
  26722. name: "Front (Dressed)",
  26723. image: {
  26724. source: "./media/characters/anchovie/front-dressed.svg",
  26725. extra: 382 / 350,
  26726. bottom: 25 / 409
  26727. }
  26728. },
  26729. backDressed: {
  26730. height: math.unit(4 + 9 / 12, "feet"),
  26731. weight: math.unit(130, "lb"),
  26732. name: "Back (Dressed)",
  26733. image: {
  26734. source: "./media/characters/anchovie/back-dressed.svg",
  26735. extra: 385 / 352,
  26736. bottom: 16.6 / 402
  26737. }
  26738. },
  26739. },
  26740. [
  26741. {
  26742. name: "Micro",
  26743. height: math.unit(6.4, "inches")
  26744. },
  26745. {
  26746. name: "Normal",
  26747. height: math.unit(4 + 9 / 12, "feet"),
  26748. default: true
  26749. },
  26750. ]
  26751. ))
  26752. characterMakers.push(() => makeCharacter(
  26753. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26754. {
  26755. front: {
  26756. height: math.unit(2, "meters"),
  26757. weight: math.unit(180, "lb"),
  26758. name: "Front",
  26759. image: {
  26760. source: "./media/characters/acidrenamon/front.svg",
  26761. extra: 987 / 890,
  26762. bottom: 22.8 / 1009
  26763. }
  26764. },
  26765. back: {
  26766. height: math.unit(2, "meters"),
  26767. weight: math.unit(180, "lb"),
  26768. name: "Back",
  26769. image: {
  26770. source: "./media/characters/acidrenamon/back.svg",
  26771. extra: 983 / 891,
  26772. bottom: 8.4 / 992
  26773. }
  26774. },
  26775. head: {
  26776. height: math.unit(1.92, "feet"),
  26777. name: "Head",
  26778. image: {
  26779. source: "./media/characters/acidrenamon/head.svg"
  26780. }
  26781. },
  26782. rump: {
  26783. height: math.unit(1.72, "feet"),
  26784. name: "Rump",
  26785. image: {
  26786. source: "./media/characters/acidrenamon/rump.svg"
  26787. }
  26788. },
  26789. tail: {
  26790. height: math.unit(4.2, "feet"),
  26791. name: "Tail",
  26792. image: {
  26793. source: "./media/characters/acidrenamon/tail.svg"
  26794. }
  26795. },
  26796. },
  26797. [
  26798. {
  26799. name: "Normal",
  26800. height: math.unit(2, "meters"),
  26801. default: true
  26802. },
  26803. {
  26804. name: "Minimacro",
  26805. height: math.unit(7, "meters")
  26806. },
  26807. {
  26808. name: "Macro",
  26809. height: math.unit(200, "meters")
  26810. },
  26811. {
  26812. name: "Gigamacro",
  26813. height: math.unit(0.2, "earths")
  26814. },
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26819. {
  26820. front: {
  26821. height: math.unit(6, "feet"),
  26822. weight: math.unit(150, "lb"),
  26823. name: "Front",
  26824. image: {
  26825. source: "./media/characters/kenzie-lee/front.svg",
  26826. extra: 1525 / 1465,
  26827. bottom: 45 / 1570
  26828. }
  26829. },
  26830. side: {
  26831. height: math.unit(6, "feet"),
  26832. weight: math.unit(150, "lb"),
  26833. name: "Side",
  26834. image: {
  26835. source: "./media/characters/kenzie-lee/side.svg",
  26836. extra: 5505 / 5383,
  26837. bottom: 60 / 5573
  26838. }
  26839. },
  26840. paw: {
  26841. height: math.unit(0.57, "feet"),
  26842. name: "Paw",
  26843. image: {
  26844. source: "./media/characters/kenzie-lee/paw.svg"
  26845. }
  26846. },
  26847. },
  26848. [
  26849. {
  26850. name: "Normal",
  26851. height: math.unit(152, "feet"),
  26852. default: true
  26853. },
  26854. {
  26855. name: "Megamacro",
  26856. height: math.unit(7, "miles")
  26857. },
  26858. {
  26859. name: "Gigamacro",
  26860. height: math.unit(8000, "miles")
  26861. },
  26862. ]
  26863. ))
  26864. characterMakers.push(() => makeCharacter(
  26865. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26866. {
  26867. side: {
  26868. height: math.unit(6, "feet"),
  26869. weight: math.unit(150, "lb"),
  26870. name: "Side",
  26871. image: {
  26872. source: "./media/characters/withers/side.svg",
  26873. extra: 1830 / 1728,
  26874. bottom: 96 / 1927
  26875. }
  26876. },
  26877. front: {
  26878. height: math.unit(6, "feet"),
  26879. weight: math.unit(150, "lb"),
  26880. name: "Front",
  26881. image: {
  26882. source: "./media/characters/withers/front.svg",
  26883. extra: 1514 / 1438,
  26884. bottom: 118 / 1632
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Macro",
  26891. height: math.unit(168, "feet"),
  26892. default: true
  26893. },
  26894. {
  26895. name: "Megamacro",
  26896. height: math.unit(15, "miles")
  26897. }
  26898. ]
  26899. ))
  26900. characterMakers.push(() => makeCharacter(
  26901. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26902. {
  26903. front: {
  26904. height: math.unit(6 + 7 / 12, "feet"),
  26905. weight: math.unit(250, "lb"),
  26906. name: "Front",
  26907. image: {
  26908. source: "./media/characters/nemoskii/front.svg",
  26909. extra: 2270 / 1734,
  26910. bottom: 86 / 2354
  26911. }
  26912. },
  26913. back: {
  26914. height: math.unit(6 + 7 / 12, "feet"),
  26915. weight: math.unit(250, "lb"),
  26916. name: "Back",
  26917. image: {
  26918. source: "./media/characters/nemoskii/back.svg",
  26919. extra: 1845 / 1788,
  26920. bottom: 10.5 / 1852
  26921. }
  26922. },
  26923. head: {
  26924. height: math.unit(1.31, "feet"),
  26925. name: "Head",
  26926. image: {
  26927. source: "./media/characters/nemoskii/head.svg"
  26928. }
  26929. },
  26930. },
  26931. [
  26932. {
  26933. name: "Micro",
  26934. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26935. },
  26936. {
  26937. name: "Normal",
  26938. height: math.unit(6 + 7 / 12, "feet"),
  26939. default: true
  26940. },
  26941. {
  26942. name: "Macro",
  26943. height: math.unit((6 + 7 / 12) * 150, "feet")
  26944. },
  26945. {
  26946. name: "Macro+",
  26947. height: math.unit((6 + 7 / 12) * 500, "feet")
  26948. },
  26949. {
  26950. name: "Megamacro",
  26951. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26952. },
  26953. ]
  26954. ))
  26955. characterMakers.push(() => makeCharacter(
  26956. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26957. {
  26958. front: {
  26959. height: math.unit(1, "mile"),
  26960. weight: math.unit(265261.9, "lb"),
  26961. name: "Front",
  26962. image: {
  26963. source: "./media/characters/shui/front.svg",
  26964. extra: 1633 / 1564,
  26965. bottom: 91.5 / 1726
  26966. }
  26967. },
  26968. },
  26969. [
  26970. {
  26971. name: "Macro",
  26972. height: math.unit(1, "mile"),
  26973. default: true
  26974. },
  26975. ]
  26976. ))
  26977. characterMakers.push(() => makeCharacter(
  26978. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26979. {
  26980. front: {
  26981. height: math.unit(12 + 6 / 12, "feet"),
  26982. weight: math.unit(1342, "lb"),
  26983. name: "Front",
  26984. image: {
  26985. source: "./media/characters/arokh-takakura/front.svg",
  26986. extra: 1089 / 1043,
  26987. bottom: 77.4 / 1176.7
  26988. }
  26989. },
  26990. back: {
  26991. height: math.unit(12 + 6 / 12, "feet"),
  26992. weight: math.unit(1342, "lb"),
  26993. name: "Back",
  26994. image: {
  26995. source: "./media/characters/arokh-takakura/back.svg",
  26996. extra: 1046 / 1019,
  26997. bottom: 102 / 1150
  26998. }
  26999. },
  27000. },
  27001. [
  27002. {
  27003. name: "Big",
  27004. height: math.unit(12 + 6 / 12, "feet"),
  27005. default: true
  27006. },
  27007. ]
  27008. ))
  27009. characterMakers.push(() => makeCharacter(
  27010. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27011. {
  27012. front: {
  27013. height: math.unit(5 + 6 / 12, "feet"),
  27014. weight: math.unit(150, "lb"),
  27015. name: "Front",
  27016. image: {
  27017. source: "./media/characters/theo/front.svg",
  27018. extra: 1184 / 1131,
  27019. bottom: 7.4 / 1191
  27020. }
  27021. },
  27022. },
  27023. [
  27024. {
  27025. name: "Micro",
  27026. height: math.unit(5, "inches")
  27027. },
  27028. {
  27029. name: "Normal",
  27030. height: math.unit(5 + 6 / 12, "feet"),
  27031. default: true
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(5 + 9 / 12, "feet"),
  27040. weight: math.unit(130, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/cecelia-swift/front.svg",
  27044. extra: 502 / 484,
  27045. bottom: 23 / 523
  27046. }
  27047. },
  27048. back: {
  27049. height: math.unit(5 + 9 / 12, "feet"),
  27050. weight: math.unit(130, "lb"),
  27051. name: "Back",
  27052. image: {
  27053. source: "./media/characters/cecelia-swift/back.svg",
  27054. extra: 499 / 485,
  27055. bottom: 12 / 511
  27056. }
  27057. },
  27058. head: {
  27059. height: math.unit(0.90, "feet"),
  27060. name: "Head",
  27061. image: {
  27062. source: "./media/characters/cecelia-swift/head.svg"
  27063. }
  27064. },
  27065. rump: {
  27066. height: math.unit(1.75, "feet"),
  27067. name: "Rump",
  27068. image: {
  27069. source: "./media/characters/cecelia-swift/rump.svg"
  27070. }
  27071. },
  27072. },
  27073. [
  27074. {
  27075. name: "Normal",
  27076. height: math.unit(5 + 9 / 12, "feet"),
  27077. default: true
  27078. },
  27079. {
  27080. name: "Big",
  27081. height: math.unit(50, "feet")
  27082. },
  27083. {
  27084. name: "Macro",
  27085. height: math.unit(100, "feet")
  27086. },
  27087. {
  27088. name: "Macro+",
  27089. height: math.unit(500, "feet")
  27090. },
  27091. {
  27092. name: "Macro++",
  27093. height: math.unit(1000, "feet")
  27094. },
  27095. ]
  27096. ))
  27097. characterMakers.push(() => makeCharacter(
  27098. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27099. {
  27100. front: {
  27101. height: math.unit(6, "feet"),
  27102. weight: math.unit(150, "lb"),
  27103. name: "Front",
  27104. image: {
  27105. source: "./media/characters/kaunan/front.svg",
  27106. extra: 2890 / 2523,
  27107. bottom: 49 / 2939
  27108. }
  27109. },
  27110. },
  27111. [
  27112. {
  27113. name: "Macro",
  27114. height: math.unit(150, "feet"),
  27115. default: true
  27116. },
  27117. ]
  27118. ))
  27119. characterMakers.push(() => makeCharacter(
  27120. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27121. {
  27122. front: {
  27123. height: math.unit(175, "cm"),
  27124. weight: math.unit(60, "kg"),
  27125. name: "Front",
  27126. image: {
  27127. source: "./media/characters/fei/front.svg",
  27128. extra: 2581 / 2400,
  27129. bottom: 82.2 / 2663
  27130. }
  27131. },
  27132. },
  27133. [
  27134. {
  27135. name: "Mortal",
  27136. height: math.unit(175, "cm")
  27137. },
  27138. {
  27139. name: "Normal",
  27140. height: math.unit(3500, "m"),
  27141. default: true
  27142. },
  27143. {
  27144. name: "Stroll",
  27145. height: math.unit(17.5, "km")
  27146. },
  27147. {
  27148. name: "Showoff",
  27149. height: math.unit(175, "km")
  27150. },
  27151. ]
  27152. ))
  27153. characterMakers.push(() => makeCharacter(
  27154. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27155. {
  27156. front: {
  27157. height: math.unit(7, "feet"),
  27158. weight: math.unit(1000, "kg"),
  27159. name: "Front",
  27160. image: {
  27161. source: "./media/characters/edrax/front.svg",
  27162. extra: 2838 / 2550,
  27163. bottom: 130 / 2968
  27164. }
  27165. },
  27166. },
  27167. [
  27168. {
  27169. name: "Small",
  27170. height: math.unit(7, "feet")
  27171. },
  27172. {
  27173. name: "Normal",
  27174. height: math.unit(1500, "meters")
  27175. },
  27176. {
  27177. name: "Mega",
  27178. height: math.unit(12000000, "km"),
  27179. default: true
  27180. },
  27181. {
  27182. name: "Megamacro",
  27183. height: math.unit(10600000, "lightyears")
  27184. },
  27185. {
  27186. name: "Hypermacro",
  27187. height: math.unit(256, "yottameters")
  27188. },
  27189. ]
  27190. ))
  27191. characterMakers.push(() => makeCharacter(
  27192. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27193. {
  27194. front: {
  27195. height: math.unit(10, "feet"),
  27196. weight: math.unit(750, "lb"),
  27197. name: "Front",
  27198. image: {
  27199. source: "./media/characters/clove/front.svg",
  27200. extra: 2031 / 1860,
  27201. bottom: 47.8 / 2080
  27202. }
  27203. },
  27204. back: {
  27205. height: math.unit(10, "feet"),
  27206. weight: math.unit(750, "lb"),
  27207. name: "Back",
  27208. image: {
  27209. source: "./media/characters/clove/back.svg",
  27210. extra: 2025 / 1859,
  27211. bottom: 46 / 2071
  27212. }
  27213. },
  27214. },
  27215. [
  27216. {
  27217. name: "Normal",
  27218. height: math.unit(10, "feet"),
  27219. default: true
  27220. },
  27221. ]
  27222. ))
  27223. characterMakers.push(() => makeCharacter(
  27224. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27225. {
  27226. front: {
  27227. height: math.unit(4, "feet"),
  27228. weight: math.unit(50, "lb"),
  27229. name: "Front",
  27230. image: {
  27231. source: "./media/characters/alex-rabbit/front.svg",
  27232. extra: 507 / 458,
  27233. bottom: 18.5 / 527
  27234. }
  27235. },
  27236. back: {
  27237. height: math.unit(4, "feet"),
  27238. weight: math.unit(50, "lb"),
  27239. name: "Back",
  27240. image: {
  27241. source: "./media/characters/alex-rabbit/back.svg",
  27242. extra: 502 / 460,
  27243. bottom: 18.9 / 521
  27244. }
  27245. },
  27246. },
  27247. [
  27248. {
  27249. name: "Normal",
  27250. height: math.unit(4, "feet"),
  27251. default: true
  27252. },
  27253. ]
  27254. ))
  27255. characterMakers.push(() => makeCharacter(
  27256. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27257. {
  27258. front: {
  27259. height: math.unit(1 + 3 / 12, "feet"),
  27260. weight: math.unit(80, "lb"),
  27261. name: "Front",
  27262. image: {
  27263. source: "./media/characters/zander-rose/front.svg",
  27264. extra: 916 / 797,
  27265. bottom: 17 / 933
  27266. }
  27267. },
  27268. back: {
  27269. height: math.unit(1 + 3 / 12, "feet"),
  27270. weight: math.unit(80, "lb"),
  27271. name: "Back",
  27272. image: {
  27273. source: "./media/characters/zander-rose/back.svg",
  27274. extra: 903 / 779,
  27275. bottom: 31 / 934
  27276. }
  27277. },
  27278. },
  27279. [
  27280. {
  27281. name: "Normal",
  27282. height: math.unit(1 + 3 / 12, "feet"),
  27283. default: true
  27284. },
  27285. ]
  27286. ))
  27287. characterMakers.push(() => makeCharacter(
  27288. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27289. {
  27290. anthro: {
  27291. height: math.unit(6, "feet"),
  27292. weight: math.unit(150, "lb"),
  27293. name: "Anthro",
  27294. image: {
  27295. source: "./media/characters/razz/anthro.svg",
  27296. extra: 1437 / 1343,
  27297. bottom: 48 / 1485
  27298. }
  27299. },
  27300. feral: {
  27301. height: math.unit(6, "feet"),
  27302. weight: math.unit(150, "lb"),
  27303. name: "Feral",
  27304. image: {
  27305. source: "./media/characters/razz/feral.svg",
  27306. extra: 2569 / 1385,
  27307. bottom: 95 / 2664
  27308. }
  27309. },
  27310. },
  27311. [
  27312. {
  27313. name: "Normal",
  27314. height: math.unit(6, "feet"),
  27315. default: true
  27316. },
  27317. ]
  27318. ))
  27319. characterMakers.push(() => makeCharacter(
  27320. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27321. {
  27322. front: {
  27323. height: math.unit(9 + 4 / 12, "feet"),
  27324. weight: math.unit(500, "lb"),
  27325. name: "Front",
  27326. image: {
  27327. source: "./media/characters/morrigan/front.svg",
  27328. extra: 2707 / 2579,
  27329. bottom: 156 / 2863
  27330. }
  27331. },
  27332. },
  27333. [
  27334. {
  27335. name: "Normal",
  27336. height: math.unit(9 + 4 / 12, "feet"),
  27337. default: true
  27338. },
  27339. ]
  27340. ))
  27341. characterMakers.push(() => makeCharacter(
  27342. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27343. {
  27344. front: {
  27345. height: math.unit(5, "stories"),
  27346. weight: math.unit(4000, "lb"),
  27347. name: "Front",
  27348. image: {
  27349. source: "./media/characters/jenene/front.svg",
  27350. extra: 1780 / 1710,
  27351. bottom: 57 / 1837
  27352. }
  27353. },
  27354. },
  27355. [
  27356. {
  27357. name: "Normal",
  27358. height: math.unit(5, "stories"),
  27359. default: true
  27360. },
  27361. ]
  27362. ))
  27363. characterMakers.push(() => makeCharacter(
  27364. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27365. {
  27366. front: {
  27367. height: math.unit(6, "feet"),
  27368. weight: math.unit(150, "lb"),
  27369. name: "Front",
  27370. image: {
  27371. source: "./media/characters/vix-archaser/front.svg",
  27372. extra: 2767 / 2562,
  27373. bottom: 36 / 2803
  27374. }
  27375. },
  27376. },
  27377. [
  27378. {
  27379. name: "Micro",
  27380. height: math.unit(1, "foot")
  27381. },
  27382. {
  27383. name: "Normal",
  27384. height: math.unit(6 + 5 / 12, "feet")
  27385. },
  27386. {
  27387. name: "Minimacro",
  27388. height: math.unit(500, "feet")
  27389. },
  27390. {
  27391. name: "Macro",
  27392. height: math.unit(4, "miles")
  27393. },
  27394. {
  27395. name: "Megamacro",
  27396. height: math.unit(250, "miles"),
  27397. default: true
  27398. },
  27399. {
  27400. name: "Gigamacro",
  27401. height: math.unit(1, "universe")
  27402. },
  27403. {
  27404. name: "Endgame",
  27405. height: math.unit(100, "multiverses")
  27406. }
  27407. ]
  27408. ))
  27409. characterMakers.push(() => makeCharacter(
  27410. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27411. {
  27412. taurSfw: {
  27413. height: math.unit(10, "meters"),
  27414. weight: math.unit(17500, "kg"),
  27415. name: "Taur",
  27416. image: {
  27417. source: "./media/characters/faey/taur-sfw.svg",
  27418. extra: 1200 / 968,
  27419. bottom: 41 / 1241
  27420. }
  27421. },
  27422. chestmaw: {
  27423. height: math.unit(2.01, "meters"),
  27424. name: "Chestmaw",
  27425. image: {
  27426. source: "./media/characters/faey/chestmaw.svg"
  27427. }
  27428. },
  27429. foot: {
  27430. height: math.unit(2.43, "meters"),
  27431. name: "Foot",
  27432. image: {
  27433. source: "./media/characters/faey/foot.svg"
  27434. }
  27435. },
  27436. jaws: {
  27437. height: math.unit(1.66, "meters"),
  27438. name: "Jaws",
  27439. image: {
  27440. source: "./media/characters/faey/jaws.svg"
  27441. }
  27442. },
  27443. tongues: {
  27444. height: math.unit(2.01, "meters"),
  27445. name: "Tongues",
  27446. image: {
  27447. source: "./media/characters/faey/tongues.svg"
  27448. }
  27449. },
  27450. },
  27451. [
  27452. {
  27453. name: "Small",
  27454. height: math.unit(10, "meters"),
  27455. default: true
  27456. },
  27457. {
  27458. name: "Big",
  27459. height: math.unit(500000, "km")
  27460. },
  27461. ]
  27462. ))
  27463. characterMakers.push(() => makeCharacter(
  27464. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27465. {
  27466. front: {
  27467. height: math.unit(7, "feet"),
  27468. weight: math.unit(275, "lb"),
  27469. name: "Front",
  27470. image: {
  27471. source: "./media/characters/roku/front.svg",
  27472. extra: 903 / 878,
  27473. bottom: 37 / 940
  27474. }
  27475. },
  27476. },
  27477. [
  27478. {
  27479. name: "Normal",
  27480. height: math.unit(7, "feet"),
  27481. default: true
  27482. },
  27483. {
  27484. name: "Macro",
  27485. height: math.unit(500, "feet")
  27486. },
  27487. {
  27488. name: "Megamacro",
  27489. height: math.unit(200, "miles")
  27490. },
  27491. ]
  27492. ))
  27493. characterMakers.push(() => makeCharacter(
  27494. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27495. {
  27496. front: {
  27497. height: math.unit(6 + 2 / 12, "feet"),
  27498. weight: math.unit(150, "lb"),
  27499. name: "Front",
  27500. image: {
  27501. source: "./media/characters/lira/front.svg",
  27502. extra: 1727 / 1605,
  27503. bottom: 26 / 1753
  27504. }
  27505. },
  27506. back: {
  27507. height: math.unit(6 + 2 / 12, "feet"),
  27508. weight: math.unit(150, "lb"),
  27509. name: "Back",
  27510. image: {
  27511. source: "./media/characters/lira/back.svg",
  27512. extra: 1713 / 159,
  27513. bottom: 20 / 1733
  27514. }
  27515. },
  27516. hand: {
  27517. height: math.unit(0.75, "feet"),
  27518. name: "Hand",
  27519. image: {
  27520. source: "./media/characters/lira/hand.svg"
  27521. }
  27522. },
  27523. maw: {
  27524. height: math.unit(0.65, "feet"),
  27525. name: "Maw",
  27526. image: {
  27527. source: "./media/characters/lira/maw.svg"
  27528. }
  27529. },
  27530. pawDigi: {
  27531. height: math.unit(1.6, "feet"),
  27532. name: "Paw Digi",
  27533. image: {
  27534. source: "./media/characters/lira/paw-digi.svg"
  27535. }
  27536. },
  27537. pawPlanti: {
  27538. height: math.unit(1.4, "feet"),
  27539. name: "Paw Planti",
  27540. image: {
  27541. source: "./media/characters/lira/paw-planti.svg"
  27542. }
  27543. },
  27544. },
  27545. [
  27546. {
  27547. name: "Normal",
  27548. height: math.unit(6 + 2 / 12, "feet"),
  27549. default: true
  27550. },
  27551. {
  27552. name: "Macro",
  27553. height: math.unit(100, "feet")
  27554. },
  27555. {
  27556. name: "Macro²",
  27557. height: math.unit(1600, "feet")
  27558. },
  27559. {
  27560. name: "Planetary",
  27561. height: math.unit(20, "earths")
  27562. },
  27563. ]
  27564. ))
  27565. characterMakers.push(() => makeCharacter(
  27566. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27567. {
  27568. front: {
  27569. height: math.unit(6, "feet"),
  27570. weight: math.unit(150, "lb"),
  27571. name: "Front",
  27572. image: {
  27573. source: "./media/characters/hadjet/front.svg",
  27574. extra: 1480 / 1346,
  27575. bottom: 26 / 1506
  27576. }
  27577. },
  27578. frontNsfw: {
  27579. height: math.unit(6, "feet"),
  27580. weight: math.unit(150, "lb"),
  27581. name: "Front (NSFW)",
  27582. image: {
  27583. source: "./media/characters/hadjet/front-nsfw.svg",
  27584. extra: 1440 / 1358,
  27585. bottom: 52 / 1492
  27586. }
  27587. },
  27588. },
  27589. [
  27590. {
  27591. name: "Macro",
  27592. height: math.unit(10, "stories"),
  27593. default: true
  27594. },
  27595. {
  27596. name: "Megamacro",
  27597. height: math.unit(1.5, "miles")
  27598. },
  27599. {
  27600. name: "Megamacro+",
  27601. height: math.unit(5, "miles")
  27602. },
  27603. ]
  27604. ))
  27605. characterMakers.push(() => makeCharacter(
  27606. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27607. {
  27608. side: {
  27609. height: math.unit(106, "feet"),
  27610. weight: math.unit(500, "tonnes"),
  27611. name: "Side",
  27612. image: {
  27613. source: "./media/characters/kodran/side.svg",
  27614. extra: 553 / 480,
  27615. bottom: 33 / 586
  27616. }
  27617. },
  27618. front: {
  27619. height: math.unit(132, "feet"),
  27620. weight: math.unit(500, "tonnes"),
  27621. name: "Front",
  27622. image: {
  27623. source: "./media/characters/kodran/front.svg",
  27624. extra: 667 / 643,
  27625. bottom: 42 / 709
  27626. }
  27627. },
  27628. flying: {
  27629. height: math.unit(350, "feet"),
  27630. weight: math.unit(500, "tonnes"),
  27631. name: "Flying",
  27632. image: {
  27633. source: "./media/characters/kodran/flying.svg"
  27634. }
  27635. },
  27636. foot: {
  27637. height: math.unit(33, "feet"),
  27638. name: "Foot",
  27639. image: {
  27640. source: "./media/characters/kodran/foot.svg"
  27641. }
  27642. },
  27643. footFront: {
  27644. height: math.unit(19, "feet"),
  27645. name: "Foot (Front)",
  27646. image: {
  27647. source: "./media/characters/kodran/foot-front.svg",
  27648. extra: 261 / 261,
  27649. bottom: 91 / 352
  27650. }
  27651. },
  27652. headFront: {
  27653. height: math.unit(53, "feet"),
  27654. name: "Head (Front)",
  27655. image: {
  27656. source: "./media/characters/kodran/head-front.svg"
  27657. }
  27658. },
  27659. headSide: {
  27660. height: math.unit(65, "feet"),
  27661. name: "Head (Side)",
  27662. image: {
  27663. source: "./media/characters/kodran/head-side.svg"
  27664. }
  27665. },
  27666. throat: {
  27667. height: math.unit(79, "feet"),
  27668. name: "Throat",
  27669. image: {
  27670. source: "./media/characters/kodran/throat.svg"
  27671. }
  27672. },
  27673. },
  27674. [
  27675. {
  27676. name: "Large",
  27677. height: math.unit(106, "feet"),
  27678. default: true
  27679. },
  27680. ]
  27681. ))
  27682. characterMakers.push(() => makeCharacter(
  27683. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27684. {
  27685. side: {
  27686. height: math.unit(11, "feet"),
  27687. weight: math.unit(150, "lb"),
  27688. name: "Side",
  27689. image: {
  27690. source: "./media/characters/pyxaron/side.svg",
  27691. extra: 305 / 195,
  27692. bottom: 17 / 322
  27693. }
  27694. },
  27695. },
  27696. [
  27697. {
  27698. name: "Normal",
  27699. height: math.unit(11, "feet"),
  27700. default: true
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27706. {
  27707. front: {
  27708. height: math.unit(6, "feet"),
  27709. weight: math.unit(150, "lb"),
  27710. name: "Front",
  27711. image: {
  27712. source: "./media/characters/meep/front.svg",
  27713. extra: 88 / 80,
  27714. bottom: 6 / 94
  27715. }
  27716. },
  27717. },
  27718. [
  27719. {
  27720. name: "Fun Sized",
  27721. height: math.unit(2, "inches"),
  27722. default: true
  27723. },
  27724. {
  27725. name: "Friend Sized",
  27726. height: math.unit(8, "inches")
  27727. },
  27728. ]
  27729. ))
  27730. characterMakers.push(() => makeCharacter(
  27731. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27732. {
  27733. front: {
  27734. height: math.unit(15, "feet"),
  27735. weight: math.unit(2500, "lb"),
  27736. name: "Front",
  27737. image: {
  27738. source: "./media/characters/holly-rabbit/front.svg",
  27739. extra: 1433 / 1233,
  27740. bottom: 125 / 1558
  27741. }
  27742. },
  27743. dick: {
  27744. height: math.unit(4.6, "feet"),
  27745. name: "Dick",
  27746. image: {
  27747. source: "./media/characters/holly-rabbit/dick.svg"
  27748. }
  27749. },
  27750. },
  27751. [
  27752. {
  27753. name: "Normal",
  27754. height: math.unit(15, "feet"),
  27755. default: true
  27756. },
  27757. {
  27758. name: "Macro",
  27759. height: math.unit(250, "feet")
  27760. },
  27761. {
  27762. name: "Macro+",
  27763. height: math.unit(2500, "feet")
  27764. },
  27765. ]
  27766. ))
  27767. characterMakers.push(() => makeCharacter(
  27768. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27769. {
  27770. front: {
  27771. height: math.unit(3.02, "meters"),
  27772. weight: math.unit(500, "kg"),
  27773. name: "Front",
  27774. image: {
  27775. source: "./media/characters/drena/front.svg",
  27776. extra: 282 / 243,
  27777. bottom: 8 / 290
  27778. }
  27779. },
  27780. side: {
  27781. height: math.unit(3.02, "meters"),
  27782. weight: math.unit(500, "kg"),
  27783. name: "Side",
  27784. image: {
  27785. source: "./media/characters/drena/side.svg",
  27786. extra: 280 / 245,
  27787. bottom: 10 / 290
  27788. }
  27789. },
  27790. back: {
  27791. height: math.unit(3.02, "meters"),
  27792. weight: math.unit(500, "kg"),
  27793. name: "Back",
  27794. image: {
  27795. source: "./media/characters/drena/back.svg",
  27796. extra: 278 / 243,
  27797. bottom: 2 / 280
  27798. }
  27799. },
  27800. foot: {
  27801. height: math.unit(0.75, "meters"),
  27802. name: "Foot",
  27803. image: {
  27804. source: "./media/characters/drena/foot.svg"
  27805. }
  27806. },
  27807. maw: {
  27808. height: math.unit(0.82, "meters"),
  27809. name: "Maw",
  27810. image: {
  27811. source: "./media/characters/drena/maw.svg"
  27812. }
  27813. },
  27814. rump: {
  27815. height: math.unit(0.93, "meters"),
  27816. name: "Rump",
  27817. image: {
  27818. source: "./media/characters/drena/rump.svg"
  27819. }
  27820. },
  27821. },
  27822. [
  27823. {
  27824. name: "Normal",
  27825. height: math.unit(3.02, "meters"),
  27826. default: true
  27827. },
  27828. ]
  27829. ))
  27830. characterMakers.push(() => makeCharacter(
  27831. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27832. {
  27833. front: {
  27834. height: math.unit(6 + 4 / 12, "feet"),
  27835. weight: math.unit(250, "lb"),
  27836. name: "Front",
  27837. image: {
  27838. source: "./media/characters/remmyzilla/front.svg",
  27839. extra: 4033 / 3588,
  27840. bottom: 123 / 4156
  27841. }
  27842. },
  27843. back: {
  27844. height: math.unit(6 + 4 / 12, "feet"),
  27845. weight: math.unit(250, "lb"),
  27846. name: "Back",
  27847. image: {
  27848. source: "./media/characters/remmyzilla/back.svg",
  27849. extra: 2687 / 2555,
  27850. bottom: 48 / 2735
  27851. }
  27852. },
  27853. frontFancy: {
  27854. height: math.unit(6 + 4 / 12, "feet"),
  27855. weight: math.unit(250, "lb"),
  27856. name: "Front (Fancy)",
  27857. image: {
  27858. source: "./media/characters/remmyzilla/front-fancy.svg",
  27859. extra: 4119 / 3419,
  27860. bottom: 237 / 4356
  27861. }
  27862. },
  27863. paw: {
  27864. height: math.unit(1.73, "feet"),
  27865. name: "Paw",
  27866. image: {
  27867. source: "./media/characters/remmyzilla/paw.svg"
  27868. }
  27869. },
  27870. maw: {
  27871. height: math.unit(1.73, "feet"),
  27872. name: "Maw",
  27873. image: {
  27874. source: "./media/characters/remmyzilla/maw.svg"
  27875. }
  27876. },
  27877. },
  27878. [
  27879. {
  27880. name: "Normal",
  27881. height: math.unit(6 + 4 / 12, "feet")
  27882. },
  27883. {
  27884. name: "Minimacro",
  27885. height: math.unit(12 + 8 / 12, "feet")
  27886. },
  27887. {
  27888. name: "Normal",
  27889. height: math.unit(640, "feet"),
  27890. default: true
  27891. },
  27892. {
  27893. name: "Megamacro",
  27894. height: math.unit(6400, "feet")
  27895. },
  27896. {
  27897. name: "Gigamacro",
  27898. height: math.unit(64000, "miles")
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(2.5, "meters"),
  27907. weight: math.unit(300, "lb"),
  27908. name: "Front",
  27909. image: {
  27910. source: "./media/characters/lawrence/front.svg",
  27911. extra: 357 / 335,
  27912. bottom: 30 / 387
  27913. }
  27914. },
  27915. back: {
  27916. height: math.unit(2.5, "meters"),
  27917. weight: math.unit(300, "lb"),
  27918. name: "Back",
  27919. image: {
  27920. source: "./media/characters/lawrence/back.svg",
  27921. extra: 357 / 338,
  27922. bottom: 16 / 373
  27923. }
  27924. },
  27925. head: {
  27926. height: math.unit(0.9, "meter"),
  27927. name: "Head",
  27928. image: {
  27929. source: "./media/characters/lawrence/head.svg"
  27930. }
  27931. },
  27932. maw: {
  27933. height: math.unit(0.7, "meter"),
  27934. name: "Maw",
  27935. image: {
  27936. source: "./media/characters/lawrence/maw.svg"
  27937. }
  27938. },
  27939. footBottom: {
  27940. height: math.unit(0.5, "meter"),
  27941. name: "Foot (Bottom)",
  27942. image: {
  27943. source: "./media/characters/lawrence/foot-bottom.svg"
  27944. }
  27945. },
  27946. footTop: {
  27947. height: math.unit(0.5, "meter"),
  27948. name: "Foot (Top)",
  27949. image: {
  27950. source: "./media/characters/lawrence/foot-top.svg"
  27951. }
  27952. },
  27953. },
  27954. [
  27955. {
  27956. name: "Normal",
  27957. height: math.unit(2.5, "meters"),
  27958. default: true
  27959. },
  27960. {
  27961. name: "Macro",
  27962. height: math.unit(95, "meters")
  27963. },
  27964. {
  27965. name: "Megamacro",
  27966. height: math.unit(150, "km")
  27967. },
  27968. ]
  27969. ))
  27970. characterMakers.push(() => makeCharacter(
  27971. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27972. {
  27973. front: {
  27974. height: math.unit(4.2, "meters"),
  27975. name: "Front",
  27976. image: {
  27977. source: "./media/characters/sydney/front.svg",
  27978. extra: 1323 / 1277,
  27979. bottom: 111 / 1434
  27980. }
  27981. },
  27982. },
  27983. [
  27984. {
  27985. name: "Normal",
  27986. height: math.unit(4.2, "meters"),
  27987. default: true
  27988. },
  27989. ]
  27990. ))
  27991. characterMakers.push(() => makeCharacter(
  27992. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27993. {
  27994. back: {
  27995. height: math.unit(201, "feet"),
  27996. name: "Back",
  27997. image: {
  27998. source: "./media/characters/jessica/back.svg",
  27999. extra: 273 / 259,
  28000. bottom: 7 / 280
  28001. }
  28002. },
  28003. },
  28004. [
  28005. {
  28006. name: "Normal",
  28007. height: math.unit(201, "feet"),
  28008. default: true
  28009. },
  28010. {
  28011. name: "Megamacro",
  28012. height: math.unit(8, "miles")
  28013. },
  28014. ]
  28015. ))
  28016. characterMakers.push(() => makeCharacter(
  28017. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28018. {
  28019. side: {
  28020. height: math.unit(320, "cm"),
  28021. name: "Side",
  28022. image: {
  28023. source: "./media/characters/victoria/side.svg",
  28024. extra: 778 / 346,
  28025. bottom: 56 / 834
  28026. }
  28027. },
  28028. maw: {
  28029. height: math.unit(5.9, "feet"),
  28030. name: "Maw",
  28031. image: {
  28032. source: "./media/characters/victoria/maw.svg"
  28033. }
  28034. },
  28035. },
  28036. [
  28037. {
  28038. name: "Normal",
  28039. height: math.unit(320, "cm"),
  28040. default: true
  28041. },
  28042. ]
  28043. ))
  28044. characterMakers.push(() => makeCharacter(
  28045. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28046. {
  28047. front: {
  28048. height: math.unit(5 + 6 / 12, "feet"),
  28049. name: "Front",
  28050. image: {
  28051. source: "./media/characters/cat/front.svg",
  28052. extra: 1374 / 1257,
  28053. bottom: 59 / 1433
  28054. }
  28055. },
  28056. back: {
  28057. height: math.unit(5 + 6 / 12, "feet"),
  28058. name: "Back",
  28059. image: {
  28060. source: "./media/characters/cat/back.svg",
  28061. extra: 1337 / 1226,
  28062. bottom: 34 / 1371
  28063. }
  28064. },
  28065. taur: {
  28066. height: math.unit(7, "feet"),
  28067. name: "Taur",
  28068. image: {
  28069. source: "./media/characters/cat/taur.svg",
  28070. extra: 1345 / 1231,
  28071. bottom: 66 / 1411
  28072. }
  28073. },
  28074. lucario: {
  28075. height: math.unit(4, "feet"),
  28076. name: "Lucario",
  28077. image: {
  28078. source: "./media/characters/cat/lucario.svg",
  28079. extra: 1470 / 1318,
  28080. bottom: 65 / 1535
  28081. }
  28082. },
  28083. megaLucario: {
  28084. height: math.unit(4, "feet"),
  28085. name: "Mega Lucario",
  28086. image: {
  28087. source: "./media/characters/cat/mega-lucario.svg",
  28088. extra: 1515 / 1319,
  28089. bottom: 63 / 1578
  28090. }
  28091. },
  28092. nickit: {
  28093. height: math.unit(2, "feet"),
  28094. name: "Nickit",
  28095. image: {
  28096. source: "./media/characters/cat/nickit.svg",
  28097. extra: 1980 / 1585,
  28098. bottom: 102 / 2082
  28099. }
  28100. },
  28101. lopunnyFront: {
  28102. height: math.unit(5, "feet"),
  28103. name: "Lopunny (Front)",
  28104. image: {
  28105. source: "./media/characters/cat/lopunny-front.svg",
  28106. extra: 1782 / 1469,
  28107. bottom: 38 / 1820
  28108. }
  28109. },
  28110. lopunnyBack: {
  28111. height: math.unit(5, "feet"),
  28112. name: "Lopunny (Back)",
  28113. image: {
  28114. source: "./media/characters/cat/lopunny-back.svg",
  28115. extra: 1660 / 1490,
  28116. bottom: 25 / 1685
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Really small",
  28123. height: math.unit(1, "nm")
  28124. },
  28125. {
  28126. name: "Micro",
  28127. height: math.unit(5, "inches")
  28128. },
  28129. {
  28130. name: "Normal",
  28131. height: math.unit(5 + 6 / 12, "feet"),
  28132. default: true
  28133. },
  28134. {
  28135. name: "Macro",
  28136. height: math.unit(50, "feet")
  28137. },
  28138. {
  28139. name: "Macro+",
  28140. height: math.unit(150, "feet")
  28141. },
  28142. {
  28143. name: "Megamacro",
  28144. height: math.unit(100, "miles")
  28145. },
  28146. ]
  28147. ))
  28148. characterMakers.push(() => makeCharacter(
  28149. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28150. {
  28151. front: {
  28152. height: math.unit(63.4, "meters"),
  28153. weight: math.unit(3.28349e+6, "kilograms"),
  28154. name: "Front",
  28155. image: {
  28156. source: "./media/characters/kirina-violet/front.svg",
  28157. extra: 2812 / 2725,
  28158. bottom: 0 / 2812
  28159. }
  28160. },
  28161. back: {
  28162. height: math.unit(63.4, "meters"),
  28163. weight: math.unit(3.28349e+6, "kilograms"),
  28164. name: "Back",
  28165. image: {
  28166. source: "./media/characters/kirina-violet/back.svg",
  28167. extra: 2812 / 2725,
  28168. bottom: 0 / 2812
  28169. }
  28170. },
  28171. mouth: {
  28172. height: math.unit(4.35, "meters"),
  28173. name: "Mouth",
  28174. image: {
  28175. source: "./media/characters/kirina-violet/mouth.svg"
  28176. }
  28177. },
  28178. paw: {
  28179. height: math.unit(5.6, "meters"),
  28180. name: "Paw",
  28181. image: {
  28182. source: "./media/characters/kirina-violet/paw.svg"
  28183. }
  28184. },
  28185. tail: {
  28186. height: math.unit(18, "meters"),
  28187. name: "Tail",
  28188. image: {
  28189. source: "./media/characters/kirina-violet/tail.svg"
  28190. }
  28191. },
  28192. },
  28193. [
  28194. {
  28195. name: "Macro",
  28196. height: math.unit(63.4, "meters"),
  28197. default: true
  28198. },
  28199. ]
  28200. ))
  28201. characterMakers.push(() => makeCharacter(
  28202. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28203. {
  28204. front: {
  28205. height: math.unit(60, "feet"),
  28206. name: "Front",
  28207. image: {
  28208. source: "./media/characters/cat-gigachu/front.svg",
  28209. extra: 1024 / 780,
  28210. bottom: 23 / 1047
  28211. }
  28212. },
  28213. back: {
  28214. height: math.unit(60, "feet"),
  28215. name: "Back",
  28216. image: {
  28217. source: "./media/characters/cat-gigachu/back.svg",
  28218. extra: 1024 / 780,
  28219. bottom: 23 / 1047
  28220. }
  28221. },
  28222. },
  28223. [
  28224. {
  28225. name: "Dynamax",
  28226. height: math.unit(60, "feet"),
  28227. default: true
  28228. },
  28229. ]
  28230. ))
  28231. characterMakers.push(() => makeCharacter(
  28232. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28233. {
  28234. front: {
  28235. height: math.unit(6, "feet"),
  28236. weight: math.unit(150, "lb"),
  28237. name: "Front",
  28238. image: {
  28239. source: "./media/characters/sfaiyan/front.svg",
  28240. extra: 999 / 978,
  28241. bottom: 5 / 1004
  28242. }
  28243. },
  28244. },
  28245. [
  28246. {
  28247. name: "Normal",
  28248. height: math.unit(1.82, "meters")
  28249. },
  28250. {
  28251. name: "Giant",
  28252. height: math.unit(2.27, "km"),
  28253. default: true
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28259. {
  28260. front: {
  28261. height: math.unit(179, "cm"),
  28262. weight: math.unit(100, "kg"),
  28263. name: "Front",
  28264. image: {
  28265. source: "./media/characters/raunehkeli/front.svg",
  28266. extra: 1934 / 1926,
  28267. bottom: 0 / 1934
  28268. }
  28269. },
  28270. },
  28271. [
  28272. {
  28273. name: "Normal",
  28274. height: math.unit(179, "cm")
  28275. },
  28276. {
  28277. name: "Maximum",
  28278. height: math.unit(575, "meters"),
  28279. default: true
  28280. },
  28281. ]
  28282. ))
  28283. characterMakers.push(() => makeCharacter(
  28284. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28285. {
  28286. front: {
  28287. height: math.unit(6, "feet"),
  28288. weight: math.unit(150, "lb"),
  28289. name: "Front",
  28290. image: {
  28291. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28292. extra: 2625 / 2518,
  28293. bottom: 60 / 2685
  28294. }
  28295. },
  28296. },
  28297. [
  28298. {
  28299. name: "Normal",
  28300. height: math.unit(6 + 2 / 12, "feet")
  28301. },
  28302. {
  28303. name: "Macro",
  28304. height: math.unit(1180, "feet"),
  28305. default: true
  28306. },
  28307. ]
  28308. ))
  28309. characterMakers.push(() => makeCharacter(
  28310. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28311. {
  28312. front: {
  28313. height: math.unit(5 + 6 / 12, "feet"),
  28314. weight: math.unit(108, "lb"),
  28315. name: "Front",
  28316. image: {
  28317. source: "./media/characters/lilith-zott/front.svg",
  28318. extra: 2510 / 2238,
  28319. bottom: 100 / 2610
  28320. }
  28321. },
  28322. frontDressed: {
  28323. height: math.unit(5 + 6 / 12, "feet"),
  28324. weight: math.unit(108, "lb"),
  28325. name: "Front (Dressed)",
  28326. image: {
  28327. source: "./media/characters/lilith-zott/front-dressed.svg",
  28328. extra: 2510 / 2238,
  28329. bottom: 100 / 2610
  28330. }
  28331. },
  28332. },
  28333. [
  28334. {
  28335. name: "Normal",
  28336. height: math.unit(5 + 6 / 12, "feet")
  28337. },
  28338. {
  28339. name: "Macro",
  28340. height: math.unit(1030, "feet"),
  28341. default: true
  28342. },
  28343. ]
  28344. ))
  28345. characterMakers.push(() => makeCharacter(
  28346. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28347. {
  28348. front: {
  28349. height: math.unit(6, "feet"),
  28350. weight: math.unit(150, "lb"),
  28351. name: "Front",
  28352. image: {
  28353. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28354. extra: 2567 / 2435,
  28355. bottom: 39 / 2606
  28356. }
  28357. },
  28358. frontSuper: {
  28359. height: math.unit(6, "feet"),
  28360. name: "Front (Super)",
  28361. image: {
  28362. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28363. extra: 2567 / 2435,
  28364. bottom: 39 / 2606
  28365. }
  28366. },
  28367. },
  28368. [
  28369. {
  28370. name: "Normal",
  28371. height: math.unit(5 + 10 / 12, "feet")
  28372. },
  28373. {
  28374. name: "Macro",
  28375. height: math.unit(1100, "feet"),
  28376. default: true
  28377. },
  28378. ]
  28379. ))
  28380. characterMakers.push(() => makeCharacter(
  28381. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28382. {
  28383. front: {
  28384. height: math.unit(100, "miles"),
  28385. name: "Front",
  28386. image: {
  28387. source: "./media/characters/sona/front.svg",
  28388. extra: 2433 / 2201,
  28389. bottom: 53 / 2486
  28390. }
  28391. },
  28392. foot: {
  28393. height: math.unit(16.1, "miles"),
  28394. name: "Foot",
  28395. image: {
  28396. source: "./media/characters/sona/foot.svg"
  28397. }
  28398. },
  28399. },
  28400. [
  28401. {
  28402. name: "Macro",
  28403. height: math.unit(100, "miles"),
  28404. default: true
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28410. {
  28411. front: {
  28412. height: math.unit(6, "feet"),
  28413. weight: math.unit(150, "lb"),
  28414. name: "Front",
  28415. image: {
  28416. source: "./media/characters/bailey/front.svg",
  28417. extra: 1778 / 1724,
  28418. bottom: 30 / 1808
  28419. }
  28420. },
  28421. },
  28422. [
  28423. {
  28424. name: "Micro",
  28425. height: math.unit(4, "inches")
  28426. },
  28427. {
  28428. name: "Normal",
  28429. height: math.unit(5 + 5 / 12, "feet"),
  28430. default: true
  28431. },
  28432. {
  28433. name: "Macro",
  28434. height: math.unit(250, "feet")
  28435. },
  28436. {
  28437. name: "Megamacro",
  28438. height: math.unit(100, "miles")
  28439. },
  28440. ]
  28441. ))
  28442. characterMakers.push(() => makeCharacter(
  28443. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28444. {
  28445. front: {
  28446. height: math.unit(5 + 2 / 12, "feet"),
  28447. weight: math.unit(120, "lb"),
  28448. name: "Front",
  28449. image: {
  28450. source: "./media/characters/snaps/front.svg",
  28451. extra: 2370 / 2177,
  28452. bottom: 48 / 2418
  28453. }
  28454. },
  28455. back: {
  28456. height: math.unit(5 + 2 / 12, "feet"),
  28457. weight: math.unit(120, "lb"),
  28458. name: "Back",
  28459. image: {
  28460. source: "./media/characters/snaps/back.svg",
  28461. extra: 2408 / 2258,
  28462. bottom: 15 / 2423
  28463. }
  28464. },
  28465. },
  28466. [
  28467. {
  28468. name: "Micro",
  28469. height: math.unit(9, "inches")
  28470. },
  28471. {
  28472. name: "Normal",
  28473. height: math.unit(5 + 2 / 12, "feet"),
  28474. default: true
  28475. },
  28476. {
  28477. name: "Mini Macro",
  28478. height: math.unit(10, "feet")
  28479. },
  28480. ]
  28481. ))
  28482. characterMakers.push(() => makeCharacter(
  28483. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28484. {
  28485. front: {
  28486. height: math.unit(1.8, "meters"),
  28487. weight: math.unit(85, "kg"),
  28488. name: "Front",
  28489. image: {
  28490. source: "./media/characters/azteck/front.svg",
  28491. extra: 2815 / 2625,
  28492. bottom: 89 / 2904
  28493. }
  28494. },
  28495. back: {
  28496. height: math.unit(1.8, "meters"),
  28497. weight: math.unit(85, "kg"),
  28498. name: "Back",
  28499. image: {
  28500. source: "./media/characters/azteck/back.svg",
  28501. extra: 2856 / 2648,
  28502. bottom: 85 / 2941
  28503. }
  28504. },
  28505. frontDressed: {
  28506. height: math.unit(1.8, "meters"),
  28507. weight: math.unit(85, "kg"),
  28508. name: "Front (Dressed)",
  28509. image: {
  28510. source: "./media/characters/azteck/front-dressed.svg",
  28511. extra: 2147 / 2003,
  28512. bottom: 68 / 2215
  28513. }
  28514. },
  28515. head: {
  28516. height: math.unit(0.47, "meters"),
  28517. weight: math.unit(85, "kg"),
  28518. name: "Head",
  28519. image: {
  28520. source: "./media/characters/azteck/head.svg"
  28521. }
  28522. },
  28523. },
  28524. [
  28525. {
  28526. name: "Bite sized",
  28527. height: math.unit(16, "cm")
  28528. },
  28529. {
  28530. name: "Normal",
  28531. height: math.unit(1.8, "meters"),
  28532. default: true
  28533. },
  28534. ]
  28535. ))
  28536. characterMakers.push(() => makeCharacter(
  28537. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28538. {
  28539. front: {
  28540. height: math.unit(6, "feet"),
  28541. weight: math.unit(150, "lb"),
  28542. name: "Front",
  28543. image: {
  28544. source: "./media/characters/pidge/front.svg",
  28545. extra: 620 / 588,
  28546. bottom: 9 / 629
  28547. }
  28548. },
  28549. back: {
  28550. height: math.unit(6, "feet"),
  28551. weight: math.unit(150, "lb"),
  28552. name: "Back",
  28553. image: {
  28554. source: "./media/characters/pidge/back.svg",
  28555. extra: 620 / 588,
  28556. bottom: 9 / 629
  28557. }
  28558. },
  28559. },
  28560. [
  28561. {
  28562. name: "Macro",
  28563. height: math.unit(1, "mile"),
  28564. default: true
  28565. },
  28566. ]
  28567. ))
  28568. characterMakers.push(() => makeCharacter(
  28569. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28570. {
  28571. front: {
  28572. height: math.unit(6, "feet"),
  28573. weight: math.unit(150, "lb"),
  28574. name: "Front",
  28575. image: {
  28576. source: "./media/characters/en/front.svg",
  28577. extra: 1697 / 1563,
  28578. bottom: 103 / 1800
  28579. }
  28580. },
  28581. back: {
  28582. height: math.unit(6, "feet"),
  28583. weight: math.unit(150, "lb"),
  28584. name: "Back",
  28585. image: {
  28586. source: "./media/characters/en/back.svg",
  28587. extra: 1700 / 1570,
  28588. bottom: 51 / 1751
  28589. }
  28590. },
  28591. frontDressed: {
  28592. height: math.unit(6, "feet"),
  28593. weight: math.unit(150, "lb"),
  28594. name: "Front (Dressed)",
  28595. image: {
  28596. source: "./media/characters/en/front-dressed.svg",
  28597. extra: 1697 / 1563,
  28598. bottom: 103 / 1800
  28599. }
  28600. },
  28601. backDressed: {
  28602. height: math.unit(6, "feet"),
  28603. weight: math.unit(150, "lb"),
  28604. name: "Back (Dressed)",
  28605. image: {
  28606. source: "./media/characters/en/back-dressed.svg",
  28607. extra: 1700 / 1570,
  28608. bottom: 51 / 1751
  28609. }
  28610. },
  28611. },
  28612. [
  28613. {
  28614. name: "Macro",
  28615. height: math.unit(210, "feet"),
  28616. default: true
  28617. },
  28618. ]
  28619. ))
  28620. characterMakers.push(() => makeCharacter(
  28621. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28622. {
  28623. front: {
  28624. height: math.unit(6, "feet"),
  28625. weight: math.unit(150, "lb"),
  28626. name: "Front",
  28627. image: {
  28628. source: "./media/characters/haze-orris/front.svg",
  28629. extra: 3975 / 3525,
  28630. bottom: 137 / 4112
  28631. }
  28632. },
  28633. },
  28634. [
  28635. {
  28636. name: "Micro",
  28637. height: math.unit(150, "mm"),
  28638. default: true
  28639. },
  28640. ]
  28641. ))
  28642. characterMakers.push(() => makeCharacter(
  28643. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28644. {
  28645. front: {
  28646. height: math.unit(6, "feet"),
  28647. weight: math.unit(150, "lb"),
  28648. name: "Front",
  28649. image: {
  28650. source: "./media/characters/casselene-yaro/front.svg",
  28651. extra: 4721 / 4541,
  28652. bottom: 82 / 4803
  28653. }
  28654. },
  28655. back: {
  28656. height: math.unit(6, "feet"),
  28657. weight: math.unit(150, "lb"),
  28658. name: "Back",
  28659. image: {
  28660. source: "./media/characters/casselene-yaro/back.svg",
  28661. extra: 4569 / 4377,
  28662. bottom: 69 / 4638
  28663. }
  28664. },
  28665. frontDressed: {
  28666. height: math.unit(6, "feet"),
  28667. weight: math.unit(150, "lb"),
  28668. name: "Front-dressed",
  28669. image: {
  28670. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28671. extra: 4721 / 4541,
  28672. bottom: 82 / 4803
  28673. }
  28674. },
  28675. },
  28676. [
  28677. {
  28678. name: "Macro",
  28679. height: math.unit(190, "feet"),
  28680. default: true
  28681. },
  28682. ]
  28683. ))
  28684. characterMakers.push(() => makeCharacter(
  28685. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28686. {
  28687. front: {
  28688. height: math.unit(6, "feet"),
  28689. weight: math.unit(150, "lb"),
  28690. name: "Front",
  28691. image: {
  28692. source: "./media/characters/myra-rue-delore/front.svg",
  28693. extra: 1340 / 1308,
  28694. bottom: 67 / 1407
  28695. }
  28696. },
  28697. back: {
  28698. height: math.unit(6, "feet"),
  28699. weight: math.unit(150, "lb"),
  28700. name: "Back",
  28701. image: {
  28702. source: "./media/characters/myra-rue-delore/back.svg",
  28703. extra: 1341 / 1310,
  28704. bottom: 40 / 1381
  28705. }
  28706. },
  28707. frontDressed: {
  28708. height: math.unit(6, "feet"),
  28709. weight: math.unit(150, "lb"),
  28710. name: "Front (Dressed)",
  28711. image: {
  28712. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28713. extra: 1340 / 1308,
  28714. bottom: 67 / 1407
  28715. }
  28716. },
  28717. },
  28718. [
  28719. {
  28720. name: "Macro",
  28721. height: math.unit(150, "feet"),
  28722. default: true
  28723. },
  28724. ]
  28725. ))
  28726. characterMakers.push(() => makeCharacter(
  28727. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28728. {
  28729. front: {
  28730. height: math.unit(10, "feet"),
  28731. weight: math.unit(15015, "lb"),
  28732. name: "Front",
  28733. image: {
  28734. source: "./media/characters/fem!plat/front.svg",
  28735. extra: 2799 / 2604,
  28736. bottom: 149 / 2948
  28737. }
  28738. },
  28739. },
  28740. [
  28741. {
  28742. name: "Normal",
  28743. height: math.unit(10, "feet"),
  28744. default: true
  28745. },
  28746. {
  28747. name: "Macro",
  28748. height: math.unit(100, "feet")
  28749. },
  28750. {
  28751. name: "Megamacro",
  28752. height: math.unit(1000, "feet")
  28753. },
  28754. ]
  28755. ))
  28756. characterMakers.push(() => makeCharacter(
  28757. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28758. {
  28759. front: {
  28760. height: math.unit(15 + 5 / 12, "feet"),
  28761. weight: math.unit(4600, "lb"),
  28762. name: "Front",
  28763. image: {
  28764. source: "./media/characters/neapolitan-ananassa/front.svg",
  28765. extra: 2903 / 2736,
  28766. bottom: 0 / 2903
  28767. }
  28768. },
  28769. side: {
  28770. height: math.unit(15 + 5 / 12, "feet"),
  28771. weight: math.unit(4600, "lb"),
  28772. name: "Side",
  28773. image: {
  28774. source: "./media/characters/neapolitan-ananassa/side.svg",
  28775. extra: 2925 / 2719,
  28776. bottom: 0 / 2925
  28777. }
  28778. },
  28779. back: {
  28780. height: math.unit(15 + 5 / 12, "feet"),
  28781. weight: math.unit(4600, "lb"),
  28782. name: "Back",
  28783. image: {
  28784. source: "./media/characters/neapolitan-ananassa/back.svg",
  28785. extra: 2903 / 2736,
  28786. bottom: 0 / 2903
  28787. }
  28788. },
  28789. },
  28790. [
  28791. {
  28792. name: "Normal",
  28793. height: math.unit(15 + 5 / 12, "feet"),
  28794. default: true
  28795. },
  28796. {
  28797. name: "Post-Millenium",
  28798. height: math.unit(35 + 5 / 12, "feet")
  28799. },
  28800. {
  28801. name: "Post-Era",
  28802. height: math.unit(450 + 5 / 12, "feet")
  28803. },
  28804. ]
  28805. ))
  28806. characterMakers.push(() => makeCharacter(
  28807. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28808. {
  28809. front: {
  28810. height: math.unit(300, "meters"),
  28811. weight: math.unit(125000, "tonnes"),
  28812. name: "Front",
  28813. image: {
  28814. source: "./media/characters/pazuzu/front.svg",
  28815. extra: 877 / 794,
  28816. bottom: 47 / 924
  28817. }
  28818. },
  28819. },
  28820. [
  28821. {
  28822. name: "Macro",
  28823. height: math.unit(300, "meters"),
  28824. default: true
  28825. },
  28826. ]
  28827. ))
  28828. characterMakers.push(() => makeCharacter(
  28829. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28830. {
  28831. side: {
  28832. height: math.unit(10 + 7 / 12, "feet"),
  28833. weight: math.unit(2.5, "tons"),
  28834. name: "Side",
  28835. image: {
  28836. source: "./media/characters/aasha/side.svg",
  28837. extra: 1345 / 1245,
  28838. bottom: 111 / 1456
  28839. }
  28840. },
  28841. back: {
  28842. height: math.unit(10 + 7 / 12, "feet"),
  28843. weight: math.unit(2.5, "tons"),
  28844. name: "Back",
  28845. image: {
  28846. source: "./media/characters/aasha/back.svg",
  28847. extra: 1133 / 1057,
  28848. bottom: 257 / 1390
  28849. }
  28850. },
  28851. },
  28852. [
  28853. {
  28854. name: "Normal",
  28855. height: math.unit(10 + 7 / 12, "feet"),
  28856. default: true
  28857. },
  28858. ]
  28859. ))
  28860. characterMakers.push(() => makeCharacter(
  28861. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28862. {
  28863. front: {
  28864. height: math.unit(6 + 3 / 12, "feet"),
  28865. name: "Front",
  28866. image: {
  28867. source: "./media/characters/nevan/front.svg",
  28868. extra: 704 / 704,
  28869. bottom: 28 / 732
  28870. }
  28871. },
  28872. back: {
  28873. height: math.unit(6 + 3 / 12, "feet"),
  28874. name: "Back",
  28875. image: {
  28876. source: "./media/characters/nevan/back.svg",
  28877. extra: 714 / 714,
  28878. bottom: 21 / 735
  28879. }
  28880. },
  28881. frontFlaccid: {
  28882. height: math.unit(6 + 3 / 12, "feet"),
  28883. name: "Front (Flaccid)",
  28884. image: {
  28885. source: "./media/characters/nevan/front-flaccid.svg",
  28886. extra: 704 / 704,
  28887. bottom: 28 / 732
  28888. }
  28889. },
  28890. frontErect: {
  28891. height: math.unit(6 + 3 / 12, "feet"),
  28892. name: "Front (Erect)",
  28893. image: {
  28894. source: "./media/characters/nevan/front-erect.svg",
  28895. extra: 704 / 704,
  28896. bottom: 28 / 732
  28897. }
  28898. },
  28899. backFlaccid: {
  28900. height: math.unit(6 + 3 / 12, "feet"),
  28901. name: "Back (Flaccid)",
  28902. image: {
  28903. source: "./media/characters/nevan/back-flaccid.svg",
  28904. extra: 714 / 714,
  28905. bottom: 21 / 735
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(6 + 3 / 12, "feet"),
  28913. default: true
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28919. {
  28920. front: {
  28921. height: math.unit(4, "feet"),
  28922. name: "Front",
  28923. image: {
  28924. source: "./media/characters/arhan/front.svg",
  28925. extra: 3368 / 3133,
  28926. bottom: 0 / 3368
  28927. }
  28928. },
  28929. side: {
  28930. height: math.unit(4, "feet"),
  28931. name: "Side",
  28932. image: {
  28933. source: "./media/characters/arhan/side.svg",
  28934. extra: 3347 / 3105,
  28935. bottom: 0 / 3347
  28936. }
  28937. },
  28938. tongue: {
  28939. height: math.unit(1.42, "feet"),
  28940. name: "Tongue",
  28941. image: {
  28942. source: "./media/characters/arhan/tongue.svg"
  28943. }
  28944. },
  28945. head: {
  28946. height: math.unit(0.85, "feet"),
  28947. name: "Head",
  28948. image: {
  28949. source: "./media/characters/arhan/head.svg"
  28950. }
  28951. },
  28952. },
  28953. [
  28954. {
  28955. name: "Normal",
  28956. height: math.unit(4, "feet"),
  28957. default: true
  28958. },
  28959. ]
  28960. ))
  28961. characterMakers.push(() => makeCharacter(
  28962. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28963. {
  28964. front: {
  28965. height: math.unit(5 + 7.5 / 12, "feet"),
  28966. weight: math.unit(120, "lb"),
  28967. name: "Front",
  28968. image: {
  28969. source: "./media/characters/digi-duncan/front.svg",
  28970. extra: 330 / 326,
  28971. bottom: 16 / 346
  28972. }
  28973. },
  28974. side: {
  28975. height: math.unit(5 + 7.5 / 12, "feet"),
  28976. weight: math.unit(120, "lb"),
  28977. name: "Side",
  28978. image: {
  28979. source: "./media/characters/digi-duncan/side.svg",
  28980. extra: 341 / 337,
  28981. bottom: 1 / 342
  28982. }
  28983. },
  28984. back: {
  28985. height: math.unit(5 + 7.5 / 12, "feet"),
  28986. weight: math.unit(120, "lb"),
  28987. name: "Back",
  28988. image: {
  28989. source: "./media/characters/digi-duncan/back.svg",
  28990. extra: 330 / 326,
  28991. bottom: 12 / 342
  28992. }
  28993. },
  28994. },
  28995. [
  28996. {
  28997. name: "Speck",
  28998. height: math.unit(0.25, "mm")
  28999. },
  29000. {
  29001. name: "Micro",
  29002. height: math.unit(5, "mm")
  29003. },
  29004. {
  29005. name: "Tiny",
  29006. height: math.unit(0.5, "inches"),
  29007. default: true
  29008. },
  29009. {
  29010. name: "Human",
  29011. height: math.unit(5 + 7.5 / 12, "feet")
  29012. },
  29013. {
  29014. name: "Minigiant",
  29015. height: math.unit(8 + 5.25, "feet")
  29016. },
  29017. {
  29018. name: "Giant",
  29019. height: math.unit(2000, "feet")
  29020. },
  29021. {
  29022. name: "Mega",
  29023. height: math.unit(371.1, "miles")
  29024. },
  29025. ]
  29026. ))
  29027. characterMakers.push(() => makeCharacter(
  29028. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29029. {
  29030. front: {
  29031. height: math.unit(2, "meters"),
  29032. weight: math.unit(350, "kg"),
  29033. name: "Front",
  29034. image: {
  29035. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29036. extra: 898 / 838,
  29037. bottom: 9 / 907
  29038. }
  29039. },
  29040. },
  29041. [
  29042. {
  29043. name: "Micro",
  29044. height: math.unit(8, "meters")
  29045. },
  29046. {
  29047. name: "Normal",
  29048. height: math.unit(50, "meters"),
  29049. default: true
  29050. },
  29051. {
  29052. name: "Macro",
  29053. height: math.unit(500, "meters")
  29054. },
  29055. ]
  29056. ))
  29057. characterMakers.push(() => makeCharacter(
  29058. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29059. {
  29060. front: {
  29061. height: math.unit(6 + 6 / 12, "feet"),
  29062. name: "Front",
  29063. image: {
  29064. source: "./media/characters/khardesh/front.svg",
  29065. extra: 888 / 797,
  29066. bottom: 25 / 913
  29067. }
  29068. },
  29069. },
  29070. [
  29071. {
  29072. name: "Normal",
  29073. height: math.unit(6 + 6 / 12, "feet"),
  29074. default: true
  29075. },
  29076. {
  29077. name: "Normal+",
  29078. height: math.unit(4, "meters")
  29079. },
  29080. {
  29081. name: "Macro",
  29082. height: math.unit(50, "meters")
  29083. },
  29084. {
  29085. name: "Macro+",
  29086. height: math.unit(100, "meters")
  29087. },
  29088. {
  29089. name: "Megamacro",
  29090. height: math.unit(20, "km")
  29091. },
  29092. ]
  29093. ))
  29094. characterMakers.push(() => makeCharacter(
  29095. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29096. {
  29097. front: {
  29098. height: math.unit(6, "feet"),
  29099. weight: math.unit(150, "lb"),
  29100. name: "Front",
  29101. image: {
  29102. source: "./media/characters/kosho/front.svg",
  29103. extra: 1847 / 1847,
  29104. bottom: 86 / 1933
  29105. }
  29106. },
  29107. },
  29108. [
  29109. {
  29110. name: "Second-stage micro",
  29111. height: math.unit(0.5, "inches")
  29112. },
  29113. {
  29114. name: "First-stage micro",
  29115. height: math.unit(6, "inches")
  29116. },
  29117. {
  29118. name: "Normal",
  29119. height: math.unit(6, "feet"),
  29120. default: true
  29121. },
  29122. {
  29123. name: "First-stage macro",
  29124. height: math.unit(72, "feet")
  29125. },
  29126. {
  29127. name: "Second-stage macro",
  29128. height: math.unit(864, "feet")
  29129. },
  29130. ]
  29131. ))
  29132. characterMakers.push(() => makeCharacter(
  29133. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29134. {
  29135. normal: {
  29136. height: math.unit(4 + 6 / 12, "feet"),
  29137. name: "Normal",
  29138. image: {
  29139. source: "./media/characters/hydra/normal.svg",
  29140. extra: 2833 / 2634,
  29141. bottom: 68 / 2901
  29142. }
  29143. },
  29144. smol: {
  29145. height: math.unit(0.705, "inches"),
  29146. name: "Smol",
  29147. image: {
  29148. source: "./media/characters/hydra/smol.svg",
  29149. extra: 2715 / 2540,
  29150. bottom: 0 / 2715
  29151. }
  29152. },
  29153. },
  29154. [
  29155. {
  29156. name: "Normal",
  29157. height: math.unit(4 + 6 / 12, "feet"),
  29158. default: true
  29159. }
  29160. ]
  29161. ))
  29162. characterMakers.push(() => makeCharacter(
  29163. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29164. {
  29165. front: {
  29166. height: math.unit(0.6, "cm"),
  29167. name: "Front",
  29168. image: {
  29169. source: "./media/characters/daz/front.svg",
  29170. extra: 1682 / 1164,
  29171. bottom: 42 / 1724
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Normal",
  29178. height: math.unit(0.6, "cm"),
  29179. default: true
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29185. {
  29186. front: {
  29187. height: math.unit(6, "feet"),
  29188. weight: math.unit(235, "lb"),
  29189. name: "Front",
  29190. image: {
  29191. source: "./media/characters/theo-pangolin/front.svg",
  29192. extra: 1996 / 1969,
  29193. bottom: 115 / 2111
  29194. }
  29195. },
  29196. back: {
  29197. height: math.unit(6, "feet"),
  29198. weight: math.unit(235, "lb"),
  29199. name: "Back",
  29200. image: {
  29201. source: "./media/characters/theo-pangolin/back.svg",
  29202. extra: 1979 / 1979,
  29203. bottom: 40 / 2019
  29204. }
  29205. },
  29206. feral: {
  29207. height: math.unit(2, "feet"),
  29208. weight: math.unit(30, "lb"),
  29209. name: "Feral",
  29210. image: {
  29211. source: "./media/characters/theo-pangolin/feral.svg",
  29212. extra: 803 / 791,
  29213. bottom: 181 / 984
  29214. }
  29215. },
  29216. footFive: {
  29217. height: math.unit(1.43, "feet"),
  29218. name: "Foot (Five Toes)",
  29219. image: {
  29220. source: "./media/characters/theo-pangolin/foot-five.svg"
  29221. }
  29222. },
  29223. footFour: {
  29224. height: math.unit(1.43, "feet"),
  29225. name: "Foot (Four Toes)",
  29226. image: {
  29227. source: "./media/characters/theo-pangolin/foot-four.svg"
  29228. }
  29229. },
  29230. handFour: {
  29231. height: math.unit(0.81, "feet"),
  29232. name: "Hand (Four Fingers)",
  29233. image: {
  29234. source: "./media/characters/theo-pangolin/hand-four.svg"
  29235. }
  29236. },
  29237. handThree: {
  29238. height: math.unit(0.81, "feet"),
  29239. name: "Hand (Three Fingers)",
  29240. image: {
  29241. source: "./media/characters/theo-pangolin/hand-three.svg"
  29242. }
  29243. },
  29244. headFront: {
  29245. height: math.unit(1.37, "feet"),
  29246. name: "Head (Front)",
  29247. image: {
  29248. source: "./media/characters/theo-pangolin/head-front.svg"
  29249. }
  29250. },
  29251. headSide: {
  29252. height: math.unit(1.43, "feet"),
  29253. name: "Head (Side)",
  29254. image: {
  29255. source: "./media/characters/theo-pangolin/head-side.svg"
  29256. }
  29257. },
  29258. tongue: {
  29259. height: math.unit(2.29, "feet"),
  29260. name: "Tongue",
  29261. image: {
  29262. source: "./media/characters/theo-pangolin/tongue.svg"
  29263. }
  29264. },
  29265. },
  29266. [
  29267. {
  29268. name: "Normal",
  29269. height: math.unit(6, "feet")
  29270. },
  29271. {
  29272. name: "Macro",
  29273. height: math.unit(400, "feet"),
  29274. default: true
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(6, "inches"),
  29283. weight: math.unit(0.036, "kg"),
  29284. name: "Front",
  29285. image: {
  29286. source: "./media/characters/renée/front.svg",
  29287. extra: 900 / 886,
  29288. bottom: 8 / 908
  29289. }
  29290. },
  29291. },
  29292. [
  29293. {
  29294. name: "Nano",
  29295. height: math.unit(1, "nm")
  29296. },
  29297. {
  29298. name: "Micro",
  29299. height: math.unit(1, "mm")
  29300. },
  29301. {
  29302. name: "Normal",
  29303. height: math.unit(6, "inches")
  29304. },
  29305. {
  29306. name: "Macro",
  29307. height: math.unit(2000, "feet"),
  29308. default: true
  29309. },
  29310. {
  29311. name: "Megamacro",
  29312. height: math.unit(2, "km")
  29313. },
  29314. {
  29315. name: "Gigamacro",
  29316. height: math.unit(2000, "km")
  29317. },
  29318. {
  29319. name: "Teramacro",
  29320. height: math.unit(250000, "km")
  29321. },
  29322. ]
  29323. ))
  29324. characterMakers.push(() => makeCharacter(
  29325. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29326. {
  29327. front: {
  29328. height: math.unit(4, "meters"),
  29329. weight: math.unit(150, "kg"),
  29330. name: "Front",
  29331. image: {
  29332. source: "./media/characters/caledvwlch/front.svg",
  29333. extra: 1760 / 1551,
  29334. bottom: 28 / 1788
  29335. }
  29336. },
  29337. side: {
  29338. height: math.unit(4, "meters"),
  29339. weight: math.unit(150, "kg"),
  29340. name: "Side",
  29341. image: {
  29342. source: "./media/characters/caledvwlch/side.svg",
  29343. extra: 1605 / 1536,
  29344. bottom: 31 / 1636
  29345. }
  29346. },
  29347. back: {
  29348. height: math.unit(4, "meters"),
  29349. weight: math.unit(150, "kg"),
  29350. name: "Back",
  29351. image: {
  29352. source: "./media/characters/caledvwlch/back.svg",
  29353. extra: 1635 / 1565,
  29354. bottom: 27 / 1662
  29355. }
  29356. },
  29357. },
  29358. [
  29359. {
  29360. name: "\"Incognito\"",
  29361. height: math.unit(4, "meters")
  29362. },
  29363. {
  29364. name: "Small rampage",
  29365. height: math.unit(600, "meters")
  29366. },
  29367. {
  29368. name: "Mega",
  29369. height: math.unit(30, "km")
  29370. },
  29371. {
  29372. name: "Home-size",
  29373. height: math.unit(50, "km"),
  29374. default: true
  29375. },
  29376. {
  29377. name: "Giga",
  29378. height: math.unit(300, "km")
  29379. },
  29380. {
  29381. name: "Lounging",
  29382. height: math.unit(11000, "km")
  29383. },
  29384. {
  29385. name: "Planet snacking",
  29386. height: math.unit(2000000, "km")
  29387. },
  29388. ]
  29389. ))
  29390. characterMakers.push(() => makeCharacter(
  29391. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29392. {
  29393. front: {
  29394. height: math.unit(6, "feet"),
  29395. weight: math.unit(215, "lb"),
  29396. name: "Front",
  29397. image: {
  29398. source: "./media/characters/sapphire-svell/front.svg",
  29399. extra: 495 / 455,
  29400. bottom: 20 / 515
  29401. }
  29402. },
  29403. back: {
  29404. height: math.unit(6, "feet"),
  29405. weight: math.unit(216, "lb"),
  29406. name: "Back",
  29407. image: {
  29408. source: "./media/characters/sapphire-svell/back.svg",
  29409. extra: 497 / 477,
  29410. bottom: 7 / 504
  29411. }
  29412. },
  29413. maw: {
  29414. height: math.unit(1.57, "feet"),
  29415. name: "Maw",
  29416. image: {
  29417. source: "./media/characters/sapphire-svell/maw.svg"
  29418. }
  29419. },
  29420. foot: {
  29421. height: math.unit(1.07, "feet"),
  29422. name: "Foot",
  29423. image: {
  29424. source: "./media/characters/sapphire-svell/foot.svg"
  29425. }
  29426. },
  29427. toering: {
  29428. height: math.unit(1.7, "inch"),
  29429. name: "Toering",
  29430. image: {
  29431. source: "./media/characters/sapphire-svell/toering.svg"
  29432. }
  29433. },
  29434. },
  29435. [
  29436. {
  29437. name: "Normal",
  29438. height: math.unit(300, "feet"),
  29439. default: true
  29440. },
  29441. {
  29442. name: "Augmented",
  29443. height: math.unit(1250, "feet")
  29444. },
  29445. {
  29446. name: "Unleashed",
  29447. height: math.unit(3000, "feet")
  29448. },
  29449. ]
  29450. ))
  29451. characterMakers.push(() => makeCharacter(
  29452. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29453. {
  29454. side: {
  29455. height: math.unit(2 + 3 / 12, "feet"),
  29456. weight: math.unit(110, "lb"),
  29457. name: "Side",
  29458. image: {
  29459. source: "./media/characters/glitch-flux/side.svg",
  29460. extra: 997 / 805,
  29461. bottom: 20 / 1017
  29462. }
  29463. },
  29464. },
  29465. [
  29466. {
  29467. name: "Normal",
  29468. height: math.unit(2 + 3 / 12, "feet"),
  29469. default: true
  29470. },
  29471. ]
  29472. ))
  29473. characterMakers.push(() => makeCharacter(
  29474. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29475. {
  29476. front: {
  29477. height: math.unit(4, "meters"),
  29478. name: "Front",
  29479. image: {
  29480. source: "./media/characters/mid/front.svg",
  29481. extra: 507 / 476,
  29482. bottom: 17 / 524
  29483. }
  29484. },
  29485. back: {
  29486. height: math.unit(4, "meters"),
  29487. name: "Back",
  29488. image: {
  29489. source: "./media/characters/mid/back.svg",
  29490. extra: 519 / 487,
  29491. bottom: 7 / 526
  29492. }
  29493. },
  29494. stuck: {
  29495. height: math.unit(2.2, "meters"),
  29496. name: "Stuck",
  29497. image: {
  29498. source: "./media/characters/mid/stuck.svg",
  29499. extra: 1951 / 1869,
  29500. bottom: 88 / 2039
  29501. }
  29502. }
  29503. },
  29504. [
  29505. {
  29506. name: "Normal",
  29507. height: math.unit(4, "meters"),
  29508. default: true
  29509. },
  29510. {
  29511. name: "Big",
  29512. height: math.unit(10, "meters")
  29513. },
  29514. {
  29515. name: "Macro",
  29516. height: math.unit(800, "meters")
  29517. },
  29518. {
  29519. name: "Megamacro",
  29520. height: math.unit(100, "km")
  29521. },
  29522. {
  29523. name: "Overgrown",
  29524. height: math.unit(1, "parsec")
  29525. },
  29526. ]
  29527. ))
  29528. characterMakers.push(() => makeCharacter(
  29529. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29530. {
  29531. front: {
  29532. height: math.unit(2.5, "meters"),
  29533. weight: math.unit(225, "kg"),
  29534. name: "Front",
  29535. image: {
  29536. source: "./media/characters/iris/front.svg",
  29537. extra: 3348 / 3251,
  29538. bottom: 205 / 3553
  29539. }
  29540. },
  29541. maw: {
  29542. height: math.unit(0.56, "meter"),
  29543. name: "Maw",
  29544. image: {
  29545. source: "./media/characters/iris/maw.svg"
  29546. }
  29547. },
  29548. },
  29549. [
  29550. {
  29551. name: "Mewter cat",
  29552. height: math.unit(1.2, "meters")
  29553. },
  29554. {
  29555. name: "Minimacro",
  29556. height: math.unit(2.5, "meters"),
  29557. default: true
  29558. },
  29559. {
  29560. name: "Macro",
  29561. height: math.unit(180, "meters")
  29562. },
  29563. {
  29564. name: "Megamacro",
  29565. height: math.unit(2746, "meters")
  29566. },
  29567. ]
  29568. ))
  29569. characterMakers.push(() => makeCharacter(
  29570. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29571. {
  29572. front: {
  29573. height: math.unit(6, "feet"),
  29574. weight: math.unit(135, "lb"),
  29575. name: "Front",
  29576. image: {
  29577. source: "./media/characters/axel/front.svg",
  29578. extra: 908 / 908,
  29579. bottom: 58 / 966
  29580. }
  29581. },
  29582. side: {
  29583. height: math.unit(6, "feet"),
  29584. weight: math.unit(135, "lb"),
  29585. name: "Side",
  29586. image: {
  29587. source: "./media/characters/axel/side.svg",
  29588. extra: 958 / 958,
  29589. bottom: 11 / 969
  29590. }
  29591. },
  29592. back: {
  29593. height: math.unit(6, "feet"),
  29594. weight: math.unit(135, "lb"),
  29595. name: "Back",
  29596. image: {
  29597. source: "./media/characters/axel/back.svg",
  29598. extra: 887 / 887,
  29599. bottom: 34 / 921
  29600. }
  29601. },
  29602. head: {
  29603. height: math.unit(1.07, "feet"),
  29604. name: "Head",
  29605. image: {
  29606. source: "./media/characters/axel/head.svg"
  29607. }
  29608. },
  29609. beak: {
  29610. height: math.unit(1.4, "feet"),
  29611. name: "Beak",
  29612. image: {
  29613. source: "./media/characters/axel/beak.svg"
  29614. }
  29615. },
  29616. beakSide: {
  29617. height: math.unit(1.4, "feet"),
  29618. name: "Beak Side",
  29619. image: {
  29620. source: "./media/characters/axel/beak-side.svg"
  29621. }
  29622. },
  29623. sheath: {
  29624. height: math.unit(0.5, "feet"),
  29625. name: "Sheath",
  29626. image: {
  29627. source: "./media/characters/axel/sheath.svg"
  29628. }
  29629. },
  29630. dick: {
  29631. height: math.unit(0.98, "feet"),
  29632. name: "Dick",
  29633. image: {
  29634. source: "./media/characters/axel/dick.svg"
  29635. }
  29636. },
  29637. },
  29638. [
  29639. {
  29640. name: "Macro",
  29641. height: math.unit(68, "meters"),
  29642. default: true
  29643. },
  29644. ]
  29645. ))
  29646. characterMakers.push(() => makeCharacter(
  29647. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29648. {
  29649. front: {
  29650. height: math.unit(3.5, "meters"),
  29651. weight: math.unit(1200, "kg"),
  29652. name: "Front",
  29653. image: {
  29654. source: "./media/characters/joanna/front.svg",
  29655. extra: 1596 / 1488,
  29656. bottom: 29 / 1625
  29657. }
  29658. },
  29659. back: {
  29660. height: math.unit(3.5, "meters"),
  29661. weight: math.unit(1200, "kg"),
  29662. name: "Back",
  29663. image: {
  29664. source: "./media/characters/joanna/back.svg",
  29665. extra: 1594 / 1495,
  29666. bottom: 26 / 1620
  29667. }
  29668. },
  29669. frontShorts: {
  29670. height: math.unit(3.5, "meters"),
  29671. weight: math.unit(1200, "kg"),
  29672. name: "Front (Shorts)",
  29673. image: {
  29674. source: "./media/characters/joanna/front-shorts.svg",
  29675. extra: 1596 / 1488,
  29676. bottom: 29 / 1625
  29677. }
  29678. },
  29679. frontBiker: {
  29680. height: math.unit(3.5, "meters"),
  29681. weight: math.unit(1200, "kg"),
  29682. name: "Front (Biker)",
  29683. image: {
  29684. source: "./media/characters/joanna/front-biker.svg",
  29685. extra: 1596 / 1488,
  29686. bottom: 29 / 1625
  29687. }
  29688. },
  29689. backBiker: {
  29690. height: math.unit(3.5, "meters"),
  29691. weight: math.unit(1200, "kg"),
  29692. name: "Back (Biker)",
  29693. image: {
  29694. source: "./media/characters/joanna/back-biker.svg",
  29695. extra: 1594 / 1495,
  29696. bottom: 88 / 1682
  29697. }
  29698. },
  29699. bikeLeft: {
  29700. height: math.unit(2.4, "meters"),
  29701. weight: math.unit(1600, "kg"),
  29702. name: "Bike (Left)",
  29703. image: {
  29704. source: "./media/characters/joanna/bike-left.svg",
  29705. extra: 720 / 720,
  29706. bottom: 8 / 728
  29707. }
  29708. },
  29709. bikeRight: {
  29710. height: math.unit(2.4, "meters"),
  29711. weight: math.unit(1600, "kg"),
  29712. name: "Bike (Right)",
  29713. image: {
  29714. source: "./media/characters/joanna/bike-right.svg",
  29715. extra: 720 / 720,
  29716. bottom: 8 / 728
  29717. }
  29718. },
  29719. },
  29720. [
  29721. {
  29722. name: "Incognito",
  29723. height: math.unit(3.5, "meters")
  29724. },
  29725. {
  29726. name: "Casual Big",
  29727. height: math.unit(200, "meters")
  29728. },
  29729. {
  29730. name: "Macro",
  29731. height: math.unit(600, "meters")
  29732. },
  29733. {
  29734. name: "Original",
  29735. height: math.unit(20, "km"),
  29736. default: true
  29737. },
  29738. {
  29739. name: "Giga",
  29740. height: math.unit(400, "km")
  29741. },
  29742. {
  29743. name: "Lounging",
  29744. height: math.unit(1500, "km")
  29745. },
  29746. {
  29747. name: "Planetary",
  29748. height: math.unit(200000, "km")
  29749. },
  29750. ]
  29751. ))
  29752. characterMakers.push(() => makeCharacter(
  29753. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29754. {
  29755. front: {
  29756. height: math.unit(6, "feet"),
  29757. weight: math.unit(150, "lb"),
  29758. name: "Front",
  29759. image: {
  29760. source: "./media/characters/hugo-sigil/front.svg",
  29761. extra: 522 / 500,
  29762. bottom: 2 / 524
  29763. }
  29764. },
  29765. back: {
  29766. height: math.unit(6, "feet"),
  29767. weight: math.unit(150, "lb"),
  29768. name: "Back",
  29769. image: {
  29770. source: "./media/characters/hugo-sigil/back.svg",
  29771. extra: 519 / 495,
  29772. bottom: 5 / 524
  29773. }
  29774. },
  29775. maw: {
  29776. height: math.unit(1.4, "feet"),
  29777. weight: math.unit(150, "lb"),
  29778. name: "Maw",
  29779. image: {
  29780. source: "./media/characters/hugo-sigil/maw.svg"
  29781. }
  29782. },
  29783. feet: {
  29784. height: math.unit(1.56, "feet"),
  29785. weight: math.unit(150, "lb"),
  29786. name: "Feet",
  29787. image: {
  29788. source: "./media/characters/hugo-sigil/feet.svg",
  29789. extra: 177 / 177,
  29790. bottom: 12 / 189
  29791. }
  29792. },
  29793. },
  29794. [
  29795. {
  29796. name: "Normal",
  29797. height: math.unit(6, "feet")
  29798. },
  29799. {
  29800. name: "Macro",
  29801. height: math.unit(200, "feet"),
  29802. default: true
  29803. },
  29804. ]
  29805. ))
  29806. characterMakers.push(() => makeCharacter(
  29807. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29808. {
  29809. front: {
  29810. height: math.unit(6, "feet"),
  29811. weight: math.unit(150, "lb"),
  29812. name: "Front",
  29813. image: {
  29814. source: "./media/characters/peri/front.svg",
  29815. extra: 2354 / 2233,
  29816. bottom: 49 / 2403
  29817. }
  29818. },
  29819. },
  29820. [
  29821. {
  29822. name: "Really Small",
  29823. height: math.unit(1, "nm")
  29824. },
  29825. {
  29826. name: "Micro",
  29827. height: math.unit(4, "inches")
  29828. },
  29829. {
  29830. name: "Normal",
  29831. height: math.unit(7, "inches"),
  29832. default: true
  29833. },
  29834. {
  29835. name: "Macro",
  29836. height: math.unit(400, "feet")
  29837. },
  29838. {
  29839. name: "Megamacro",
  29840. height: math.unit(100, "miles")
  29841. },
  29842. ]
  29843. ))
  29844. characterMakers.push(() => makeCharacter(
  29845. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29846. {
  29847. frontSlim: {
  29848. height: math.unit(7, "feet"),
  29849. name: "Front (Slim)",
  29850. image: {
  29851. source: "./media/characters/issilora/front-slim.svg",
  29852. extra: 529 / 449,
  29853. bottom: 53 / 582
  29854. }
  29855. },
  29856. sideSlim: {
  29857. height: math.unit(7, "feet"),
  29858. name: "Side (Slim)",
  29859. image: {
  29860. source: "./media/characters/issilora/side-slim.svg",
  29861. extra: 570 / 480,
  29862. bottom: 30 / 600
  29863. }
  29864. },
  29865. backSlim: {
  29866. height: math.unit(7, "feet"),
  29867. name: "Back (Slim)",
  29868. image: {
  29869. source: "./media/characters/issilora/back-slim.svg",
  29870. extra: 537 / 455,
  29871. bottom: 46 / 583
  29872. }
  29873. },
  29874. frontBuff: {
  29875. height: math.unit(7, "feet"),
  29876. name: "Front (Buff)",
  29877. image: {
  29878. source: "./media/characters/issilora/front-buff.svg",
  29879. extra: 2310 / 2035,
  29880. bottom: 335 / 2645
  29881. }
  29882. },
  29883. head: {
  29884. height: math.unit(1.94, "feet"),
  29885. name: "Head",
  29886. image: {
  29887. source: "./media/characters/issilora/head.svg"
  29888. }
  29889. },
  29890. },
  29891. [
  29892. {
  29893. name: "Minimum",
  29894. height: math.unit(7, "feet")
  29895. },
  29896. {
  29897. name: "Comfortable",
  29898. height: math.unit(17, "feet")
  29899. },
  29900. {
  29901. name: "Fun Size",
  29902. height: math.unit(47, "feet")
  29903. },
  29904. {
  29905. name: "Natural Macro",
  29906. height: math.unit(137, "feet"),
  29907. default: true
  29908. },
  29909. {
  29910. name: "Maximum Kaiju",
  29911. height: math.unit(397, "feet")
  29912. },
  29913. ]
  29914. ))
  29915. characterMakers.push(() => makeCharacter(
  29916. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29917. {
  29918. front: {
  29919. height: math.unit(50 + 9/12, "feet"),
  29920. weight: math.unit(32.8, "tons"),
  29921. name: "Front",
  29922. image: {
  29923. source: "./media/characters/irb'iiritaahn/front.svg",
  29924. extra: 1878/1826,
  29925. bottom: 326/2204
  29926. }
  29927. },
  29928. back: {
  29929. height: math.unit(50 + 9/12, "feet"),
  29930. weight: math.unit(32.8, "tons"),
  29931. name: "Back",
  29932. image: {
  29933. source: "./media/characters/irb'iiritaahn/back.svg",
  29934. extra: 2052/2018,
  29935. bottom: 152/2204
  29936. }
  29937. },
  29938. head: {
  29939. height: math.unit(12.86, "feet"),
  29940. name: "Head",
  29941. image: {
  29942. source: "./media/characters/irb'iiritaahn/head.svg"
  29943. }
  29944. },
  29945. maw: {
  29946. height: math.unit(9.66, "feet"),
  29947. name: "Maw",
  29948. image: {
  29949. source: "./media/characters/irb'iiritaahn/maw.svg"
  29950. }
  29951. },
  29952. frontDick: {
  29953. height: math.unit(8.78461, "feet"),
  29954. name: "Front Dick",
  29955. image: {
  29956. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29957. }
  29958. },
  29959. rearDick: {
  29960. height: math.unit(8.78461, "feet"),
  29961. name: "Rear Dick",
  29962. image: {
  29963. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29964. }
  29965. },
  29966. rearDickUnfolded: {
  29967. height: math.unit(8.78, "feet"),
  29968. name: "Rear Dick (Unfolded)",
  29969. image: {
  29970. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29971. }
  29972. },
  29973. wings: {
  29974. height: math.unit(43, "feet"),
  29975. name: "Wings",
  29976. image: {
  29977. source: "./media/characters/irb'iiritaahn/wings.svg"
  29978. }
  29979. },
  29980. },
  29981. [
  29982. {
  29983. name: "Macro",
  29984. height: math.unit(50 + 9/12, "feet"),
  29985. default: true
  29986. },
  29987. ]
  29988. ))
  29989. characterMakers.push(() => makeCharacter(
  29990. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29991. {
  29992. front: {
  29993. height: math.unit(205, "cm"),
  29994. weight: math.unit(102, "kg"),
  29995. name: "Front",
  29996. image: {
  29997. source: "./media/characters/irbisgreif/front.svg",
  29998. extra: 785/706,
  29999. bottom: 13/798
  30000. }
  30001. },
  30002. back: {
  30003. height: math.unit(205, "cm"),
  30004. weight: math.unit(102, "kg"),
  30005. name: "Back",
  30006. image: {
  30007. source: "./media/characters/irbisgreif/back.svg",
  30008. extra: 713/701,
  30009. bottom: 26/739
  30010. }
  30011. },
  30012. frontDressed: {
  30013. height: math.unit(216, "cm"),
  30014. weight: math.unit(102, "kg"),
  30015. name: "Front-dressed",
  30016. image: {
  30017. source: "./media/characters/irbisgreif/front-dressed.svg",
  30018. extra: 902/776,
  30019. bottom: 14/916
  30020. }
  30021. },
  30022. sideDressed: {
  30023. height: math.unit(195, "cm"),
  30024. weight: math.unit(102, "kg"),
  30025. name: "Side-dressed",
  30026. image: {
  30027. source: "./media/characters/irbisgreif/side-dressed.svg",
  30028. extra: 788/688,
  30029. bottom: 21/809
  30030. }
  30031. },
  30032. backDressed: {
  30033. height: math.unit(216, "cm"),
  30034. weight: math.unit(102, "kg"),
  30035. name: "Back-dressed",
  30036. image: {
  30037. source: "./media/characters/irbisgreif/back-dressed.svg",
  30038. extra: 901/783,
  30039. bottom: 10/911
  30040. }
  30041. },
  30042. dick: {
  30043. height: math.unit(0.49, "feet"),
  30044. name: "Dick",
  30045. image: {
  30046. source: "./media/characters/irbisgreif/dick.svg"
  30047. }
  30048. },
  30049. wingTop: {
  30050. height: math.unit(1.93 , "feet"),
  30051. name: "Wing-top",
  30052. image: {
  30053. source: "./media/characters/irbisgreif/wing-top.svg"
  30054. }
  30055. },
  30056. wingBottom: {
  30057. height: math.unit(1.93 , "feet"),
  30058. name: "Wing-bottom",
  30059. image: {
  30060. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30061. }
  30062. },
  30063. },
  30064. [
  30065. {
  30066. name: "Normal",
  30067. height: math.unit(216, "cm"),
  30068. default: true
  30069. },
  30070. ]
  30071. ))
  30072. characterMakers.push(() => makeCharacter(
  30073. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30074. {
  30075. front: {
  30076. height: math.unit(6, "feet"),
  30077. weight: math.unit(150, "lb"),
  30078. name: "Front",
  30079. image: {
  30080. source: "./media/characters/pride/front.svg",
  30081. extra: 1299/1230,
  30082. bottom: 18/1317
  30083. }
  30084. },
  30085. },
  30086. [
  30087. {
  30088. name: "Normal",
  30089. height: math.unit(7, "feet")
  30090. },
  30091. {
  30092. name: "Mini-macro",
  30093. height: math.unit(11, "feet")
  30094. },
  30095. {
  30096. name: "Macro",
  30097. height: math.unit(15, "meters"),
  30098. default: true
  30099. },
  30100. {
  30101. name: "Macro+",
  30102. height: math.unit(40, "meters")
  30103. },
  30104. ]
  30105. ))
  30106. characterMakers.push(() => makeCharacter(
  30107. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30108. {
  30109. front: {
  30110. height: math.unit(4 + 2 / 12, "feet"),
  30111. weight: math.unit(95, "lb"),
  30112. name: "Front",
  30113. image: {
  30114. source: "./media/characters/vaelophis-nyx/front.svg",
  30115. extra: 2532/2330,
  30116. bottom: 0/2532
  30117. }
  30118. },
  30119. back: {
  30120. height: math.unit(4 + 2 / 12, "feet"),
  30121. weight: math.unit(95, "lb"),
  30122. name: "Back",
  30123. image: {
  30124. source: "./media/characters/vaelophis-nyx/back.svg",
  30125. extra: 2484/2361,
  30126. bottom: 0/2484
  30127. }
  30128. },
  30129. feralSide: {
  30130. height: math.unit(2 + 1/12, "feet"),
  30131. weight: math.unit(20, "lb"),
  30132. name: "Feral (Side)",
  30133. image: {
  30134. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30135. extra: 1721/1581,
  30136. bottom: 70/1791
  30137. }
  30138. },
  30139. feralLazing: {
  30140. height: math.unit(1.08, "feet"),
  30141. weight: math.unit(20, "lb"),
  30142. name: "Feral (Lazing)",
  30143. image: {
  30144. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30145. extra: 822/822,
  30146. bottom: 248/1070
  30147. }
  30148. },
  30149. ear: {
  30150. height: math.unit(0.416, "feet"),
  30151. name: "Ear",
  30152. image: {
  30153. source: "./media/characters/vaelophis-nyx/ear.svg"
  30154. }
  30155. },
  30156. eye: {
  30157. height: math.unit(0.0748, "feet"),
  30158. name: "Eye",
  30159. image: {
  30160. source: "./media/characters/vaelophis-nyx/eye.svg"
  30161. }
  30162. },
  30163. mouth: {
  30164. height: math.unit(0.378, "feet"),
  30165. name: "Mouth",
  30166. image: {
  30167. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30168. }
  30169. },
  30170. spade: {
  30171. height: math.unit(0.55, "feet"),
  30172. name: "Spade",
  30173. image: {
  30174. source: "./media/characters/vaelophis-nyx/spade.svg"
  30175. }
  30176. },
  30177. },
  30178. [
  30179. {
  30180. name: "Normal",
  30181. height: math.unit(4 + 2/12, "feet"),
  30182. default: true
  30183. },
  30184. ]
  30185. ))
  30186. characterMakers.push(() => makeCharacter(
  30187. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30188. {
  30189. front: {
  30190. height: math.unit(7, "feet"),
  30191. weight: math.unit(231, "lb"),
  30192. name: "Front",
  30193. image: {
  30194. source: "./media/characters/flux/front.svg",
  30195. extra: 919/871,
  30196. bottom: 0/919
  30197. }
  30198. },
  30199. back: {
  30200. height: math.unit(7, "feet"),
  30201. weight: math.unit(231, "lb"),
  30202. name: "Back",
  30203. image: {
  30204. source: "./media/characters/flux/back.svg",
  30205. extra: 1040/992,
  30206. bottom: 0/1040
  30207. }
  30208. },
  30209. frontDressed: {
  30210. height: math.unit(7, "feet"),
  30211. weight: math.unit(231, "lb"),
  30212. name: "Front (Dressed)",
  30213. image: {
  30214. source: "./media/characters/flux/front-dressed.svg",
  30215. extra: 919/871,
  30216. bottom: 0/919
  30217. }
  30218. },
  30219. feralSide: {
  30220. height: math.unit(5, "feet"),
  30221. weight: math.unit(150, "lb"),
  30222. name: "Feral (Side)",
  30223. image: {
  30224. source: "./media/characters/flux/feral-side.svg",
  30225. extra: 598/528,
  30226. bottom: 28/626
  30227. }
  30228. },
  30229. head: {
  30230. height: math.unit(1.585, "feet"),
  30231. name: "Head",
  30232. image: {
  30233. source: "./media/characters/flux/head.svg"
  30234. }
  30235. },
  30236. headSide: {
  30237. height: math.unit(1.74, "feet"),
  30238. name: "Head (Side)",
  30239. image: {
  30240. source: "./media/characters/flux/head-side.svg"
  30241. }
  30242. },
  30243. headSideFire: {
  30244. height: math.unit(1.76, "feet"),
  30245. name: "Head (Side, Fire)",
  30246. image: {
  30247. source: "./media/characters/flux/head-side-fire.svg"
  30248. }
  30249. },
  30250. },
  30251. [
  30252. {
  30253. name: "Normal",
  30254. height: math.unit(7, "feet"),
  30255. default: true
  30256. },
  30257. ]
  30258. ))
  30259. characterMakers.push(() => makeCharacter(
  30260. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30261. {
  30262. front: {
  30263. height: math.unit(9, "feet"),
  30264. weight: math.unit(1012, "lb"),
  30265. name: "Front",
  30266. image: {
  30267. source: "./media/characters/ulfra-lupae/front.svg",
  30268. extra: 1083/1011,
  30269. bottom: 67/1150
  30270. }
  30271. },
  30272. },
  30273. [
  30274. {
  30275. name: "Micro",
  30276. height: math.unit(6, "inches")
  30277. },
  30278. {
  30279. name: "Socializing",
  30280. height: math.unit(6 + 5/12, "feet")
  30281. },
  30282. {
  30283. name: "Normal",
  30284. height: math.unit(9, "feet"),
  30285. default: true
  30286. },
  30287. {
  30288. name: "Macro",
  30289. height: math.unit(150, "feet")
  30290. },
  30291. ]
  30292. ))
  30293. characterMakers.push(() => makeCharacter(
  30294. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30295. {
  30296. front: {
  30297. height: math.unit(5 + 2/12, "feet"),
  30298. weight: math.unit(120, "lb"),
  30299. name: "Front",
  30300. image: {
  30301. source: "./media/characters/timber/front.svg",
  30302. extra: 2814/2705,
  30303. bottom: 181/2995
  30304. }
  30305. },
  30306. },
  30307. [
  30308. {
  30309. name: "Normal",
  30310. height: math.unit(5 + 2/12, "feet"),
  30311. default: true
  30312. },
  30313. ]
  30314. ))
  30315. characterMakers.push(() => makeCharacter(
  30316. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30317. {
  30318. front: {
  30319. height: math.unit(5 + 7/12, "feet"),
  30320. weight: math.unit(220, "lb"),
  30321. name: "Front",
  30322. image: {
  30323. source: "./media/characters/nicki/front.svg",
  30324. extra: 453/419,
  30325. bottom: 7/460
  30326. }
  30327. },
  30328. frontAlt: {
  30329. height: math.unit(5 + 7/12, "feet"),
  30330. weight: math.unit(220, "lb"),
  30331. name: "Front-alt",
  30332. image: {
  30333. source: "./media/characters/nicki/front-alt.svg",
  30334. extra: 435/411,
  30335. bottom: 12/447
  30336. }
  30337. },
  30338. back: {
  30339. height: math.unit(5 + 7/12, "feet"),
  30340. weight: math.unit(220, "lb"),
  30341. name: "Back",
  30342. image: {
  30343. source: "./media/characters/nicki/back.svg",
  30344. extra: 440/413,
  30345. bottom: 19/459
  30346. }
  30347. },
  30348. taur: {
  30349. height: math.unit(7 + 6/12, "feet"),
  30350. weight: math.unit(700, "lb"),
  30351. name: "Taur",
  30352. image: {
  30353. source: "./media/characters/nicki/taur.svg",
  30354. extra: 975/773,
  30355. bottom: 0/975
  30356. }
  30357. },
  30358. frontNsfw: {
  30359. height: math.unit(5 + 7/12, "feet"),
  30360. weight: math.unit(220, "lb"),
  30361. name: "Front (NSFW)",
  30362. image: {
  30363. source: "./media/characters/nicki/front-nsfw.svg",
  30364. extra: 453/419,
  30365. bottom: 7/460
  30366. }
  30367. },
  30368. frontNsfwAlt: {
  30369. height: math.unit(5 + 7/12, "feet"),
  30370. weight: math.unit(220, "lb"),
  30371. name: "Front (Alt, NSFW)",
  30372. image: {
  30373. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30374. extra: 435/411,
  30375. bottom: 12/447
  30376. }
  30377. },
  30378. backNsfw: {
  30379. height: math.unit(5 + 7/12, "feet"),
  30380. weight: math.unit(220, "lb"),
  30381. name: "Back (NSFW)",
  30382. image: {
  30383. source: "./media/characters/nicki/back-nsfw.svg",
  30384. extra: 440/413,
  30385. bottom: 19/459
  30386. }
  30387. },
  30388. head: {
  30389. height: math.unit(2.1, "feet"),
  30390. name: "Head",
  30391. image: {
  30392. source: "./media/characters/nicki/head.svg"
  30393. }
  30394. },
  30395. paw: {
  30396. height: math.unit(1.88, "feet"),
  30397. name: "Paw",
  30398. image: {
  30399. source: "./media/characters/nicki/paw.svg"
  30400. }
  30401. },
  30402. },
  30403. [
  30404. {
  30405. name: "Normal",
  30406. height: math.unit(5 + 7/12, "feet"),
  30407. default: true
  30408. },
  30409. ]
  30410. ))
  30411. characterMakers.push(() => makeCharacter(
  30412. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30413. {
  30414. front: {
  30415. height: math.unit(7 + 10/12, "feet"),
  30416. weight: math.unit(3.5, "tons"),
  30417. name: "Front",
  30418. image: {
  30419. source: "./media/characters/lee/front.svg",
  30420. extra: 1773/1615,
  30421. bottom: 86/1859
  30422. }
  30423. },
  30424. hand: {
  30425. height: math.unit(1.78, "feet"),
  30426. name: "Hand",
  30427. image: {
  30428. source: "./media/characters/lee/hand.svg"
  30429. }
  30430. },
  30431. maw: {
  30432. height: math.unit(1.18, "feet"),
  30433. name: "Maw",
  30434. image: {
  30435. source: "./media/characters/lee/maw.svg"
  30436. }
  30437. },
  30438. },
  30439. [
  30440. {
  30441. name: "Normal",
  30442. height: math.unit(7 + 10/12, "feet"),
  30443. default: true
  30444. },
  30445. ]
  30446. ))
  30447. characterMakers.push(() => makeCharacter(
  30448. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30449. {
  30450. front: {
  30451. height: math.unit(9, "feet"),
  30452. name: "Front",
  30453. image: {
  30454. source: "./media/characters/guti/front.svg",
  30455. extra: 4551/4355,
  30456. bottom: 123/4674
  30457. }
  30458. },
  30459. tongue: {
  30460. height: math.unit(1, "feet"),
  30461. name: "Tongue",
  30462. image: {
  30463. source: "./media/characters/guti/tongue.svg"
  30464. }
  30465. },
  30466. paw: {
  30467. height: math.unit(1.18, "feet"),
  30468. name: "Paw",
  30469. image: {
  30470. source: "./media/characters/guti/paw.svg"
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Normal",
  30477. height: math.unit(9, "feet"),
  30478. default: true
  30479. },
  30480. ]
  30481. ))
  30482. characterMakers.push(() => makeCharacter(
  30483. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30484. {
  30485. side: {
  30486. height: math.unit(5, "meters"),
  30487. name: "Side",
  30488. image: {
  30489. source: "./media/characters/vesper/side.svg",
  30490. extra: 1605/1518,
  30491. bottom: 0/1605
  30492. }
  30493. },
  30494. },
  30495. [
  30496. {
  30497. name: "Small",
  30498. height: math.unit(5, "meters")
  30499. },
  30500. {
  30501. name: "Sage",
  30502. height: math.unit(100, "meters"),
  30503. default: true
  30504. },
  30505. {
  30506. name: "Fun Size",
  30507. height: math.unit(600, "meters")
  30508. },
  30509. {
  30510. name: "Goddess",
  30511. height: math.unit(20000, "km")
  30512. },
  30513. {
  30514. name: "Maximum",
  30515. height: math.unit(5, "galaxies")
  30516. },
  30517. ]
  30518. ))
  30519. characterMakers.push(() => makeCharacter(
  30520. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30521. {
  30522. front: {
  30523. height: math.unit(6 + 3/12, "feet"),
  30524. weight: math.unit(190, "lb"),
  30525. name: "Front",
  30526. image: {
  30527. source: "./media/characters/gawain/front.svg",
  30528. extra: 2222/2139,
  30529. bottom: 90/2312
  30530. }
  30531. },
  30532. back: {
  30533. height: math.unit(6 + 3/12, "feet"),
  30534. weight: math.unit(190, "lb"),
  30535. name: "Back",
  30536. image: {
  30537. source: "./media/characters/gawain/back.svg",
  30538. extra: 2199/2111,
  30539. bottom: 73/2272
  30540. }
  30541. },
  30542. },
  30543. [
  30544. {
  30545. name: "Normal",
  30546. height: math.unit(6 + 3/12, "feet"),
  30547. default: true
  30548. },
  30549. ]
  30550. ))
  30551. characterMakers.push(() => makeCharacter(
  30552. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30553. {
  30554. side: {
  30555. height: math.unit(3.5, "meters"),
  30556. weight: math.unit(16000, "lb"),
  30557. name: "Side",
  30558. image: {
  30559. source: "./media/characters/dascalti/side.svg",
  30560. extra: 392/273,
  30561. bottom: 47/439
  30562. }
  30563. },
  30564. breath: {
  30565. height: math.unit(7.4, "feet"),
  30566. name: "Breath",
  30567. image: {
  30568. source: "./media/characters/dascalti/breath.svg"
  30569. }
  30570. },
  30571. fed: {
  30572. height: math.unit(3.6, "meters"),
  30573. weight: math.unit(16000, "lb"),
  30574. name: "Fed",
  30575. image: {
  30576. source: "./media/characters/dascalti/fed.svg",
  30577. extra: 1419/820,
  30578. bottom: 95/1514
  30579. }
  30580. },
  30581. },
  30582. [
  30583. {
  30584. name: "Normal",
  30585. height: math.unit(3.5, "meters"),
  30586. default: true
  30587. },
  30588. ]
  30589. ))
  30590. characterMakers.push(() => makeCharacter(
  30591. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30592. {
  30593. front: {
  30594. height: math.unit(3 + 5/12, "feet"),
  30595. name: "Front",
  30596. image: {
  30597. source: "./media/characters/mauve/front.svg",
  30598. extra: 1126/1033,
  30599. bottom: 65/1191
  30600. }
  30601. },
  30602. side: {
  30603. height: math.unit(3 + 5/12, "feet"),
  30604. name: "Side",
  30605. image: {
  30606. source: "./media/characters/mauve/side.svg",
  30607. extra: 1089/1001,
  30608. bottom: 29/1118
  30609. }
  30610. },
  30611. back: {
  30612. height: math.unit(3 + 5/12, "feet"),
  30613. name: "Back",
  30614. image: {
  30615. source: "./media/characters/mauve/back.svg",
  30616. extra: 1173/1053,
  30617. bottom: 109/1282
  30618. }
  30619. },
  30620. },
  30621. [
  30622. {
  30623. name: "Normal",
  30624. height: math.unit(3 + 5/12, "feet"),
  30625. default: true
  30626. },
  30627. ]
  30628. ))
  30629. characterMakers.push(() => makeCharacter(
  30630. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30631. {
  30632. front: {
  30633. height: math.unit(6 + 3/12, "feet"),
  30634. weight: math.unit(430, "lb"),
  30635. name: "Front",
  30636. image: {
  30637. source: "./media/characters/carlos/front.svg",
  30638. extra: 1964/1913,
  30639. bottom: 70/2034
  30640. }
  30641. },
  30642. },
  30643. [
  30644. {
  30645. name: "Normal",
  30646. height: math.unit(6 + 3/12, "feet"),
  30647. default: true
  30648. },
  30649. ]
  30650. ))
  30651. characterMakers.push(() => makeCharacter(
  30652. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30653. {
  30654. back: {
  30655. height: math.unit(5 + 10/12, "feet"),
  30656. weight: math.unit(200, "lb"),
  30657. name: "Back",
  30658. image: {
  30659. source: "./media/characters/jax/back.svg",
  30660. extra: 764/739,
  30661. bottom: 25/789
  30662. }
  30663. },
  30664. },
  30665. [
  30666. {
  30667. name: "Normal",
  30668. height: math.unit(5 + 10/12, "feet"),
  30669. default: true
  30670. },
  30671. ]
  30672. ))
  30673. characterMakers.push(() => makeCharacter(
  30674. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30675. {
  30676. front: {
  30677. height: math.unit(8, "feet"),
  30678. weight: math.unit(250, "lb"),
  30679. name: "Front",
  30680. image: {
  30681. source: "./media/characters/eikthynir/front.svg",
  30682. extra: 1332/1166,
  30683. bottom: 82/1414
  30684. }
  30685. },
  30686. back: {
  30687. height: math.unit(8, "feet"),
  30688. weight: math.unit(250, "lb"),
  30689. name: "Back",
  30690. image: {
  30691. source: "./media/characters/eikthynir/back.svg",
  30692. extra: 1342/1190,
  30693. bottom: 19/1361
  30694. }
  30695. },
  30696. dick: {
  30697. height: math.unit(2.35, "feet"),
  30698. name: "Dick",
  30699. image: {
  30700. source: "./media/characters/eikthynir/dick.svg"
  30701. }
  30702. },
  30703. },
  30704. [
  30705. {
  30706. name: "Normal",
  30707. height: math.unit(8, "feet"),
  30708. default: true
  30709. },
  30710. ]
  30711. ))
  30712. characterMakers.push(() => makeCharacter(
  30713. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30714. {
  30715. front: {
  30716. height: math.unit(99, "meters"),
  30717. weight: math.unit(13000, "tons"),
  30718. name: "Front",
  30719. image: {
  30720. source: "./media/characters/zlmos/front.svg",
  30721. extra: 2202/1992,
  30722. bottom: 315/2517
  30723. }
  30724. },
  30725. },
  30726. [
  30727. {
  30728. name: "Macro",
  30729. height: math.unit(99, "meters"),
  30730. default: true
  30731. },
  30732. ]
  30733. ))
  30734. characterMakers.push(() => makeCharacter(
  30735. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30736. {
  30737. front: {
  30738. height: math.unit(6 + 5/12, "feet"),
  30739. name: "Front",
  30740. image: {
  30741. source: "./media/characters/purri/front.svg",
  30742. extra: 1698/1610,
  30743. bottom: 32/1730
  30744. }
  30745. },
  30746. frontAlt: {
  30747. height: math.unit(6 + 5/12, "feet"),
  30748. name: "Front (Alt)",
  30749. image: {
  30750. source: "./media/characters/purri/front-alt.svg",
  30751. extra: 450/420,
  30752. bottom: 26/476
  30753. }
  30754. },
  30755. boots: {
  30756. height: math.unit(5.5, "feet"),
  30757. name: "Boots",
  30758. image: {
  30759. source: "./media/characters/purri/boots.svg",
  30760. extra: 905/853,
  30761. bottom: 18/923
  30762. }
  30763. },
  30764. lying: {
  30765. height: math.unit(2, "feet"),
  30766. name: "Lying",
  30767. image: {
  30768. source: "./media/characters/purri/lying.svg",
  30769. extra: 940/843,
  30770. bottom: 146/1086
  30771. }
  30772. },
  30773. devious: {
  30774. height: math.unit(1.77, "feet"),
  30775. name: "Devious",
  30776. image: {
  30777. source: "./media/characters/purri/devious.svg",
  30778. extra: 1440/1155,
  30779. bottom: 147/1587
  30780. }
  30781. },
  30782. bean: {
  30783. height: math.unit(1.94, "feet"),
  30784. name: "Bean",
  30785. image: {
  30786. source: "./media/characters/purri/bean.svg"
  30787. }
  30788. },
  30789. },
  30790. [
  30791. {
  30792. name: "Micro",
  30793. height: math.unit(1, "mm")
  30794. },
  30795. {
  30796. name: "Normal",
  30797. height: math.unit(6 + 5/12, "feet"),
  30798. default: true
  30799. },
  30800. {
  30801. name: "Macro :3c",
  30802. height: math.unit(2, "miles")
  30803. },
  30804. ]
  30805. ))
  30806. characterMakers.push(() => makeCharacter(
  30807. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30808. {
  30809. front: {
  30810. height: math.unit(6 + 2/12, "feet"),
  30811. weight: math.unit(250, "lb"),
  30812. name: "Front",
  30813. image: {
  30814. source: "./media/characters/moonlight/front.svg",
  30815. extra: 1044/908,
  30816. bottom: 56/1100
  30817. }
  30818. },
  30819. feral: {
  30820. height: math.unit(3 + 1/12, "feet"),
  30821. weight: math.unit(50, "kg"),
  30822. name: "Feral",
  30823. image: {
  30824. source: "./media/characters/moonlight/feral.svg",
  30825. extra: 3705/2791,
  30826. bottom: 145/3850
  30827. }
  30828. },
  30829. paw: {
  30830. height: math.unit(1, "feet"),
  30831. name: "Paw",
  30832. image: {
  30833. source: "./media/characters/moonlight/paw.svg"
  30834. }
  30835. },
  30836. paws: {
  30837. height: math.unit(0.98, "feet"),
  30838. name: "Paws",
  30839. image: {
  30840. source: "./media/characters/moonlight/paws.svg",
  30841. extra: 939/939,
  30842. bottom: 50/989
  30843. }
  30844. },
  30845. mouth: {
  30846. height: math.unit(0.48, "feet"),
  30847. name: "Mouth",
  30848. image: {
  30849. source: "./media/characters/moonlight/mouth.svg"
  30850. }
  30851. },
  30852. dick: {
  30853. height: math.unit(1.46, "feet"),
  30854. name: "Dick",
  30855. image: {
  30856. source: "./media/characters/moonlight/dick.svg"
  30857. }
  30858. },
  30859. },
  30860. [
  30861. {
  30862. name: "Normal",
  30863. height: math.unit(6 + 2/12, "feet"),
  30864. default: true
  30865. },
  30866. {
  30867. name: "Macro",
  30868. height: math.unit(300, "feet")
  30869. },
  30870. {
  30871. name: "Macro+",
  30872. height: math.unit(1, "mile")
  30873. },
  30874. {
  30875. name: "Mt. Moon",
  30876. height: math.unit(5, "miles")
  30877. },
  30878. {
  30879. name: "Megamacro",
  30880. height: math.unit(15, "miles")
  30881. },
  30882. ]
  30883. ))
  30884. characterMakers.push(() => makeCharacter(
  30885. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30886. {
  30887. back: {
  30888. height: math.unit(6, "feet"),
  30889. weight: math.unit(150, "lb"),
  30890. name: "Back",
  30891. image: {
  30892. source: "./media/characters/sylen/back.svg",
  30893. extra: 1335/1273,
  30894. bottom: 107/1442
  30895. }
  30896. },
  30897. },
  30898. [
  30899. {
  30900. name: "Normal",
  30901. height: math.unit(5 + 5/12, "feet")
  30902. },
  30903. {
  30904. name: "Megamacro",
  30905. height: math.unit(3, "miles"),
  30906. default: true
  30907. },
  30908. ]
  30909. ))
  30910. characterMakers.push(() => makeCharacter(
  30911. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30912. {
  30913. front: {
  30914. height: math.unit(6, "feet"),
  30915. weight: math.unit(190, "lb"),
  30916. name: "Front",
  30917. image: {
  30918. source: "./media/characters/huttser/front.svg",
  30919. extra: 1152/1058,
  30920. bottom: 23/1175
  30921. }
  30922. },
  30923. side: {
  30924. height: math.unit(6, "feet"),
  30925. weight: math.unit(190, "lb"),
  30926. name: "Side",
  30927. image: {
  30928. source: "./media/characters/huttser/side.svg",
  30929. extra: 1174/1065,
  30930. bottom: 18/1192
  30931. }
  30932. },
  30933. back: {
  30934. height: math.unit(6, "feet"),
  30935. weight: math.unit(190, "lb"),
  30936. name: "Back",
  30937. image: {
  30938. source: "./media/characters/huttser/back.svg",
  30939. extra: 1158/1056,
  30940. bottom: 12/1170
  30941. }
  30942. },
  30943. },
  30944. [
  30945. ]
  30946. ))
  30947. characterMakers.push(() => makeCharacter(
  30948. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30949. {
  30950. side: {
  30951. height: math.unit(12 + 9/12, "feet"),
  30952. weight: math.unit(15000, "lb"),
  30953. name: "Side",
  30954. image: {
  30955. source: "./media/characters/faan/side.svg",
  30956. extra: 2747/2697,
  30957. bottom: 0/2747
  30958. }
  30959. },
  30960. front: {
  30961. height: math.unit(12 + 9/12, "feet"),
  30962. weight: math.unit(15000, "lb"),
  30963. name: "Front",
  30964. image: {
  30965. source: "./media/characters/faan/front.svg",
  30966. extra: 607/571,
  30967. bottom: 24/631
  30968. }
  30969. },
  30970. head: {
  30971. height: math.unit(2.85, "feet"),
  30972. name: "Head",
  30973. image: {
  30974. source: "./media/characters/faan/head.svg"
  30975. }
  30976. },
  30977. headAlt: {
  30978. height: math.unit(3.13, "feet"),
  30979. name: "Head-alt",
  30980. image: {
  30981. source: "./media/characters/faan/head-alt.svg"
  30982. }
  30983. },
  30984. },
  30985. [
  30986. {
  30987. name: "Normal",
  30988. height: math.unit(12 + 9/12, "feet"),
  30989. default: true
  30990. },
  30991. ]
  30992. ))
  30993. characterMakers.push(() => makeCharacter(
  30994. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30995. {
  30996. front: {
  30997. height: math.unit(6, "feet"),
  30998. weight: math.unit(300, "lb"),
  30999. name: "Front",
  31000. image: {
  31001. source: "./media/characters/tanio/front.svg",
  31002. extra: 711/673,
  31003. bottom: 25/736
  31004. }
  31005. },
  31006. },
  31007. [
  31008. {
  31009. name: "Normal",
  31010. height: math.unit(6, "feet"),
  31011. default: true
  31012. },
  31013. ]
  31014. ))
  31015. characterMakers.push(() => makeCharacter(
  31016. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31017. {
  31018. front: {
  31019. height: math.unit(3, "inches"),
  31020. name: "Front",
  31021. image: {
  31022. source: "./media/characters/noboru/front.svg",
  31023. extra: 1039/932,
  31024. bottom: 18/1057
  31025. }
  31026. },
  31027. },
  31028. [
  31029. {
  31030. name: "Micro",
  31031. height: math.unit(3, "inches"),
  31032. default: true
  31033. },
  31034. ]
  31035. ))
  31036. characterMakers.push(() => makeCharacter(
  31037. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31038. {
  31039. front: {
  31040. height: math.unit(1.85, "meters"),
  31041. weight: math.unit(80, "kg"),
  31042. name: "Front",
  31043. image: {
  31044. source: "./media/characters/daniel-barrett/front.svg",
  31045. extra: 355/337,
  31046. bottom: 9/364
  31047. }
  31048. },
  31049. },
  31050. [
  31051. {
  31052. name: "Pico",
  31053. height: math.unit(0.0433, "mm")
  31054. },
  31055. {
  31056. name: "Nano",
  31057. height: math.unit(1.5, "mm")
  31058. },
  31059. {
  31060. name: "Micro",
  31061. height: math.unit(5.3, "cm"),
  31062. default: true
  31063. },
  31064. {
  31065. name: "Normal",
  31066. height: math.unit(1.85, "meters")
  31067. },
  31068. {
  31069. name: "Macro",
  31070. height: math.unit(64.7, "meters")
  31071. },
  31072. {
  31073. name: "Megamacro",
  31074. height: math.unit(2.26, "km")
  31075. },
  31076. {
  31077. name: "Gigamacro",
  31078. height: math.unit(79, "km")
  31079. },
  31080. {
  31081. name: "Teramacro",
  31082. height: math.unit(2765, "km")
  31083. },
  31084. {
  31085. name: "Petamacro",
  31086. height: math.unit(96678, "km")
  31087. },
  31088. ]
  31089. ))
  31090. characterMakers.push(() => makeCharacter(
  31091. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31092. {
  31093. front: {
  31094. height: math.unit(30, "meters"),
  31095. weight: math.unit(400, "tons"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/zeel/front.svg",
  31099. extra: 2599/2599,
  31100. bottom: 226/2825
  31101. }
  31102. },
  31103. },
  31104. [
  31105. {
  31106. name: "Macro",
  31107. height: math.unit(30, "meters"),
  31108. default: true
  31109. },
  31110. ]
  31111. ))
  31112. characterMakers.push(() => makeCharacter(
  31113. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31114. {
  31115. front: {
  31116. height: math.unit(6 + 7/12, "feet"),
  31117. weight: math.unit(210, "lb"),
  31118. name: "Front",
  31119. image: {
  31120. source: "./media/characters/tarn/front.svg",
  31121. extra: 3517/3220,
  31122. bottom: 91/3608
  31123. }
  31124. },
  31125. back: {
  31126. height: math.unit(6 + 7/12, "feet"),
  31127. weight: math.unit(210, "lb"),
  31128. name: "Back",
  31129. image: {
  31130. source: "./media/characters/tarn/back.svg",
  31131. extra: 3566/3241,
  31132. bottom: 34/3600
  31133. }
  31134. },
  31135. dick: {
  31136. height: math.unit(1.65, "feet"),
  31137. name: "Dick",
  31138. image: {
  31139. source: "./media/characters/tarn/dick.svg"
  31140. }
  31141. },
  31142. paw: {
  31143. height: math.unit(1.80, "feet"),
  31144. name: "Paw",
  31145. image: {
  31146. source: "./media/characters/tarn/paw.svg"
  31147. }
  31148. },
  31149. tongue: {
  31150. height: math.unit(0.97, "feet"),
  31151. name: "Tongue",
  31152. image: {
  31153. source: "./media/characters/tarn/tongue.svg"
  31154. }
  31155. },
  31156. },
  31157. [
  31158. {
  31159. name: "Micro",
  31160. height: math.unit(4, "inches")
  31161. },
  31162. {
  31163. name: "Normal",
  31164. height: math.unit(6 + 7/12, "feet"),
  31165. default: true
  31166. },
  31167. {
  31168. name: "Macro",
  31169. height: math.unit(300, "feet")
  31170. },
  31171. ]
  31172. ))
  31173. characterMakers.push(() => makeCharacter(
  31174. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31175. {
  31176. front: {
  31177. height: math.unit(5 + 7/12, "feet"),
  31178. weight: math.unit(80, "kg"),
  31179. name: "Front",
  31180. image: {
  31181. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31182. extra: 3023/2865,
  31183. bottom: 33/3056
  31184. }
  31185. },
  31186. back: {
  31187. height: math.unit(5 + 7/12, "feet"),
  31188. weight: math.unit(80, "kg"),
  31189. name: "Back",
  31190. image: {
  31191. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31192. extra: 3020/2886,
  31193. bottom: 30/3050
  31194. }
  31195. },
  31196. dick: {
  31197. height: math.unit(0.98, "feet"),
  31198. name: "Dick",
  31199. image: {
  31200. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31201. }
  31202. },
  31203. anatomy: {
  31204. height: math.unit(2.86, "feet"),
  31205. name: "Anatomy",
  31206. image: {
  31207. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31208. }
  31209. },
  31210. },
  31211. [
  31212. {
  31213. name: "Really Small",
  31214. height: math.unit(2, "inches")
  31215. },
  31216. {
  31217. name: "Micro",
  31218. height: math.unit(5.583, "inches")
  31219. },
  31220. {
  31221. name: "Normal",
  31222. height: math.unit(5 + 7/12, "feet"),
  31223. default: true
  31224. },
  31225. {
  31226. name: "Macro",
  31227. height: math.unit(67, "feet")
  31228. },
  31229. {
  31230. name: "Megamacro",
  31231. height: math.unit(134, "feet")
  31232. },
  31233. ]
  31234. ))
  31235. characterMakers.push(() => makeCharacter(
  31236. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31237. {
  31238. front: {
  31239. height: math.unit(9, "feet"),
  31240. weight: math.unit(120, "lb"),
  31241. name: "Front",
  31242. image: {
  31243. source: "./media/characters/sally/front.svg",
  31244. extra: 1506/1349,
  31245. bottom: 66/1572
  31246. }
  31247. },
  31248. },
  31249. [
  31250. {
  31251. name: "Normal",
  31252. height: math.unit(9, "feet"),
  31253. default: true
  31254. },
  31255. ]
  31256. ))
  31257. characterMakers.push(() => makeCharacter(
  31258. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31259. {
  31260. front: {
  31261. height: math.unit(8, "feet"),
  31262. weight: math.unit(900, "lb"),
  31263. name: "Front",
  31264. image: {
  31265. source: "./media/characters/owen/front.svg",
  31266. extra: 1761/1657,
  31267. bottom: 74/1835
  31268. }
  31269. },
  31270. side: {
  31271. height: math.unit(8, "feet"),
  31272. weight: math.unit(900, "lb"),
  31273. name: "Side",
  31274. image: {
  31275. source: "./media/characters/owen/side.svg",
  31276. extra: 1797/1734,
  31277. bottom: 30/1827
  31278. }
  31279. },
  31280. back: {
  31281. height: math.unit(8, "feet"),
  31282. weight: math.unit(900, "lb"),
  31283. name: "Back",
  31284. image: {
  31285. source: "./media/characters/owen/back.svg",
  31286. extra: 1796/1706,
  31287. bottom: 59/1855
  31288. }
  31289. },
  31290. maw: {
  31291. height: math.unit(1.76, "feet"),
  31292. name: "Maw",
  31293. image: {
  31294. source: "./media/characters/owen/maw.svg"
  31295. }
  31296. },
  31297. },
  31298. [
  31299. {
  31300. name: "Normal",
  31301. height: math.unit(8, "feet"),
  31302. default: true
  31303. },
  31304. ]
  31305. ))
  31306. characterMakers.push(() => makeCharacter(
  31307. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31308. {
  31309. front: {
  31310. height: math.unit(4, "feet"),
  31311. weight: math.unit(400, "lb"),
  31312. name: "Front",
  31313. image: {
  31314. source: "./media/characters/ryth/front.svg",
  31315. extra: 876/691,
  31316. bottom: 25/901
  31317. }
  31318. },
  31319. },
  31320. [
  31321. {
  31322. name: "Normal",
  31323. height: math.unit(4, "feet"),
  31324. default: true
  31325. },
  31326. ]
  31327. ))
  31328. characterMakers.push(() => makeCharacter(
  31329. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31330. {
  31331. front: {
  31332. height: math.unit(7, "feet"),
  31333. weight: math.unit(180, "lb"),
  31334. name: "Front",
  31335. image: {
  31336. source: "./media/characters/necrolance/front.svg",
  31337. extra: 1062/947,
  31338. bottom: 41/1103
  31339. }
  31340. },
  31341. back: {
  31342. height: math.unit(7, "feet"),
  31343. weight: math.unit(180, "lb"),
  31344. name: "Back",
  31345. image: {
  31346. source: "./media/characters/necrolance/back.svg",
  31347. extra: 1045/984,
  31348. bottom: 14/1059
  31349. }
  31350. },
  31351. wing: {
  31352. height: math.unit(2.67, "feet"),
  31353. name: "Wing",
  31354. image: {
  31355. source: "./media/characters/necrolance/wing.svg"
  31356. }
  31357. },
  31358. },
  31359. [
  31360. {
  31361. name: "Normal",
  31362. height: math.unit(7, "feet"),
  31363. default: true
  31364. },
  31365. ]
  31366. ))
  31367. characterMakers.push(() => makeCharacter(
  31368. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31369. {
  31370. front: {
  31371. height: math.unit(76, "meters"),
  31372. weight: math.unit(30000, "tons"),
  31373. name: "Front",
  31374. image: {
  31375. source: "./media/characters/tyler/front.svg",
  31376. extra: 1640/1640,
  31377. bottom: 114/1754
  31378. }
  31379. },
  31380. },
  31381. [
  31382. {
  31383. name: "Macro",
  31384. height: math.unit(76, "meters"),
  31385. default: true
  31386. },
  31387. ]
  31388. ))
  31389. characterMakers.push(() => makeCharacter(
  31390. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31391. {
  31392. front: {
  31393. height: math.unit(4 + 11/12, "feet"),
  31394. weight: math.unit(132, "lb"),
  31395. name: "Front",
  31396. image: {
  31397. source: "./media/characters/icey/front.svg",
  31398. extra: 2750/2550,
  31399. bottom: 33/2783
  31400. }
  31401. },
  31402. back: {
  31403. height: math.unit(4 + 11/12, "feet"),
  31404. weight: math.unit(132, "lb"),
  31405. name: "Back",
  31406. image: {
  31407. source: "./media/characters/icey/back.svg",
  31408. extra: 2624/2481,
  31409. bottom: 35/2659
  31410. }
  31411. },
  31412. },
  31413. [
  31414. {
  31415. name: "Normal",
  31416. height: math.unit(4 + 11/12, "feet"),
  31417. default: true
  31418. },
  31419. ]
  31420. ))
  31421. characterMakers.push(() => makeCharacter(
  31422. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31423. {
  31424. front: {
  31425. height: math.unit(100, "feet"),
  31426. weight: math.unit(0, "lb"),
  31427. name: "Front",
  31428. image: {
  31429. source: "./media/characters/smile/front.svg",
  31430. extra: 2983/2912,
  31431. bottom: 162/3145
  31432. }
  31433. },
  31434. back: {
  31435. height: math.unit(100, "feet"),
  31436. weight: math.unit(0, "lb"),
  31437. name: "Back",
  31438. image: {
  31439. source: "./media/characters/smile/back.svg",
  31440. extra: 3143/3031,
  31441. bottom: 91/3234
  31442. }
  31443. },
  31444. head: {
  31445. height: math.unit(26.3, "feet"),
  31446. weight: math.unit(0, "lb"),
  31447. name: "Head",
  31448. image: {
  31449. source: "./media/characters/smile/head.svg"
  31450. }
  31451. },
  31452. collar: {
  31453. height: math.unit(5.3, "feet"),
  31454. weight: math.unit(0, "lb"),
  31455. name: "Collar",
  31456. image: {
  31457. source: "./media/characters/smile/collar.svg"
  31458. }
  31459. },
  31460. },
  31461. [
  31462. {
  31463. name: "Macro",
  31464. height: math.unit(100, "feet"),
  31465. default: true
  31466. },
  31467. ]
  31468. ))
  31469. characterMakers.push(() => makeCharacter(
  31470. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31471. {
  31472. dragon: {
  31473. height: math.unit(26, "feet"),
  31474. weight: math.unit(36, "tons"),
  31475. name: "Dragon",
  31476. image: {
  31477. source: "./media/characters/arimphae/dragon.svg",
  31478. extra: 1574/983,
  31479. bottom: 357/1931
  31480. }
  31481. },
  31482. drake: {
  31483. height: math.unit(9, "feet"),
  31484. weight: math.unit(1.5, "tons"),
  31485. name: "Drake",
  31486. image: {
  31487. source: "./media/characters/arimphae/drake.svg",
  31488. extra: 1120/925,
  31489. bottom: 435/1555
  31490. }
  31491. },
  31492. },
  31493. [
  31494. {
  31495. name: "Small",
  31496. height: math.unit(26*5/9, "feet")
  31497. },
  31498. {
  31499. name: "Normal",
  31500. height: math.unit(26, "feet"),
  31501. default: true
  31502. },
  31503. ]
  31504. ))
  31505. characterMakers.push(() => makeCharacter(
  31506. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31507. {
  31508. front: {
  31509. height: math.unit(8 + 9/12, "feet"),
  31510. name: "Front",
  31511. image: {
  31512. source: "./media/characters/xander/front.svg",
  31513. extra: 848/673,
  31514. bottom: 62/910
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Normal",
  31521. height: math.unit(8 + 9/12, "feet"),
  31522. default: true
  31523. },
  31524. {
  31525. name: "Gaze Grabber",
  31526. height: math.unit(13 + 8/12, "feet")
  31527. },
  31528. {
  31529. name: "Jaw Dropper",
  31530. height: math.unit(27, "feet")
  31531. },
  31532. {
  31533. name: "Show Stopper",
  31534. height: math.unit(136, "feet")
  31535. },
  31536. {
  31537. name: "Superstar",
  31538. height: math.unit(1.9e6, "miles")
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31544. {
  31545. side: {
  31546. height: math.unit(2100, "feet"),
  31547. name: "Side",
  31548. image: {
  31549. source: "./media/characters/osiris/side.svg",
  31550. extra: 1105/939,
  31551. bottom: 167/1272
  31552. }
  31553. },
  31554. },
  31555. [
  31556. {
  31557. name: "Macro",
  31558. height: math.unit(2100, "feet"),
  31559. default: true
  31560. },
  31561. ]
  31562. ))
  31563. characterMakers.push(() => makeCharacter(
  31564. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31565. {
  31566. front: {
  31567. height: math.unit(6 + 8/12, "feet"),
  31568. weight: math.unit(225, "lb"),
  31569. name: "Front",
  31570. image: {
  31571. source: "./media/characters/rhys-londe/front.svg",
  31572. extra: 2258/2141,
  31573. bottom: 188/2446
  31574. }
  31575. },
  31576. back: {
  31577. height: math.unit(6 + 8/12, "feet"),
  31578. weight: math.unit(225, "lb"),
  31579. name: "Back",
  31580. image: {
  31581. source: "./media/characters/rhys-londe/back.svg",
  31582. extra: 2237/2137,
  31583. bottom: 63/2300
  31584. }
  31585. },
  31586. frontNsfw: {
  31587. height: math.unit(6 + 8/12, "feet"),
  31588. weight: math.unit(225, "lb"),
  31589. name: "Front (NSFW)",
  31590. image: {
  31591. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31592. extra: 2258/2141,
  31593. bottom: 188/2446
  31594. }
  31595. },
  31596. backNsfw: {
  31597. height: math.unit(6 + 8/12, "feet"),
  31598. weight: math.unit(225, "lb"),
  31599. name: "Back (NSFW)",
  31600. image: {
  31601. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31602. extra: 2237/2137,
  31603. bottom: 63/2300
  31604. }
  31605. },
  31606. dick: {
  31607. height: math.unit(30, "inches"),
  31608. name: "Dick",
  31609. image: {
  31610. source: "./media/characters/rhys-londe/dick.svg"
  31611. }
  31612. },
  31613. maw: {
  31614. height: math.unit(1.6, "feet"),
  31615. name: "Maw",
  31616. image: {
  31617. source: "./media/characters/rhys-londe/maw.svg"
  31618. }
  31619. },
  31620. },
  31621. [
  31622. {
  31623. name: "Normal",
  31624. height: math.unit(6 + 8/12, "feet"),
  31625. default: true
  31626. },
  31627. ]
  31628. ))
  31629. characterMakers.push(() => makeCharacter(
  31630. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31631. {
  31632. front: {
  31633. height: math.unit(3 + 10/12, "feet"),
  31634. weight: math.unit(90, "lb"),
  31635. name: "Front",
  31636. image: {
  31637. source: "./media/characters/taivas-ensim/front.svg",
  31638. extra: 1327/1216,
  31639. bottom: 96/1423
  31640. }
  31641. },
  31642. back: {
  31643. height: math.unit(3 + 10/12, "feet"),
  31644. weight: math.unit(90, "lb"),
  31645. name: "Back",
  31646. image: {
  31647. source: "./media/characters/taivas-ensim/back.svg",
  31648. extra: 1355/1247,
  31649. bottom: 11/1366
  31650. }
  31651. },
  31652. frontNsfw: {
  31653. height: math.unit(3 + 10/12, "feet"),
  31654. weight: math.unit(90, "lb"),
  31655. name: "Front (NSFW)",
  31656. image: {
  31657. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31658. extra: 1327/1216,
  31659. bottom: 96/1423
  31660. }
  31661. },
  31662. backNsfw: {
  31663. height: math.unit(3 + 10/12, "feet"),
  31664. weight: math.unit(90, "lb"),
  31665. name: "Back (NSFW)",
  31666. image: {
  31667. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31668. extra: 1355/1247,
  31669. bottom: 11/1366
  31670. }
  31671. },
  31672. },
  31673. [
  31674. {
  31675. name: "Normal",
  31676. height: math.unit(3 + 10/12, "feet"),
  31677. default: true
  31678. },
  31679. ]
  31680. ))
  31681. characterMakers.push(() => makeCharacter(
  31682. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31683. {
  31684. front: {
  31685. height: math.unit(9 + 6/12, "feet"),
  31686. weight: math.unit(940, "lb"),
  31687. name: "Front",
  31688. image: {
  31689. source: "./media/characters/byliss/front.svg",
  31690. extra: 1327/1290,
  31691. bottom: 82/1409
  31692. }
  31693. },
  31694. back: {
  31695. height: math.unit(9 + 6/12, "feet"),
  31696. weight: math.unit(940, "lb"),
  31697. name: "Back",
  31698. image: {
  31699. source: "./media/characters/byliss/back.svg",
  31700. extra: 1376/1349,
  31701. bottom: 9/1385
  31702. }
  31703. },
  31704. frontNsfw: {
  31705. height: math.unit(9 + 6/12, "feet"),
  31706. weight: math.unit(940, "lb"),
  31707. name: "Front (NSFW)",
  31708. image: {
  31709. source: "./media/characters/byliss/front-nsfw.svg",
  31710. extra: 1327/1290,
  31711. bottom: 82/1409
  31712. }
  31713. },
  31714. backNsfw: {
  31715. height: math.unit(9 + 6/12, "feet"),
  31716. weight: math.unit(940, "lb"),
  31717. name: "Back (NSFW)",
  31718. image: {
  31719. source: "./media/characters/byliss/back-nsfw.svg",
  31720. extra: 1376/1349,
  31721. bottom: 9/1385
  31722. }
  31723. },
  31724. },
  31725. [
  31726. {
  31727. name: "Normal",
  31728. height: math.unit(9 + 6/12, "feet"),
  31729. default: true
  31730. },
  31731. ]
  31732. ))
  31733. characterMakers.push(() => makeCharacter(
  31734. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31735. {
  31736. front: {
  31737. height: math.unit(5 + 2/12, "feet"),
  31738. weight: math.unit(200, "lb"),
  31739. name: "Front",
  31740. image: {
  31741. source: "./media/characters/noraly/front.svg",
  31742. extra: 4985/4773,
  31743. bottom: 150/5135
  31744. }
  31745. },
  31746. full: {
  31747. height: math.unit(5 + 2/12, "feet"),
  31748. weight: math.unit(164, "lb"),
  31749. name: "Full",
  31750. image: {
  31751. source: "./media/characters/noraly/full.svg",
  31752. extra: 1114/1059,
  31753. bottom: 35/1149
  31754. }
  31755. },
  31756. fuller: {
  31757. height: math.unit(5 + 2/12, "feet"),
  31758. weight: math.unit(230, "lb"),
  31759. name: "Fuller",
  31760. image: {
  31761. source: "./media/characters/noraly/fuller.svg",
  31762. extra: 1114/1059,
  31763. bottom: 35/1149
  31764. }
  31765. },
  31766. fullest: {
  31767. height: math.unit(5 + 2/12, "feet"),
  31768. weight: math.unit(300, "lb"),
  31769. name: "Fullest",
  31770. image: {
  31771. source: "./media/characters/noraly/fullest.svg",
  31772. extra: 1114/1059,
  31773. bottom: 35/1149
  31774. }
  31775. },
  31776. },
  31777. [
  31778. {
  31779. name: "Normal",
  31780. height: math.unit(5 + 2/12, "feet"),
  31781. default: true
  31782. },
  31783. ]
  31784. ))
  31785. characterMakers.push(() => makeCharacter(
  31786. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31787. {
  31788. front: {
  31789. height: math.unit(5 + 2/12, "feet"),
  31790. weight: math.unit(210, "lb"),
  31791. name: "Front",
  31792. image: {
  31793. source: "./media/characters/pera/front.svg",
  31794. extra: 1560/1531,
  31795. bottom: 165/1725
  31796. }
  31797. },
  31798. back: {
  31799. height: math.unit(5 + 2/12, "feet"),
  31800. weight: math.unit(210, "lb"),
  31801. name: "Back",
  31802. image: {
  31803. source: "./media/characters/pera/back.svg",
  31804. extra: 1523/1493,
  31805. bottom: 152/1675
  31806. }
  31807. },
  31808. dick: {
  31809. height: math.unit(2.4, "feet"),
  31810. name: "Dick",
  31811. image: {
  31812. source: "./media/characters/pera/dick.svg"
  31813. }
  31814. },
  31815. },
  31816. [
  31817. {
  31818. name: "Normal",
  31819. height: math.unit(5 + 2/12, "feet"),
  31820. default: true
  31821. },
  31822. ]
  31823. ))
  31824. characterMakers.push(() => makeCharacter(
  31825. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31826. {
  31827. front: {
  31828. height: math.unit(12, "feet"),
  31829. weight: math.unit(3200, "lb"),
  31830. name: "Front",
  31831. image: {
  31832. source: "./media/characters/julian/front.svg",
  31833. extra: 2962/2701,
  31834. bottom: 184/3146
  31835. }
  31836. },
  31837. maw: {
  31838. height: math.unit(5.35, "feet"),
  31839. name: "Maw",
  31840. image: {
  31841. source: "./media/characters/julian/maw.svg"
  31842. }
  31843. },
  31844. paw: {
  31845. height: math.unit(3.07, "feet"),
  31846. name: "Paw",
  31847. image: {
  31848. source: "./media/characters/julian/paw.svg"
  31849. }
  31850. },
  31851. },
  31852. [
  31853. {
  31854. name: "Default",
  31855. height: math.unit(12, "feet"),
  31856. default: true
  31857. },
  31858. {
  31859. name: "Big",
  31860. height: math.unit(50, "feet")
  31861. },
  31862. {
  31863. name: "Really Big",
  31864. height: math.unit(1, "mile")
  31865. },
  31866. {
  31867. name: "Extremely Big",
  31868. height: math.unit(100, "miles")
  31869. },
  31870. {
  31871. name: "Planet Hugger",
  31872. height: math.unit(200, "megameters")
  31873. },
  31874. {
  31875. name: "Unreasonably Big",
  31876. height: math.unit(1e300, "meters")
  31877. },
  31878. ]
  31879. ))
  31880. characterMakers.push(() => makeCharacter(
  31881. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31882. {
  31883. solgooleo: {
  31884. height: math.unit(4, "meters"),
  31885. weight: math.unit(6000*1.5, "kg"),
  31886. volume: math.unit(6000, "liters"),
  31887. name: "Solgooleo",
  31888. image: {
  31889. source: "./media/characters/pi/solgooleo.svg",
  31890. extra: 388/331,
  31891. bottom: 29/417
  31892. }
  31893. },
  31894. },
  31895. [
  31896. {
  31897. name: "Normal",
  31898. height: math.unit(4, "meters"),
  31899. default: true
  31900. },
  31901. ]
  31902. ))
  31903. characterMakers.push(() => makeCharacter(
  31904. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31905. {
  31906. front: {
  31907. height: math.unit(8 + 2/12, "feet"),
  31908. weight: math.unit(4, "tons"),
  31909. name: "Front",
  31910. image: {
  31911. source: "./media/characters/shaun/front.svg",
  31912. extra: 1550/1505,
  31913. bottom: 353/1903
  31914. }
  31915. },
  31916. },
  31917. [
  31918. {
  31919. name: "Lorg",
  31920. height: math.unit(8 + 2/12, "feet"),
  31921. default: true
  31922. },
  31923. ]
  31924. ))
  31925. characterMakers.push(() => makeCharacter(
  31926. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31927. {
  31928. front: {
  31929. height: math.unit(7, "feet"),
  31930. name: "Front",
  31931. image: {
  31932. source: "./media/characters/sini/front.svg",
  31933. extra: 726/678,
  31934. bottom: 35/761
  31935. }
  31936. },
  31937. back: {
  31938. height: math.unit(7, "feet"),
  31939. name: "Back",
  31940. image: {
  31941. source: "./media/characters/sini/back.svg",
  31942. extra: 743/701,
  31943. bottom: 12/755
  31944. }
  31945. },
  31946. mawAnthro: {
  31947. height: math.unit(2.14, "feet"),
  31948. name: "Maw (Anthro)",
  31949. image: {
  31950. source: "./media/characters/sini/maw-anthro.svg"
  31951. }
  31952. },
  31953. dick: {
  31954. height: math.unit(1.45, "feet"),
  31955. name: "Dick (Anthro)",
  31956. image: {
  31957. source: "./media/characters/sini/dick-anthro.svg"
  31958. }
  31959. },
  31960. feral: {
  31961. height: math.unit(13, "feet"),
  31962. name: "Feral",
  31963. image: {
  31964. source: "./media/characters/sini/feral.svg",
  31965. extra: 814/605,
  31966. bottom: 11/825
  31967. }
  31968. },
  31969. mawFeral: {
  31970. height: math.unit(4.6, "feet"),
  31971. name: "Maw-feral",
  31972. image: {
  31973. source: "./media/characters/sini/maw-feral.svg"
  31974. }
  31975. },
  31976. footFeral: {
  31977. height: math.unit(4.2, "feet"),
  31978. name: "Foot-feral",
  31979. image: {
  31980. source: "./media/characters/sini/foot-feral.svg"
  31981. }
  31982. },
  31983. },
  31984. [
  31985. {
  31986. name: "Normal",
  31987. height: math.unit(7, "feet"),
  31988. default: true
  31989. },
  31990. ]
  31991. ))
  31992. characterMakers.push(() => makeCharacter(
  31993. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  31994. {
  31995. side: {
  31996. height: math.unit(13, "meters"),
  31997. weight: math.unit(9072, "kg"),
  31998. name: "Side",
  31999. image: {
  32000. source: "./media/characters/raylldo/side.svg",
  32001. extra: 403/344,
  32002. bottom: 42/445
  32003. }
  32004. },
  32005. leaping: {
  32006. height: math.unit(12.3, "meters"),
  32007. weight: math.unit(9072, "kg"),
  32008. name: "Leaping",
  32009. image: {
  32010. source: "./media/characters/raylldo/leaping.svg",
  32011. extra: 470/249,
  32012. bottom: 13/483
  32013. }
  32014. },
  32015. flying: {
  32016. height: math.unit(18, "meters"),
  32017. weight: math.unit(9072, "kg"),
  32018. name: "Flying",
  32019. image: {
  32020. source: "./media/characters/raylldo/flying.svg"
  32021. }
  32022. },
  32023. head: {
  32024. height: math.unit(5.85, "meters"),
  32025. name: "Head",
  32026. image: {
  32027. source: "./media/characters/raylldo/head.svg"
  32028. }
  32029. },
  32030. maw: {
  32031. height: math.unit(5.32, "meters"),
  32032. name: "Maw",
  32033. image: {
  32034. source: "./media/characters/raylldo/maw.svg"
  32035. }
  32036. },
  32037. eye: {
  32038. height: math.unit(0.54, "meters"),
  32039. name: "Eye",
  32040. image: {
  32041. source: "./media/characters/raylldo/eye.svg"
  32042. }
  32043. },
  32044. },
  32045. [
  32046. {
  32047. name: "Normal",
  32048. height: math.unit(13, "meters"),
  32049. default: true
  32050. },
  32051. ]
  32052. ))
  32053. characterMakers.push(() => makeCharacter(
  32054. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32055. {
  32056. anthroFront: {
  32057. height: math.unit(9, "feet"),
  32058. weight: math.unit(600, "lb"),
  32059. name: "Anthro (Front)",
  32060. image: {
  32061. source: "./media/characters/glint/anthro-front.svg",
  32062. extra: 1097/1018,
  32063. bottom: 28/1125
  32064. }
  32065. },
  32066. anthroBack: {
  32067. height: math.unit(9, "feet"),
  32068. weight: math.unit(600, "lb"),
  32069. name: "Anthro (Back)",
  32070. image: {
  32071. source: "./media/characters/glint/anthro-back.svg",
  32072. extra: 1154/997,
  32073. bottom: 36/1190
  32074. }
  32075. },
  32076. feral: {
  32077. height: math.unit(11, "feet"),
  32078. weight: math.unit(50000, "lb"),
  32079. name: "Feral",
  32080. image: {
  32081. source: "./media/characters/glint/feral.svg",
  32082. extra: 3035/1585,
  32083. bottom: 1169/4204
  32084. }
  32085. },
  32086. dickAnthro: {
  32087. height: math.unit(0.7, "meters"),
  32088. name: "Dick (Anthro)",
  32089. image: {
  32090. source: "./media/characters/glint/dick-anthro.svg"
  32091. }
  32092. },
  32093. dickFeral: {
  32094. height: math.unit(2.65, "meters"),
  32095. name: "Dick (Feral)",
  32096. image: {
  32097. source: "./media/characters/glint/dick-feral.svg"
  32098. }
  32099. },
  32100. slitHidden: {
  32101. height: math.unit(5.85, "meters"),
  32102. name: "Slit (Hidden)",
  32103. image: {
  32104. source: "./media/characters/glint/slit-hidden.svg"
  32105. }
  32106. },
  32107. slitErect: {
  32108. height: math.unit(5.85, "meters"),
  32109. name: "Slit (Erect)",
  32110. image: {
  32111. source: "./media/characters/glint/slit-erect.svg"
  32112. }
  32113. },
  32114. mawAnthro: {
  32115. height: math.unit(0.63, "meters"),
  32116. name: "Maw (Anthro)",
  32117. image: {
  32118. source: "./media/characters/glint/maw.svg"
  32119. }
  32120. },
  32121. mawFeral: {
  32122. height: math.unit(2.89, "meters"),
  32123. name: "Maw (Feral)",
  32124. image: {
  32125. source: "./media/characters/glint/maw.svg"
  32126. }
  32127. },
  32128. },
  32129. [
  32130. {
  32131. name: "Normal",
  32132. height: math.unit(9, "feet"),
  32133. default: true
  32134. },
  32135. ]
  32136. ))
  32137. characterMakers.push(() => makeCharacter(
  32138. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32139. {
  32140. side: {
  32141. height: math.unit(15, "feet"),
  32142. weight: math.unit(5000, "kg"),
  32143. name: "Side",
  32144. image: {
  32145. source: "./media/characters/kairne/side.svg",
  32146. extra: 979/811,
  32147. bottom: 13/992
  32148. }
  32149. },
  32150. front: {
  32151. height: math.unit(15, "feet"),
  32152. weight: math.unit(5000, "kg"),
  32153. name: "Front",
  32154. image: {
  32155. source: "./media/characters/kairne/front.svg",
  32156. extra: 908/814,
  32157. bottom: 26/934
  32158. }
  32159. },
  32160. sideNsfw: {
  32161. height: math.unit(15, "feet"),
  32162. weight: math.unit(5000, "kg"),
  32163. name: "Side (NSFW)",
  32164. image: {
  32165. source: "./media/characters/kairne/side-nsfw.svg",
  32166. extra: 979/811,
  32167. bottom: 13/992
  32168. }
  32169. },
  32170. frontNsfw: {
  32171. height: math.unit(15, "feet"),
  32172. weight: math.unit(5000, "kg"),
  32173. name: "Front (NSFW)",
  32174. image: {
  32175. source: "./media/characters/kairne/front-nsfw.svg",
  32176. extra: 908/814,
  32177. bottom: 26/934
  32178. }
  32179. },
  32180. dickCaged: {
  32181. height: math.unit(0.65, "meters"),
  32182. name: "Dick-caged",
  32183. image: {
  32184. source: "./media/characters/kairne/dick-caged.svg"
  32185. }
  32186. },
  32187. dick: {
  32188. height: math.unit(0.79, "meters"),
  32189. name: "Dick",
  32190. image: {
  32191. source: "./media/characters/kairne/dick.svg"
  32192. }
  32193. },
  32194. genitals: {
  32195. height: math.unit(1.29, "meters"),
  32196. name: "Genitals",
  32197. image: {
  32198. source: "./media/characters/kairne/genitals.svg"
  32199. }
  32200. },
  32201. maw: {
  32202. height: math.unit(1.73, "meters"),
  32203. name: "Maw",
  32204. image: {
  32205. source: "./media/characters/kairne/maw.svg"
  32206. }
  32207. },
  32208. },
  32209. [
  32210. {
  32211. name: "Normal",
  32212. height: math.unit(15, "feet"),
  32213. default: true
  32214. },
  32215. ]
  32216. ))
  32217. characterMakers.push(() => makeCharacter(
  32218. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32219. {
  32220. front: {
  32221. height: math.unit(5 + 8/12, "feet"),
  32222. weight: math.unit(139, "lb"),
  32223. name: "Front",
  32224. image: {
  32225. source: "./media/characters/biscuit-jackal/front.svg",
  32226. extra: 2106/1961,
  32227. bottom: 58/2164
  32228. }
  32229. },
  32230. back: {
  32231. height: math.unit(5 + 8/12, "feet"),
  32232. weight: math.unit(139, "lb"),
  32233. name: "Back",
  32234. image: {
  32235. source: "./media/characters/biscuit-jackal/back.svg",
  32236. extra: 2132/1976,
  32237. bottom: 57/2189
  32238. }
  32239. },
  32240. werejackal: {
  32241. height: math.unit(6 + 3/12, "feet"),
  32242. weight: math.unit(188, "lb"),
  32243. name: "Werejackal",
  32244. image: {
  32245. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32246. extra: 2373/2178,
  32247. bottom: 53/2426
  32248. }
  32249. },
  32250. },
  32251. [
  32252. {
  32253. name: "Normal",
  32254. height: math.unit(5 + 8/12, "feet"),
  32255. default: true
  32256. },
  32257. ]
  32258. ))
  32259. characterMakers.push(() => makeCharacter(
  32260. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32261. {
  32262. front: {
  32263. height: math.unit(140, "cm"),
  32264. weight: math.unit(45, "kg"),
  32265. name: "Front",
  32266. image: {
  32267. source: "./media/characters/tayra-white/front.svg",
  32268. extra: 2229/2192,
  32269. bottom: 75/2304
  32270. }
  32271. },
  32272. },
  32273. [
  32274. {
  32275. name: "Normal",
  32276. height: math.unit(140, "cm"),
  32277. default: true
  32278. },
  32279. ]
  32280. ))
  32281. characterMakers.push(() => makeCharacter(
  32282. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32283. {
  32284. front: {
  32285. height: math.unit(4 + 5/12, "feet"),
  32286. name: "Front",
  32287. image: {
  32288. source: "./media/characters/scoop/front.svg",
  32289. extra: 1257/1136,
  32290. bottom: 69/1326
  32291. }
  32292. },
  32293. back: {
  32294. height: math.unit(4 + 5/12, "feet"),
  32295. name: "Back",
  32296. image: {
  32297. source: "./media/characters/scoop/back.svg",
  32298. extra: 1321/1152,
  32299. bottom: 32/1353
  32300. }
  32301. },
  32302. maw: {
  32303. height: math.unit(0.68, "feet"),
  32304. name: "Maw",
  32305. image: {
  32306. source: "./media/characters/scoop/maw.svg"
  32307. }
  32308. },
  32309. },
  32310. [
  32311. {
  32312. name: "Really Small",
  32313. height: math.unit(1, "mm")
  32314. },
  32315. {
  32316. name: "Micro",
  32317. height: math.unit(1, "inch")
  32318. },
  32319. {
  32320. name: "Normal",
  32321. height: math.unit(4 + 5/12, "feet"),
  32322. default: true
  32323. },
  32324. {
  32325. name: "Macro",
  32326. height: math.unit(200, "feet")
  32327. },
  32328. {
  32329. name: "Megamacro",
  32330. height: math.unit(3240, "feet")
  32331. },
  32332. {
  32333. name: "Teramacro",
  32334. height: math.unit(2500, "miles")
  32335. },
  32336. ]
  32337. ))
  32338. characterMakers.push(() => makeCharacter(
  32339. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32340. {
  32341. front: {
  32342. height: math.unit(15 + 7/12, "feet"),
  32343. name: "Front",
  32344. image: {
  32345. source: "./media/characters/saphinara/front.svg",
  32346. extra: 604/546,
  32347. bottom: 19/623
  32348. }
  32349. },
  32350. side: {
  32351. height: math.unit(15 + 7/12, "feet"),
  32352. name: "Side",
  32353. image: {
  32354. source: "./media/characters/saphinara/side.svg",
  32355. extra: 605/547,
  32356. bottom: 6/611
  32357. }
  32358. },
  32359. back: {
  32360. height: math.unit(15 + 7/12, "feet"),
  32361. name: "Back",
  32362. image: {
  32363. source: "./media/characters/saphinara/back.svg",
  32364. extra: 591/531,
  32365. bottom: 13/604
  32366. }
  32367. },
  32368. frontTail: {
  32369. height: math.unit(15 + 7/12, "feet"),
  32370. name: "Front (Full Tail)",
  32371. image: {
  32372. source: "./media/characters/saphinara/front-tail.svg",
  32373. extra: 748/547,
  32374. bottom: 66/814
  32375. }
  32376. },
  32377. },
  32378. [
  32379. {
  32380. name: "Normal",
  32381. height: math.unit(15 + 7/12, "feet"),
  32382. default: true
  32383. },
  32384. {
  32385. name: "Angry",
  32386. height: math.unit(30 + 6/12, "feet")
  32387. },
  32388. {
  32389. name: "Enraged",
  32390. height: math.unit(102 + 1/12, "feet")
  32391. },
  32392. ]
  32393. ))
  32394. characterMakers.push(() => makeCharacter(
  32395. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32396. {
  32397. front: {
  32398. height: math.unit(6 + 8/12, "feet"),
  32399. weight: math.unit(300, "lb"),
  32400. name: "Front",
  32401. image: {
  32402. source: "./media/characters/jrain/front.svg",
  32403. extra: 3039/2865,
  32404. bottom: 399/3438
  32405. }
  32406. },
  32407. back: {
  32408. height: math.unit(6 + 8/12, "feet"),
  32409. weight: math.unit(300, "lb"),
  32410. name: "Back",
  32411. image: {
  32412. source: "./media/characters/jrain/back.svg",
  32413. extra: 3089/2938,
  32414. bottom: 172/3261
  32415. }
  32416. },
  32417. head: {
  32418. height: math.unit(2.14, "feet"),
  32419. name: "Head",
  32420. image: {
  32421. source: "./media/characters/jrain/head.svg"
  32422. }
  32423. },
  32424. maw: {
  32425. height: math.unit(1.77, "feet"),
  32426. name: "Maw",
  32427. image: {
  32428. source: "./media/characters/jrain/maw.svg"
  32429. }
  32430. },
  32431. leftHand: {
  32432. height: math.unit(1.1, "feet"),
  32433. name: "Left Hand",
  32434. image: {
  32435. source: "./media/characters/jrain/left-hand.svg"
  32436. }
  32437. },
  32438. rightHand: {
  32439. height: math.unit(1.1, "feet"),
  32440. name: "Right Hand",
  32441. image: {
  32442. source: "./media/characters/jrain/right-hand.svg"
  32443. }
  32444. },
  32445. eye: {
  32446. height: math.unit(0.35, "feet"),
  32447. name: "Eye",
  32448. image: {
  32449. source: "./media/characters/jrain/eye.svg"
  32450. }
  32451. },
  32452. },
  32453. [
  32454. {
  32455. name: "Normal",
  32456. height: math.unit(6 + 8/12, "feet"),
  32457. default: true
  32458. },
  32459. {
  32460. name: "Casually Large",
  32461. height: math.unit(25, "feet")
  32462. },
  32463. {
  32464. name: "Giant",
  32465. height: math.unit(100, "feet")
  32466. },
  32467. {
  32468. name: "Kaiju",
  32469. height: math.unit(300, "feet")
  32470. },
  32471. ]
  32472. ))
  32473. characterMakers.push(() => makeCharacter(
  32474. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32475. {
  32476. dragon: {
  32477. height: math.unit(5, "meters"),
  32478. name: "Dragon",
  32479. image: {
  32480. source: "./media/characters/sabrina/dragon.svg",
  32481. extra: 3670 / 2365,
  32482. bottom: 333 / 4003
  32483. }
  32484. },
  32485. gryphon: {
  32486. height: math.unit(3, "meters"),
  32487. name: "Gryphon",
  32488. image: {
  32489. source: "./media/characters/sabrina/gryphon.svg",
  32490. extra: 1576 / 945,
  32491. bottom: 71 / 1647
  32492. }
  32493. },
  32494. snake: {
  32495. height: math.unit(12, "meters"),
  32496. name: "Snake",
  32497. image: {
  32498. source: "./media/characters/sabrina/snake.svg",
  32499. extra: 1758 / 1320,
  32500. bottom: 186 / 1944
  32501. }
  32502. },
  32503. collar: {
  32504. height: math.unit(1.86, "meters"),
  32505. name: "Collar",
  32506. image: {
  32507. source: "./media/characters/sabrina/collar.svg"
  32508. }
  32509. },
  32510. eye: {
  32511. height: math.unit(0.53, "meters"),
  32512. name: "Eye",
  32513. image: {
  32514. source: "./media/characters/sabrina/eye.svg"
  32515. }
  32516. },
  32517. foot: {
  32518. height: math.unit(1.86, "meters"),
  32519. name: "Foot",
  32520. image: {
  32521. source: "./media/characters/sabrina/foot.svg"
  32522. }
  32523. },
  32524. hand: {
  32525. height: math.unit(1.32, "meters"),
  32526. name: "Hand",
  32527. image: {
  32528. source: "./media/characters/sabrina/hand.svg"
  32529. }
  32530. },
  32531. head: {
  32532. height: math.unit(2.44, "meters"),
  32533. name: "Head",
  32534. image: {
  32535. source: "./media/characters/sabrina/head.svg"
  32536. }
  32537. },
  32538. headAngry: {
  32539. height: math.unit(2.44, "meters"),
  32540. name: "Head (Angry))",
  32541. image: {
  32542. source: "./media/characters/sabrina/head-angry.svg"
  32543. }
  32544. },
  32545. maw: {
  32546. height: math.unit(1.65, "meters"),
  32547. name: "Maw",
  32548. image: {
  32549. source: "./media/characters/sabrina/maw.svg"
  32550. }
  32551. },
  32552. spikes: {
  32553. height: math.unit(1.69, "meters"),
  32554. name: "Spikes",
  32555. image: {
  32556. source: "./media/characters/sabrina/spikes.svg"
  32557. }
  32558. },
  32559. stomach: {
  32560. height: math.unit(1.15, "meters"),
  32561. name: "Stomach",
  32562. image: {
  32563. source: "./media/characters/sabrina/stomach.svg"
  32564. }
  32565. },
  32566. tongue: {
  32567. height: math.unit(1.27, "meters"),
  32568. name: "Tongue",
  32569. image: {
  32570. source: "./media/characters/sabrina/tongue.svg"
  32571. }
  32572. },
  32573. wingDorsal: {
  32574. height: math.unit(4.85, "meters"),
  32575. name: "Wing (Dorsal)",
  32576. image: {
  32577. source: "./media/characters/sabrina/wing-dorsal.svg"
  32578. }
  32579. },
  32580. wingVentral: {
  32581. height: math.unit(4.85, "meters"),
  32582. name: "Wing (Ventral)",
  32583. image: {
  32584. source: "./media/characters/sabrina/wing-ventral.svg"
  32585. }
  32586. },
  32587. },
  32588. [
  32589. {
  32590. name: "Normal",
  32591. height: math.unit(5, "meters"),
  32592. default: true
  32593. },
  32594. ]
  32595. ))
  32596. characterMakers.push(() => makeCharacter(
  32597. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32598. {
  32599. frontMaid: {
  32600. height: math.unit(5 + 5/12, "feet"),
  32601. weight: math.unit(130, "lb"),
  32602. name: "Front (Maid)",
  32603. image: {
  32604. source: "./media/characters/midnight-tales/front-maid.svg",
  32605. extra: 489/454,
  32606. bottom: 61/550
  32607. }
  32608. },
  32609. frontFormal: {
  32610. height: math.unit(5 + 5/12, "feet"),
  32611. weight: math.unit(130, "lb"),
  32612. name: "Front (Formal)",
  32613. image: {
  32614. source: "./media/characters/midnight-tales/front-formal.svg",
  32615. extra: 489/454,
  32616. bottom: 61/550
  32617. }
  32618. },
  32619. back: {
  32620. height: math.unit(5 + 5/12, "feet"),
  32621. weight: math.unit(130, "lb"),
  32622. name: "Back",
  32623. image: {
  32624. source: "./media/characters/midnight-tales/back.svg",
  32625. extra: 498/456,
  32626. bottom: 33/531
  32627. }
  32628. },
  32629. frontBeast: {
  32630. height: math.unit(40, "feet"),
  32631. weight: math.unit(64000, "lb"),
  32632. name: "Front (Beast)",
  32633. image: {
  32634. source: "./media/characters/midnight-tales/front-beast.svg",
  32635. extra: 927/860,
  32636. bottom: 53/980
  32637. }
  32638. },
  32639. backBeast: {
  32640. height: math.unit(40, "feet"),
  32641. weight: math.unit(64000, "lb"),
  32642. name: "Back (Beast)",
  32643. image: {
  32644. source: "./media/characters/midnight-tales/back-beast.svg",
  32645. extra: 929/855,
  32646. bottom: 16/945
  32647. }
  32648. },
  32649. footBeast: {
  32650. height: math.unit(6.7, "feet"),
  32651. name: "Foot (Beast)",
  32652. image: {
  32653. source: "./media/characters/midnight-tales/foot-beast.svg"
  32654. }
  32655. },
  32656. headBeast: {
  32657. height: math.unit(8, "feet"),
  32658. name: "Head (Beast)",
  32659. image: {
  32660. source: "./media/characters/midnight-tales/head-beast.svg"
  32661. }
  32662. },
  32663. },
  32664. [
  32665. {
  32666. name: "Normal",
  32667. height: math.unit(5 + 5 / 12, "feet"),
  32668. default: true
  32669. },
  32670. {
  32671. name: "Macro",
  32672. height: math.unit(25, "feet")
  32673. },
  32674. ]
  32675. ))
  32676. characterMakers.push(() => makeCharacter(
  32677. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32678. {
  32679. front: {
  32680. height: math.unit(5 + 10/12, "feet"),
  32681. name: "Front",
  32682. image: {
  32683. source: "./media/characters/argon/front.svg",
  32684. extra: 2009/1935,
  32685. bottom: 118/2127
  32686. }
  32687. },
  32688. back: {
  32689. height: math.unit(5 + 10/12, "feet"),
  32690. name: "Back",
  32691. image: {
  32692. source: "./media/characters/argon/back.svg",
  32693. extra: 2047/1992,
  32694. bottom: 20/2067
  32695. }
  32696. },
  32697. frontDressed: {
  32698. height: math.unit(5 + 10/12, "feet"),
  32699. name: "Front (Dressed)",
  32700. image: {
  32701. source: "./media/characters/argon/front-dressed.svg",
  32702. extra: 2009/1935,
  32703. bottom: 118/2127
  32704. }
  32705. },
  32706. },
  32707. [
  32708. {
  32709. name: "Normal",
  32710. height: math.unit(5 + 10/12, "feet"),
  32711. default: true
  32712. },
  32713. ]
  32714. ))
  32715. characterMakers.push(() => makeCharacter(
  32716. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32717. {
  32718. front: {
  32719. height: math.unit(8 + 6/12, "feet"),
  32720. weight: math.unit(1150, "lb"),
  32721. name: "Front",
  32722. image: {
  32723. source: "./media/characters/kichi/front.svg",
  32724. extra: 1267/1164,
  32725. bottom: 61/1328
  32726. }
  32727. },
  32728. back: {
  32729. height: math.unit(8 + 6/12, "feet"),
  32730. weight: math.unit(1150, "lb"),
  32731. name: "Back",
  32732. image: {
  32733. source: "./media/characters/kichi/back.svg",
  32734. extra: 1273/1166,
  32735. bottom: 33/1306
  32736. }
  32737. },
  32738. },
  32739. [
  32740. {
  32741. name: "Normal",
  32742. height: math.unit(8 + 6/12, "feet"),
  32743. default: true
  32744. },
  32745. ]
  32746. ))
  32747. characterMakers.push(() => makeCharacter(
  32748. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32749. {
  32750. front: {
  32751. height: math.unit(6, "feet"),
  32752. weight: math.unit(210, "lb"),
  32753. name: "Front",
  32754. image: {
  32755. source: "./media/characters/manetel-greyscale/front.svg",
  32756. extra: 350/312,
  32757. bottom: 8/358
  32758. }
  32759. },
  32760. },
  32761. [
  32762. {
  32763. name: "Micro",
  32764. height: math.unit(2, "inches")
  32765. },
  32766. {
  32767. name: "Normal",
  32768. height: math.unit(6, "feet"),
  32769. default: true
  32770. },
  32771. {
  32772. name: "Minimacro",
  32773. height: math.unit(17, "feet")
  32774. },
  32775. {
  32776. name: "Macro",
  32777. height: math.unit(117, "feet")
  32778. },
  32779. ]
  32780. ))
  32781. characterMakers.push(() => makeCharacter(
  32782. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32783. {
  32784. side: {
  32785. height: math.unit(5 + 1/12, "feet"),
  32786. weight: math.unit(418, "lb"),
  32787. name: "Side",
  32788. image: {
  32789. source: "./media/characters/softpurr/side.svg",
  32790. extra: 1993/1945,
  32791. bottom: 134/2127
  32792. }
  32793. },
  32794. front: {
  32795. height: math.unit(5 + 1/12, "feet"),
  32796. weight: math.unit(418, "lb"),
  32797. name: "Front",
  32798. image: {
  32799. source: "./media/characters/softpurr/front.svg",
  32800. extra: 1950/1856,
  32801. bottom: 174/2124
  32802. }
  32803. },
  32804. paw: {
  32805. height: math.unit(1, "feet"),
  32806. name: "Paw",
  32807. image: {
  32808. source: "./media/characters/softpurr/paw.svg"
  32809. }
  32810. },
  32811. },
  32812. [
  32813. {
  32814. name: "Normal",
  32815. height: math.unit(5 + 1/12, "feet"),
  32816. default: true
  32817. },
  32818. ]
  32819. ))
  32820. characterMakers.push(() => makeCharacter(
  32821. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32822. {
  32823. front: {
  32824. height: math.unit(260, "meters"),
  32825. name: "Front",
  32826. image: {
  32827. source: "./media/characters/anahita/front.svg",
  32828. extra: 665/635,
  32829. bottom: 89/754
  32830. }
  32831. },
  32832. },
  32833. [
  32834. {
  32835. name: "Macro",
  32836. height: math.unit(260, "meters"),
  32837. default: true
  32838. },
  32839. ]
  32840. ))
  32841. characterMakers.push(() => makeCharacter(
  32842. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32843. {
  32844. front: {
  32845. height: math.unit(4 + 10/12, "feet"),
  32846. weight: math.unit(160, "lb"),
  32847. name: "Front",
  32848. image: {
  32849. source: "./media/characters/chip-mouse/front.svg",
  32850. extra: 3528/3408,
  32851. bottom: 0/3528
  32852. }
  32853. },
  32854. frontNsfw: {
  32855. height: math.unit(4 + 10/12, "feet"),
  32856. weight: math.unit(160, "lb"),
  32857. name: "Front (NSFW)",
  32858. image: {
  32859. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32860. extra: 3528/3408,
  32861. bottom: 0/3528
  32862. }
  32863. },
  32864. },
  32865. [
  32866. {
  32867. name: "Normal",
  32868. height: math.unit(4 + 10/12, "feet"),
  32869. default: true
  32870. },
  32871. ]
  32872. ))
  32873. characterMakers.push(() => makeCharacter(
  32874. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32875. {
  32876. side: {
  32877. height: math.unit(10, "feet"),
  32878. weight: math.unit(14000, "lb"),
  32879. name: "Side",
  32880. image: {
  32881. source: "./media/characters/kremm/side.svg",
  32882. extra: 1390/1053,
  32883. bottom: 90/1480
  32884. }
  32885. },
  32886. gut: {
  32887. height: math.unit(5.8, "feet"),
  32888. name: "Gut",
  32889. image: {
  32890. source: "./media/characters/kremm/gut.svg"
  32891. }
  32892. },
  32893. ass: {
  32894. height: math.unit(6.1, "feet"),
  32895. name: "Ass",
  32896. image: {
  32897. source: "./media/characters/kremm/ass.svg"
  32898. }
  32899. },
  32900. jaws: {
  32901. height: math.unit(2.2, "feet"),
  32902. name: "Jaws",
  32903. image: {
  32904. source: "./media/characters/kremm/jaws.svg"
  32905. }
  32906. },
  32907. dick: {
  32908. height: math.unit(4.26, "feet"),
  32909. name: "Dick",
  32910. image: {
  32911. source: "./media/characters/kremm/dick.svg"
  32912. }
  32913. },
  32914. },
  32915. [
  32916. {
  32917. name: "Normal",
  32918. height: math.unit(10, "feet"),
  32919. default: true
  32920. },
  32921. ]
  32922. ))
  32923. characterMakers.push(() => makeCharacter(
  32924. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  32925. {
  32926. front: {
  32927. height: math.unit(30, "stories"),
  32928. name: "Front",
  32929. image: {
  32930. source: "./media/characters/kai/front.svg",
  32931. extra: 1892/1718,
  32932. bottom: 162/2054
  32933. }
  32934. },
  32935. },
  32936. [
  32937. {
  32938. name: "Macro",
  32939. height: math.unit(30, "stories"),
  32940. default: true
  32941. },
  32942. ]
  32943. ))
  32944. characterMakers.push(() => makeCharacter(
  32945. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  32946. {
  32947. front: {
  32948. height: math.unit(6 + 4/12, "feet"),
  32949. weight: math.unit(145, "lb"),
  32950. name: "Front",
  32951. image: {
  32952. source: "./media/characters/sykes/front.svg",
  32953. extra: 1321 / 1187,
  32954. bottom: 66 / 1387
  32955. }
  32956. },
  32957. back: {
  32958. height: math.unit(6 + 4/12, "feet"),
  32959. weight: math.unit(145, "lb"),
  32960. name: "Back",
  32961. image: {
  32962. source: "./media/characters/sykes/back.svg",
  32963. extra: 1326/1181,
  32964. bottom: 31/1357
  32965. }
  32966. },
  32967. handBack: {
  32968. height: math.unit(0.9, "feet"),
  32969. name: "Hand (Back)",
  32970. image: {
  32971. source: "./media/characters/sykes/hand-back.svg"
  32972. }
  32973. },
  32974. handFront: {
  32975. height: math.unit(0.839, "feet"),
  32976. name: "Hand (Front)",
  32977. image: {
  32978. source: "./media/characters/sykes/hand-front.svg"
  32979. }
  32980. },
  32981. leftFoot: {
  32982. height: math.unit(1.2, "feet"),
  32983. name: "Foot (Left)",
  32984. image: {
  32985. source: "./media/characters/sykes/foot-left.svg"
  32986. }
  32987. },
  32988. rightFoot: {
  32989. height: math.unit(1.2, "feet"),
  32990. name: "Foot (Right)",
  32991. image: {
  32992. source: "./media/characters/sykes/foot-right.svg"
  32993. }
  32994. },
  32995. maw: {
  32996. height: math.unit(1.93, "feet"),
  32997. name: "Maw",
  32998. image: {
  32999. source: "./media/characters/sykes/maw.svg"
  33000. }
  33001. },
  33002. teeth: {
  33003. height: math.unit(0.51, "feet"),
  33004. name: "Teeth",
  33005. image: {
  33006. source: "./media/characters/sykes/teeth.svg"
  33007. }
  33008. },
  33009. tongue: {
  33010. height: math.unit(2.13, "feet"),
  33011. name: "Tongue",
  33012. image: {
  33013. source: "./media/characters/sykes/tongue.svg"
  33014. }
  33015. },
  33016. uvula: {
  33017. height: math.unit(0.16, "feet"),
  33018. name: "Uvula",
  33019. image: {
  33020. source: "./media/characters/sykes/uvula.svg"
  33021. }
  33022. },
  33023. collar: {
  33024. height: math.unit(0.287, "feet"),
  33025. name: "Collar",
  33026. image: {
  33027. source: "./media/characters/sykes/collar.svg"
  33028. }
  33029. },
  33030. },
  33031. [
  33032. {
  33033. name: "Shrunken",
  33034. height: math.unit(5, "inches")
  33035. },
  33036. {
  33037. name: "Normal",
  33038. height: math.unit(6 + 4 / 12, "feet"),
  33039. default: true
  33040. },
  33041. {
  33042. name: "Big",
  33043. height: math.unit(15, "feet")
  33044. },
  33045. ]
  33046. ))
  33047. characterMakers.push(() => makeCharacter(
  33048. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33049. {
  33050. front: {
  33051. height: math.unit(5 + 8/12, "feet"),
  33052. weight: math.unit(190, "lb"),
  33053. name: "Front",
  33054. image: {
  33055. source: "./media/characters/oven-otter/front.svg",
  33056. extra: 1809/1740,
  33057. bottom: 181/1990
  33058. }
  33059. },
  33060. back: {
  33061. height: math.unit(5 + 8/12, "feet"),
  33062. weight: math.unit(190, "lb"),
  33063. name: "Back",
  33064. image: {
  33065. source: "./media/characters/oven-otter/back.svg",
  33066. extra: 1709/1635,
  33067. bottom: 118/1827
  33068. }
  33069. },
  33070. hand: {
  33071. height: math.unit(1.07, "feet"),
  33072. name: "Hand",
  33073. image: {
  33074. source: "./media/characters/oven-otter/hand.svg"
  33075. }
  33076. },
  33077. beans: {
  33078. height: math.unit(1.74, "feet"),
  33079. name: "Beans",
  33080. image: {
  33081. source: "./media/characters/oven-otter/beans.svg"
  33082. }
  33083. },
  33084. },
  33085. [
  33086. {
  33087. name: "Micro",
  33088. height: math.unit(0.5, "inches")
  33089. },
  33090. {
  33091. name: "Normal",
  33092. height: math.unit(5 + 8/12, "feet"),
  33093. default: true
  33094. },
  33095. {
  33096. name: "Macro",
  33097. height: math.unit(250, "feet")
  33098. },
  33099. {
  33100. name: "Really High",
  33101. height: math.unit(420, "feet")
  33102. },
  33103. ]
  33104. ))
  33105. characterMakers.push(() => makeCharacter(
  33106. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33107. {
  33108. front: {
  33109. height: math.unit(5, "meters"),
  33110. weight: math.unit(292000000000000, "kg"),
  33111. name: "Front",
  33112. image: {
  33113. source: "./media/characters/devourer/front.svg",
  33114. extra: 1800/1733,
  33115. bottom: 211/2011
  33116. }
  33117. },
  33118. maw: {
  33119. height: math.unit(1.1, "meter"),
  33120. name: "Maw",
  33121. image: {
  33122. source: "./media/characters/devourer/maw.svg"
  33123. }
  33124. },
  33125. },
  33126. [
  33127. {
  33128. name: "Small",
  33129. height: math.unit(3, "meters")
  33130. },
  33131. {
  33132. name: "Large",
  33133. height: math.unit(5, "meters"),
  33134. default: true
  33135. },
  33136. ]
  33137. ))
  33138. characterMakers.push(() => makeCharacter(
  33139. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33140. {
  33141. front: {
  33142. height: math.unit(6, "feet"),
  33143. weight: math.unit(400, "lb"),
  33144. name: "Front",
  33145. image: {
  33146. source: "./media/characters/ellarby/front.svg",
  33147. extra: 1909/1763,
  33148. bottom: 80/1989
  33149. }
  33150. },
  33151. back: {
  33152. height: math.unit(6, "feet"),
  33153. weight: math.unit(400, "lb"),
  33154. name: "Back",
  33155. image: {
  33156. source: "./media/characters/ellarby/back.svg",
  33157. extra: 1914/1784,
  33158. bottom: 172/2086
  33159. }
  33160. },
  33161. },
  33162. [
  33163. {
  33164. name: "Mischief",
  33165. height: math.unit(18, "inches")
  33166. },
  33167. {
  33168. name: "Trouble",
  33169. height: math.unit(12, "feet")
  33170. },
  33171. {
  33172. name: "Havoc",
  33173. height: math.unit(200, "feet"),
  33174. default: true
  33175. },
  33176. {
  33177. name: "Pandemonium",
  33178. height: math.unit(1, "mile")
  33179. },
  33180. {
  33181. name: "Catastrophe",
  33182. height: math.unit(100, "miles")
  33183. },
  33184. ]
  33185. ))
  33186. characterMakers.push(() => makeCharacter(
  33187. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33188. {
  33189. front: {
  33190. height: math.unit(4.7, "meters"),
  33191. weight: math.unit(6500, "kg"),
  33192. name: "Front",
  33193. image: {
  33194. source: "./media/characters/vex/front.svg",
  33195. extra: 1288/1140,
  33196. bottom: 100/1388
  33197. }
  33198. },
  33199. },
  33200. [
  33201. {
  33202. name: "Normal",
  33203. height: math.unit(4.7, "meters"),
  33204. default: true
  33205. },
  33206. ]
  33207. ))
  33208. characterMakers.push(() => makeCharacter(
  33209. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33210. {
  33211. normal: {
  33212. height: math.unit(6, "feet"),
  33213. weight: math.unit(350, "lb"),
  33214. name: "Normal",
  33215. image: {
  33216. source: "./media/characters/teshy/normal.svg",
  33217. extra: 1795/1735,
  33218. bottom: 16/1811
  33219. }
  33220. },
  33221. monsterFront: {
  33222. height: math.unit(12, "feet"),
  33223. weight: math.unit(4700, "lb"),
  33224. name: "Monster (Front)",
  33225. image: {
  33226. source: "./media/characters/teshy/monster-front.svg",
  33227. extra: 2042/2034,
  33228. bottom: 128/2170
  33229. }
  33230. },
  33231. monsterSide: {
  33232. height: math.unit(12, "feet"),
  33233. weight: math.unit(4700, "lb"),
  33234. name: "Monster (Side)",
  33235. image: {
  33236. source: "./media/characters/teshy/monster-side.svg",
  33237. extra: 2067/2056,
  33238. bottom: 70/2137
  33239. }
  33240. },
  33241. monsterBack: {
  33242. height: math.unit(12, "feet"),
  33243. weight: math.unit(4700, "lb"),
  33244. name: "Monster (Back)",
  33245. image: {
  33246. source: "./media/characters/teshy/monster-back.svg",
  33247. extra: 1921/1914,
  33248. bottom: 171/2092
  33249. }
  33250. },
  33251. },
  33252. [
  33253. {
  33254. name: "Normal",
  33255. height: math.unit(6, "feet"),
  33256. default: true
  33257. },
  33258. ]
  33259. ))
  33260. characterMakers.push(() => makeCharacter(
  33261. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33262. {
  33263. front: {
  33264. height: math.unit(6, "feet"),
  33265. name: "Front",
  33266. image: {
  33267. source: "./media/characters/ramey/front.svg",
  33268. extra: 790/787,
  33269. bottom: 27/817
  33270. }
  33271. },
  33272. },
  33273. [
  33274. {
  33275. name: "Normal",
  33276. height: math.unit(6, "feet"),
  33277. default: true
  33278. },
  33279. ]
  33280. ))
  33281. characterMakers.push(() => makeCharacter(
  33282. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33283. {
  33284. front: {
  33285. height: math.unit(5 + 5/12, "feet"),
  33286. weight: math.unit(120, "lb"),
  33287. name: "Front",
  33288. image: {
  33289. source: "./media/characters/phirae/front.svg",
  33290. extra: 2491/2436,
  33291. bottom: 38/2529
  33292. }
  33293. },
  33294. },
  33295. [
  33296. {
  33297. name: "Normal",
  33298. height: math.unit(5 + 5/12, "feet"),
  33299. default: true
  33300. },
  33301. ]
  33302. ))
  33303. characterMakers.push(() => makeCharacter(
  33304. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33305. {
  33306. front: {
  33307. height: math.unit(6, "feet"),
  33308. weight: math.unit(150, "lb"),
  33309. name: "Front",
  33310. image: {
  33311. source: "./media/characters/stagglas/front.svg",
  33312. extra: 962/882,
  33313. bottom: 53/1015
  33314. }
  33315. },
  33316. },
  33317. [
  33318. {
  33319. name: "Normal",
  33320. height: math.unit(5 + 3/12, "feet"),
  33321. default: true
  33322. },
  33323. ]
  33324. ))
  33325. characterMakers.push(() => makeCharacter(
  33326. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33327. {
  33328. front: {
  33329. height: math.unit(5 + 4/12, "feet"),
  33330. weight: math.unit(145, "lb"),
  33331. name: "Front",
  33332. image: {
  33333. source: "./media/characters/starra/front.svg",
  33334. extra: 1790/1691,
  33335. bottom: 91/1881
  33336. }
  33337. },
  33338. },
  33339. [
  33340. {
  33341. name: "Normal",
  33342. height: math.unit(5 + 4/12, "feet"),
  33343. default: true
  33344. },
  33345. ]
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33349. {
  33350. front: {
  33351. height: math.unit(2.2, "meters"),
  33352. name: "Front",
  33353. image: {
  33354. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33355. extra: 1194/1005,
  33356. bottom: 25/1219
  33357. }
  33358. },
  33359. },
  33360. [
  33361. {
  33362. name: "Normal",
  33363. height: math.unit(2.2, "meters"),
  33364. default: true
  33365. },
  33366. ]
  33367. ))
  33368. characterMakers.push(() => makeCharacter(
  33369. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33370. {
  33371. side: {
  33372. height: math.unit(8 + 2/12, "feet"),
  33373. weight: math.unit(620, "lb"),
  33374. name: "Side",
  33375. image: {
  33376. source: "./media/characters/mika-valentine/side.svg",
  33377. extra: 2670/2501,
  33378. bottom: 250/2920
  33379. }
  33380. },
  33381. },
  33382. [
  33383. {
  33384. name: "Normal",
  33385. height: math.unit(8 + 2/12, "feet"),
  33386. default: true
  33387. },
  33388. ]
  33389. ))
  33390. //characters
  33391. function makeCharacters() {
  33392. const results = [];
  33393. characterMakers.forEach(character => {
  33394. results.push(character());
  33395. });
  33396. return results;
  33397. }