less copy protection, more size visualization
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

44895 行
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. }
  1795. //species
  1796. function getSpeciesInfo(speciesList) {
  1797. let result = new Set();
  1798. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1799. result.add(entry)
  1800. });
  1801. return Array.from(result);
  1802. };
  1803. function getSpeciesInfoHelper(species) {
  1804. if (!speciesData[species]) {
  1805. console.warn(species + " doesn't exist");
  1806. return [];
  1807. }
  1808. if (speciesData[species].parents) {
  1809. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1810. } else {
  1811. return [species];
  1812. }
  1813. }
  1814. characterMakers.push(() => makeCharacter(
  1815. {
  1816. name: "Fen",
  1817. species: ["crux"],
  1818. description: {
  1819. title: "Bio",
  1820. text: "Very furry. Sheds on everything."
  1821. },
  1822. tags: [
  1823. "anthro",
  1824. "goo"
  1825. ]
  1826. },
  1827. {
  1828. back: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Back",
  1832. image: {
  1833. source: "./media/characters/fen/back.svg",
  1834. },
  1835. info: {
  1836. description: {
  1837. mode: "append",
  1838. text: "\n\nHe is not currently looking at you."
  1839. }
  1840. }
  1841. },
  1842. full: {
  1843. height: math.unit(0.91, "meter"),
  1844. weight: math.unit(225, "kg"),
  1845. name: "Full",
  1846. image: {
  1847. source: "./media/characters/fen/full.svg",
  1848. extra: 1133/859,
  1849. bottom: 145/1278
  1850. },
  1851. info: {
  1852. description: {
  1853. mode: "append",
  1854. text: "\n\nMunch."
  1855. }
  1856. }
  1857. },
  1858. kneeling: {
  1859. height: math.unit(5.4, "feet"),
  1860. weight: math.unit(124.738, "kg"),
  1861. name: "Kneeling",
  1862. image: {
  1863. source: "./media/characters/fen/kneeling.svg",
  1864. extra: 563 / 507
  1865. }
  1866. },
  1867. goo: {
  1868. height: math.unit(2.8, "feet"),
  1869. weight: math.unit(125, "kg"),
  1870. capacity: math.unit(1, "people"),
  1871. name: "Goo",
  1872. image: {
  1873. source: "./media/characters/fen/goo.svg",
  1874. bottom: 116 / 613
  1875. }
  1876. },
  1877. lounging: {
  1878. height: math.unit(6.5, "feet"),
  1879. weight: math.unit(125, "kg"),
  1880. name: "Lounging",
  1881. image: {
  1882. source: "./media/characters/fen/lounging.svg"
  1883. }
  1884. },
  1885. },
  1886. [
  1887. {
  1888. name: "Small",
  1889. height: math.unit(2.2428, "meter")
  1890. },
  1891. {
  1892. name: "Normal",
  1893. height: math.unit(12, "feet"),
  1894. default: true,
  1895. },
  1896. {
  1897. name: "Minimacro",
  1898. height: math.unit(40, "feet"),
  1899. info: {
  1900. description: {
  1901. mode: "append",
  1902. text: "\n\nTOO DAMN BIG"
  1903. }
  1904. }
  1905. },
  1906. {
  1907. name: "Macro",
  1908. height: math.unit(100, "feet"),
  1909. info: {
  1910. description: {
  1911. mode: "append",
  1912. text: "\n\nTOO DAMN BIG"
  1913. }
  1914. }
  1915. },
  1916. {
  1917. name: "Macro+",
  1918. height: math.unit(300, "feet")
  1919. },
  1920. {
  1921. name: "Megamacro",
  1922. height: math.unit(2, "miles")
  1923. }
  1924. ]
  1925. ))
  1926. characterMakers.push(() => makeCharacter(
  1927. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1928. {
  1929. front: {
  1930. height: math.unit(183, "cm"),
  1931. weight: math.unit(80, "kg"),
  1932. name: "Front",
  1933. image: {
  1934. source: "./media/characters/sofia-fluttertail/front.svg",
  1935. bottom: 0.01,
  1936. extra: 2154 / 2081
  1937. }
  1938. },
  1939. frontAlt: {
  1940. height: math.unit(183, "cm"),
  1941. weight: math.unit(80, "kg"),
  1942. name: "Front (alt)",
  1943. image: {
  1944. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1945. }
  1946. },
  1947. back: {
  1948. height: math.unit(183, "cm"),
  1949. weight: math.unit(80, "kg"),
  1950. name: "Back",
  1951. image: {
  1952. source: "./media/characters/sofia-fluttertail/back.svg"
  1953. }
  1954. },
  1955. kneeling: {
  1956. height: math.unit(125, "cm"),
  1957. weight: math.unit(80, "kg"),
  1958. name: "Kneeling",
  1959. image: {
  1960. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1961. extra: 1033 / 977,
  1962. bottom: 23.7 / 1057
  1963. }
  1964. },
  1965. maw: {
  1966. height: math.unit(183 / 5, "cm"),
  1967. name: "Maw",
  1968. image: {
  1969. source: "./media/characters/sofia-fluttertail/maw.svg"
  1970. }
  1971. },
  1972. mawcloseup: {
  1973. height: math.unit(183 / 5 * 0.41, "cm"),
  1974. name: "Maw (Closeup)",
  1975. image: {
  1976. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1977. }
  1978. },
  1979. paws: {
  1980. height: math.unit(1.17, "feet"),
  1981. name: "Paws",
  1982. image: {
  1983. source: "./media/characters/sofia-fluttertail/paws.svg",
  1984. extra: 851 / 851,
  1985. bottom: 17 / 868
  1986. }
  1987. },
  1988. },
  1989. [
  1990. {
  1991. name: "Normal",
  1992. height: math.unit(1.83, "meter")
  1993. },
  1994. {
  1995. name: "Size Thief",
  1996. height: math.unit(18, "feet")
  1997. },
  1998. {
  1999. name: "50 Foot Collie",
  2000. height: math.unit(50, "feet")
  2001. },
  2002. {
  2003. name: "Macro",
  2004. height: math.unit(96, "feet"),
  2005. default: true
  2006. },
  2007. {
  2008. name: "Megamerger",
  2009. height: math.unit(650, "feet")
  2010. },
  2011. ]
  2012. ))
  2013. characterMakers.push(() => makeCharacter(
  2014. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2015. {
  2016. front: {
  2017. height: math.unit(7, "feet"),
  2018. weight: math.unit(100, "kg"),
  2019. name: "Front",
  2020. image: {
  2021. source: "./media/characters/march/front.svg",
  2022. extra: 1992/1851,
  2023. bottom: 39/2031
  2024. }
  2025. },
  2026. foot: {
  2027. height: math.unit(0.9, "feet"),
  2028. name: "Foot",
  2029. image: {
  2030. source: "./media/characters/march/foot.svg"
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(7.9, "feet")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(220, "meters")
  2042. },
  2043. {
  2044. name: "Megamacro",
  2045. height: math.unit(2.98, "km"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Gigamacro",
  2050. height: math.unit(15963, "km")
  2051. },
  2052. {
  2053. name: "Teramacro",
  2054. height: math.unit(2980000000, "km")
  2055. },
  2056. {
  2057. name: "Examacro",
  2058. height: math.unit(250, "parsecs")
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(6, "feet"),
  2067. weight: math.unit(60, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/noir/front.svg",
  2071. extra: 1,
  2072. bottom: 0.032
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(6.6, "feet")
  2080. },
  2081. {
  2082. name: "Macro",
  2083. height: math.unit(500, "feet")
  2084. },
  2085. {
  2086. name: "Megamacro",
  2087. height: math.unit(2.5, "km"),
  2088. default: true
  2089. },
  2090. {
  2091. name: "Gigamacro",
  2092. height: math.unit(22500, "km")
  2093. },
  2094. {
  2095. name: "Teramacro",
  2096. height: math.unit(2500000000, "km")
  2097. },
  2098. {
  2099. name: "Examacro",
  2100. height: math.unit(200, "parsecs")
  2101. },
  2102. ]
  2103. ))
  2104. characterMakers.push(() => makeCharacter(
  2105. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2106. {
  2107. front: {
  2108. height: math.unit(7, "feet"),
  2109. weight: math.unit(100, "kg"),
  2110. name: "Front",
  2111. image: {
  2112. source: "./media/characters/okuri/front.svg",
  2113. extra: 1,
  2114. bottom: 0.037
  2115. }
  2116. },
  2117. back: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Back",
  2121. image: {
  2122. source: "./media/characters/okuri/back.svg",
  2123. extra: 1,
  2124. bottom: 0.007
  2125. }
  2126. },
  2127. },
  2128. [
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(100, "miles"),
  2132. default: true
  2133. },
  2134. ]
  2135. ))
  2136. characterMakers.push(() => makeCharacter(
  2137. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2138. {
  2139. front: {
  2140. height: math.unit(7, "feet"),
  2141. weight: math.unit(100, "kg"),
  2142. name: "Front",
  2143. image: {
  2144. source: "./media/characters/manny/front.svg",
  2145. extra: 1,
  2146. bottom: 0.06
  2147. }
  2148. },
  2149. back: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Back",
  2153. image: {
  2154. source: "./media/characters/manny/back.svg",
  2155. extra: 1,
  2156. bottom: 0.014
  2157. }
  2158. },
  2159. },
  2160. [
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(7, "feet"),
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(78, "feet"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Macro+",
  2172. height: math.unit(300, "meters")
  2173. },
  2174. {
  2175. name: "Macro++",
  2176. height: math.unit(2400, "meters")
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(5167, "meters")
  2181. },
  2182. {
  2183. name: "Gigamacro",
  2184. height: math.unit(41769, "miles")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(7, "feet"),
  2193. weight: math.unit(100, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/adake/front-1.svg"
  2197. }
  2198. },
  2199. frontAlt: {
  2200. height: math.unit(7, "feet"),
  2201. weight: math.unit(100, "kg"),
  2202. name: "Front (Alt)",
  2203. image: {
  2204. source: "./media/characters/adake/front-2.svg",
  2205. extra: 1,
  2206. bottom: 0.01
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(7, "feet"),
  2211. weight: math.unit(100, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/adake/back.svg",
  2215. }
  2216. },
  2217. kneel: {
  2218. height: math.unit(5.385, "feet"),
  2219. weight: math.unit(100, "kg"),
  2220. name: "Kneeling",
  2221. image: {
  2222. source: "./media/characters/adake/kneel.svg",
  2223. bottom: 0.052
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(7, "feet"),
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(78, "feet"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Macro+",
  2239. height: math.unit(300, "meters")
  2240. },
  2241. {
  2242. name: "Macro++",
  2243. height: math.unit(2400, "meters")
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(5167, "meters")
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(41769, "miles")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(1.65, "meters"),
  2260. weight: math.unit(50, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/elijah/front.svg",
  2264. extra: 858 / 830,
  2265. bottom: 95.5 / 953.8559
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(1.65, "meters"),
  2270. weight: math.unit(50, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/elijah/back.svg",
  2274. extra: 895 / 850,
  2275. bottom: 5.3 / 897.956
  2276. }
  2277. },
  2278. frontNsfw: {
  2279. height: math.unit(1.65, "meters"),
  2280. weight: math.unit(50, "kg"),
  2281. name: "Front (NSFW)",
  2282. image: {
  2283. source: "./media/characters/elijah/front-nsfw.svg",
  2284. extra: 858 / 830,
  2285. bottom: 95.5 / 953.8559
  2286. }
  2287. },
  2288. backNsfw: {
  2289. height: math.unit(1.65, "meters"),
  2290. weight: math.unit(50, "kg"),
  2291. name: "Back (NSFW)",
  2292. image: {
  2293. source: "./media/characters/elijah/back-nsfw.svg",
  2294. extra: 895 / 850,
  2295. bottom: 5.3 / 897.956
  2296. }
  2297. },
  2298. dick: {
  2299. height: math.unit(1, "feet"),
  2300. name: "Dick",
  2301. image: {
  2302. source: "./media/characters/elijah/dick.svg"
  2303. }
  2304. },
  2305. beakOpen: {
  2306. height: math.unit(1.25, "feet"),
  2307. name: "Beak (Open)",
  2308. image: {
  2309. source: "./media/characters/elijah/beak-open.svg"
  2310. }
  2311. },
  2312. beakShut: {
  2313. height: math.unit(1.25, "feet"),
  2314. name: "Beak (Shut)",
  2315. image: {
  2316. source: "./media/characters/elijah/beak-shut.svg"
  2317. }
  2318. },
  2319. footFlexing: {
  2320. height: math.unit(1.61, "feet"),
  2321. name: "Foot (Flexing)",
  2322. image: {
  2323. source: "./media/characters/elijah/foot-flexing.svg"
  2324. }
  2325. },
  2326. footStepping: {
  2327. height: math.unit(1.44, "feet"),
  2328. name: "Foot (Stepping)",
  2329. image: {
  2330. source: "./media/characters/elijah/foot-stepping.svg"
  2331. }
  2332. },
  2333. plantigradeLeg: {
  2334. height: math.unit(2.34, "feet"),
  2335. name: "Plantigrade Leg",
  2336. image: {
  2337. source: "./media/characters/elijah/plantigrade-leg.svg"
  2338. }
  2339. },
  2340. plantigradeFootLeft: {
  2341. height: math.unit(0.9, "feet"),
  2342. name: "Plantigrade Foot (Left)",
  2343. image: {
  2344. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2345. }
  2346. },
  2347. plantigradeFootRight: {
  2348. height: math.unit(0.9, "feet"),
  2349. name: "Plantigrade Foot (Right)",
  2350. image: {
  2351. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2352. }
  2353. },
  2354. },
  2355. [
  2356. {
  2357. name: "Normal",
  2358. height: math.unit(1.65, "meters")
  2359. },
  2360. {
  2361. name: "Macro",
  2362. height: math.unit(55, "meters"),
  2363. default: true
  2364. },
  2365. {
  2366. name: "Macro+",
  2367. height: math.unit(105, "meters")
  2368. },
  2369. ]
  2370. ))
  2371. characterMakers.push(() => makeCharacter(
  2372. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2373. {
  2374. front: {
  2375. height: math.unit(7 + 2/12, "feet"),
  2376. weight: math.unit(320, "kg"),
  2377. name: "Front",
  2378. image: {
  2379. source: "./media/characters/rai/front.svg",
  2380. extra: 1802/1696,
  2381. bottom: 68/1870
  2382. }
  2383. },
  2384. frontDressed: {
  2385. height: math.unit(7 + 2/12, "feet"),
  2386. weight: math.unit(320, "kg"),
  2387. name: "Front (Dressed)",
  2388. image: {
  2389. source: "./media/characters/rai/front-dressed.svg",
  2390. extra: 1802/1696,
  2391. bottom: 68/1870
  2392. }
  2393. },
  2394. side: {
  2395. height: math.unit(7 + 2/12, "feet"),
  2396. weight: math.unit(320, "kg"),
  2397. name: "Side",
  2398. image: {
  2399. source: "./media/characters/rai/side.svg",
  2400. extra: 1789/1710,
  2401. bottom: 115/1904
  2402. }
  2403. },
  2404. back: {
  2405. height: math.unit(7 + 2/12, "feet"),
  2406. weight: math.unit(320, "kg"),
  2407. name: "Back",
  2408. image: {
  2409. source: "./media/characters/rai/back.svg",
  2410. extra: 1770/1707,
  2411. bottom: 28/1798
  2412. }
  2413. },
  2414. feral: {
  2415. height: math.unit(9.5, "feet"),
  2416. weight: math.unit(640, "kg"),
  2417. name: "Feral",
  2418. image: {
  2419. source: "./media/characters/rai/feral.svg",
  2420. extra: 945/553,
  2421. bottom: 176/1121
  2422. }
  2423. },
  2424. dragon: {
  2425. height: math.unit(23, "feet"),
  2426. weight: math.unit(50000, "lb"),
  2427. name: "Dragon",
  2428. image: {
  2429. source: "./media/characters/rai/dragon.svg",
  2430. extra: 2498 / 2030,
  2431. bottom: 85.2 / 2584
  2432. }
  2433. },
  2434. maw: {
  2435. height: math.unit(1.69, "feet"),
  2436. name: "Maw",
  2437. image: {
  2438. source: "./media/characters/rai/maw.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(7 + 2/12, "feet")
  2446. },
  2447. {
  2448. name: "Big",
  2449. height: math.unit(11, "feet")
  2450. },
  2451. {
  2452. name: "Macro",
  2453. height: math.unit(302, "feet"),
  2454. default: true
  2455. },
  2456. ]
  2457. ))
  2458. characterMakers.push(() => makeCharacter(
  2459. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2460. {
  2461. frontDressed: {
  2462. height: math.unit(216, "feet"),
  2463. weight: math.unit(7000000, "lb"),
  2464. name: "Front (Dressed)",
  2465. image: {
  2466. source: "./media/characters/jazzy/front-dressed.svg",
  2467. extra: 2738 / 2651,
  2468. bottom: 41.8 / 2786
  2469. }
  2470. },
  2471. backDressed: {
  2472. height: math.unit(216, "feet"),
  2473. weight: math.unit(7000000, "lb"),
  2474. name: "Back (Dressed)",
  2475. image: {
  2476. source: "./media/characters/jazzy/back-dressed.svg",
  2477. extra: 2775 / 2673,
  2478. bottom: 36.8 / 2817
  2479. }
  2480. },
  2481. front: {
  2482. height: math.unit(216, "feet"),
  2483. weight: math.unit(7000000, "lb"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/jazzy/front.svg",
  2487. extra: 2738 / 2651,
  2488. bottom: 41.8 / 2786
  2489. }
  2490. },
  2491. back: {
  2492. height: math.unit(216, "feet"),
  2493. weight: math.unit(7000000, "lb"),
  2494. name: "Back",
  2495. image: {
  2496. source: "./media/characters/jazzy/back.svg",
  2497. extra: 2775 / 2673,
  2498. bottom: 36.8 / 2817
  2499. }
  2500. },
  2501. maw: {
  2502. height: math.unit(20, "feet"),
  2503. name: "Maw",
  2504. image: {
  2505. source: "./media/characters/jazzy/maw.svg"
  2506. }
  2507. },
  2508. paws: {
  2509. height: math.unit(27.5, "feet"),
  2510. name: "Paws",
  2511. image: {
  2512. source: "./media/characters/jazzy/paws.svg"
  2513. }
  2514. },
  2515. eye: {
  2516. height: math.unit(4.4, "feet"),
  2517. name: "Eye",
  2518. image: {
  2519. source: "./media/characters/jazzy/eye.svg"
  2520. }
  2521. },
  2522. droneOffense: {
  2523. height: math.unit(9.5, "inches"),
  2524. name: "Drone (Offense)",
  2525. image: {
  2526. source: "./media/characters/jazzy/drone-offense.svg"
  2527. }
  2528. },
  2529. droneRecon: {
  2530. height: math.unit(9.5, "inches"),
  2531. name: "Drone (Recon)",
  2532. image: {
  2533. source: "./media/characters/jazzy/drone-recon.svg"
  2534. }
  2535. },
  2536. droneDefense: {
  2537. height: math.unit(9.5, "inches"),
  2538. name: "Drone (Defense)",
  2539. image: {
  2540. source: "./media/characters/jazzy/drone-defense.svg"
  2541. }
  2542. },
  2543. },
  2544. [
  2545. {
  2546. name: "Macro",
  2547. height: math.unit(216, "feet"),
  2548. default: true
  2549. },
  2550. ]
  2551. ))
  2552. characterMakers.push(() => makeCharacter(
  2553. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2554. {
  2555. front: {
  2556. height: math.unit(9 + 6/12, "feet"),
  2557. weight: math.unit(700, "lb"),
  2558. name: "Front",
  2559. image: {
  2560. source: "./media/characters/flamm/front.svg",
  2561. extra: 1751/1632,
  2562. bottom: 46/1797
  2563. }
  2564. },
  2565. buff: {
  2566. height: math.unit(9 + 6/12, "feet"),
  2567. weight: math.unit(950, "lb"),
  2568. name: "Buff",
  2569. image: {
  2570. source: "./media/characters/flamm/buff.svg",
  2571. extra: 3018/2874,
  2572. bottom: 221/3239
  2573. }
  2574. },
  2575. },
  2576. [
  2577. {
  2578. name: "Normal",
  2579. height: math.unit(9.5, "feet")
  2580. },
  2581. {
  2582. name: "Macro",
  2583. height: math.unit(200, "feet"),
  2584. default: true
  2585. },
  2586. ]
  2587. ))
  2588. characterMakers.push(() => makeCharacter(
  2589. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2590. {
  2591. front: {
  2592. height: math.unit(5 + 3/12, "feet"),
  2593. weight: math.unit(60, "kg"),
  2594. name: "Front",
  2595. image: {
  2596. source: "./media/characters/zephiro/front.svg",
  2597. extra: 2309 / 2162,
  2598. bottom: 0.069
  2599. }
  2600. },
  2601. side: {
  2602. height: math.unit(5 + 3/12, "feet"),
  2603. weight: math.unit(60, "kg"),
  2604. name: "Side",
  2605. image: {
  2606. source: "./media/characters/zephiro/side.svg",
  2607. extra: 2403 / 2279,
  2608. bottom: 0.015
  2609. }
  2610. },
  2611. back: {
  2612. height: math.unit(5 + 3/12, "feet"),
  2613. weight: math.unit(60, "kg"),
  2614. name: "Back",
  2615. image: {
  2616. source: "./media/characters/zephiro/back.svg",
  2617. extra: 2373 / 2244,
  2618. bottom: 0.013
  2619. }
  2620. },
  2621. hand: {
  2622. height: math.unit(0.68, "feet"),
  2623. name: "Hand",
  2624. image: {
  2625. source: "./media/characters/zephiro/hand.svg"
  2626. }
  2627. },
  2628. paw: {
  2629. height: math.unit(1, "feet"),
  2630. name: "Paw",
  2631. image: {
  2632. source: "./media/characters/zephiro/paw.svg"
  2633. }
  2634. },
  2635. beans: {
  2636. height: math.unit(0.93, "feet"),
  2637. name: "Beans",
  2638. image: {
  2639. source: "./media/characters/zephiro/beans.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Micro",
  2646. height: math.unit(3, "inches")
  2647. },
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(5 + 3 / 12, "feet"),
  2651. default: true
  2652. },
  2653. {
  2654. name: "Macro",
  2655. height: math.unit(118, "feet")
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2661. {
  2662. front: {
  2663. height: math.unit(5, "feet"),
  2664. weight: math.unit(90, "kg"),
  2665. name: "Front",
  2666. image: {
  2667. source: "./media/characters/fory/front.svg",
  2668. extra: 2862 / 2674,
  2669. bottom: 180 / 3043.8
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(5, "feet"),
  2674. weight: math.unit(90, "kg"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/fory/back.svg",
  2678. extra: 2962 / 2791,
  2679. bottom: 106 / 3071.8
  2680. }
  2681. },
  2682. foot: {
  2683. height: math.unit(2.14, "feet"),
  2684. name: "Foot",
  2685. image: {
  2686. source: "./media/characters/fory/foot.svg"
  2687. }
  2688. },
  2689. },
  2690. [
  2691. {
  2692. name: "Normal",
  2693. height: math.unit(5, "feet")
  2694. },
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(50, "feet"),
  2698. default: true
  2699. },
  2700. {
  2701. name: "Megamacro",
  2702. height: math.unit(10, "miles")
  2703. },
  2704. {
  2705. name: "Gigamacro",
  2706. height: math.unit(5, "earths")
  2707. },
  2708. ]
  2709. ))
  2710. characterMakers.push(() => makeCharacter(
  2711. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2712. {
  2713. front: {
  2714. height: math.unit(7, "feet"),
  2715. weight: math.unit(90, "kg"),
  2716. name: "Front",
  2717. image: {
  2718. source: "./media/characters/kurrikage/front.svg",
  2719. extra: 1,
  2720. bottom: 0.035
  2721. }
  2722. },
  2723. back: {
  2724. height: math.unit(7, "feet"),
  2725. weight: math.unit(90, "lb"),
  2726. name: "Back",
  2727. image: {
  2728. source: "./media/characters/kurrikage/back.svg"
  2729. }
  2730. },
  2731. paw: {
  2732. height: math.unit(1.5, "feet"),
  2733. name: "Paw",
  2734. image: {
  2735. source: "./media/characters/kurrikage/paw.svg"
  2736. }
  2737. },
  2738. staff: {
  2739. height: math.unit(6.7, "feet"),
  2740. name: "Staff",
  2741. image: {
  2742. source: "./media/characters/kurrikage/staff.svg"
  2743. }
  2744. },
  2745. peek: {
  2746. height: math.unit(1.05, "feet"),
  2747. name: "Peeking",
  2748. image: {
  2749. source: "./media/characters/kurrikage/peek.svg",
  2750. bottom: 0.08
  2751. }
  2752. },
  2753. },
  2754. [
  2755. {
  2756. name: "Normal",
  2757. height: math.unit(12, "feet"),
  2758. default: true
  2759. },
  2760. {
  2761. name: "Big",
  2762. height: math.unit(20, "feet")
  2763. },
  2764. {
  2765. name: "Macro",
  2766. height: math.unit(500, "feet")
  2767. },
  2768. {
  2769. name: "Megamacro",
  2770. height: math.unit(20, "miles")
  2771. },
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2776. {
  2777. front: {
  2778. height: math.unit(6, "feet"),
  2779. weight: math.unit(75, "kg"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/shingo/front.svg",
  2783. extra: 1900/1825,
  2784. bottom: 82/1982
  2785. }
  2786. },
  2787. side: {
  2788. height: math.unit(6, "feet"),
  2789. weight: math.unit(75, "kg"),
  2790. name: "Side",
  2791. image: {
  2792. source: "./media/characters/shingo/side.svg",
  2793. extra: 1930/1865,
  2794. bottom: 16/1946
  2795. }
  2796. },
  2797. back: {
  2798. height: math.unit(6, "feet"),
  2799. weight: math.unit(75, "kg"),
  2800. name: "Back",
  2801. image: {
  2802. source: "./media/characters/shingo/back.svg",
  2803. extra: 1922/1852,
  2804. bottom: 16/1938
  2805. }
  2806. },
  2807. frontDressed: {
  2808. height: math.unit(6, "feet"),
  2809. weight: math.unit(150, "lb"),
  2810. name: "Front-dressed",
  2811. image: {
  2812. source: "./media/characters/shingo/front-dressed.svg",
  2813. extra: 1900/1825,
  2814. bottom: 82/1982
  2815. }
  2816. },
  2817. paw: {
  2818. height: math.unit(1.29, "feet"),
  2819. name: "Paw",
  2820. image: {
  2821. source: "./media/characters/shingo/paw.svg"
  2822. }
  2823. },
  2824. hand: {
  2825. height: math.unit(1.07, "feet"),
  2826. name: "Hand",
  2827. image: {
  2828. source: "./media/characters/shingo/hand.svg"
  2829. }
  2830. },
  2831. frontAlt: {
  2832. height: math.unit(6, "feet"),
  2833. weight: math.unit(75, "kg"),
  2834. name: "Front (Alt)",
  2835. image: {
  2836. source: "./media/characters/shingo/front-alt.svg",
  2837. extra: 3511 / 3338,
  2838. bottom: 0.005
  2839. }
  2840. },
  2841. frontAlt2: {
  2842. height: math.unit(6, "feet"),
  2843. weight: math.unit(75, "kg"),
  2844. name: "Front (Alt 2)",
  2845. image: {
  2846. source: "./media/characters/shingo/front-alt-2.svg",
  2847. extra: 706/681,
  2848. bottom: 11/717
  2849. }
  2850. },
  2851. pawAlt: {
  2852. height: math.unit(1, "feet"),
  2853. name: "Paw (Alt)",
  2854. image: {
  2855. source: "./media/characters/shingo/paw-alt.svg"
  2856. }
  2857. },
  2858. },
  2859. [
  2860. {
  2861. name: "Micro",
  2862. height: math.unit(4, "inches")
  2863. },
  2864. {
  2865. name: "Normal",
  2866. height: math.unit(6, "feet"),
  2867. default: true
  2868. },
  2869. {
  2870. name: "Macro",
  2871. height: math.unit(108, "feet")
  2872. },
  2873. {
  2874. name: "Macro+",
  2875. height: math.unit(1500, "feet")
  2876. },
  2877. ]
  2878. ))
  2879. characterMakers.push(() => makeCharacter(
  2880. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2881. {
  2882. side: {
  2883. height: math.unit(6, "feet"),
  2884. weight: math.unit(75, "kg"),
  2885. name: "Side",
  2886. image: {
  2887. source: "./media/characters/aigey/side.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(200, "feet"),
  2895. default: true
  2896. },
  2897. {
  2898. name: "Megamacro",
  2899. height: math.unit(100, "miles")
  2900. },
  2901. ]
  2902. )
  2903. )
  2904. characterMakers.push(() => makeCharacter(
  2905. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2906. {
  2907. front: {
  2908. height: math.unit(5 + 5 / 12, "feet"),
  2909. weight: math.unit(75, "kg"),
  2910. name: "Front",
  2911. image: {
  2912. source: "./media/characters/natasha/front.svg",
  2913. extra: 859 / 824,
  2914. bottom: 23 / 879.6
  2915. }
  2916. },
  2917. frontNsfw: {
  2918. height: math.unit(5 + 5 / 12, "feet"),
  2919. weight: math.unit(75, "kg"),
  2920. name: "Front (NSFW)",
  2921. image: {
  2922. source: "./media/characters/natasha/front-nsfw.svg",
  2923. extra: 859 / 824,
  2924. bottom: 23 / 879.6
  2925. }
  2926. },
  2927. frontErect: {
  2928. height: math.unit(5 + 5 / 12, "feet"),
  2929. weight: math.unit(75, "kg"),
  2930. name: "Front (Erect)",
  2931. image: {
  2932. source: "./media/characters/natasha/front-erect.svg",
  2933. extra: 859 / 824,
  2934. bottom: 23 / 879.6
  2935. }
  2936. },
  2937. back: {
  2938. height: math.unit(5 + 5 / 12, "feet"),
  2939. weight: math.unit(75, "kg"),
  2940. name: "Back",
  2941. image: {
  2942. source: "./media/characters/natasha/back.svg",
  2943. extra: 887.9 / 852.6,
  2944. bottom: 9.7 / 896.4
  2945. }
  2946. },
  2947. backAlt: {
  2948. height: math.unit(5 + 5 / 12, "feet"),
  2949. weight: math.unit(75, "kg"),
  2950. name: "Back (Alt)",
  2951. image: {
  2952. source: "./media/characters/natasha/back-alt.svg",
  2953. extra: 1236.7 / 1192,
  2954. bottom: 22.3 / 1258.2
  2955. }
  2956. },
  2957. dick: {
  2958. height: math.unit(1.772, "feet"),
  2959. name: "Dick",
  2960. image: {
  2961. source: "./media/characters/natasha/dick.svg"
  2962. }
  2963. },
  2964. paw: {
  2965. height: math.unit(0.250, "meters"),
  2966. name: "Paw",
  2967. image: {
  2968. source: "./media/characters/natasha/paw.svg"
  2969. }
  2970. },
  2971. },
  2972. [
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(5 + 5 / 12, "feet")
  2976. },
  2977. {
  2978. name: "Large",
  2979. height: math.unit(12, "feet")
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(100, "feet"),
  2984. default: true
  2985. },
  2986. {
  2987. name: "Macro+",
  2988. height: math.unit(260, "feet")
  2989. },
  2990. {
  2991. name: "Macro++",
  2992. height: math.unit(1, "mile")
  2993. },
  2994. ]
  2995. ))
  2996. characterMakers.push(() => makeCharacter(
  2997. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2998. {
  2999. front: {
  3000. height: math.unit(6, "feet"),
  3001. weight: math.unit(75, "kg"),
  3002. name: "Front",
  3003. image: {
  3004. source: "./media/characters/malik/front.svg"
  3005. }
  3006. },
  3007. side: {
  3008. height: math.unit(6, "feet"),
  3009. weight: math.unit(75, "kg"),
  3010. name: "Side",
  3011. image: {
  3012. source: "./media/characters/malik/side.svg",
  3013. extra: 1.1539
  3014. }
  3015. },
  3016. back: {
  3017. height: math.unit(6, "feet"),
  3018. weight: math.unit(75, "kg"),
  3019. name: "Back",
  3020. image: {
  3021. source: "./media/characters/malik/back.svg"
  3022. }
  3023. },
  3024. },
  3025. [
  3026. {
  3027. name: "Macro",
  3028. height: math.unit(156, "feet"),
  3029. default: true
  3030. },
  3031. {
  3032. name: "Macro+",
  3033. height: math.unit(1188, "feet")
  3034. },
  3035. ]
  3036. ))
  3037. characterMakers.push(() => makeCharacter(
  3038. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3039. {
  3040. front: {
  3041. height: math.unit(6, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Front",
  3044. image: {
  3045. source: "./media/characters/sefer/front.svg",
  3046. extra: 848 / 659,
  3047. bottom: 28.3 / 876.442
  3048. }
  3049. },
  3050. back: {
  3051. height: math.unit(6, "feet"),
  3052. weight: math.unit(75, "kg"),
  3053. name: "Back",
  3054. image: {
  3055. source: "./media/characters/sefer/back.svg",
  3056. extra: 864 / 695,
  3057. bottom: 10 / 871
  3058. }
  3059. },
  3060. frontDressed: {
  3061. height: math.unit(6, "feet"),
  3062. weight: math.unit(75, "kg"),
  3063. name: "Front (Dressed)",
  3064. image: {
  3065. source: "./media/characters/sefer/front-dressed.svg",
  3066. extra: 839 / 653,
  3067. bottom: 37.6 / 878
  3068. }
  3069. },
  3070. },
  3071. [
  3072. {
  3073. name: "Normal",
  3074. height: math.unit(6, "feet"),
  3075. default: true
  3076. },
  3077. ]
  3078. ))
  3079. characterMakers.push(() => makeCharacter(
  3080. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3081. {
  3082. body: {
  3083. height: math.unit(2.2428, "meter"),
  3084. weight: math.unit(124.738, "kg"),
  3085. name: "Body",
  3086. image: {
  3087. extra: 1225 / 1050,
  3088. source: "./media/characters/north/front.svg"
  3089. }
  3090. }
  3091. },
  3092. [
  3093. {
  3094. name: "Micro",
  3095. height: math.unit(4, "inches")
  3096. },
  3097. {
  3098. name: "Macro",
  3099. height: math.unit(63, "meters")
  3100. },
  3101. {
  3102. name: "Megamacro",
  3103. height: math.unit(101, "miles"),
  3104. default: true
  3105. }
  3106. ]
  3107. ))
  3108. characterMakers.push(() => makeCharacter(
  3109. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3110. {
  3111. angled: {
  3112. height: math.unit(4, "meter"),
  3113. weight: math.unit(150, "kg"),
  3114. name: "Angled",
  3115. image: {
  3116. source: "./media/characters/talan/angled-sfw.svg",
  3117. bottom: 29 / 3734
  3118. }
  3119. },
  3120. angledNsfw: {
  3121. height: math.unit(4, "meter"),
  3122. weight: math.unit(150, "kg"),
  3123. name: "Angled (NSFW)",
  3124. image: {
  3125. source: "./media/characters/talan/angled-nsfw.svg",
  3126. bottom: 29 / 3734
  3127. }
  3128. },
  3129. frontNsfw: {
  3130. height: math.unit(4, "meter"),
  3131. weight: math.unit(150, "kg"),
  3132. name: "Front (NSFW)",
  3133. image: {
  3134. source: "./media/characters/talan/front-nsfw.svg",
  3135. bottom: 29 / 3734
  3136. }
  3137. },
  3138. sideNsfw: {
  3139. height: math.unit(4, "meter"),
  3140. weight: math.unit(150, "kg"),
  3141. name: "Side (NSFW)",
  3142. image: {
  3143. source: "./media/characters/talan/side-nsfw.svg",
  3144. bottom: 29 / 3734
  3145. }
  3146. },
  3147. back: {
  3148. height: math.unit(4, "meter"),
  3149. weight: math.unit(150, "kg"),
  3150. name: "Back",
  3151. image: {
  3152. source: "./media/characters/talan/back.svg"
  3153. }
  3154. },
  3155. dickBottom: {
  3156. height: math.unit(0.621, "meter"),
  3157. name: "Dick (Bottom)",
  3158. image: {
  3159. source: "./media/characters/talan/dick-bottom.svg"
  3160. }
  3161. },
  3162. dickTop: {
  3163. height: math.unit(0.621, "meter"),
  3164. name: "Dick (Top)",
  3165. image: {
  3166. source: "./media/characters/talan/dick-top.svg"
  3167. }
  3168. },
  3169. dickSide: {
  3170. height: math.unit(0.305, "meter"),
  3171. name: "Dick (Side)",
  3172. image: {
  3173. source: "./media/characters/talan/dick-side.svg"
  3174. }
  3175. },
  3176. dickFront: {
  3177. height: math.unit(0.305, "meter"),
  3178. name: "Dick (Front)",
  3179. image: {
  3180. source: "./media/characters/talan/dick-front.svg"
  3181. }
  3182. },
  3183. },
  3184. [
  3185. {
  3186. name: "Normal",
  3187. height: math.unit(4, "meters")
  3188. },
  3189. {
  3190. name: "Macro",
  3191. height: math.unit(100, "meters")
  3192. },
  3193. {
  3194. name: "Megamacro",
  3195. height: math.unit(2, "miles"),
  3196. default: true
  3197. },
  3198. {
  3199. name: "Gigamacro",
  3200. height: math.unit(5000, "miles")
  3201. },
  3202. {
  3203. name: "Teramacro",
  3204. height: math.unit(100, "parsecs")
  3205. }
  3206. ]
  3207. ))
  3208. characterMakers.push(() => makeCharacter(
  3209. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3210. {
  3211. front: {
  3212. height: math.unit(2, "meter"),
  3213. weight: math.unit(90, "kg"),
  3214. name: "Front",
  3215. image: {
  3216. source: "./media/characters/gael'rathus/front.svg"
  3217. }
  3218. },
  3219. frontAlt: {
  3220. height: math.unit(2, "meter"),
  3221. weight: math.unit(90, "kg"),
  3222. name: "Front (alt)",
  3223. image: {
  3224. source: "./media/characters/gael'rathus/front-alt.svg"
  3225. }
  3226. },
  3227. frontAlt2: {
  3228. height: math.unit(2, "meter"),
  3229. weight: math.unit(90, "kg"),
  3230. name: "Front (alt 2)",
  3231. image: {
  3232. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3233. }
  3234. }
  3235. },
  3236. [
  3237. {
  3238. name: "Normal",
  3239. height: math.unit(9, "feet"),
  3240. default: true
  3241. },
  3242. {
  3243. name: "Large",
  3244. height: math.unit(25, "feet")
  3245. },
  3246. {
  3247. name: "Macro",
  3248. height: math.unit(0.25, "miles")
  3249. },
  3250. {
  3251. name: "Megamacro",
  3252. height: math.unit(10, "miles")
  3253. }
  3254. ]
  3255. ))
  3256. characterMakers.push(() => makeCharacter(
  3257. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3258. {
  3259. side: {
  3260. height: math.unit(2, "meter"),
  3261. weight: math.unit(140, "kg"),
  3262. name: "Side",
  3263. image: {
  3264. source: "./media/characters/sosha/side.svg",
  3265. bottom: 0.042
  3266. }
  3267. },
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(12, "feet"),
  3273. default: true
  3274. }
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3279. {
  3280. side: {
  3281. height: math.unit(5 + 5 / 12, "feet"),
  3282. weight: math.unit(170, "kg"),
  3283. name: "Side",
  3284. image: {
  3285. source: "./media/characters/runnola/side.svg",
  3286. extra: 741 / 448,
  3287. bottom: 0.05
  3288. }
  3289. },
  3290. },
  3291. [
  3292. {
  3293. name: "Small",
  3294. height: math.unit(3, "feet")
  3295. },
  3296. {
  3297. name: "Normal",
  3298. height: math.unit(5 + 5 / 12, "feet"),
  3299. default: true
  3300. },
  3301. {
  3302. name: "Big",
  3303. height: math.unit(10, "feet")
  3304. },
  3305. ]
  3306. ))
  3307. characterMakers.push(() => makeCharacter(
  3308. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3309. {
  3310. front: {
  3311. height: math.unit(2, "meter"),
  3312. weight: math.unit(50, "kg"),
  3313. name: "Front",
  3314. image: {
  3315. source: "./media/characters/kurribird/front.svg",
  3316. bottom: 0.015
  3317. }
  3318. },
  3319. frontAlt: {
  3320. height: math.unit(1.5, "meter"),
  3321. weight: math.unit(50, "kg"),
  3322. name: "Front (Alt)",
  3323. image: {
  3324. source: "./media/characters/kurribird/front-alt.svg",
  3325. extra: 1.45
  3326. }
  3327. },
  3328. },
  3329. [
  3330. {
  3331. name: "Normal",
  3332. height: math.unit(7, "feet")
  3333. },
  3334. {
  3335. name: "Big",
  3336. height: math.unit(12, "feet"),
  3337. default: true
  3338. },
  3339. {
  3340. name: "Macro",
  3341. height: math.unit(1500, "feet")
  3342. },
  3343. {
  3344. name: "Megamacro",
  3345. height: math.unit(2, "miles")
  3346. }
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3351. {
  3352. front: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(80, "kg"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/elbial/front.svg",
  3358. extra: 1643 / 1556,
  3359. bottom: 60.2 / 1696
  3360. }
  3361. },
  3362. side: {
  3363. height: math.unit(2, "meter"),
  3364. weight: math.unit(80, "kg"),
  3365. name: "Side",
  3366. image: {
  3367. source: "./media/characters/elbial/side.svg",
  3368. extra: 1630 / 1565,
  3369. bottom: 71.5 / 1697
  3370. }
  3371. },
  3372. back: {
  3373. height: math.unit(2, "meter"),
  3374. weight: math.unit(80, "kg"),
  3375. name: "Back",
  3376. image: {
  3377. source: "./media/characters/elbial/back.svg",
  3378. extra: 1668 / 1595,
  3379. bottom: 5.6 / 1672
  3380. }
  3381. },
  3382. frontDressed: {
  3383. height: math.unit(2, "meter"),
  3384. weight: math.unit(80, "kg"),
  3385. name: "Front (Dressed)",
  3386. image: {
  3387. source: "./media/characters/elbial/front-dressed.svg",
  3388. extra: 1653 / 1584,
  3389. bottom: 57 / 1708
  3390. }
  3391. },
  3392. genitals: {
  3393. height: math.unit(2 / 3.367, "meter"),
  3394. name: "Genitals",
  3395. image: {
  3396. source: "./media/characters/elbial/genitals.svg"
  3397. }
  3398. },
  3399. },
  3400. [
  3401. {
  3402. name: "Large",
  3403. height: math.unit(100, "feet")
  3404. },
  3405. {
  3406. name: "Macro",
  3407. height: math.unit(500, "feet"),
  3408. default: true
  3409. },
  3410. {
  3411. name: "Megamacro",
  3412. height: math.unit(10, "miles")
  3413. },
  3414. {
  3415. name: "Gigamacro",
  3416. height: math.unit(25000, "miles")
  3417. },
  3418. {
  3419. name: "Full-Size",
  3420. height: math.unit(8000000, "gigaparsecs")
  3421. }
  3422. ]
  3423. ))
  3424. characterMakers.push(() => makeCharacter(
  3425. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3426. {
  3427. front: {
  3428. height: math.unit(2, "meter"),
  3429. weight: math.unit(60, "kg"),
  3430. name: "Front",
  3431. image: {
  3432. source: "./media/characters/noah/front.svg"
  3433. }
  3434. },
  3435. talons: {
  3436. height: math.unit(0.315, "meter"),
  3437. name: "Talons",
  3438. image: {
  3439. source: "./media/characters/noah/talons.svg"
  3440. }
  3441. }
  3442. },
  3443. [
  3444. {
  3445. name: "Large",
  3446. height: math.unit(50, "feet")
  3447. },
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(750, "feet"),
  3451. default: true
  3452. },
  3453. {
  3454. name: "Megamacro",
  3455. height: math.unit(50, "miles")
  3456. },
  3457. {
  3458. name: "Gigamacro",
  3459. height: math.unit(100000, "miles")
  3460. },
  3461. {
  3462. name: "Full-Size",
  3463. height: math.unit(3000000000, "miles")
  3464. }
  3465. ]
  3466. ))
  3467. characterMakers.push(() => makeCharacter(
  3468. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3469. {
  3470. front: {
  3471. height: math.unit(2, "meter"),
  3472. weight: math.unit(80, "kg"),
  3473. name: "Front",
  3474. image: {
  3475. source: "./media/characters/natalya/front.svg"
  3476. }
  3477. },
  3478. back: {
  3479. height: math.unit(2, "meter"),
  3480. weight: math.unit(80, "kg"),
  3481. name: "Back",
  3482. image: {
  3483. source: "./media/characters/natalya/back.svg"
  3484. }
  3485. }
  3486. },
  3487. [
  3488. {
  3489. name: "Normal",
  3490. height: math.unit(150, "feet"),
  3491. default: true
  3492. },
  3493. {
  3494. name: "Megamacro",
  3495. height: math.unit(5, "miles")
  3496. },
  3497. {
  3498. name: "Full-Size",
  3499. height: math.unit(600, "kiloparsecs")
  3500. }
  3501. ]
  3502. ))
  3503. characterMakers.push(() => makeCharacter(
  3504. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3505. {
  3506. front: {
  3507. height: math.unit(2, "meter"),
  3508. weight: math.unit(50, "kg"),
  3509. name: "Front",
  3510. image: {
  3511. source: "./media/characters/erestrebah/front.svg",
  3512. extra: 208 / 193,
  3513. bottom: 0.055
  3514. }
  3515. },
  3516. back: {
  3517. height: math.unit(2, "meter"),
  3518. weight: math.unit(50, "kg"),
  3519. name: "Back",
  3520. image: {
  3521. source: "./media/characters/erestrebah/back.svg",
  3522. extra: 1.3
  3523. }
  3524. }
  3525. },
  3526. [
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(10, "feet")
  3530. },
  3531. {
  3532. name: "Large",
  3533. height: math.unit(50, "feet"),
  3534. default: true
  3535. },
  3536. {
  3537. name: "Macro",
  3538. height: math.unit(300, "feet")
  3539. },
  3540. {
  3541. name: "Macro+",
  3542. height: math.unit(750, "feet")
  3543. },
  3544. {
  3545. name: "Megamacro",
  3546. height: math.unit(3, "miles")
  3547. }
  3548. ]
  3549. ))
  3550. characterMakers.push(() => makeCharacter(
  3551. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3552. {
  3553. front: {
  3554. height: math.unit(2, "meter"),
  3555. weight: math.unit(80, "kg"),
  3556. name: "Front",
  3557. image: {
  3558. source: "./media/characters/jennifer/front.svg",
  3559. bottom: 0.11,
  3560. extra: 1.16
  3561. }
  3562. },
  3563. frontAlt: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(80, "kg"),
  3566. name: "Front (Alt)",
  3567. image: {
  3568. source: "./media/characters/jennifer/front-alt.svg"
  3569. }
  3570. }
  3571. },
  3572. [
  3573. {
  3574. name: "Canon Height",
  3575. height: math.unit(120, "feet"),
  3576. default: true
  3577. },
  3578. {
  3579. name: "Macro+",
  3580. height: math.unit(300, "feet")
  3581. },
  3582. {
  3583. name: "Megamacro",
  3584. height: math.unit(20000, "feet")
  3585. }
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(2, "meter"),
  3593. weight: math.unit(50, "kg"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/kalista/front.svg",
  3597. extra: 1947 / 1700,
  3598. bottom: 76.6 / 1412.98
  3599. }
  3600. },
  3601. back: {
  3602. height: math.unit(2, "meter"),
  3603. weight: math.unit(50, "kg"),
  3604. name: "Back",
  3605. image: {
  3606. source: "./media/characters/kalista/back.svg",
  3607. extra: 1366 / 1156,
  3608. bottom: 33.9 / 1362.78
  3609. }
  3610. }
  3611. },
  3612. [
  3613. {
  3614. name: "Uncomfortably Small",
  3615. height: math.unit(10, "feet")
  3616. },
  3617. {
  3618. name: "Small",
  3619. height: math.unit(30, "feet")
  3620. },
  3621. {
  3622. name: "Macro",
  3623. height: math.unit(100, "feet"),
  3624. default: true
  3625. },
  3626. {
  3627. name: "Macro+",
  3628. height: math.unit(2000, "feet")
  3629. },
  3630. {
  3631. name: "True Form",
  3632. height: math.unit(8924, "miles")
  3633. }
  3634. ]
  3635. ))
  3636. characterMakers.push(() => makeCharacter(
  3637. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3638. {
  3639. front: {
  3640. height: math.unit(2, "meter"),
  3641. weight: math.unit(120, "kg"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/ggv/front.svg"
  3645. }
  3646. },
  3647. side: {
  3648. height: math.unit(2, "meter"),
  3649. weight: math.unit(120, "kg"),
  3650. name: "Side",
  3651. image: {
  3652. source: "./media/characters/ggv/side.svg"
  3653. }
  3654. }
  3655. },
  3656. [
  3657. {
  3658. name: "Extremely Puny",
  3659. height: math.unit(9 + 5 / 12, "feet")
  3660. },
  3661. {
  3662. name: "Horribly Small",
  3663. height: math.unit(47.7, "miles"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Reasonably Sized",
  3668. height: math.unit(25000, "parsecs")
  3669. },
  3670. {
  3671. name: "Slightly Uncompressed",
  3672. height: math.unit(7.77e31, "parsecs")
  3673. },
  3674. {
  3675. name: "Omniversal",
  3676. height: math.unit(1e300, "meters")
  3677. },
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(75, "lb"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/napalm/front.svg"
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(75, "lb"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/napalm/back.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Standard",
  3703. height: math.unit(55, "feet"),
  3704. default: true
  3705. }
  3706. ]
  3707. ))
  3708. characterMakers.push(() => makeCharacter(
  3709. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3710. {
  3711. front: {
  3712. height: math.unit(7 + 5 / 6, "feet"),
  3713. weight: math.unit(325, "lb"),
  3714. name: "Front",
  3715. image: {
  3716. source: "./media/characters/asana/front.svg",
  3717. extra: 1133 / 1060,
  3718. bottom: 15.2 / 1148.6
  3719. }
  3720. },
  3721. back: {
  3722. height: math.unit(7 + 5 / 6, "feet"),
  3723. weight: math.unit(325, "lb"),
  3724. name: "Back",
  3725. image: {
  3726. source: "./media/characters/asana/back.svg",
  3727. extra: 1114 / 1043,
  3728. bottom: 5 / 1120
  3729. }
  3730. },
  3731. dressedDark: {
  3732. height: math.unit(7 + 5 / 6, "feet"),
  3733. weight: math.unit(325, "lb"),
  3734. name: "Dressed (Dark)",
  3735. image: {
  3736. source: "./media/characters/asana/dressed-dark.svg",
  3737. extra: 1133 / 1060,
  3738. bottom: 15.2 / 1148.6
  3739. }
  3740. },
  3741. dressedLight: {
  3742. height: math.unit(7 + 5 / 6, "feet"),
  3743. weight: math.unit(325, "lb"),
  3744. name: "Dressed (Light)",
  3745. image: {
  3746. source: "./media/characters/asana/dressed-light.svg",
  3747. extra: 1133 / 1060,
  3748. bottom: 15.2 / 1148.6
  3749. }
  3750. },
  3751. },
  3752. [
  3753. {
  3754. name: "Standard",
  3755. height: math.unit(7 + 5 / 6, "feet"),
  3756. default: true
  3757. },
  3758. {
  3759. name: "Large",
  3760. height: math.unit(10, "meters")
  3761. },
  3762. {
  3763. name: "Macro",
  3764. height: math.unit(2500, "meters")
  3765. },
  3766. {
  3767. name: "Megamacro",
  3768. height: math.unit(5e6, "meters")
  3769. },
  3770. {
  3771. name: "Examacro",
  3772. height: math.unit(5e12, "lightyears")
  3773. },
  3774. {
  3775. name: "Max Size",
  3776. height: math.unit(1e31, "lightyears")
  3777. }
  3778. ]
  3779. ))
  3780. characterMakers.push(() => makeCharacter(
  3781. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3782. {
  3783. front: {
  3784. height: math.unit(2, "meter"),
  3785. weight: math.unit(60, "kg"),
  3786. name: "Front",
  3787. image: {
  3788. source: "./media/characters/ebony/front.svg",
  3789. bottom: 0.03,
  3790. extra: 1045 / 810 + 0.03
  3791. }
  3792. },
  3793. side: {
  3794. height: math.unit(2, "meter"),
  3795. weight: math.unit(60, "kg"),
  3796. name: "Side",
  3797. image: {
  3798. source: "./media/characters/ebony/side.svg",
  3799. bottom: 0.03,
  3800. extra: 1045 / 810 + 0.03
  3801. }
  3802. },
  3803. back: {
  3804. height: math.unit(2, "meter"),
  3805. weight: math.unit(60, "kg"),
  3806. name: "Back",
  3807. image: {
  3808. source: "./media/characters/ebony/back.svg",
  3809. bottom: 0.01,
  3810. extra: 1045 / 810 + 0.01
  3811. }
  3812. },
  3813. },
  3814. [
  3815. // TODO check why I did this lol
  3816. {
  3817. name: "Standard",
  3818. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3819. default: true
  3820. },
  3821. {
  3822. name: "Macro",
  3823. height: math.unit(200, "feet")
  3824. },
  3825. {
  3826. name: "Gigamacro",
  3827. height: math.unit(13000, "km")
  3828. }
  3829. ]
  3830. ))
  3831. characterMakers.push(() => makeCharacter(
  3832. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3833. {
  3834. front: {
  3835. height: math.unit(6, "feet"),
  3836. weight: math.unit(175, "lb"),
  3837. name: "Front",
  3838. image: {
  3839. source: "./media/characters/mountain/front.svg",
  3840. extra: 972 / 955,
  3841. bottom: 64 / 1036.6
  3842. }
  3843. },
  3844. back: {
  3845. height: math.unit(6, "feet"),
  3846. weight: math.unit(175, "lb"),
  3847. name: "Back",
  3848. image: {
  3849. source: "./media/characters/mountain/back.svg",
  3850. extra: 970 / 950,
  3851. bottom: 28.25 / 999
  3852. }
  3853. },
  3854. },
  3855. [
  3856. {
  3857. name: "Large",
  3858. height: math.unit(20, "meters")
  3859. },
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(300, "meters")
  3863. },
  3864. {
  3865. name: "Gigamacro",
  3866. height: math.unit(10000, "km"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Examacro",
  3871. height: math.unit(10e9, "lightyears")
  3872. }
  3873. ]
  3874. ))
  3875. characterMakers.push(() => makeCharacter(
  3876. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3877. {
  3878. front: {
  3879. height: math.unit(8, "feet"),
  3880. weight: math.unit(500, "lb"),
  3881. name: "Front",
  3882. image: {
  3883. source: "./media/characters/rick/front.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Normal",
  3890. height: math.unit(8, "feet"),
  3891. default: true
  3892. },
  3893. {
  3894. name: "Macro",
  3895. height: math.unit(5, "km")
  3896. }
  3897. ]
  3898. ))
  3899. characterMakers.push(() => makeCharacter(
  3900. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3901. {
  3902. front: {
  3903. height: math.unit(8, "feet"),
  3904. weight: math.unit(120, "lb"),
  3905. name: "Front",
  3906. image: {
  3907. source: "./media/characters/ona/front.svg"
  3908. }
  3909. },
  3910. frontAlt: {
  3911. height: math.unit(8, "feet"),
  3912. weight: math.unit(120, "lb"),
  3913. name: "Front (Alt)",
  3914. image: {
  3915. source: "./media/characters/ona/front-alt.svg"
  3916. }
  3917. },
  3918. back: {
  3919. height: math.unit(8, "feet"),
  3920. weight: math.unit(120, "lb"),
  3921. name: "Back",
  3922. image: {
  3923. source: "./media/characters/ona/back.svg"
  3924. }
  3925. },
  3926. foot: {
  3927. height: math.unit(1.1, "feet"),
  3928. name: "Foot",
  3929. image: {
  3930. source: "./media/characters/ona/foot.svg"
  3931. }
  3932. }
  3933. },
  3934. [
  3935. {
  3936. name: "Megamacro",
  3937. height: math.unit(70, "km"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Gigamacro",
  3942. height: math.unit(681818, "miles")
  3943. },
  3944. {
  3945. name: "Examacro",
  3946. height: math.unit(3800000, "lightyears")
  3947. },
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(12, "feet"),
  3955. weight: math.unit(3000, "lb"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/mech/front.svg",
  3959. extra: 2900 / 2770,
  3960. bottom: 110 / 3010
  3961. }
  3962. },
  3963. back: {
  3964. height: math.unit(12, "feet"),
  3965. weight: math.unit(3000, "lb"),
  3966. name: "Back",
  3967. image: {
  3968. source: "./media/characters/mech/back.svg",
  3969. extra: 3011 / 2890,
  3970. bottom: 94 / 3105
  3971. }
  3972. },
  3973. maw: {
  3974. height: math.unit(3.07, "feet"),
  3975. name: "Maw",
  3976. image: {
  3977. source: "./media/characters/mech/maw.svg"
  3978. }
  3979. },
  3980. head: {
  3981. height: math.unit(2.82, "feet"),
  3982. name: "Head",
  3983. image: {
  3984. source: "./media/characters/mech/head.svg"
  3985. }
  3986. },
  3987. dick: {
  3988. height: math.unit(1.43, "feet"),
  3989. name: "Dick",
  3990. image: {
  3991. source: "./media/characters/mech/dick.svg"
  3992. }
  3993. },
  3994. },
  3995. [
  3996. {
  3997. name: "Normal",
  3998. height: math.unit(12, "feet")
  3999. },
  4000. {
  4001. name: "Macro",
  4002. height: math.unit(300, "feet"),
  4003. default: true
  4004. },
  4005. {
  4006. name: "Macro+",
  4007. height: math.unit(1500, "feet")
  4008. },
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(1.3, "meter"),
  4016. weight: math.unit(30, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/gregory/front.svg",
  4020. }
  4021. }
  4022. },
  4023. [
  4024. {
  4025. name: "Normal",
  4026. height: math.unit(1.3, "meter"),
  4027. default: true
  4028. },
  4029. {
  4030. name: "Macro",
  4031. height: math.unit(20, "meter")
  4032. }
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4037. {
  4038. front: {
  4039. height: math.unit(2.8, "meter"),
  4040. weight: math.unit(200, "kg"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/elory/front.svg",
  4044. }
  4045. }
  4046. },
  4047. [
  4048. {
  4049. name: "Normal",
  4050. height: math.unit(2.8, "meter"),
  4051. default: true
  4052. },
  4053. {
  4054. name: "Macro",
  4055. height: math.unit(38, "meter")
  4056. }
  4057. ]
  4058. ))
  4059. characterMakers.push(() => makeCharacter(
  4060. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4061. {
  4062. front: {
  4063. height: math.unit(470, "feet"),
  4064. weight: math.unit(924, "tons"),
  4065. name: "Front",
  4066. image: {
  4067. source: "./media/characters/angelpatamon/front.svg",
  4068. }
  4069. }
  4070. },
  4071. [
  4072. {
  4073. name: "Normal",
  4074. height: math.unit(470, "feet"),
  4075. default: true
  4076. },
  4077. {
  4078. name: "Deity Size I",
  4079. height: math.unit(28651.2, "km")
  4080. },
  4081. {
  4082. name: "Deity Size II",
  4083. height: math.unit(171907.2, "km")
  4084. }
  4085. ]
  4086. ))
  4087. characterMakers.push(() => makeCharacter(
  4088. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4089. {
  4090. side: {
  4091. height: math.unit(7.2, "meter"),
  4092. weight: math.unit(8.2, "tons"),
  4093. name: "Side",
  4094. image: {
  4095. source: "./media/characters/cryae/side.svg",
  4096. extra: 3500 / 1500
  4097. }
  4098. }
  4099. },
  4100. [
  4101. {
  4102. name: "Normal",
  4103. height: math.unit(7.2, "meter"),
  4104. default: true
  4105. }
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4110. {
  4111. front: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(175, "lb"),
  4114. name: "Front",
  4115. image: {
  4116. source: "./media/characters/xera/front.svg",
  4117. extra: 2377 / 1972,
  4118. bottom: 75.5 / 2452
  4119. }
  4120. },
  4121. side: {
  4122. height: math.unit(6, "feet"),
  4123. weight: math.unit(175, "lb"),
  4124. name: "Side",
  4125. image: {
  4126. source: "./media/characters/xera/side.svg",
  4127. extra: 2345 / 2019,
  4128. bottom: 39.7 / 2384
  4129. }
  4130. },
  4131. back: {
  4132. height: math.unit(6, "feet"),
  4133. weight: math.unit(175, "lb"),
  4134. name: "Back",
  4135. image: {
  4136. source: "./media/characters/xera/back.svg",
  4137. extra: 2095 / 1984,
  4138. bottom: 67 / 2166
  4139. }
  4140. },
  4141. },
  4142. [
  4143. {
  4144. name: "Small",
  4145. height: math.unit(10, "feet")
  4146. },
  4147. {
  4148. name: "Macro",
  4149. height: math.unit(500, "meters"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Macro+",
  4154. height: math.unit(10, "km")
  4155. },
  4156. {
  4157. name: "Gigamacro",
  4158. height: math.unit(25000, "km")
  4159. },
  4160. {
  4161. name: "Teramacro",
  4162. height: math.unit(3e6, "km")
  4163. }
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4168. {
  4169. front: {
  4170. height: math.unit(6, "feet"),
  4171. weight: math.unit(175, "lb"),
  4172. name: "Front",
  4173. image: {
  4174. source: "./media/characters/nebula/front.svg",
  4175. extra: 2566 / 2362,
  4176. bottom: 81 / 2644
  4177. }
  4178. }
  4179. },
  4180. [
  4181. {
  4182. name: "Small",
  4183. height: math.unit(4.5, "meters")
  4184. },
  4185. {
  4186. name: "Macro",
  4187. height: math.unit(1500, "meters"),
  4188. default: true
  4189. },
  4190. {
  4191. name: "Megamacro",
  4192. height: math.unit(150, "km")
  4193. },
  4194. {
  4195. name: "Gigamacro",
  4196. height: math.unit(27000, "km")
  4197. }
  4198. ]
  4199. ))
  4200. characterMakers.push(() => makeCharacter(
  4201. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4202. {
  4203. front: {
  4204. height: math.unit(6, "feet"),
  4205. weight: math.unit(225, "lb"),
  4206. name: "Front",
  4207. image: {
  4208. source: "./media/characters/abysgar/front.svg"
  4209. }
  4210. }
  4211. },
  4212. [
  4213. {
  4214. name: "Small",
  4215. height: math.unit(4.5, "meters")
  4216. },
  4217. {
  4218. name: "Macro",
  4219. height: math.unit(1250, "meters"),
  4220. default: true
  4221. },
  4222. {
  4223. name: "Megamacro",
  4224. height: math.unit(125, "km")
  4225. },
  4226. {
  4227. name: "Gigamacro",
  4228. height: math.unit(26000, "km")
  4229. }
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4234. {
  4235. front: {
  4236. height: math.unit(6, "feet"),
  4237. weight: math.unit(180, "lb"),
  4238. name: "Front",
  4239. image: {
  4240. source: "./media/characters/yakuz/front.svg"
  4241. }
  4242. }
  4243. },
  4244. [
  4245. {
  4246. name: "Small",
  4247. height: math.unit(5, "meters")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(1500, "meters"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Megamacro",
  4256. height: math.unit(200, "km")
  4257. },
  4258. {
  4259. name: "Gigamacro",
  4260. height: math.unit(100000, "km")
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4266. {
  4267. front: {
  4268. height: math.unit(6, "feet"),
  4269. weight: math.unit(175, "lb"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/mirova/front.svg",
  4273. extra: 3334 / 3071,
  4274. bottom: 42 / 3375.6
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Small",
  4281. height: math.unit(5, "meters")
  4282. },
  4283. {
  4284. name: "Macro",
  4285. height: math.unit(900, "meters"),
  4286. default: true
  4287. },
  4288. {
  4289. name: "Megamacro",
  4290. height: math.unit(135, "km")
  4291. },
  4292. {
  4293. name: "Gigamacro",
  4294. height: math.unit(20000, "km")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4300. {
  4301. side: {
  4302. height: math.unit(28.35, "feet"),
  4303. weight: math.unit(99.75, "tons"),
  4304. name: "Side",
  4305. image: {
  4306. source: "./media/characters/asana-mech/side.svg",
  4307. extra: 923 / 699,
  4308. bottom: 50 / 975
  4309. }
  4310. },
  4311. chaingun: {
  4312. height: math.unit(7, "feet"),
  4313. weight: math.unit(2400, "lb"),
  4314. name: "Chaingun",
  4315. image: {
  4316. source: "./media/characters/asana-mech/chaingun.svg"
  4317. }
  4318. },
  4319. laser: {
  4320. height: math.unit(7.12, "feet"),
  4321. weight: math.unit(2000, "lb"),
  4322. name: "Laser",
  4323. image: {
  4324. source: "./media/characters/asana-mech/laser.svg"
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Normal",
  4331. height: math.unit(28.35, "feet"),
  4332. default: true
  4333. },
  4334. {
  4335. name: "Macro",
  4336. height: math.unit(2500, "feet")
  4337. },
  4338. {
  4339. name: "Megamacro",
  4340. height: math.unit(25, "miles")
  4341. },
  4342. {
  4343. name: "Examacro",
  4344. height: math.unit(6e8, "lightyears")
  4345. },
  4346. ]
  4347. ))
  4348. characterMakers.push(() => makeCharacter(
  4349. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4350. {
  4351. front: {
  4352. height: math.unit(5, "meters"),
  4353. weight: math.unit(1000, "kg"),
  4354. name: "Front",
  4355. image: {
  4356. source: "./media/characters/asche/front.svg",
  4357. extra: 1258 / 1190,
  4358. bottom: 47 / 1305
  4359. }
  4360. },
  4361. frontUnderwear: {
  4362. height: math.unit(5, "meters"),
  4363. weight: math.unit(1000, "kg"),
  4364. name: "Front (Underwear)",
  4365. image: {
  4366. source: "./media/characters/asche/front-underwear.svg",
  4367. extra: 1258 / 1190,
  4368. bottom: 47 / 1305
  4369. }
  4370. },
  4371. frontDressed: {
  4372. height: math.unit(5, "meters"),
  4373. weight: math.unit(1000, "kg"),
  4374. name: "Front (Dressed)",
  4375. image: {
  4376. source: "./media/characters/asche/front-dressed.svg",
  4377. extra: 1258 / 1190,
  4378. bottom: 47 / 1305
  4379. }
  4380. },
  4381. frontArmor: {
  4382. height: math.unit(5, "meters"),
  4383. weight: math.unit(1000, "kg"),
  4384. name: "Front (Armored)",
  4385. image: {
  4386. source: "./media/characters/asche/front-armored.svg",
  4387. extra: 1374 / 1308,
  4388. bottom: 23 / 1397
  4389. }
  4390. },
  4391. mp724: {
  4392. height: math.unit(0.96, "meters"),
  4393. weight: math.unit(38, "kg"),
  4394. name: "H&K MP724",
  4395. image: {
  4396. source: "./media/characters/asche/h&k-mp724.svg"
  4397. }
  4398. },
  4399. side: {
  4400. height: math.unit(5, "meters"),
  4401. weight: math.unit(1000, "kg"),
  4402. name: "Side",
  4403. image: {
  4404. source: "./media/characters/asche/side.svg",
  4405. extra: 1717 / 1609,
  4406. bottom: 0.005
  4407. }
  4408. },
  4409. back: {
  4410. height: math.unit(5, "meters"),
  4411. weight: math.unit(1000, "kg"),
  4412. name: "Back",
  4413. image: {
  4414. source: "./media/characters/asche/back.svg",
  4415. extra: 1570 / 1501
  4416. }
  4417. },
  4418. },
  4419. [
  4420. {
  4421. name: "DEFCON 5",
  4422. height: math.unit(5, "meters")
  4423. },
  4424. {
  4425. name: "DEFCON 4",
  4426. height: math.unit(500, "meters"),
  4427. default: true
  4428. },
  4429. {
  4430. name: "DEFCON 3",
  4431. height: math.unit(5, "km")
  4432. },
  4433. {
  4434. name: "DEFCON 2",
  4435. height: math.unit(500, "km")
  4436. },
  4437. {
  4438. name: "DEFCON 1",
  4439. height: math.unit(500000, "km")
  4440. },
  4441. {
  4442. name: "DEFCON 0",
  4443. height: math.unit(3, "gigaparsecs")
  4444. },
  4445. ]
  4446. ))
  4447. characterMakers.push(() => makeCharacter(
  4448. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4449. {
  4450. front: {
  4451. height: math.unit(2, "meters"),
  4452. weight: math.unit(76, "kg"),
  4453. name: "Front",
  4454. image: {
  4455. source: "./media/characters/gale/front.svg"
  4456. }
  4457. },
  4458. frontAlt1: {
  4459. height: math.unit(2, "meters"),
  4460. weight: math.unit(76, "kg"),
  4461. name: "Front (Alt 1)",
  4462. image: {
  4463. source: "./media/characters/gale/front-alt-1.svg"
  4464. }
  4465. },
  4466. frontAlt2: {
  4467. height: math.unit(2, "meters"),
  4468. weight: math.unit(76, "kg"),
  4469. name: "Front (Alt 2)",
  4470. image: {
  4471. source: "./media/characters/gale/front-alt-2.svg"
  4472. }
  4473. },
  4474. },
  4475. [
  4476. {
  4477. name: "Normal",
  4478. height: math.unit(7, "feet")
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(150, "feet"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Macro+",
  4487. height: math.unit(300, "feet")
  4488. },
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(5 + 10/12, "feet"),
  4496. weight: math.unit(67, "kg"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/draylen/front.svg",
  4500. extra: 832/777,
  4501. bottom: 85/917
  4502. }
  4503. }
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(5 + 10/12, "feet")
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(150, "feet"),
  4513. default: true
  4514. }
  4515. ]
  4516. ))
  4517. characterMakers.push(() => makeCharacter(
  4518. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4519. {
  4520. front: {
  4521. height: math.unit(7 + 9 / 12, "feet"),
  4522. weight: math.unit(379, "lbs"),
  4523. name: "Front",
  4524. image: {
  4525. source: "./media/characters/chez/front.svg"
  4526. }
  4527. },
  4528. side: {
  4529. height: math.unit(7 + 9 / 12, "feet"),
  4530. weight: math.unit(379, "lbs"),
  4531. name: "Side",
  4532. image: {
  4533. source: "./media/characters/chez/side.svg"
  4534. }
  4535. }
  4536. },
  4537. [
  4538. {
  4539. name: "Normal",
  4540. height: math.unit(7 + 9 / 12, "feet"),
  4541. default: true
  4542. },
  4543. {
  4544. name: "God King",
  4545. height: math.unit(9750000, "meters")
  4546. }
  4547. ]
  4548. ))
  4549. characterMakers.push(() => makeCharacter(
  4550. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4551. {
  4552. front: {
  4553. height: math.unit(6, "feet"),
  4554. weight: math.unit(275, "lbs"),
  4555. name: "Front",
  4556. image: {
  4557. source: "./media/characters/kaylum/front.svg",
  4558. bottom: 0.01,
  4559. extra: 1166 / 1031
  4560. }
  4561. },
  4562. frontWingless: {
  4563. height: math.unit(6, "feet"),
  4564. weight: math.unit(275, "lbs"),
  4565. name: "Front (Wingless)",
  4566. image: {
  4567. source: "./media/characters/kaylum/front-wingless.svg",
  4568. bottom: 0.01,
  4569. extra: 1117 / 1031
  4570. }
  4571. }
  4572. },
  4573. [
  4574. {
  4575. name: "Normal",
  4576. height: math.unit(3.05, "meters")
  4577. },
  4578. {
  4579. name: "Master",
  4580. height: math.unit(5.5, "meters")
  4581. },
  4582. {
  4583. name: "Rampage",
  4584. height: math.unit(19, "meters")
  4585. },
  4586. {
  4587. name: "Macro Lite",
  4588. height: math.unit(37, "meters")
  4589. },
  4590. {
  4591. name: "Hyper Predator",
  4592. height: math.unit(61, "meters")
  4593. },
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(138, "meters"),
  4597. default: true
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(6, "feet"),
  4606. weight: math.unit(150, "lbs"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/geta/front.svg"
  4610. }
  4611. }
  4612. },
  4613. [
  4614. {
  4615. name: "Micro",
  4616. height: math.unit(3, "inches"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Normal",
  4621. height: math.unit(5 + 5 / 12, "feet")
  4622. }
  4623. ]
  4624. ))
  4625. characterMakers.push(() => makeCharacter(
  4626. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4627. {
  4628. front: {
  4629. height: math.unit(6, "feet"),
  4630. weight: math.unit(300, "lbs"),
  4631. name: "Front",
  4632. image: {
  4633. source: "./media/characters/tyrnn/front.svg"
  4634. }
  4635. }
  4636. },
  4637. [
  4638. {
  4639. name: "Main Height",
  4640. height: math.unit(355, "feet"),
  4641. default: true
  4642. },
  4643. {
  4644. name: "Fave. Height",
  4645. height: math.unit(2400, "feet")
  4646. }
  4647. ]
  4648. ))
  4649. characterMakers.push(() => makeCharacter(
  4650. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4651. {
  4652. front: {
  4653. height: math.unit(6, "feet"),
  4654. weight: math.unit(300, "lbs"),
  4655. name: "Front",
  4656. image: {
  4657. source: "./media/characters/appledectomy/front.svg"
  4658. }
  4659. }
  4660. },
  4661. [
  4662. {
  4663. name: "Macro",
  4664. height: math.unit(2500, "feet")
  4665. },
  4666. {
  4667. name: "Megamacro",
  4668. height: math.unit(50, "miles"),
  4669. default: true
  4670. },
  4671. {
  4672. name: "Gigamacro",
  4673. height: math.unit(5000, "miles")
  4674. },
  4675. {
  4676. name: "Teramacro",
  4677. height: math.unit(250000, "miles")
  4678. },
  4679. ]
  4680. ))
  4681. characterMakers.push(() => makeCharacter(
  4682. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4683. {
  4684. front: {
  4685. height: math.unit(6, "feet"),
  4686. weight: math.unit(200, "lbs"),
  4687. name: "Front",
  4688. image: {
  4689. source: "./media/characters/vulpes/front.svg",
  4690. extra: 573 / 543,
  4691. bottom: 0.033
  4692. }
  4693. },
  4694. side: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(200, "lbs"),
  4697. name: "Side",
  4698. image: {
  4699. source: "./media/characters/vulpes/side.svg",
  4700. extra: 577 / 549,
  4701. bottom: 11 / 588
  4702. }
  4703. },
  4704. back: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(200, "lbs"),
  4707. name: "Back",
  4708. image: {
  4709. source: "./media/characters/vulpes/back.svg",
  4710. extra: 573 / 549,
  4711. bottom: 20 / 593
  4712. }
  4713. },
  4714. feet: {
  4715. height: math.unit(1.276, "feet"),
  4716. name: "Feet",
  4717. image: {
  4718. source: "./media/characters/vulpes/feet.svg"
  4719. }
  4720. },
  4721. maw: {
  4722. height: math.unit(1.18, "feet"),
  4723. name: "Maw",
  4724. image: {
  4725. source: "./media/characters/vulpes/maw.svg"
  4726. }
  4727. },
  4728. },
  4729. [
  4730. {
  4731. name: "Micro",
  4732. height: math.unit(2, "inches")
  4733. },
  4734. {
  4735. name: "Normal",
  4736. height: math.unit(6.3, "feet")
  4737. },
  4738. {
  4739. name: "Macro",
  4740. height: math.unit(850, "feet")
  4741. },
  4742. {
  4743. name: "Megamacro",
  4744. height: math.unit(7500, "feet"),
  4745. default: true
  4746. },
  4747. {
  4748. name: "Gigamacro",
  4749. height: math.unit(570000, "miles")
  4750. }
  4751. ]
  4752. ))
  4753. characterMakers.push(() => makeCharacter(
  4754. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4755. {
  4756. front: {
  4757. height: math.unit(6, "feet"),
  4758. weight: math.unit(210, "lbs"),
  4759. name: "Front",
  4760. image: {
  4761. source: "./media/characters/rain-fallen/front.svg"
  4762. }
  4763. },
  4764. side: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(210, "lbs"),
  4767. name: "Side",
  4768. image: {
  4769. source: "./media/characters/rain-fallen/side.svg"
  4770. }
  4771. },
  4772. back: {
  4773. height: math.unit(6, "feet"),
  4774. weight: math.unit(210, "lbs"),
  4775. name: "Back",
  4776. image: {
  4777. source: "./media/characters/rain-fallen/back.svg"
  4778. }
  4779. },
  4780. feral: {
  4781. height: math.unit(9, "feet"),
  4782. weight: math.unit(700, "lbs"),
  4783. name: "Feral",
  4784. image: {
  4785. source: "./media/characters/rain-fallen/feral.svg"
  4786. }
  4787. },
  4788. },
  4789. [
  4790. {
  4791. name: "Meddling with Mortals",
  4792. height: math.unit(8 + 8/12, "feet")
  4793. },
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(5, "meter")
  4797. },
  4798. {
  4799. name: "Macro",
  4800. height: math.unit(150, "meter"),
  4801. default: true
  4802. },
  4803. {
  4804. name: "Megamacro",
  4805. height: math.unit(278e6, "meter")
  4806. },
  4807. {
  4808. name: "Gigamacro",
  4809. height: math.unit(2e9, "meter")
  4810. },
  4811. {
  4812. name: "Teramacro",
  4813. height: math.unit(8e12, "meter")
  4814. },
  4815. {
  4816. name: "Devourer",
  4817. height: math.unit(14, "zettameters")
  4818. },
  4819. {
  4820. name: "Scarlet King",
  4821. height: math.unit(18, "yottameters")
  4822. },
  4823. {
  4824. name: "Void",
  4825. height: math.unit(1e88, "yottameters")
  4826. }
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4831. {
  4832. standing: {
  4833. height: math.unit(6, "feet"),
  4834. weight: math.unit(180, "lbs"),
  4835. name: "Standing",
  4836. image: {
  4837. source: "./media/characters/zaakira/standing.svg",
  4838. extra: 1599/1504,
  4839. bottom: 39/1638
  4840. }
  4841. },
  4842. laying: {
  4843. height: math.unit(3, "feet"),
  4844. weight: math.unit(180, "lbs"),
  4845. name: "Laying",
  4846. image: {
  4847. source: "./media/characters/zaakira/laying.svg"
  4848. }
  4849. },
  4850. },
  4851. [
  4852. {
  4853. name: "Normal",
  4854. height: math.unit(12, "feet")
  4855. },
  4856. {
  4857. name: "Macro",
  4858. height: math.unit(279, "feet"),
  4859. default: true
  4860. }
  4861. ]
  4862. ))
  4863. characterMakers.push(() => makeCharacter(
  4864. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4865. {
  4866. femSfw: {
  4867. height: math.unit(8, "feet"),
  4868. weight: math.unit(350, "lb"),
  4869. name: "Fem",
  4870. image: {
  4871. source: "./media/characters/sigvald/fem-sfw.svg",
  4872. extra: 182 / 164,
  4873. bottom: 8.7 / 190.5
  4874. }
  4875. },
  4876. femNsfw: {
  4877. height: math.unit(8, "feet"),
  4878. weight: math.unit(350, "lb"),
  4879. name: "Fem (NSFW)",
  4880. image: {
  4881. source: "./media/characters/sigvald/fem-nsfw.svg",
  4882. extra: 182 / 164,
  4883. bottom: 8.7 / 190.5
  4884. }
  4885. },
  4886. maleNsfw: {
  4887. height: math.unit(8, "feet"),
  4888. weight: math.unit(350, "lb"),
  4889. name: "Male (NSFW)",
  4890. image: {
  4891. source: "./media/characters/sigvald/male-nsfw.svg",
  4892. extra: 182 / 164,
  4893. bottom: 8.7 / 190.5
  4894. }
  4895. },
  4896. hermNsfw: {
  4897. height: math.unit(8, "feet"),
  4898. weight: math.unit(350, "lb"),
  4899. name: "Herm (NSFW)",
  4900. image: {
  4901. source: "./media/characters/sigvald/herm-nsfw.svg",
  4902. extra: 182 / 164,
  4903. bottom: 8.7 / 190.5
  4904. }
  4905. },
  4906. dick: {
  4907. height: math.unit(2.36, "feet"),
  4908. name: "Dick",
  4909. image: {
  4910. source: "./media/characters/sigvald/dick.svg"
  4911. }
  4912. },
  4913. eye: {
  4914. height: math.unit(0.31, "feet"),
  4915. name: "Eye",
  4916. image: {
  4917. source: "./media/characters/sigvald/eye.svg"
  4918. }
  4919. },
  4920. mouth: {
  4921. height: math.unit(0.92, "feet"),
  4922. name: "Mouth",
  4923. image: {
  4924. source: "./media/characters/sigvald/mouth.svg"
  4925. }
  4926. },
  4927. paws: {
  4928. height: math.unit(2.2, "feet"),
  4929. name: "Paws",
  4930. image: {
  4931. source: "./media/characters/sigvald/paws.svg"
  4932. }
  4933. }
  4934. },
  4935. [
  4936. {
  4937. name: "Normal",
  4938. height: math.unit(8, "feet")
  4939. },
  4940. {
  4941. name: "Large",
  4942. height: math.unit(12, "feet")
  4943. },
  4944. {
  4945. name: "Larger",
  4946. height: math.unit(20, "feet")
  4947. },
  4948. {
  4949. name: "Macro",
  4950. height: math.unit(150, "feet")
  4951. },
  4952. {
  4953. name: "Macro+",
  4954. height: math.unit(200, "feet"),
  4955. default: true
  4956. },
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4961. {
  4962. side: {
  4963. height: math.unit(12, "feet"),
  4964. weight: math.unit(2000, "kg"),
  4965. name: "Side",
  4966. image: {
  4967. source: "./media/characters/scott/side.svg",
  4968. extra: 754 / 724,
  4969. bottom: 0.069
  4970. }
  4971. },
  4972. upright: {
  4973. height: math.unit(12, "feet"),
  4974. weight: math.unit(2000, "kg"),
  4975. name: "Upright",
  4976. image: {
  4977. source: "./media/characters/scott/upright.svg",
  4978. extra: 3881 / 3722,
  4979. bottom: 0.05
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Normal",
  4986. height: math.unit(12, "feet"),
  4987. default: true
  4988. },
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4993. {
  4994. side: {
  4995. height: math.unit(8, "meters"),
  4996. weight: math.unit(84755, "lbs"),
  4997. name: "Side",
  4998. image: {
  4999. source: "./media/characters/tobias/side.svg",
  5000. extra: 1474 / 1096,
  5001. bottom: 38.9 / 1513.1235
  5002. }
  5003. },
  5004. },
  5005. [
  5006. {
  5007. name: "Normal",
  5008. height: math.unit(8, "meters"),
  5009. default: true
  5010. },
  5011. ]
  5012. ))
  5013. characterMakers.push(() => makeCharacter(
  5014. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5015. {
  5016. front: {
  5017. height: math.unit(5.5, "feet"),
  5018. weight: math.unit(400, "lbs"),
  5019. name: "Front",
  5020. image: {
  5021. source: "./media/characters/kieran/front.svg",
  5022. extra: 2694 / 2364,
  5023. bottom: 217 / 2908
  5024. }
  5025. },
  5026. side: {
  5027. height: math.unit(5.5, "feet"),
  5028. weight: math.unit(400, "lbs"),
  5029. name: "Side",
  5030. image: {
  5031. source: "./media/characters/kieran/side.svg",
  5032. extra: 875 / 777,
  5033. bottom: 84.6 / 959
  5034. }
  5035. },
  5036. },
  5037. [
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(5.5, "feet"),
  5041. default: true
  5042. },
  5043. ]
  5044. ))
  5045. characterMakers.push(() => makeCharacter(
  5046. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5047. {
  5048. side: {
  5049. height: math.unit(2, "meters"),
  5050. weight: math.unit(70, "kg"),
  5051. name: "Side",
  5052. image: {
  5053. source: "./media/characters/sanya/side.svg",
  5054. bottom: 0.02,
  5055. extra: 1.02
  5056. }
  5057. },
  5058. },
  5059. [
  5060. {
  5061. name: "Small",
  5062. height: math.unit(2, "meters")
  5063. },
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(3, "meters")
  5067. },
  5068. {
  5069. name: "Macro",
  5070. height: math.unit(16, "meters"),
  5071. default: true
  5072. },
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5077. {
  5078. front: {
  5079. height: math.unit(2, "meters"),
  5080. weight: math.unit(120, "kg"),
  5081. name: "Front",
  5082. image: {
  5083. source: "./media/characters/miranda/front.svg",
  5084. extra: 195 / 185,
  5085. bottom: 10.9 / 206.5
  5086. }
  5087. },
  5088. back: {
  5089. height: math.unit(2, "meters"),
  5090. weight: math.unit(120, "kg"),
  5091. name: "Back",
  5092. image: {
  5093. source: "./media/characters/miranda/back.svg",
  5094. extra: 201 / 193,
  5095. bottom: 2.3 / 203.7
  5096. }
  5097. },
  5098. },
  5099. [
  5100. {
  5101. name: "Normal",
  5102. height: math.unit(10, "feet"),
  5103. default: true
  5104. }
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "James", species: ["deer"], tags: ["anthro"] },
  5109. {
  5110. side: {
  5111. height: math.unit(2, "meters"),
  5112. weight: math.unit(100, "kg"),
  5113. name: "Front",
  5114. image: {
  5115. source: "./media/characters/james/front.svg",
  5116. extra: 10 / 8.5
  5117. }
  5118. },
  5119. },
  5120. [
  5121. {
  5122. name: "Normal",
  5123. height: math.unit(8.5, "feet"),
  5124. default: true
  5125. }
  5126. ]
  5127. ))
  5128. characterMakers.push(() => makeCharacter(
  5129. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5130. {
  5131. side: {
  5132. height: math.unit(9.5, "feet"),
  5133. weight: math.unit(2500, "lbs"),
  5134. name: "Side",
  5135. image: {
  5136. source: "./media/characters/heather/side.svg"
  5137. }
  5138. },
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(9.5, "feet"),
  5144. default: true
  5145. }
  5146. ]
  5147. ))
  5148. characterMakers.push(() => makeCharacter(
  5149. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5150. {
  5151. side: {
  5152. height: math.unit(6.5, "feet"),
  5153. weight: math.unit(400, "lbs"),
  5154. name: "Side",
  5155. image: {
  5156. source: "./media/characters/lukas/side.svg",
  5157. extra: 7.25 / 6.5
  5158. }
  5159. },
  5160. },
  5161. [
  5162. {
  5163. name: "Normal",
  5164. height: math.unit(6.5, "feet"),
  5165. default: true
  5166. }
  5167. ]
  5168. ))
  5169. characterMakers.push(() => makeCharacter(
  5170. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5171. {
  5172. side: {
  5173. height: math.unit(5, "feet"),
  5174. weight: math.unit(3000, "lbs"),
  5175. name: "Side",
  5176. image: {
  5177. source: "./media/characters/louise/side.svg"
  5178. }
  5179. },
  5180. },
  5181. [
  5182. {
  5183. name: "Normal",
  5184. height: math.unit(5, "feet"),
  5185. default: true
  5186. }
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5191. {
  5192. side: {
  5193. height: math.unit(6, "feet"),
  5194. weight: math.unit(150, "lbs"),
  5195. name: "Side",
  5196. image: {
  5197. source: "./media/characters/ramona/side.svg"
  5198. }
  5199. },
  5200. },
  5201. [
  5202. {
  5203. name: "Normal",
  5204. height: math.unit(5.3, "meters"),
  5205. default: true
  5206. },
  5207. {
  5208. name: "Macro",
  5209. height: math.unit(20, "stories")
  5210. },
  5211. {
  5212. name: "Macro+",
  5213. height: math.unit(50, "stories")
  5214. },
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5219. {
  5220. standing: {
  5221. height: math.unit(5.75, "feet"),
  5222. weight: math.unit(160, "lbs"),
  5223. name: "Standing",
  5224. image: {
  5225. source: "./media/characters/deerpuff/standing.svg",
  5226. extra: 682 / 624
  5227. }
  5228. },
  5229. sitting: {
  5230. height: math.unit(5.75 / 1.79, "feet"),
  5231. weight: math.unit(160, "lbs"),
  5232. name: "Sitting",
  5233. image: {
  5234. source: "./media/characters/deerpuff/sitting.svg",
  5235. bottom: 44 / 400,
  5236. extra: 1
  5237. }
  5238. },
  5239. taurLaying: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(400, "lbs"),
  5242. name: "Taur (Laying)",
  5243. image: {
  5244. source: "./media/characters/deerpuff/taur-laying.svg"
  5245. }
  5246. },
  5247. },
  5248. [
  5249. {
  5250. name: "Puffball",
  5251. height: math.unit(6, "inches")
  5252. },
  5253. {
  5254. name: "Normalpuff",
  5255. height: math.unit(5.75, "feet")
  5256. },
  5257. {
  5258. name: "Macropuff",
  5259. height: math.unit(1500, "feet"),
  5260. default: true
  5261. },
  5262. {
  5263. name: "Megapuff",
  5264. height: math.unit(500, "miles")
  5265. },
  5266. {
  5267. name: "Gigapuff",
  5268. height: math.unit(250000, "miles")
  5269. },
  5270. {
  5271. name: "Omegapuff",
  5272. height: math.unit(1000, "lightyears")
  5273. },
  5274. ]
  5275. ))
  5276. characterMakers.push(() => makeCharacter(
  5277. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5278. {
  5279. stomping: {
  5280. height: math.unit(6, "feet"),
  5281. weight: math.unit(170, "lbs"),
  5282. name: "Stomping",
  5283. image: {
  5284. source: "./media/characters/vivian/stomping.svg"
  5285. }
  5286. },
  5287. sitting: {
  5288. height: math.unit(6 / 1.75, "feet"),
  5289. weight: math.unit(170, "lbs"),
  5290. name: "Sitting",
  5291. image: {
  5292. source: "./media/characters/vivian/sitting.svg",
  5293. bottom: 1 / 6.4,
  5294. extra: 1,
  5295. }
  5296. },
  5297. },
  5298. [
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(7, "feet"),
  5302. default: true
  5303. },
  5304. {
  5305. name: "Macro",
  5306. height: math.unit(10, "stories")
  5307. },
  5308. {
  5309. name: "Macro+",
  5310. height: math.unit(30, "stories")
  5311. },
  5312. {
  5313. name: "Megamacro",
  5314. height: math.unit(10, "miles")
  5315. },
  5316. {
  5317. name: "Megamacro+",
  5318. height: math.unit(2750000, "meters")
  5319. },
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5324. {
  5325. front: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(160, "lbs"),
  5328. name: "Front",
  5329. image: {
  5330. source: "./media/characters/prince/front.svg",
  5331. extra: 3400 / 3000
  5332. }
  5333. },
  5334. jumping: {
  5335. height: math.unit(6, "feet"),
  5336. weight: math.unit(160, "lbs"),
  5337. name: "Jumping",
  5338. image: {
  5339. source: "./media/characters/prince/jump.svg",
  5340. extra: 2555 / 2134
  5341. }
  5342. },
  5343. },
  5344. [
  5345. {
  5346. name: "Normal",
  5347. height: math.unit(7.75, "feet"),
  5348. default: true
  5349. },
  5350. {
  5351. name: "Not cute",
  5352. height: math.unit(17, "feet")
  5353. },
  5354. {
  5355. name: "I said NOT",
  5356. height: math.unit(91, "feet")
  5357. },
  5358. {
  5359. name: "Please stop",
  5360. height: math.unit(560, "feet")
  5361. },
  5362. {
  5363. name: "What have you done",
  5364. height: math.unit(2200, "feet")
  5365. },
  5366. {
  5367. name: "Deer God",
  5368. height: math.unit(3.6, "miles")
  5369. },
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5374. {
  5375. standing: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(300, "lbs"),
  5378. name: "Standing",
  5379. image: {
  5380. source: "./media/characters/psymon/standing.svg",
  5381. extra: 1888 / 1810,
  5382. bottom: 0.05
  5383. }
  5384. },
  5385. slithering: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(300, "lbs"),
  5388. name: "Slithering",
  5389. image: {
  5390. source: "./media/characters/psymon/slithering.svg",
  5391. extra: 1330 / 1224
  5392. }
  5393. },
  5394. slitheringAlt: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(300, "lbs"),
  5397. name: "Slithering (Alt)",
  5398. image: {
  5399. source: "./media/characters/psymon/slithering-alt.svg",
  5400. extra: 1330 / 1224
  5401. }
  5402. },
  5403. },
  5404. [
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(11.25, "feet"),
  5408. default: true
  5409. },
  5410. {
  5411. name: "Large",
  5412. height: math.unit(27, "feet")
  5413. },
  5414. {
  5415. name: "Giant",
  5416. height: math.unit(87, "feet")
  5417. },
  5418. {
  5419. name: "Macro",
  5420. height: math.unit(365, "feet")
  5421. },
  5422. {
  5423. name: "Megamacro",
  5424. height: math.unit(3, "miles")
  5425. },
  5426. {
  5427. name: "World Serpent",
  5428. height: math.unit(8000, "miles")
  5429. },
  5430. ]
  5431. ))
  5432. characterMakers.push(() => makeCharacter(
  5433. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5434. {
  5435. front: {
  5436. height: math.unit(6, "feet"),
  5437. weight: math.unit(180, "lbs"),
  5438. name: "Front",
  5439. image: {
  5440. source: "./media/characters/daimos/front.svg",
  5441. extra: 4160 / 3897,
  5442. bottom: 0.021
  5443. }
  5444. }
  5445. },
  5446. [
  5447. {
  5448. name: "Normal",
  5449. height: math.unit(8, "feet"),
  5450. default: true
  5451. },
  5452. {
  5453. name: "Big Dog",
  5454. height: math.unit(22, "feet")
  5455. },
  5456. {
  5457. name: "Macro",
  5458. height: math.unit(127, "feet")
  5459. },
  5460. {
  5461. name: "Megamacro",
  5462. height: math.unit(3600, "feet")
  5463. },
  5464. ]
  5465. ))
  5466. characterMakers.push(() => makeCharacter(
  5467. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5468. {
  5469. side: {
  5470. height: math.unit(6, "feet"),
  5471. weight: math.unit(180, "lbs"),
  5472. name: "Side",
  5473. image: {
  5474. source: "./media/characters/blake/side.svg",
  5475. extra: 1212 / 1120,
  5476. bottom: 0.05
  5477. }
  5478. },
  5479. crouched: {
  5480. height: math.unit(6 * 0.57, "feet"),
  5481. weight: math.unit(180, "lbs"),
  5482. name: "Crouched",
  5483. image: {
  5484. source: "./media/characters/blake/crouched.svg",
  5485. extra: 840 / 587,
  5486. bottom: 0.04
  5487. }
  5488. },
  5489. bent: {
  5490. height: math.unit(6 * 0.75, "feet"),
  5491. weight: math.unit(180, "lbs"),
  5492. name: "Bent",
  5493. image: {
  5494. source: "./media/characters/blake/bent.svg",
  5495. extra: 592 / 544,
  5496. bottom: 0.035
  5497. }
  5498. },
  5499. },
  5500. [
  5501. {
  5502. name: "Normal",
  5503. height: math.unit(8 + 1 / 6, "feet"),
  5504. default: true
  5505. },
  5506. {
  5507. name: "Big Backside",
  5508. height: math.unit(37, "feet")
  5509. },
  5510. {
  5511. name: "Subway Shredder",
  5512. height: math.unit(72, "feet")
  5513. },
  5514. {
  5515. name: "City Carver",
  5516. height: math.unit(1675, "feet")
  5517. },
  5518. {
  5519. name: "Tectonic Tweaker",
  5520. height: math.unit(2300, "miles")
  5521. },
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5526. {
  5527. front: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(180, "lbs"),
  5530. name: "Front",
  5531. image: {
  5532. source: "./media/characters/guisetto/front.svg",
  5533. extra: 856 / 817,
  5534. bottom: 0.06
  5535. }
  5536. },
  5537. airborne: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(180, "lbs"),
  5540. name: "Airborne",
  5541. image: {
  5542. source: "./media/characters/guisetto/airborne.svg",
  5543. extra: 584 / 525
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(10 + 11 / 12, "feet"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Large",
  5555. height: math.unit(35, "feet")
  5556. },
  5557. {
  5558. name: "Macro",
  5559. height: math.unit(475, "feet")
  5560. },
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5565. {
  5566. front: {
  5567. height: math.unit(6, "feet"),
  5568. weight: math.unit(180, "lbs"),
  5569. name: "Front",
  5570. image: {
  5571. source: "./media/characters/luxor/front.svg",
  5572. extra: 2940 / 2152
  5573. }
  5574. },
  5575. back: {
  5576. height: math.unit(6, "feet"),
  5577. weight: math.unit(180, "lbs"),
  5578. name: "Back",
  5579. image: {
  5580. source: "./media/characters/luxor/back.svg",
  5581. extra: 1083 / 960
  5582. }
  5583. },
  5584. },
  5585. [
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(5 + 5 / 6, "feet"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Lamp",
  5593. height: math.unit(50, "feet")
  5594. },
  5595. {
  5596. name: "Lämp",
  5597. height: math.unit(300, "feet")
  5598. },
  5599. {
  5600. name: "The sun is a lamp",
  5601. height: math.unit(250000, "miles")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5607. {
  5608. front: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(50, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/huoyan/front.svg"
  5614. }
  5615. },
  5616. side: {
  5617. height: math.unit(6, "feet"),
  5618. weight: math.unit(180, "lbs"),
  5619. name: "Side",
  5620. image: {
  5621. source: "./media/characters/huoyan/side.svg"
  5622. }
  5623. },
  5624. },
  5625. [
  5626. {
  5627. name: "Chef",
  5628. height: math.unit(9, "feet")
  5629. },
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(65, "feet"),
  5633. default: true
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(780, "feet")
  5638. },
  5639. {
  5640. name: "Flaming Mountain",
  5641. height: math.unit(4.8, "miles")
  5642. },
  5643. {
  5644. name: "Celestial",
  5645. height: math.unit(765000, "miles")
  5646. },
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5651. {
  5652. front: {
  5653. height: math.unit(5 + 3 / 4, "feet"),
  5654. weight: math.unit(120, "lbs"),
  5655. name: "Front",
  5656. image: {
  5657. source: "./media/characters/tails/front.svg"
  5658. }
  5659. }
  5660. },
  5661. [
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(5 + 3 / 4, "feet"),
  5665. default: true
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(4, "feet"),
  5674. weight: math.unit(50, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/rainy/front.svg"
  5678. }
  5679. }
  5680. },
  5681. [
  5682. {
  5683. name: "Macro",
  5684. height: math.unit(800, "feet"),
  5685. default: true
  5686. }
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5691. {
  5692. front: {
  5693. height: math.unit(6, "feet"),
  5694. weight: math.unit(150, "lbs"),
  5695. name: "Front",
  5696. image: {
  5697. source: "./media/characters/rainier/front.svg"
  5698. }
  5699. }
  5700. },
  5701. [
  5702. {
  5703. name: "Micro",
  5704. height: math.unit(2, "mm"),
  5705. default: true
  5706. }
  5707. ]
  5708. ))
  5709. characterMakers.push(() => makeCharacter(
  5710. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5711. {
  5712. front: {
  5713. height: math.unit(8 + 4/12, "feet"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/andy-renard/front.svg",
  5717. extra: 1839/1726,
  5718. bottom: 134/1973
  5719. }
  5720. },
  5721. back: {
  5722. height: math.unit(8 + 4/12, "feet"),
  5723. name: "Back",
  5724. image: {
  5725. source: "./media/characters/andy-renard/back.svg",
  5726. extra: 1838/1710,
  5727. bottom: 105/1943
  5728. }
  5729. },
  5730. },
  5731. [
  5732. {
  5733. name: "Tall",
  5734. height: math.unit(8 + 4/12, "feet")
  5735. },
  5736. {
  5737. name: "Mini Macro",
  5738. height: math.unit(15, "feet"),
  5739. default: true
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(100, "feet")
  5744. },
  5745. {
  5746. name: "Mega Macro",
  5747. height: math.unit(1000, "feet")
  5748. },
  5749. {
  5750. name: "Giga Macro",
  5751. height: math.unit(10, "miles")
  5752. },
  5753. {
  5754. name: "God Macro",
  5755. height: math.unit(1, "multiverse")
  5756. },
  5757. ]
  5758. ))
  5759. characterMakers.push(() => makeCharacter(
  5760. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5761. {
  5762. front: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(210, "lbs"),
  5765. name: "Front",
  5766. image: {
  5767. source: "./media/characters/cimmaron/front-sfw.svg",
  5768. extra: 701 / 676,
  5769. bottom: 0.046
  5770. }
  5771. },
  5772. back: {
  5773. height: math.unit(6, "feet"),
  5774. weight: math.unit(210, "lbs"),
  5775. name: "Back",
  5776. image: {
  5777. source: "./media/characters/cimmaron/back-sfw.svg",
  5778. extra: 701 / 676,
  5779. bottom: 0.046
  5780. }
  5781. },
  5782. frontNsfw: {
  5783. height: math.unit(6, "feet"),
  5784. weight: math.unit(210, "lbs"),
  5785. name: "Front (NSFW)",
  5786. image: {
  5787. source: "./media/characters/cimmaron/front-nsfw.svg",
  5788. extra: 701 / 676,
  5789. bottom: 0.046
  5790. }
  5791. },
  5792. backNsfw: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(210, "lbs"),
  5795. name: "Back (NSFW)",
  5796. image: {
  5797. source: "./media/characters/cimmaron/back-nsfw.svg",
  5798. extra: 701 / 676,
  5799. bottom: 0.046
  5800. }
  5801. },
  5802. dick: {
  5803. height: math.unit(1.714, "feet"),
  5804. name: "Dick",
  5805. image: {
  5806. source: "./media/characters/cimmaron/dick.svg"
  5807. }
  5808. },
  5809. },
  5810. [
  5811. {
  5812. name: "Normal",
  5813. height: math.unit(6, "feet"),
  5814. default: true
  5815. },
  5816. {
  5817. name: "Macro Mayor",
  5818. height: math.unit(350, "meters")
  5819. },
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(200, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/akari/front.svg",
  5831. extra: 962 / 901,
  5832. bottom: 0.04
  5833. }
  5834. }
  5835. },
  5836. [
  5837. {
  5838. name: "Micro",
  5839. height: math.unit(5, "inches"),
  5840. default: true
  5841. },
  5842. {
  5843. name: "Normal",
  5844. height: math.unit(7, "feet")
  5845. },
  5846. ]
  5847. ))
  5848. characterMakers.push(() => makeCharacter(
  5849. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5850. {
  5851. front: {
  5852. height: math.unit(6, "feet"),
  5853. weight: math.unit(140, "lbs"),
  5854. name: "Front",
  5855. image: {
  5856. source: "./media/characters/cynosura/front.svg",
  5857. extra: 896 / 847
  5858. }
  5859. },
  5860. back: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(140, "lbs"),
  5863. name: "Back",
  5864. image: {
  5865. source: "./media/characters/cynosura/back.svg",
  5866. extra: 1365 / 1250
  5867. }
  5868. },
  5869. },
  5870. [
  5871. {
  5872. name: "Micro",
  5873. height: math.unit(4, "inches")
  5874. },
  5875. {
  5876. name: "Normal",
  5877. height: math.unit(5.75, "feet"),
  5878. default: true
  5879. },
  5880. {
  5881. name: "Tall",
  5882. height: math.unit(10, "feet")
  5883. },
  5884. {
  5885. name: "Big",
  5886. height: math.unit(20, "feet")
  5887. },
  5888. {
  5889. name: "Macro",
  5890. height: math.unit(50, "feet")
  5891. },
  5892. ]
  5893. ))
  5894. characterMakers.push(() => makeCharacter(
  5895. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5896. {
  5897. front: {
  5898. height: math.unit(13 + 2/12, "feet"),
  5899. weight: math.unit(800, "kg"),
  5900. name: "Front",
  5901. image: {
  5902. source: "./media/characters/gin/front.svg",
  5903. extra: 1312/1191,
  5904. bottom: 45/1357
  5905. }
  5906. },
  5907. mouth: {
  5908. height: math.unit(2.39 * 1.8, "feet"),
  5909. name: "Mouth",
  5910. image: {
  5911. source: "./media/characters/gin/mouth.svg"
  5912. }
  5913. },
  5914. hand: {
  5915. height: math.unit(1.57 * 2.19, "feet"),
  5916. name: "Hand",
  5917. image: {
  5918. source: "./media/characters/gin/hand.svg"
  5919. }
  5920. },
  5921. foot: {
  5922. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5923. name: "Foot",
  5924. image: {
  5925. source: "./media/characters/gin/foot.svg"
  5926. }
  5927. },
  5928. sole: {
  5929. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5930. name: "Sole",
  5931. image: {
  5932. source: "./media/characters/gin/sole.svg"
  5933. }
  5934. },
  5935. },
  5936. [
  5937. {
  5938. name: "Very Small",
  5939. height: math.unit(13 + 2 / 12, "feet")
  5940. },
  5941. {
  5942. name: "Micro",
  5943. height: math.unit(600, "miles")
  5944. },
  5945. {
  5946. name: "Regular",
  5947. height: math.unit(20, "earths"),
  5948. default: true
  5949. },
  5950. {
  5951. name: "Macro",
  5952. height: math.unit(2.2, "solarradii")
  5953. },
  5954. {
  5955. name: "Teramacro",
  5956. height: math.unit(1.2, "galaxies")
  5957. },
  5958. {
  5959. name: "Omegamacro",
  5960. height: math.unit(200, "universes")
  5961. },
  5962. ]
  5963. ))
  5964. characterMakers.push(() => makeCharacter(
  5965. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5966. {
  5967. front: {
  5968. height: math.unit(6 + 1 / 6, "feet"),
  5969. weight: math.unit(178, "lbs"),
  5970. name: "Front",
  5971. image: {
  5972. source: "./media/characters/guy/front.svg"
  5973. }
  5974. }
  5975. },
  5976. [
  5977. {
  5978. name: "Normal",
  5979. height: math.unit(6 + 1 / 6, "feet"),
  5980. default: true
  5981. },
  5982. {
  5983. name: "Large",
  5984. height: math.unit(25 + 7 / 12, "feet")
  5985. },
  5986. {
  5987. name: "Macro",
  5988. height: math.unit(60 + 9 / 12, "feet")
  5989. },
  5990. {
  5991. name: "Macro+",
  5992. height: math.unit(246, "feet")
  5993. },
  5994. {
  5995. name: "Macro++",
  5996. height: math.unit(878, "feet")
  5997. }
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6002. {
  6003. front: {
  6004. height: math.unit(9, "feet"),
  6005. weight: math.unit(800, "lbs"),
  6006. name: "Front",
  6007. image: {
  6008. source: "./media/characters/tiberius/front.svg",
  6009. extra: 2295 / 2071
  6010. }
  6011. },
  6012. back: {
  6013. height: math.unit(9, "feet"),
  6014. weight: math.unit(800, "lbs"),
  6015. name: "Back",
  6016. image: {
  6017. source: "./media/characters/tiberius/back.svg",
  6018. extra: 2373 / 2160
  6019. }
  6020. },
  6021. },
  6022. [
  6023. {
  6024. name: "Normal",
  6025. height: math.unit(9, "feet"),
  6026. default: true
  6027. }
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6032. {
  6033. front: {
  6034. height: math.unit(6, "feet"),
  6035. weight: math.unit(600, "lbs"),
  6036. name: "Front",
  6037. image: {
  6038. source: "./media/characters/surgo/front.svg",
  6039. extra: 3591 / 2227
  6040. }
  6041. },
  6042. back: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(600, "lbs"),
  6045. name: "Back",
  6046. image: {
  6047. source: "./media/characters/surgo/back.svg",
  6048. extra: 3557 / 2228
  6049. }
  6050. },
  6051. laying: {
  6052. height: math.unit(6 * 0.85, "feet"),
  6053. weight: math.unit(600, "lbs"),
  6054. name: "Laying",
  6055. image: {
  6056. source: "./media/characters/surgo/laying.svg"
  6057. }
  6058. },
  6059. },
  6060. [
  6061. {
  6062. name: "Normal",
  6063. height: math.unit(6, "feet"),
  6064. default: true
  6065. }
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6070. {
  6071. side: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(150, "lbs"),
  6074. name: "Side",
  6075. image: {
  6076. source: "./media/characters/cibus/side.svg",
  6077. extra: 800 / 400
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Normal",
  6084. height: math.unit(6, "feet"),
  6085. default: true
  6086. }
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6091. {
  6092. front: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(240, "lbs"),
  6095. name: "Front",
  6096. image: {
  6097. source: "./media/characters/nibbles/front.svg"
  6098. }
  6099. },
  6100. side: {
  6101. height: math.unit(6, "feet"),
  6102. weight: math.unit(240, "lbs"),
  6103. name: "Side",
  6104. image: {
  6105. source: "./media/characters/nibbles/side.svg"
  6106. }
  6107. },
  6108. },
  6109. [
  6110. {
  6111. name: "Normal",
  6112. height: math.unit(9, "feet"),
  6113. default: true
  6114. }
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6119. {
  6120. side: {
  6121. height: math.unit(5 + 1 / 6, "feet"),
  6122. weight: math.unit(130, "lbs"),
  6123. name: "Side",
  6124. image: {
  6125. source: "./media/characters/rikky/side.svg",
  6126. extra: 851 / 801
  6127. }
  6128. },
  6129. },
  6130. [
  6131. {
  6132. name: "Normal",
  6133. height: math.unit(5 + 1 / 6, "feet")
  6134. },
  6135. {
  6136. name: "Macro",
  6137. height: math.unit(152, "feet"),
  6138. default: true
  6139. },
  6140. {
  6141. name: "Megamacro",
  6142. height: math.unit(7, "miles")
  6143. }
  6144. ]
  6145. ))
  6146. characterMakers.push(() => makeCharacter(
  6147. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6148. {
  6149. side: {
  6150. height: math.unit(370, "cm"),
  6151. weight: math.unit(350, "lbs"),
  6152. name: "Side",
  6153. image: {
  6154. source: "./media/characters/malfressa/side.svg"
  6155. }
  6156. },
  6157. walking: {
  6158. height: math.unit(370, "cm"),
  6159. weight: math.unit(350, "lbs"),
  6160. name: "Walking",
  6161. image: {
  6162. source: "./media/characters/malfressa/walking.svg"
  6163. }
  6164. },
  6165. feral: {
  6166. height: math.unit(2500, "cm"),
  6167. weight: math.unit(100000, "lbs"),
  6168. name: "Feral",
  6169. image: {
  6170. source: "./media/characters/malfressa/feral.svg",
  6171. extra: 2108 / 837,
  6172. bottom: 0.02
  6173. }
  6174. },
  6175. },
  6176. [
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(370, "cm")
  6180. },
  6181. {
  6182. name: "Macro",
  6183. height: math.unit(300, "meters"),
  6184. default: true
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(60, "kg"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/jaro/front.svg"
  6197. }
  6198. },
  6199. back: {
  6200. height: math.unit(6, "feet"),
  6201. weight: math.unit(60, "kg"),
  6202. name: "Back",
  6203. image: {
  6204. source: "./media/characters/jaro/back.svg"
  6205. }
  6206. },
  6207. },
  6208. [
  6209. {
  6210. name: "Micro",
  6211. height: math.unit(7, "inches")
  6212. },
  6213. {
  6214. name: "Normal",
  6215. height: math.unit(5.5, "feet"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Minimacro",
  6220. height: math.unit(20, "feet")
  6221. },
  6222. {
  6223. name: "Macro",
  6224. height: math.unit(200, "meters")
  6225. }
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(195, "lb"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/rogue/front.svg"
  6237. }
  6238. },
  6239. },
  6240. [
  6241. {
  6242. name: "Macro",
  6243. height: math.unit(90, "feet"),
  6244. default: true
  6245. },
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(5 + 8 / 12, "feet"),
  6253. weight: math.unit(140, "lb"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/piper/front.svg",
  6257. extra: 3948/3655,
  6258. bottom: 0/3948
  6259. }
  6260. },
  6261. },
  6262. [
  6263. {
  6264. name: "Micro",
  6265. height: math.unit(2, "inches")
  6266. },
  6267. {
  6268. name: "Normal",
  6269. height: math.unit(5 + 8 / 12, "feet")
  6270. },
  6271. {
  6272. name: "Macro",
  6273. height: math.unit(250, "feet"),
  6274. default: true
  6275. },
  6276. {
  6277. name: "Megamacro",
  6278. height: math.unit(7, "miles")
  6279. },
  6280. ]
  6281. ))
  6282. characterMakers.push(() => makeCharacter(
  6283. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6284. {
  6285. front: {
  6286. height: math.unit(6, "feet"),
  6287. weight: math.unit(220, "lb"),
  6288. name: "Front",
  6289. image: {
  6290. source: "./media/characters/gemini/front.svg"
  6291. }
  6292. },
  6293. back: {
  6294. height: math.unit(6, "feet"),
  6295. weight: math.unit(220, "lb"),
  6296. name: "Back",
  6297. image: {
  6298. source: "./media/characters/gemini/back.svg"
  6299. }
  6300. },
  6301. kneeling: {
  6302. height: math.unit(6 / 1.5, "feet"),
  6303. weight: math.unit(220, "lb"),
  6304. name: "Kneeling",
  6305. image: {
  6306. source: "./media/characters/gemini/kneeling.svg",
  6307. bottom: 0.02
  6308. }
  6309. },
  6310. },
  6311. [
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(300, "meters"),
  6315. default: true
  6316. },
  6317. {
  6318. name: "Megamacro",
  6319. height: math.unit(6900, "meters")
  6320. },
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6325. {
  6326. anthro: {
  6327. height: math.unit(2.35, "meters"),
  6328. weight: math.unit(73, "kg"),
  6329. name: "Anthro",
  6330. image: {
  6331. source: "./media/characters/alicia/anthro.svg",
  6332. extra: 2571 / 2385,
  6333. bottom: 75 / 2648
  6334. }
  6335. },
  6336. paw: {
  6337. height: math.unit(1.32, "feet"),
  6338. name: "Paw",
  6339. image: {
  6340. source: "./media/characters/alicia/paw.svg"
  6341. }
  6342. },
  6343. feral: {
  6344. height: math.unit(1.69, "meters"),
  6345. weight: math.unit(73, "kg"),
  6346. name: "Feral",
  6347. image: {
  6348. source: "./media/characters/alicia/feral.svg",
  6349. extra: 2123 / 1715,
  6350. bottom: 222 / 2349
  6351. }
  6352. },
  6353. },
  6354. [
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(2.35, "meters")
  6358. },
  6359. {
  6360. name: "Macro",
  6361. height: math.unit(60, "meters"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "Megamacro",
  6366. height: math.unit(10000, "kilometers")
  6367. },
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6372. {
  6373. front: {
  6374. height: math.unit(7, "feet"),
  6375. weight: math.unit(250, "lbs"),
  6376. name: "Front",
  6377. image: {
  6378. source: "./media/characters/archy/front.svg"
  6379. }
  6380. }
  6381. },
  6382. [
  6383. {
  6384. name: "Micro",
  6385. height: math.unit(1, "inch")
  6386. },
  6387. {
  6388. name: "Shorty",
  6389. height: math.unit(5, "feet")
  6390. },
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(7, "feet")
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(600, "meters"),
  6398. default: true
  6399. },
  6400. {
  6401. name: "Megamacro",
  6402. height: math.unit(1, "mile")
  6403. },
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6408. {
  6409. front: {
  6410. height: math.unit(1.65, "meters"),
  6411. weight: math.unit(74, "kg"),
  6412. name: "Front",
  6413. image: {
  6414. source: "./media/characters/berri/front.svg",
  6415. extra: 857 / 837,
  6416. bottom: 18 / 877
  6417. }
  6418. },
  6419. bum: {
  6420. height: math.unit(1.46, "feet"),
  6421. name: "Bum",
  6422. image: {
  6423. source: "./media/characters/berri/bum.svg"
  6424. }
  6425. },
  6426. mouth: {
  6427. height: math.unit(0.44, "feet"),
  6428. name: "Mouth",
  6429. image: {
  6430. source: "./media/characters/berri/mouth.svg"
  6431. }
  6432. },
  6433. paw: {
  6434. height: math.unit(0.826, "feet"),
  6435. name: "Paw",
  6436. image: {
  6437. source: "./media/characters/berri/paw.svg"
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(1.65, "meters")
  6445. },
  6446. {
  6447. name: "Macro",
  6448. height: math.unit(60, "m"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Megamacro",
  6453. height: math.unit(9.213, "km")
  6454. },
  6455. {
  6456. name: "Planet Eater",
  6457. height: math.unit(489, "megameters")
  6458. },
  6459. {
  6460. name: "Teramacro",
  6461. height: math.unit(2471635000000, "meters")
  6462. },
  6463. {
  6464. name: "Examacro",
  6465. height: math.unit(8.0624e+26, "meters")
  6466. }
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6471. {
  6472. front: {
  6473. height: math.unit(1.72, "meters"),
  6474. weight: math.unit(68, "kg"),
  6475. name: "Front",
  6476. image: {
  6477. source: "./media/characters/lexi/front.svg"
  6478. }
  6479. }
  6480. },
  6481. [
  6482. {
  6483. name: "Very Smol",
  6484. height: math.unit(10, "mm")
  6485. },
  6486. {
  6487. name: "Micro",
  6488. height: math.unit(6.8, "cm"),
  6489. default: true
  6490. },
  6491. {
  6492. name: "Normal",
  6493. height: math.unit(1.72, "m")
  6494. }
  6495. ]
  6496. ))
  6497. characterMakers.push(() => makeCharacter(
  6498. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6499. {
  6500. front: {
  6501. height: math.unit(1.69, "meters"),
  6502. weight: math.unit(68, "kg"),
  6503. name: "Front",
  6504. image: {
  6505. source: "./media/characters/martin/front.svg",
  6506. extra: 596 / 581
  6507. }
  6508. }
  6509. },
  6510. [
  6511. {
  6512. name: "Micro",
  6513. height: math.unit(6.85, "cm"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Normal",
  6518. height: math.unit(1.69, "m")
  6519. }
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6524. {
  6525. front: {
  6526. height: math.unit(1.69, "meters"),
  6527. weight: math.unit(68, "kg"),
  6528. name: "Front",
  6529. image: {
  6530. source: "./media/characters/juno/front.svg"
  6531. }
  6532. }
  6533. },
  6534. [
  6535. {
  6536. name: "Micro",
  6537. height: math.unit(7, "cm")
  6538. },
  6539. {
  6540. name: "Normal",
  6541. height: math.unit(1.89, "m")
  6542. },
  6543. {
  6544. name: "Macro",
  6545. height: math.unit(353, "meters"),
  6546. default: true
  6547. }
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6552. {
  6553. front: {
  6554. height: math.unit(1.93, "meters"),
  6555. weight: math.unit(83, "kg"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/samantha/front.svg"
  6559. }
  6560. },
  6561. frontClothed: {
  6562. height: math.unit(1.93, "meters"),
  6563. weight: math.unit(83, "kg"),
  6564. name: "Front (Clothed)",
  6565. image: {
  6566. source: "./media/characters/samantha/front-clothed.svg"
  6567. }
  6568. },
  6569. back: {
  6570. height: math.unit(1.93, "meters"),
  6571. weight: math.unit(83, "kg"),
  6572. name: "Back",
  6573. image: {
  6574. source: "./media/characters/samantha/back.svg"
  6575. }
  6576. },
  6577. },
  6578. [
  6579. {
  6580. name: "Normal",
  6581. height: math.unit(1.93, "m")
  6582. },
  6583. {
  6584. name: "Macro",
  6585. height: math.unit(74, "meters"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Macro+",
  6590. height: math.unit(223, "meters"),
  6591. },
  6592. {
  6593. name: "Megamacro",
  6594. height: math.unit(8381, "meters"),
  6595. },
  6596. {
  6597. name: "Megamacro+",
  6598. height: math.unit(12000, "kilometers")
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(1.92, "meters"),
  6607. weight: math.unit(80, "kg"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/dr-clay/front.svg"
  6611. }
  6612. },
  6613. frontClothed: {
  6614. height: math.unit(1.92, "meters"),
  6615. weight: math.unit(80, "kg"),
  6616. name: "Front (Clothed)",
  6617. image: {
  6618. source: "./media/characters/dr-clay/front-clothed.svg"
  6619. }
  6620. }
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(1.92, "m")
  6626. },
  6627. {
  6628. name: "Macro",
  6629. height: math.unit(214, "meters"),
  6630. default: true
  6631. },
  6632. {
  6633. name: "Macro+",
  6634. height: math.unit(12.237, "meters"),
  6635. },
  6636. {
  6637. name: "Megamacro",
  6638. height: math.unit(557, "megameters"),
  6639. },
  6640. {
  6641. name: "Unimaginable",
  6642. height: math.unit(120e9, "lightyears")
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(2, "meters"),
  6651. weight: math.unit(80, "kg"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6655. }
  6656. }
  6657. },
  6658. [
  6659. {
  6660. name: "Teramacro",
  6661. height: math.unit(500000, "lightyears"),
  6662. default: true
  6663. },
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6668. {
  6669. crux: {
  6670. height: math.unit(2, "meters"),
  6671. weight: math.unit(150, "kg"),
  6672. name: "Crux",
  6673. image: {
  6674. source: "./media/characters/vemus/crux.svg",
  6675. extra: 1074/936,
  6676. bottom: 23/1097
  6677. }
  6678. },
  6679. skunkTanuki: {
  6680. height: math.unit(2, "meters"),
  6681. weight: math.unit(150, "kg"),
  6682. name: "Skunk-Tanuki",
  6683. image: {
  6684. source: "./media/characters/vemus/skunk-tanuki.svg",
  6685. extra: 926/893,
  6686. bottom: 20/946
  6687. }
  6688. },
  6689. },
  6690. [
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(3.75, "meters"),
  6694. default: true
  6695. },
  6696. {
  6697. name: "Big",
  6698. height: math.unit(8, "meters")
  6699. },
  6700. {
  6701. name: "Macro",
  6702. height: math.unit(100, "meters")
  6703. },
  6704. {
  6705. name: "Macro+",
  6706. height: math.unit(1500, "meters")
  6707. },
  6708. {
  6709. name: "Stellar",
  6710. height: math.unit(14e8, "meters")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(2, "meters"),
  6719. weight: math.unit(70, "kg"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/beherit/front.svg",
  6723. extra: 1408 / 1242
  6724. }
  6725. }
  6726. },
  6727. [
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(6, "feet")
  6731. },
  6732. {
  6733. name: "Lorg",
  6734. height: math.unit(25, "feet"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Lorger",
  6739. height: math.unit(75, "feet")
  6740. },
  6741. {
  6742. name: "Macro",
  6743. height: math.unit(200, "meters")
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(2, "meters"),
  6752. weight: math.unit(150, "kg"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/everett/front.svg",
  6756. extra: 2038 / 1737,
  6757. bottom: 0.03
  6758. }
  6759. },
  6760. paw: {
  6761. height: math.unit(2 / 3.6, "meters"),
  6762. name: "Paw",
  6763. image: {
  6764. source: "./media/characters/everett/paw.svg"
  6765. }
  6766. },
  6767. },
  6768. [
  6769. {
  6770. name: "Normal",
  6771. height: math.unit(15, "feet"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Lorg",
  6776. height: math.unit(70, "feet"),
  6777. default: true
  6778. },
  6779. {
  6780. name: "Lorger",
  6781. height: math.unit(250, "feet")
  6782. },
  6783. {
  6784. name: "Macro",
  6785. height: math.unit(500, "meters")
  6786. },
  6787. ]
  6788. ))
  6789. characterMakers.push(() => makeCharacter(
  6790. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6791. {
  6792. front: {
  6793. height: math.unit(2, "meters"),
  6794. weight: math.unit(86, "kg"),
  6795. name: "Front",
  6796. image: {
  6797. source: "./media/characters/rose/front.svg",
  6798. extra: 1785/1636,
  6799. bottom: 30/1815
  6800. }
  6801. },
  6802. frontSporty: {
  6803. height: math.unit(2, "meters"),
  6804. weight: math.unit(86, "kg"),
  6805. name: "Front (Sporty)",
  6806. image: {
  6807. source: "./media/characters/rose/front-sporty.svg",
  6808. extra: 350/335,
  6809. bottom: 10/360
  6810. }
  6811. },
  6812. frontAlt: {
  6813. height: math.unit(1.6, "meters"),
  6814. weight: math.unit(86, "kg"),
  6815. name: "Front (Alt)",
  6816. image: {
  6817. source: "./media/characters/rose/front-alt.svg",
  6818. extra: 299/283,
  6819. bottom: 3/302
  6820. }
  6821. },
  6822. plush: {
  6823. height: math.unit(2, "meters"),
  6824. weight: math.unit(86/3, "kg"),
  6825. name: "Plush",
  6826. image: {
  6827. source: "./media/characters/rose/plush.svg",
  6828. extra: 361/337,
  6829. bottom: 11/372
  6830. }
  6831. },
  6832. },
  6833. [
  6834. {
  6835. name: "True Micro",
  6836. height: math.unit(9, "cm")
  6837. },
  6838. {
  6839. name: "Micro",
  6840. height: math.unit(16, "cm")
  6841. },
  6842. {
  6843. name: "Normal",
  6844. height: math.unit(1.85, "meters"),
  6845. default: true
  6846. },
  6847. {
  6848. name: "Mini-Macro",
  6849. height: math.unit(5, "meters")
  6850. },
  6851. {
  6852. name: "Macro",
  6853. height: math.unit(15, "meters")
  6854. },
  6855. {
  6856. name: "True Macro",
  6857. height: math.unit(40, "meters")
  6858. },
  6859. {
  6860. name: "City Scale",
  6861. height: math.unit(1, "km")
  6862. },
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6867. {
  6868. front: {
  6869. height: math.unit(2, "meters"),
  6870. weight: math.unit(350, "lbs"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/regal/front.svg"
  6874. }
  6875. },
  6876. back: {
  6877. height: math.unit(2, "meters"),
  6878. weight: math.unit(350, "lbs"),
  6879. name: "Back",
  6880. image: {
  6881. source: "./media/characters/regal/back.svg"
  6882. }
  6883. },
  6884. },
  6885. [
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(350, "feet"),
  6889. default: true
  6890. }
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6895. {
  6896. front: {
  6897. height: math.unit(4 + 11 / 12, "feet"),
  6898. weight: math.unit(100, "lbs"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/opal/front.svg"
  6902. }
  6903. },
  6904. frontAlt: {
  6905. height: math.unit(4 + 11 / 12, "feet"),
  6906. weight: math.unit(100, "lbs"),
  6907. name: "Front (Alt)",
  6908. image: {
  6909. source: "./media/characters/opal/front-alt.svg"
  6910. }
  6911. },
  6912. },
  6913. [
  6914. {
  6915. name: "Small",
  6916. height: math.unit(4 + 11 / 12, "feet")
  6917. },
  6918. {
  6919. name: "Normal",
  6920. height: math.unit(20, "feet"),
  6921. default: true
  6922. },
  6923. {
  6924. name: "Macro",
  6925. height: math.unit(120, "feet")
  6926. },
  6927. {
  6928. name: "Megamacro",
  6929. height: math.unit(80, "miles")
  6930. },
  6931. {
  6932. name: "True Size",
  6933. height: math.unit(100000, "lightyears")
  6934. },
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6939. {
  6940. front: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(200, "lbs"),
  6943. name: "Front",
  6944. image: {
  6945. source: "./media/characters/vector-wuff/front.svg"
  6946. }
  6947. }
  6948. },
  6949. [
  6950. {
  6951. name: "Normal",
  6952. height: math.unit(2.8, "meters")
  6953. },
  6954. {
  6955. name: "Macro",
  6956. height: math.unit(450, "meters"),
  6957. default: true
  6958. },
  6959. {
  6960. name: "Megamacro",
  6961. height: math.unit(15, "kilometers")
  6962. }
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6967. {
  6968. front: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(256, "lbs"),
  6971. name: "Front",
  6972. image: {
  6973. source: "./media/characters/dannik/front.svg"
  6974. }
  6975. }
  6976. },
  6977. [
  6978. {
  6979. name: "Macro",
  6980. height: math.unit(69.57, "meters"),
  6981. default: true
  6982. },
  6983. ]
  6984. ))
  6985. characterMakers.push(() => makeCharacter(
  6986. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6987. {
  6988. front: {
  6989. height: math.unit(6, "feet"),
  6990. weight: math.unit(120, "lbs"),
  6991. name: "Front",
  6992. image: {
  6993. source: "./media/characters/azura-saharah/front.svg"
  6994. }
  6995. },
  6996. back: {
  6997. height: math.unit(6, "feet"),
  6998. weight: math.unit(120, "lbs"),
  6999. name: "Back",
  7000. image: {
  7001. source: "./media/characters/azura-saharah/back.svg"
  7002. }
  7003. },
  7004. },
  7005. [
  7006. {
  7007. name: "Macro",
  7008. height: math.unit(100, "feet"),
  7009. default: true
  7010. },
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7015. {
  7016. side: {
  7017. height: math.unit(5 + 4 / 12, "feet"),
  7018. weight: math.unit(163, "lbs"),
  7019. name: "Side",
  7020. image: {
  7021. source: "./media/characters/kennedy/side.svg"
  7022. }
  7023. }
  7024. },
  7025. [
  7026. {
  7027. name: "Standard Doggo",
  7028. height: math.unit(5 + 4 / 12, "feet")
  7029. },
  7030. {
  7031. name: "Big Doggo",
  7032. height: math.unit(25 + 3 / 12, "feet"),
  7033. default: true
  7034. },
  7035. ]
  7036. ))
  7037. characterMakers.push(() => makeCharacter(
  7038. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7039. {
  7040. front: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(90, "lbs"),
  7043. name: "Front",
  7044. image: {
  7045. source: "./media/characters/odi-lunar/front.svg"
  7046. }
  7047. }
  7048. },
  7049. [
  7050. {
  7051. name: "Micro",
  7052. height: math.unit(3, "inches"),
  7053. default: true
  7054. },
  7055. {
  7056. name: "Normal",
  7057. height: math.unit(5.5, "feet")
  7058. }
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7063. {
  7064. back: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(220, "lbs"),
  7067. name: "Back",
  7068. image: {
  7069. source: "./media/characters/mandake/back.svg"
  7070. }
  7071. }
  7072. },
  7073. [
  7074. {
  7075. name: "Normal",
  7076. height: math.unit(7, "feet"),
  7077. default: true
  7078. },
  7079. {
  7080. name: "Macro",
  7081. height: math.unit(78, "feet")
  7082. },
  7083. {
  7084. name: "Macro+",
  7085. height: math.unit(300, "meters")
  7086. },
  7087. {
  7088. name: "Macro++",
  7089. height: math.unit(2400, "feet")
  7090. },
  7091. {
  7092. name: "Megamacro",
  7093. height: math.unit(5167, "meters")
  7094. },
  7095. {
  7096. name: "Gigamacro",
  7097. height: math.unit(41769, "miles")
  7098. },
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7103. {
  7104. front: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(120, "lbs"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/yozey/front.svg"
  7110. }
  7111. },
  7112. frontAlt: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(120, "lbs"),
  7115. name: "Front (Alt)",
  7116. image: {
  7117. source: "./media/characters/yozey/front-alt.svg"
  7118. }
  7119. },
  7120. side: {
  7121. height: math.unit(6, "feet"),
  7122. weight: math.unit(120, "lbs"),
  7123. name: "Side",
  7124. image: {
  7125. source: "./media/characters/yozey/side.svg"
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Micro",
  7132. height: math.unit(3, "inches"),
  7133. default: true
  7134. },
  7135. {
  7136. name: "Normal",
  7137. height: math.unit(6, "feet")
  7138. }
  7139. ]
  7140. ))
  7141. characterMakers.push(() => makeCharacter(
  7142. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7143. {
  7144. front: {
  7145. height: math.unit(6, "feet"),
  7146. weight: math.unit(103, "lbs"),
  7147. name: "Front",
  7148. image: {
  7149. source: "./media/characters/valeska-voss/front.svg"
  7150. }
  7151. }
  7152. },
  7153. [
  7154. {
  7155. name: "Mini-Sized Sub",
  7156. height: math.unit(3.1, "inches")
  7157. },
  7158. {
  7159. name: "Mid-Sized Sub",
  7160. height: math.unit(6.2, "inches")
  7161. },
  7162. {
  7163. name: "Full-Sized Sub",
  7164. height: math.unit(9.3, "inches")
  7165. },
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(5 + 2 / 12, "foot"),
  7169. default: true
  7170. },
  7171. ]
  7172. ))
  7173. characterMakers.push(() => makeCharacter(
  7174. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7175. {
  7176. front: {
  7177. height: math.unit(6, "feet"),
  7178. weight: math.unit(160, "lbs"),
  7179. name: "Front",
  7180. image: {
  7181. source: "./media/characters/gene-zeta/front.svg",
  7182. extra: 3006 / 2826,
  7183. bottom: 182 / 3188
  7184. }
  7185. }
  7186. },
  7187. [
  7188. {
  7189. name: "Micro",
  7190. height: math.unit(6, "inches")
  7191. },
  7192. {
  7193. name: "Normal",
  7194. height: math.unit(5 + 11 / 12, "foot"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Macro",
  7199. height: math.unit(140, "feet")
  7200. },
  7201. {
  7202. name: "Supercharged",
  7203. height: math.unit(2500, "feet")
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(350, "lbs"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/razinox/front.svg",
  7216. extra: 1686 / 1548,
  7217. bottom: 28.2 / 1868
  7218. }
  7219. },
  7220. back: {
  7221. height: math.unit(6, "feet"),
  7222. weight: math.unit(350, "lbs"),
  7223. name: "Back",
  7224. image: {
  7225. source: "./media/characters/razinox/back.svg",
  7226. extra: 1660 / 1590,
  7227. bottom: 15 / 1665
  7228. }
  7229. },
  7230. },
  7231. [
  7232. {
  7233. name: "Normal",
  7234. height: math.unit(10 + 8 / 12, "foot")
  7235. },
  7236. {
  7237. name: "Minimacro",
  7238. height: math.unit(15, "foot")
  7239. },
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(60, "foot"),
  7243. default: true
  7244. },
  7245. {
  7246. name: "Megamacro",
  7247. height: math.unit(5, "miles")
  7248. },
  7249. {
  7250. name: "Gigamacro",
  7251. height: math.unit(6000, "miles")
  7252. },
  7253. ]
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(6, "feet"),
  7260. weight: math.unit(150, "lbs"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/cobalt/front.svg"
  7264. }
  7265. }
  7266. },
  7267. [
  7268. {
  7269. name: "Normal",
  7270. height: math.unit(8 + 1 / 12, "foot")
  7271. },
  7272. {
  7273. name: "Macro",
  7274. height: math.unit(111, "foot"),
  7275. default: true
  7276. },
  7277. {
  7278. name: "Supracosmic",
  7279. height: math.unit(1e42, "feet")
  7280. },
  7281. ]
  7282. ))
  7283. characterMakers.push(() => makeCharacter(
  7284. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7285. {
  7286. front: {
  7287. height: math.unit(6, "feet"),
  7288. weight: math.unit(140, "lbs"),
  7289. name: "Front",
  7290. image: {
  7291. source: "./media/characters/amanda/front.svg"
  7292. }
  7293. }
  7294. },
  7295. [
  7296. {
  7297. name: "Micro",
  7298. height: math.unit(5, "inches"),
  7299. default: true
  7300. },
  7301. ]
  7302. ))
  7303. characterMakers.push(() => makeCharacter(
  7304. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7305. {
  7306. front: {
  7307. height: math.unit(2.75, "meters"),
  7308. weight: math.unit(1200, "lb"),
  7309. name: "Front",
  7310. image: {
  7311. source: "./media/characters/teal/front.svg",
  7312. extra: 2463 / 2320,
  7313. bottom: 166 / 2629
  7314. }
  7315. },
  7316. back: {
  7317. height: math.unit(2.75, "meters"),
  7318. weight: math.unit(1200, "lb"),
  7319. name: "Back",
  7320. image: {
  7321. source: "./media/characters/teal/back.svg",
  7322. extra: 2580 / 2489,
  7323. bottom: 151 / 2731
  7324. }
  7325. },
  7326. sitting: {
  7327. height: math.unit(1.9, "meters"),
  7328. weight: math.unit(1200, "lb"),
  7329. name: "Sitting",
  7330. image: {
  7331. source: "./media/characters/teal/sitting.svg",
  7332. extra: 623 / 590,
  7333. bottom: 121 / 744
  7334. }
  7335. },
  7336. standing: {
  7337. height: math.unit(2.75, "meters"),
  7338. weight: math.unit(1200, "lb"),
  7339. name: "Standing",
  7340. image: {
  7341. source: "./media/characters/teal/standing.svg",
  7342. extra: 923 / 893,
  7343. bottom: 60 / 983
  7344. }
  7345. },
  7346. stretching: {
  7347. height: math.unit(3.65, "meters"),
  7348. weight: math.unit(1200, "lb"),
  7349. name: "Stretching",
  7350. image: {
  7351. source: "./media/characters/teal/stretching.svg",
  7352. extra: 1276 / 1244,
  7353. bottom: 0 / 1276
  7354. }
  7355. },
  7356. legged: {
  7357. height: math.unit(1.3, "meters"),
  7358. weight: math.unit(100, "lb"),
  7359. name: "Legged",
  7360. image: {
  7361. source: "./media/characters/teal/legged.svg",
  7362. extra: 462 / 437,
  7363. bottom: 24 / 486
  7364. }
  7365. },
  7366. naga: {
  7367. height: math.unit(5.4, "meters"),
  7368. weight: math.unit(4000, "lb"),
  7369. name: "Naga",
  7370. image: {
  7371. source: "./media/characters/teal/naga.svg",
  7372. extra: 1902 / 1858,
  7373. bottom: 0 / 1902
  7374. }
  7375. },
  7376. hand: {
  7377. height: math.unit(0.52, "meters"),
  7378. name: "Hand",
  7379. image: {
  7380. source: "./media/characters/teal/hand.svg"
  7381. }
  7382. },
  7383. maw: {
  7384. height: math.unit(0.43, "meters"),
  7385. name: "Maw",
  7386. image: {
  7387. source: "./media/characters/teal/maw.svg"
  7388. }
  7389. },
  7390. slit: {
  7391. height: math.unit(0.25, "meters"),
  7392. name: "Slit",
  7393. image: {
  7394. source: "./media/characters/teal/slit.svg"
  7395. }
  7396. },
  7397. },
  7398. [
  7399. {
  7400. name: "Normal",
  7401. height: math.unit(2.75, "meters"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Macro",
  7406. height: math.unit(300, "feet")
  7407. },
  7408. {
  7409. name: "Macro+",
  7410. height: math.unit(2000, "feet")
  7411. },
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7416. {
  7417. frontCat: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(180, "lbs"),
  7420. name: "Front (Cat)",
  7421. image: {
  7422. source: "./media/characters/ravin-amulet/front-cat.svg"
  7423. }
  7424. },
  7425. frontCatAlt: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(180, "lbs"),
  7428. name: "Front (Alt, Cat)",
  7429. image: {
  7430. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7431. }
  7432. },
  7433. frontWerewolf: {
  7434. height: math.unit(6 * 1.2, "feet"),
  7435. weight: math.unit(225, "lbs"),
  7436. name: "Front (Werewolf)",
  7437. image: {
  7438. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7439. }
  7440. },
  7441. backWerewolf: {
  7442. height: math.unit(6 * 1.2, "feet"),
  7443. weight: math.unit(225, "lbs"),
  7444. name: "Back (Werewolf)",
  7445. image: {
  7446. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7447. }
  7448. },
  7449. },
  7450. [
  7451. {
  7452. name: "Nano",
  7453. height: math.unit(1, "micrometer")
  7454. },
  7455. {
  7456. name: "Micro",
  7457. height: math.unit(1, "inch")
  7458. },
  7459. {
  7460. name: "Normal",
  7461. height: math.unit(6, "feet"),
  7462. default: true
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(60, "feet")
  7467. }
  7468. ]
  7469. ))
  7470. characterMakers.push(() => makeCharacter(
  7471. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7472. {
  7473. front: {
  7474. height: math.unit(6, "feet"),
  7475. weight: math.unit(165, "lbs"),
  7476. name: "Front",
  7477. image: {
  7478. source: "./media/characters/fluoresce/front.svg"
  7479. }
  7480. }
  7481. },
  7482. [
  7483. {
  7484. name: "Micro",
  7485. height: math.unit(6, "cm")
  7486. },
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(5 + 7 / 12, "feet"),
  7490. default: true
  7491. },
  7492. {
  7493. name: "Macro",
  7494. height: math.unit(56, "feet")
  7495. },
  7496. {
  7497. name: "Megamacro",
  7498. height: math.unit(1.9, "miles")
  7499. },
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(9 + 6 / 12, "feet"),
  7507. weight: math.unit(523, "lbs"),
  7508. name: "Side",
  7509. image: {
  7510. source: "./media/characters/aurora/side.svg"
  7511. }
  7512. }
  7513. },
  7514. [
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(9 + 6 / 12, "feet")
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(96, "feet"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Macro+",
  7526. height: math.unit(243, "feet")
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7532. {
  7533. front: {
  7534. height: math.unit(194, "cm"),
  7535. weight: math.unit(90, "kg"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/ranek/front.svg"
  7539. }
  7540. },
  7541. side: {
  7542. height: math.unit(194, "cm"),
  7543. weight: math.unit(90, "kg"),
  7544. name: "Side",
  7545. image: {
  7546. source: "./media/characters/ranek/side.svg"
  7547. }
  7548. },
  7549. back: {
  7550. height: math.unit(194, "cm"),
  7551. weight: math.unit(90, "kg"),
  7552. name: "Back",
  7553. image: {
  7554. source: "./media/characters/ranek/back.svg"
  7555. }
  7556. },
  7557. feral: {
  7558. height: math.unit(30, "cm"),
  7559. weight: math.unit(1.6, "lbs"),
  7560. name: "Feral",
  7561. image: {
  7562. source: "./media/characters/ranek/feral.svg"
  7563. }
  7564. },
  7565. },
  7566. [
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(194, "cm"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Macro",
  7574. height: math.unit(100, "meters")
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(5 + 6 / 12, "feet"),
  7583. weight: math.unit(153, "lbs"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/andrew-cooper/front.svg"
  7587. }
  7588. },
  7589. },
  7590. [
  7591. {
  7592. name: "Nano",
  7593. height: math.unit(1, "mm")
  7594. },
  7595. {
  7596. name: "Micro",
  7597. height: math.unit(2, "inches")
  7598. },
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(5 + 6 / 12, "feet"),
  7602. default: true
  7603. }
  7604. ]
  7605. ))
  7606. characterMakers.push(() => makeCharacter(
  7607. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7608. {
  7609. front: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(180, "lbs"),
  7612. name: "Front",
  7613. image: {
  7614. source: "./media/characters/akane-sato/front.svg",
  7615. extra: 1219 / 1140
  7616. }
  7617. },
  7618. back: {
  7619. height: math.unit(6, "feet"),
  7620. weight: math.unit(180, "lbs"),
  7621. name: "Back",
  7622. image: {
  7623. source: "./media/characters/akane-sato/back.svg",
  7624. extra: 1219 / 1170
  7625. }
  7626. },
  7627. },
  7628. [
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(2.5, "meters")
  7632. },
  7633. {
  7634. name: "Macro",
  7635. height: math.unit(250, "meters"),
  7636. default: true
  7637. },
  7638. {
  7639. name: "Megamacro",
  7640. height: math.unit(25, "km")
  7641. },
  7642. ]
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7646. {
  7647. front: {
  7648. height: math.unit(6, "feet"),
  7649. weight: math.unit(65, "kg"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/rook/front.svg",
  7653. extra: 960 / 950
  7654. }
  7655. }
  7656. },
  7657. [
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(8.8, "feet")
  7661. },
  7662. {
  7663. name: "Macro",
  7664. height: math.unit(88, "feet"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Megamacro",
  7669. height: math.unit(8, "miles")
  7670. },
  7671. ]
  7672. ))
  7673. characterMakers.push(() => makeCharacter(
  7674. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7675. {
  7676. front: {
  7677. height: math.unit(12 + 2 / 12, "feet"),
  7678. weight: math.unit(808, "lbs"),
  7679. name: "Front",
  7680. image: {
  7681. source: "./media/characters/prodigy/front.svg"
  7682. }
  7683. }
  7684. },
  7685. [
  7686. {
  7687. name: "Normal",
  7688. height: math.unit(12 + 2 / 12, "feet"),
  7689. default: true
  7690. },
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(143, "feet")
  7694. },
  7695. {
  7696. name: "Macro+",
  7697. height: math.unit(400, "feet")
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(6, "feet"),
  7706. weight: math.unit(225, "lbs"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/daniel/front.svg"
  7710. }
  7711. },
  7712. leaning: {
  7713. height: math.unit(6, "feet"),
  7714. weight: math.unit(225, "lbs"),
  7715. name: "Leaning",
  7716. image: {
  7717. source: "./media/characters/daniel/leaning.svg"
  7718. }
  7719. },
  7720. },
  7721. [
  7722. {
  7723. name: "Macro",
  7724. height: math.unit(1000, "feet"),
  7725. default: true
  7726. },
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(6, "feet"),
  7734. weight: math.unit(88, "lbs"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/chiros/front.svg",
  7738. extra: 306 / 226
  7739. }
  7740. },
  7741. side: {
  7742. height: math.unit(6, "feet"),
  7743. weight: math.unit(88, "lbs"),
  7744. name: "Side",
  7745. image: {
  7746. source: "./media/characters/chiros/side.svg",
  7747. extra: 306 / 226
  7748. }
  7749. },
  7750. },
  7751. [
  7752. {
  7753. name: "Normal",
  7754. height: math.unit(6, "cm"),
  7755. default: true
  7756. },
  7757. ]
  7758. ))
  7759. characterMakers.push(() => makeCharacter(
  7760. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7761. {
  7762. front: {
  7763. height: math.unit(6, "feet"),
  7764. weight: math.unit(100, "lbs"),
  7765. name: "Front",
  7766. image: {
  7767. source: "./media/characters/selka/front.svg",
  7768. extra: 947 / 887
  7769. }
  7770. }
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(5, "cm"),
  7776. default: true
  7777. },
  7778. ]
  7779. ))
  7780. characterMakers.push(() => makeCharacter(
  7781. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7782. {
  7783. front: {
  7784. height: math.unit(8 + 3 / 12, "feet"),
  7785. weight: math.unit(424, "lbs"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/verin/front.svg",
  7789. extra: 1845 / 1550
  7790. }
  7791. },
  7792. frontArmored: {
  7793. height: math.unit(8 + 3 / 12, "feet"),
  7794. weight: math.unit(424, "lbs"),
  7795. name: "Front (Armored)",
  7796. image: {
  7797. source: "./media/characters/verin/front-armor.svg",
  7798. extra: 1845 / 1550,
  7799. bottom: 0.01
  7800. }
  7801. },
  7802. back: {
  7803. height: math.unit(8 + 3 / 12, "feet"),
  7804. weight: math.unit(424, "lbs"),
  7805. name: "Back",
  7806. image: {
  7807. source: "./media/characters/verin/back.svg",
  7808. bottom: 0.1,
  7809. extra: 1
  7810. }
  7811. },
  7812. foot: {
  7813. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7814. name: "Foot",
  7815. image: {
  7816. source: "./media/characters/verin/foot.svg"
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(8 + 3 / 12, "feet")
  7824. },
  7825. {
  7826. name: "Minimacro",
  7827. height: math.unit(21, "feet"),
  7828. default: true
  7829. },
  7830. {
  7831. name: "Macro",
  7832. height: math.unit(626, "feet")
  7833. },
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7838. {
  7839. front: {
  7840. height: math.unit(2.718, "meters"),
  7841. weight: math.unit(150, "lbs"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/sovrim-terraquian/front.svg"
  7845. }
  7846. },
  7847. back: {
  7848. height: math.unit(2.718, "meters"),
  7849. weight: math.unit(150, "lbs"),
  7850. name: "Back",
  7851. image: {
  7852. source: "./media/characters/sovrim-terraquian/back.svg"
  7853. }
  7854. }
  7855. },
  7856. [
  7857. {
  7858. name: "Micro",
  7859. height: math.unit(2, "inches")
  7860. },
  7861. {
  7862. name: "Small",
  7863. height: math.unit(1, "meter")
  7864. },
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(Math.E, "meters"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(20, "meters")
  7873. },
  7874. {
  7875. name: "Macro+",
  7876. height: math.unit(400, "meters")
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(7, "feet"),
  7885. weight: math.unit(489, "lbs"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/reece-silvermane/front.svg",
  7889. bottom: 0.02,
  7890. extra: 1
  7891. }
  7892. },
  7893. },
  7894. [
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(1.5, "miles"),
  7898. default: true
  7899. },
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(78, "kg"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/kane/front.svg",
  7911. extra: 978 / 899
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(2.1, "m"),
  7919. },
  7920. {
  7921. name: "Macro",
  7922. height: math.unit(1, "km"),
  7923. default: true
  7924. },
  7925. ]
  7926. ))
  7927. characterMakers.push(() => makeCharacter(
  7928. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7929. {
  7930. front: {
  7931. height: math.unit(6, "feet"),
  7932. weight: math.unit(200, "kg"),
  7933. name: "Front",
  7934. image: {
  7935. source: "./media/characters/tegon/front.svg",
  7936. bottom: 0.01,
  7937. extra: 1
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Micro",
  7944. height: math.unit(1, "inch")
  7945. },
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(6 + 3 / 12, "feet"),
  7949. default: true
  7950. },
  7951. {
  7952. name: "Macro",
  7953. height: math.unit(300, "feet")
  7954. },
  7955. {
  7956. name: "Megamacro",
  7957. height: math.unit(69, "miles")
  7958. },
  7959. ]
  7960. ))
  7961. characterMakers.push(() => makeCharacter(
  7962. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7963. {
  7964. side: {
  7965. height: math.unit(6, "feet"),
  7966. weight: math.unit(2304, "lbs"),
  7967. name: "Side",
  7968. image: {
  7969. source: "./media/characters/arcturax/side.svg",
  7970. extra: 790 / 376,
  7971. bottom: 0.01
  7972. }
  7973. },
  7974. },
  7975. [
  7976. {
  7977. name: "Micro",
  7978. height: math.unit(2, "inch")
  7979. },
  7980. {
  7981. name: "Normal",
  7982. height: math.unit(6, "feet")
  7983. },
  7984. {
  7985. name: "Macro",
  7986. height: math.unit(39, "feet"),
  7987. default: true
  7988. },
  7989. {
  7990. name: "Megamacro",
  7991. height: math.unit(7, "miles")
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7997. {
  7998. front: {
  7999. height: math.unit(6, "feet"),
  8000. weight: math.unit(50, "lbs"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/sentri/front.svg",
  8004. extra: 1750 / 1570,
  8005. bottom: 0.025
  8006. }
  8007. },
  8008. frontAlt: {
  8009. height: math.unit(6, "feet"),
  8010. weight: math.unit(50, "lbs"),
  8011. name: "Front (Alt)",
  8012. image: {
  8013. source: "./media/characters/sentri/front-alt.svg",
  8014. extra: 1750 / 1570,
  8015. bottom: 0.025
  8016. }
  8017. },
  8018. },
  8019. [
  8020. {
  8021. name: "Normal",
  8022. height: math.unit(15, "feet"),
  8023. default: true
  8024. },
  8025. {
  8026. name: "Macro",
  8027. height: math.unit(2500, "feet")
  8028. }
  8029. ]
  8030. ))
  8031. characterMakers.push(() => makeCharacter(
  8032. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8033. {
  8034. front: {
  8035. height: math.unit(5 + 8 / 12, "feet"),
  8036. weight: math.unit(130, "lbs"),
  8037. name: "Front",
  8038. image: {
  8039. source: "./media/characters/corvin/front.svg",
  8040. extra: 1803 / 1629
  8041. }
  8042. },
  8043. frontShirt: {
  8044. height: math.unit(5 + 8 / 12, "feet"),
  8045. weight: math.unit(130, "lbs"),
  8046. name: "Front (Shirt)",
  8047. image: {
  8048. source: "./media/characters/corvin/front-shirt.svg",
  8049. extra: 1803 / 1629
  8050. }
  8051. },
  8052. frontPoncho: {
  8053. height: math.unit(5 + 8 / 12, "feet"),
  8054. weight: math.unit(130, "lbs"),
  8055. name: "Front (Poncho)",
  8056. image: {
  8057. source: "./media/characters/corvin/front-poncho.svg",
  8058. extra: 1803 / 1629
  8059. }
  8060. },
  8061. side: {
  8062. height: math.unit(5 + 8 / 12, "feet"),
  8063. weight: math.unit(130, "lbs"),
  8064. name: "Side",
  8065. image: {
  8066. source: "./media/characters/corvin/side.svg",
  8067. extra: 1012 / 945
  8068. }
  8069. },
  8070. back: {
  8071. height: math.unit(5 + 8 / 12, "feet"),
  8072. weight: math.unit(130, "lbs"),
  8073. name: "Back",
  8074. image: {
  8075. source: "./media/characters/corvin/back.svg",
  8076. extra: 1803 / 1629
  8077. }
  8078. },
  8079. },
  8080. [
  8081. {
  8082. name: "Micro",
  8083. height: math.unit(3, "inches")
  8084. },
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(5 + 8 / 12, "feet")
  8088. },
  8089. {
  8090. name: "Macro",
  8091. height: math.unit(300, "feet"),
  8092. default: true
  8093. },
  8094. {
  8095. name: "Megamacro",
  8096. height: math.unit(500, "miles")
  8097. }
  8098. ]
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8102. {
  8103. front: {
  8104. height: math.unit(6, "feet"),
  8105. weight: math.unit(135, "lbs"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/q/front.svg",
  8109. extra: 854 / 752,
  8110. bottom: 0.005
  8111. }
  8112. },
  8113. back: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(130, "lbs"),
  8116. name: "Back",
  8117. image: {
  8118. source: "./media/characters/q/back.svg",
  8119. extra: 854 / 752
  8120. }
  8121. },
  8122. },
  8123. [
  8124. {
  8125. name: "Macro",
  8126. height: math.unit(90, "feet"),
  8127. default: true
  8128. },
  8129. {
  8130. name: "Extra Macro",
  8131. height: math.unit(300, "feet"),
  8132. },
  8133. {
  8134. name: "BIG WALF",
  8135. height: math.unit(750, "feet"),
  8136. },
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8141. {
  8142. front: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(150, "lbs"),
  8145. name: "Front",
  8146. image: {
  8147. source: "./media/characters/carley/front.svg",
  8148. extra: 3927 / 3540,
  8149. bottom: 29.2 / 735
  8150. }
  8151. }
  8152. },
  8153. [
  8154. {
  8155. name: "Normal",
  8156. height: math.unit(6 + 3 / 12, "feet")
  8157. },
  8158. {
  8159. name: "Macro",
  8160. height: math.unit(185, "feet"),
  8161. default: true
  8162. },
  8163. {
  8164. name: "Megamacro",
  8165. height: math.unit(8, "miles"),
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(3, "feet"),
  8174. weight: math.unit(28, "lbs"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/citrine/front.svg"
  8178. }
  8179. }
  8180. },
  8181. [
  8182. {
  8183. name: "Normal",
  8184. height: math.unit(3, "feet"),
  8185. default: true
  8186. }
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8191. {
  8192. front: {
  8193. height: math.unit(14, "feet"),
  8194. weight: math.unit(1450, "kg"),
  8195. capacity: math.unit(15, "people"),
  8196. name: "Front",
  8197. image: {
  8198. source: "./media/characters/aura-starwind/front.svg",
  8199. extra: 1440/1327,
  8200. bottom: 11/1451
  8201. }
  8202. },
  8203. side: {
  8204. height: math.unit(14, "feet"),
  8205. weight: math.unit(1450, "kg"),
  8206. capacity: math.unit(15, "people"),
  8207. name: "Side",
  8208. image: {
  8209. source: "./media/characters/aura-starwind/side.svg",
  8210. extra: 1654 / 1497
  8211. }
  8212. },
  8213. taur: {
  8214. height: math.unit(18, "feet"),
  8215. weight: math.unit(5500, "kg"),
  8216. capacity: math.unit(50, "people"),
  8217. name: "Taur",
  8218. image: {
  8219. source: "./media/characters/aura-starwind/taur.svg",
  8220. extra: 1760 / 1650
  8221. }
  8222. },
  8223. feral: {
  8224. height: math.unit(46, "feet"),
  8225. weight: math.unit(25000, "kg"),
  8226. capacity: math.unit(120, "people"),
  8227. name: "Feral",
  8228. image: {
  8229. source: "./media/characters/aura-starwind/feral.svg"
  8230. }
  8231. },
  8232. },
  8233. [
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(14, "feet"),
  8237. default: true
  8238. },
  8239. {
  8240. name: "Macro",
  8241. height: math.unit(50, "meters")
  8242. },
  8243. {
  8244. name: "Megamacro",
  8245. height: math.unit(5000, "meters")
  8246. },
  8247. {
  8248. name: "Gigamacro",
  8249. height: math.unit(100000, "kilometers")
  8250. },
  8251. ]
  8252. ))
  8253. characterMakers.push(() => makeCharacter(
  8254. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8255. {
  8256. front: {
  8257. height: math.unit(2 + 7 / 12, "feet"),
  8258. weight: math.unit(32, "lbs"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/rivet/front.svg",
  8262. extra: 1716 / 1658,
  8263. bottom: 0.03
  8264. }
  8265. },
  8266. foot: {
  8267. height: math.unit(0.551, "feet"),
  8268. name: "Rivet's Foot",
  8269. image: {
  8270. source: "./media/characters/rivet/foot.svg"
  8271. },
  8272. rename: true
  8273. }
  8274. },
  8275. [
  8276. {
  8277. name: "Micro",
  8278. height: math.unit(1.5, "inches"),
  8279. },
  8280. {
  8281. name: "Normal",
  8282. height: math.unit(2 + 7 / 12, "feet"),
  8283. default: true
  8284. },
  8285. {
  8286. name: "Macro",
  8287. height: math.unit(85, "feet")
  8288. },
  8289. {
  8290. name: "Megamacro",
  8291. height: math.unit(2.2, "km")
  8292. }
  8293. ]
  8294. ))
  8295. characterMakers.push(() => makeCharacter(
  8296. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8297. {
  8298. front: {
  8299. height: math.unit(5 + 9 / 12, "feet"),
  8300. weight: math.unit(150, "lbs"),
  8301. name: "Front",
  8302. image: {
  8303. source: "./media/characters/coffee/front.svg",
  8304. extra: 3666 / 3032,
  8305. bottom: 0.04
  8306. }
  8307. },
  8308. foot: {
  8309. height: math.unit(1.29, "feet"),
  8310. name: "Foot",
  8311. image: {
  8312. source: "./media/characters/coffee/foot.svg"
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(2, "inches"),
  8320. },
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(5 + 9 / 12, "feet"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(800, "feet")
  8329. },
  8330. {
  8331. name: "Megamacro",
  8332. height: math.unit(25, "miles")
  8333. }
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(200, "lbs"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/chari-gal/front.svg",
  8345. extra: 1568 / 1385,
  8346. bottom: 0.047
  8347. }
  8348. },
  8349. gigantamax: {
  8350. height: math.unit(6 * 16, "feet"),
  8351. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8352. name: "Gigantamax",
  8353. image: {
  8354. source: "./media/characters/chari-gal/gigantamax.svg",
  8355. extra: 1124 / 888,
  8356. bottom: 0.03
  8357. }
  8358. },
  8359. },
  8360. [
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(5 + 7 / 12, "feet")
  8364. },
  8365. {
  8366. name: "Macro",
  8367. height: math.unit(200, "feet"),
  8368. default: true
  8369. }
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(150, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/nova/front.svg",
  8381. extra: 5000 / 4722,
  8382. bottom: 0.02
  8383. }
  8384. }
  8385. },
  8386. [
  8387. {
  8388. name: "Micro-",
  8389. height: math.unit(0.8, "inches")
  8390. },
  8391. {
  8392. name: "Micro",
  8393. height: math.unit(2, "inches"),
  8394. default: true
  8395. },
  8396. ]
  8397. ))
  8398. characterMakers.push(() => makeCharacter(
  8399. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8400. {
  8401. front: {
  8402. height: math.unit(3 + 1 / 12, "feet"),
  8403. weight: math.unit(21.7, "lbs"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/argent/front.svg",
  8407. extra: 1471 / 1331,
  8408. bottom: 100.8 / 1575.5
  8409. }
  8410. }
  8411. },
  8412. [
  8413. {
  8414. name: "Micro",
  8415. height: math.unit(2, "inches")
  8416. },
  8417. {
  8418. name: "Normal",
  8419. height: math.unit(3 + 1 / 12, "feet"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Macro",
  8424. height: math.unit(120, "feet")
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8430. {
  8431. lamp: {
  8432. height: math.unit(7 * 1559 / 989, "feet"),
  8433. name: "Magic Lamp",
  8434. image: {
  8435. source: "./media/characters/mira-al-cul/lamp.svg",
  8436. extra: 1617 / 1559
  8437. }
  8438. },
  8439. front: {
  8440. height: math.unit(7, "feet"),
  8441. name: "Front",
  8442. image: {
  8443. source: "./media/characters/mira-al-cul/front.svg",
  8444. extra: 1044 / 990
  8445. }
  8446. },
  8447. },
  8448. [
  8449. {
  8450. name: "Heavily Restricted",
  8451. height: math.unit(7 * 1559 / 989, "feet")
  8452. },
  8453. {
  8454. name: "Freshly Freed",
  8455. height: math.unit(50 * 1559 / 989, "feet")
  8456. },
  8457. {
  8458. name: "World Encompassing",
  8459. height: math.unit(10000 * 1559 / 989, "miles")
  8460. },
  8461. {
  8462. name: "Galactic",
  8463. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8464. },
  8465. {
  8466. name: "Palmed Universe",
  8467. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8468. default: true
  8469. },
  8470. {
  8471. name: "Multiversal Matriarch",
  8472. height: math.unit(8.87e10, "yottameters")
  8473. },
  8474. {
  8475. name: "Void Mother",
  8476. height: math.unit(3.14e110, "yottaparsecs")
  8477. },
  8478. {
  8479. name: "Toying with Transcendence",
  8480. height: math.unit(1e307, "meters")
  8481. },
  8482. ]
  8483. ))
  8484. characterMakers.push(() => makeCharacter(
  8485. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8486. {
  8487. front: {
  8488. height: math.unit(17 + 1 / 12, "feet"),
  8489. weight: math.unit(476.2 * 5, "lbs"),
  8490. name: "Front",
  8491. image: {
  8492. source: "./media/characters/kuro-shi-uchū/front.svg",
  8493. extra: 2329 / 1835,
  8494. bottom: 0.02
  8495. }
  8496. },
  8497. },
  8498. [
  8499. {
  8500. name: "Micro",
  8501. height: math.unit(2, "inches")
  8502. },
  8503. {
  8504. name: "Normal",
  8505. height: math.unit(12, "meters")
  8506. },
  8507. {
  8508. name: "Planetary",
  8509. height: math.unit(0.00929, "AU"),
  8510. default: true
  8511. },
  8512. {
  8513. name: "Universal",
  8514. height: math.unit(20, "gigaparsecs")
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8520. {
  8521. front: {
  8522. height: math.unit(5 + 2 / 12, "feet"),
  8523. weight: math.unit(120, "lbs"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/katherine/front.svg",
  8527. extra: 2075 / 1969
  8528. }
  8529. },
  8530. dress: {
  8531. height: math.unit(5 + 2 / 12, "feet"),
  8532. weight: math.unit(120, "lbs"),
  8533. name: "Dress",
  8534. image: {
  8535. source: "./media/characters/katherine/dress.svg",
  8536. extra: 2258 / 2064
  8537. }
  8538. },
  8539. },
  8540. [
  8541. {
  8542. name: "Micro",
  8543. height: math.unit(1, "inches"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(5 + 2 / 12, "feet")
  8549. },
  8550. {
  8551. name: "Macro",
  8552. height: math.unit(100, "meters")
  8553. },
  8554. {
  8555. name: "Megamacro",
  8556. height: math.unit(80, "miles")
  8557. },
  8558. ]
  8559. ))
  8560. characterMakers.push(() => makeCharacter(
  8561. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8562. {
  8563. front: {
  8564. height: math.unit(7 + 8 / 12, "feet"),
  8565. weight: math.unit(250, "lbs"),
  8566. name: "Front",
  8567. image: {
  8568. source: "./media/characters/yevis/front.svg",
  8569. extra: 1938 / 1755
  8570. }
  8571. }
  8572. },
  8573. [
  8574. {
  8575. name: "Mortal",
  8576. height: math.unit(7 + 8 / 12, "feet")
  8577. },
  8578. {
  8579. name: "Battle",
  8580. height: math.unit(25 + 11 / 12, "feet")
  8581. },
  8582. {
  8583. name: "Wrath",
  8584. height: math.unit(1654 + 11 / 12, "feet")
  8585. },
  8586. {
  8587. name: "Planet Destroyer",
  8588. height: math.unit(12000, "miles")
  8589. },
  8590. {
  8591. name: "Galaxy Conqueror",
  8592. height: math.unit(1.45, "zettameters"),
  8593. default: true
  8594. },
  8595. {
  8596. name: "Universal War",
  8597. height: math.unit(184, "gigaparsecs")
  8598. },
  8599. {
  8600. name: "Eternity War",
  8601. height: math.unit(1.98e55, "yottaparsecs")
  8602. },
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8607. {
  8608. front: {
  8609. height: math.unit(5 + 8 / 12, "feet"),
  8610. weight: math.unit(63, "kg"),
  8611. name: "Front",
  8612. image: {
  8613. source: "./media/characters/xavier/front.svg",
  8614. extra: 944 / 883
  8615. }
  8616. },
  8617. frontStretch: {
  8618. height: math.unit(5 + 8 / 12, "feet"),
  8619. weight: math.unit(63, "kg"),
  8620. name: "Stretching",
  8621. image: {
  8622. source: "./media/characters/xavier/front-stretch.svg",
  8623. extra: 962 / 820
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(5 + 8 / 12, "feet")
  8631. },
  8632. {
  8633. name: "Macro",
  8634. height: math.unit(100, "meters"),
  8635. default: true
  8636. },
  8637. {
  8638. name: "McLargeHuge",
  8639. height: math.unit(10, "miles")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(5 + 5 / 12, "feet"),
  8648. weight: math.unit(150, "lb"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/joshii/front.svg",
  8652. extra: 765 / 653,
  8653. bottom: 51 / 816
  8654. }
  8655. },
  8656. foot: {
  8657. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8658. name: "Foot",
  8659. image: {
  8660. source: "./media/characters/joshii/foot.svg"
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Micro",
  8667. height: math.unit(2, "inches"),
  8668. default: true
  8669. },
  8670. {
  8671. name: "Normal",
  8672. height: math.unit(5 + 5 / 12, "feet")
  8673. },
  8674. {
  8675. name: "Macro",
  8676. height: math.unit(785, "feet")
  8677. },
  8678. {
  8679. name: "Megamacro",
  8680. height: math.unit(24.5, "miles")
  8681. },
  8682. ]
  8683. ))
  8684. characterMakers.push(() => makeCharacter(
  8685. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8686. {
  8687. front: {
  8688. height: math.unit(6, "feet"),
  8689. weight: math.unit(150, "lb"),
  8690. name: "Front",
  8691. image: {
  8692. source: "./media/characters/goddess-elizabeth/front.svg",
  8693. extra: 1800 / 1525,
  8694. bottom: 0.005
  8695. }
  8696. },
  8697. foot: {
  8698. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8699. name: "Foot",
  8700. image: {
  8701. source: "./media/characters/goddess-elizabeth/foot.svg"
  8702. }
  8703. },
  8704. mouth: {
  8705. height: math.unit(6, "feet"),
  8706. name: "Mouth",
  8707. image: {
  8708. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8709. }
  8710. },
  8711. },
  8712. [
  8713. {
  8714. name: "Micro",
  8715. height: math.unit(12, "feet")
  8716. },
  8717. {
  8718. name: "Normal",
  8719. height: math.unit(80, "miles"),
  8720. default: true
  8721. },
  8722. {
  8723. name: "Macro",
  8724. height: math.unit(15000, "parsecs")
  8725. },
  8726. ]
  8727. ))
  8728. characterMakers.push(() => makeCharacter(
  8729. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8730. {
  8731. front: {
  8732. height: math.unit(5 + 9 / 12, "feet"),
  8733. weight: math.unit(144, "lb"),
  8734. name: "Front",
  8735. image: {
  8736. source: "./media/characters/kara/front.svg"
  8737. }
  8738. },
  8739. feet: {
  8740. height: math.unit(6 / 6.765, "feet"),
  8741. name: "Kara's Feet",
  8742. rename: true,
  8743. image: {
  8744. source: "./media/characters/kara/feet.svg"
  8745. }
  8746. },
  8747. },
  8748. [
  8749. {
  8750. name: "Normal",
  8751. height: math.unit(5 + 9 / 12, "feet")
  8752. },
  8753. {
  8754. name: "Macro",
  8755. height: math.unit(174, "feet"),
  8756. default: true
  8757. },
  8758. ]
  8759. ))
  8760. characterMakers.push(() => makeCharacter(
  8761. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8762. {
  8763. front: {
  8764. height: math.unit(18, "feet"),
  8765. weight: math.unit(4050, "lb"),
  8766. name: "Front",
  8767. image: {
  8768. source: "./media/characters/tyrone/front.svg",
  8769. extra: 2405 / 2270,
  8770. bottom: 182 / 2587
  8771. }
  8772. },
  8773. },
  8774. [
  8775. {
  8776. name: "Normal",
  8777. height: math.unit(18, "feet"),
  8778. default: true
  8779. },
  8780. {
  8781. name: "Macro",
  8782. height: math.unit(300, "feet")
  8783. },
  8784. {
  8785. name: "Megamacro",
  8786. height: math.unit(15, "km")
  8787. },
  8788. {
  8789. name: "Gigamacro",
  8790. height: math.unit(500, "km")
  8791. },
  8792. {
  8793. name: "Teramacro",
  8794. height: math.unit(0.5, "gigameters")
  8795. },
  8796. {
  8797. name: "Omnimacro",
  8798. height: math.unit(1e252, "yottauniverse")
  8799. },
  8800. ]
  8801. ))
  8802. characterMakers.push(() => makeCharacter(
  8803. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8804. {
  8805. front: {
  8806. height: math.unit(7 + 8 / 12, "feet"),
  8807. weight: math.unit(120, "lb"),
  8808. name: "Front",
  8809. image: {
  8810. source: "./media/characters/danny/front.svg",
  8811. extra: 1490 / 1350
  8812. }
  8813. },
  8814. back: {
  8815. height: math.unit(7 + 8 / 12, "feet"),
  8816. weight: math.unit(120, "lb"),
  8817. name: "Back",
  8818. image: {
  8819. source: "./media/characters/danny/back.svg",
  8820. extra: 1490 / 1350
  8821. }
  8822. },
  8823. },
  8824. [
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(7 + 8 / 12, "feet"),
  8828. default: true
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(3.5, "inches"),
  8837. weight: math.unit(19, "grams"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/mallow/front.svg",
  8841. extra: 471 / 431
  8842. }
  8843. },
  8844. back: {
  8845. height: math.unit(3.5, "inches"),
  8846. weight: math.unit(19, "grams"),
  8847. name: "Back",
  8848. image: {
  8849. source: "./media/characters/mallow/back.svg",
  8850. extra: 471 / 431
  8851. }
  8852. },
  8853. },
  8854. [
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(3.5, "inches"),
  8858. default: true
  8859. },
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8864. {
  8865. front: {
  8866. height: math.unit(9, "feet"),
  8867. weight: math.unit(230, "kg"),
  8868. name: "Front",
  8869. image: {
  8870. source: "./media/characters/starry-aqua/front.svg"
  8871. }
  8872. },
  8873. back: {
  8874. height: math.unit(9, "feet"),
  8875. weight: math.unit(230, "kg"),
  8876. name: "Back",
  8877. image: {
  8878. source: "./media/characters/starry-aqua/back.svg"
  8879. }
  8880. },
  8881. hand: {
  8882. height: math.unit(9 * 0.1168, "feet"),
  8883. name: "Hand",
  8884. image: {
  8885. source: "./media/characters/starry-aqua/hand.svg"
  8886. }
  8887. },
  8888. foot: {
  8889. height: math.unit(9 * 0.18, "feet"),
  8890. name: "Foot",
  8891. image: {
  8892. source: "./media/characters/starry-aqua/foot.svg"
  8893. }
  8894. }
  8895. },
  8896. [
  8897. {
  8898. name: "Micro",
  8899. height: math.unit(3, "inches")
  8900. },
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(9, "feet")
  8904. },
  8905. {
  8906. name: "Macro",
  8907. height: math.unit(300, "feet"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "Megamacro",
  8912. height: math.unit(3200, "feet")
  8913. }
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(6, "feet"),
  8921. weight: math.unit(230, "lb"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/luka/front.svg",
  8925. extra: 1,
  8926. bottom: 0.025
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(12 + 8 / 12, "feet"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Minimacro",
  8938. height: math.unit(20, "feet")
  8939. },
  8940. {
  8941. name: "Macro",
  8942. height: math.unit(250, "feet")
  8943. },
  8944. {
  8945. name: "Megamacro",
  8946. height: math.unit(5, "miles")
  8947. },
  8948. {
  8949. name: "Gigamacro",
  8950. height: math.unit(8000, "miles")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(6, "feet"),
  8959. weight: math.unit(150, "lb"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/natalie-nightring/front.svg",
  8963. extra: 1,
  8964. bottom: 0.06
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Uh Oh",
  8971. height: math.unit(0.1, "mm")
  8972. },
  8973. {
  8974. name: "Small",
  8975. height: math.unit(3, "inches")
  8976. },
  8977. {
  8978. name: "Human Scale",
  8979. height: math.unit(6, "feet")
  8980. },
  8981. {
  8982. name: "Librarian",
  8983. height: math.unit(50, "feet"),
  8984. default: true
  8985. },
  8986. {
  8987. name: "Immense",
  8988. height: math.unit(200, "miles")
  8989. },
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(6, "feet"),
  8997. weight: math.unit(180, "lbs"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/danni-rosie/front.svg",
  9001. extra: 1260 / 1128,
  9002. bottom: 0.022
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Micro",
  9009. height: math.unit(2, "inches"),
  9010. default: true
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(5 + 9 / 12, "feet"),
  9019. weight: math.unit(220, "lb"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/samantha-kruse/front.svg",
  9023. extra: (985 / 935),
  9024. bottom: 0.03
  9025. }
  9026. },
  9027. frontUndressed: {
  9028. height: math.unit(5 + 9 / 12, "feet"),
  9029. weight: math.unit(220, "lb"),
  9030. name: "Front (Undressed)",
  9031. image: {
  9032. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9033. extra: (973 / 923),
  9034. bottom: 0.025
  9035. }
  9036. },
  9037. fat: {
  9038. height: math.unit(5 + 9 / 12, "feet"),
  9039. weight: math.unit(900, "lb"),
  9040. name: "Front (Fat)",
  9041. image: {
  9042. source: "./media/characters/samantha-kruse/fat.svg",
  9043. extra: 2688 / 2561
  9044. }
  9045. },
  9046. },
  9047. [
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(5 + 9 / 12, "feet"),
  9051. default: true
  9052. }
  9053. ]
  9054. ))
  9055. characterMakers.push(() => makeCharacter(
  9056. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9057. {
  9058. back: {
  9059. height: math.unit(5 + 4 / 12, "feet"),
  9060. weight: math.unit(4963, "lb"),
  9061. name: "Back",
  9062. image: {
  9063. source: "./media/characters/amelia-rosie/back.svg",
  9064. extra: 1113 / 963,
  9065. bottom: 0.01
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Level 0",
  9072. height: math.unit(5 + 4 / 12, "feet")
  9073. },
  9074. {
  9075. name: "Level 1",
  9076. height: math.unit(164597, "feet"),
  9077. default: true
  9078. },
  9079. {
  9080. name: "Level 2",
  9081. height: math.unit(956243, "miles")
  9082. },
  9083. {
  9084. name: "Level 3",
  9085. height: math.unit(29421709423, "miles")
  9086. },
  9087. {
  9088. name: "Level 4",
  9089. height: math.unit(154, "lightyears")
  9090. },
  9091. {
  9092. name: "Level 5",
  9093. height: math.unit(4738272, "lightyears")
  9094. },
  9095. {
  9096. name: "Level 6",
  9097. height: math.unit(145787152896, "lightyears")
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(5 + 11 / 12, "feet"),
  9106. weight: math.unit(65, "kg"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/rook-kitara/front.svg",
  9110. extra: 1347 / 1274,
  9111. bottom: 0.005
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Totally Unfair",
  9118. height: math.unit(1.8, "mm")
  9119. },
  9120. {
  9121. name: "Lap Rookie",
  9122. height: math.unit(1.4, "feet")
  9123. },
  9124. {
  9125. name: "Normal",
  9126. height: math.unit(5 + 11 / 12, "feet"),
  9127. default: true
  9128. },
  9129. {
  9130. name: "How Did This Happen",
  9131. height: math.unit(80, "miles")
  9132. }
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9137. {
  9138. front: {
  9139. height: math.unit(7, "feet"),
  9140. weight: math.unit(300, "lb"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/pisces/front.svg",
  9144. extra: 2255 / 2115,
  9145. bottom: 0.03
  9146. }
  9147. },
  9148. back: {
  9149. height: math.unit(7, "feet"),
  9150. weight: math.unit(300, "lb"),
  9151. name: "Back",
  9152. image: {
  9153. source: "./media/characters/pisces/back.svg",
  9154. extra: 2146 / 2055,
  9155. bottom: 0.04
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Normal",
  9162. height: math.unit(7, "feet"),
  9163. default: true
  9164. },
  9165. {
  9166. name: "Swimming Pool",
  9167. height: math.unit(12.2, "meters")
  9168. },
  9169. {
  9170. name: "Olympic Swimming Pool",
  9171. height: math.unit(56.3, "meters")
  9172. },
  9173. {
  9174. name: "Lake Superior",
  9175. height: math.unit(93900, "meters")
  9176. },
  9177. {
  9178. name: "Mediterranean Sea",
  9179. height: math.unit(644457, "meters")
  9180. },
  9181. {
  9182. name: "World's Oceans",
  9183. height: math.unit(4567491, "meters")
  9184. },
  9185. ]
  9186. ))
  9187. characterMakers.push(() => makeCharacter(
  9188. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9189. {
  9190. front: {
  9191. height: math.unit(2.3, "meters"),
  9192. weight: math.unit(120, "kg"),
  9193. name: "Front",
  9194. image: {
  9195. source: "./media/characters/zelas/front.svg"
  9196. }
  9197. },
  9198. side: {
  9199. height: math.unit(2.3, "meters"),
  9200. weight: math.unit(120, "kg"),
  9201. name: "Side",
  9202. image: {
  9203. source: "./media/characters/zelas/side.svg"
  9204. }
  9205. },
  9206. back: {
  9207. height: math.unit(2.3, "meters"),
  9208. weight: math.unit(120, "kg"),
  9209. name: "Back",
  9210. image: {
  9211. source: "./media/characters/zelas/back.svg"
  9212. }
  9213. },
  9214. foot: {
  9215. height: math.unit(1.116, "feet"),
  9216. name: "Foot",
  9217. image: {
  9218. source: "./media/characters/zelas/foot.svg"
  9219. }
  9220. },
  9221. },
  9222. [
  9223. {
  9224. name: "Normal",
  9225. height: math.unit(2.3, "meters")
  9226. },
  9227. {
  9228. name: "Macro",
  9229. height: math.unit(30, "meters"),
  9230. default: true
  9231. },
  9232. ]
  9233. ))
  9234. characterMakers.push(() => makeCharacter(
  9235. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9236. {
  9237. front: {
  9238. height: math.unit(1, "inch"),
  9239. weight: math.unit(0.21, "grams"),
  9240. name: "Front",
  9241. image: {
  9242. source: "./media/characters/talbot/front.svg",
  9243. extra: 594 / 544
  9244. }
  9245. },
  9246. },
  9247. [
  9248. {
  9249. name: "Micro",
  9250. height: math.unit(1, "inch"),
  9251. default: true
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9257. {
  9258. front: {
  9259. height: math.unit(3 + 3 / 12, "feet"),
  9260. weight: math.unit(51.8, "lb"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/fliss/front.svg",
  9264. extra: 840 / 640
  9265. }
  9266. },
  9267. },
  9268. [
  9269. {
  9270. name: "Teeny Tiny",
  9271. height: math.unit(1, "mm")
  9272. },
  9273. {
  9274. name: "Small",
  9275. height: math.unit(1, "inch"),
  9276. default: true
  9277. },
  9278. {
  9279. name: "Standard Sylveon",
  9280. height: math.unit(3 + 3 / 12, "feet")
  9281. },
  9282. {
  9283. name: "Large Nuisance",
  9284. height: math.unit(33, "feet")
  9285. },
  9286. {
  9287. name: "City Filler",
  9288. height: math.unit(3000, "feet")
  9289. },
  9290. {
  9291. name: "New Horizon",
  9292. height: math.unit(6000, "miles")
  9293. },
  9294. ]
  9295. ))
  9296. characterMakers.push(() => makeCharacter(
  9297. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9298. {
  9299. front: {
  9300. height: math.unit(5, "cm"),
  9301. weight: math.unit(1.94, "g"),
  9302. name: "Front",
  9303. image: {
  9304. source: "./media/characters/fleta/front.svg",
  9305. extra: 835 / 803
  9306. }
  9307. },
  9308. back: {
  9309. height: math.unit(5, "cm"),
  9310. weight: math.unit(1.94, "g"),
  9311. name: "Back",
  9312. image: {
  9313. source: "./media/characters/fleta/back.svg",
  9314. extra: 835 / 803
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Micro",
  9321. height: math.unit(5, "cm"),
  9322. default: true
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9328. {
  9329. front: {
  9330. height: math.unit(6, "feet"),
  9331. weight: math.unit(225, "lb"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/dominic/front.svg",
  9335. extra: 1770 / 1620,
  9336. bottom: 0.025
  9337. }
  9338. },
  9339. back: {
  9340. height: math.unit(6, "feet"),
  9341. weight: math.unit(225, "lb"),
  9342. name: "Back",
  9343. image: {
  9344. source: "./media/characters/dominic/back.svg",
  9345. extra: 1745 / 1620,
  9346. bottom: 0.065
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Nano",
  9353. height: math.unit(0.1, "mm")
  9354. },
  9355. {
  9356. name: "Micro-",
  9357. height: math.unit(1, "mm")
  9358. },
  9359. {
  9360. name: "Micro",
  9361. height: math.unit(4, "inches")
  9362. },
  9363. {
  9364. name: "Normal",
  9365. height: math.unit(6 + 4 / 12, "feet"),
  9366. default: true
  9367. },
  9368. {
  9369. name: "Macro",
  9370. height: math.unit(115, "feet")
  9371. },
  9372. {
  9373. name: "Macro+",
  9374. height: math.unit(955, "feet")
  9375. },
  9376. {
  9377. name: "Megamacro",
  9378. height: math.unit(8990, "feet")
  9379. },
  9380. {
  9381. name: "Gigmacro",
  9382. height: math.unit(9310, "miles")
  9383. },
  9384. {
  9385. name: "Teramacro",
  9386. height: math.unit(1567005010, "miles")
  9387. },
  9388. {
  9389. name: "Examacro",
  9390. height: math.unit(1425, "parsecs")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(400, "feet"),
  9399. weight: math.unit(44444444, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/major-colonel/front.svg"
  9403. }
  9404. },
  9405. back: {
  9406. height: math.unit(400, "feet"),
  9407. weight: math.unit(44444444, "lb"),
  9408. name: "Back",
  9409. image: {
  9410. source: "./media/characters/major-colonel/back.svg"
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Macro",
  9417. height: math.unit(400, "feet"),
  9418. default: true
  9419. },
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9424. {
  9425. catFront: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(120, "lb"),
  9428. name: "Front (Cat Side)",
  9429. image: {
  9430. source: "./media/characters/axel-lycan/cat-front.svg",
  9431. extra: 430 / 402,
  9432. bottom: 43 / 472.35
  9433. }
  9434. },
  9435. catBack: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(120, "lb"),
  9438. name: "Back (Cat Side)",
  9439. image: {
  9440. source: "./media/characters/axel-lycan/cat-back.svg",
  9441. extra: 447 / 419,
  9442. bottom: 23.3 / 469
  9443. }
  9444. },
  9445. wolfFront: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(120, "lb"),
  9448. name: "Front (Wolf Side)",
  9449. image: {
  9450. source: "./media/characters/axel-lycan/wolf-front.svg",
  9451. extra: 485 / 456,
  9452. bottom: 19 / 504
  9453. }
  9454. },
  9455. wolfBack: {
  9456. height: math.unit(6, "feet"),
  9457. weight: math.unit(120, "lb"),
  9458. name: "Back (Wolf Side)",
  9459. image: {
  9460. source: "./media/characters/axel-lycan/wolf-back.svg",
  9461. extra: 475 / 438,
  9462. bottom: 39.2 / 514
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Macro",
  9469. height: math.unit(1, "km"),
  9470. default: true
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9476. {
  9477. front: {
  9478. height: math.unit(5 + 9 / 12, "feet"),
  9479. weight: math.unit(175, "lb"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/vanrel-hyena/front.svg",
  9483. extra: 1086 / 1010,
  9484. bottom: 0.04
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Normal",
  9491. height: math.unit(5 + 9 / 12, "feet"),
  9492. default: true
  9493. },
  9494. ]
  9495. ))
  9496. characterMakers.push(() => makeCharacter(
  9497. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9498. {
  9499. front: {
  9500. height: math.unit(6, "feet"),
  9501. weight: math.unit(103, "lb"),
  9502. name: "Front",
  9503. image: {
  9504. source: "./media/characters/abbott-absol/front.svg",
  9505. extra: 2010 / 1842
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Megamicro",
  9512. height: math.unit(0.1, "mm")
  9513. },
  9514. {
  9515. name: "Micro",
  9516. height: math.unit(1, "inch")
  9517. },
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(6, "feet"),
  9521. default: true
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(6, "feet"),
  9530. weight: math.unit(264, "lb"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/hector/front.svg",
  9534. extra: 2280 / 2130,
  9535. bottom: 0.07
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(12.25, "foot"),
  9543. default: true
  9544. },
  9545. {
  9546. name: "Macro",
  9547. height: math.unit(160, "feet")
  9548. },
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9553. {
  9554. front: {
  9555. height: math.unit(6, "feet"),
  9556. weight: math.unit(150, "lb"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/sal/front.svg",
  9560. extra: 1846 / 1699,
  9561. bottom: 0.04
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Megamacro",
  9568. height: math.unit(10, "miles"),
  9569. default: true
  9570. },
  9571. ]
  9572. ))
  9573. characterMakers.push(() => makeCharacter(
  9574. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9575. {
  9576. front: {
  9577. height: math.unit(3, "meters"),
  9578. weight: math.unit(450, "kg"),
  9579. name: "front",
  9580. image: {
  9581. source: "./media/characters/ranger/front.svg",
  9582. extra: 2401 / 2243,
  9583. bottom: 0.05
  9584. }
  9585. },
  9586. },
  9587. [
  9588. {
  9589. name: "Normal",
  9590. height: math.unit(3, "meters"),
  9591. default: true
  9592. },
  9593. ]
  9594. ))
  9595. characterMakers.push(() => makeCharacter(
  9596. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9597. {
  9598. front: {
  9599. height: math.unit(14, "feet"),
  9600. weight: math.unit(800, "kg"),
  9601. name: "Front",
  9602. image: {
  9603. source: "./media/characters/theresa/front.svg",
  9604. extra: 3575 / 3346,
  9605. bottom: 0.03
  9606. }
  9607. },
  9608. },
  9609. [
  9610. {
  9611. name: "Normal",
  9612. height: math.unit(14, "feet"),
  9613. default: true
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9619. {
  9620. front: {
  9621. height: math.unit(6, "feet"),
  9622. weight: math.unit(3, "kg"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/ine/front.svg",
  9626. extra: 678 / 539,
  9627. bottom: 0.023
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(2.265, "feet"),
  9635. default: true
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9641. {
  9642. front: {
  9643. height: math.unit(5, "feet"),
  9644. weight: math.unit(30, "kg"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/vial/front.svg",
  9648. extra: 1365 / 1277,
  9649. bottom: 0.04
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(5, "feet"),
  9657. default: true
  9658. },
  9659. ]
  9660. ))
  9661. characterMakers.push(() => makeCharacter(
  9662. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9663. {
  9664. side: {
  9665. height: math.unit(3.4, "meters"),
  9666. weight: math.unit(1000, "lb"),
  9667. name: "Side",
  9668. image: {
  9669. source: "./media/characters/rovoska/side.svg",
  9670. extra: 4403 / 1515
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Normal",
  9677. height: math.unit(3.4, "meters"),
  9678. default: true
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(8, "feet"),
  9687. weight: math.unit(315, "lb"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/gunner-rotthbauer/front.svg"
  9691. }
  9692. },
  9693. back: {
  9694. height: math.unit(8, "feet"),
  9695. weight: math.unit(315, "lb"),
  9696. name: "Back",
  9697. image: {
  9698. source: "./media/characters/gunner-rotthbauer/back.svg"
  9699. }
  9700. },
  9701. },
  9702. [
  9703. {
  9704. name: "Micro",
  9705. height: math.unit(3.5, "inches")
  9706. },
  9707. {
  9708. name: "Normal",
  9709. height: math.unit(8, "feet"),
  9710. default: true
  9711. },
  9712. {
  9713. name: "Macro",
  9714. height: math.unit(250, "feet")
  9715. },
  9716. {
  9717. name: "Megamacro",
  9718. height: math.unit(1, "AU")
  9719. },
  9720. ]
  9721. ))
  9722. characterMakers.push(() => makeCharacter(
  9723. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9724. {
  9725. front: {
  9726. height: math.unit(5 + 5 / 12, "feet"),
  9727. weight: math.unit(140, "lb"),
  9728. name: "Front",
  9729. image: {
  9730. source: "./media/characters/allatia/front.svg",
  9731. extra: 1227 / 1180,
  9732. bottom: 0.027
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(5 + 5 / 12, "feet")
  9740. },
  9741. {
  9742. name: "Macro",
  9743. height: math.unit(250, "feet"),
  9744. default: true
  9745. },
  9746. {
  9747. name: "Megamacro",
  9748. height: math.unit(8, "miles")
  9749. }
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9754. {
  9755. front: {
  9756. height: math.unit(6, "feet"),
  9757. weight: math.unit(120, "lb"),
  9758. name: "Front",
  9759. image: {
  9760. source: "./media/characters/tene/front.svg",
  9761. extra: 1728 / 1578,
  9762. bottom: 0.022
  9763. }
  9764. },
  9765. stomping: {
  9766. height: math.unit(2.025, "meters"),
  9767. weight: math.unit(120, "lb"),
  9768. name: "Stomping",
  9769. image: {
  9770. source: "./media/characters/tene/stomping.svg",
  9771. extra: 938 / 873,
  9772. bottom: 0.01
  9773. }
  9774. },
  9775. sitting: {
  9776. height: math.unit(1, "meter"),
  9777. weight: math.unit(120, "lb"),
  9778. name: "Sitting",
  9779. image: {
  9780. source: "./media/characters/tene/sitting.svg",
  9781. extra: 437 / 415,
  9782. bottom: 0.1
  9783. }
  9784. },
  9785. feral: {
  9786. height: math.unit(3.9, "feet"),
  9787. weight: math.unit(250, "lb"),
  9788. name: "Feral",
  9789. image: {
  9790. source: "./media/characters/tene/feral.svg",
  9791. extra: 717 / 458,
  9792. bottom: 0.179
  9793. }
  9794. },
  9795. },
  9796. [
  9797. {
  9798. name: "Normal",
  9799. height: math.unit(6, "feet")
  9800. },
  9801. {
  9802. name: "Macro",
  9803. height: math.unit(300, "feet"),
  9804. default: true
  9805. },
  9806. {
  9807. name: "Megamacro",
  9808. height: math.unit(5, "miles")
  9809. },
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9814. {
  9815. side: {
  9816. height: math.unit(6, "feet"),
  9817. name: "Side",
  9818. image: {
  9819. source: "./media/characters/evander/side.svg",
  9820. extra: 877 / 477
  9821. }
  9822. },
  9823. },
  9824. [
  9825. {
  9826. name: "Normal",
  9827. height: math.unit(0.83, "meters"),
  9828. default: true
  9829. },
  9830. ]
  9831. ))
  9832. characterMakers.push(() => makeCharacter(
  9833. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9834. {
  9835. front: {
  9836. height: math.unit(12, "feet"),
  9837. weight: math.unit(1000, "lb"),
  9838. name: "Front",
  9839. image: {
  9840. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9841. extra: 1762 / 1611
  9842. }
  9843. },
  9844. back: {
  9845. height: math.unit(12, "feet"),
  9846. weight: math.unit(1000, "lb"),
  9847. name: "Back",
  9848. image: {
  9849. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9850. extra: 1762 / 1611
  9851. }
  9852. },
  9853. },
  9854. [
  9855. {
  9856. name: "Normal",
  9857. height: math.unit(12, "feet"),
  9858. default: true
  9859. },
  9860. {
  9861. name: "Kaiju",
  9862. height: math.unit(150, "feet")
  9863. },
  9864. ]
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9868. {
  9869. front: {
  9870. height: math.unit(6, "feet"),
  9871. weight: math.unit(150, "lb"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/zero-alurus/front.svg"
  9875. }
  9876. },
  9877. back: {
  9878. height: math.unit(6, "feet"),
  9879. weight: math.unit(150, "lb"),
  9880. name: "Back",
  9881. image: {
  9882. source: "./media/characters/zero-alurus/back.svg"
  9883. }
  9884. },
  9885. },
  9886. [
  9887. {
  9888. name: "Normal",
  9889. height: math.unit(5 + 10 / 12, "feet")
  9890. },
  9891. {
  9892. name: "Macro",
  9893. height: math.unit(60, "feet"),
  9894. default: true
  9895. },
  9896. {
  9897. name: "Macro+",
  9898. height: math.unit(450, "feet")
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9904. {
  9905. front: {
  9906. height: math.unit(6, "feet"),
  9907. weight: math.unit(200, "lb"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/mega-shi/front.svg",
  9911. extra: 1279 / 1250,
  9912. bottom: 0.02
  9913. }
  9914. },
  9915. back: {
  9916. height: math.unit(6, "feet"),
  9917. weight: math.unit(200, "lb"),
  9918. name: "Back",
  9919. image: {
  9920. source: "./media/characters/mega-shi/back.svg",
  9921. extra: 1279 / 1250,
  9922. bottom: 0.02
  9923. }
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Micro",
  9929. height: math.unit(16 + 6 / 12, "feet")
  9930. },
  9931. {
  9932. name: "Third Dimension",
  9933. height: math.unit(40, "meters")
  9934. },
  9935. {
  9936. name: "Normal",
  9937. height: math.unit(660, "feet"),
  9938. default: true
  9939. },
  9940. {
  9941. name: "Megamacro",
  9942. height: math.unit(10, "miles")
  9943. },
  9944. {
  9945. name: "Planetary Launch",
  9946. height: math.unit(500, "miles")
  9947. },
  9948. {
  9949. name: "Interstellar",
  9950. height: math.unit(1e9, "miles")
  9951. },
  9952. {
  9953. name: "Leaving the Universe",
  9954. height: math.unit(1, "gigaparsec")
  9955. },
  9956. {
  9957. name: "Travelling Universes",
  9958. height: math.unit(30e15, "parsecs")
  9959. },
  9960. ]
  9961. ))
  9962. characterMakers.push(() => makeCharacter(
  9963. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9964. {
  9965. front: {
  9966. height: math.unit(6, "feet"),
  9967. weight: math.unit(150, "lb"),
  9968. name: "Front",
  9969. image: {
  9970. source: "./media/characters/odyssey/front.svg",
  9971. extra: 1782 / 1582,
  9972. bottom: 0.01
  9973. }
  9974. },
  9975. side: {
  9976. height: math.unit(5.7, "feet"),
  9977. weight: math.unit(140, "lb"),
  9978. name: "Side",
  9979. image: {
  9980. source: "./media/characters/odyssey/side.svg",
  9981. extra: 6462 / 5700
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Normal",
  9988. height: math.unit(5 + 4 / 12, "feet")
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(1, "km")
  9993. },
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(3000, "km")
  9997. },
  9998. {
  9999. name: "Gigamacro",
  10000. height: math.unit(1, "AU"),
  10001. default: true
  10002. },
  10003. {
  10004. name: "Omniversal",
  10005. height: math.unit(100e14, "lightyears")
  10006. },
  10007. ]
  10008. ))
  10009. characterMakers.push(() => makeCharacter(
  10010. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10011. {
  10012. front: {
  10013. height: math.unit(6, "feet"),
  10014. weight: math.unit(300, "lb"),
  10015. name: "Front",
  10016. image: {
  10017. source: "./media/characters/mekuto/front.svg",
  10018. extra: 921 / 832,
  10019. bottom: 0.03
  10020. }
  10021. },
  10022. hand: {
  10023. height: math.unit(6 / 10.24, "feet"),
  10024. name: "Hand",
  10025. image: {
  10026. source: "./media/characters/mekuto/hand.svg"
  10027. }
  10028. },
  10029. foot: {
  10030. height: math.unit(6 / 5.05, "feet"),
  10031. name: "Foot",
  10032. image: {
  10033. source: "./media/characters/mekuto/foot.svg"
  10034. }
  10035. },
  10036. },
  10037. [
  10038. {
  10039. name: "Minimicro",
  10040. height: math.unit(0.2, "inches")
  10041. },
  10042. {
  10043. name: "Micro",
  10044. height: math.unit(1.5, "inches")
  10045. },
  10046. {
  10047. name: "Normal",
  10048. height: math.unit(5 + 11 / 12, "feet"),
  10049. default: true
  10050. },
  10051. {
  10052. name: "Minimacro",
  10053. height: math.unit(17 + 9 / 12, "feet")
  10054. },
  10055. {
  10056. name: "Macro",
  10057. height: math.unit(177.5, "feet")
  10058. },
  10059. {
  10060. name: "Megamacro",
  10061. height: math.unit(152, "miles")
  10062. },
  10063. ]
  10064. ))
  10065. characterMakers.push(() => makeCharacter(
  10066. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10067. {
  10068. front: {
  10069. height: math.unit(6.5, "inches"),
  10070. weight: math.unit(13, "oz"),
  10071. name: "Front",
  10072. image: {
  10073. source: "./media/characters/dafydd-tomos/front.svg",
  10074. extra: 2990 / 2603,
  10075. bottom: 0.03
  10076. }
  10077. },
  10078. },
  10079. [
  10080. {
  10081. name: "Micro",
  10082. height: math.unit(6.5, "inches"),
  10083. default: true
  10084. },
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10089. {
  10090. front: {
  10091. height: math.unit(6, "feet"),
  10092. weight: math.unit(150, "lb"),
  10093. name: "Front",
  10094. image: {
  10095. source: "./media/characters/splinter/front.svg",
  10096. extra: 2990 / 2882,
  10097. bottom: 0.04
  10098. }
  10099. },
  10100. back: {
  10101. height: math.unit(6, "feet"),
  10102. weight: math.unit(150, "lb"),
  10103. name: "Back",
  10104. image: {
  10105. source: "./media/characters/splinter/back.svg",
  10106. extra: 2990 / 2882,
  10107. bottom: 0.04
  10108. }
  10109. },
  10110. },
  10111. [
  10112. {
  10113. name: "Normal",
  10114. height: math.unit(6, "feet")
  10115. },
  10116. {
  10117. name: "Macro",
  10118. height: math.unit(230, "meters"),
  10119. default: true
  10120. },
  10121. ]
  10122. ))
  10123. characterMakers.push(() => makeCharacter(
  10124. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10125. {
  10126. front: {
  10127. height: math.unit(4 + 10 / 12, "feet"),
  10128. weight: math.unit(480, "lb"),
  10129. name: "Front",
  10130. image: {
  10131. source: "./media/characters/snow-gabumon/front.svg",
  10132. extra: 1140 / 963,
  10133. bottom: 0.058
  10134. }
  10135. },
  10136. back: {
  10137. height: math.unit(4 + 10 / 12, "feet"),
  10138. weight: math.unit(480, "lb"),
  10139. name: "Back",
  10140. image: {
  10141. source: "./media/characters/snow-gabumon/back.svg",
  10142. extra: 1115 / 962,
  10143. bottom: 0.041
  10144. }
  10145. },
  10146. frontUndresed: {
  10147. height: math.unit(4 + 10 / 12, "feet"),
  10148. weight: math.unit(480, "lb"),
  10149. name: "Front (Undressed)",
  10150. image: {
  10151. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10152. extra: 1061 / 960,
  10153. bottom: 0.045
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Micro",
  10160. height: math.unit(1, "inch")
  10161. },
  10162. {
  10163. name: "Normal",
  10164. height: math.unit(4 + 10 / 12, "feet"),
  10165. default: true
  10166. },
  10167. {
  10168. name: "Macro",
  10169. height: math.unit(200, "feet")
  10170. },
  10171. {
  10172. name: "Megamacro",
  10173. height: math.unit(120, "miles")
  10174. },
  10175. {
  10176. name: "Gigamacro",
  10177. height: math.unit(9800, "miles")
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10183. {
  10184. front: {
  10185. height: math.unit(1.7, "meters"),
  10186. weight: math.unit(140, "lb"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/moody/front.svg",
  10190. extra: 3226 / 3007,
  10191. bottom: 0.087
  10192. }
  10193. },
  10194. },
  10195. [
  10196. {
  10197. name: "Micro",
  10198. height: math.unit(1, "mm")
  10199. },
  10200. {
  10201. name: "Normal",
  10202. height: math.unit(1.7, "meters"),
  10203. default: true
  10204. },
  10205. {
  10206. name: "Macro",
  10207. height: math.unit(80, "meters")
  10208. },
  10209. {
  10210. name: "Macro+",
  10211. height: math.unit(500, "meters")
  10212. },
  10213. ]
  10214. ))
  10215. characterMakers.push(() => makeCharacter(
  10216. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10217. {
  10218. front: {
  10219. height: math.unit(6, "feet"),
  10220. weight: math.unit(150, "lb"),
  10221. name: "Front",
  10222. image: {
  10223. source: "./media/characters/zyas/front.svg",
  10224. extra: 1180 / 1120,
  10225. bottom: 0.045
  10226. }
  10227. },
  10228. },
  10229. [
  10230. {
  10231. name: "Normal",
  10232. height: math.unit(10, "feet"),
  10233. default: true
  10234. },
  10235. {
  10236. name: "Macro",
  10237. height: math.unit(500, "feet")
  10238. },
  10239. {
  10240. name: "Megamacro",
  10241. height: math.unit(5, "miles")
  10242. },
  10243. {
  10244. name: "Teramacro",
  10245. height: math.unit(150000, "miles")
  10246. },
  10247. ]
  10248. ))
  10249. characterMakers.push(() => makeCharacter(
  10250. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10251. {
  10252. front: {
  10253. height: math.unit(6, "feet"),
  10254. weight: math.unit(150, "lb"),
  10255. name: "Front",
  10256. image: {
  10257. source: "./media/characters/cuon/front.svg",
  10258. extra: 1390 / 1320,
  10259. bottom: 0.008
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Micro",
  10266. height: math.unit(3, "inches")
  10267. },
  10268. {
  10269. name: "Normal",
  10270. height: math.unit(18 + 9 / 12, "feet"),
  10271. default: true
  10272. },
  10273. {
  10274. name: "Macro",
  10275. height: math.unit(360, "feet")
  10276. },
  10277. {
  10278. name: "Megamacro",
  10279. height: math.unit(360, "miles")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10285. {
  10286. front: {
  10287. height: math.unit(2.4, "meters"),
  10288. weight: math.unit(70, "kg"),
  10289. name: "Front",
  10290. image: {
  10291. source: "./media/characters/nyanuxk/front.svg",
  10292. extra: 1172 / 1084,
  10293. bottom: 0.065
  10294. }
  10295. },
  10296. side: {
  10297. height: math.unit(2.4, "meters"),
  10298. weight: math.unit(70, "kg"),
  10299. name: "Side",
  10300. image: {
  10301. source: "./media/characters/nyanuxk/side.svg",
  10302. extra: 1190 / 1132,
  10303. bottom: 0.007
  10304. }
  10305. },
  10306. back: {
  10307. height: math.unit(2.4, "meters"),
  10308. weight: math.unit(70, "kg"),
  10309. name: "Back",
  10310. image: {
  10311. source: "./media/characters/nyanuxk/back.svg",
  10312. extra: 1200 / 1141,
  10313. bottom: 0.015
  10314. }
  10315. },
  10316. foot: {
  10317. height: math.unit(0.52, "meters"),
  10318. name: "Foot",
  10319. image: {
  10320. source: "./media/characters/nyanuxk/foot.svg"
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Micro",
  10327. height: math.unit(2, "cm")
  10328. },
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(2.4, "meters"),
  10332. default: true
  10333. },
  10334. {
  10335. name: "Smaller Macro",
  10336. height: math.unit(120, "meters")
  10337. },
  10338. {
  10339. name: "Bigger Macro",
  10340. height: math.unit(1.2, "km")
  10341. },
  10342. {
  10343. name: "Megamacro",
  10344. height: math.unit(15, "kilometers")
  10345. },
  10346. {
  10347. name: "Gigamacro",
  10348. height: math.unit(2000, "km")
  10349. },
  10350. {
  10351. name: "Teramacro",
  10352. height: math.unit(500000, "km")
  10353. },
  10354. ]
  10355. ))
  10356. characterMakers.push(() => makeCharacter(
  10357. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10358. {
  10359. side: {
  10360. height: math.unit(6, "feet"),
  10361. name: "Side",
  10362. image: {
  10363. source: "./media/characters/ailbhe/side.svg",
  10364. extra: 757 / 464,
  10365. bottom: 0.041
  10366. }
  10367. },
  10368. },
  10369. [
  10370. {
  10371. name: "Normal",
  10372. height: math.unit(1.07, "meters"),
  10373. default: true
  10374. },
  10375. ]
  10376. ))
  10377. characterMakers.push(() => makeCharacter(
  10378. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10379. {
  10380. front: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(120, "kg"),
  10383. name: "Front",
  10384. image: {
  10385. source: "./media/characters/zevulfius/front.svg",
  10386. extra: 965 / 903
  10387. }
  10388. },
  10389. side: {
  10390. height: math.unit(6, "feet"),
  10391. weight: math.unit(120, "kg"),
  10392. name: "Side",
  10393. image: {
  10394. source: "./media/characters/zevulfius/side.svg",
  10395. extra: 939 / 900
  10396. }
  10397. },
  10398. back: {
  10399. height: math.unit(6, "feet"),
  10400. weight: math.unit(120, "kg"),
  10401. name: "Back",
  10402. image: {
  10403. source: "./media/characters/zevulfius/back.svg",
  10404. extra: 918 / 854,
  10405. bottom: 0.005
  10406. }
  10407. },
  10408. foot: {
  10409. height: math.unit(6 / 3.72, "feet"),
  10410. name: "Foot",
  10411. image: {
  10412. source: "./media/characters/zevulfius/foot.svg"
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Macro",
  10419. height: math.unit(750, "meters")
  10420. },
  10421. {
  10422. name: "Megamacro",
  10423. height: math.unit(20, "km"),
  10424. default: true
  10425. },
  10426. {
  10427. name: "Gigamacro",
  10428. height: math.unit(2000, "km")
  10429. },
  10430. {
  10431. name: "Teramacro",
  10432. height: math.unit(250000, "km")
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(100, "feet"),
  10441. weight: math.unit(350, "kg"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/rikes/front.svg",
  10445. extra: 1565 / 1483,
  10446. bottom: 0.017
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Macro",
  10453. height: math.unit(100, "feet"),
  10454. default: true
  10455. },
  10456. ]
  10457. ))
  10458. characterMakers.push(() => makeCharacter(
  10459. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10460. {
  10461. front: {
  10462. height: math.unit(8, "feet"),
  10463. weight: math.unit(356, "lb"),
  10464. name: "Front",
  10465. image: {
  10466. source: "./media/characters/adam-silver-mane/front.svg",
  10467. extra: 1036/937,
  10468. bottom: 63/1099
  10469. }
  10470. },
  10471. side: {
  10472. height: math.unit(8, "feet"),
  10473. weight: math.unit(356, "lb"),
  10474. name: "Side",
  10475. image: {
  10476. source: "./media/characters/adam-silver-mane/side.svg",
  10477. extra: 997/901,
  10478. bottom: 59/1056
  10479. }
  10480. },
  10481. frontNsfw: {
  10482. height: math.unit(8, "feet"),
  10483. weight: math.unit(356, "lb"),
  10484. name: "Front (NSFW)",
  10485. image: {
  10486. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10487. extra: 1036/937,
  10488. bottom: 63/1099
  10489. }
  10490. },
  10491. sideNsfw: {
  10492. height: math.unit(8, "feet"),
  10493. weight: math.unit(356, "lb"),
  10494. name: "Side (NSFW)",
  10495. image: {
  10496. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10497. extra: 997/901,
  10498. bottom: 59/1056
  10499. }
  10500. },
  10501. dick: {
  10502. height: math.unit(2.1, "feet"),
  10503. name: "Dick",
  10504. image: {
  10505. source: "./media/characters/adam-silver-mane/dick.svg"
  10506. }
  10507. },
  10508. taur: {
  10509. height: math.unit(16, "feet"),
  10510. weight: math.unit(1500, "kg"),
  10511. name: "Taur",
  10512. image: {
  10513. source: "./media/characters/adam-silver-mane/taur.svg",
  10514. extra: 1713 / 1571,
  10515. bottom: 0.01
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Normal",
  10522. height: math.unit(8, "feet")
  10523. },
  10524. {
  10525. name: "Minimacro",
  10526. height: math.unit(80, "feet")
  10527. },
  10528. {
  10529. name: "MDA",
  10530. height: math.unit(80, "meters")
  10531. },
  10532. {
  10533. name: "Macro",
  10534. height: math.unit(800, "feet"),
  10535. default: true
  10536. },
  10537. {
  10538. name: "Megamacro",
  10539. height: math.unit(8000, "feet")
  10540. },
  10541. {
  10542. name: "Gigamacro",
  10543. height: math.unit(800, "miles")
  10544. },
  10545. {
  10546. name: "Teramacro",
  10547. height: math.unit(80000, "miles")
  10548. },
  10549. {
  10550. name: "Celestial",
  10551. height: math.unit(8e6, "miles")
  10552. },
  10553. {
  10554. name: "Star Dragon",
  10555. height: math.unit(800000, "parsecs")
  10556. },
  10557. {
  10558. name: "Godly",
  10559. height: math.unit(800, "teraparsecs")
  10560. },
  10561. ]
  10562. ))
  10563. characterMakers.push(() => makeCharacter(
  10564. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10565. {
  10566. front: {
  10567. height: math.unit(6, "feet"),
  10568. weight: math.unit(150, "lb"),
  10569. name: "Front",
  10570. image: {
  10571. source: "./media/characters/ky'owin/front.svg",
  10572. extra: 3888 / 3068,
  10573. bottom: 0.015
  10574. }
  10575. },
  10576. },
  10577. [
  10578. {
  10579. name: "Normal",
  10580. height: math.unit(6 + 8 / 12, "feet")
  10581. },
  10582. {
  10583. name: "Large",
  10584. height: math.unit(68, "feet")
  10585. },
  10586. {
  10587. name: "Macro",
  10588. height: math.unit(132, "feet")
  10589. },
  10590. {
  10591. name: "Macro+",
  10592. height: math.unit(340, "feet")
  10593. },
  10594. {
  10595. name: "Macro++",
  10596. height: math.unit(680, "feet"),
  10597. default: true
  10598. },
  10599. {
  10600. name: "Megamacro",
  10601. height: math.unit(1, "mile")
  10602. },
  10603. {
  10604. name: "Megamacro+",
  10605. height: math.unit(10, "miles")
  10606. },
  10607. ]
  10608. ))
  10609. characterMakers.push(() => makeCharacter(
  10610. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10611. {
  10612. front: {
  10613. height: math.unit(4, "feet"),
  10614. weight: math.unit(50, "lb"),
  10615. name: "Front",
  10616. image: {
  10617. source: "./media/characters/mal/front.svg",
  10618. extra: 785 / 724,
  10619. bottom: 0.07
  10620. }
  10621. },
  10622. },
  10623. [
  10624. {
  10625. name: "Micro",
  10626. height: math.unit(4, "inches")
  10627. },
  10628. {
  10629. name: "Normal",
  10630. height: math.unit(4, "feet"),
  10631. default: true
  10632. },
  10633. {
  10634. name: "Macro",
  10635. height: math.unit(200, "feet")
  10636. },
  10637. ]
  10638. ))
  10639. characterMakers.push(() => makeCharacter(
  10640. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10641. {
  10642. front: {
  10643. height: math.unit(6, "feet"),
  10644. weight: math.unit(150, "lb"),
  10645. name: "Front",
  10646. image: {
  10647. source: "./media/characters/jordan-deware/front.svg",
  10648. extra: 1191 / 1012
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Nano",
  10655. height: math.unit(0.01, "mm")
  10656. },
  10657. {
  10658. name: "Minimicro",
  10659. height: math.unit(1, "mm")
  10660. },
  10661. {
  10662. name: "Micro",
  10663. height: math.unit(0.5, "inches")
  10664. },
  10665. {
  10666. name: "Normal",
  10667. height: math.unit(4, "feet"),
  10668. default: true
  10669. },
  10670. {
  10671. name: "Minimacro",
  10672. height: math.unit(40, "meters")
  10673. },
  10674. {
  10675. name: "Small Macro",
  10676. height: math.unit(400, "meters")
  10677. },
  10678. {
  10679. name: "Macro",
  10680. height: math.unit(4, "miles")
  10681. },
  10682. {
  10683. name: "Megamacro",
  10684. height: math.unit(40, "miles")
  10685. },
  10686. {
  10687. name: "Megamacro+",
  10688. height: math.unit(400, "miles")
  10689. },
  10690. {
  10691. name: "Gigamacro",
  10692. height: math.unit(400000, "miles")
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10698. {
  10699. side: {
  10700. height: math.unit(6, "feet"),
  10701. weight: math.unit(150, "lb"),
  10702. name: "Side",
  10703. image: {
  10704. source: "./media/characters/kimiko/side.svg",
  10705. extra: 600 / 358
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Normal",
  10712. height: math.unit(15, "feet"),
  10713. default: true
  10714. },
  10715. {
  10716. name: "Macro",
  10717. height: math.unit(220, "feet")
  10718. },
  10719. {
  10720. name: "Macro+",
  10721. height: math.unit(1450, "feet")
  10722. },
  10723. {
  10724. name: "Megamacro",
  10725. height: math.unit(11500, "feet")
  10726. },
  10727. {
  10728. name: "Gigamacro",
  10729. height: math.unit(9500, "miles")
  10730. },
  10731. {
  10732. name: "Teramacro",
  10733. height: math.unit(2208005005, "miles")
  10734. },
  10735. {
  10736. name: "Examacro",
  10737. height: math.unit(2750, "parsecs")
  10738. },
  10739. {
  10740. name: "Zettamacro",
  10741. height: math.unit(101500, "parsecs")
  10742. },
  10743. ]
  10744. ))
  10745. characterMakers.push(() => makeCharacter(
  10746. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10747. {
  10748. front: {
  10749. height: math.unit(6, "feet"),
  10750. weight: math.unit(70, "kg"),
  10751. name: "Front",
  10752. image: {
  10753. source: "./media/characters/andrew-sleepy/front.svg"
  10754. }
  10755. },
  10756. side: {
  10757. height: math.unit(6, "feet"),
  10758. weight: math.unit(70, "kg"),
  10759. name: "Side",
  10760. image: {
  10761. source: "./media/characters/andrew-sleepy/side.svg"
  10762. }
  10763. },
  10764. },
  10765. [
  10766. {
  10767. name: "Micro",
  10768. height: math.unit(1, "mm"),
  10769. default: true
  10770. },
  10771. ]
  10772. ))
  10773. characterMakers.push(() => makeCharacter(
  10774. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10775. {
  10776. front: {
  10777. height: math.unit(6, "feet"),
  10778. weight: math.unit(150, "lb"),
  10779. name: "Front",
  10780. image: {
  10781. source: "./media/characters/judio/front.svg",
  10782. extra: 1258 / 1110
  10783. }
  10784. },
  10785. },
  10786. [
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(5 + 6 / 12, "feet")
  10790. },
  10791. {
  10792. name: "Macro",
  10793. height: math.unit(1000, "feet"),
  10794. default: true
  10795. },
  10796. {
  10797. name: "Megamacro",
  10798. height: math.unit(10, "miles")
  10799. },
  10800. ]
  10801. ))
  10802. characterMakers.push(() => makeCharacter(
  10803. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10804. {
  10805. front: {
  10806. height: math.unit(6, "feet"),
  10807. weight: math.unit(68, "kg"),
  10808. name: "Front",
  10809. image: {
  10810. source: "./media/characters/nomaxice/front.svg",
  10811. extra: 1498 / 1073,
  10812. bottom: 0.075
  10813. }
  10814. },
  10815. foot: {
  10816. height: math.unit(1.1, "feet"),
  10817. name: "Foot",
  10818. image: {
  10819. source: "./media/characters/nomaxice/foot.svg"
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Micro",
  10826. height: math.unit(8, "cm")
  10827. },
  10828. {
  10829. name: "Norm",
  10830. height: math.unit(1.82, "m")
  10831. },
  10832. {
  10833. name: "Norm+",
  10834. height: math.unit(8.8, "feet")
  10835. },
  10836. {
  10837. name: "Big",
  10838. height: math.unit(8, "meters"),
  10839. default: true
  10840. },
  10841. {
  10842. name: "Macro",
  10843. height: math.unit(18, "meters")
  10844. },
  10845. {
  10846. name: "Macro+",
  10847. height: math.unit(88, "meters")
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10853. {
  10854. front: {
  10855. height: math.unit(12, "feet"),
  10856. weight: math.unit(1.5, "tons"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/dydros/front.svg",
  10860. extra: 863 / 800,
  10861. bottom: 0.015
  10862. }
  10863. },
  10864. back: {
  10865. height: math.unit(12, "feet"),
  10866. weight: math.unit(1.5, "tons"),
  10867. name: "Back",
  10868. image: {
  10869. source: "./media/characters/dydros/back.svg",
  10870. extra: 900 / 843,
  10871. bottom: 0.005
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Normal",
  10878. height: math.unit(12, "feet"),
  10879. default: true
  10880. },
  10881. ]
  10882. ))
  10883. characterMakers.push(() => makeCharacter(
  10884. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10885. {
  10886. front: {
  10887. height: math.unit(6, "feet"),
  10888. weight: math.unit(100, "kg"),
  10889. name: "Front",
  10890. image: {
  10891. source: "./media/characters/riggi/front.svg",
  10892. extra: 5787 / 5303
  10893. }
  10894. },
  10895. hyper: {
  10896. height: math.unit(6 * 5 / 3, "feet"),
  10897. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10898. name: "Hyper",
  10899. image: {
  10900. source: "./media/characters/riggi/hyper.svg",
  10901. extra: 3595 / 3485
  10902. }
  10903. },
  10904. },
  10905. [
  10906. {
  10907. name: "Small Macro",
  10908. height: math.unit(50, "feet")
  10909. },
  10910. {
  10911. name: "Default",
  10912. height: math.unit(200, "feet"),
  10913. default: true
  10914. },
  10915. {
  10916. name: "Loom",
  10917. height: math.unit(10000, "feet")
  10918. },
  10919. {
  10920. name: "Cruising Altitude",
  10921. height: math.unit(30000, "feet")
  10922. },
  10923. {
  10924. name: "Megamacro",
  10925. height: math.unit(100, "miles")
  10926. },
  10927. {
  10928. name: "Continent Sized",
  10929. height: math.unit(2800, "miles")
  10930. },
  10931. {
  10932. name: "Earth Sized",
  10933. height: math.unit(8000, "miles")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(250, "lb"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/alexi/front.svg",
  10946. extra: 3483 / 3291,
  10947. bottom: 0.04
  10948. }
  10949. },
  10950. back: {
  10951. height: math.unit(6, "feet"),
  10952. weight: math.unit(250, "lb"),
  10953. name: "Back",
  10954. image: {
  10955. source: "./media/characters/alexi/back.svg",
  10956. extra: 3533 / 3356,
  10957. bottom: 0.021
  10958. }
  10959. },
  10960. frontTransforming: {
  10961. height: math.unit(8.58, "feet"),
  10962. weight: math.unit(1300, "lb"),
  10963. name: "Transforming",
  10964. image: {
  10965. source: "./media/characters/alexi/front-transforming.svg",
  10966. extra: 437 / 409,
  10967. bottom: 19 / 458.66
  10968. }
  10969. },
  10970. frontTransformed: {
  10971. height: math.unit(12.5, "feet"),
  10972. weight: math.unit(4000, "lb"),
  10973. name: "Transformed",
  10974. image: {
  10975. source: "./media/characters/alexi/front-transformed.svg",
  10976. extra: 639 / 614,
  10977. bottom: 30.55 / 671
  10978. }
  10979. },
  10980. },
  10981. [
  10982. {
  10983. name: "Normal",
  10984. height: math.unit(14, "feet"),
  10985. default: true
  10986. },
  10987. {
  10988. name: "Minimacro",
  10989. height: math.unit(30, "meters")
  10990. },
  10991. {
  10992. name: "Macro",
  10993. height: math.unit(500, "meters")
  10994. },
  10995. {
  10996. name: "Megamacro",
  10997. height: math.unit(9000, "km")
  10998. },
  10999. {
  11000. name: "Teramacro",
  11001. height: math.unit(384000, "km")
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11007. {
  11008. front: {
  11009. height: math.unit(6, "feet"),
  11010. weight: math.unit(150, "lb"),
  11011. name: "Front",
  11012. image: {
  11013. source: "./media/characters/kayroo/front.svg",
  11014. extra: 1153 / 1038,
  11015. bottom: 0.06
  11016. }
  11017. },
  11018. foot: {
  11019. height: math.unit(6, "feet"),
  11020. weight: math.unit(150, "lb"),
  11021. name: "Foot",
  11022. image: {
  11023. source: "./media/characters/kayroo/foot.svg"
  11024. }
  11025. },
  11026. },
  11027. [
  11028. {
  11029. name: "Normal",
  11030. height: math.unit(8, "feet"),
  11031. default: true
  11032. },
  11033. {
  11034. name: "Minimacro",
  11035. height: math.unit(250, "feet")
  11036. },
  11037. {
  11038. name: "Macro",
  11039. height: math.unit(2800, "feet")
  11040. },
  11041. {
  11042. name: "Megamacro",
  11043. height: math.unit(5200, "feet")
  11044. },
  11045. {
  11046. name: "Gigamacro",
  11047. height: math.unit(27000, "feet")
  11048. },
  11049. {
  11050. name: "Omega",
  11051. height: math.unit(45000, "feet")
  11052. },
  11053. ]
  11054. ))
  11055. characterMakers.push(() => makeCharacter(
  11056. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11057. {
  11058. front: {
  11059. height: math.unit(18, "feet"),
  11060. weight: math.unit(5800, "lb"),
  11061. name: "Front",
  11062. image: {
  11063. source: "./media/characters/rhys/front.svg",
  11064. extra: 3386 / 3090,
  11065. bottom: 0.07
  11066. }
  11067. },
  11068. },
  11069. [
  11070. {
  11071. name: "Normal",
  11072. height: math.unit(18, "feet"),
  11073. default: true
  11074. },
  11075. {
  11076. name: "Working Size",
  11077. height: math.unit(200, "feet")
  11078. },
  11079. {
  11080. name: "Demolition Size",
  11081. height: math.unit(2000, "feet")
  11082. },
  11083. {
  11084. name: "Maximum Licensed Size",
  11085. height: math.unit(5, "miles")
  11086. },
  11087. {
  11088. name: "Maximum Observed Size",
  11089. height: math.unit(10, "yottameters")
  11090. },
  11091. ]
  11092. ))
  11093. characterMakers.push(() => makeCharacter(
  11094. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11095. {
  11096. front: {
  11097. height: math.unit(6, "feet"),
  11098. weight: math.unit(250, "lb"),
  11099. name: "Front",
  11100. image: {
  11101. source: "./media/characters/toto/front.svg",
  11102. extra: 527 / 479,
  11103. bottom: 0.05
  11104. }
  11105. },
  11106. },
  11107. [
  11108. {
  11109. name: "Micro",
  11110. height: math.unit(3, "feet")
  11111. },
  11112. {
  11113. name: "Normal",
  11114. height: math.unit(10, "feet")
  11115. },
  11116. {
  11117. name: "Macro",
  11118. height: math.unit(150, "feet"),
  11119. default: true
  11120. },
  11121. {
  11122. name: "Megamacro",
  11123. height: math.unit(1200, "feet")
  11124. },
  11125. ]
  11126. ))
  11127. characterMakers.push(() => makeCharacter(
  11128. { name: "King", species: ["lion"], tags: ["anthro"] },
  11129. {
  11130. back: {
  11131. height: math.unit(6, "feet"),
  11132. weight: math.unit(150, "lb"),
  11133. name: "Back",
  11134. image: {
  11135. source: "./media/characters/king/back.svg"
  11136. }
  11137. },
  11138. },
  11139. [
  11140. {
  11141. name: "Micro",
  11142. height: math.unit(2, "inches")
  11143. },
  11144. {
  11145. name: "Normal",
  11146. height: math.unit(8, "feet")
  11147. },
  11148. {
  11149. name: "Macro",
  11150. height: math.unit(200, "feet"),
  11151. default: true
  11152. },
  11153. {
  11154. name: "Megamacro",
  11155. height: math.unit(50, "miles")
  11156. },
  11157. ]
  11158. ))
  11159. characterMakers.push(() => makeCharacter(
  11160. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11161. {
  11162. front: {
  11163. height: math.unit(11, "feet"),
  11164. weight: math.unit(1400, "lb"),
  11165. name: "Front",
  11166. image: {
  11167. source: "./media/characters/cordite/front.svg",
  11168. extra: 1919/1827,
  11169. bottom: 40/1959
  11170. }
  11171. },
  11172. side: {
  11173. height: math.unit(11, "feet"),
  11174. weight: math.unit(1400, "lb"),
  11175. name: "Side",
  11176. image: {
  11177. source: "./media/characters/cordite/side.svg",
  11178. extra: 1908/1793,
  11179. bottom: 38/1946
  11180. }
  11181. },
  11182. back: {
  11183. height: math.unit(11, "feet"),
  11184. weight: math.unit(1400, "lb"),
  11185. name: "Back",
  11186. image: {
  11187. source: "./media/characters/cordite/back.svg",
  11188. extra: 1938/1837,
  11189. bottom: 10/1948
  11190. }
  11191. },
  11192. feral: {
  11193. height: math.unit(2, "feet"),
  11194. weight: math.unit(90, "lb"),
  11195. name: "Feral",
  11196. image: {
  11197. source: "./media/characters/cordite/feral.svg",
  11198. extra: 1260 / 755,
  11199. bottom: 0.05
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Normal",
  11206. height: math.unit(11, "feet"),
  11207. default: true
  11208. },
  11209. ]
  11210. ))
  11211. characterMakers.push(() => makeCharacter(
  11212. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11213. {
  11214. front: {
  11215. height: math.unit(6, "feet"),
  11216. weight: math.unit(150, "lb"),
  11217. name: "Front",
  11218. image: {
  11219. source: "./media/characters/pianostrong/front.svg",
  11220. extra: 6577 / 6254,
  11221. bottom: 0.02
  11222. }
  11223. },
  11224. side: {
  11225. height: math.unit(6, "feet"),
  11226. weight: math.unit(150, "lb"),
  11227. name: "Side",
  11228. image: {
  11229. source: "./media/characters/pianostrong/side.svg",
  11230. extra: 6106 / 5730
  11231. }
  11232. },
  11233. back: {
  11234. height: math.unit(6, "feet"),
  11235. weight: math.unit(150, "lb"),
  11236. name: "Back",
  11237. image: {
  11238. source: "./media/characters/pianostrong/back.svg",
  11239. extra: 6085 / 5733,
  11240. bottom: 0.01
  11241. }
  11242. },
  11243. },
  11244. [
  11245. {
  11246. name: "Macro",
  11247. height: math.unit(100, "feet")
  11248. },
  11249. {
  11250. name: "Macro+",
  11251. height: math.unit(300, "feet"),
  11252. default: true
  11253. },
  11254. {
  11255. name: "Macro++",
  11256. height: math.unit(1000, "feet")
  11257. },
  11258. ]
  11259. ))
  11260. characterMakers.push(() => makeCharacter(
  11261. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11262. {
  11263. front: {
  11264. height: math.unit(6, "feet"),
  11265. weight: math.unit(150, "lb"),
  11266. name: "Front",
  11267. image: {
  11268. source: "./media/characters/kona/front.svg",
  11269. extra: 2960 / 2629,
  11270. bottom: 0.005
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(11 + 8 / 12, "feet")
  11278. },
  11279. {
  11280. name: "Macro",
  11281. height: math.unit(850, "feet"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Macro+",
  11286. height: math.unit(1.5, "km"),
  11287. default: true
  11288. },
  11289. {
  11290. name: "Megamacro",
  11291. height: math.unit(80, "miles")
  11292. },
  11293. {
  11294. name: "Gigamacro",
  11295. height: math.unit(3500, "miles")
  11296. },
  11297. ]
  11298. ))
  11299. characterMakers.push(() => makeCharacter(
  11300. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11301. {
  11302. side: {
  11303. height: math.unit(1.9, "meters"),
  11304. weight: math.unit(326, "kg"),
  11305. name: "Side",
  11306. image: {
  11307. source: "./media/characters/levi/side.svg",
  11308. extra: 1704 / 1334,
  11309. bottom: 0.02
  11310. }
  11311. },
  11312. },
  11313. [
  11314. {
  11315. name: "Normal",
  11316. height: math.unit(1.9, "meters"),
  11317. default: true
  11318. },
  11319. {
  11320. name: "Macro",
  11321. height: math.unit(20, "meters")
  11322. },
  11323. {
  11324. name: "Macro+",
  11325. height: math.unit(200, "meters")
  11326. },
  11327. {
  11328. name: "Megamacro",
  11329. height: math.unit(2, "km")
  11330. },
  11331. {
  11332. name: "Megamacro+",
  11333. height: math.unit(20, "km")
  11334. },
  11335. {
  11336. name: "Gigamacro",
  11337. height: math.unit(2500, "km")
  11338. },
  11339. {
  11340. name: "Gigamacro+",
  11341. height: math.unit(120000, "km")
  11342. },
  11343. {
  11344. name: "Teramacro",
  11345. height: math.unit(7.77e6, "km")
  11346. },
  11347. ]
  11348. ))
  11349. characterMakers.push(() => makeCharacter(
  11350. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11351. {
  11352. front: {
  11353. height: math.unit(6 + 4/12, "feet"),
  11354. weight: math.unit(190, "lb"),
  11355. name: "Front",
  11356. image: {
  11357. source: "./media/characters/bmc/front.svg",
  11358. extra: 1626/1472,
  11359. bottom: 79/1705
  11360. }
  11361. },
  11362. back: {
  11363. height: math.unit(6 + 4/12, "feet"),
  11364. weight: math.unit(190, "lb"),
  11365. name: "Back",
  11366. image: {
  11367. source: "./media/characters/bmc/back.svg",
  11368. extra: 1640/1479,
  11369. bottom: 45/1685
  11370. }
  11371. },
  11372. frontArmor: {
  11373. height: math.unit(6 + 4/12, "feet"),
  11374. weight: math.unit(190, "lb"),
  11375. name: "Front-armor",
  11376. image: {
  11377. source: "./media/characters/bmc/front-armor.svg",
  11378. extra: 1538/1468,
  11379. bottom: 79/1617
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Human-sized",
  11386. height: math.unit(6 + 4 / 12, "feet")
  11387. },
  11388. {
  11389. name: "Interactive Size",
  11390. height: math.unit(25, "feet")
  11391. },
  11392. {
  11393. name: "Small",
  11394. height: math.unit(250, "feet")
  11395. },
  11396. {
  11397. name: "Normal",
  11398. height: math.unit(1250, "feet"),
  11399. default: true
  11400. },
  11401. {
  11402. name: "Good Day",
  11403. height: math.unit(88, "miles")
  11404. },
  11405. {
  11406. name: "Largest Measured Size",
  11407. height: math.unit(105.960, "galaxies")
  11408. },
  11409. ]
  11410. ))
  11411. characterMakers.push(() => makeCharacter(
  11412. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11413. {
  11414. front: {
  11415. height: math.unit(20, "feet"),
  11416. weight: math.unit(2016, "kg"),
  11417. name: "Front",
  11418. image: {
  11419. source: "./media/characters/sven-the-kaiju/front.svg",
  11420. extra: 1277/1250,
  11421. bottom: 35/1312
  11422. }
  11423. },
  11424. mouth: {
  11425. height: math.unit(1.85, "feet"),
  11426. name: "Mouth",
  11427. image: {
  11428. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Fairy",
  11435. height: math.unit(6, "inches")
  11436. },
  11437. {
  11438. name: "Normal",
  11439. height: math.unit(20, "feet"),
  11440. default: true
  11441. },
  11442. {
  11443. name: "Rampage",
  11444. height: math.unit(200, "feet")
  11445. },
  11446. {
  11447. name: "Archfey Forest Guardian",
  11448. height: math.unit(1, "mile")
  11449. },
  11450. ]
  11451. ))
  11452. characterMakers.push(() => makeCharacter(
  11453. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11454. {
  11455. front: {
  11456. height: math.unit(4, "meters"),
  11457. weight: math.unit(2, "tons"),
  11458. name: "Front",
  11459. image: {
  11460. source: "./media/characters/marik/front.svg",
  11461. extra: 1057 / 1003,
  11462. bottom: 0.08
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Normal",
  11469. height: math.unit(4, "meters"),
  11470. default: true
  11471. },
  11472. {
  11473. name: "Macro",
  11474. height: math.unit(20, "meters")
  11475. },
  11476. {
  11477. name: "Megamacro",
  11478. height: math.unit(50, "km")
  11479. },
  11480. {
  11481. name: "Gigamacro",
  11482. height: math.unit(100, "km")
  11483. },
  11484. {
  11485. name: "Alpha Macro",
  11486. height: math.unit(7.88e7, "yottameters")
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11492. {
  11493. front: {
  11494. height: math.unit(6, "feet"),
  11495. weight: math.unit(110, "lb"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/mel/front.svg",
  11499. extra: 736 / 617,
  11500. bottom: 0.017
  11501. }
  11502. },
  11503. },
  11504. [
  11505. {
  11506. name: "Pico",
  11507. height: math.unit(3, "pm")
  11508. },
  11509. {
  11510. name: "Nano",
  11511. height: math.unit(3, "nm")
  11512. },
  11513. {
  11514. name: "Micro",
  11515. height: math.unit(0.3, "mm"),
  11516. default: true
  11517. },
  11518. {
  11519. name: "Micro+",
  11520. height: math.unit(3, "mm")
  11521. },
  11522. {
  11523. name: "Normal",
  11524. height: math.unit(5 + 10.5 / 12, "feet")
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11530. {
  11531. kaiju: {
  11532. height: math.unit(1.75, "meters"),
  11533. weight: math.unit(55, "kg"),
  11534. name: "Kaiju",
  11535. image: {
  11536. source: "./media/characters/lykonous/kaiju.svg",
  11537. extra: 1055 / 946,
  11538. bottom: 0.135
  11539. }
  11540. },
  11541. },
  11542. [
  11543. {
  11544. name: "Normal",
  11545. height: math.unit(2.5, "meters"),
  11546. default: true
  11547. },
  11548. {
  11549. name: "Kaiju Dragon",
  11550. height: math.unit(60, "meters")
  11551. },
  11552. {
  11553. name: "Mega Kaiju",
  11554. height: math.unit(120, "km")
  11555. },
  11556. {
  11557. name: "Giga Kaiju",
  11558. height: math.unit(200, "megameters")
  11559. },
  11560. {
  11561. name: "Terra Kaiju",
  11562. height: math.unit(400, "gigameters")
  11563. },
  11564. {
  11565. name: "Kaiju Dragon God",
  11566. height: math.unit(13000, "exaparsecs")
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11572. {
  11573. front: {
  11574. height: math.unit(6, "feet"),
  11575. weight: math.unit(150, "lb"),
  11576. name: "Front",
  11577. image: {
  11578. source: "./media/characters/blü/front.svg",
  11579. extra: 1883 / 1564,
  11580. bottom: 0.031
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Normal",
  11587. height: math.unit(13, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Big Boi",
  11592. height: math.unit(150, "meters")
  11593. },
  11594. {
  11595. name: "Mini Stomper",
  11596. height: math.unit(300, "meters")
  11597. },
  11598. {
  11599. name: "Macro",
  11600. height: math.unit(1000, "meters")
  11601. },
  11602. {
  11603. name: "Megamacro",
  11604. height: math.unit(11000, "meters")
  11605. },
  11606. {
  11607. name: "Gigamacro",
  11608. height: math.unit(11000, "km")
  11609. },
  11610. {
  11611. name: "Teramacro",
  11612. height: math.unit(420000, "km")
  11613. },
  11614. {
  11615. name: "Examacro",
  11616. height: math.unit(120, "parsecs")
  11617. },
  11618. {
  11619. name: "God Tho",
  11620. height: math.unit(98000000000, "parsecs")
  11621. },
  11622. ]
  11623. ))
  11624. characterMakers.push(() => makeCharacter(
  11625. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11626. {
  11627. taurFront: {
  11628. height: math.unit(6, "feet"),
  11629. weight: math.unit(200, "lb"),
  11630. name: "Taur (Front)",
  11631. image: {
  11632. source: "./media/characters/scales/taur-front.svg",
  11633. extra: 1,
  11634. bottom: 0.05
  11635. }
  11636. },
  11637. taurBack: {
  11638. height: math.unit(6, "feet"),
  11639. weight: math.unit(200, "lb"),
  11640. name: "Taur (Back)",
  11641. image: {
  11642. source: "./media/characters/scales/taur-back.svg",
  11643. extra: 1,
  11644. bottom: 0.08
  11645. }
  11646. },
  11647. anthro: {
  11648. height: math.unit(6 * 7 / 12, "feet"),
  11649. weight: math.unit(100, "lb"),
  11650. name: "Anthro",
  11651. image: {
  11652. source: "./media/characters/scales/anthro.svg",
  11653. extra: 1,
  11654. bottom: 0.06
  11655. }
  11656. },
  11657. },
  11658. [
  11659. {
  11660. name: "Normal",
  11661. height: math.unit(12, "feet"),
  11662. default: true
  11663. },
  11664. ]
  11665. ))
  11666. characterMakers.push(() => makeCharacter(
  11667. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11668. {
  11669. front: {
  11670. height: math.unit(6, "feet"),
  11671. weight: math.unit(150, "lb"),
  11672. name: "Front",
  11673. image: {
  11674. source: "./media/characters/koragos/front.svg",
  11675. extra: 841 / 794,
  11676. bottom: 0.035
  11677. }
  11678. },
  11679. back: {
  11680. height: math.unit(6, "feet"),
  11681. weight: math.unit(150, "lb"),
  11682. name: "Back",
  11683. image: {
  11684. source: "./media/characters/koragos/back.svg",
  11685. extra: 841 / 810,
  11686. bottom: 0.022
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Normal",
  11693. height: math.unit(6 + 11 / 12, "feet"),
  11694. default: true
  11695. },
  11696. {
  11697. name: "Macro",
  11698. height: math.unit(490, "feet")
  11699. },
  11700. {
  11701. name: "Megamacro",
  11702. height: math.unit(10, "miles")
  11703. },
  11704. {
  11705. name: "Gigamacro",
  11706. height: math.unit(50, "miles")
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11712. {
  11713. front: {
  11714. height: math.unit(6, "feet"),
  11715. weight: math.unit(250, "lb"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/xylrem/front.svg",
  11719. extra: 3323 / 3050,
  11720. bottom: 0.065
  11721. }
  11722. },
  11723. },
  11724. [
  11725. {
  11726. name: "Micro",
  11727. height: math.unit(4, "feet")
  11728. },
  11729. {
  11730. name: "Normal",
  11731. height: math.unit(16, "feet"),
  11732. default: true
  11733. },
  11734. {
  11735. name: "Macro",
  11736. height: math.unit(2720, "feet")
  11737. },
  11738. {
  11739. name: "Megamacro",
  11740. height: math.unit(25000, "miles")
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11746. {
  11747. front: {
  11748. height: math.unit(8, "feet"),
  11749. weight: math.unit(250, "kg"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/ikideru/front.svg",
  11753. extra: 930 / 870,
  11754. bottom: 0.087
  11755. }
  11756. },
  11757. back: {
  11758. height: math.unit(8, "feet"),
  11759. weight: math.unit(250, "kg"),
  11760. name: "Back",
  11761. image: {
  11762. source: "./media/characters/ikideru/back.svg",
  11763. extra: 919 / 852,
  11764. bottom: 0.055
  11765. }
  11766. },
  11767. },
  11768. [
  11769. {
  11770. name: "Rare",
  11771. height: math.unit(8, "feet"),
  11772. default: true
  11773. },
  11774. {
  11775. name: "Playful Loom",
  11776. height: math.unit(80, "feet")
  11777. },
  11778. {
  11779. name: "City Leaner",
  11780. height: math.unit(230, "feet")
  11781. },
  11782. {
  11783. name: "Megamacro",
  11784. height: math.unit(2500, "feet")
  11785. },
  11786. {
  11787. name: "Gigamacro",
  11788. height: math.unit(26400, "feet")
  11789. },
  11790. {
  11791. name: "Tectonic Shifter",
  11792. height: math.unit(1.7, "megameters")
  11793. },
  11794. {
  11795. name: "Planet Carer",
  11796. height: math.unit(21, "megameters")
  11797. },
  11798. {
  11799. name: "God",
  11800. height: math.unit(11157.22, "parsecs")
  11801. },
  11802. ]
  11803. ))
  11804. characterMakers.push(() => makeCharacter(
  11805. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11806. {
  11807. front: {
  11808. height: math.unit(6, "feet"),
  11809. weight: math.unit(120, "lb"),
  11810. name: "Front",
  11811. image: {
  11812. source: "./media/characters/neo/front.svg"
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Micro",
  11819. height: math.unit(2, "inches"),
  11820. default: true
  11821. },
  11822. {
  11823. name: "Human Size",
  11824. height: math.unit(5 + 8 / 12, "feet")
  11825. },
  11826. ]
  11827. ))
  11828. characterMakers.push(() => makeCharacter(
  11829. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11830. {
  11831. front: {
  11832. height: math.unit(13 + 10 / 12, "feet"),
  11833. weight: math.unit(5320, "lb"),
  11834. name: "Front",
  11835. image: {
  11836. source: "./media/characters/chauncey-chantz/front.svg",
  11837. extra: 1587 / 1435,
  11838. bottom: 0.02
  11839. }
  11840. },
  11841. },
  11842. [
  11843. {
  11844. name: "Normal",
  11845. height: math.unit(13 + 10 / 12, "feet"),
  11846. default: true
  11847. },
  11848. {
  11849. name: "Macro",
  11850. height: math.unit(45, "feet")
  11851. },
  11852. {
  11853. name: "Megamacro",
  11854. height: math.unit(250, "miles")
  11855. },
  11856. {
  11857. name: "Planetary",
  11858. height: math.unit(10000, "miles")
  11859. },
  11860. {
  11861. name: "Galactic",
  11862. height: math.unit(40000, "parsecs")
  11863. },
  11864. {
  11865. name: "Universal",
  11866. height: math.unit(1, "yottameter")
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11872. {
  11873. front: {
  11874. height: math.unit(6, "feet"),
  11875. weight: math.unit(150, "lb"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/epifox/front.svg",
  11879. extra: 1,
  11880. bottom: 0.075
  11881. }
  11882. },
  11883. },
  11884. [
  11885. {
  11886. name: "Micro",
  11887. height: math.unit(6, "inches")
  11888. },
  11889. {
  11890. name: "Normal",
  11891. height: math.unit(12, "feet"),
  11892. default: true
  11893. },
  11894. {
  11895. name: "Macro",
  11896. height: math.unit(3810, "feet")
  11897. },
  11898. {
  11899. name: "Megamacro",
  11900. height: math.unit(500, "miles")
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11906. {
  11907. front: {
  11908. height: math.unit(1.8796, "m"),
  11909. weight: math.unit(230, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/colin-t/front.svg",
  11913. extra: 1272 / 1193,
  11914. bottom: 0.07
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Micro",
  11921. height: math.unit(0.571, "meters")
  11922. },
  11923. {
  11924. name: "Normal",
  11925. height: math.unit(1.8796, "meters"),
  11926. default: true
  11927. },
  11928. {
  11929. name: "Tall",
  11930. height: math.unit(4, "meters")
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(67.241, "meters")
  11935. },
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(371.856, "meters")
  11939. },
  11940. {
  11941. name: "Planetary",
  11942. height: math.unit(12631.5689, "km")
  11943. },
  11944. ]
  11945. ))
  11946. characterMakers.push(() => makeCharacter(
  11947. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11948. {
  11949. front: {
  11950. height: math.unit(1.85, "meters"),
  11951. weight: math.unit(80, "kg"),
  11952. name: "Front",
  11953. image: {
  11954. source: "./media/characters/matvei/front.svg",
  11955. extra: 614 / 594,
  11956. bottom: 0.01
  11957. }
  11958. },
  11959. },
  11960. [
  11961. {
  11962. name: "Normal",
  11963. height: math.unit(1.85, "meters"),
  11964. default: true
  11965. },
  11966. ]
  11967. ))
  11968. characterMakers.push(() => makeCharacter(
  11969. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11970. {
  11971. front: {
  11972. height: math.unit(5 + 9 / 12, "feet"),
  11973. weight: math.unit(70, "lb"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/quincy/front.svg",
  11977. extra: 3041 / 2751
  11978. }
  11979. },
  11980. back: {
  11981. height: math.unit(5 + 9 / 12, "feet"),
  11982. weight: math.unit(70, "lb"),
  11983. name: "Back",
  11984. image: {
  11985. source: "./media/characters/quincy/back.svg",
  11986. extra: 3041 / 2751
  11987. }
  11988. },
  11989. flying: {
  11990. height: math.unit(5 + 4 / 12, "feet"),
  11991. weight: math.unit(70, "lb"),
  11992. name: "Flying",
  11993. image: {
  11994. source: "./media/characters/quincy/flying.svg",
  11995. extra: 1044 / 930
  11996. }
  11997. },
  11998. },
  11999. [
  12000. {
  12001. name: "Micro",
  12002. height: math.unit(3, "cm")
  12003. },
  12004. {
  12005. name: "Normal",
  12006. height: math.unit(5 + 9 / 12, "feet")
  12007. },
  12008. {
  12009. name: "Macro",
  12010. height: math.unit(200, "meters"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Megamacro",
  12015. height: math.unit(1000, "meters")
  12016. },
  12017. ]
  12018. ))
  12019. characterMakers.push(() => makeCharacter(
  12020. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12021. {
  12022. front: {
  12023. height: math.unit(3 + 11/12, "feet"),
  12024. weight: math.unit(50, "lb"),
  12025. name: "Front",
  12026. image: {
  12027. source: "./media/characters/vanrel/front.svg",
  12028. extra: 1104/949,
  12029. bottom: 52/1156
  12030. }
  12031. },
  12032. back: {
  12033. height: math.unit(3 + 11/12, "feet"),
  12034. weight: math.unit(50, "lb"),
  12035. name: "Back",
  12036. image: {
  12037. source: "./media/characters/vanrel/back.svg",
  12038. extra: 1119/976,
  12039. bottom: 37/1156
  12040. }
  12041. },
  12042. tome: {
  12043. height: math.unit(1.35, "feet"),
  12044. weight: math.unit(10, "lb"),
  12045. name: "Vanrel's Tome",
  12046. rename: true,
  12047. image: {
  12048. source: "./media/characters/vanrel/tome.svg"
  12049. }
  12050. },
  12051. beans: {
  12052. height: math.unit(0.89, "feet"),
  12053. name: "Beans",
  12054. image: {
  12055. source: "./media/characters/vanrel/beans.svg"
  12056. }
  12057. },
  12058. },
  12059. [
  12060. {
  12061. name: "Normal",
  12062. height: math.unit(3 + 11/12, "feet"),
  12063. default: true
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(7 + 5 / 12, "feet"),
  12072. name: "Front",
  12073. image: {
  12074. source: "./media/characters/kuiper-vanrel/front.svg",
  12075. extra: 1219/1169,
  12076. bottom: 69/1288
  12077. }
  12078. },
  12079. back: {
  12080. height: math.unit(7 + 5 / 12, "feet"),
  12081. name: "Back",
  12082. image: {
  12083. source: "./media/characters/kuiper-vanrel/back.svg",
  12084. extra: 1236/1193,
  12085. bottom: 27/1263
  12086. }
  12087. },
  12088. foot: {
  12089. height: math.unit(0.55, "meters"),
  12090. name: "Foot",
  12091. image: {
  12092. source: "./media/characters/kuiper-vanrel/foot.svg",
  12093. }
  12094. },
  12095. battle: {
  12096. height: math.unit(6.824, "feet"),
  12097. name: "Battle",
  12098. image: {
  12099. source: "./media/characters/kuiper-vanrel/battle.svg",
  12100. extra: 1466 / 1327,
  12101. bottom: 29 / 1492.5
  12102. }
  12103. },
  12104. meerkui: {
  12105. height: math.unit(18, "inches"),
  12106. name: "Meerkui",
  12107. image: {
  12108. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12109. extra: 1354/1289,
  12110. bottom: 69/1423
  12111. }
  12112. },
  12113. },
  12114. [
  12115. {
  12116. name: "Normal",
  12117. height: math.unit(7 + 5 / 12, "feet"),
  12118. default: true
  12119. },
  12120. ]
  12121. ))
  12122. characterMakers.push(() => makeCharacter(
  12123. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12124. {
  12125. front: {
  12126. height: math.unit(8 + 5 / 12, "feet"),
  12127. name: "Front",
  12128. image: {
  12129. source: "./media/characters/keset-vanrel/front.svg",
  12130. extra: 1231/1148,
  12131. bottom: 82/1313
  12132. }
  12133. },
  12134. back: {
  12135. height: math.unit(8 + 5 / 12, "feet"),
  12136. name: "Back",
  12137. image: {
  12138. source: "./media/characters/keset-vanrel/back.svg",
  12139. extra: 1240/1174,
  12140. bottom: 33/1273
  12141. }
  12142. },
  12143. hand: {
  12144. height: math.unit(0.6, "meters"),
  12145. name: "Hand",
  12146. image: {
  12147. source: "./media/characters/keset-vanrel/hand.svg"
  12148. }
  12149. },
  12150. foot: {
  12151. height: math.unit(0.94978, "meters"),
  12152. name: "Foot",
  12153. image: {
  12154. source: "./media/characters/keset-vanrel/foot.svg"
  12155. }
  12156. },
  12157. battle: {
  12158. height: math.unit(7.408, "feet"),
  12159. name: "Battle",
  12160. image: {
  12161. source: "./media/characters/keset-vanrel/battle.svg",
  12162. extra: 1890 / 1386,
  12163. bottom: 73.28 / 1970
  12164. }
  12165. },
  12166. },
  12167. [
  12168. {
  12169. name: "Normal",
  12170. height: math.unit(8 + 5 / 12, "feet"),
  12171. default: true
  12172. },
  12173. ]
  12174. ))
  12175. characterMakers.push(() => makeCharacter(
  12176. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12177. {
  12178. front: {
  12179. height: math.unit(6, "feet"),
  12180. weight: math.unit(150, "lb"),
  12181. name: "Front",
  12182. image: {
  12183. source: "./media/characters/neos/front.svg",
  12184. extra: 1696 / 992,
  12185. bottom: 0.14
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(54, "cm"),
  12193. default: true
  12194. },
  12195. {
  12196. name: "Macro",
  12197. height: math.unit(100, "m")
  12198. },
  12199. {
  12200. name: "Megamacro",
  12201. height: math.unit(10, "km")
  12202. },
  12203. {
  12204. name: "Megamacro+",
  12205. height: math.unit(100, "km")
  12206. },
  12207. {
  12208. name: "Gigamacro",
  12209. height: math.unit(100, "Mm")
  12210. },
  12211. {
  12212. name: "Teramacro",
  12213. height: math.unit(100, "Gm")
  12214. },
  12215. {
  12216. name: "Examacro",
  12217. height: math.unit(100, "Em")
  12218. },
  12219. {
  12220. name: "Godly",
  12221. height: math.unit(10000, "Ym")
  12222. },
  12223. {
  12224. name: "Beyond Godly",
  12225. height: math.unit(25, "multiverses")
  12226. },
  12227. ]
  12228. ))
  12229. characterMakers.push(() => makeCharacter(
  12230. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12231. {
  12232. feminine: {
  12233. height: math.unit(5, "feet"),
  12234. weight: math.unit(100, "lb"),
  12235. name: "Feminine",
  12236. image: {
  12237. source: "./media/characters/sammy-mouse/feminine.svg",
  12238. extra: 2526 / 2425,
  12239. bottom: 0.123
  12240. }
  12241. },
  12242. masculine: {
  12243. height: math.unit(5, "feet"),
  12244. weight: math.unit(100, "lb"),
  12245. name: "Masculine",
  12246. image: {
  12247. source: "./media/characters/sammy-mouse/masculine.svg",
  12248. extra: 2526 / 2425,
  12249. bottom: 0.123
  12250. }
  12251. },
  12252. },
  12253. [
  12254. {
  12255. name: "Micro",
  12256. height: math.unit(5, "inches")
  12257. },
  12258. {
  12259. name: "Normal",
  12260. height: math.unit(5, "feet"),
  12261. default: true
  12262. },
  12263. {
  12264. name: "Macro",
  12265. height: math.unit(60, "feet")
  12266. },
  12267. ]
  12268. ))
  12269. characterMakers.push(() => makeCharacter(
  12270. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12271. {
  12272. front: {
  12273. height: math.unit(4, "feet"),
  12274. weight: math.unit(50, "lb"),
  12275. name: "Front",
  12276. image: {
  12277. source: "./media/characters/kole/front.svg",
  12278. extra: 1423 / 1303,
  12279. bottom: 0.025
  12280. }
  12281. },
  12282. back: {
  12283. height: math.unit(4, "feet"),
  12284. weight: math.unit(50, "lb"),
  12285. name: "Back",
  12286. image: {
  12287. source: "./media/characters/kole/back.svg",
  12288. extra: 1426 / 1280,
  12289. bottom: 0.02
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Normal",
  12296. height: math.unit(4, "feet"),
  12297. default: true
  12298. },
  12299. ]
  12300. ))
  12301. characterMakers.push(() => makeCharacter(
  12302. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12303. {
  12304. front: {
  12305. height: math.unit(2.5, "feet"),
  12306. weight: math.unit(32, "lb"),
  12307. name: "Front",
  12308. image: {
  12309. source: "./media/characters/rufran/front.svg",
  12310. extra: 1313/885,
  12311. bottom: 94/1407
  12312. }
  12313. },
  12314. side: {
  12315. height: math.unit(2.5, "feet"),
  12316. weight: math.unit(32, "lb"),
  12317. name: "Side",
  12318. image: {
  12319. source: "./media/characters/rufran/side.svg",
  12320. extra: 1109/852,
  12321. bottom: 118/1227
  12322. }
  12323. },
  12324. back: {
  12325. height: math.unit(2.5, "feet"),
  12326. weight: math.unit(32, "lb"),
  12327. name: "Back",
  12328. image: {
  12329. source: "./media/characters/rufran/back.svg",
  12330. extra: 1280/878,
  12331. bottom: 131/1411
  12332. }
  12333. },
  12334. mouth: {
  12335. height: math.unit(1.13, "feet"),
  12336. name: "Mouth",
  12337. image: {
  12338. source: "./media/characters/rufran/mouth.svg"
  12339. }
  12340. },
  12341. foot: {
  12342. height: math.unit(1.33, "feet"),
  12343. name: "Foot",
  12344. image: {
  12345. source: "./media/characters/rufran/foot.svg"
  12346. }
  12347. },
  12348. koboldFront: {
  12349. height: math.unit(2 + 6 / 12, "feet"),
  12350. weight: math.unit(20, "lb"),
  12351. name: "Front (Kobold)",
  12352. image: {
  12353. source: "./media/characters/rufran/kobold-front.svg",
  12354. extra: 2041 / 1839,
  12355. bottom: 0.055
  12356. }
  12357. },
  12358. koboldBack: {
  12359. height: math.unit(2 + 6 / 12, "feet"),
  12360. weight: math.unit(20, "lb"),
  12361. name: "Back (Kobold)",
  12362. image: {
  12363. source: "./media/characters/rufran/kobold-back.svg",
  12364. extra: 2054 / 1839,
  12365. bottom: 0.01
  12366. }
  12367. },
  12368. koboldHand: {
  12369. height: math.unit(0.2166, "meters"),
  12370. name: "Hand (Kobold)",
  12371. image: {
  12372. source: "./media/characters/rufran/kobold-hand.svg"
  12373. }
  12374. },
  12375. koboldFoot: {
  12376. height: math.unit(0.185, "meters"),
  12377. name: "Foot (Kobold)",
  12378. image: {
  12379. source: "./media/characters/rufran/kobold-foot.svg"
  12380. }
  12381. },
  12382. },
  12383. [
  12384. {
  12385. name: "Micro",
  12386. height: math.unit(1, "inch")
  12387. },
  12388. {
  12389. name: "Normal",
  12390. height: math.unit(2 + 6 / 12, "feet"),
  12391. default: true
  12392. },
  12393. {
  12394. name: "Big",
  12395. height: math.unit(60, "feet")
  12396. },
  12397. {
  12398. name: "Macro",
  12399. height: math.unit(325, "feet")
  12400. },
  12401. ]
  12402. ))
  12403. characterMakers.push(() => makeCharacter(
  12404. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12405. {
  12406. front: {
  12407. height: math.unit(0.3, "meters"),
  12408. weight: math.unit(3.5, "kg"),
  12409. name: "Front",
  12410. image: {
  12411. source: "./media/characters/chip/front.svg",
  12412. extra: 748 / 674
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Micro",
  12419. height: math.unit(1, "inch"),
  12420. default: true
  12421. },
  12422. ]
  12423. ))
  12424. characterMakers.push(() => makeCharacter(
  12425. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12426. {
  12427. side: {
  12428. height: math.unit(2.3, "meters"),
  12429. weight: math.unit(3500, "lb"),
  12430. name: "Side",
  12431. image: {
  12432. source: "./media/characters/torvid/side.svg",
  12433. extra: 1972 / 722,
  12434. bottom: 0.035
  12435. }
  12436. },
  12437. },
  12438. [
  12439. {
  12440. name: "Normal",
  12441. height: math.unit(2.3, "meters"),
  12442. default: true
  12443. },
  12444. ]
  12445. ))
  12446. characterMakers.push(() => makeCharacter(
  12447. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12448. {
  12449. front: {
  12450. height: math.unit(2, "meters"),
  12451. weight: math.unit(150.5, "kg"),
  12452. name: "Front",
  12453. image: {
  12454. source: "./media/characters/susan/front.svg",
  12455. extra: 693 / 635,
  12456. bottom: 0.05
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Megamacro",
  12463. height: math.unit(505, "miles"),
  12464. default: true
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12470. {
  12471. front: {
  12472. height: math.unit(6, "feet"),
  12473. weight: math.unit(150, "lb"),
  12474. name: "Front",
  12475. image: {
  12476. source: "./media/characters/raindrops/front.svg",
  12477. extra: 2655 / 2461,
  12478. bottom: 49 / 2705
  12479. }
  12480. },
  12481. back: {
  12482. height: math.unit(6, "feet"),
  12483. weight: math.unit(150, "lb"),
  12484. name: "Back",
  12485. image: {
  12486. source: "./media/characters/raindrops/back.svg",
  12487. extra: 2574 / 2400,
  12488. bottom: 65 / 2634
  12489. }
  12490. },
  12491. },
  12492. [
  12493. {
  12494. name: "Micro",
  12495. height: math.unit(6, "inches")
  12496. },
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(6 + 2 / 12, "feet")
  12500. },
  12501. {
  12502. name: "Macro",
  12503. height: math.unit(131, "feet"),
  12504. default: true
  12505. },
  12506. {
  12507. name: "Megamacro",
  12508. height: math.unit(15, "miles")
  12509. },
  12510. {
  12511. name: "Gigamacro",
  12512. height: math.unit(4000, "miles")
  12513. },
  12514. {
  12515. name: "Teramacro",
  12516. height: math.unit(315000, "miles")
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(2.794, "meters"),
  12525. weight: math.unit(325, "kg"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/tezwa/front.svg",
  12529. extra: 2083 / 1906,
  12530. bottom: 0.031
  12531. }
  12532. },
  12533. foot: {
  12534. height: math.unit(0.687, "meters"),
  12535. name: "Foot",
  12536. image: {
  12537. source: "./media/characters/tezwa/foot.svg"
  12538. }
  12539. },
  12540. },
  12541. [
  12542. {
  12543. name: "Normal",
  12544. height: math.unit(9 + 2 / 12, "feet"),
  12545. default: true
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(58, "feet"),
  12554. weight: math.unit(89000, "lb"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/typhus/front.svg",
  12558. extra: 816 / 800,
  12559. bottom: 0.065
  12560. }
  12561. },
  12562. },
  12563. [
  12564. {
  12565. name: "Macro",
  12566. height: math.unit(58, "feet"),
  12567. default: true
  12568. },
  12569. ]
  12570. ))
  12571. characterMakers.push(() => makeCharacter(
  12572. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12573. {
  12574. front: {
  12575. height: math.unit(12, "feet"),
  12576. weight: math.unit(6, "tonnes"),
  12577. name: "Front",
  12578. image: {
  12579. source: "./media/characters/lyra-von-wulf/front.svg",
  12580. extra: 1,
  12581. bottom: 0.10
  12582. }
  12583. },
  12584. frontMecha: {
  12585. height: math.unit(12, "feet"),
  12586. weight: math.unit(12, "tonnes"),
  12587. name: "Front (Mecha)",
  12588. image: {
  12589. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12590. extra: 1,
  12591. bottom: 0.042
  12592. }
  12593. },
  12594. maw: {
  12595. height: math.unit(2.2, "feet"),
  12596. name: "Maw",
  12597. image: {
  12598. source: "./media/characters/lyra-von-wulf/maw.svg"
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Normal",
  12605. height: math.unit(12, "feet"),
  12606. default: true
  12607. },
  12608. {
  12609. name: "Classic",
  12610. height: math.unit(50, "feet")
  12611. },
  12612. {
  12613. name: "Macro",
  12614. height: math.unit(500, "feet")
  12615. },
  12616. {
  12617. name: "Megamacro",
  12618. height: math.unit(1, "mile")
  12619. },
  12620. {
  12621. name: "Gigamacro",
  12622. height: math.unit(400, "miles")
  12623. },
  12624. {
  12625. name: "Teramacro",
  12626. height: math.unit(22000, "miles")
  12627. },
  12628. {
  12629. name: "Solarmacro",
  12630. height: math.unit(8600000, "miles")
  12631. },
  12632. {
  12633. name: "Galactic",
  12634. height: math.unit(1057000, "lightyears")
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(6 + 10 / 12, "feet"),
  12643. weight: math.unit(150, "lb"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/dixon/front.svg",
  12647. extra: 3361 / 3209,
  12648. bottom: 0.01
  12649. }
  12650. },
  12651. },
  12652. [
  12653. {
  12654. name: "Normal",
  12655. height: math.unit(6 + 10 / 12, "feet"),
  12656. default: true
  12657. },
  12658. {
  12659. name: "Big",
  12660. height: math.unit(12, "meters")
  12661. },
  12662. {
  12663. name: "Macro",
  12664. height: math.unit(500, "meters")
  12665. },
  12666. {
  12667. name: "Megamacro",
  12668. height: math.unit(2, "km")
  12669. },
  12670. ]
  12671. ))
  12672. characterMakers.push(() => makeCharacter(
  12673. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12674. {
  12675. front: {
  12676. height: math.unit(185, "cm"),
  12677. weight: math.unit(68, "kg"),
  12678. name: "Front",
  12679. image: {
  12680. source: "./media/characters/kauko/front.svg",
  12681. extra: 1455 / 1421,
  12682. bottom: 0.03
  12683. }
  12684. },
  12685. back: {
  12686. height: math.unit(185, "cm"),
  12687. weight: math.unit(68, "kg"),
  12688. name: "Back",
  12689. image: {
  12690. source: "./media/characters/kauko/back.svg",
  12691. extra: 1455 / 1421,
  12692. bottom: 0.004
  12693. }
  12694. },
  12695. },
  12696. [
  12697. {
  12698. name: "Normal",
  12699. height: math.unit(185, "cm"),
  12700. default: true
  12701. },
  12702. ]
  12703. ))
  12704. characterMakers.push(() => makeCharacter(
  12705. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12706. {
  12707. front: {
  12708. height: math.unit(6, "feet"),
  12709. weight: math.unit(150, "kg"),
  12710. name: "Front",
  12711. image: {
  12712. source: "./media/characters/varg/front.svg",
  12713. extra: 1108 / 1018,
  12714. bottom: 0.0375
  12715. }
  12716. },
  12717. },
  12718. [
  12719. {
  12720. name: "Normal",
  12721. height: math.unit(5, "meters")
  12722. },
  12723. {
  12724. name: "Macro",
  12725. height: math.unit(200, "meters")
  12726. },
  12727. {
  12728. name: "Megamacro",
  12729. height: math.unit(20, "kilometers")
  12730. },
  12731. {
  12732. name: "True Size",
  12733. height: math.unit(211, "km"),
  12734. default: true
  12735. },
  12736. {
  12737. name: "Gigamacro",
  12738. height: math.unit(1000, "km")
  12739. },
  12740. {
  12741. name: "Gigamacro+",
  12742. height: math.unit(8000, "km")
  12743. },
  12744. {
  12745. name: "Teramacro",
  12746. height: math.unit(1000000, "km")
  12747. },
  12748. ]
  12749. ))
  12750. characterMakers.push(() => makeCharacter(
  12751. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12752. {
  12753. front: {
  12754. height: math.unit(7 + 7 / 12, "feet"),
  12755. weight: math.unit(267, "lb"),
  12756. name: "Front",
  12757. image: {
  12758. source: "./media/characters/dayza/front.svg",
  12759. extra: 1262 / 1200,
  12760. bottom: 0.035
  12761. }
  12762. },
  12763. side: {
  12764. height: math.unit(7 + 7 / 12, "feet"),
  12765. weight: math.unit(267, "lb"),
  12766. name: "Side",
  12767. image: {
  12768. source: "./media/characters/dayza/side.svg",
  12769. extra: 1295 / 1245,
  12770. bottom: 0.05
  12771. }
  12772. },
  12773. back: {
  12774. height: math.unit(7 + 7 / 12, "feet"),
  12775. weight: math.unit(267, "lb"),
  12776. name: "Back",
  12777. image: {
  12778. source: "./media/characters/dayza/back.svg",
  12779. extra: 1241 / 1170
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Normal",
  12786. height: math.unit(7 + 7 / 12, "feet"),
  12787. default: true
  12788. },
  12789. {
  12790. name: "Macro",
  12791. height: math.unit(155, "feet")
  12792. },
  12793. ]
  12794. ))
  12795. characterMakers.push(() => makeCharacter(
  12796. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12797. {
  12798. front: {
  12799. height: math.unit(6 + 5 / 12, "feet"),
  12800. weight: math.unit(160, "lb"),
  12801. name: "Front",
  12802. image: {
  12803. source: "./media/characters/xanthos/front.svg",
  12804. extra: 1,
  12805. bottom: 0.04
  12806. }
  12807. },
  12808. back: {
  12809. height: math.unit(6 + 5 / 12, "feet"),
  12810. weight: math.unit(160, "lb"),
  12811. name: "Back",
  12812. image: {
  12813. source: "./media/characters/xanthos/back.svg",
  12814. extra: 1,
  12815. bottom: 0.03
  12816. }
  12817. },
  12818. hand: {
  12819. height: math.unit(0.928, "feet"),
  12820. name: "Hand",
  12821. image: {
  12822. source: "./media/characters/xanthos/hand.svg"
  12823. }
  12824. },
  12825. foot: {
  12826. height: math.unit(1.286, "feet"),
  12827. name: "Foot",
  12828. image: {
  12829. source: "./media/characters/xanthos/foot.svg"
  12830. }
  12831. },
  12832. },
  12833. [
  12834. {
  12835. name: "Normal",
  12836. height: math.unit(6 + 5 / 12, "feet"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Normal+",
  12841. height: math.unit(6, "meters")
  12842. },
  12843. {
  12844. name: "Macro",
  12845. height: math.unit(40, "feet")
  12846. },
  12847. {
  12848. name: "Macro+",
  12849. height: math.unit(200, "meters")
  12850. },
  12851. {
  12852. name: "Megamacro",
  12853. height: math.unit(20, "km")
  12854. },
  12855. {
  12856. name: "Megamacro+",
  12857. height: math.unit(100, "km")
  12858. },
  12859. {
  12860. name: "Gigamacro",
  12861. height: math.unit(200, "megameters")
  12862. },
  12863. {
  12864. name: "Gigamacro+",
  12865. height: math.unit(1.5, "gigameters")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(6 + 3 / 12, "feet"),
  12874. weight: math.unit(215, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/grynn/front.svg",
  12878. extra: 4627 / 4209,
  12879. bottom: 0.047
  12880. }
  12881. },
  12882. },
  12883. [
  12884. {
  12885. name: "Micro",
  12886. height: math.unit(6, "inches")
  12887. },
  12888. {
  12889. name: "Normal",
  12890. height: math.unit(6 + 3 / 12, "feet"),
  12891. default: true
  12892. },
  12893. {
  12894. name: "Big",
  12895. height: math.unit(104, "feet")
  12896. },
  12897. {
  12898. name: "Macro",
  12899. height: math.unit(944, "feet")
  12900. },
  12901. {
  12902. name: "Macro+",
  12903. height: math.unit(9480, "feet")
  12904. },
  12905. {
  12906. name: "Megamacro",
  12907. height: math.unit(78752, "feet")
  12908. },
  12909. {
  12910. name: "Megamacro+",
  12911. height: math.unit(630128, "feet")
  12912. },
  12913. {
  12914. name: "Megamacro++",
  12915. height: math.unit(3150695, "feet")
  12916. },
  12917. ]
  12918. ))
  12919. characterMakers.push(() => makeCharacter(
  12920. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12921. {
  12922. front: {
  12923. height: math.unit(7 + 5 / 12, "feet"),
  12924. weight: math.unit(450, "lb"),
  12925. name: "Front",
  12926. image: {
  12927. source: "./media/characters/mocha-aura/front.svg",
  12928. extra: 1907 / 1817,
  12929. bottom: 0.04
  12930. }
  12931. },
  12932. back: {
  12933. height: math.unit(7 + 5 / 12, "feet"),
  12934. weight: math.unit(450, "lb"),
  12935. name: "Back",
  12936. image: {
  12937. source: "./media/characters/mocha-aura/back.svg",
  12938. extra: 1900 / 1825,
  12939. bottom: 0.045
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Nano",
  12946. height: math.unit(1, "nm")
  12947. },
  12948. {
  12949. name: "Megamicro",
  12950. height: math.unit(1, "mm")
  12951. },
  12952. {
  12953. name: "Micro",
  12954. height: math.unit(3, "inches")
  12955. },
  12956. {
  12957. name: "Normal",
  12958. height: math.unit(7 + 5 / 12, "feet"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Macro",
  12963. height: math.unit(30, "feet")
  12964. },
  12965. {
  12966. name: "Megamacro",
  12967. height: math.unit(3500, "feet")
  12968. },
  12969. {
  12970. name: "Teramacro",
  12971. height: math.unit(500000, "miles")
  12972. },
  12973. {
  12974. name: "Petamacro",
  12975. height: math.unit(50000000000000000, "parsecs")
  12976. },
  12977. ]
  12978. ))
  12979. characterMakers.push(() => makeCharacter(
  12980. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12981. {
  12982. front: {
  12983. height: math.unit(6, "feet"),
  12984. weight: math.unit(150, "lb"),
  12985. name: "Front",
  12986. image: {
  12987. source: "./media/characters/ilisha-devya/front.svg",
  12988. extra: 1,
  12989. bottom: 0.175
  12990. }
  12991. },
  12992. back: {
  12993. height: math.unit(6, "feet"),
  12994. weight: math.unit(150, "lb"),
  12995. name: "Back",
  12996. image: {
  12997. source: "./media/characters/ilisha-devya/back.svg",
  12998. extra: 1,
  12999. bottom: 0.015
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Macro",
  13006. height: math.unit(500, "feet"),
  13007. default: true
  13008. },
  13009. {
  13010. name: "Megamacro",
  13011. height: math.unit(10, "miles")
  13012. },
  13013. {
  13014. name: "Gigamacro",
  13015. height: math.unit(100000, "miles")
  13016. },
  13017. {
  13018. name: "Examacro",
  13019. height: math.unit(1e9, "lightyears")
  13020. },
  13021. {
  13022. name: "Omniversal",
  13023. height: math.unit(1e33, "lightyears")
  13024. },
  13025. {
  13026. name: "Beyond Infinite",
  13027. height: math.unit(1e100, "lightyears")
  13028. },
  13029. ]
  13030. ))
  13031. characterMakers.push(() => makeCharacter(
  13032. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13033. {
  13034. Side: {
  13035. height: math.unit(6, "feet"),
  13036. weight: math.unit(150, "lb"),
  13037. name: "Side",
  13038. image: {
  13039. source: "./media/characters/mira/side.svg",
  13040. extra: 900 / 799,
  13041. bottom: 0.02
  13042. }
  13043. },
  13044. },
  13045. [
  13046. {
  13047. name: "Human Size",
  13048. height: math.unit(6, "feet")
  13049. },
  13050. {
  13051. name: "Macro",
  13052. height: math.unit(100, "feet"),
  13053. default: true
  13054. },
  13055. {
  13056. name: "Megamacro",
  13057. height: math.unit(10, "miles")
  13058. },
  13059. {
  13060. name: "Gigamacro",
  13061. height: math.unit(25000, "miles")
  13062. },
  13063. {
  13064. name: "Teramacro",
  13065. height: math.unit(300, "AU")
  13066. },
  13067. {
  13068. name: "Full Size",
  13069. height: math.unit(4.5e10, "lightyears")
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13075. {
  13076. front: {
  13077. height: math.unit(6, "feet"),
  13078. weight: math.unit(150, "lb"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/holly/front.svg",
  13082. extra: 639 / 606
  13083. }
  13084. },
  13085. back: {
  13086. height: math.unit(6, "feet"),
  13087. weight: math.unit(150, "lb"),
  13088. name: "Back",
  13089. image: {
  13090. source: "./media/characters/holly/back.svg",
  13091. extra: 623 / 598
  13092. }
  13093. },
  13094. frontWorking: {
  13095. height: math.unit(6, "feet"),
  13096. weight: math.unit(150, "lb"),
  13097. name: "Front (Working)",
  13098. image: {
  13099. source: "./media/characters/holly/front-working.svg",
  13100. extra: 607 / 577,
  13101. bottom: 0.048
  13102. }
  13103. },
  13104. },
  13105. [
  13106. {
  13107. name: "Normal",
  13108. height: math.unit(12 + 3 / 12, "feet"),
  13109. default: true
  13110. },
  13111. ]
  13112. ))
  13113. characterMakers.push(() => makeCharacter(
  13114. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13115. {
  13116. front: {
  13117. height: math.unit(6, "feet"),
  13118. weight: math.unit(150, "lb"),
  13119. name: "Front",
  13120. image: {
  13121. source: "./media/characters/porter/front.svg",
  13122. extra: 1,
  13123. bottom: 0.01
  13124. }
  13125. },
  13126. frontRobes: {
  13127. height: math.unit(6, "feet"),
  13128. weight: math.unit(150, "lb"),
  13129. name: "Front (Robes)",
  13130. image: {
  13131. source: "./media/characters/porter/front-robes.svg",
  13132. extra: 1.01,
  13133. bottom: 0.01
  13134. }
  13135. },
  13136. },
  13137. [
  13138. {
  13139. name: "Normal",
  13140. height: math.unit(11 + 9 / 12, "feet"),
  13141. default: true
  13142. },
  13143. ]
  13144. ))
  13145. characterMakers.push(() => makeCharacter(
  13146. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13147. {
  13148. legendary: {
  13149. height: math.unit(6, "feet"),
  13150. weight: math.unit(150, "lb"),
  13151. name: "Legendary",
  13152. image: {
  13153. source: "./media/characters/lucy/legendary.svg",
  13154. extra: 1355 / 1100,
  13155. bottom: 0.045
  13156. }
  13157. },
  13158. },
  13159. [
  13160. {
  13161. name: "Legendary",
  13162. height: math.unit(86882 * 2, "miles"),
  13163. default: true
  13164. },
  13165. ]
  13166. ))
  13167. characterMakers.push(() => makeCharacter(
  13168. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13169. {
  13170. front: {
  13171. height: math.unit(6, "feet"),
  13172. weight: math.unit(150, "lb"),
  13173. name: "Front",
  13174. image: {
  13175. source: "./media/characters/drusilla/front.svg",
  13176. extra: 678 / 635,
  13177. bottom: 0.03
  13178. }
  13179. },
  13180. back: {
  13181. height: math.unit(6, "feet"),
  13182. weight: math.unit(150, "lb"),
  13183. name: "Back",
  13184. image: {
  13185. source: "./media/characters/drusilla/back.svg",
  13186. extra: 678 / 635,
  13187. bottom: 0.005
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Macro",
  13194. height: math.unit(100, "feet")
  13195. },
  13196. {
  13197. name: "Canon Height",
  13198. height: math.unit(2000, "feet"),
  13199. default: true
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(6, "feet"),
  13208. weight: math.unit(180, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/renard-thatch/front.svg",
  13212. extra: 2411 / 2275,
  13213. bottom: 0.01
  13214. }
  13215. },
  13216. frontPosing: {
  13217. height: math.unit(6, "feet"),
  13218. weight: math.unit(180, "lb"),
  13219. name: "Front (Posing)",
  13220. image: {
  13221. source: "./media/characters/renard-thatch/front-posing.svg",
  13222. extra: 2381 / 2261,
  13223. bottom: 0.01
  13224. }
  13225. },
  13226. back: {
  13227. height: math.unit(6, "feet"),
  13228. weight: math.unit(180, "lb"),
  13229. name: "Back",
  13230. image: {
  13231. source: "./media/characters/renard-thatch/back.svg",
  13232. extra: 2428 / 2288
  13233. }
  13234. },
  13235. },
  13236. [
  13237. {
  13238. name: "Micro",
  13239. height: math.unit(3, "inches")
  13240. },
  13241. {
  13242. name: "Default",
  13243. height: math.unit(6, "feet"),
  13244. default: true
  13245. },
  13246. {
  13247. name: "Macro",
  13248. height: math.unit(75, "feet")
  13249. },
  13250. ]
  13251. ))
  13252. characterMakers.push(() => makeCharacter(
  13253. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13254. {
  13255. front: {
  13256. height: math.unit(1450, "feet"),
  13257. weight: math.unit(1.21e6, "tons"),
  13258. name: "Front",
  13259. image: {
  13260. source: "./media/characters/sekvra/front.svg",
  13261. extra: 1,
  13262. bottom: 0.03
  13263. }
  13264. },
  13265. frontClothed: {
  13266. height: math.unit(1450, "feet"),
  13267. weight: math.unit(1.21e6, "tons"),
  13268. name: "Front (Clothed)",
  13269. image: {
  13270. source: "./media/characters/sekvra/front-clothed.svg",
  13271. extra: 1,
  13272. bottom: 0.03
  13273. }
  13274. },
  13275. side: {
  13276. height: math.unit(1450, "feet"),
  13277. weight: math.unit(1.21e6, "tons"),
  13278. name: "Side",
  13279. image: {
  13280. source: "./media/characters/sekvra/side.svg",
  13281. extra: 1,
  13282. bottom: 0.025
  13283. }
  13284. },
  13285. back: {
  13286. height: math.unit(1450, "feet"),
  13287. weight: math.unit(1.21e6, "tons"),
  13288. name: "Back",
  13289. image: {
  13290. source: "./media/characters/sekvra/back.svg",
  13291. extra: 1,
  13292. bottom: 0.005
  13293. }
  13294. },
  13295. },
  13296. [
  13297. {
  13298. name: "Macro",
  13299. height: math.unit(1450, "feet"),
  13300. default: true
  13301. },
  13302. {
  13303. name: "Megamacro",
  13304. height: math.unit(15000, "feet")
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13310. {
  13311. front: {
  13312. height: math.unit(6, "feet"),
  13313. weight: math.unit(150, "lb"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/carmine/front.svg",
  13317. extra: 1,
  13318. bottom: 0.035
  13319. }
  13320. },
  13321. frontArmor: {
  13322. height: math.unit(6, "feet"),
  13323. weight: math.unit(150, "lb"),
  13324. name: "Front (Armor)",
  13325. image: {
  13326. source: "./media/characters/carmine/front-armor.svg",
  13327. extra: 1,
  13328. bottom: 0.035
  13329. }
  13330. },
  13331. },
  13332. [
  13333. {
  13334. name: "Large",
  13335. height: math.unit(1, "mile")
  13336. },
  13337. {
  13338. name: "Huge",
  13339. height: math.unit(40, "miles"),
  13340. default: true
  13341. },
  13342. {
  13343. name: "Colossal",
  13344. height: math.unit(2500, "miles")
  13345. },
  13346. ]
  13347. ))
  13348. characterMakers.push(() => makeCharacter(
  13349. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13350. {
  13351. front: {
  13352. height: math.unit(6, "feet"),
  13353. weight: math.unit(150, "lb"),
  13354. name: "Front",
  13355. image: {
  13356. source: "./media/characters/elyssia/front.svg",
  13357. extra: 2201 / 2035,
  13358. bottom: 0.05
  13359. }
  13360. },
  13361. frontClothed: {
  13362. height: math.unit(6, "feet"),
  13363. weight: math.unit(150, "lb"),
  13364. name: "Front (Clothed)",
  13365. image: {
  13366. source: "./media/characters/elyssia/front-clothed.svg",
  13367. extra: 2201 / 2035,
  13368. bottom: 0.05
  13369. }
  13370. },
  13371. back: {
  13372. height: math.unit(6, "feet"),
  13373. weight: math.unit(150, "lb"),
  13374. name: "Back",
  13375. image: {
  13376. source: "./media/characters/elyssia/back.svg",
  13377. extra: 2201 / 2035,
  13378. bottom: 0.013
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Smaller",
  13385. height: math.unit(150, "feet")
  13386. },
  13387. {
  13388. name: "Standard",
  13389. height: math.unit(1400, "feet"),
  13390. default: true
  13391. },
  13392. {
  13393. name: "Distracted",
  13394. height: math.unit(15000, "feet")
  13395. },
  13396. ]
  13397. ))
  13398. characterMakers.push(() => makeCharacter(
  13399. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13400. {
  13401. front: {
  13402. height: math.unit(7 + 4 / 12, "feet"),
  13403. weight: math.unit(500, "lb"),
  13404. name: "Front",
  13405. image: {
  13406. source: "./media/characters/geno-maxwell/front.svg",
  13407. extra: 2207 / 2040,
  13408. bottom: 0.015
  13409. }
  13410. },
  13411. },
  13412. [
  13413. {
  13414. name: "Micro",
  13415. height: math.unit(3, "inches")
  13416. },
  13417. {
  13418. name: "Normal",
  13419. height: math.unit(7 + 4 / 12, "feet"),
  13420. default: true
  13421. },
  13422. {
  13423. name: "Macro",
  13424. height: math.unit(220, "feet")
  13425. },
  13426. {
  13427. name: "Megamacro",
  13428. height: math.unit(11, "miles")
  13429. },
  13430. ]
  13431. ))
  13432. characterMakers.push(() => makeCharacter(
  13433. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13434. {
  13435. front: {
  13436. height: math.unit(7 + 4 / 12, "feet"),
  13437. weight: math.unit(500, "lb"),
  13438. name: "Front",
  13439. image: {
  13440. source: "./media/characters/regena-maxwell/front.svg",
  13441. extra: 3115 / 2770,
  13442. bottom: 0.02
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Normal",
  13449. height: math.unit(7 + 4 / 12, "feet"),
  13450. default: true
  13451. },
  13452. {
  13453. name: "Macro",
  13454. height: math.unit(220, "feet")
  13455. },
  13456. {
  13457. name: "Megamacro",
  13458. height: math.unit(11, "miles")
  13459. },
  13460. ]
  13461. ))
  13462. characterMakers.push(() => makeCharacter(
  13463. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13464. {
  13465. front: {
  13466. height: math.unit(6, "feet"),
  13467. weight: math.unit(150, "lb"),
  13468. name: "Front",
  13469. image: {
  13470. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13471. extra: 860 / 690,
  13472. bottom: 0.03
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Normal",
  13479. height: math.unit(1.7, "meters"),
  13480. default: true
  13481. },
  13482. ]
  13483. ))
  13484. characterMakers.push(() => makeCharacter(
  13485. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13486. {
  13487. front: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Front",
  13491. image: {
  13492. source: "./media/characters/quilly/front.svg",
  13493. extra: 890 / 776
  13494. }
  13495. },
  13496. },
  13497. [
  13498. {
  13499. name: "Gigamacro",
  13500. height: math.unit(404090, "miles"),
  13501. default: true
  13502. },
  13503. ]
  13504. ))
  13505. characterMakers.push(() => makeCharacter(
  13506. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13507. {
  13508. front: {
  13509. height: math.unit(7 + 8 / 12, "feet"),
  13510. weight: math.unit(350, "lb"),
  13511. name: "Front",
  13512. image: {
  13513. source: "./media/characters/tempest/front.svg",
  13514. extra: 1175 / 1086,
  13515. bottom: 0.02
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Normal",
  13522. height: math.unit(7 + 8 / 12, "feet"),
  13523. default: true
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13529. {
  13530. side: {
  13531. height: math.unit(4 + 5 / 12, "feet"),
  13532. weight: math.unit(80, "lb"),
  13533. name: "Side",
  13534. image: {
  13535. source: "./media/characters/rodger/side.svg",
  13536. extra: 1235 / 1118
  13537. }
  13538. },
  13539. },
  13540. [
  13541. {
  13542. name: "Micro",
  13543. height: math.unit(1, "inch")
  13544. },
  13545. {
  13546. name: "Normal",
  13547. height: math.unit(4 + 5 / 12, "feet"),
  13548. default: true
  13549. },
  13550. {
  13551. name: "Macro",
  13552. height: math.unit(120, "feet")
  13553. },
  13554. ]
  13555. ))
  13556. characterMakers.push(() => makeCharacter(
  13557. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13558. {
  13559. front: {
  13560. height: math.unit(6, "feet"),
  13561. weight: math.unit(150, "lb"),
  13562. name: "Front",
  13563. image: {
  13564. source: "./media/characters/danyel/front.svg",
  13565. extra: 1185 / 1123,
  13566. bottom: 0.05
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Shrunken",
  13573. height: math.unit(0.5, "mm")
  13574. },
  13575. {
  13576. name: "Micro",
  13577. height: math.unit(1, "mm"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Upsized",
  13582. height: math.unit(5 + 5 / 12, "feet")
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(5 + 6 / 12, "feet"),
  13591. weight: math.unit(200, "lb"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/vivian-bijoux/front.svg",
  13595. extra: 1,
  13596. bottom: 0.072
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Normal",
  13603. height: math.unit(5 + 6 / 12, "feet"),
  13604. default: true
  13605. },
  13606. {
  13607. name: "Bad Dream",
  13608. height: math.unit(500, "feet")
  13609. },
  13610. {
  13611. name: "Nightmare",
  13612. height: math.unit(500, "miles")
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(6 + 1 / 12, "feet"),
  13621. weight: math.unit(260, "lb"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/zeta/front.svg",
  13625. extra: 1968 / 1889,
  13626. bottom: 0.06
  13627. }
  13628. },
  13629. back: {
  13630. height: math.unit(6 + 1 / 12, "feet"),
  13631. weight: math.unit(260, "lb"),
  13632. name: "Back",
  13633. image: {
  13634. source: "./media/characters/zeta/back.svg",
  13635. extra: 1944 / 1858,
  13636. bottom: 0.03
  13637. }
  13638. },
  13639. hand: {
  13640. height: math.unit(1.112, "feet"),
  13641. name: "Hand",
  13642. image: {
  13643. source: "./media/characters/zeta/hand.svg"
  13644. }
  13645. },
  13646. foot: {
  13647. height: math.unit(1.48, "feet"),
  13648. name: "Foot",
  13649. image: {
  13650. source: "./media/characters/zeta/foot.svg"
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Micro",
  13657. height: math.unit(6, "inches")
  13658. },
  13659. {
  13660. name: "Normal",
  13661. height: math.unit(6 + 1 / 12, "feet"),
  13662. default: true
  13663. },
  13664. {
  13665. name: "Macro",
  13666. height: math.unit(20, "feet")
  13667. },
  13668. ]
  13669. ))
  13670. characterMakers.push(() => makeCharacter(
  13671. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13672. {
  13673. front: {
  13674. height: math.unit(6, "feet"),
  13675. weight: math.unit(150, "lb"),
  13676. name: "Front",
  13677. image: {
  13678. source: "./media/characters/jamie-larsen/front.svg",
  13679. extra: 962 / 933,
  13680. bottom: 0.02
  13681. }
  13682. },
  13683. back: {
  13684. height: math.unit(6, "feet"),
  13685. weight: math.unit(150, "lb"),
  13686. name: "Back",
  13687. image: {
  13688. source: "./media/characters/jamie-larsen/back.svg",
  13689. extra: 997 / 946
  13690. }
  13691. },
  13692. },
  13693. [
  13694. {
  13695. name: "Macro",
  13696. height: math.unit(28 + 7 / 12, "feet"),
  13697. default: true
  13698. },
  13699. {
  13700. name: "Macro+",
  13701. height: math.unit(180, "feet")
  13702. },
  13703. {
  13704. name: "Megamacro",
  13705. height: math.unit(10, "miles")
  13706. },
  13707. {
  13708. name: "Gigamacro",
  13709. height: math.unit(200000, "miles")
  13710. },
  13711. ]
  13712. ))
  13713. characterMakers.push(() => makeCharacter(
  13714. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13715. {
  13716. front: {
  13717. height: math.unit(6, "feet"),
  13718. weight: math.unit(120, "lb"),
  13719. name: "Front",
  13720. image: {
  13721. source: "./media/characters/vance/front.svg",
  13722. extra: 1980 / 1890,
  13723. bottom: 0.09
  13724. }
  13725. },
  13726. back: {
  13727. height: math.unit(6, "feet"),
  13728. weight: math.unit(120, "lb"),
  13729. name: "Back",
  13730. image: {
  13731. source: "./media/characters/vance/back.svg",
  13732. extra: 2081 / 1994,
  13733. bottom: 0.014
  13734. }
  13735. },
  13736. hand: {
  13737. height: math.unit(0.88, "feet"),
  13738. name: "Hand",
  13739. image: {
  13740. source: "./media/characters/vance/hand.svg"
  13741. }
  13742. },
  13743. foot: {
  13744. height: math.unit(0.64, "feet"),
  13745. name: "Foot",
  13746. image: {
  13747. source: "./media/characters/vance/foot.svg"
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Small",
  13754. height: math.unit(90, "feet"),
  13755. default: true
  13756. },
  13757. {
  13758. name: "Macro",
  13759. height: math.unit(100, "meters")
  13760. },
  13761. {
  13762. name: "Megamacro",
  13763. height: math.unit(15, "miles")
  13764. },
  13765. ]
  13766. ))
  13767. characterMakers.push(() => makeCharacter(
  13768. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13769. {
  13770. front: {
  13771. height: math.unit(6, "feet"),
  13772. weight: math.unit(180, "lb"),
  13773. name: "Front",
  13774. image: {
  13775. source: "./media/characters/xochitl/front.svg",
  13776. extra: 2297 / 2261,
  13777. bottom: 0.065
  13778. }
  13779. },
  13780. back: {
  13781. height: math.unit(6, "feet"),
  13782. weight: math.unit(180, "lb"),
  13783. name: "Back",
  13784. image: {
  13785. source: "./media/characters/xochitl/back.svg",
  13786. extra: 2386 / 2354,
  13787. bottom: 0.01
  13788. }
  13789. },
  13790. foot: {
  13791. height: math.unit(6 / 5 * 1.15, "feet"),
  13792. weight: math.unit(150, "lb"),
  13793. name: "Foot",
  13794. image: {
  13795. source: "./media/characters/xochitl/foot.svg"
  13796. }
  13797. },
  13798. },
  13799. [
  13800. {
  13801. name: "Macro",
  13802. height: math.unit(80, "feet")
  13803. },
  13804. {
  13805. name: "Macro+",
  13806. height: math.unit(400, "feet"),
  13807. default: true
  13808. },
  13809. {
  13810. name: "Gigamacro",
  13811. height: math.unit(80000, "miles")
  13812. },
  13813. {
  13814. name: "Gigamacro+",
  13815. height: math.unit(400000, "miles")
  13816. },
  13817. {
  13818. name: "Teramacro",
  13819. height: math.unit(300, "AU")
  13820. },
  13821. ]
  13822. ))
  13823. characterMakers.push(() => makeCharacter(
  13824. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13825. {
  13826. front: {
  13827. height: math.unit(6, "feet"),
  13828. weight: math.unit(150, "lb"),
  13829. name: "Front",
  13830. image: {
  13831. source: "./media/characters/vincent/front.svg",
  13832. extra: 1130 / 1080,
  13833. bottom: 0.055
  13834. }
  13835. },
  13836. beak: {
  13837. height: math.unit(6 * 0.1, "feet"),
  13838. name: "Beak",
  13839. image: {
  13840. source: "./media/characters/vincent/beak.svg"
  13841. }
  13842. },
  13843. hand: {
  13844. height: math.unit(6 * 0.85, "feet"),
  13845. weight: math.unit(150, "lb"),
  13846. name: "Hand",
  13847. image: {
  13848. source: "./media/characters/vincent/hand.svg"
  13849. }
  13850. },
  13851. foot: {
  13852. height: math.unit(6 * 0.19, "feet"),
  13853. weight: math.unit(150, "lb"),
  13854. name: "Foot",
  13855. image: {
  13856. source: "./media/characters/vincent/foot.svg"
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Base",
  13863. height: math.unit(6 + 5 / 12, "feet"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Macro",
  13868. height: math.unit(300, "feet")
  13869. },
  13870. {
  13871. name: "Megamacro",
  13872. height: math.unit(2, "miles")
  13873. },
  13874. {
  13875. name: "Gigamacro",
  13876. height: math.unit(1000, "miles")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(2, "meters"),
  13885. weight: math.unit(500, "kg"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/coatl/front.svg",
  13889. extra: 3948 / 3500,
  13890. bottom: 0.082
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Normal",
  13897. height: math.unit(4, "meters")
  13898. },
  13899. {
  13900. name: "Macro",
  13901. height: math.unit(100, "meters"),
  13902. default: true
  13903. },
  13904. {
  13905. name: "Macro+",
  13906. height: math.unit(300, "meters")
  13907. },
  13908. {
  13909. name: "Megamacro",
  13910. height: math.unit(3, "gigameters")
  13911. },
  13912. {
  13913. name: "Megamacro+",
  13914. height: math.unit(300, "terameters")
  13915. },
  13916. {
  13917. name: "Megamacro++",
  13918. height: math.unit(3, "lightyears")
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(50, "kg"),
  13928. name: "front",
  13929. image: {
  13930. source: "./media/characters/shiroryu/front.svg",
  13931. extra: 1990 / 1935
  13932. }
  13933. },
  13934. },
  13935. [
  13936. {
  13937. name: "Mortal Mingling",
  13938. height: math.unit(3, "meters")
  13939. },
  13940. {
  13941. name: "Kaiju-ish",
  13942. height: math.unit(250, "meters")
  13943. },
  13944. {
  13945. name: "Somewhat Godly",
  13946. height: math.unit(400, "km"),
  13947. default: true
  13948. },
  13949. {
  13950. name: "Planetary",
  13951. height: math.unit(300, "megameters")
  13952. },
  13953. {
  13954. name: "Galaxy-dwarfing",
  13955. height: math.unit(450, "kiloparsecs")
  13956. },
  13957. {
  13958. name: "Universe Eater",
  13959. height: math.unit(150, "gigaparsecs")
  13960. },
  13961. {
  13962. name: "Almost Immeasurable",
  13963. height: math.unit(1.3e266, "yottaparsecs")
  13964. },
  13965. ]
  13966. ))
  13967. characterMakers.push(() => makeCharacter(
  13968. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13969. {
  13970. front: {
  13971. height: math.unit(6, "feet"),
  13972. weight: math.unit(150, "lb"),
  13973. name: "Front",
  13974. image: {
  13975. source: "./media/characters/umeko/front.svg",
  13976. extra: 1,
  13977. bottom: 0.019
  13978. }
  13979. },
  13980. frontArmored: {
  13981. height: math.unit(6, "feet"),
  13982. weight: math.unit(150, "lb"),
  13983. name: "Front (Armored)",
  13984. image: {
  13985. source: "./media/characters/umeko/front-armored.svg",
  13986. extra: 1,
  13987. bottom: 0.021
  13988. }
  13989. },
  13990. },
  13991. [
  13992. {
  13993. name: "Macro",
  13994. height: math.unit(220, "feet"),
  13995. default: true
  13996. },
  13997. {
  13998. name: "Guardian Dragon",
  13999. height: math.unit(50, "miles")
  14000. },
  14001. {
  14002. name: "Cosmic",
  14003. height: math.unit(800000, "miles")
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14009. {
  14010. front: {
  14011. height: math.unit(6, "feet"),
  14012. weight: math.unit(150, "lb"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/cassidy/front.svg",
  14016. extra: 1,
  14017. bottom: 0.043
  14018. }
  14019. },
  14020. },
  14021. [
  14022. {
  14023. name: "Canon Height",
  14024. height: math.unit(120, "feet"),
  14025. default: true
  14026. },
  14027. {
  14028. name: "Macro+",
  14029. height: math.unit(400, "feet")
  14030. },
  14031. {
  14032. name: "Macro++",
  14033. height: math.unit(4000, "feet")
  14034. },
  14035. {
  14036. name: "Megamacro",
  14037. height: math.unit(3, "miles")
  14038. },
  14039. ]
  14040. ))
  14041. characterMakers.push(() => makeCharacter(
  14042. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14043. {
  14044. front: {
  14045. height: math.unit(6, "feet"),
  14046. weight: math.unit(150, "lb"),
  14047. name: "Front",
  14048. image: {
  14049. source: "./media/characters/isaac/front.svg",
  14050. extra: 896 / 815,
  14051. bottom: 0.11
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Human Size",
  14058. height: math.unit(8, "feet"),
  14059. default: true
  14060. },
  14061. {
  14062. name: "Macro",
  14063. height: math.unit(400, "feet")
  14064. },
  14065. {
  14066. name: "Megamacro",
  14067. height: math.unit(50, "miles")
  14068. },
  14069. {
  14070. name: "Canon Height",
  14071. height: math.unit(200, "AU")
  14072. },
  14073. ]
  14074. ))
  14075. characterMakers.push(() => makeCharacter(
  14076. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14077. {
  14078. front: {
  14079. height: math.unit(6, "feet"),
  14080. weight: math.unit(72, "kg"),
  14081. name: "Front",
  14082. image: {
  14083. source: "./media/characters/sleekit/front.svg",
  14084. extra: 4693 / 4487,
  14085. bottom: 0.012
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Minimum Height",
  14092. height: math.unit(10, "meters")
  14093. },
  14094. {
  14095. name: "Smaller",
  14096. height: math.unit(25, "meters")
  14097. },
  14098. {
  14099. name: "Larger",
  14100. height: math.unit(38, "meters"),
  14101. default: true
  14102. },
  14103. {
  14104. name: "Maximum height",
  14105. height: math.unit(100, "meters")
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14111. {
  14112. front: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(150, "lb"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/nillia/front.svg",
  14118. extra: 2195 / 2037,
  14119. bottom: 0.005
  14120. }
  14121. },
  14122. back: {
  14123. height: math.unit(6, "feet"),
  14124. weight: math.unit(150, "lb"),
  14125. name: "Back",
  14126. image: {
  14127. source: "./media/characters/nillia/back.svg",
  14128. extra: 2195 / 2037,
  14129. bottom: 0.005
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "Canon Height",
  14136. height: math.unit(489, "feet"),
  14137. default: true
  14138. }
  14139. ]
  14140. ))
  14141. characterMakers.push(() => makeCharacter(
  14142. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14143. {
  14144. front: {
  14145. height: math.unit(6, "feet"),
  14146. weight: math.unit(150, "lb"),
  14147. name: "Front",
  14148. image: {
  14149. source: "./media/characters/mesmyriza/front.svg",
  14150. extra: 2067 / 1784,
  14151. bottom: 0.035
  14152. }
  14153. },
  14154. foot: {
  14155. height: math.unit(6 / (250 / 35), "feet"),
  14156. name: "Foot",
  14157. image: {
  14158. source: "./media/characters/mesmyriza/foot.svg"
  14159. }
  14160. },
  14161. },
  14162. [
  14163. {
  14164. name: "Macro",
  14165. height: math.unit(457, "meters"),
  14166. default: true
  14167. },
  14168. {
  14169. name: "Megamacro",
  14170. height: math.unit(8, "megameters")
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(6, "feet"),
  14179. weight: math.unit(250, "lb"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/saudade/front.svg",
  14183. extra: 1172 / 1139,
  14184. bottom: 0.035
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Micro",
  14191. height: math.unit(3, "inches")
  14192. },
  14193. {
  14194. name: "Normal",
  14195. height: math.unit(6, "feet"),
  14196. default: true
  14197. },
  14198. {
  14199. name: "Macro",
  14200. height: math.unit(50, "feet")
  14201. },
  14202. {
  14203. name: "Megamacro",
  14204. height: math.unit(2800, "feet")
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14210. {
  14211. front: {
  14212. height: math.unit(5 + 4 / 12, "feet"),
  14213. weight: math.unit(100, "lb"),
  14214. name: "Front",
  14215. image: {
  14216. source: "./media/characters/keireer/front.svg",
  14217. extra: 716 / 666,
  14218. bottom: 0.05
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Normal",
  14225. height: math.unit(5 + 4 / 12, "feet"),
  14226. default: true
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(6, "feet"),
  14235. weight: math.unit(90, "kg"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/mirja/front.svg",
  14239. extra: 1789 / 1683,
  14240. bottom: 0.05
  14241. }
  14242. },
  14243. frontDressed: {
  14244. height: math.unit(6, "feet"),
  14245. weight: math.unit(90, "lb"),
  14246. name: "Front (Dressed)",
  14247. image: {
  14248. source: "./media/characters/mirja/front-dressed.svg",
  14249. extra: 1789 / 1683,
  14250. bottom: 0.05
  14251. }
  14252. },
  14253. back: {
  14254. height: math.unit(6, "feet"),
  14255. weight: math.unit(90, "lb"),
  14256. name: "Back",
  14257. image: {
  14258. source: "./media/characters/mirja/back.svg",
  14259. extra: 953 / 917,
  14260. bottom: 0.017
  14261. }
  14262. },
  14263. },
  14264. [
  14265. {
  14266. name: "\"Incognito\"",
  14267. height: math.unit(3, "meters")
  14268. },
  14269. {
  14270. name: "Strolling Size",
  14271. height: math.unit(15, "km")
  14272. },
  14273. {
  14274. name: "Larger Strolling Size",
  14275. height: math.unit(400, "km")
  14276. },
  14277. {
  14278. name: "Preferred Size",
  14279. height: math.unit(5000, "km")
  14280. },
  14281. {
  14282. name: "True Size",
  14283. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14284. default: true
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14290. {
  14291. front: {
  14292. height: math.unit(15, "feet"),
  14293. weight: math.unit(880, "kg"),
  14294. name: "Front",
  14295. image: {
  14296. source: "./media/characters/nightraver/front.svg",
  14297. extra: 2444 / 2160,
  14298. bottom: 0.027
  14299. }
  14300. },
  14301. back: {
  14302. height: math.unit(15, "feet"),
  14303. weight: math.unit(880, "kg"),
  14304. name: "Back",
  14305. image: {
  14306. source: "./media/characters/nightraver/back.svg",
  14307. extra: 2309 / 2180,
  14308. bottom: 0.005
  14309. }
  14310. },
  14311. sole: {
  14312. height: math.unit(2.878, "feet"),
  14313. name: "Sole",
  14314. image: {
  14315. source: "./media/characters/nightraver/sole.svg"
  14316. }
  14317. },
  14318. foot: {
  14319. height: math.unit(2.285, "feet"),
  14320. name: "Foot",
  14321. image: {
  14322. source: "./media/characters/nightraver/foot.svg"
  14323. }
  14324. },
  14325. maw: {
  14326. height: math.unit(2.67, "feet"),
  14327. name: "Maw",
  14328. image: {
  14329. source: "./media/characters/nightraver/maw.svg"
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Micro",
  14336. height: math.unit(1, "cm")
  14337. },
  14338. {
  14339. name: "Normal",
  14340. height: math.unit(15, "feet"),
  14341. default: true
  14342. },
  14343. {
  14344. name: "Macro",
  14345. height: math.unit(300, "feet")
  14346. },
  14347. {
  14348. name: "Megamacro",
  14349. height: math.unit(300, "miles")
  14350. },
  14351. {
  14352. name: "Gigamacro",
  14353. height: math.unit(10000, "miles")
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14359. {
  14360. side: {
  14361. height: math.unit(2, "inches"),
  14362. weight: math.unit(5, "grams"),
  14363. name: "Side",
  14364. image: {
  14365. source: "./media/characters/arc/side.svg"
  14366. }
  14367. },
  14368. },
  14369. [
  14370. {
  14371. name: "Micro",
  14372. height: math.unit(2, "inches"),
  14373. default: true
  14374. },
  14375. ]
  14376. ))
  14377. characterMakers.push(() => makeCharacter(
  14378. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14379. {
  14380. front: {
  14381. height: math.unit(1.1938, "meters"),
  14382. weight: math.unit(54, "kg"),
  14383. name: "Front",
  14384. image: {
  14385. source: "./media/characters/nebula-shahar/front.svg",
  14386. extra: 1642 / 1436,
  14387. bottom: 0.06
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Megamicro",
  14394. height: math.unit(0.3, "mm")
  14395. },
  14396. {
  14397. name: "Micro",
  14398. height: math.unit(3, "cm")
  14399. },
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(138, "cm"),
  14403. default: true
  14404. },
  14405. {
  14406. name: "Macro",
  14407. height: math.unit(30, "m")
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(5.24, "feet"),
  14416. weight: math.unit(150, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/shayla/front.svg",
  14420. extra: 1512 / 1414,
  14421. bottom: 0.01
  14422. }
  14423. },
  14424. back: {
  14425. height: math.unit(5.24, "feet"),
  14426. weight: math.unit(150, "lb"),
  14427. name: "Back",
  14428. image: {
  14429. source: "./media/characters/shayla/back.svg",
  14430. extra: 1512 / 1414
  14431. }
  14432. },
  14433. hand: {
  14434. height: math.unit(0.7781496062992126, "feet"),
  14435. name: "Hand",
  14436. image: {
  14437. source: "./media/characters/shayla/hand.svg"
  14438. }
  14439. },
  14440. foot: {
  14441. height: math.unit(1.4206036745406823, "feet"),
  14442. name: "Foot",
  14443. image: {
  14444. source: "./media/characters/shayla/foot.svg"
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Micro",
  14451. height: math.unit(0.32, "feet")
  14452. },
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(5.24, "feet"),
  14456. default: true
  14457. },
  14458. {
  14459. name: "Macro",
  14460. height: math.unit(492.12, "feet")
  14461. },
  14462. {
  14463. name: "Megamacro",
  14464. height: math.unit(186.41, "miles")
  14465. },
  14466. ]
  14467. ))
  14468. characterMakers.push(() => makeCharacter(
  14469. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14470. {
  14471. front: {
  14472. height: math.unit(2.2, "m"),
  14473. weight: math.unit(120, "kg"),
  14474. name: "Front",
  14475. image: {
  14476. source: "./media/characters/pia-jr/front.svg",
  14477. extra: 1000 / 970,
  14478. bottom: 0.035
  14479. }
  14480. },
  14481. hand: {
  14482. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14483. name: "Hand",
  14484. image: {
  14485. source: "./media/characters/pia-jr/hand.svg"
  14486. }
  14487. },
  14488. paw: {
  14489. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14490. name: "Paw",
  14491. image: {
  14492. source: "./media/characters/pia-jr/paw.svg"
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Micro",
  14499. height: math.unit(1.2, "cm")
  14500. },
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(2.2, "m"),
  14504. default: true
  14505. },
  14506. {
  14507. name: "Macro",
  14508. height: math.unit(180, "m")
  14509. },
  14510. {
  14511. name: "Megamacro",
  14512. height: math.unit(420, "km")
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14518. {
  14519. front: {
  14520. height: math.unit(2, "m"),
  14521. weight: math.unit(115, "kg"),
  14522. name: "Front",
  14523. image: {
  14524. source: "./media/characters/pia-sr/front.svg",
  14525. extra: 760 / 730,
  14526. bottom: 0.015
  14527. }
  14528. },
  14529. back: {
  14530. height: math.unit(2, "m"),
  14531. weight: math.unit(115, "kg"),
  14532. name: "Back",
  14533. image: {
  14534. source: "./media/characters/pia-sr/back.svg",
  14535. extra: 760 / 730,
  14536. bottom: 0.01
  14537. }
  14538. },
  14539. hand: {
  14540. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14541. name: "Hand",
  14542. image: {
  14543. source: "./media/characters/pia-sr/hand.svg"
  14544. }
  14545. },
  14546. foot: {
  14547. height: math.unit(1.83, "feet"),
  14548. name: "Foot",
  14549. image: {
  14550. source: "./media/characters/pia-sr/foot.svg"
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Micro",
  14557. height: math.unit(88, "mm")
  14558. },
  14559. {
  14560. name: "Normal",
  14561. height: math.unit(2, "m"),
  14562. default: true
  14563. },
  14564. {
  14565. name: "Macro",
  14566. height: math.unit(200, "m")
  14567. },
  14568. {
  14569. name: "Megamacro",
  14570. height: math.unit(420, "km")
  14571. },
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14576. {
  14577. front: {
  14578. height: math.unit(8 + 2 / 12, "feet"),
  14579. weight: math.unit(300, "lb"),
  14580. name: "Front",
  14581. image: {
  14582. source: "./media/characters/kibibyte/front.svg",
  14583. extra: 2221 / 2098,
  14584. bottom: 0.04
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Normal",
  14591. height: math.unit(8 + 2 / 12, "feet"),
  14592. default: true
  14593. },
  14594. {
  14595. name: "Socialable Macro",
  14596. height: math.unit(50, "feet")
  14597. },
  14598. {
  14599. name: "Macro",
  14600. height: math.unit(300, "feet")
  14601. },
  14602. {
  14603. name: "Megamacro",
  14604. height: math.unit(500, "miles")
  14605. },
  14606. ]
  14607. ))
  14608. characterMakers.push(() => makeCharacter(
  14609. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14610. {
  14611. front: {
  14612. height: math.unit(6, "feet"),
  14613. weight: math.unit(150, "lb"),
  14614. name: "Front",
  14615. image: {
  14616. source: "./media/characters/felix/front.svg",
  14617. extra: 762 / 722,
  14618. bottom: 0.02
  14619. }
  14620. },
  14621. frontClothed: {
  14622. height: math.unit(6, "feet"),
  14623. weight: math.unit(150, "lb"),
  14624. name: "Front (Clothed)",
  14625. image: {
  14626. source: "./media/characters/felix/front-clothed.svg",
  14627. extra: 762 / 722,
  14628. bottom: 0.02
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Normal",
  14635. height: math.unit(6 + 8 / 12, "feet"),
  14636. default: true
  14637. },
  14638. {
  14639. name: "Macro",
  14640. height: math.unit(2600, "feet")
  14641. },
  14642. {
  14643. name: "Megamacro",
  14644. height: math.unit(450, "miles")
  14645. },
  14646. ]
  14647. ))
  14648. characterMakers.push(() => makeCharacter(
  14649. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14650. {
  14651. front: {
  14652. height: math.unit(6 + 1 / 12, "feet"),
  14653. weight: math.unit(250, "lb"),
  14654. name: "Front",
  14655. image: {
  14656. source: "./media/characters/tobo/front.svg",
  14657. extra: 608 / 586,
  14658. bottom: 0.023
  14659. }
  14660. },
  14661. back: {
  14662. height: math.unit(6 + 1 / 12, "feet"),
  14663. weight: math.unit(250, "lb"),
  14664. name: "Back",
  14665. image: {
  14666. source: "./media/characters/tobo/back.svg",
  14667. extra: 608 / 586
  14668. }
  14669. },
  14670. },
  14671. [
  14672. {
  14673. name: "Nano",
  14674. height: math.unit(2, "nm")
  14675. },
  14676. {
  14677. name: "Megamicro",
  14678. height: math.unit(0.1, "mm")
  14679. },
  14680. {
  14681. name: "Micro",
  14682. height: math.unit(1, "inch"),
  14683. default: true
  14684. },
  14685. {
  14686. name: "Human-sized",
  14687. height: math.unit(6 + 1 / 12, "feet")
  14688. },
  14689. {
  14690. name: "Macro",
  14691. height: math.unit(250, "feet")
  14692. },
  14693. {
  14694. name: "Megamacro",
  14695. height: math.unit(75, "miles")
  14696. },
  14697. {
  14698. name: "Texas-sized",
  14699. height: math.unit(750, "miles")
  14700. },
  14701. {
  14702. name: "Teramacro",
  14703. height: math.unit(50000, "miles")
  14704. },
  14705. ]
  14706. ))
  14707. characterMakers.push(() => makeCharacter(
  14708. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14709. {
  14710. front: {
  14711. height: math.unit(6, "feet"),
  14712. weight: math.unit(269, "lb"),
  14713. name: "Front",
  14714. image: {
  14715. source: "./media/characters/danny-kapowsky/front.svg",
  14716. extra: 766 / 736,
  14717. bottom: 0.044
  14718. }
  14719. },
  14720. back: {
  14721. height: math.unit(6, "feet"),
  14722. weight: math.unit(269, "lb"),
  14723. name: "Back",
  14724. image: {
  14725. source: "./media/characters/danny-kapowsky/back.svg",
  14726. extra: 797 / 760,
  14727. bottom: 0.025
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Macro",
  14734. height: math.unit(150, "feet"),
  14735. default: true
  14736. },
  14737. {
  14738. name: "Macro+",
  14739. height: math.unit(200, "feet")
  14740. },
  14741. {
  14742. name: "Macro++",
  14743. height: math.unit(300, "feet")
  14744. },
  14745. {
  14746. name: "Macro+++",
  14747. height: math.unit(400, "feet")
  14748. },
  14749. ]
  14750. ))
  14751. characterMakers.push(() => makeCharacter(
  14752. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14753. {
  14754. side: {
  14755. height: math.unit(6, "feet"),
  14756. weight: math.unit(170, "lb"),
  14757. name: "Side",
  14758. image: {
  14759. source: "./media/characters/finn/side.svg",
  14760. extra: 1953 / 1807,
  14761. bottom: 0.057
  14762. }
  14763. },
  14764. },
  14765. [
  14766. {
  14767. name: "Megamacro",
  14768. height: math.unit(14445, "feet"),
  14769. default: true
  14770. },
  14771. ]
  14772. ))
  14773. characterMakers.push(() => makeCharacter(
  14774. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14775. {
  14776. front: {
  14777. height: math.unit(5 + 6 / 12, "feet"),
  14778. weight: math.unit(125, "lb"),
  14779. name: "Front",
  14780. image: {
  14781. source: "./media/characters/roy/front.svg",
  14782. extra: 1,
  14783. bottom: 0.11
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Micro",
  14790. height: math.unit(3, "inches"),
  14791. default: true
  14792. },
  14793. {
  14794. name: "Normal",
  14795. height: math.unit(5 + 6 / 12, "feet")
  14796. },
  14797. {
  14798. name: "Lesser Macro",
  14799. height: math.unit(60, "feet")
  14800. },
  14801. {
  14802. name: "Greater Macro",
  14803. height: math.unit(120, "feet")
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14809. {
  14810. front: {
  14811. height: math.unit(6, "feet"),
  14812. weight: math.unit(100, "lb"),
  14813. name: "Front",
  14814. image: {
  14815. source: "./media/characters/aevsivs/front.svg",
  14816. extra: 1,
  14817. bottom: 0.03
  14818. }
  14819. },
  14820. back: {
  14821. height: math.unit(6, "feet"),
  14822. weight: math.unit(100, "lb"),
  14823. name: "Back",
  14824. image: {
  14825. source: "./media/characters/aevsivs/back.svg"
  14826. }
  14827. },
  14828. },
  14829. [
  14830. {
  14831. name: "Micro",
  14832. height: math.unit(2, "inches"),
  14833. default: true
  14834. },
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(5, "feet")
  14838. },
  14839. ]
  14840. ))
  14841. characterMakers.push(() => makeCharacter(
  14842. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14843. {
  14844. front: {
  14845. height: math.unit(5 + 7 / 12, "feet"),
  14846. weight: math.unit(159, "lb"),
  14847. name: "Front",
  14848. image: {
  14849. source: "./media/characters/hildegard/front.svg",
  14850. extra: 289 / 269,
  14851. bottom: 7.63 / 297.8
  14852. }
  14853. },
  14854. back: {
  14855. height: math.unit(5 + 7 / 12, "feet"),
  14856. weight: math.unit(159, "lb"),
  14857. name: "Back",
  14858. image: {
  14859. source: "./media/characters/hildegard/back.svg",
  14860. extra: 280 / 260,
  14861. bottom: 2.3 / 282
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Normal",
  14868. height: math.unit(5 + 7 / 12, "feet"),
  14869. default: true
  14870. },
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14875. {
  14876. bernard: {
  14877. height: math.unit(2 + 7 / 12, "feet"),
  14878. weight: math.unit(66, "lb"),
  14879. name: "Bernard",
  14880. rename: true,
  14881. image: {
  14882. source: "./media/characters/bernard-wilder/bernard.svg",
  14883. extra: 192 / 128,
  14884. bottom: 0.05
  14885. }
  14886. },
  14887. wilder: {
  14888. height: math.unit(5 + 8 / 12, "feet"),
  14889. weight: math.unit(143, "lb"),
  14890. name: "Wilder",
  14891. rename: true,
  14892. image: {
  14893. source: "./media/characters/bernard-wilder/wilder.svg",
  14894. extra: 361 / 312,
  14895. bottom: 0.02
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Normal",
  14902. height: math.unit(2 + 7 / 12, "feet"),
  14903. default: true
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14909. {
  14910. anthro: {
  14911. height: math.unit(6 + 1 / 12, "feet"),
  14912. weight: math.unit(155, "lb"),
  14913. name: "Anthro",
  14914. image: {
  14915. source: "./media/characters/hearth/anthro.svg",
  14916. extra: 260 / 250,
  14917. bottom: 0.02
  14918. }
  14919. },
  14920. feral: {
  14921. height: math.unit(3.78, "feet"),
  14922. weight: math.unit(35, "kg"),
  14923. name: "Feral",
  14924. image: {
  14925. source: "./media/characters/hearth/feral.svg",
  14926. extra: 153 / 135,
  14927. bottom: 0.03
  14928. }
  14929. },
  14930. },
  14931. [
  14932. {
  14933. name: "Normal",
  14934. height: math.unit(6 + 1 / 12, "feet"),
  14935. default: true
  14936. },
  14937. ]
  14938. ))
  14939. characterMakers.push(() => makeCharacter(
  14940. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14941. {
  14942. front: {
  14943. height: math.unit(6, "feet"),
  14944. weight: math.unit(182, "lb"),
  14945. name: "Front",
  14946. image: {
  14947. source: "./media/characters/ingrid/front.svg",
  14948. extra: 294 / 268,
  14949. bottom: 0.027
  14950. }
  14951. },
  14952. },
  14953. [
  14954. {
  14955. name: "Normal",
  14956. height: math.unit(6, "feet"),
  14957. default: true
  14958. },
  14959. ]
  14960. ))
  14961. characterMakers.push(() => makeCharacter(
  14962. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14963. {
  14964. eevee: {
  14965. height: math.unit(2 + 10 / 12, "feet"),
  14966. weight: math.unit(86, "lb"),
  14967. name: "Malgam",
  14968. image: {
  14969. source: "./media/characters/malgam/eevee.svg",
  14970. extra: 218 / 180,
  14971. bottom: 0.2
  14972. }
  14973. },
  14974. sylveon: {
  14975. height: math.unit(4, "feet"),
  14976. weight: math.unit(101, "lb"),
  14977. name: "Future Malgam",
  14978. rename: true,
  14979. image: {
  14980. source: "./media/characters/malgam/sylveon.svg",
  14981. extra: 371 / 325,
  14982. bottom: 0.015
  14983. }
  14984. },
  14985. gigantamax: {
  14986. height: math.unit(50, "feet"),
  14987. name: "Gigantamax Malgam",
  14988. rename: true,
  14989. image: {
  14990. source: "./media/characters/malgam/gigantamax.svg"
  14991. }
  14992. },
  14993. },
  14994. [
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(2 + 10 / 12, "feet"),
  14998. default: true
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15004. {
  15005. front: {
  15006. height: math.unit(5 + 11 / 12, "feet"),
  15007. weight: math.unit(188, "lb"),
  15008. name: "Front",
  15009. image: {
  15010. source: "./media/characters/fleur/front.svg",
  15011. extra: 309 / 283,
  15012. bottom: 0.007
  15013. }
  15014. },
  15015. },
  15016. [
  15017. {
  15018. name: "Normal",
  15019. height: math.unit(5 + 11 / 12, "feet"),
  15020. default: true
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(5 + 4 / 12, "feet"),
  15029. weight: math.unit(122, "lb"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/jude/front.svg",
  15033. extra: 288 / 273,
  15034. bottom: 0.03
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(5 + 4 / 12, "feet"),
  15042. default: true
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15048. {
  15049. front: {
  15050. height: math.unit(5 + 11 / 12, "feet"),
  15051. weight: math.unit(190, "lb"),
  15052. name: "Front",
  15053. image: {
  15054. source: "./media/characters/seara/front.svg",
  15055. extra: 1,
  15056. bottom: 0.05
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(5 + 11 / 12, "feet"),
  15064. default: true
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(16 + 5 / 12, "feet"),
  15073. weight: math.unit(524, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/caspian/front.svg",
  15077. extra: 1,
  15078. bottom: 0.04
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(16 + 5 / 12, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(5 + 7 / 12, "feet"),
  15095. weight: math.unit(170, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/mika/front.svg",
  15099. extra: 1,
  15100. bottom: 0.016
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(5 + 7 / 12, "feet"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15114. {
  15115. front: {
  15116. height: math.unit(6 + 2 / 12, "feet"),
  15117. weight: math.unit(268, "lb"),
  15118. name: "Front",
  15119. image: {
  15120. source: "./media/characters/sol/front.svg",
  15121. extra: 247 / 231,
  15122. bottom: 0.05
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(6 + 2 / 12, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15136. {
  15137. buizel: {
  15138. height: math.unit(2 + 5 / 12, "feet"),
  15139. weight: math.unit(87, "lb"),
  15140. name: "Buizel",
  15141. image: {
  15142. source: "./media/characters/umiko/buizel.svg",
  15143. extra: 172 / 157,
  15144. bottom: 0.01
  15145. }
  15146. },
  15147. floatzel: {
  15148. height: math.unit(5 + 9 / 12, "feet"),
  15149. weight: math.unit(250, "lb"),
  15150. name: "Floatzel",
  15151. image: {
  15152. source: "./media/characters/umiko/floatzel.svg",
  15153. extra: 262 / 248
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(2 + 5 / 12, "feet"),
  15161. default: true
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(6 + 2 / 12, "feet"),
  15170. weight: math.unit(146, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/iliac/front.svg",
  15174. extra: 389 / 365,
  15175. bottom: 0.035
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Normal",
  15182. height: math.unit(6 + 2 / 12, "feet"),
  15183. default: true
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15189. {
  15190. front: {
  15191. height: math.unit(6, "feet"),
  15192. weight: math.unit(170, "lb"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/topaz/front.svg",
  15196. extra: 317 / 303,
  15197. bottom: 0.055
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Normal",
  15204. height: math.unit(6, "feet"),
  15205. default: true
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15211. {
  15212. front: {
  15213. height: math.unit(5 + 11 / 12, "feet"),
  15214. weight: math.unit(144, "lb"),
  15215. name: "Front",
  15216. image: {
  15217. source: "./media/characters/gabriel/front.svg",
  15218. extra: 285 / 262,
  15219. bottom: 0.004
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Normal",
  15226. height: math.unit(5 + 11 / 12, "feet"),
  15227. default: true
  15228. },
  15229. ]
  15230. ))
  15231. characterMakers.push(() => makeCharacter(
  15232. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15233. {
  15234. side: {
  15235. height: math.unit(6 + 5 / 12, "feet"),
  15236. weight: math.unit(300, "lb"),
  15237. name: "Side",
  15238. image: {
  15239. source: "./media/characters/tempest-suicune/side.svg",
  15240. extra: 195 / 154,
  15241. bottom: 0.04
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Normal",
  15248. height: math.unit(6 + 5 / 12, "feet"),
  15249. default: true
  15250. },
  15251. ]
  15252. ))
  15253. characterMakers.push(() => makeCharacter(
  15254. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15255. {
  15256. front: {
  15257. height: math.unit(7 + 2 / 12, "feet"),
  15258. weight: math.unit(322, "lb"),
  15259. name: "Front",
  15260. image: {
  15261. source: "./media/characters/vulcan/front.svg",
  15262. extra: 154 / 147,
  15263. bottom: 0.04
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(7 + 2 / 12, "feet"),
  15271. default: true
  15272. },
  15273. ]
  15274. ))
  15275. characterMakers.push(() => makeCharacter(
  15276. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15277. {
  15278. front: {
  15279. height: math.unit(5 + 10 / 12, "feet"),
  15280. weight: math.unit(264, "lb"),
  15281. name: "Front",
  15282. image: {
  15283. source: "./media/characters/gault/front.svg",
  15284. extra: 161 / 140,
  15285. bottom: 0.028
  15286. }
  15287. },
  15288. },
  15289. [
  15290. {
  15291. name: "Normal",
  15292. height: math.unit(5 + 10 / 12, "feet"),
  15293. default: true
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15299. {
  15300. front: {
  15301. height: math.unit(6, "feet"),
  15302. weight: math.unit(150, "lb"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/shard/front.svg",
  15306. extra: 273 / 238,
  15307. bottom: 0.02
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(3 + 6 / 12, "feet"),
  15315. default: true
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(5 + 11 / 12, "feet"),
  15324. weight: math.unit(146, "lb"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/ashe/front.svg",
  15328. extra: 400 / 373,
  15329. bottom: 0.01
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Normal",
  15336. height: math.unit(5 + 11 / 12, "feet"),
  15337. default: true
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15343. {
  15344. front: {
  15345. height: math.unit(5 + 5 / 12, "feet"),
  15346. weight: math.unit(135, "lb"),
  15347. name: "Front",
  15348. image: {
  15349. source: "./media/characters/beatrix/front.svg",
  15350. extra: 392 / 379,
  15351. bottom: 0.01
  15352. }
  15353. },
  15354. },
  15355. [
  15356. {
  15357. name: "Normal",
  15358. height: math.unit(6, "feet"),
  15359. default: true
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(6, "feet"),
  15368. weight: math.unit(150, "lb"),
  15369. name: "Front",
  15370. image: {
  15371. source: "./media/characters/ignatius/front.svg",
  15372. extra: 245 / 222,
  15373. bottom: 0.01
  15374. }
  15375. },
  15376. },
  15377. [
  15378. {
  15379. name: "Normal",
  15380. height: math.unit(5 + 5 / 12, "feet"),
  15381. default: true
  15382. },
  15383. ]
  15384. ))
  15385. characterMakers.push(() => makeCharacter(
  15386. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15387. {
  15388. front: {
  15389. height: math.unit(6 + 2 / 12, "feet"),
  15390. weight: math.unit(138, "lb"),
  15391. name: "Front",
  15392. image: {
  15393. source: "./media/characters/mei-li/front.svg",
  15394. extra: 237 / 229,
  15395. bottom: 0.03
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(6 + 2 / 12, "feet"),
  15403. default: true
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(2 + 4 / 12, "feet"),
  15412. weight: math.unit(62, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/puru/front.svg",
  15416. extra: 206 / 149,
  15417. bottom: 0.06
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(2 + 4 / 12, "feet"),
  15425. default: true
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15431. {
  15432. anthro: {
  15433. height: math.unit(5 + 8/12, "feet"),
  15434. weight: math.unit(200, "lb"),
  15435. energyNeed: math.unit(2000, "kcal"),
  15436. name: "Anthro",
  15437. image: {
  15438. source: "./media/characters/kee/anthro.svg",
  15439. extra: 3251/3184,
  15440. bottom: 250/3501
  15441. }
  15442. },
  15443. taur: {
  15444. height: math.unit(11, "feet"),
  15445. weight: math.unit(500, "lb"),
  15446. energyNeed: math.unit(5000, "kcal"),
  15447. name: "Taur",
  15448. image: {
  15449. source: "./media/characters/kee/taur.svg",
  15450. extra: 1362/1320,
  15451. bottom: 83/1445
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Normal",
  15458. height: math.unit(5 + 8/12, "feet"),
  15459. default: true
  15460. },
  15461. {
  15462. name: "Macro",
  15463. height: math.unit(35, "feet")
  15464. },
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15469. {
  15470. anthro: {
  15471. height: math.unit(7, "feet"),
  15472. weight: math.unit(190, "lb"),
  15473. name: "Anthro",
  15474. image: {
  15475. source: "./media/characters/cobalt-dracha/anthro.svg",
  15476. extra: 231 / 225,
  15477. bottom: 0.04
  15478. }
  15479. },
  15480. feral: {
  15481. height: math.unit(9 + 7 / 12, "feet"),
  15482. weight: math.unit(294, "lb"),
  15483. name: "Feral",
  15484. image: {
  15485. source: "./media/characters/cobalt-dracha/feral.svg",
  15486. extra: 692 / 633,
  15487. bottom: 0.05
  15488. }
  15489. },
  15490. },
  15491. [
  15492. {
  15493. name: "Normal",
  15494. height: math.unit(7, "feet"),
  15495. default: true
  15496. },
  15497. ]
  15498. ))
  15499. characterMakers.push(() => makeCharacter(
  15500. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15501. {
  15502. fallen: {
  15503. height: math.unit(11 + 8 / 12, "feet"),
  15504. weight: math.unit(485, "lb"),
  15505. name: "Java (Fallen)",
  15506. rename: true,
  15507. image: {
  15508. source: "./media/characters/java/fallen.svg",
  15509. extra: 226 / 208,
  15510. bottom: 0.005
  15511. }
  15512. },
  15513. godkin: {
  15514. height: math.unit(10 + 6 / 12, "feet"),
  15515. weight: math.unit(328, "lb"),
  15516. name: "Java (Godkin)",
  15517. rename: true,
  15518. image: {
  15519. source: "./media/characters/java/godkin.svg",
  15520. extra: 270 / 262,
  15521. bottom: 0.02
  15522. }
  15523. },
  15524. },
  15525. [
  15526. {
  15527. name: "Normal",
  15528. height: math.unit(11 + 8 / 12, "feet"),
  15529. default: true
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15535. {
  15536. front: {
  15537. height: math.unit(7 + 8 / 12, "feet"),
  15538. weight: math.unit(320, "lb"),
  15539. name: "Front",
  15540. image: {
  15541. source: "./media/characters/skoll/front.svg",
  15542. extra: 232 / 220,
  15543. bottom: 0.02
  15544. }
  15545. },
  15546. },
  15547. [
  15548. {
  15549. name: "Normal",
  15550. height: math.unit(7 + 8 / 12, "feet"),
  15551. default: true
  15552. },
  15553. ]
  15554. ))
  15555. characterMakers.push(() => makeCharacter(
  15556. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15557. {
  15558. front: {
  15559. height: math.unit(5 + 9 / 12, "feet"),
  15560. weight: math.unit(170, "lb"),
  15561. name: "Front",
  15562. image: {
  15563. source: "./media/characters/purna/front.svg",
  15564. extra: 239 / 229,
  15565. bottom: 0.01
  15566. }
  15567. },
  15568. },
  15569. [
  15570. {
  15571. name: "Normal",
  15572. height: math.unit(5 + 9 / 12, "feet"),
  15573. default: true
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15579. {
  15580. front: {
  15581. height: math.unit(5 + 9 / 12, "feet"),
  15582. weight: math.unit(142, "lb"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/kuva/front.svg",
  15586. extra: 281 / 271,
  15587. bottom: 0.006
  15588. }
  15589. },
  15590. },
  15591. [
  15592. {
  15593. name: "Normal",
  15594. height: math.unit(5 + 9 / 12, "feet"),
  15595. default: true
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15601. {
  15602. anthro: {
  15603. height: math.unit(9 + 2 / 12, "feet"),
  15604. weight: math.unit(270, "lb"),
  15605. name: "Anthro",
  15606. image: {
  15607. source: "./media/characters/embra/anthro.svg",
  15608. extra: 200 / 187,
  15609. bottom: 0.02
  15610. }
  15611. },
  15612. feral: {
  15613. height: math.unit(18 + 8 / 12, "feet"),
  15614. weight: math.unit(576, "lb"),
  15615. name: "Feral",
  15616. image: {
  15617. source: "./media/characters/embra/feral.svg",
  15618. extra: 152 / 137,
  15619. bottom: 0.037
  15620. }
  15621. },
  15622. },
  15623. [
  15624. {
  15625. name: "Normal",
  15626. height: math.unit(9 + 2 / 12, "feet"),
  15627. default: true
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15633. {
  15634. anthro: {
  15635. height: math.unit(10 + 9 / 12, "feet"),
  15636. weight: math.unit(224, "lb"),
  15637. name: "Anthro",
  15638. image: {
  15639. source: "./media/characters/grottos/anthro.svg",
  15640. extra: 350 / 332,
  15641. bottom: 0.045
  15642. }
  15643. },
  15644. feral: {
  15645. height: math.unit(20 + 7 / 12, "feet"),
  15646. weight: math.unit(629, "lb"),
  15647. name: "Feral",
  15648. image: {
  15649. source: "./media/characters/grottos/feral.svg",
  15650. extra: 207 / 190,
  15651. bottom: 0.05
  15652. }
  15653. },
  15654. },
  15655. [
  15656. {
  15657. name: "Normal",
  15658. height: math.unit(10 + 9 / 12, "feet"),
  15659. default: true
  15660. },
  15661. ]
  15662. ))
  15663. characterMakers.push(() => makeCharacter(
  15664. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15665. {
  15666. anthro: {
  15667. height: math.unit(9 + 6 / 12, "feet"),
  15668. weight: math.unit(298, "lb"),
  15669. name: "Anthro",
  15670. image: {
  15671. source: "./media/characters/frifna/anthro.svg",
  15672. extra: 282 / 269,
  15673. bottom: 0.015
  15674. }
  15675. },
  15676. feral: {
  15677. height: math.unit(16 + 2 / 12, "feet"),
  15678. weight: math.unit(624, "lb"),
  15679. name: "Feral",
  15680. image: {
  15681. source: "./media/characters/frifna/feral.svg"
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(9 + 6 / 12, "feet"),
  15689. default: true
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15695. {
  15696. front: {
  15697. height: math.unit(6 + 2 / 12, "feet"),
  15698. weight: math.unit(168, "lb"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/elise/front.svg",
  15702. extra: 276 / 271
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Normal",
  15709. height: math.unit(6 + 2 / 12, "feet"),
  15710. default: true
  15711. },
  15712. ]
  15713. ))
  15714. characterMakers.push(() => makeCharacter(
  15715. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15716. {
  15717. front: {
  15718. height: math.unit(5 + 10 / 12, "feet"),
  15719. weight: math.unit(210, "lb"),
  15720. name: "Front",
  15721. image: {
  15722. source: "./media/characters/glade/front.svg",
  15723. extra: 258 / 247,
  15724. bottom: 0.008
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Normal",
  15731. height: math.unit(5 + 10 / 12, "feet"),
  15732. default: true
  15733. },
  15734. ]
  15735. ))
  15736. characterMakers.push(() => makeCharacter(
  15737. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15738. {
  15739. front: {
  15740. height: math.unit(5 + 10 / 12, "feet"),
  15741. weight: math.unit(129, "lb"),
  15742. name: "Front",
  15743. image: {
  15744. source: "./media/characters/rina/front.svg",
  15745. extra: 266 / 255,
  15746. bottom: 0.005
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(5 + 10 / 12, "feet"),
  15754. default: true
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15760. {
  15761. front: {
  15762. height: math.unit(6 + 1 / 12, "feet"),
  15763. weight: math.unit(192, "lb"),
  15764. name: "Front",
  15765. image: {
  15766. source: "./media/characters/veronica/front.svg",
  15767. extra: 319 / 309,
  15768. bottom: 0.005
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Normal",
  15775. height: math.unit(6 + 1 / 12, "feet"),
  15776. default: true
  15777. },
  15778. ]
  15779. ))
  15780. characterMakers.push(() => makeCharacter(
  15781. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15782. {
  15783. front: {
  15784. height: math.unit(9 + 3 / 12, "feet"),
  15785. weight: math.unit(1100, "lb"),
  15786. name: "Front",
  15787. image: {
  15788. source: "./media/characters/braxton/front.svg",
  15789. extra: 1057 / 984,
  15790. bottom: 0.05
  15791. }
  15792. },
  15793. },
  15794. [
  15795. {
  15796. name: "Normal",
  15797. height: math.unit(9 + 3 / 12, "feet")
  15798. },
  15799. {
  15800. name: "Giant",
  15801. height: math.unit(300, "feet"),
  15802. default: true
  15803. },
  15804. {
  15805. name: "Macro",
  15806. height: math.unit(700, "feet")
  15807. },
  15808. {
  15809. name: "Megamacro",
  15810. height: math.unit(6000, "feet")
  15811. },
  15812. ]
  15813. ))
  15814. characterMakers.push(() => makeCharacter(
  15815. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15816. {
  15817. front: {
  15818. height: math.unit(6 + 7 / 12, "feet"),
  15819. weight: math.unit(150, "lb"),
  15820. name: "Front",
  15821. image: {
  15822. source: "./media/characters/blue-feyonics/front.svg",
  15823. extra: 1403 / 1306,
  15824. bottom: 0.047
  15825. }
  15826. },
  15827. },
  15828. [
  15829. {
  15830. name: "Normal",
  15831. height: math.unit(6 + 7 / 12, "feet"),
  15832. default: true
  15833. },
  15834. ]
  15835. ))
  15836. characterMakers.push(() => makeCharacter(
  15837. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15838. {
  15839. front: {
  15840. height: math.unit(1.8, "meters"),
  15841. weight: math.unit(60, "kg"),
  15842. name: "Front",
  15843. image: {
  15844. source: "./media/characters/maxwell/front.svg",
  15845. extra: 2060 / 1873
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Micro",
  15852. height: math.unit(1, "mm")
  15853. },
  15854. {
  15855. name: "Normal",
  15856. height: math.unit(1.8, "meter"),
  15857. default: true
  15858. },
  15859. {
  15860. name: "Macro",
  15861. height: math.unit(30, "meters")
  15862. },
  15863. {
  15864. name: "Megamacro",
  15865. height: math.unit(10, "km")
  15866. },
  15867. ]
  15868. ))
  15869. characterMakers.push(() => makeCharacter(
  15870. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15871. {
  15872. front: {
  15873. height: math.unit(6, "feet"),
  15874. weight: math.unit(150, "lb"),
  15875. name: "Front",
  15876. image: {
  15877. source: "./media/characters/jack/front.svg",
  15878. extra: 1754 / 1640,
  15879. bottom: 0.01
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Normal",
  15886. height: math.unit(80000, "feet"),
  15887. default: true
  15888. },
  15889. {
  15890. name: "Max size",
  15891. height: math.unit(10, "lightyears")
  15892. },
  15893. ]
  15894. ))
  15895. characterMakers.push(() => makeCharacter(
  15896. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15897. {
  15898. urban: {
  15899. height: math.unit(5, "feet"),
  15900. weight: math.unit(240, "lb"),
  15901. name: "Urban",
  15902. image: {
  15903. source: "./media/characters/cafat/urban.svg",
  15904. extra: 1223/1126,
  15905. bottom: 205/1428
  15906. }
  15907. },
  15908. summer: {
  15909. height: math.unit(5, "feet"),
  15910. weight: math.unit(240, "lb"),
  15911. name: "Summer",
  15912. image: {
  15913. source: "./media/characters/cafat/summer.svg",
  15914. extra: 1223/1126,
  15915. bottom: 205/1428
  15916. }
  15917. },
  15918. winter: {
  15919. height: math.unit(5, "feet"),
  15920. weight: math.unit(240, "lb"),
  15921. name: "Winter",
  15922. image: {
  15923. source: "./media/characters/cafat/winter.svg",
  15924. extra: 1223/1126,
  15925. bottom: 205/1428
  15926. }
  15927. },
  15928. lingerie: {
  15929. height: math.unit(5, "feet"),
  15930. weight: math.unit(240, "lb"),
  15931. name: "Lingerie",
  15932. image: {
  15933. source: "./media/characters/cafat/lingerie.svg",
  15934. extra: 1223/1126,
  15935. bottom: 205/1428
  15936. }
  15937. },
  15938. upright: {
  15939. height: math.unit(6.3, "feet"),
  15940. weight: math.unit(240, "lb"),
  15941. name: "Upright",
  15942. image: {
  15943. source: "./media/characters/cafat/upright.svg",
  15944. bottom: 0.01
  15945. }
  15946. },
  15947. uprightFull: {
  15948. height: math.unit(6.3, "feet"),
  15949. weight: math.unit(240, "lb"),
  15950. name: "Upright (Full)",
  15951. image: {
  15952. source: "./media/characters/cafat/upright-full.svg",
  15953. bottom: 0.01
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Small",
  15960. height: math.unit(5, "feet"),
  15961. default: true
  15962. },
  15963. {
  15964. name: "Large",
  15965. height: math.unit(13, "feet")
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(6, "feet"),
  15974. weight: math.unit(150, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/verin-raharra/front.svg",
  15978. extra: 5019 / 4835,
  15979. bottom: 0.023
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(7 + 5 / 12, "feet"),
  15987. default: true
  15988. },
  15989. {
  15990. name: "Upsized",
  15991. height: math.unit(20, "feet")
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(7, "feet"),
  16000. weight: math.unit(230, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/nakata/front.svg",
  16004. extra: 1.005,
  16005. bottom: 0.01
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Normal",
  16012. height: math.unit(7, "feet"),
  16013. default: true
  16014. },
  16015. {
  16016. name: "Big",
  16017. height: math.unit(14, "feet")
  16018. },
  16019. {
  16020. name: "Macro",
  16021. height: math.unit(400, "feet")
  16022. },
  16023. ]
  16024. ))
  16025. characterMakers.push(() => makeCharacter(
  16026. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16027. {
  16028. front: {
  16029. height: math.unit(4.91, "feet"),
  16030. weight: math.unit(100, "lb"),
  16031. name: "Front",
  16032. image: {
  16033. source: "./media/characters/lily/front.svg",
  16034. extra: 1585 / 1415,
  16035. bottom: 0.02
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Normal",
  16042. height: math.unit(4.91, "feet"),
  16043. default: true
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16049. {
  16050. laying: {
  16051. height: math.unit(4 + 4 / 12, "feet"),
  16052. weight: math.unit(600, "lb"),
  16053. name: "Laying",
  16054. image: {
  16055. source: "./media/characters/sheila/laying.svg",
  16056. extra: 1333 / 1265,
  16057. bottom: 0.16
  16058. }
  16059. },
  16060. },
  16061. [
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(4 + 4 / 12, "feet"),
  16065. default: true
  16066. },
  16067. ]
  16068. ))
  16069. characterMakers.push(() => makeCharacter(
  16070. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16071. {
  16072. front: {
  16073. height: math.unit(6, "feet"),
  16074. weight: math.unit(190, "lb"),
  16075. name: "Front",
  16076. image: {
  16077. source: "./media/characters/sax/front.svg",
  16078. extra: 1187 / 973,
  16079. bottom: 0.042
  16080. }
  16081. },
  16082. },
  16083. [
  16084. {
  16085. name: "Micro",
  16086. height: math.unit(4, "inches"),
  16087. default: true
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16093. {
  16094. front: {
  16095. height: math.unit(6, "feet"),
  16096. weight: math.unit(150, "lb"),
  16097. name: "Front",
  16098. image: {
  16099. source: "./media/characters/pandora/front.svg",
  16100. extra: 2720 / 2556,
  16101. bottom: 0.015
  16102. }
  16103. },
  16104. back: {
  16105. height: math.unit(6, "feet"),
  16106. weight: math.unit(150, "lb"),
  16107. name: "Back",
  16108. image: {
  16109. source: "./media/characters/pandora/back.svg",
  16110. extra: 2720 / 2556,
  16111. bottom: 0.01
  16112. }
  16113. },
  16114. beans: {
  16115. height: math.unit(6 / 8, "feet"),
  16116. name: "Beans",
  16117. image: {
  16118. source: "./media/characters/pandora/beans.svg"
  16119. }
  16120. },
  16121. collar: {
  16122. height: math.unit(0.31, "feet"),
  16123. name: "Collar",
  16124. image: {
  16125. source: "./media/characters/pandora/collar.svg"
  16126. }
  16127. },
  16128. skirt: {
  16129. height: math.unit(6, "feet"),
  16130. weight: math.unit(150, "lb"),
  16131. name: "Skirt",
  16132. image: {
  16133. source: "./media/characters/pandora/skirt.svg",
  16134. extra: 1622 / 1525,
  16135. bottom: 0.015
  16136. }
  16137. },
  16138. hoodie: {
  16139. height: math.unit(6, "feet"),
  16140. weight: math.unit(150, "lb"),
  16141. name: "Hoodie",
  16142. image: {
  16143. source: "./media/characters/pandora/hoodie.svg",
  16144. extra: 1622 / 1525,
  16145. bottom: 0.015
  16146. }
  16147. },
  16148. casual: {
  16149. height: math.unit(6, "feet"),
  16150. weight: math.unit(150, "lb"),
  16151. name: "Casual",
  16152. image: {
  16153. source: "./media/characters/pandora/casual.svg",
  16154. extra: 1622 / 1525,
  16155. bottom: 0.015
  16156. }
  16157. },
  16158. },
  16159. [
  16160. {
  16161. name: "Normal",
  16162. height: math.unit(6, "feet")
  16163. },
  16164. {
  16165. name: "Big Steppy",
  16166. height: math.unit(1, "km"),
  16167. default: true
  16168. },
  16169. {
  16170. name: "Galactic Steppy",
  16171. height: math.unit(2, "gigameters")
  16172. },
  16173. ]
  16174. ))
  16175. characterMakers.push(() => makeCharacter(
  16176. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16177. {
  16178. side: {
  16179. height: math.unit(10, "feet"),
  16180. weight: math.unit(800, "kg"),
  16181. name: "Side",
  16182. image: {
  16183. source: "./media/characters/venio-darcony/side.svg",
  16184. extra: 1373 / 1003,
  16185. bottom: 0.037
  16186. }
  16187. },
  16188. front: {
  16189. height: math.unit(19, "feet"),
  16190. weight: math.unit(800, "kg"),
  16191. name: "Front",
  16192. image: {
  16193. source: "./media/characters/venio-darcony/front.svg"
  16194. }
  16195. },
  16196. back: {
  16197. height: math.unit(19, "feet"),
  16198. weight: math.unit(800, "kg"),
  16199. name: "Back",
  16200. image: {
  16201. source: "./media/characters/venio-darcony/back.svg"
  16202. }
  16203. },
  16204. sideNsfw: {
  16205. height: math.unit(10, "feet"),
  16206. weight: math.unit(800, "kg"),
  16207. name: "Side (NSFW)",
  16208. image: {
  16209. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16210. extra: 1373 / 1003,
  16211. bottom: 0.037
  16212. }
  16213. },
  16214. frontNsfw: {
  16215. height: math.unit(19, "feet"),
  16216. weight: math.unit(800, "kg"),
  16217. name: "Front (NSFW)",
  16218. image: {
  16219. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16220. }
  16221. },
  16222. backNsfw: {
  16223. height: math.unit(19, "feet"),
  16224. weight: math.unit(800, "kg"),
  16225. name: "Back (NSFW)",
  16226. image: {
  16227. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16228. }
  16229. },
  16230. sideArmored: {
  16231. height: math.unit(10, "feet"),
  16232. weight: math.unit(800, "kg"),
  16233. name: "Side (Armored)",
  16234. image: {
  16235. source: "./media/characters/venio-darcony/side-armored.svg",
  16236. extra: 1373 / 1003,
  16237. bottom: 0.037
  16238. }
  16239. },
  16240. frontArmored: {
  16241. height: math.unit(19, "feet"),
  16242. weight: math.unit(900, "kg"),
  16243. name: "Front (Armored)",
  16244. image: {
  16245. source: "./media/characters/venio-darcony/front-armored.svg"
  16246. }
  16247. },
  16248. backArmored: {
  16249. height: math.unit(19, "feet"),
  16250. weight: math.unit(900, "kg"),
  16251. name: "Back (Armored)",
  16252. image: {
  16253. source: "./media/characters/venio-darcony/back-armored.svg"
  16254. }
  16255. },
  16256. sword: {
  16257. height: math.unit(10, "feet"),
  16258. weight: math.unit(50, "lb"),
  16259. name: "Sword",
  16260. image: {
  16261. source: "./media/characters/venio-darcony/sword.svg"
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Normal",
  16268. height: math.unit(10, "feet")
  16269. },
  16270. {
  16271. name: "Macro",
  16272. height: math.unit(130, "feet"),
  16273. default: true
  16274. },
  16275. {
  16276. name: "Macro+",
  16277. height: math.unit(240, "feet")
  16278. },
  16279. ]
  16280. ))
  16281. characterMakers.push(() => makeCharacter(
  16282. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16283. {
  16284. front: {
  16285. height: math.unit(6, "feet"),
  16286. weight: math.unit(150, "lb"),
  16287. name: "Front",
  16288. image: {
  16289. source: "./media/characters/veski/front.svg",
  16290. extra: 1299 / 1225,
  16291. bottom: 0.04
  16292. }
  16293. },
  16294. back: {
  16295. height: math.unit(6, "feet"),
  16296. weight: math.unit(150, "lb"),
  16297. name: "Back",
  16298. image: {
  16299. source: "./media/characters/veski/back.svg",
  16300. extra: 1299 / 1225,
  16301. bottom: 0.008
  16302. }
  16303. },
  16304. maw: {
  16305. height: math.unit(1.5 * 1.21, "feet"),
  16306. name: "Maw",
  16307. image: {
  16308. source: "./media/characters/veski/maw.svg"
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Macro",
  16315. height: math.unit(2, "km"),
  16316. default: true
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16322. {
  16323. front: {
  16324. height: math.unit(5 + 7 / 12, "feet"),
  16325. name: "Front",
  16326. image: {
  16327. source: "./media/characters/isabelle/front.svg",
  16328. extra: 2130 / 1976,
  16329. bottom: 0.05
  16330. }
  16331. },
  16332. },
  16333. [
  16334. {
  16335. name: "Supermicro",
  16336. height: math.unit(10, "micrometers")
  16337. },
  16338. {
  16339. name: "Micro",
  16340. height: math.unit(1, "inch")
  16341. },
  16342. {
  16343. name: "Tiny",
  16344. height: math.unit(5, "inches")
  16345. },
  16346. {
  16347. name: "Standard",
  16348. height: math.unit(5 + 7 / 12, "inches")
  16349. },
  16350. {
  16351. name: "Macro",
  16352. height: math.unit(80, "meters"),
  16353. default: true
  16354. },
  16355. {
  16356. name: "Megamacro",
  16357. height: math.unit(250, "meters")
  16358. },
  16359. {
  16360. name: "Gigamacro",
  16361. height: math.unit(5, "km")
  16362. },
  16363. {
  16364. name: "Cosmic",
  16365. height: math.unit(2.5e6, "miles")
  16366. },
  16367. ]
  16368. ))
  16369. characterMakers.push(() => makeCharacter(
  16370. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16371. {
  16372. front: {
  16373. height: math.unit(6, "feet"),
  16374. weight: math.unit(150, "lb"),
  16375. name: "Front",
  16376. image: {
  16377. source: "./media/characters/hanzo/front.svg",
  16378. extra: 374 / 344,
  16379. bottom: 0.02
  16380. }
  16381. },
  16382. },
  16383. [
  16384. {
  16385. name: "Normal",
  16386. height: math.unit(8, "feet"),
  16387. default: true
  16388. },
  16389. ]
  16390. ))
  16391. characterMakers.push(() => makeCharacter(
  16392. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16393. {
  16394. front: {
  16395. height: math.unit(7, "feet"),
  16396. weight: math.unit(130, "lb"),
  16397. name: "Front",
  16398. image: {
  16399. source: "./media/characters/anna/front.svg",
  16400. extra: 169 / 145,
  16401. bottom: 0.06
  16402. }
  16403. },
  16404. full: {
  16405. height: math.unit(4.96, "feet"),
  16406. weight: math.unit(220, "lb"),
  16407. name: "Full",
  16408. image: {
  16409. source: "./media/characters/anna/full.svg",
  16410. extra: 138 / 114,
  16411. bottom: 0.15
  16412. }
  16413. },
  16414. tongue: {
  16415. height: math.unit(2.53, "feet"),
  16416. name: "Tongue",
  16417. image: {
  16418. source: "./media/characters/anna/tongue.svg"
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(7, "feet"),
  16426. default: true
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16432. {
  16433. front: {
  16434. height: math.unit(7, "feet"),
  16435. weight: math.unit(150, "lb"),
  16436. name: "Front",
  16437. image: {
  16438. source: "./media/characters/ian-corvid/front.svg",
  16439. extra: 150 / 142,
  16440. bottom: 0.02
  16441. }
  16442. },
  16443. back: {
  16444. height: math.unit(7, "feet"),
  16445. weight: math.unit(150, "lb"),
  16446. name: "Back",
  16447. image: {
  16448. source: "./media/characters/ian-corvid/back.svg",
  16449. extra: 150 / 143,
  16450. bottom: 0.01
  16451. }
  16452. },
  16453. stomping: {
  16454. height: math.unit(7, "feet"),
  16455. weight: math.unit(150, "lb"),
  16456. name: "Stomping",
  16457. image: {
  16458. source: "./media/characters/ian-corvid/stomping.svg",
  16459. extra: 76 / 72
  16460. }
  16461. },
  16462. sitting: {
  16463. height: math.unit(7 / 1.8, "feet"),
  16464. weight: math.unit(150, "lb"),
  16465. name: "Sitting",
  16466. image: {
  16467. source: "./media/characters/ian-corvid/sitting.svg",
  16468. extra: 1400 / 1269,
  16469. bottom: 0.15
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Tiny Microw",
  16476. height: math.unit(1, "inch")
  16477. },
  16478. {
  16479. name: "Microw",
  16480. height: math.unit(6, "inches")
  16481. },
  16482. {
  16483. name: "Crow",
  16484. height: math.unit(7 + 1 / 12, "feet"),
  16485. default: true
  16486. },
  16487. {
  16488. name: "Macrow",
  16489. height: math.unit(176, "feet")
  16490. },
  16491. ]
  16492. ))
  16493. characterMakers.push(() => makeCharacter(
  16494. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16495. {
  16496. front: {
  16497. height: math.unit(5 + 7 / 12, "feet"),
  16498. weight: math.unit(147, "lb"),
  16499. name: "Front",
  16500. image: {
  16501. source: "./media/characters/natalie-kellon/front.svg",
  16502. extra: 1214 / 1141,
  16503. bottom: 0.02
  16504. }
  16505. },
  16506. },
  16507. [
  16508. {
  16509. name: "Micro",
  16510. height: math.unit(1 / 16, "inch")
  16511. },
  16512. {
  16513. name: "Tiny",
  16514. height: math.unit(4, "inches")
  16515. },
  16516. {
  16517. name: "Normal",
  16518. height: math.unit(5 + 7 / 12, "feet"),
  16519. default: true
  16520. },
  16521. {
  16522. name: "Amazon",
  16523. height: math.unit(12, "feet")
  16524. },
  16525. {
  16526. name: "Giantess",
  16527. height: math.unit(160, "meters")
  16528. },
  16529. {
  16530. name: "Titaness",
  16531. height: math.unit(800, "meters")
  16532. },
  16533. ]
  16534. ))
  16535. characterMakers.push(() => makeCharacter(
  16536. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16537. {
  16538. front: {
  16539. height: math.unit(6, "feet"),
  16540. weight: math.unit(150, "lb"),
  16541. name: "Front",
  16542. image: {
  16543. source: "./media/characters/alluria/front.svg",
  16544. extra: 806 / 738,
  16545. bottom: 0.01
  16546. }
  16547. },
  16548. side: {
  16549. height: math.unit(6, "feet"),
  16550. weight: math.unit(150, "lb"),
  16551. name: "Side",
  16552. image: {
  16553. source: "./media/characters/alluria/side.svg",
  16554. extra: 800 / 750,
  16555. }
  16556. },
  16557. back: {
  16558. height: math.unit(6, "feet"),
  16559. weight: math.unit(150, "lb"),
  16560. name: "Back",
  16561. image: {
  16562. source: "./media/characters/alluria/back.svg",
  16563. extra: 806 / 738,
  16564. }
  16565. },
  16566. frontMaid: {
  16567. height: math.unit(6, "feet"),
  16568. weight: math.unit(150, "lb"),
  16569. name: "Front (Maid)",
  16570. image: {
  16571. source: "./media/characters/alluria/front-maid.svg",
  16572. extra: 806 / 738,
  16573. bottom: 0.01
  16574. }
  16575. },
  16576. sideMaid: {
  16577. height: math.unit(6, "feet"),
  16578. weight: math.unit(150, "lb"),
  16579. name: "Side (Maid)",
  16580. image: {
  16581. source: "./media/characters/alluria/side-maid.svg",
  16582. extra: 800 / 750,
  16583. bottom: 0.005
  16584. }
  16585. },
  16586. backMaid: {
  16587. height: math.unit(6, "feet"),
  16588. weight: math.unit(150, "lb"),
  16589. name: "Back (Maid)",
  16590. image: {
  16591. source: "./media/characters/alluria/back-maid.svg",
  16592. extra: 806 / 738,
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Micro",
  16599. height: math.unit(6, "inches"),
  16600. default: true
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16606. {
  16607. front: {
  16608. height: math.unit(6, "feet"),
  16609. weight: math.unit(150, "lb"),
  16610. name: "Front",
  16611. image: {
  16612. source: "./media/characters/kyle/front.svg",
  16613. extra: 1069 / 962,
  16614. bottom: 77.228 / 1727.45
  16615. }
  16616. },
  16617. },
  16618. [
  16619. {
  16620. name: "Macro",
  16621. height: math.unit(150, "feet"),
  16622. default: true
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16628. {
  16629. front: {
  16630. height: math.unit(6, "feet"),
  16631. weight: math.unit(300, "lb"),
  16632. name: "Front",
  16633. image: {
  16634. source: "./media/characters/duncan/front.svg",
  16635. extra: 1650 / 1482,
  16636. bottom: 0.05
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Macro",
  16643. height: math.unit(100, "feet"),
  16644. default: true
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16650. {
  16651. front: {
  16652. height: math.unit(5 + 4 / 12, "feet"),
  16653. weight: math.unit(220, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/memory/front.svg",
  16657. extra: 3641 / 3545,
  16658. bottom: 0.03
  16659. }
  16660. },
  16661. back: {
  16662. height: math.unit(5 + 4 / 12, "feet"),
  16663. weight: math.unit(220, "lb"),
  16664. name: "Back",
  16665. image: {
  16666. source: "./media/characters/memory/back.svg",
  16667. extra: 3641 / 3545,
  16668. bottom: 0.025
  16669. }
  16670. },
  16671. frontSkirt: {
  16672. height: math.unit(5 + 4 / 12, "feet"),
  16673. weight: math.unit(220, "lb"),
  16674. name: "Front (Skirt)",
  16675. image: {
  16676. source: "./media/characters/memory/front-skirt.svg",
  16677. extra: 3641 / 3545,
  16678. bottom: 0.03
  16679. }
  16680. },
  16681. frontDress: {
  16682. height: math.unit(5 + 4 / 12, "feet"),
  16683. weight: math.unit(220, "lb"),
  16684. name: "Front (Dress)",
  16685. image: {
  16686. source: "./media/characters/memory/front-dress.svg",
  16687. extra: 3641 / 3545,
  16688. bottom: 0.03
  16689. }
  16690. },
  16691. },
  16692. [
  16693. {
  16694. name: "Micro",
  16695. height: math.unit(6, "inches"),
  16696. default: true
  16697. },
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(5 + 4 / 12, "feet")
  16701. },
  16702. ]
  16703. ))
  16704. characterMakers.push(() => makeCharacter(
  16705. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16706. {
  16707. front: {
  16708. height: math.unit(4 + 11 / 12, "feet"),
  16709. weight: math.unit(100, "lb"),
  16710. name: "Front",
  16711. image: {
  16712. source: "./media/characters/luno/front.svg",
  16713. extra: 1535 / 1487,
  16714. bottom: 0.03
  16715. }
  16716. },
  16717. },
  16718. [
  16719. {
  16720. name: "Micro",
  16721. height: math.unit(3, "inches")
  16722. },
  16723. {
  16724. name: "Normal",
  16725. height: math.unit(4 + 11 / 12, "feet"),
  16726. default: true
  16727. },
  16728. {
  16729. name: "Macro",
  16730. height: math.unit(300, "feet")
  16731. },
  16732. {
  16733. name: "Megamacro",
  16734. height: math.unit(700, "miles")
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16740. {
  16741. front: {
  16742. height: math.unit(6 + 2 / 12, "feet"),
  16743. weight: math.unit(170, "lb"),
  16744. name: "Front",
  16745. image: {
  16746. source: "./media/characters/jamesy/front.svg",
  16747. extra: 440 / 382,
  16748. bottom: 0.005
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Micro",
  16755. height: math.unit(3, "inches")
  16756. },
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(6 + 2 / 12, "feet"),
  16760. default: true
  16761. },
  16762. {
  16763. name: "Macro",
  16764. height: math.unit(300, "feet")
  16765. },
  16766. {
  16767. name: "Megamacro",
  16768. height: math.unit(700, "miles")
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(6, "feet"),
  16777. weight: math.unit(160, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/mark/front.svg",
  16781. extra: 3300 / 3100,
  16782. bottom: 136.42 / 3440.47
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Macro",
  16789. height: math.unit(120, "meters")
  16790. },
  16791. {
  16792. name: "Bigger Macro",
  16793. height: math.unit(350, "meters")
  16794. },
  16795. {
  16796. name: "Megamacro",
  16797. height: math.unit(8, "km"),
  16798. default: true
  16799. },
  16800. {
  16801. name: "Continental",
  16802. height: math.unit(4550, "km")
  16803. },
  16804. {
  16805. name: "Planetary",
  16806. height: math.unit(65000, "km")
  16807. },
  16808. ]
  16809. ))
  16810. characterMakers.push(() => makeCharacter(
  16811. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16812. {
  16813. front: {
  16814. height: math.unit(6, "feet"),
  16815. weight: math.unit(400, "lb"),
  16816. name: "Front",
  16817. image: {
  16818. source: "./media/characters/mac/front.svg",
  16819. extra: 1048 / 987.7,
  16820. bottom: 60 / 1107.6,
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Macro",
  16827. height: math.unit(500, "feet"),
  16828. default: true
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16834. {
  16835. front: {
  16836. height: math.unit(5 + 2 / 12, "feet"),
  16837. weight: math.unit(190, "lb"),
  16838. name: "Front",
  16839. image: {
  16840. source: "./media/characters/bari/front.svg",
  16841. extra: 3156 / 2880,
  16842. bottom: 0.03
  16843. }
  16844. },
  16845. back: {
  16846. height: math.unit(5 + 2 / 12, "feet"),
  16847. weight: math.unit(190, "lb"),
  16848. name: "Back",
  16849. image: {
  16850. source: "./media/characters/bari/back.svg",
  16851. extra: 3260 / 2834,
  16852. bottom: 0.025
  16853. }
  16854. },
  16855. frontPlush: {
  16856. height: math.unit(5 + 2 / 12, "feet"),
  16857. weight: math.unit(190, "lb"),
  16858. name: "Front (Plush)",
  16859. image: {
  16860. source: "./media/characters/bari/front-plush.svg",
  16861. extra: 1112 / 1061,
  16862. bottom: 0.002
  16863. }
  16864. },
  16865. },
  16866. [
  16867. {
  16868. name: "Micro",
  16869. height: math.unit(3, "inches")
  16870. },
  16871. {
  16872. name: "Normal",
  16873. height: math.unit(5 + 2 / 12, "feet"),
  16874. default: true
  16875. },
  16876. {
  16877. name: "Macro",
  16878. height: math.unit(20, "feet")
  16879. },
  16880. ]
  16881. ))
  16882. characterMakers.push(() => makeCharacter(
  16883. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16884. {
  16885. front: {
  16886. height: math.unit(6 + 1 / 12, "feet"),
  16887. weight: math.unit(275, "lb"),
  16888. name: "Front",
  16889. image: {
  16890. source: "./media/characters/hunter-misha-raven/front.svg"
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Mortal",
  16897. height: math.unit(6 + 1 / 12, "feet")
  16898. },
  16899. {
  16900. name: "Divine",
  16901. height: math.unit(1.12134e34, "parsecs"),
  16902. default: true
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(6 + 3 / 12, "feet"),
  16911. weight: math.unit(220, "lb"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/max-calore/front.svg",
  16915. extra: 1700 / 1648,
  16916. bottom: 0.01
  16917. }
  16918. },
  16919. back: {
  16920. height: math.unit(6 + 3 / 12, "feet"),
  16921. weight: math.unit(220, "lb"),
  16922. name: "Back",
  16923. image: {
  16924. source: "./media/characters/max-calore/back.svg",
  16925. extra: 1700 / 1648,
  16926. bottom: 0.01
  16927. }
  16928. },
  16929. },
  16930. [
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(6 + 3 / 12, "feet"),
  16934. default: true
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16940. {
  16941. side: {
  16942. height: math.unit(2 + 8 / 12, "feet"),
  16943. weight: math.unit(99, "lb"),
  16944. name: "Side",
  16945. image: {
  16946. source: "./media/characters/aspen/side.svg",
  16947. extra: 152 / 138,
  16948. bottom: 0.032
  16949. }
  16950. },
  16951. },
  16952. [
  16953. {
  16954. name: "Normal",
  16955. height: math.unit(2 + 8 / 12, "feet"),
  16956. default: true
  16957. },
  16958. ]
  16959. ))
  16960. characterMakers.push(() => makeCharacter(
  16961. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16962. {
  16963. side: {
  16964. height: math.unit(3 + 2 / 12, "feet"),
  16965. weight: math.unit(224, "lb"),
  16966. name: "Side",
  16967. image: {
  16968. source: "./media/characters/sheila-feral-wolf/side.svg",
  16969. extra: 179 / 166,
  16970. bottom: 0.03
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(3 + 2 / 12, "feet"),
  16978. default: true
  16979. },
  16980. ]
  16981. ))
  16982. characterMakers.push(() => makeCharacter(
  16983. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16984. {
  16985. side: {
  16986. height: math.unit(1 + 9 / 12, "feet"),
  16987. weight: math.unit(38, "lb"),
  16988. name: "Side",
  16989. image: {
  16990. source: "./media/characters/michelle/side.svg",
  16991. extra: 147 / 136.7,
  16992. bottom: 0.03
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(1 + 9 / 12, "feet"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(1 + 1 / 12, "feet"),
  17009. weight: math.unit(18, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/nino/front.svg"
  17013. }
  17014. },
  17015. },
  17016. [
  17017. {
  17018. name: "Normal",
  17019. height: math.unit(1 + 1 / 12, "feet"),
  17020. default: true
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17026. {
  17027. front: {
  17028. height: math.unit(1, "feet"),
  17029. weight: math.unit(16, "lb"),
  17030. name: "Front",
  17031. image: {
  17032. source: "./media/characters/viola/front.svg"
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(1, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17046. {
  17047. front: {
  17048. height: math.unit(6 + 5 / 12, "feet"),
  17049. weight: math.unit(580, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/atlas/front.svg",
  17053. extra: 298.5 / 290,
  17054. bottom: 0.015
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(6 + 5 / 12, "feet"),
  17062. default: true
  17063. },
  17064. ]
  17065. ))
  17066. characterMakers.push(() => makeCharacter(
  17067. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17068. {
  17069. side: {
  17070. height: math.unit(1 + 10 / 12, "feet"),
  17071. weight: math.unit(25, "lb"),
  17072. name: "Side",
  17073. image: {
  17074. source: "./media/characters/davy/side.svg",
  17075. extra: 200 / 170,
  17076. bottom: 0.01
  17077. }
  17078. },
  17079. },
  17080. [
  17081. {
  17082. name: "Normal",
  17083. height: math.unit(1 + 10 / 12, "feet"),
  17084. default: true
  17085. },
  17086. ]
  17087. ))
  17088. characterMakers.push(() => makeCharacter(
  17089. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17090. {
  17091. side: {
  17092. height: math.unit(4 + 8 / 12, "feet"),
  17093. weight: math.unit(166, "lb"),
  17094. name: "Side",
  17095. image: {
  17096. source: "./media/characters/fiona/side.svg",
  17097. extra: 232 / 220,
  17098. bottom: 0.03
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(4 + 8 / 12, "feet"),
  17106. default: true
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17112. {
  17113. front: {
  17114. height: math.unit(2, "feet"),
  17115. weight: math.unit(62, "lb"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/lyla/front.svg",
  17119. bottom: 0.1
  17120. }
  17121. },
  17122. },
  17123. [
  17124. {
  17125. name: "Normal",
  17126. height: math.unit(2, "feet"),
  17127. default: true
  17128. },
  17129. ]
  17130. ))
  17131. characterMakers.push(() => makeCharacter(
  17132. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17133. {
  17134. side: {
  17135. height: math.unit(1.8, "feet"),
  17136. weight: math.unit(44, "lb"),
  17137. name: "Side",
  17138. image: {
  17139. source: "./media/characters/perseus/side.svg",
  17140. bottom: 0.21
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(1.8, "feet"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17154. {
  17155. side: {
  17156. height: math.unit(4 + 2 / 12, "feet"),
  17157. weight: math.unit(20, "lb"),
  17158. name: "Side",
  17159. image: {
  17160. source: "./media/characters/remus/side.svg"
  17161. }
  17162. },
  17163. },
  17164. [
  17165. {
  17166. name: "Normal",
  17167. height: math.unit(4 + 2 / 12, "feet"),
  17168. default: true
  17169. },
  17170. ]
  17171. ))
  17172. characterMakers.push(() => makeCharacter(
  17173. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17174. {
  17175. front: {
  17176. height: math.unit(4 + 11 / 12, "feet"),
  17177. weight: math.unit(114, "lb"),
  17178. name: "Front",
  17179. image: {
  17180. source: "./media/characters/raf/front.svg",
  17181. bottom: 20.5 / 1863
  17182. }
  17183. },
  17184. side: {
  17185. height: math.unit(4 + 11 / 12, "feet"),
  17186. weight: math.unit(114, "lb"),
  17187. name: "Side",
  17188. image: {
  17189. source: "./media/characters/raf/side.svg",
  17190. bottom: 22 / 1822
  17191. }
  17192. },
  17193. },
  17194. [
  17195. {
  17196. name: "Micro",
  17197. height: math.unit(2, "inches")
  17198. },
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(4 + 11 / 12, "feet"),
  17202. default: true
  17203. },
  17204. {
  17205. name: "Macro",
  17206. height: math.unit(70, "feet")
  17207. },
  17208. ]
  17209. ))
  17210. characterMakers.push(() => makeCharacter(
  17211. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17212. {
  17213. front: {
  17214. height: math.unit(1.5, "meters"),
  17215. weight: math.unit(68, "kg"),
  17216. name: "Front",
  17217. image: {
  17218. source: "./media/characters/liam-einarr/front.svg",
  17219. extra: 2822 / 2666
  17220. }
  17221. },
  17222. back: {
  17223. height: math.unit(1.5, "meters"),
  17224. weight: math.unit(68, "kg"),
  17225. name: "Back",
  17226. image: {
  17227. source: "./media/characters/liam-einarr/back.svg",
  17228. extra: 2822 / 2666,
  17229. bottom: 0.015
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(1.5, "meters"),
  17237. default: true
  17238. },
  17239. {
  17240. name: "Macro",
  17241. height: math.unit(150, "meters")
  17242. },
  17243. {
  17244. name: "Megamacro",
  17245. height: math.unit(35, "km")
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17251. {
  17252. front: {
  17253. height: math.unit(6, "feet"),
  17254. weight: math.unit(75, "kg"),
  17255. name: "Front",
  17256. image: {
  17257. source: "./media/characters/linda/front.svg",
  17258. extra: 930 / 874,
  17259. bottom: 0.004
  17260. }
  17261. },
  17262. },
  17263. [
  17264. {
  17265. name: "Normal",
  17266. height: math.unit(6, "feet"),
  17267. default: true
  17268. },
  17269. ]
  17270. ))
  17271. characterMakers.push(() => makeCharacter(
  17272. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17273. {
  17274. front: {
  17275. height: math.unit(6 + 8 / 12, "feet"),
  17276. weight: math.unit(220, "lb"),
  17277. name: "Front",
  17278. image: {
  17279. source: "./media/characters/caylex/front.svg",
  17280. extra: 821 / 772,
  17281. bottom: 0.07
  17282. }
  17283. },
  17284. back: {
  17285. height: math.unit(6 + 8 / 12, "feet"),
  17286. weight: math.unit(220, "lb"),
  17287. name: "Back",
  17288. image: {
  17289. source: "./media/characters/caylex/back.svg",
  17290. extra: 821 / 772,
  17291. bottom: 0.022
  17292. }
  17293. },
  17294. hand: {
  17295. height: math.unit(1.25, "feet"),
  17296. name: "Hand",
  17297. image: {
  17298. source: "./media/characters/caylex/hand.svg"
  17299. }
  17300. },
  17301. foot: {
  17302. height: math.unit(1.6, "feet"),
  17303. name: "Foot",
  17304. image: {
  17305. source: "./media/characters/caylex/foot.svg"
  17306. }
  17307. },
  17308. armored: {
  17309. height: math.unit(6 + 8 / 12, "feet"),
  17310. weight: math.unit(250, "lb"),
  17311. name: "Armored",
  17312. image: {
  17313. source: "./media/characters/caylex/armored.svg",
  17314. extra: 1420 / 1310,
  17315. bottom: 0.045
  17316. }
  17317. },
  17318. },
  17319. [
  17320. {
  17321. name: "Normal",
  17322. height: math.unit(6 + 8 / 12, "feet"),
  17323. default: true
  17324. },
  17325. {
  17326. name: "Normal+",
  17327. height: math.unit(12, "feet")
  17328. },
  17329. ]
  17330. ))
  17331. characterMakers.push(() => makeCharacter(
  17332. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17333. {
  17334. front: {
  17335. height: math.unit(7 + 6 / 12, "feet"),
  17336. weight: math.unit(288, "lb"),
  17337. name: "Front",
  17338. image: {
  17339. source: "./media/characters/alana/front.svg",
  17340. extra: 679 / 653,
  17341. bottom: 22.5 / 701
  17342. }
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(7 + 6 / 12, "feet")
  17349. },
  17350. {
  17351. name: "Large",
  17352. height: math.unit(50, "feet")
  17353. },
  17354. {
  17355. name: "Macro",
  17356. height: math.unit(100, "feet"),
  17357. default: true
  17358. },
  17359. {
  17360. name: "Macro+",
  17361. height: math.unit(200, "feet")
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17367. {
  17368. front: {
  17369. height: math.unit(6 + 1 / 12, "feet"),
  17370. weight: math.unit(210, "lb"),
  17371. name: "Front",
  17372. image: {
  17373. source: "./media/characters/hasani/front.svg",
  17374. extra: 244 / 232,
  17375. bottom: 0.01
  17376. }
  17377. },
  17378. back: {
  17379. height: math.unit(6 + 1 / 12, "feet"),
  17380. weight: math.unit(210, "lb"),
  17381. name: "Back",
  17382. image: {
  17383. source: "./media/characters/hasani/back.svg",
  17384. extra: 244 / 232,
  17385. bottom: 0.01
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(6 + 1 / 12, "feet")
  17393. },
  17394. {
  17395. name: "Macro",
  17396. height: math.unit(175, "feet"),
  17397. default: true
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17403. {
  17404. front: {
  17405. height: math.unit(1.82, "meters"),
  17406. weight: math.unit(140, "lb"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/nita/front.svg",
  17410. extra: 2473 / 2363,
  17411. bottom: 0.01
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Normal",
  17418. height: math.unit(1.82, "m")
  17419. },
  17420. {
  17421. name: "Macro",
  17422. height: math.unit(300, "m")
  17423. },
  17424. {
  17425. name: "Mistake Canon",
  17426. height: math.unit(0.5, "miles"),
  17427. default: true
  17428. },
  17429. {
  17430. name: "Big Mistake",
  17431. height: math.unit(13, "miles")
  17432. },
  17433. {
  17434. name: "Playing God",
  17435. height: math.unit(2450, "miles")
  17436. },
  17437. ]
  17438. ))
  17439. characterMakers.push(() => makeCharacter(
  17440. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17441. {
  17442. front: {
  17443. height: math.unit(4, "feet"),
  17444. weight: math.unit(120, "lb"),
  17445. name: "Front",
  17446. image: {
  17447. source: "./media/characters/shiriko/front.svg",
  17448. extra: 970/934,
  17449. bottom: 5/975
  17450. }
  17451. },
  17452. },
  17453. [
  17454. {
  17455. name: "Normal",
  17456. height: math.unit(4, "feet"),
  17457. default: true
  17458. },
  17459. ]
  17460. ))
  17461. characterMakers.push(() => makeCharacter(
  17462. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17463. {
  17464. front: {
  17465. height: math.unit(6, "feet"),
  17466. name: "front",
  17467. image: {
  17468. source: "./media/characters/deja/front.svg",
  17469. extra: 926 / 840,
  17470. bottom: 0.07
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Planck Length",
  17477. height: math.unit(1.6e-35, "meters")
  17478. },
  17479. {
  17480. name: "Normal",
  17481. height: math.unit(30.48, "meters"),
  17482. default: true
  17483. },
  17484. {
  17485. name: "Universal",
  17486. height: math.unit(8.8e26, "meters")
  17487. },
  17488. ]
  17489. ))
  17490. characterMakers.push(() => makeCharacter(
  17491. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17492. {
  17493. side: {
  17494. height: math.unit(8, "feet"),
  17495. weight: math.unit(6300, "lb"),
  17496. name: "Side",
  17497. image: {
  17498. source: "./media/characters/anima/side.svg",
  17499. bottom: 0.035
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(8, "feet"),
  17507. default: true
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(8, "feet"),
  17516. weight: math.unit(350, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/bianca/front.svg",
  17520. extra: 234 / 225,
  17521. bottom: 0.03
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(8, "feet"),
  17529. default: true
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17535. {
  17536. front: {
  17537. height: math.unit(6, "feet"),
  17538. weight: math.unit(150, "lb"),
  17539. name: "Front",
  17540. image: {
  17541. source: "./media/characters/adinia/front.svg",
  17542. extra: 1845 / 1672,
  17543. bottom: 0.02
  17544. }
  17545. },
  17546. back: {
  17547. height: math.unit(6, "feet"),
  17548. weight: math.unit(150, "lb"),
  17549. name: "Back",
  17550. image: {
  17551. source: "./media/characters/adinia/back.svg",
  17552. extra: 1845 / 1672,
  17553. bottom: 0.002
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(11 + 5 / 12, "feet"),
  17561. default: true
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17567. {
  17568. front: {
  17569. height: math.unit(3, "meters"),
  17570. weight: math.unit(200, "kg"),
  17571. name: "Front",
  17572. image: {
  17573. source: "./media/characters/lykasa/front.svg",
  17574. extra: 1076 / 976,
  17575. bottom: 0.06
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(3, "meters")
  17583. },
  17584. {
  17585. name: "Kaiju",
  17586. height: math.unit(120, "meters"),
  17587. default: true
  17588. },
  17589. {
  17590. name: "Mega Kaiju",
  17591. height: math.unit(240, "km")
  17592. },
  17593. {
  17594. name: "Giga Kaiju",
  17595. height: math.unit(400, "megameters")
  17596. },
  17597. {
  17598. name: "Tera Kaiju",
  17599. height: math.unit(800, "gigameters")
  17600. },
  17601. {
  17602. name: "Kaiju Dragon Goddess",
  17603. height: math.unit(26, "zettaparsecs")
  17604. },
  17605. ]
  17606. ))
  17607. characterMakers.push(() => makeCharacter(
  17608. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17609. {
  17610. side: {
  17611. height: math.unit(283 / 124 * 6, "feet"),
  17612. weight: math.unit(35000, "lb"),
  17613. name: "Side",
  17614. image: {
  17615. source: "./media/characters/malfaren/side.svg",
  17616. extra: 2500 / 1010,
  17617. bottom: 0.01
  17618. }
  17619. },
  17620. front: {
  17621. height: math.unit(22.36, "feet"),
  17622. weight: math.unit(35000, "lb"),
  17623. name: "Front",
  17624. image: {
  17625. source: "./media/characters/malfaren/front.svg",
  17626. extra: 1631 / 1476,
  17627. bottom: 0.01
  17628. }
  17629. },
  17630. maw: {
  17631. height: math.unit(6.9, "feet"),
  17632. name: "Maw",
  17633. image: {
  17634. source: "./media/characters/malfaren/maw.svg"
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Big",
  17641. height: math.unit(283 / 162 * 6, "feet"),
  17642. },
  17643. {
  17644. name: "Bigger",
  17645. height: math.unit(283 / 124 * 6, "feet")
  17646. },
  17647. {
  17648. name: "Massive",
  17649. height: math.unit(283 / 92 * 6, "feet"),
  17650. default: true
  17651. },
  17652. {
  17653. name: "👀💦",
  17654. height: math.unit(283 / 73 * 6, "feet"),
  17655. },
  17656. ]
  17657. ))
  17658. characterMakers.push(() => makeCharacter(
  17659. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17660. {
  17661. front: {
  17662. height: math.unit(1.7, "m"),
  17663. weight: math.unit(70, "kg"),
  17664. name: "Front",
  17665. image: {
  17666. source: "./media/characters/kernel/front.svg",
  17667. extra: 222 / 210,
  17668. bottom: 0.007
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Nano",
  17675. height: math.unit(17, "micrometers")
  17676. },
  17677. {
  17678. name: "Micro",
  17679. height: math.unit(1.7, "mm")
  17680. },
  17681. {
  17682. name: "Small",
  17683. height: math.unit(1.7, "cm")
  17684. },
  17685. {
  17686. name: "Normal",
  17687. height: math.unit(1.7, "m"),
  17688. default: true
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17694. {
  17695. front: {
  17696. height: math.unit(1.75, "meters"),
  17697. weight: math.unit(65, "kg"),
  17698. name: "Front",
  17699. image: {
  17700. source: "./media/characters/jayne-folest/front.svg",
  17701. extra: 2115 / 2007,
  17702. bottom: 0.02
  17703. }
  17704. },
  17705. back: {
  17706. height: math.unit(1.75, "meters"),
  17707. weight: math.unit(65, "kg"),
  17708. name: "Back",
  17709. image: {
  17710. source: "./media/characters/jayne-folest/back.svg",
  17711. extra: 2115 / 2007,
  17712. bottom: 0.005
  17713. }
  17714. },
  17715. frontClothed: {
  17716. height: math.unit(1.75, "meters"),
  17717. weight: math.unit(65, "kg"),
  17718. name: "Front (Clothed)",
  17719. image: {
  17720. source: "./media/characters/jayne-folest/front-clothed.svg",
  17721. extra: 2115 / 2007,
  17722. bottom: 0.035
  17723. }
  17724. },
  17725. hand: {
  17726. height: math.unit(1 / 1.260, "feet"),
  17727. name: "Hand",
  17728. image: {
  17729. source: "./media/characters/jayne-folest/hand.svg"
  17730. }
  17731. },
  17732. foot: {
  17733. height: math.unit(1 / 0.918, "feet"),
  17734. name: "Foot",
  17735. image: {
  17736. source: "./media/characters/jayne-folest/foot.svg"
  17737. }
  17738. },
  17739. },
  17740. [
  17741. {
  17742. name: "Micro",
  17743. height: math.unit(4, "cm")
  17744. },
  17745. {
  17746. name: "Normal",
  17747. height: math.unit(1.75, "meters")
  17748. },
  17749. {
  17750. name: "Macro",
  17751. height: math.unit(47.5, "meters"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(180, "cm"),
  17761. weight: math.unit(70, "kg"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/algier/front.svg",
  17765. extra: 596 / 572,
  17766. bottom: 0.04
  17767. }
  17768. },
  17769. back: {
  17770. height: math.unit(180, "cm"),
  17771. weight: math.unit(70, "kg"),
  17772. name: "Back",
  17773. image: {
  17774. source: "./media/characters/algier/back.svg",
  17775. extra: 596 / 572,
  17776. bottom: 0.025
  17777. }
  17778. },
  17779. frontdressed: {
  17780. height: math.unit(180, "cm"),
  17781. weight: math.unit(150, "kg"),
  17782. name: "Front-dressed",
  17783. image: {
  17784. source: "./media/characters/algier/front-dressed.svg",
  17785. extra: 596 / 572,
  17786. bottom: 0.038
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Micro",
  17793. height: math.unit(5, "cm")
  17794. },
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(180, "cm"),
  17798. default: true
  17799. },
  17800. {
  17801. name: "Macro",
  17802. height: math.unit(64, "m")
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17808. {
  17809. upright: {
  17810. height: math.unit(7, "feet"),
  17811. weight: math.unit(300, "lb"),
  17812. name: "Upright",
  17813. image: {
  17814. source: "./media/characters/pretzel/upright.svg",
  17815. extra: 534 / 522,
  17816. bottom: 0.065
  17817. }
  17818. },
  17819. sprawling: {
  17820. height: math.unit(3.75, "feet"),
  17821. weight: math.unit(300, "lb"),
  17822. name: "Sprawling",
  17823. image: {
  17824. source: "./media/characters/pretzel/sprawling.svg",
  17825. extra: 314 / 281,
  17826. bottom: 0.1
  17827. }
  17828. },
  17829. tongue: {
  17830. height: math.unit(2, "feet"),
  17831. name: "Tongue",
  17832. image: {
  17833. source: "./media/characters/pretzel/tongue.svg"
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(7, "feet"),
  17841. default: true
  17842. },
  17843. {
  17844. name: "Oversized",
  17845. height: math.unit(15, "feet")
  17846. },
  17847. {
  17848. name: "Huge",
  17849. height: math.unit(30, "feet")
  17850. },
  17851. {
  17852. name: "Macro",
  17853. height: math.unit(250, "feet")
  17854. },
  17855. ]
  17856. ))
  17857. characterMakers.push(() => makeCharacter(
  17858. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17859. {
  17860. sideFront: {
  17861. height: math.unit(5 + 2 / 12, "feet"),
  17862. weight: math.unit(120, "lb"),
  17863. name: "Front Side",
  17864. image: {
  17865. source: "./media/characters/roxi/side-front.svg",
  17866. extra: 2924 / 2717,
  17867. bottom: 0.08
  17868. }
  17869. },
  17870. sideBack: {
  17871. height: math.unit(5 + 2 / 12, "feet"),
  17872. weight: math.unit(120, "lb"),
  17873. name: "Back Side",
  17874. image: {
  17875. source: "./media/characters/roxi/side-back.svg",
  17876. extra: 2904 / 2693,
  17877. bottom: 0.06
  17878. }
  17879. },
  17880. front: {
  17881. height: math.unit(5 + 2 / 12, "feet"),
  17882. weight: math.unit(120, "lb"),
  17883. name: "Front",
  17884. image: {
  17885. source: "./media/characters/roxi/front.svg",
  17886. extra: 2028 / 1907,
  17887. bottom: 0.01
  17888. }
  17889. },
  17890. frontAlt: {
  17891. height: math.unit(5 + 2 / 12, "feet"),
  17892. weight: math.unit(120, "lb"),
  17893. name: "Front (Alt)",
  17894. image: {
  17895. source: "./media/characters/roxi/front-alt.svg",
  17896. extra: 1828 / 1798,
  17897. bottom: 0.01
  17898. }
  17899. },
  17900. sitting: {
  17901. height: math.unit(2.8, "feet"),
  17902. weight: math.unit(120, "lb"),
  17903. name: "Sitting",
  17904. image: {
  17905. source: "./media/characters/roxi/sitting.svg",
  17906. extra: 2660 / 2462,
  17907. bottom: 0.1
  17908. }
  17909. },
  17910. },
  17911. [
  17912. {
  17913. name: "Normal",
  17914. height: math.unit(5 + 2 / 12, "feet"),
  17915. default: true
  17916. },
  17917. ]
  17918. ))
  17919. characterMakers.push(() => makeCharacter(
  17920. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17921. {
  17922. side: {
  17923. height: math.unit(55, "feet"),
  17924. weight: math.unit(153, "tons"),
  17925. name: "Side",
  17926. image: {
  17927. source: "./media/characters/shadow/side.svg",
  17928. extra: 701 / 628,
  17929. bottom: 0.02
  17930. }
  17931. },
  17932. flying: {
  17933. height: math.unit(145, "feet"),
  17934. weight: math.unit(153, "tons"),
  17935. name: "Flying",
  17936. image: {
  17937. source: "./media/characters/shadow/flying.svg"
  17938. }
  17939. },
  17940. },
  17941. [
  17942. {
  17943. name: "Normal",
  17944. height: math.unit(55, "feet"),
  17945. default: true
  17946. },
  17947. ]
  17948. ))
  17949. characterMakers.push(() => makeCharacter(
  17950. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17951. {
  17952. front: {
  17953. height: math.unit(6, "feet"),
  17954. weight: math.unit(200, "lb"),
  17955. name: "Front",
  17956. image: {
  17957. source: "./media/characters/marcie/front.svg",
  17958. extra: 960 / 876,
  17959. bottom: 58 / 1017.87
  17960. }
  17961. },
  17962. },
  17963. [
  17964. {
  17965. name: "Macro",
  17966. height: math.unit(1, "mile"),
  17967. default: true
  17968. },
  17969. ]
  17970. ))
  17971. characterMakers.push(() => makeCharacter(
  17972. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17973. {
  17974. front: {
  17975. height: math.unit(7, "feet"),
  17976. weight: math.unit(200, "lb"),
  17977. name: "Front",
  17978. image: {
  17979. source: "./media/characters/kachina/front.svg",
  17980. extra: 1290.68 / 1119,
  17981. bottom: 36.5 / 1327.18
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Normal",
  17988. height: math.unit(7, "feet"),
  17989. default: true
  17990. },
  17991. ]
  17992. ))
  17993. characterMakers.push(() => makeCharacter(
  17994. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17995. {
  17996. looking: {
  17997. height: math.unit(2, "meters"),
  17998. weight: math.unit(300, "kg"),
  17999. name: "Looking",
  18000. image: {
  18001. source: "./media/characters/kash/looking.svg",
  18002. extra: 474 / 344,
  18003. bottom: 0.03
  18004. }
  18005. },
  18006. side: {
  18007. height: math.unit(2, "meters"),
  18008. weight: math.unit(300, "kg"),
  18009. name: "Side",
  18010. image: {
  18011. source: "./media/characters/kash/side.svg",
  18012. extra: 302 / 251,
  18013. bottom: 0.03
  18014. }
  18015. },
  18016. front: {
  18017. height: math.unit(2, "meters"),
  18018. weight: math.unit(300, "kg"),
  18019. name: "Front",
  18020. image: {
  18021. source: "./media/characters/kash/front.svg",
  18022. extra: 495 / 360,
  18023. bottom: 0.015
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Normal",
  18030. height: math.unit(2, "meters"),
  18031. default: true
  18032. },
  18033. {
  18034. name: "Big",
  18035. height: math.unit(3, "meters")
  18036. },
  18037. {
  18038. name: "Large",
  18039. height: math.unit(5, "meters")
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18045. {
  18046. feeding: {
  18047. height: math.unit(6.7, "feet"),
  18048. weight: math.unit(350, "lb"),
  18049. name: "Feeding",
  18050. image: {
  18051. source: "./media/characters/lalim/feeding.svg",
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(6.7, "feet"),
  18059. default: true
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(9.5, "feet"),
  18068. weight: math.unit(600, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/de'vout/front.svg",
  18072. extra: 1443 / 1328,
  18073. bottom: 0.025
  18074. }
  18075. },
  18076. back: {
  18077. height: math.unit(9.5, "feet"),
  18078. weight: math.unit(600, "lb"),
  18079. name: "Back",
  18080. image: {
  18081. source: "./media/characters/de'vout/back.svg",
  18082. extra: 1443 / 1328
  18083. }
  18084. },
  18085. frontDressed: {
  18086. height: math.unit(9.5, "feet"),
  18087. weight: math.unit(600, "lb"),
  18088. name: "Front (Dressed",
  18089. image: {
  18090. source: "./media/characters/de'vout/front-dressed.svg",
  18091. extra: 1443 / 1328,
  18092. bottom: 0.025
  18093. }
  18094. },
  18095. backDressed: {
  18096. height: math.unit(9.5, "feet"),
  18097. weight: math.unit(600, "lb"),
  18098. name: "Back (Dressed",
  18099. image: {
  18100. source: "./media/characters/de'vout/back-dressed.svg",
  18101. extra: 1443 / 1328
  18102. }
  18103. },
  18104. },
  18105. [
  18106. {
  18107. name: "Normal",
  18108. height: math.unit(9.5, "feet"),
  18109. default: true
  18110. },
  18111. ]
  18112. ))
  18113. characterMakers.push(() => makeCharacter(
  18114. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18115. {
  18116. front: {
  18117. height: math.unit(8, "feet"),
  18118. weight: math.unit(225, "lb"),
  18119. name: "Front",
  18120. image: {
  18121. source: "./media/characters/talana/front.svg",
  18122. extra: 1410 / 1300,
  18123. bottom: 0.015
  18124. }
  18125. },
  18126. frontDressed: {
  18127. height: math.unit(8, "feet"),
  18128. weight: math.unit(225, "lb"),
  18129. name: "Front (Dressed",
  18130. image: {
  18131. source: "./media/characters/talana/front-dressed.svg",
  18132. extra: 1410 / 1300,
  18133. bottom: 0.015
  18134. }
  18135. },
  18136. },
  18137. [
  18138. {
  18139. name: "Normal",
  18140. height: math.unit(8, "feet"),
  18141. default: true
  18142. },
  18143. ]
  18144. ))
  18145. characterMakers.push(() => makeCharacter(
  18146. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18147. {
  18148. side: {
  18149. height: math.unit(7.2, "feet"),
  18150. weight: math.unit(150, "lb"),
  18151. name: "Side",
  18152. image: {
  18153. source: "./media/characters/xeauvok/side.svg",
  18154. extra: 1975 / 1523,
  18155. bottom: 0.07
  18156. }
  18157. },
  18158. },
  18159. [
  18160. {
  18161. name: "Normal",
  18162. height: math.unit(7.2, "feet"),
  18163. default: true
  18164. },
  18165. ]
  18166. ))
  18167. characterMakers.push(() => makeCharacter(
  18168. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18169. {
  18170. side: {
  18171. height: math.unit(10, "feet"),
  18172. weight: math.unit(900, "kg"),
  18173. name: "Side",
  18174. image: {
  18175. source: "./media/characters/zara/side.svg",
  18176. extra: 504 / 498
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(10, "feet"),
  18184. default: true
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18190. {
  18191. side: {
  18192. height: math.unit(6, "feet"),
  18193. weight: math.unit(150, "lb"),
  18194. name: "Side",
  18195. image: {
  18196. source: "./media/characters/richard-dragon/side.svg",
  18197. extra: 845 / 340,
  18198. bottom: 0.017
  18199. }
  18200. },
  18201. maw: {
  18202. height: math.unit(2.97, "feet"),
  18203. name: "Maw",
  18204. image: {
  18205. source: "./media/characters/richard-dragon/maw.svg"
  18206. }
  18207. },
  18208. },
  18209. [
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18214. {
  18215. front: {
  18216. height: math.unit(4, "feet"),
  18217. weight: math.unit(100, "lb"),
  18218. name: "Front",
  18219. image: {
  18220. source: "./media/characters/richard-smeargle/front.svg",
  18221. extra: 2952 / 2820,
  18222. bottom: 0.028
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(4, "feet"),
  18230. default: true
  18231. },
  18232. {
  18233. name: "Dynamax",
  18234. height: math.unit(20, "meters")
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18240. {
  18241. front: {
  18242. height: math.unit(6, "feet"),
  18243. weight: math.unit(110, "lb"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/klay/front.svg",
  18247. extra: 962 / 883,
  18248. bottom: 0.04
  18249. }
  18250. },
  18251. back: {
  18252. height: math.unit(6, "feet"),
  18253. weight: math.unit(110, "lb"),
  18254. name: "Back",
  18255. image: {
  18256. source: "./media/characters/klay/back.svg",
  18257. extra: 962 / 883
  18258. }
  18259. },
  18260. beans: {
  18261. height: math.unit(1.15, "feet"),
  18262. name: "Beans",
  18263. image: {
  18264. source: "./media/characters/klay/beans.svg"
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Micro",
  18271. height: math.unit(6, "inches")
  18272. },
  18273. {
  18274. name: "Mini",
  18275. height: math.unit(3, "feet")
  18276. },
  18277. {
  18278. name: "Normal",
  18279. height: math.unit(6, "feet"),
  18280. default: true
  18281. },
  18282. {
  18283. name: "Big",
  18284. height: math.unit(25, "feet")
  18285. },
  18286. {
  18287. name: "Macro",
  18288. height: math.unit(100, "feet")
  18289. },
  18290. {
  18291. name: "Megamacro",
  18292. height: math.unit(400, "feet")
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18298. {
  18299. front: {
  18300. height: math.unit(6, "feet"),
  18301. weight: math.unit(160, "lb"),
  18302. name: "Front",
  18303. image: {
  18304. source: "./media/characters/marcus/front.svg",
  18305. extra: 734 / 676,
  18306. bottom: 0.03
  18307. }
  18308. },
  18309. },
  18310. [
  18311. {
  18312. name: "Little",
  18313. height: math.unit(6, "feet")
  18314. },
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(110, "feet"),
  18318. default: true
  18319. },
  18320. {
  18321. name: "Macro",
  18322. height: math.unit(250, "feet")
  18323. },
  18324. {
  18325. name: "Megamacro",
  18326. height: math.unit(1000, "feet")
  18327. },
  18328. ]
  18329. ))
  18330. characterMakers.push(() => makeCharacter(
  18331. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18332. {
  18333. front: {
  18334. height: math.unit(7, "feet"),
  18335. weight: math.unit(275, "lb"),
  18336. name: "Front",
  18337. image: {
  18338. source: "./media/characters/claude-delroute/front.svg",
  18339. extra: 230 / 214,
  18340. bottom: 0.007
  18341. }
  18342. },
  18343. side: {
  18344. height: math.unit(7, "feet"),
  18345. weight: math.unit(275, "lb"),
  18346. name: "Side",
  18347. image: {
  18348. source: "./media/characters/claude-delroute/side.svg",
  18349. extra: 222 / 214,
  18350. bottom: 0.01
  18351. }
  18352. },
  18353. back: {
  18354. height: math.unit(7, "feet"),
  18355. weight: math.unit(275, "lb"),
  18356. name: "Back",
  18357. image: {
  18358. source: "./media/characters/claude-delroute/back.svg",
  18359. extra: 230 / 214,
  18360. bottom: 0.015
  18361. }
  18362. },
  18363. maw: {
  18364. height: math.unit(0.6407, "meters"),
  18365. name: "Maw",
  18366. image: {
  18367. source: "./media/characters/claude-delroute/maw.svg"
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(7, "feet"),
  18375. default: true
  18376. },
  18377. {
  18378. name: "Lorge",
  18379. height: math.unit(20, "feet")
  18380. },
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18385. {
  18386. front: {
  18387. height: math.unit(8 + 4 / 12, "feet"),
  18388. weight: math.unit(600, "lb"),
  18389. name: "Front",
  18390. image: {
  18391. source: "./media/characters/dragonien/front.svg",
  18392. extra: 100 / 94,
  18393. bottom: 3.3 / 103.3445
  18394. }
  18395. },
  18396. back: {
  18397. height: math.unit(8 + 4 / 12, "feet"),
  18398. weight: math.unit(600, "lb"),
  18399. name: "Back",
  18400. image: {
  18401. source: "./media/characters/dragonien/back.svg",
  18402. extra: 776 / 746,
  18403. bottom: 6.4 / 782.0616
  18404. }
  18405. },
  18406. foot: {
  18407. height: math.unit(1.54, "feet"),
  18408. name: "Foot",
  18409. image: {
  18410. source: "./media/characters/dragonien/foot.svg",
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(8 + 4 / 12, "feet"),
  18418. default: true
  18419. },
  18420. {
  18421. name: "Macro",
  18422. height: math.unit(200, "feet")
  18423. },
  18424. {
  18425. name: "Megamacro",
  18426. height: math.unit(1, "mile")
  18427. },
  18428. {
  18429. name: "Gigamacro",
  18430. height: math.unit(1000, "miles")
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18436. {
  18437. front: {
  18438. height: math.unit(5 + 2 / 12, "feet"),
  18439. weight: math.unit(110, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/desta/front.svg",
  18443. extra: 767 / 726,
  18444. bottom: 11.7 / 779
  18445. }
  18446. },
  18447. back: {
  18448. height: math.unit(5 + 2 / 12, "feet"),
  18449. weight: math.unit(110, "lb"),
  18450. name: "Back",
  18451. image: {
  18452. source: "./media/characters/desta/back.svg",
  18453. extra: 777 / 728,
  18454. bottom: 6 / 784
  18455. }
  18456. },
  18457. frontAlt: {
  18458. height: math.unit(5 + 2 / 12, "feet"),
  18459. weight: math.unit(110, "lb"),
  18460. name: "Front",
  18461. image: {
  18462. source: "./media/characters/desta/front-alt.svg",
  18463. extra: 1482 / 1417
  18464. }
  18465. },
  18466. side: {
  18467. height: math.unit(5 + 2 / 12, "feet"),
  18468. weight: math.unit(110, "lb"),
  18469. name: "Side",
  18470. image: {
  18471. source: "./media/characters/desta/side.svg",
  18472. extra: 2579 / 2491,
  18473. bottom: 0.053
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Micro",
  18480. height: math.unit(6, "inches")
  18481. },
  18482. {
  18483. name: "Normal",
  18484. height: math.unit(5 + 2 / 12, "feet"),
  18485. default: true
  18486. },
  18487. {
  18488. name: "Macro",
  18489. height: math.unit(62, "feet")
  18490. },
  18491. {
  18492. name: "Megamacro",
  18493. height: math.unit(1800, "feet")
  18494. },
  18495. ]
  18496. ))
  18497. characterMakers.push(() => makeCharacter(
  18498. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18499. {
  18500. front: {
  18501. height: math.unit(10, "feet"),
  18502. weight: math.unit(700, "lb"),
  18503. name: "Front",
  18504. image: {
  18505. source: "./media/characters/storm-alystar/front.svg",
  18506. extra: 2112 / 1898,
  18507. bottom: 0.034
  18508. }
  18509. },
  18510. },
  18511. [
  18512. {
  18513. name: "Micro",
  18514. height: math.unit(3.5, "inches")
  18515. },
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(10, "feet"),
  18519. default: true
  18520. },
  18521. {
  18522. name: "Macro",
  18523. height: math.unit(400, "feet")
  18524. },
  18525. {
  18526. name: "Deific",
  18527. height: math.unit(60, "miles")
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18533. {
  18534. front: {
  18535. height: math.unit(2.35, "meters"),
  18536. weight: math.unit(119, "kg"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/ilia/front.svg",
  18540. extra: 1285 / 1255,
  18541. bottom: 0.06
  18542. }
  18543. },
  18544. },
  18545. [
  18546. {
  18547. name: "Normal",
  18548. height: math.unit(2.35, "meters")
  18549. },
  18550. {
  18551. name: "Macro",
  18552. height: math.unit(140, "meters"),
  18553. default: true
  18554. },
  18555. {
  18556. name: "Megamacro",
  18557. height: math.unit(100, "miles")
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(6 + 5 / 12, "feet"),
  18566. weight: math.unit(190, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/kingdead/front.svg",
  18570. extra: 1228 / 1177
  18571. }
  18572. },
  18573. },
  18574. [
  18575. {
  18576. name: "Micro",
  18577. height: math.unit(7, "inches")
  18578. },
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(6 + 5 / 12, "feet")
  18582. },
  18583. {
  18584. name: "Macro",
  18585. height: math.unit(150, "feet"),
  18586. default: true
  18587. },
  18588. {
  18589. name: "Megamacro",
  18590. height: math.unit(200, "miles")
  18591. },
  18592. ]
  18593. ))
  18594. characterMakers.push(() => makeCharacter(
  18595. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18596. {
  18597. front: {
  18598. height: math.unit(8, "feet"),
  18599. weight: math.unit(600, "lb"),
  18600. name: "Front",
  18601. image: {
  18602. source: "./media/characters/kyrehx/front.svg",
  18603. extra: 1195 / 1095,
  18604. bottom: 0.034
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Micro",
  18611. height: math.unit(2, "inches")
  18612. },
  18613. {
  18614. name: "Normal",
  18615. height: math.unit(8, "feet"),
  18616. default: true
  18617. },
  18618. {
  18619. name: "Macro",
  18620. height: math.unit(255, "feet")
  18621. },
  18622. ]
  18623. ))
  18624. characterMakers.push(() => makeCharacter(
  18625. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18626. {
  18627. front: {
  18628. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18629. weight: math.unit(184, "lb"),
  18630. name: "Front",
  18631. image: {
  18632. source: "./media/characters/xang/front.svg",
  18633. extra: 845 / 755
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18641. default: true
  18642. },
  18643. {
  18644. name: "Macro",
  18645. height: math.unit(0.935 * 146, "feet")
  18646. },
  18647. {
  18648. name: "Megamacro",
  18649. height: math.unit(0.935 * 3, "miles")
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18655. {
  18656. frontDressed: {
  18657. height: math.unit(5 + 7 / 12, "feet"),
  18658. weight: math.unit(140, "lb"),
  18659. name: "Front (Dressed)",
  18660. image: {
  18661. source: "./media/characters/doc-weardno/front-dressed.svg",
  18662. extra: 263 / 234
  18663. }
  18664. },
  18665. backDressed: {
  18666. height: math.unit(5 + 7 / 12, "feet"),
  18667. weight: math.unit(140, "lb"),
  18668. name: "Back (Dressed)",
  18669. image: {
  18670. source: "./media/characters/doc-weardno/back-dressed.svg",
  18671. extra: 266 / 238
  18672. }
  18673. },
  18674. front: {
  18675. height: math.unit(5 + 7 / 12, "feet"),
  18676. weight: math.unit(140, "lb"),
  18677. name: "Front",
  18678. image: {
  18679. source: "./media/characters/doc-weardno/front.svg",
  18680. extra: 254 / 233
  18681. }
  18682. },
  18683. },
  18684. [
  18685. {
  18686. name: "Micro",
  18687. height: math.unit(3, "inches")
  18688. },
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(5 + 7 / 12, "feet"),
  18692. default: true
  18693. },
  18694. {
  18695. name: "Macro",
  18696. height: math.unit(25, "feet")
  18697. },
  18698. {
  18699. name: "Megamacro",
  18700. height: math.unit(2, "miles")
  18701. },
  18702. ]
  18703. ))
  18704. characterMakers.push(() => makeCharacter(
  18705. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18706. {
  18707. front: {
  18708. height: math.unit(6 + 2 / 12, "feet"),
  18709. weight: math.unit(153, "lb"),
  18710. name: "Front",
  18711. image: {
  18712. source: "./media/characters/seth-whilst/front.svg",
  18713. bottom: 0.07
  18714. }
  18715. },
  18716. },
  18717. [
  18718. {
  18719. name: "Micro",
  18720. height: math.unit(5, "inches")
  18721. },
  18722. {
  18723. name: "Normal",
  18724. height: math.unit(6 + 2 / 12, "feet"),
  18725. default: true
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18731. {
  18732. front: {
  18733. height: math.unit(3, "inches"),
  18734. weight: math.unit(8, "grams"),
  18735. name: "Front",
  18736. image: {
  18737. source: "./media/characters/pocket-jabari/front.svg",
  18738. extra: 1024 / 974,
  18739. bottom: 0.039
  18740. }
  18741. },
  18742. },
  18743. [
  18744. {
  18745. name: "Minimicro",
  18746. height: math.unit(8, "mm")
  18747. },
  18748. {
  18749. name: "Micro",
  18750. height: math.unit(3, "inches"),
  18751. default: true
  18752. },
  18753. {
  18754. name: "Normal",
  18755. height: math.unit(3, "feet")
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(15, "feet"),
  18764. weight: math.unit(3280, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/sapphy/front.svg",
  18768. extra: 671 / 577,
  18769. bottom: 0.085
  18770. }
  18771. },
  18772. back: {
  18773. height: math.unit(15, "feet"),
  18774. weight: math.unit(3280, "lb"),
  18775. name: "Back",
  18776. image: {
  18777. source: "./media/characters/sapphy/back.svg",
  18778. extra: 631 / 607,
  18779. bottom: 0.045
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(15, "feet")
  18787. },
  18788. {
  18789. name: "Casual Macro",
  18790. height: math.unit(120, "feet")
  18791. },
  18792. {
  18793. name: "Macro",
  18794. height: math.unit(2150, "feet"),
  18795. default: true
  18796. },
  18797. {
  18798. name: "Megamacro",
  18799. height: math.unit(8, "miles")
  18800. },
  18801. {
  18802. name: "Galaxy Mom",
  18803. height: math.unit(6, "megalightyears")
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(6, "feet"),
  18812. weight: math.unit(170, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/kiro/front.svg",
  18816. extra: 1064 / 1012,
  18817. bottom: 0.052
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Micro",
  18824. height: math.unit(6, "inches")
  18825. },
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(6, "feet"),
  18829. default: true
  18830. },
  18831. {
  18832. name: "Macro",
  18833. height: math.unit(72, "feet")
  18834. },
  18835. ]
  18836. ))
  18837. characterMakers.push(() => makeCharacter(
  18838. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18839. {
  18840. front: {
  18841. height: math.unit(5 + 9 / 12, "feet"),
  18842. weight: math.unit(175, "lb"),
  18843. name: "Front",
  18844. image: {
  18845. source: "./media/characters/irishfox/front.svg",
  18846. extra: 1912 / 1680,
  18847. bottom: 0.02
  18848. }
  18849. },
  18850. },
  18851. [
  18852. {
  18853. name: "Nano",
  18854. height: math.unit(1, "mm")
  18855. },
  18856. {
  18857. name: "Micro",
  18858. height: math.unit(2, "inches")
  18859. },
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(5 + 9 / 12, "feet"),
  18863. default: true
  18864. },
  18865. {
  18866. name: "Macro",
  18867. height: math.unit(45, "feet")
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18873. {
  18874. front: {
  18875. height: math.unit(6 + 1 / 12, "feet"),
  18876. weight: math.unit(75, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/aronai-sieyes/front.svg",
  18880. extra: 1556 / 1480,
  18881. bottom: 0.015
  18882. }
  18883. },
  18884. side: {
  18885. height: math.unit(6 + 1 / 12, "feet"),
  18886. weight: math.unit(75, "lb"),
  18887. name: "Side",
  18888. image: {
  18889. source: "./media/characters/aronai-sieyes/side.svg",
  18890. extra: 1433 / 1390,
  18891. bottom: 0.0393
  18892. }
  18893. },
  18894. back: {
  18895. height: math.unit(6 + 1 / 12, "feet"),
  18896. weight: math.unit(75, "lb"),
  18897. name: "Back",
  18898. image: {
  18899. source: "./media/characters/aronai-sieyes/back.svg",
  18900. extra: 1544 / 1494,
  18901. bottom: 0.02
  18902. }
  18903. },
  18904. frontClothed: {
  18905. height: math.unit(6 + 1 / 12, "feet"),
  18906. weight: math.unit(75, "lb"),
  18907. name: "Front (Clothed)",
  18908. image: {
  18909. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18910. extra: 1582 / 1527
  18911. }
  18912. },
  18913. feral: {
  18914. height: math.unit(18, "feet"),
  18915. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18916. name: "Feral",
  18917. image: {
  18918. source: "./media/characters/aronai-sieyes/feral.svg",
  18919. extra: 1530 / 1240,
  18920. bottom: 0.035
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Micro",
  18927. height: math.unit(2, "inches")
  18928. },
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(6 + 1 / 12, "feet"),
  18932. default: true
  18933. }
  18934. ]
  18935. ))
  18936. characterMakers.push(() => makeCharacter(
  18937. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18938. {
  18939. front: {
  18940. height: math.unit(12, "feet"),
  18941. weight: math.unit(410, "kg"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/xuna/front.svg",
  18945. extra: 2184 / 1980
  18946. }
  18947. },
  18948. side: {
  18949. height: math.unit(12, "feet"),
  18950. weight: math.unit(410, "kg"),
  18951. name: "Side",
  18952. image: {
  18953. source: "./media/characters/xuna/side.svg",
  18954. extra: 2184 / 1980
  18955. }
  18956. },
  18957. back: {
  18958. height: math.unit(12, "feet"),
  18959. weight: math.unit(410, "kg"),
  18960. name: "Back",
  18961. image: {
  18962. source: "./media/characters/xuna/back.svg",
  18963. extra: 2184 / 1980
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Nano glow",
  18970. height: math.unit(10, "nm")
  18971. },
  18972. {
  18973. name: "Micro floof",
  18974. height: math.unit(0.3, "m")
  18975. },
  18976. {
  18977. name: "Huggable softy boi",
  18978. height: math.unit(3.6576, "m"),
  18979. default: true
  18980. },
  18981. {
  18982. name: "Admirable floof",
  18983. height: math.unit(80, "meters")
  18984. },
  18985. {
  18986. name: "Gentle macro",
  18987. height: math.unit(300, "meters")
  18988. },
  18989. {
  18990. name: "Very careful floof",
  18991. height: math.unit(3200, "meters")
  18992. },
  18993. {
  18994. name: "The mega floof",
  18995. height: math.unit(36000, "meters")
  18996. },
  18997. {
  18998. name: "Giga-fur-Wicker",
  18999. height: math.unit(4800000, "meters")
  19000. },
  19001. {
  19002. name: "Licky world",
  19003. height: math.unit(20000000, "meters")
  19004. },
  19005. {
  19006. name: "Floofy cyan sun",
  19007. height: math.unit(1500000000, "meters")
  19008. },
  19009. {
  19010. name: "Milky Wicker",
  19011. height: math.unit(1000000000000000000000, "meters")
  19012. },
  19013. {
  19014. name: "The observing Wicker",
  19015. height: math.unit(999999999999999999999999999, "meters")
  19016. },
  19017. ]
  19018. ))
  19019. characterMakers.push(() => makeCharacter(
  19020. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19021. {
  19022. front: {
  19023. height: math.unit(5 + 9 / 12, "feet"),
  19024. weight: math.unit(150, "lb"),
  19025. name: "Front",
  19026. image: {
  19027. source: "./media/characters/arokha-sieyes/front.svg",
  19028. extra: 1425 / 1284,
  19029. bottom: 0.05
  19030. }
  19031. },
  19032. },
  19033. [
  19034. {
  19035. name: "Normal",
  19036. height: math.unit(5 + 9 / 12, "feet")
  19037. },
  19038. {
  19039. name: "Macro",
  19040. height: math.unit(30, "meters"),
  19041. default: true
  19042. },
  19043. ]
  19044. ))
  19045. characterMakers.push(() => makeCharacter(
  19046. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19047. {
  19048. front: {
  19049. height: math.unit(6, "feet"),
  19050. weight: math.unit(180, "lb"),
  19051. name: "Front",
  19052. image: {
  19053. source: "./media/characters/arokh-sieyes/front.svg",
  19054. extra: 1830 / 1769,
  19055. bottom: 0.01
  19056. }
  19057. },
  19058. },
  19059. [
  19060. {
  19061. name: "Normal",
  19062. height: math.unit(6, "feet")
  19063. },
  19064. {
  19065. name: "Macro",
  19066. height: math.unit(30, "meters"),
  19067. default: true
  19068. },
  19069. ]
  19070. ))
  19071. characterMakers.push(() => makeCharacter(
  19072. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19073. {
  19074. side: {
  19075. height: math.unit(13 + 1 / 12, "feet"),
  19076. weight: math.unit(8.5, "tonnes"),
  19077. name: "Side",
  19078. image: {
  19079. source: "./media/characters/goldeneye/side.svg",
  19080. extra: 1182 / 778,
  19081. bottom: 0.067
  19082. }
  19083. },
  19084. paw: {
  19085. height: math.unit(3.4, "feet"),
  19086. name: "Paw",
  19087. image: {
  19088. source: "./media/characters/goldeneye/paw.svg"
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(13 + 1 / 12, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19102. {
  19103. front: {
  19104. height: math.unit(6 + 1 / 12, "feet"),
  19105. weight: math.unit(210, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/leonardo-lycheborne/front.svg",
  19109. extra: 390 / 365,
  19110. bottom: 0.032
  19111. }
  19112. },
  19113. side: {
  19114. height: math.unit(6 + 1 / 12, "feet"),
  19115. weight: math.unit(210, "lb"),
  19116. name: "Side",
  19117. image: {
  19118. source: "./media/characters/leonardo-lycheborne/side.svg",
  19119. extra: 390 / 365,
  19120. bottom: 0.005
  19121. }
  19122. },
  19123. back: {
  19124. height: math.unit(6 + 1 / 12, "feet"),
  19125. weight: math.unit(210, "lb"),
  19126. name: "Back",
  19127. image: {
  19128. source: "./media/characters/leonardo-lycheborne/back.svg",
  19129. extra: 392 / 366,
  19130. bottom: 0.01
  19131. }
  19132. },
  19133. hand: {
  19134. height: math.unit(1.08, "feet"),
  19135. name: "Hand",
  19136. image: {
  19137. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19138. }
  19139. },
  19140. foot: {
  19141. height: math.unit(1.32, "feet"),
  19142. name: "Foot",
  19143. image: {
  19144. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19145. }
  19146. },
  19147. were: {
  19148. height: math.unit(20, "feet"),
  19149. weight: math.unit(7800, "lb"),
  19150. name: "Were",
  19151. image: {
  19152. source: "./media/characters/leonardo-lycheborne/were.svg",
  19153. extra: 308 / 294,
  19154. bottom: 0.048
  19155. }
  19156. },
  19157. feral: {
  19158. height: math.unit(7.5, "feet"),
  19159. weight: math.unit(600, "lb"),
  19160. name: "Feral",
  19161. image: {
  19162. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19163. extra: 210 / 186,
  19164. bottom: 0.108
  19165. }
  19166. },
  19167. taur: {
  19168. height: math.unit(11, "feet"),
  19169. weight: math.unit(3300, "lb"),
  19170. name: "Taur",
  19171. image: {
  19172. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19173. extra: 320 / 303,
  19174. bottom: 0.025
  19175. }
  19176. },
  19177. barghest: {
  19178. height: math.unit(11, "feet"),
  19179. weight: math.unit(1300, "lb"),
  19180. name: "Barghest",
  19181. image: {
  19182. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19183. extra: 323 / 302,
  19184. bottom: 0.027
  19185. }
  19186. },
  19187. dick: {
  19188. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19189. name: "Dick",
  19190. image: {
  19191. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19192. }
  19193. },
  19194. dickWere: {
  19195. height: math.unit((20) / 3.8, "feet"),
  19196. name: "Dick (Were)",
  19197. image: {
  19198. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(6 + 1 / 12, "feet"),
  19206. default: true
  19207. },
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19212. {
  19213. front: {
  19214. height: math.unit(10, "feet"),
  19215. weight: math.unit(350, "lb"),
  19216. name: "Front",
  19217. image: {
  19218. source: "./media/characters/jet/front.svg",
  19219. extra: 2050 / 1980,
  19220. bottom: 0.013
  19221. }
  19222. },
  19223. back: {
  19224. height: math.unit(10, "feet"),
  19225. weight: math.unit(350, "lb"),
  19226. name: "Back",
  19227. image: {
  19228. source: "./media/characters/jet/back.svg",
  19229. extra: 2050 / 1980,
  19230. bottom: 0.013
  19231. }
  19232. },
  19233. },
  19234. [
  19235. {
  19236. name: "Micro",
  19237. height: math.unit(6, "inches")
  19238. },
  19239. {
  19240. name: "Normal",
  19241. height: math.unit(10, "feet"),
  19242. default: true
  19243. },
  19244. {
  19245. name: "Macro",
  19246. height: math.unit(100, "feet")
  19247. },
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19252. {
  19253. front: {
  19254. height: math.unit(15, "feet"),
  19255. weight: math.unit(2800, "lb"),
  19256. name: "Front",
  19257. image: {
  19258. source: "./media/characters/tanarath/front.svg",
  19259. extra: 2392 / 2220,
  19260. bottom: 0.03
  19261. }
  19262. },
  19263. back: {
  19264. height: math.unit(15, "feet"),
  19265. weight: math.unit(2800, "lb"),
  19266. name: "Back",
  19267. image: {
  19268. source: "./media/characters/tanarath/back.svg",
  19269. extra: 2392 / 2220,
  19270. bottom: 0.03
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(15, "feet"),
  19278. default: true
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19284. {
  19285. front: {
  19286. height: math.unit(7 + 1 / 12, "feet"),
  19287. weight: math.unit(175, "lb"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/patty-cattybatty/front.svg",
  19291. extra: 908 / 874,
  19292. bottom: 0.025
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Micro",
  19299. height: math.unit(1, "inch")
  19300. },
  19301. {
  19302. name: "Normal",
  19303. height: math.unit(7 + 1 / 12, "feet")
  19304. },
  19305. {
  19306. name: "Mini Macro",
  19307. height: math.unit(155, "feet")
  19308. },
  19309. {
  19310. name: "Macro",
  19311. height: math.unit(1077, "feet")
  19312. },
  19313. {
  19314. name: "Mega Macro",
  19315. height: math.unit(47650, "feet"),
  19316. default: true
  19317. },
  19318. {
  19319. name: "Giga Macro",
  19320. height: math.unit(440, "miles")
  19321. },
  19322. {
  19323. name: "Tera Macro",
  19324. height: math.unit(8700, "miles")
  19325. },
  19326. {
  19327. name: "Planetary Macro",
  19328. height: math.unit(32700, "miles")
  19329. },
  19330. {
  19331. name: "Solar Macro",
  19332. height: math.unit(550000, "miles")
  19333. },
  19334. {
  19335. name: "Celestial Macro",
  19336. height: math.unit(2.5, "AU")
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19342. {
  19343. front: {
  19344. height: math.unit(4 + 5 / 12, "feet"),
  19345. weight: math.unit(90, "lb"),
  19346. name: "Front",
  19347. image: {
  19348. source: "./media/characters/cappu/front.svg",
  19349. extra: 1247 / 1152,
  19350. bottom: 0.012
  19351. }
  19352. },
  19353. },
  19354. [
  19355. {
  19356. name: "Normal",
  19357. height: math.unit(4 + 5 / 12, "feet"),
  19358. default: true
  19359. },
  19360. ]
  19361. ))
  19362. characterMakers.push(() => makeCharacter(
  19363. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19364. {
  19365. frontDressed: {
  19366. height: math.unit(70, "cm"),
  19367. weight: math.unit(6, "kg"),
  19368. name: "Front (Dressed)",
  19369. image: {
  19370. source: "./media/characters/sebi/front-dressed.svg",
  19371. extra: 713.5 / 686.5,
  19372. bottom: 0.003
  19373. }
  19374. },
  19375. front: {
  19376. height: math.unit(70, "cm"),
  19377. weight: math.unit(5, "kg"),
  19378. name: "Front",
  19379. image: {
  19380. source: "./media/characters/sebi/front.svg",
  19381. extra: 713.5 / 686.5,
  19382. bottom: 0.003
  19383. }
  19384. }
  19385. },
  19386. [
  19387. {
  19388. name: "Normal",
  19389. height: math.unit(70, "cm"),
  19390. default: true
  19391. },
  19392. {
  19393. name: "Macro",
  19394. height: math.unit(8, "meters")
  19395. },
  19396. ]
  19397. ))
  19398. characterMakers.push(() => makeCharacter(
  19399. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19400. {
  19401. front: {
  19402. height: math.unit(6, "feet"),
  19403. weight: math.unit(150, "lb"),
  19404. name: "Front",
  19405. image: {
  19406. source: "./media/characters/typhek/front.svg",
  19407. extra: 1948 / 1929,
  19408. bottom: 0.025
  19409. }
  19410. },
  19411. side: {
  19412. height: math.unit(6, "feet"),
  19413. weight: math.unit(150, "lb"),
  19414. name: "Side",
  19415. image: {
  19416. source: "./media/characters/typhek/side.svg",
  19417. extra: 2034 / 2010,
  19418. bottom: 0.003
  19419. }
  19420. },
  19421. back: {
  19422. height: math.unit(6, "feet"),
  19423. weight: math.unit(150, "lb"),
  19424. name: "Back",
  19425. image: {
  19426. source: "./media/characters/typhek/back.svg",
  19427. extra: 2005 / 1978,
  19428. bottom: 0.004
  19429. }
  19430. },
  19431. palm: {
  19432. height: math.unit(1.2, "feet"),
  19433. name: "Palm",
  19434. image: {
  19435. source: "./media/characters/typhek/palm.svg"
  19436. }
  19437. },
  19438. fist: {
  19439. height: math.unit(1.1, "feet"),
  19440. name: "Fist",
  19441. image: {
  19442. source: "./media/characters/typhek/fist.svg"
  19443. }
  19444. },
  19445. foot: {
  19446. height: math.unit(1.57, "feet"),
  19447. name: "Foot",
  19448. image: {
  19449. source: "./media/characters/typhek/foot.svg"
  19450. }
  19451. },
  19452. sole: {
  19453. height: math.unit(2.05, "feet"),
  19454. name: "Sole",
  19455. image: {
  19456. source: "./media/characters/typhek/sole.svg"
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Macro",
  19463. height: math.unit(40, "stories"),
  19464. default: true
  19465. },
  19466. {
  19467. name: "Megamacro",
  19468. height: math.unit(1, "mile")
  19469. },
  19470. {
  19471. name: "Gigamacro",
  19472. height: math.unit(4000, "solarradii")
  19473. },
  19474. {
  19475. name: "Universal",
  19476. height: math.unit(1.1, "universes")
  19477. }
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19482. {
  19483. side: {
  19484. height: math.unit(5 + 7 / 12, "feet"),
  19485. weight: math.unit(150, "lb"),
  19486. name: "Side",
  19487. image: {
  19488. source: "./media/characters/kassy/side.svg",
  19489. extra: 1280 / 1225,
  19490. bottom: 0.002
  19491. }
  19492. },
  19493. front: {
  19494. height: math.unit(5 + 7 / 12, "feet"),
  19495. weight: math.unit(150, "lb"),
  19496. name: "Front",
  19497. image: {
  19498. source: "./media/characters/kassy/front.svg",
  19499. extra: 1280 / 1225,
  19500. bottom: 0.025
  19501. }
  19502. },
  19503. back: {
  19504. height: math.unit(5 + 7 / 12, "feet"),
  19505. weight: math.unit(150, "lb"),
  19506. name: "Back",
  19507. image: {
  19508. source: "./media/characters/kassy/back.svg",
  19509. extra: 1280 / 1225,
  19510. bottom: 0.002
  19511. }
  19512. },
  19513. foot: {
  19514. height: math.unit(1.266, "feet"),
  19515. name: "Foot",
  19516. image: {
  19517. source: "./media/characters/kassy/foot.svg"
  19518. }
  19519. },
  19520. },
  19521. [
  19522. {
  19523. name: "Normal",
  19524. height: math.unit(5 + 7 / 12, "feet")
  19525. },
  19526. {
  19527. name: "Macro",
  19528. height: math.unit(137, "feet"),
  19529. default: true
  19530. },
  19531. {
  19532. name: "Megamacro",
  19533. height: math.unit(1, "mile")
  19534. },
  19535. ]
  19536. ))
  19537. characterMakers.push(() => makeCharacter(
  19538. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19539. {
  19540. front: {
  19541. height: math.unit(6 + 1 / 12, "feet"),
  19542. weight: math.unit(200, "lb"),
  19543. name: "Front",
  19544. image: {
  19545. source: "./media/characters/neil/front.svg",
  19546. extra: 1326 / 1250,
  19547. bottom: 0.023
  19548. }
  19549. },
  19550. },
  19551. [
  19552. {
  19553. name: "Normal",
  19554. height: math.unit(6 + 1 / 12, "feet"),
  19555. default: true
  19556. },
  19557. {
  19558. name: "Macro",
  19559. height: math.unit(200, "feet")
  19560. },
  19561. ]
  19562. ))
  19563. characterMakers.push(() => makeCharacter(
  19564. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19565. {
  19566. front: {
  19567. height: math.unit(5 + 9 / 12, "feet"),
  19568. weight: math.unit(190, "lb"),
  19569. name: "Front",
  19570. image: {
  19571. source: "./media/characters/atticus/front.svg",
  19572. extra: 2934 / 2785,
  19573. bottom: 0.025
  19574. }
  19575. },
  19576. },
  19577. [
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(5 + 9 / 12, "feet"),
  19581. default: true
  19582. },
  19583. {
  19584. name: "Macro",
  19585. height: math.unit(180, "feet")
  19586. },
  19587. ]
  19588. ))
  19589. characterMakers.push(() => makeCharacter(
  19590. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19591. {
  19592. side: {
  19593. height: math.unit(9, "feet"),
  19594. weight: math.unit(650, "lb"),
  19595. name: "Side",
  19596. image: {
  19597. source: "./media/characters/milo/side.svg",
  19598. extra: 2644 / 2310,
  19599. bottom: 0.032
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(9, "feet"),
  19607. default: true
  19608. },
  19609. {
  19610. name: "Macro",
  19611. height: math.unit(300, "feet")
  19612. },
  19613. ]
  19614. ))
  19615. characterMakers.push(() => makeCharacter(
  19616. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19617. {
  19618. side: {
  19619. height: math.unit(8, "meters"),
  19620. weight: math.unit(90000, "kg"),
  19621. name: "Side",
  19622. image: {
  19623. source: "./media/characters/ijzer/side.svg",
  19624. extra: 2756 / 1600,
  19625. bottom: 0.01
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Small",
  19632. height: math.unit(3, "meters")
  19633. },
  19634. {
  19635. name: "Normal",
  19636. height: math.unit(8, "meters"),
  19637. default: true
  19638. },
  19639. {
  19640. name: "Normal+",
  19641. height: math.unit(10, "meters")
  19642. },
  19643. {
  19644. name: "Bigger",
  19645. height: math.unit(24, "meters")
  19646. },
  19647. {
  19648. name: "Huge",
  19649. height: math.unit(80, "meters")
  19650. },
  19651. ]
  19652. ))
  19653. characterMakers.push(() => makeCharacter(
  19654. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19655. {
  19656. front: {
  19657. height: math.unit(6 + 2 / 12, "feet"),
  19658. weight: math.unit(153, "lb"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/luca-cervicum/front.svg",
  19662. extra: 370 / 327,
  19663. bottom: 0.015
  19664. }
  19665. },
  19666. back: {
  19667. height: math.unit(6 + 2 / 12, "feet"),
  19668. weight: math.unit(153, "lb"),
  19669. name: "Back",
  19670. image: {
  19671. source: "./media/characters/luca-cervicum/back.svg",
  19672. extra: 367 / 333,
  19673. bottom: 0.005
  19674. }
  19675. },
  19676. frontGear: {
  19677. height: math.unit(6 + 2 / 12, "feet"),
  19678. weight: math.unit(173, "lb"),
  19679. name: "Front (Gear)",
  19680. image: {
  19681. source: "./media/characters/luca-cervicum/front-gear.svg",
  19682. extra: 377 / 333,
  19683. bottom: 0.006
  19684. }
  19685. },
  19686. },
  19687. [
  19688. {
  19689. name: "Normal",
  19690. height: math.unit(6 + 2 / 12, "feet"),
  19691. default: true
  19692. },
  19693. ]
  19694. ))
  19695. characterMakers.push(() => makeCharacter(
  19696. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19697. {
  19698. front: {
  19699. height: math.unit(6 + 1 / 12, "feet"),
  19700. weight: math.unit(304, "lb"),
  19701. name: "Front",
  19702. image: {
  19703. source: "./media/characters/oliver/front.svg",
  19704. extra: 157 / 143,
  19705. bottom: 0.08
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(6 + 1 / 12, "feet"),
  19713. default: true
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19719. {
  19720. front: {
  19721. height: math.unit(5 + 7 / 12, "feet"),
  19722. weight: math.unit(140, "lb"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/shane/front.svg",
  19726. extra: 304 / 289,
  19727. bottom: 0.005
  19728. }
  19729. },
  19730. },
  19731. [
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(5 + 7 / 12, "feet"),
  19735. default: true
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19741. {
  19742. front: {
  19743. height: math.unit(5 + 9 / 12, "feet"),
  19744. weight: math.unit(178, "lb"),
  19745. name: "Front",
  19746. image: {
  19747. source: "./media/characters/shin/front.svg",
  19748. extra: 159 / 151,
  19749. bottom: 0.015
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(5 + 9 / 12, "feet"),
  19757. default: true
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19763. {
  19764. front: {
  19765. height: math.unit(5 + 10 / 12, "feet"),
  19766. weight: math.unit(168, "lb"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/xerxes/front.svg",
  19770. extra: 282 / 260,
  19771. bottom: 0.045
  19772. }
  19773. },
  19774. },
  19775. [
  19776. {
  19777. name: "Normal",
  19778. height: math.unit(5 + 10 / 12, "feet"),
  19779. default: true
  19780. },
  19781. ]
  19782. ))
  19783. characterMakers.push(() => makeCharacter(
  19784. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19785. {
  19786. front: {
  19787. height: math.unit(6 + 7 / 12, "feet"),
  19788. weight: math.unit(208, "lb"),
  19789. name: "Front",
  19790. image: {
  19791. source: "./media/characters/chaska/front.svg",
  19792. extra: 332 / 319,
  19793. bottom: 0.015
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(6 + 7 / 12, "feet"),
  19801. default: true
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19807. {
  19808. front: {
  19809. height: math.unit(5 + 8 / 12, "feet"),
  19810. weight: math.unit(208, "lb"),
  19811. name: "Front",
  19812. image: {
  19813. source: "./media/characters/enuk/front.svg",
  19814. extra: 437 / 406,
  19815. bottom: 0.02
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(5 + 8 / 12, "feet"),
  19823. default: true
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19829. {
  19830. front: {
  19831. height: math.unit(5 + 10 / 12, "feet"),
  19832. weight: math.unit(252, "lb"),
  19833. name: "Front",
  19834. image: {
  19835. source: "./media/characters/bruun/front.svg",
  19836. extra: 197 / 187,
  19837. bottom: 0.012
  19838. }
  19839. },
  19840. },
  19841. [
  19842. {
  19843. name: "Normal",
  19844. height: math.unit(5 + 10 / 12, "feet"),
  19845. default: true
  19846. },
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19851. {
  19852. front: {
  19853. height: math.unit(6 + 10 / 12, "feet"),
  19854. weight: math.unit(255, "lb"),
  19855. name: "Front",
  19856. image: {
  19857. source: "./media/characters/alexeev/front.svg",
  19858. extra: 213 / 200,
  19859. bottom: 0.05
  19860. }
  19861. },
  19862. },
  19863. [
  19864. {
  19865. name: "Normal",
  19866. height: math.unit(6 + 10 / 12, "feet"),
  19867. default: true
  19868. },
  19869. ]
  19870. ))
  19871. characterMakers.push(() => makeCharacter(
  19872. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19873. {
  19874. front: {
  19875. height: math.unit(2 + 8 / 12, "feet"),
  19876. weight: math.unit(22, "lb"),
  19877. name: "Front",
  19878. image: {
  19879. source: "./media/characters/evelyn/front.svg",
  19880. extra: 208 / 180
  19881. }
  19882. },
  19883. },
  19884. [
  19885. {
  19886. name: "Normal",
  19887. height: math.unit(2 + 8 / 12, "feet"),
  19888. default: true
  19889. },
  19890. ]
  19891. ))
  19892. characterMakers.push(() => makeCharacter(
  19893. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19894. {
  19895. front: {
  19896. height: math.unit(5 + 9 / 12, "feet"),
  19897. weight: math.unit(139, "lb"),
  19898. name: "Front",
  19899. image: {
  19900. source: "./media/characters/inca/front.svg",
  19901. extra: 294 / 291,
  19902. bottom: 0.03
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(5 + 9 / 12, "feet"),
  19910. default: true
  19911. },
  19912. ]
  19913. ))
  19914. characterMakers.push(() => makeCharacter(
  19915. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19916. {
  19917. front: {
  19918. height: math.unit(5 + 1 / 12, "feet"),
  19919. weight: math.unit(84, "lb"),
  19920. name: "Front",
  19921. image: {
  19922. source: "./media/characters/magdalene/front.svg",
  19923. extra: 293 / 273
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(5 + 1 / 12, "feet"),
  19931. default: true
  19932. },
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19937. {
  19938. front: {
  19939. height: math.unit(6 + 3 / 12, "feet"),
  19940. weight: math.unit(185, "lb"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/mera/front.svg",
  19944. extra: 291 / 277,
  19945. bottom: 0.03
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(6 + 3 / 12, "feet"),
  19953. default: true
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(6 + 7 / 12, "feet"),
  19962. weight: math.unit(160, "lb"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/ceres/front.svg",
  19966. extra: 1023 / 950,
  19967. bottom: 0.027
  19968. }
  19969. },
  19970. back: {
  19971. height: math.unit(6 + 7 / 12, "feet"),
  19972. weight: math.unit(160, "lb"),
  19973. name: "Back",
  19974. image: {
  19975. source: "./media/characters/ceres/back.svg",
  19976. extra: 1023 / 950
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Normal",
  19983. height: math.unit(6 + 7 / 12, "feet"),
  19984. default: true
  19985. },
  19986. ]
  19987. ))
  19988. characterMakers.push(() => makeCharacter(
  19989. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19990. {
  19991. front: {
  19992. height: math.unit(5 + 10 / 12, "feet"),
  19993. weight: math.unit(150, "lb"),
  19994. name: "Front",
  19995. image: {
  19996. source: "./media/characters/kris/front.svg",
  19997. extra: 885 / 803,
  19998. bottom: 0.03
  19999. }
  20000. },
  20001. },
  20002. [
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(5 + 10 / 12, "feet"),
  20006. default: true
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20012. {
  20013. front: {
  20014. height: math.unit(7, "feet"),
  20015. weight: math.unit(120, "kg"),
  20016. name: "Front",
  20017. image: {
  20018. source: "./media/characters/taluthus/front.svg",
  20019. extra: 903 / 833,
  20020. bottom: 0.015
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(7, "feet"),
  20028. default: true
  20029. },
  20030. {
  20031. name: "Macro",
  20032. height: math.unit(300, "feet")
  20033. },
  20034. ]
  20035. ))
  20036. characterMakers.push(() => makeCharacter(
  20037. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20038. {
  20039. front: {
  20040. height: math.unit(5 + 9 / 12, "feet"),
  20041. weight: math.unit(145, "lb"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/dawn/front.svg",
  20045. extra: 2094 / 2016,
  20046. bottom: 0.025
  20047. }
  20048. },
  20049. back: {
  20050. height: math.unit(5 + 9 / 12, "feet"),
  20051. weight: math.unit(160, "lb"),
  20052. name: "Back",
  20053. image: {
  20054. source: "./media/characters/dawn/back.svg",
  20055. extra: 2112 / 2080,
  20056. bottom: 0.005
  20057. }
  20058. },
  20059. },
  20060. [
  20061. {
  20062. name: "Normal",
  20063. height: math.unit(6 + 7 / 12, "feet"),
  20064. default: true
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20070. {
  20071. anthro: {
  20072. height: math.unit(8 + 3 / 12, "feet"),
  20073. weight: math.unit(450, "lb"),
  20074. name: "Anthro",
  20075. image: {
  20076. source: "./media/characters/arador/anthro.svg",
  20077. extra: 1835 / 1718,
  20078. bottom: 0.025
  20079. }
  20080. },
  20081. feral: {
  20082. height: math.unit(4, "feet"),
  20083. weight: math.unit(200, "lb"),
  20084. name: "Feral",
  20085. image: {
  20086. source: "./media/characters/arador/feral.svg",
  20087. extra: 1683 / 1514,
  20088. bottom: 0.07
  20089. }
  20090. },
  20091. },
  20092. [
  20093. {
  20094. name: "Normal",
  20095. height: math.unit(8 + 3 / 12, "feet")
  20096. },
  20097. {
  20098. name: "Macro",
  20099. height: math.unit(82.5, "feet"),
  20100. default: true
  20101. },
  20102. ]
  20103. ))
  20104. characterMakers.push(() => makeCharacter(
  20105. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20106. {
  20107. front: {
  20108. height: math.unit(5 + 10 / 12, "feet"),
  20109. weight: math.unit(125, "lb"),
  20110. name: "Front",
  20111. image: {
  20112. source: "./media/characters/dharsi/front.svg",
  20113. extra: 716 / 630,
  20114. bottom: 0.035
  20115. }
  20116. },
  20117. },
  20118. [
  20119. {
  20120. name: "Nano",
  20121. height: math.unit(100, "nm")
  20122. },
  20123. {
  20124. name: "Micro",
  20125. height: math.unit(2, "inches")
  20126. },
  20127. {
  20128. name: "Normal",
  20129. height: math.unit(5 + 10 / 12, "feet"),
  20130. default: true
  20131. },
  20132. {
  20133. name: "Macro",
  20134. height: math.unit(1000, "feet")
  20135. },
  20136. {
  20137. name: "Megamacro",
  20138. height: math.unit(10, "miles")
  20139. },
  20140. {
  20141. name: "Gigamacro",
  20142. height: math.unit(3000, "miles")
  20143. },
  20144. {
  20145. name: "Teramacro",
  20146. height: math.unit(500000, "miles")
  20147. },
  20148. {
  20149. name: "Teramacro+",
  20150. height: math.unit(30, "galaxies")
  20151. },
  20152. ]
  20153. ))
  20154. characterMakers.push(() => makeCharacter(
  20155. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20156. {
  20157. front: {
  20158. height: math.unit(6, "feet"),
  20159. weight: math.unit(150, "lb"),
  20160. name: "Front",
  20161. image: {
  20162. source: "./media/characters/deathy/front.svg",
  20163. extra: 1552 / 1463,
  20164. bottom: 0.025
  20165. }
  20166. },
  20167. side: {
  20168. height: math.unit(6, "feet"),
  20169. weight: math.unit(150, "lb"),
  20170. name: "Side",
  20171. image: {
  20172. source: "./media/characters/deathy/side.svg",
  20173. extra: 1604 / 1455,
  20174. bottom: 0.025
  20175. }
  20176. },
  20177. back: {
  20178. height: math.unit(6, "feet"),
  20179. weight: math.unit(150, "lb"),
  20180. name: "Back",
  20181. image: {
  20182. source: "./media/characters/deathy/back.svg",
  20183. extra: 1580 / 1463,
  20184. bottom: 0.005
  20185. }
  20186. },
  20187. },
  20188. [
  20189. {
  20190. name: "Micro",
  20191. height: math.unit(5, "millimeters")
  20192. },
  20193. {
  20194. name: "Normal",
  20195. height: math.unit(6 + 5 / 12, "feet"),
  20196. default: true
  20197. },
  20198. ]
  20199. ))
  20200. characterMakers.push(() => makeCharacter(
  20201. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20202. {
  20203. front: {
  20204. height: math.unit(16, "feet"),
  20205. weight: math.unit(4000, "lb"),
  20206. name: "Front",
  20207. image: {
  20208. source: "./media/characters/juniper/front.svg",
  20209. bottom: 0.04
  20210. }
  20211. },
  20212. },
  20213. [
  20214. {
  20215. name: "Normal",
  20216. height: math.unit(16, "feet"),
  20217. default: true
  20218. },
  20219. ]
  20220. ))
  20221. characterMakers.push(() => makeCharacter(
  20222. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20223. {
  20224. front: {
  20225. height: math.unit(6, "feet"),
  20226. weight: math.unit(150, "lb"),
  20227. name: "Front",
  20228. image: {
  20229. source: "./media/characters/hipster/front.svg",
  20230. extra: 1312 / 1209,
  20231. bottom: 0.025
  20232. }
  20233. },
  20234. back: {
  20235. height: math.unit(6, "feet"),
  20236. weight: math.unit(150, "lb"),
  20237. name: "Back",
  20238. image: {
  20239. source: "./media/characters/hipster/back.svg",
  20240. extra: 1281 / 1196,
  20241. bottom: 0.01
  20242. }
  20243. },
  20244. },
  20245. [
  20246. {
  20247. name: "Micro",
  20248. height: math.unit(1, "mm")
  20249. },
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(4, "inches"),
  20253. default: true
  20254. },
  20255. {
  20256. name: "Macro",
  20257. height: math.unit(500, "feet")
  20258. },
  20259. {
  20260. name: "Megamacro",
  20261. height: math.unit(1000, "miles")
  20262. },
  20263. ]
  20264. ))
  20265. characterMakers.push(() => makeCharacter(
  20266. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20267. {
  20268. front: {
  20269. height: math.unit(6, "feet"),
  20270. weight: math.unit(150, "lb"),
  20271. name: "Front",
  20272. image: {
  20273. source: "./media/characters/tendirmuldr/front.svg",
  20274. extra: 1878 / 1772,
  20275. bottom: 0.015
  20276. }
  20277. },
  20278. },
  20279. [
  20280. {
  20281. name: "Megamacro",
  20282. height: math.unit(1500, "miles"),
  20283. default: true
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20289. {
  20290. front: {
  20291. height: math.unit(14, "feet"),
  20292. weight: math.unit(12000, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/mort/front.svg",
  20296. extra: 365 / 318,
  20297. bottom: 0.01
  20298. }
  20299. },
  20300. side: {
  20301. height: math.unit(14, "feet"),
  20302. weight: math.unit(12000, "lb"),
  20303. name: "Side",
  20304. image: {
  20305. source: "./media/characters/mort/side.svg",
  20306. extra: 365 / 318,
  20307. bottom: 0.052
  20308. },
  20309. default: true
  20310. },
  20311. back: {
  20312. height: math.unit(14, "feet"),
  20313. weight: math.unit(12000, "lb"),
  20314. name: "Back",
  20315. image: {
  20316. source: "./media/characters/mort/back.svg",
  20317. extra: 371 / 332,
  20318. bottom: 0.18
  20319. }
  20320. },
  20321. },
  20322. [
  20323. {
  20324. name: "Normal",
  20325. height: math.unit(14, "feet"),
  20326. default: true
  20327. },
  20328. ]
  20329. ))
  20330. characterMakers.push(() => makeCharacter(
  20331. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20332. {
  20333. front: {
  20334. height: math.unit(8, "feet"),
  20335. weight: math.unit(1, "ton"),
  20336. name: "Front",
  20337. image: {
  20338. source: "./media/characters/lycoa/front.svg",
  20339. extra: 1875 / 1789,
  20340. bottom: 0.022
  20341. }
  20342. },
  20343. back: {
  20344. height: math.unit(8, "feet"),
  20345. weight: math.unit(1, "ton"),
  20346. name: "Back",
  20347. image: {
  20348. source: "./media/characters/lycoa/back.svg",
  20349. extra: 1835 / 1781,
  20350. bottom: 0.03
  20351. }
  20352. },
  20353. head: {
  20354. height: math.unit(2.1, "feet"),
  20355. name: "Head",
  20356. image: {
  20357. source: "./media/characters/lycoa/head.svg"
  20358. }
  20359. },
  20360. tailmaw: {
  20361. height: math.unit(1.9, "feet"),
  20362. name: "Tailmaw",
  20363. image: {
  20364. source: "./media/characters/lycoa/tailmaw.svg"
  20365. }
  20366. },
  20367. tentacles: {
  20368. height: math.unit(2.1, "feet"),
  20369. name: "Tentacles",
  20370. image: {
  20371. source: "./media/characters/lycoa/tentacles.svg"
  20372. }
  20373. },
  20374. dick: {
  20375. height: math.unit(1.73, "feet"),
  20376. name: "Dick",
  20377. image: {
  20378. source: "./media/characters/lycoa/dick.svg"
  20379. }
  20380. },
  20381. },
  20382. [
  20383. {
  20384. name: "Normal",
  20385. height: math.unit(8, "feet"),
  20386. default: true
  20387. },
  20388. {
  20389. name: "Macro",
  20390. height: math.unit(30, "feet")
  20391. },
  20392. ]
  20393. ))
  20394. characterMakers.push(() => makeCharacter(
  20395. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20396. {
  20397. front: {
  20398. height: math.unit(4 + 2 / 12, "feet"),
  20399. weight: math.unit(70, "lb"),
  20400. name: "Front",
  20401. image: {
  20402. source: "./media/characters/naldara/front.svg",
  20403. extra: 841 / 720,
  20404. bottom: 0.04
  20405. }
  20406. },
  20407. naga: {
  20408. height: math.unit(23, "feet"),
  20409. weight: math.unit(15000, "kg"),
  20410. name: "Naga",
  20411. image: {
  20412. source: "./media/characters/naldara/naga.svg",
  20413. extra: 3290 / 2959,
  20414. bottom: 124 / 3432
  20415. }
  20416. },
  20417. },
  20418. [
  20419. {
  20420. name: "Normal",
  20421. height: math.unit(4 + 2 / 12, "feet"),
  20422. default: true
  20423. },
  20424. ]
  20425. ))
  20426. characterMakers.push(() => makeCharacter(
  20427. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20428. {
  20429. front: {
  20430. height: math.unit(13 + 7 / 12, "feet"),
  20431. weight: math.unit(1500, "lb"),
  20432. name: "Front",
  20433. image: {
  20434. source: "./media/characters/briar/front.svg",
  20435. extra: 626 / 596,
  20436. bottom: 0.08
  20437. }
  20438. },
  20439. },
  20440. [
  20441. {
  20442. name: "Normal",
  20443. height: math.unit(13 + 7 / 12, "feet"),
  20444. default: true
  20445. },
  20446. ]
  20447. ))
  20448. characterMakers.push(() => makeCharacter(
  20449. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20450. {
  20451. side: {
  20452. height: math.unit(10, "feet"),
  20453. weight: math.unit(500, "lb"),
  20454. name: "Side",
  20455. image: {
  20456. source: "./media/characters/vanguard/side.svg",
  20457. extra: 502 / 425,
  20458. bottom: 0.087
  20459. }
  20460. },
  20461. },
  20462. [
  20463. {
  20464. name: "Normal",
  20465. height: math.unit(10, "feet"),
  20466. default: true
  20467. },
  20468. ]
  20469. ))
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20472. {
  20473. front: {
  20474. height: math.unit(7.5, "feet"),
  20475. weight: math.unit(2, "lb"),
  20476. name: "Front",
  20477. image: {
  20478. source: "./media/characters/artemis/front.svg",
  20479. extra: 1192 / 1075,
  20480. bottom: 0.07
  20481. }
  20482. },
  20483. frontNsfw: {
  20484. height: math.unit(7.5, "feet"),
  20485. weight: math.unit(2, "lb"),
  20486. name: "Front (NSFW)",
  20487. image: {
  20488. source: "./media/characters/artemis/front-nsfw.svg",
  20489. extra: 1192 / 1075,
  20490. bottom: 0.07
  20491. }
  20492. },
  20493. frontNsfwer: {
  20494. height: math.unit(7.5, "feet"),
  20495. weight: math.unit(2, "lb"),
  20496. name: "Front (NSFW-er)",
  20497. image: {
  20498. source: "./media/characters/artemis/front-nsfwer.svg",
  20499. extra: 1192 / 1075,
  20500. bottom: 0.07
  20501. }
  20502. },
  20503. side: {
  20504. height: math.unit(7.5, "feet"),
  20505. weight: math.unit(2, "lb"),
  20506. name: "Side",
  20507. image: {
  20508. source: "./media/characters/artemis/side.svg",
  20509. extra: 1192 / 1075,
  20510. bottom: 0.07
  20511. }
  20512. },
  20513. sideNsfw: {
  20514. height: math.unit(7.5, "feet"),
  20515. weight: math.unit(2, "lb"),
  20516. name: "Side (NSFW)",
  20517. image: {
  20518. source: "./media/characters/artemis/side-nsfw.svg",
  20519. extra: 1192 / 1075,
  20520. bottom: 0.07
  20521. }
  20522. },
  20523. sideNsfwer: {
  20524. height: math.unit(7.5, "feet"),
  20525. weight: math.unit(2, "lb"),
  20526. name: "Side (NSFW-er)",
  20527. image: {
  20528. source: "./media/characters/artemis/side-nsfwer.svg",
  20529. extra: 1192 / 1075,
  20530. bottom: 0.07
  20531. }
  20532. },
  20533. maw: {
  20534. height: math.unit(1.1, "feet"),
  20535. name: "Maw",
  20536. image: {
  20537. source: "./media/characters/artemis/maw.svg"
  20538. }
  20539. },
  20540. stomach: {
  20541. height: math.unit(0.95, "feet"),
  20542. name: "Stomach",
  20543. image: {
  20544. source: "./media/characters/artemis/stomach.svg"
  20545. }
  20546. },
  20547. dickCanine: {
  20548. height: math.unit(1, "feet"),
  20549. name: "Dick (Canine)",
  20550. image: {
  20551. source: "./media/characters/artemis/dick-canine.svg"
  20552. }
  20553. },
  20554. dickEquine: {
  20555. height: math.unit(0.85, "feet"),
  20556. name: "Dick (Equine)",
  20557. image: {
  20558. source: "./media/characters/artemis/dick-equine.svg"
  20559. }
  20560. },
  20561. dickExotic: {
  20562. height: math.unit(0.85, "feet"),
  20563. name: "Dick (Exotic)",
  20564. image: {
  20565. source: "./media/characters/artemis/dick-exotic.svg"
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Normal",
  20572. height: math.unit(7.5, "feet"),
  20573. default: true
  20574. },
  20575. {
  20576. name: "Enlarged",
  20577. height: math.unit(12, "feet")
  20578. },
  20579. ]
  20580. ))
  20581. characterMakers.push(() => makeCharacter(
  20582. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20583. {
  20584. front: {
  20585. height: math.unit(5 + 3 / 12, "feet"),
  20586. weight: math.unit(160, "lb"),
  20587. name: "Front",
  20588. image: {
  20589. source: "./media/characters/kira/front.svg",
  20590. extra: 906 / 786,
  20591. bottom: 0.01
  20592. }
  20593. },
  20594. back: {
  20595. height: math.unit(5 + 3 / 12, "feet"),
  20596. weight: math.unit(160, "lb"),
  20597. name: "Back",
  20598. image: {
  20599. source: "./media/characters/kira/back.svg",
  20600. extra: 882 / 757,
  20601. bottom: 0.005
  20602. }
  20603. },
  20604. frontDressed: {
  20605. height: math.unit(5 + 3 / 12, "feet"),
  20606. weight: math.unit(160, "lb"),
  20607. name: "Front (Dressed)",
  20608. image: {
  20609. source: "./media/characters/kira/front-dressed.svg",
  20610. extra: 906 / 786,
  20611. bottom: 0.01
  20612. }
  20613. },
  20614. beans: {
  20615. height: math.unit(0.92, "feet"),
  20616. name: "Beans",
  20617. image: {
  20618. source: "./media/characters/kira/beans.svg"
  20619. }
  20620. },
  20621. },
  20622. [
  20623. {
  20624. name: "Normal",
  20625. height: math.unit(5 + 3 / 12, "feet"),
  20626. default: true
  20627. },
  20628. ]
  20629. ))
  20630. characterMakers.push(() => makeCharacter(
  20631. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20632. {
  20633. front: {
  20634. height: math.unit(5 + 4 / 12, "feet"),
  20635. weight: math.unit(145, "lb"),
  20636. name: "Front",
  20637. image: {
  20638. source: "./media/characters/scramble/front.svg",
  20639. extra: 763 / 727,
  20640. bottom: 0.05
  20641. }
  20642. },
  20643. back: {
  20644. height: math.unit(5 + 4 / 12, "feet"),
  20645. weight: math.unit(145, "lb"),
  20646. name: "Back",
  20647. image: {
  20648. source: "./media/characters/scramble/back.svg",
  20649. extra: 826 / 737,
  20650. bottom: 0.002
  20651. }
  20652. },
  20653. },
  20654. [
  20655. {
  20656. name: "Normal",
  20657. height: math.unit(5 + 4 / 12, "feet"),
  20658. default: true
  20659. },
  20660. ]
  20661. ))
  20662. characterMakers.push(() => makeCharacter(
  20663. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20664. {
  20665. side: {
  20666. height: math.unit(6 + 2 / 12, "feet"),
  20667. weight: math.unit(190, "lb"),
  20668. name: "Side",
  20669. image: {
  20670. source: "./media/characters/biscuit/side.svg",
  20671. extra: 858 / 791,
  20672. bottom: 0.044
  20673. }
  20674. },
  20675. },
  20676. [
  20677. {
  20678. name: "Normal",
  20679. height: math.unit(6 + 2 / 12, "feet"),
  20680. default: true
  20681. },
  20682. ]
  20683. ))
  20684. characterMakers.push(() => makeCharacter(
  20685. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20686. {
  20687. front: {
  20688. height: math.unit(5 + 2 / 12, "feet"),
  20689. weight: math.unit(120, "lb"),
  20690. name: "Front",
  20691. image: {
  20692. source: "./media/characters/poffin/front.svg",
  20693. extra: 786 / 680,
  20694. bottom: 0.005
  20695. }
  20696. },
  20697. },
  20698. [
  20699. {
  20700. name: "Normal",
  20701. height: math.unit(5 + 2 / 12, "feet"),
  20702. default: true
  20703. },
  20704. ]
  20705. ))
  20706. characterMakers.push(() => makeCharacter(
  20707. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20708. {
  20709. front: {
  20710. height: math.unit(6 + 3 / 12, "feet"),
  20711. weight: math.unit(519, "lb"),
  20712. name: "Front",
  20713. image: {
  20714. source: "./media/characters/dhari/front.svg",
  20715. extra: 1048 / 946,
  20716. bottom: 0.015
  20717. }
  20718. },
  20719. back: {
  20720. height: math.unit(6 + 3 / 12, "feet"),
  20721. weight: math.unit(519, "lb"),
  20722. name: "Back",
  20723. image: {
  20724. source: "./media/characters/dhari/back.svg",
  20725. extra: 1048 / 931,
  20726. bottom: 0.005
  20727. }
  20728. },
  20729. frontDressed: {
  20730. height: math.unit(6 + 3 / 12, "feet"),
  20731. weight: math.unit(519, "lb"),
  20732. name: "Front (Dressed)",
  20733. image: {
  20734. source: "./media/characters/dhari/front-dressed.svg",
  20735. extra: 1713 / 1546,
  20736. bottom: 0.02
  20737. }
  20738. },
  20739. backDressed: {
  20740. height: math.unit(6 + 3 / 12, "feet"),
  20741. weight: math.unit(519, "lb"),
  20742. name: "Back (Dressed)",
  20743. image: {
  20744. source: "./media/characters/dhari/back-dressed.svg",
  20745. extra: 1699 / 1537,
  20746. bottom: 0.01
  20747. }
  20748. },
  20749. maw: {
  20750. height: math.unit(0.95, "feet"),
  20751. name: "Maw",
  20752. image: {
  20753. source: "./media/characters/dhari/maw.svg"
  20754. }
  20755. },
  20756. wereFront: {
  20757. height: math.unit(12 + 8 / 12, "feet"),
  20758. weight: math.unit(4000, "lb"),
  20759. name: "Front (Were)",
  20760. image: {
  20761. source: "./media/characters/dhari/were-front.svg",
  20762. extra: 1065 / 969,
  20763. bottom: 0.015
  20764. }
  20765. },
  20766. wereBack: {
  20767. height: math.unit(12 + 8 / 12, "feet"),
  20768. weight: math.unit(4000, "lb"),
  20769. name: "Back (Were)",
  20770. image: {
  20771. source: "./media/characters/dhari/were-back.svg",
  20772. extra: 1065 / 969,
  20773. bottom: 0.012
  20774. }
  20775. },
  20776. wereMaw: {
  20777. height: math.unit(0.625, "meters"),
  20778. name: "Maw (Were)",
  20779. image: {
  20780. source: "./media/characters/dhari/were-maw.svg"
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "Normal",
  20787. height: math.unit(6 + 3 / 12, "feet"),
  20788. default: true
  20789. },
  20790. ]
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20794. {
  20795. anthro: {
  20796. height: math.unit(5 + 7 / 12, "feet"),
  20797. weight: math.unit(175, "lb"),
  20798. name: "Anthro",
  20799. image: {
  20800. source: "./media/characters/rena-dyne/anthro.svg",
  20801. extra: 1849 / 1785,
  20802. bottom: 0.005
  20803. }
  20804. },
  20805. taur: {
  20806. height: math.unit(15 + 6 / 12, "feet"),
  20807. weight: math.unit(8000, "lb"),
  20808. name: "Taur",
  20809. image: {
  20810. source: "./media/characters/rena-dyne/taur.svg",
  20811. extra: 2315 / 2234,
  20812. bottom: 0.033
  20813. }
  20814. },
  20815. },
  20816. [
  20817. {
  20818. name: "Normal",
  20819. height: math.unit(5 + 7 / 12, "feet"),
  20820. default: true
  20821. },
  20822. ]
  20823. ))
  20824. characterMakers.push(() => makeCharacter(
  20825. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20826. {
  20827. front: {
  20828. height: math.unit(8, "feet"),
  20829. weight: math.unit(600, "lb"),
  20830. name: "Front",
  20831. image: {
  20832. source: "./media/characters/weremeep/front.svg",
  20833. extra: 967 / 862,
  20834. bottom: 0.01
  20835. }
  20836. },
  20837. },
  20838. [
  20839. {
  20840. name: "Normal",
  20841. height: math.unit(8, "feet"),
  20842. default: true
  20843. },
  20844. {
  20845. name: "Lorg",
  20846. height: math.unit(12, "feet")
  20847. },
  20848. {
  20849. name: "Oh Lawd She Comin'",
  20850. height: math.unit(20, "feet")
  20851. },
  20852. ]
  20853. ))
  20854. characterMakers.push(() => makeCharacter(
  20855. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20856. {
  20857. front: {
  20858. height: math.unit(4, "feet"),
  20859. weight: math.unit(90, "lb"),
  20860. name: "Front",
  20861. image: {
  20862. source: "./media/characters/reza/front.svg",
  20863. extra: 1183 / 1111,
  20864. bottom: 0.017
  20865. }
  20866. },
  20867. back: {
  20868. height: math.unit(4, "feet"),
  20869. weight: math.unit(90, "lb"),
  20870. name: "Back",
  20871. image: {
  20872. source: "./media/characters/reza/back.svg",
  20873. extra: 1183 / 1111,
  20874. bottom: 0.01
  20875. }
  20876. },
  20877. drake: {
  20878. height: math.unit(30, "feet"),
  20879. weight: math.unit(246960, "lb"),
  20880. name: "Drake",
  20881. image: {
  20882. source: "./media/characters/reza/drake.svg",
  20883. extra: 2350 / 2024,
  20884. bottom: 60.7 / 2403
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(4, "feet"),
  20892. default: true
  20893. },
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20898. {
  20899. side: {
  20900. height: math.unit(15, "feet"),
  20901. weight: math.unit(14, "tons"),
  20902. name: "Side",
  20903. image: {
  20904. source: "./media/characters/athea/side.svg",
  20905. extra: 960 / 540,
  20906. bottom: 0.003
  20907. }
  20908. },
  20909. sitting: {
  20910. height: math.unit(6 * 2.85, "feet"),
  20911. weight: math.unit(14, "tons"),
  20912. name: "Sitting",
  20913. image: {
  20914. source: "./media/characters/athea/sitting.svg",
  20915. extra: 621 / 581,
  20916. bottom: 0.075
  20917. }
  20918. },
  20919. maw: {
  20920. height: math.unit(7.59498031496063, "feet"),
  20921. name: "Maw",
  20922. image: {
  20923. source: "./media/characters/athea/maw.svg"
  20924. }
  20925. },
  20926. },
  20927. [
  20928. {
  20929. name: "Lap Cat",
  20930. height: math.unit(2.5, "feet")
  20931. },
  20932. {
  20933. name: "Minimacro",
  20934. height: math.unit(15, "feet"),
  20935. default: true
  20936. },
  20937. {
  20938. name: "Macro",
  20939. height: math.unit(120, "feet")
  20940. },
  20941. {
  20942. name: "Macro+",
  20943. height: math.unit(640, "feet")
  20944. },
  20945. {
  20946. name: "Colossus",
  20947. height: math.unit(2.2, "miles")
  20948. },
  20949. ]
  20950. ))
  20951. characterMakers.push(() => makeCharacter(
  20952. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20953. {
  20954. front: {
  20955. height: math.unit(8 + 8 / 12, "feet"),
  20956. weight: math.unit(130, "kg"),
  20957. name: "Front",
  20958. image: {
  20959. source: "./media/characters/seroko/front.svg",
  20960. extra: 1385 / 1280,
  20961. bottom: 0.025
  20962. }
  20963. },
  20964. back: {
  20965. height: math.unit(8 + 8 / 12, "feet"),
  20966. weight: math.unit(130, "kg"),
  20967. name: "Back",
  20968. image: {
  20969. source: "./media/characters/seroko/back.svg",
  20970. extra: 1369 / 1238,
  20971. bottom: 0.018
  20972. }
  20973. },
  20974. frontDressed: {
  20975. height: math.unit(8 + 8 / 12, "feet"),
  20976. weight: math.unit(130, "kg"),
  20977. name: "Front (Dressed)",
  20978. image: {
  20979. source: "./media/characters/seroko/front-dressed.svg",
  20980. extra: 1366 / 1275,
  20981. bottom: 0.03
  20982. }
  20983. },
  20984. },
  20985. [
  20986. {
  20987. name: "Normal",
  20988. height: math.unit(8 + 8 / 12, "feet"),
  20989. default: true
  20990. },
  20991. ]
  20992. ))
  20993. characterMakers.push(() => makeCharacter(
  20994. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20995. {
  20996. front: {
  20997. height: math.unit(5.5, "feet"),
  20998. weight: math.unit(160, "lb"),
  20999. name: "Front",
  21000. image: {
  21001. source: "./media/characters/quatzi/front.svg",
  21002. extra: 2346 / 2242,
  21003. bottom: 0.015
  21004. }
  21005. },
  21006. },
  21007. [
  21008. {
  21009. name: "Normal",
  21010. height: math.unit(5.5, "feet"),
  21011. default: true
  21012. },
  21013. {
  21014. name: "Big",
  21015. height: math.unit(7.7, "feet")
  21016. },
  21017. ]
  21018. ))
  21019. characterMakers.push(() => makeCharacter(
  21020. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21021. {
  21022. front: {
  21023. height: math.unit(5 + 11 / 12, "feet"),
  21024. weight: math.unit(180, "lb"),
  21025. name: "Front",
  21026. image: {
  21027. source: "./media/characters/sen/front.svg",
  21028. extra: 1321 / 1254,
  21029. bottom: 0.015
  21030. }
  21031. },
  21032. side: {
  21033. height: math.unit(5 + 11 / 12, "feet"),
  21034. weight: math.unit(180, "lb"),
  21035. name: "Side",
  21036. image: {
  21037. source: "./media/characters/sen/side.svg",
  21038. extra: 1321 / 1254,
  21039. bottom: 0.007
  21040. }
  21041. },
  21042. back: {
  21043. height: math.unit(5 + 11 / 12, "feet"),
  21044. weight: math.unit(180, "lb"),
  21045. name: "Back",
  21046. image: {
  21047. source: "./media/characters/sen/back.svg",
  21048. extra: 1321 / 1254
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(5 + 11 / 12, "feet"),
  21056. default: true
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21062. {
  21063. front: {
  21064. height: math.unit(166.6, "cm"),
  21065. weight: math.unit(66.6, "kg"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/fruity/front.svg",
  21069. extra: 1510 / 1386,
  21070. bottom: 0.04
  21071. }
  21072. },
  21073. back: {
  21074. height: math.unit(166.6, "cm"),
  21075. weight: math.unit(66.6, "lb"),
  21076. name: "Back",
  21077. image: {
  21078. source: "./media/characters/fruity/back.svg",
  21079. extra: 1563 / 1435,
  21080. bottom: 0.005
  21081. }
  21082. },
  21083. },
  21084. [
  21085. {
  21086. name: "Normal",
  21087. height: math.unit(166.6, "cm"),
  21088. default: true
  21089. },
  21090. {
  21091. name: "Demonic",
  21092. height: math.unit(166.6, "feet")
  21093. },
  21094. ]
  21095. ))
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21098. {
  21099. side: {
  21100. height: math.unit(10, "feet"),
  21101. weight: math.unit(500, "lb"),
  21102. name: "Side",
  21103. image: {
  21104. source: "./media/characters/zost/side.svg",
  21105. extra: 966 / 880,
  21106. bottom: 0.075
  21107. }
  21108. },
  21109. mawFront: {
  21110. height: math.unit(1.08, "meters"),
  21111. name: "Maw (Front)",
  21112. image: {
  21113. source: "./media/characters/zost/maw-front.svg"
  21114. }
  21115. },
  21116. mawSide: {
  21117. height: math.unit(2.66, "feet"),
  21118. name: "Maw (Side)",
  21119. image: {
  21120. source: "./media/characters/zost/maw-side.svg"
  21121. }
  21122. },
  21123. },
  21124. [
  21125. {
  21126. name: "Normal",
  21127. height: math.unit(10, "feet"),
  21128. default: true
  21129. },
  21130. ]
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21134. {
  21135. front: {
  21136. height: math.unit(5 + 4 / 12, "feet"),
  21137. weight: math.unit(120, "lb"),
  21138. name: "Front",
  21139. image: {
  21140. source: "./media/characters/luci/front.svg",
  21141. extra: 1985 / 1884,
  21142. bottom: 0.04
  21143. }
  21144. },
  21145. back: {
  21146. height: math.unit(5 + 4 / 12, "feet"),
  21147. weight: math.unit(120, "lb"),
  21148. name: "Back",
  21149. image: {
  21150. source: "./media/characters/luci/back.svg",
  21151. extra: 1892 / 1791,
  21152. bottom: 0.002
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(5 + 4 / 12, "feet"),
  21160. default: true
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21166. {
  21167. front: {
  21168. height: math.unit(1500, "feet"),
  21169. weight: math.unit(3.8e6, "tons"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/2th/front.svg",
  21173. extra: 3489 / 3350,
  21174. bottom: 0.1
  21175. }
  21176. },
  21177. foot: {
  21178. height: math.unit(461, "feet"),
  21179. name: "Foot",
  21180. image: {
  21181. source: "./media/characters/2th/foot.svg"
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "\"Micro\"",
  21188. height: math.unit(15 + 7 / 12, "feet")
  21189. },
  21190. {
  21191. name: "Normal",
  21192. height: math.unit(1500, "feet"),
  21193. default: true
  21194. },
  21195. {
  21196. name: "Macro",
  21197. height: math.unit(5000, "feet")
  21198. },
  21199. {
  21200. name: "Megamacro",
  21201. height: math.unit(15, "miles")
  21202. },
  21203. {
  21204. name: "Gigamacro",
  21205. height: math.unit(4000, "miles")
  21206. },
  21207. {
  21208. name: "Galactic",
  21209. height: math.unit(50, "AU")
  21210. },
  21211. ]
  21212. ))
  21213. characterMakers.push(() => makeCharacter(
  21214. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21215. {
  21216. front: {
  21217. height: math.unit(5 + 6 / 12, "feet"),
  21218. weight: math.unit(220, "lb"),
  21219. name: "Front",
  21220. image: {
  21221. source: "./media/characters/amethyst/front.svg",
  21222. extra: 2078 / 2040,
  21223. bottom: 0.045
  21224. }
  21225. },
  21226. back: {
  21227. height: math.unit(5 + 6 / 12, "feet"),
  21228. weight: math.unit(220, "lb"),
  21229. name: "Back",
  21230. image: {
  21231. source: "./media/characters/amethyst/back.svg",
  21232. extra: 2021 / 1989,
  21233. bottom: 0.02
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(5 + 6 / 12, "feet"),
  21241. default: true
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21247. {
  21248. front: {
  21249. height: math.unit(4 + 11 / 12, "feet"),
  21250. weight: math.unit(120, "lb"),
  21251. name: "Front",
  21252. image: {
  21253. source: "./media/characters/yumi-akiyama/front.svg",
  21254. extra: 1327 / 1235,
  21255. bottom: 0.02
  21256. }
  21257. },
  21258. back: {
  21259. height: math.unit(4 + 11 / 12, "feet"),
  21260. weight: math.unit(120, "lb"),
  21261. name: "Back",
  21262. image: {
  21263. source: "./media/characters/yumi-akiyama/back.svg",
  21264. extra: 1287 / 1245,
  21265. bottom: 0.002
  21266. }
  21267. },
  21268. },
  21269. [
  21270. {
  21271. name: "Galactic",
  21272. height: math.unit(50, "galaxies"),
  21273. default: true
  21274. },
  21275. {
  21276. name: "Universal",
  21277. height: math.unit(100, "universes")
  21278. },
  21279. ]
  21280. ))
  21281. characterMakers.push(() => makeCharacter(
  21282. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21283. {
  21284. front: {
  21285. height: math.unit(8, "feet"),
  21286. weight: math.unit(500, "lb"),
  21287. name: "Front",
  21288. image: {
  21289. source: "./media/characters/rifter-yrmori/front.svg",
  21290. extra: 1180 / 1125,
  21291. bottom: 0.02
  21292. }
  21293. },
  21294. back: {
  21295. height: math.unit(8, "feet"),
  21296. weight: math.unit(500, "lb"),
  21297. name: "Back",
  21298. image: {
  21299. source: "./media/characters/rifter-yrmori/back.svg",
  21300. extra: 1190 / 1145,
  21301. bottom: 0.001
  21302. }
  21303. },
  21304. wings: {
  21305. height: math.unit(7.75, "feet"),
  21306. weight: math.unit(500, "lb"),
  21307. name: "Wings",
  21308. image: {
  21309. source: "./media/characters/rifter-yrmori/wings.svg",
  21310. extra: 1357 / 1285
  21311. }
  21312. },
  21313. maw: {
  21314. height: math.unit(0.8, "feet"),
  21315. name: "Maw",
  21316. image: {
  21317. source: "./media/characters/rifter-yrmori/maw.svg"
  21318. }
  21319. },
  21320. mawfront: {
  21321. height: math.unit(1.45, "feet"),
  21322. name: "Maw (Front)",
  21323. image: {
  21324. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21325. }
  21326. },
  21327. },
  21328. [
  21329. {
  21330. name: "Normal",
  21331. height: math.unit(8, "feet"),
  21332. default: true
  21333. },
  21334. {
  21335. name: "Macro",
  21336. height: math.unit(42, "meters")
  21337. },
  21338. ]
  21339. ))
  21340. characterMakers.push(() => makeCharacter(
  21341. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21342. {
  21343. were: {
  21344. height: math.unit(25 + 6 / 12, "feet"),
  21345. weight: math.unit(10000, "lb"),
  21346. name: "Were",
  21347. image: {
  21348. source: "./media/characters/tahajin/were.svg",
  21349. extra: 801 / 770,
  21350. bottom: 0.042
  21351. }
  21352. },
  21353. aquatic: {
  21354. height: math.unit(6 + 4 / 12, "feet"),
  21355. weight: math.unit(160, "lb"),
  21356. name: "Aquatic",
  21357. image: {
  21358. source: "./media/characters/tahajin/aquatic.svg",
  21359. extra: 572 / 542,
  21360. bottom: 0.04
  21361. }
  21362. },
  21363. chow: {
  21364. height: math.unit(8 + 11 / 12, "feet"),
  21365. weight: math.unit(450, "lb"),
  21366. name: "Chow",
  21367. image: {
  21368. source: "./media/characters/tahajin/chow.svg",
  21369. extra: 660 / 640,
  21370. bottom: 0.015
  21371. }
  21372. },
  21373. demiNaga: {
  21374. height: math.unit(6 + 8 / 12, "feet"),
  21375. weight: math.unit(300, "lb"),
  21376. name: "Demi Naga",
  21377. image: {
  21378. source: "./media/characters/tahajin/demi-naga.svg",
  21379. extra: 643 / 615,
  21380. bottom: 0.1
  21381. }
  21382. },
  21383. data: {
  21384. height: math.unit(5, "inches"),
  21385. weight: math.unit(0.1, "lb"),
  21386. name: "Data",
  21387. image: {
  21388. source: "./media/characters/tahajin/data.svg"
  21389. }
  21390. },
  21391. fluu: {
  21392. height: math.unit(5 + 7 / 12, "feet"),
  21393. weight: math.unit(140, "lb"),
  21394. name: "Fluu",
  21395. image: {
  21396. source: "./media/characters/tahajin/fluu.svg",
  21397. extra: 628 / 592,
  21398. bottom: 0.02
  21399. }
  21400. },
  21401. starWarrior: {
  21402. height: math.unit(4 + 5 / 12, "feet"),
  21403. weight: math.unit(50, "lb"),
  21404. name: "Star Warrior",
  21405. image: {
  21406. source: "./media/characters/tahajin/star-warrior.svg"
  21407. }
  21408. },
  21409. },
  21410. [
  21411. {
  21412. name: "Normal",
  21413. height: math.unit(25 + 6 / 12, "feet"),
  21414. default: true
  21415. },
  21416. ]
  21417. ))
  21418. characterMakers.push(() => makeCharacter(
  21419. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21420. {
  21421. front: {
  21422. height: math.unit(8, "feet"),
  21423. weight: math.unit(350, "lb"),
  21424. name: "Front",
  21425. image: {
  21426. source: "./media/characters/gabira/front.svg",
  21427. extra: 608 / 580,
  21428. bottom: 0.03
  21429. }
  21430. },
  21431. back: {
  21432. height: math.unit(8, "feet"),
  21433. weight: math.unit(350, "lb"),
  21434. name: "Back",
  21435. image: {
  21436. source: "./media/characters/gabira/back.svg",
  21437. extra: 608 / 580,
  21438. bottom: 0.03
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(8, "feet"),
  21446. default: true
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21452. {
  21453. front: {
  21454. height: math.unit(5 + 3 / 12, "feet"),
  21455. weight: math.unit(137, "lb"),
  21456. name: "Front",
  21457. image: {
  21458. source: "./media/characters/sasha-katraine/front.svg",
  21459. bottom: 0.045
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Micro",
  21466. height: math.unit(5, "inches")
  21467. },
  21468. {
  21469. name: "Normal",
  21470. height: math.unit(5 + 3 / 12, "feet"),
  21471. default: true
  21472. },
  21473. ]
  21474. ))
  21475. characterMakers.push(() => makeCharacter(
  21476. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21477. {
  21478. side: {
  21479. height: math.unit(4, "inches"),
  21480. weight: math.unit(200, "grams"),
  21481. name: "Side",
  21482. image: {
  21483. source: "./media/characters/der/side.svg",
  21484. extra: 719 / 400,
  21485. bottom: 30.6 / 749.9187
  21486. }
  21487. },
  21488. },
  21489. [
  21490. {
  21491. name: "Micro",
  21492. height: math.unit(4, "inches"),
  21493. default: true
  21494. },
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21499. {
  21500. side: {
  21501. height: math.unit(30, "meters"),
  21502. weight: math.unit(700, "tonnes"),
  21503. name: "Side",
  21504. image: {
  21505. source: "./media/characters/fixerdragon/side.svg",
  21506. extra: (1293.0514 - 116.03) / 1106.86,
  21507. bottom: 116.03 / 1293.0514
  21508. }
  21509. },
  21510. },
  21511. [
  21512. {
  21513. name: "Planck",
  21514. height: math.unit(1.6e-35, "meters")
  21515. },
  21516. {
  21517. name: "Micro",
  21518. height: math.unit(0.4, "meters")
  21519. },
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(30, "meters"),
  21523. default: true
  21524. },
  21525. {
  21526. name: "Megamacro",
  21527. height: math.unit(1.2, "megameters")
  21528. },
  21529. {
  21530. name: "Teramacro",
  21531. height: math.unit(130, "terameters")
  21532. },
  21533. {
  21534. name: "Yottamacro",
  21535. height: math.unit(6200, "yottameters")
  21536. },
  21537. ]
  21538. ));
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(8, "feet"),
  21544. weight: math.unit(250, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/kite/front.svg",
  21548. extra: 2796 / 2659,
  21549. bottom: 0.002
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(8, "feet"),
  21557. default: true
  21558. },
  21559. {
  21560. name: "Macro",
  21561. height: math.unit(360, "feet")
  21562. },
  21563. {
  21564. name: "Megamacro",
  21565. height: math.unit(1500, "feet")
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21571. {
  21572. front: {
  21573. height: math.unit(5 + 10 / 12, "feet"),
  21574. weight: math.unit(150, "lb"),
  21575. name: "Front",
  21576. image: {
  21577. source: "./media/characters/poojawa-vynar/front.svg",
  21578. extra: (1506.1547 - 55) / 1356.6,
  21579. bottom: 55 / 1506.1547
  21580. }
  21581. },
  21582. frontTailless: {
  21583. height: math.unit(5 + 10 / 12, "feet"),
  21584. weight: math.unit(150, "lb"),
  21585. name: "Front (Tailless)",
  21586. image: {
  21587. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21588. extra: (1506.1547 - 55) / 1356.6,
  21589. bottom: 55 / 1506.1547
  21590. }
  21591. },
  21592. },
  21593. [
  21594. {
  21595. name: "Normal",
  21596. height: math.unit(5 + 10 / 12, "feet"),
  21597. default: true
  21598. },
  21599. ]
  21600. ))
  21601. characterMakers.push(() => makeCharacter(
  21602. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21603. {
  21604. front: {
  21605. height: math.unit(293, "meters"),
  21606. weight: math.unit(70400, "tons"),
  21607. name: "Front",
  21608. image: {
  21609. source: "./media/characters/violette/front.svg",
  21610. extra: 1227 / 1180,
  21611. bottom: 0.005
  21612. }
  21613. },
  21614. back: {
  21615. height: math.unit(293, "meters"),
  21616. weight: math.unit(70400, "tons"),
  21617. name: "Back",
  21618. image: {
  21619. source: "./media/characters/violette/back.svg",
  21620. extra: 1227 / 1180,
  21621. bottom: 0.005
  21622. }
  21623. },
  21624. },
  21625. [
  21626. {
  21627. name: "Macro",
  21628. height: math.unit(293, "meters"),
  21629. default: true
  21630. },
  21631. ]
  21632. ))
  21633. characterMakers.push(() => makeCharacter(
  21634. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21635. {
  21636. front: {
  21637. height: math.unit(1050, "feet"),
  21638. weight: math.unit(200000, "tons"),
  21639. name: "Front",
  21640. image: {
  21641. source: "./media/characters/alessandra/front.svg",
  21642. extra: 960 / 912,
  21643. bottom: 0.06
  21644. }
  21645. },
  21646. },
  21647. [
  21648. {
  21649. name: "Macro",
  21650. height: math.unit(1050, "feet")
  21651. },
  21652. {
  21653. name: "Macro+",
  21654. height: math.unit(900, "meters"),
  21655. default: true
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21661. {
  21662. front: {
  21663. height: math.unit(5, "feet"),
  21664. weight: math.unit(187, "lb"),
  21665. name: "Front",
  21666. image: {
  21667. source: "./media/characters/person/front.svg",
  21668. extra: 3087 / 2945,
  21669. bottom: 91 / 3181
  21670. }
  21671. },
  21672. },
  21673. [
  21674. {
  21675. name: "Micro",
  21676. height: math.unit(3, "inches")
  21677. },
  21678. {
  21679. name: "Normal",
  21680. height: math.unit(5, "feet"),
  21681. default: true
  21682. },
  21683. {
  21684. name: "Macro",
  21685. height: math.unit(90, "feet")
  21686. },
  21687. {
  21688. name: "Max Size",
  21689. height: math.unit(280, "feet")
  21690. },
  21691. ]
  21692. ))
  21693. characterMakers.push(() => makeCharacter(
  21694. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21695. {
  21696. front: {
  21697. height: math.unit(4.5, "meters"),
  21698. weight: math.unit(3200, "lb"),
  21699. name: "Front",
  21700. image: {
  21701. source: "./media/characters/ty/front.svg",
  21702. extra: 1038 / 960,
  21703. bottom: 31.156 / 1068
  21704. }
  21705. },
  21706. back: {
  21707. height: math.unit(4.5, "meters"),
  21708. weight: math.unit(3200, "lb"),
  21709. name: "Back",
  21710. image: {
  21711. source: "./media/characters/ty/back.svg",
  21712. extra: 1044 / 966,
  21713. bottom: 7.48 / 1049
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(4.5, "meters"),
  21721. default: true
  21722. },
  21723. ]
  21724. ))
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21727. {
  21728. front: {
  21729. height: math.unit(5 + 4 / 12, "feet"),
  21730. weight: math.unit(115, "lb"),
  21731. name: "Front",
  21732. image: {
  21733. source: "./media/characters/rocky/front.svg",
  21734. extra: 1012 / 975,
  21735. bottom: 54 / 1066
  21736. }
  21737. },
  21738. },
  21739. [
  21740. {
  21741. name: "Normal",
  21742. height: math.unit(5 + 4 / 12, "feet"),
  21743. default: true
  21744. },
  21745. ]
  21746. ))
  21747. characterMakers.push(() => makeCharacter(
  21748. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21749. {
  21750. upright: {
  21751. height: math.unit(6, "meters"),
  21752. weight: math.unit(4000, "kg"),
  21753. name: "Upright",
  21754. image: {
  21755. source: "./media/characters/ruin/upright.svg",
  21756. extra: 668 / 661,
  21757. bottom: 42 / 799.8396
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Normal",
  21764. height: math.unit(6, "meters"),
  21765. default: true
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(5, "feet"),
  21774. weight: math.unit(106, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/robin/front.svg",
  21778. extra: 862 / 799,
  21779. bottom: 42.4 / 914.8856
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Normal",
  21786. height: math.unit(5, "feet"),
  21787. default: true
  21788. },
  21789. ]
  21790. ))
  21791. characterMakers.push(() => makeCharacter(
  21792. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21793. {
  21794. side: {
  21795. height: math.unit(3, "feet"),
  21796. weight: math.unit(225, "lb"),
  21797. name: "Side",
  21798. image: {
  21799. source: "./media/characters/saian/side.svg",
  21800. extra: 566 / 356,
  21801. bottom: 79.7 / 643
  21802. }
  21803. },
  21804. maw: {
  21805. height: math.unit(2.85, "feet"),
  21806. name: "Maw",
  21807. image: {
  21808. source: "./media/characters/saian/maw.svg"
  21809. }
  21810. },
  21811. },
  21812. [
  21813. {
  21814. name: "Normal",
  21815. height: math.unit(3, "feet"),
  21816. default: true
  21817. },
  21818. ]
  21819. ))
  21820. characterMakers.push(() => makeCharacter(
  21821. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21822. {
  21823. side: {
  21824. height: math.unit(8, "feet"),
  21825. weight: math.unit(300, "lb"),
  21826. name: "Side",
  21827. image: {
  21828. source: "./media/characters/equus-silvermane/side.svg",
  21829. extra: 2176 / 2050,
  21830. bottom: 65.7 / 2245
  21831. }
  21832. },
  21833. front: {
  21834. height: math.unit(8, "feet"),
  21835. weight: math.unit(300, "lb"),
  21836. name: "Front",
  21837. image: {
  21838. source: "./media/characters/equus-silvermane/front.svg",
  21839. extra: 4633 / 4400,
  21840. bottom: 71.3 / 4706.915
  21841. }
  21842. },
  21843. sideStepping: {
  21844. height: math.unit(8, "feet"),
  21845. weight: math.unit(300, "lb"),
  21846. name: "Side (Stepping)",
  21847. image: {
  21848. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21849. extra: 1968 / 1860,
  21850. bottom: 16.4 / 1989
  21851. }
  21852. },
  21853. },
  21854. [
  21855. {
  21856. name: "Normal",
  21857. height: math.unit(8, "feet")
  21858. },
  21859. {
  21860. name: "Minimacro",
  21861. height: math.unit(75, "feet"),
  21862. default: true
  21863. },
  21864. {
  21865. name: "Macro",
  21866. height: math.unit(150, "feet")
  21867. },
  21868. {
  21869. name: "Macro+",
  21870. height: math.unit(1000, "feet")
  21871. },
  21872. {
  21873. name: "Megamacro",
  21874. height: math.unit(1, "mile")
  21875. },
  21876. ]
  21877. ))
  21878. characterMakers.push(() => makeCharacter(
  21879. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21880. {
  21881. side: {
  21882. height: math.unit(20, "feet"),
  21883. weight: math.unit(30000, "kg"),
  21884. name: "Side",
  21885. image: {
  21886. source: "./media/characters/windar/side.svg",
  21887. extra: 1491 / 1248,
  21888. bottom: 82.56 / 1568
  21889. }
  21890. },
  21891. },
  21892. [
  21893. {
  21894. name: "Normal",
  21895. height: math.unit(20, "feet"),
  21896. default: true
  21897. },
  21898. ]
  21899. ))
  21900. characterMakers.push(() => makeCharacter(
  21901. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21902. {
  21903. side: {
  21904. height: math.unit(15.66, "feet"),
  21905. weight: math.unit(150, "lb"),
  21906. name: "Side",
  21907. image: {
  21908. source: "./media/characters/melody/side.svg",
  21909. extra: 1097 / 944,
  21910. bottom: 11.8 / 1109
  21911. }
  21912. },
  21913. sideOutfit: {
  21914. height: math.unit(15.66, "feet"),
  21915. weight: math.unit(150, "lb"),
  21916. name: "Side (Outfit)",
  21917. image: {
  21918. source: "./media/characters/melody/side-outfit.svg",
  21919. extra: 1097 / 944,
  21920. bottom: 11.8 / 1109
  21921. }
  21922. },
  21923. },
  21924. [
  21925. {
  21926. name: "Normal",
  21927. height: math.unit(15.66, "feet"),
  21928. default: true
  21929. },
  21930. ]
  21931. ))
  21932. characterMakers.push(() => makeCharacter(
  21933. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21934. {
  21935. front: {
  21936. height: math.unit(8, "feet"),
  21937. weight: math.unit(325, "lb"),
  21938. name: "Front",
  21939. image: {
  21940. source: "./media/characters/windera/front.svg",
  21941. extra: 3180 / 2845,
  21942. bottom: 178 / 3365
  21943. }
  21944. },
  21945. },
  21946. [
  21947. {
  21948. name: "Normal",
  21949. height: math.unit(8, "feet"),
  21950. default: true
  21951. },
  21952. ]
  21953. ))
  21954. characterMakers.push(() => makeCharacter(
  21955. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21956. {
  21957. front: {
  21958. height: math.unit(28.75, "feet"),
  21959. weight: math.unit(2000, "kg"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/sonear/front.svg",
  21963. extra: 1041.1 / 964.9,
  21964. bottom: 53.7 / 1096.6
  21965. }
  21966. },
  21967. },
  21968. [
  21969. {
  21970. name: "Normal",
  21971. height: math.unit(28.75, "feet"),
  21972. default: true
  21973. },
  21974. ]
  21975. ))
  21976. characterMakers.push(() => makeCharacter(
  21977. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21978. {
  21979. side: {
  21980. height: math.unit(25.5, "feet"),
  21981. weight: math.unit(23000, "kg"),
  21982. name: "Side",
  21983. image: {
  21984. source: "./media/characters/kanara/side.svg"
  21985. }
  21986. },
  21987. },
  21988. [
  21989. {
  21990. name: "Normal",
  21991. height: math.unit(25.5, "feet"),
  21992. default: true
  21993. },
  21994. ]
  21995. ))
  21996. characterMakers.push(() => makeCharacter(
  21997. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21998. {
  21999. side: {
  22000. height: math.unit(10, "feet"),
  22001. weight: math.unit(1000, "kg"),
  22002. name: "Side",
  22003. image: {
  22004. source: "./media/characters/ereus/side.svg",
  22005. extra: 1157 / 959,
  22006. bottom: 153 / 1312.5
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Normal",
  22013. height: math.unit(10, "feet"),
  22014. default: true
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22020. {
  22021. side: {
  22022. height: math.unit(4.5, "feet"),
  22023. weight: math.unit(500, "lb"),
  22024. name: "Side",
  22025. image: {
  22026. source: "./media/characters/e-ter/side.svg",
  22027. extra: 1550 / 1248,
  22028. bottom: 146 / 1694
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Normal",
  22035. height: math.unit(4.5, "feet"),
  22036. default: true
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22042. {
  22043. side: {
  22044. height: math.unit(9.7, "feet"),
  22045. weight: math.unit(4000, "kg"),
  22046. name: "Side",
  22047. image: {
  22048. source: "./media/characters/yamie/side.svg"
  22049. }
  22050. },
  22051. },
  22052. [
  22053. {
  22054. name: "Normal",
  22055. height: math.unit(9.7, "feet"),
  22056. default: true
  22057. },
  22058. ]
  22059. ))
  22060. characterMakers.push(() => makeCharacter(
  22061. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22062. {
  22063. front: {
  22064. height: math.unit(50, "feet"),
  22065. weight: math.unit(50000, "kg"),
  22066. name: "Front",
  22067. image: {
  22068. source: "./media/characters/anders/front.svg",
  22069. extra: 570 / 539,
  22070. bottom: 14.7 / 586.7
  22071. }
  22072. },
  22073. },
  22074. [
  22075. {
  22076. name: "Large",
  22077. height: math.unit(50, "feet")
  22078. },
  22079. {
  22080. name: "Macro",
  22081. height: math.unit(2000, "feet"),
  22082. default: true
  22083. },
  22084. {
  22085. name: "Megamacro",
  22086. height: math.unit(12, "miles")
  22087. },
  22088. ]
  22089. ))
  22090. characterMakers.push(() => makeCharacter(
  22091. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22092. {
  22093. front: {
  22094. height: math.unit(7 + 2 / 12, "feet"),
  22095. weight: math.unit(300, "lb"),
  22096. name: "Front",
  22097. image: {
  22098. source: "./media/characters/reban/front.svg",
  22099. extra: 516 / 487,
  22100. bottom: 42.82 / 558.356
  22101. }
  22102. },
  22103. dick: {
  22104. height: math.unit(7 / 5, "feet"),
  22105. name: "Dick",
  22106. image: {
  22107. source: "./media/characters/reban/dick.svg"
  22108. }
  22109. },
  22110. },
  22111. [
  22112. {
  22113. name: "Natural Height",
  22114. height: math.unit(7 + 2 / 12, "feet")
  22115. },
  22116. {
  22117. name: "Macro",
  22118. height: math.unit(500, "feet"),
  22119. default: true
  22120. },
  22121. {
  22122. name: "Canon Height",
  22123. height: math.unit(50, "AU")
  22124. },
  22125. ]
  22126. ))
  22127. characterMakers.push(() => makeCharacter(
  22128. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22129. {
  22130. front: {
  22131. height: math.unit(6, "feet"),
  22132. weight: math.unit(150, "lb"),
  22133. name: "Front",
  22134. image: {
  22135. source: "./media/characters/terrance-keayes/front.svg",
  22136. extra: 1.005,
  22137. bottom: 151 / 1615
  22138. }
  22139. },
  22140. side: {
  22141. height: math.unit(6, "feet"),
  22142. weight: math.unit(150, "lb"),
  22143. name: "Side",
  22144. image: {
  22145. source: "./media/characters/terrance-keayes/side.svg",
  22146. extra: 1.005,
  22147. bottom: 129.4 / 1544
  22148. }
  22149. },
  22150. back: {
  22151. height: math.unit(6, "feet"),
  22152. weight: math.unit(150, "lb"),
  22153. name: "Back",
  22154. image: {
  22155. source: "./media/characters/terrance-keayes/back.svg",
  22156. extra: 1.005,
  22157. bottom: 58.4 / 1557.3
  22158. }
  22159. },
  22160. dick: {
  22161. height: math.unit(6 * 0.208, "feet"),
  22162. name: "Dick",
  22163. image: {
  22164. source: "./media/characters/terrance-keayes/dick.svg"
  22165. }
  22166. },
  22167. },
  22168. [
  22169. {
  22170. name: "Canon Height",
  22171. height: math.unit(35, "miles"),
  22172. default: true
  22173. },
  22174. ]
  22175. ))
  22176. characterMakers.push(() => makeCharacter(
  22177. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22178. {
  22179. front: {
  22180. height: math.unit(6, "feet"),
  22181. weight: math.unit(150, "lb"),
  22182. name: "Front",
  22183. image: {
  22184. source: "./media/characters/ofelia/front.svg",
  22185. extra: 546 / 541,
  22186. bottom: 39 / 583
  22187. }
  22188. },
  22189. back: {
  22190. height: math.unit(6, "feet"),
  22191. weight: math.unit(150, "lb"),
  22192. name: "Back",
  22193. image: {
  22194. source: "./media/characters/ofelia/back.svg",
  22195. extra: 564 / 559.5,
  22196. bottom: 8.69 / 573.02
  22197. }
  22198. },
  22199. maw: {
  22200. height: math.unit(1, "feet"),
  22201. name: "Maw",
  22202. image: {
  22203. source: "./media/characters/ofelia/maw.svg"
  22204. }
  22205. },
  22206. foot: {
  22207. height: math.unit(1.949, "feet"),
  22208. name: "Foot",
  22209. image: {
  22210. source: "./media/characters/ofelia/foot.svg"
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Canon Height",
  22217. height: math.unit(2000, "miles"),
  22218. default: true
  22219. },
  22220. ]
  22221. ))
  22222. characterMakers.push(() => makeCharacter(
  22223. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22224. {
  22225. front: {
  22226. height: math.unit(6, "feet"),
  22227. weight: math.unit(150, "lb"),
  22228. name: "Front",
  22229. image: {
  22230. source: "./media/characters/samuel/front.svg",
  22231. extra: 265 / 258,
  22232. bottom: 2 / 266.1566
  22233. }
  22234. },
  22235. },
  22236. [
  22237. {
  22238. name: "Macro",
  22239. height: math.unit(100, "feet"),
  22240. default: true
  22241. },
  22242. {
  22243. name: "Full Size",
  22244. height: math.unit(1000, "miles")
  22245. },
  22246. ]
  22247. ))
  22248. characterMakers.push(() => makeCharacter(
  22249. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22250. {
  22251. front: {
  22252. height: math.unit(6, "feet"),
  22253. weight: math.unit(300, "lb"),
  22254. name: "Front",
  22255. image: {
  22256. source: "./media/characters/beishir-kiel/front.svg",
  22257. extra: 569 / 547,
  22258. bottom: 41.9 / 609
  22259. }
  22260. },
  22261. maw: {
  22262. height: math.unit(6 * 0.202, "feet"),
  22263. name: "Maw",
  22264. image: {
  22265. source: "./media/characters/beishir-kiel/maw.svg"
  22266. }
  22267. },
  22268. },
  22269. [
  22270. {
  22271. name: "Macro",
  22272. height: math.unit(300, "feet"),
  22273. default: true
  22274. },
  22275. ]
  22276. ))
  22277. characterMakers.push(() => makeCharacter(
  22278. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22279. {
  22280. front: {
  22281. height: math.unit(5 + 7/12, "feet"),
  22282. weight: math.unit(120, "lb"),
  22283. name: "Front",
  22284. image: {
  22285. source: "./media/characters/logan-grey/front.svg",
  22286. extra: 1836/1738,
  22287. bottom: 108/1944
  22288. }
  22289. },
  22290. back: {
  22291. height: math.unit(5 + 7/12, "feet"),
  22292. weight: math.unit(120, "lb"),
  22293. name: "Back",
  22294. image: {
  22295. source: "./media/characters/logan-grey/back.svg",
  22296. extra: 1880/1794,
  22297. bottom: 24/1904
  22298. }
  22299. },
  22300. frontSfw: {
  22301. height: math.unit(5 + 7/12, "feet"),
  22302. weight: math.unit(120, "lb"),
  22303. name: "Front (SFW)",
  22304. image: {
  22305. source: "./media/characters/logan-grey/front-sfw.svg",
  22306. extra: 1836/1738,
  22307. bottom: 108/1944
  22308. }
  22309. },
  22310. backSfw: {
  22311. height: math.unit(5 + 7/12, "feet"),
  22312. weight: math.unit(120, "lb"),
  22313. name: "Back (SFW)",
  22314. image: {
  22315. source: "./media/characters/logan-grey/back-sfw.svg",
  22316. extra: 1880/1794,
  22317. bottom: 24/1904
  22318. }
  22319. },
  22320. hands: {
  22321. height: math.unit(0.84, "feet"),
  22322. name: "Hands",
  22323. image: {
  22324. source: "./media/characters/logan-grey/hands.svg"
  22325. }
  22326. },
  22327. paws: {
  22328. height: math.unit(0.72, "feet"),
  22329. name: "Paws",
  22330. image: {
  22331. source: "./media/characters/logan-grey/paws.svg"
  22332. }
  22333. },
  22334. cock: {
  22335. height: math.unit(1.45, "feet"),
  22336. name: "Cock",
  22337. image: {
  22338. source: "./media/characters/logan-grey/cock.svg"
  22339. }
  22340. },
  22341. cockAlt: {
  22342. height: math.unit(1.437, "feet"),
  22343. name: "Cock (alt)",
  22344. image: {
  22345. source: "./media/characters/logan-grey/cock-alt.svg"
  22346. }
  22347. },
  22348. },
  22349. [
  22350. {
  22351. name: "Normal",
  22352. height: math.unit(5 + 8 / 12, "feet")
  22353. },
  22354. {
  22355. name: "The 500 Foot Femboy",
  22356. height: math.unit(500, "feet"),
  22357. default: true
  22358. },
  22359. {
  22360. name: "Megmacro",
  22361. height: math.unit(20, "miles")
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(8 + 2 / 12, "feet"),
  22370. weight: math.unit(275, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/draganta/front.svg",
  22374. extra: 1177 / 1135,
  22375. bottom: 33.46 / 1212.1
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Normal",
  22382. height: math.unit(8 + 6 / 12, "feet"),
  22383. default: true
  22384. },
  22385. {
  22386. name: "Macro",
  22387. height: math.unit(150, "feet")
  22388. },
  22389. {
  22390. name: "Megamacro",
  22391. height: math.unit(1000, "miles")
  22392. },
  22393. ]
  22394. ))
  22395. characterMakers.push(() => makeCharacter(
  22396. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22397. {
  22398. front: {
  22399. height: math.unit(1.72, "m"),
  22400. weight: math.unit(80, "lb"),
  22401. name: "Front",
  22402. image: {
  22403. source: "./media/characters/voski/front.svg",
  22404. extra: 2076.22 / 2022.4,
  22405. bottom: 102.7 / 2177.3866
  22406. }
  22407. },
  22408. frontNsfw: {
  22409. height: math.unit(1.72, "m"),
  22410. weight: math.unit(80, "lb"),
  22411. name: "Front (NSFW)",
  22412. image: {
  22413. source: "./media/characters/voski/front-nsfw.svg",
  22414. extra: 2076.22 / 2022.4,
  22415. bottom: 102.7 / 2177.3866
  22416. }
  22417. },
  22418. back: {
  22419. height: math.unit(1.72, "m"),
  22420. weight: math.unit(80, "lb"),
  22421. name: "Back",
  22422. image: {
  22423. source: "./media/characters/voski/back.svg",
  22424. extra: 2104 / 2051,
  22425. bottom: 10.45 / 2113.63
  22426. }
  22427. },
  22428. },
  22429. [
  22430. {
  22431. name: "Normal",
  22432. height: math.unit(1.72, "m")
  22433. },
  22434. {
  22435. name: "Macro",
  22436. height: math.unit(55, "m"),
  22437. default: true
  22438. },
  22439. {
  22440. name: "Macro+",
  22441. height: math.unit(300, "m")
  22442. },
  22443. {
  22444. name: "Macro++",
  22445. height: math.unit(700, "m")
  22446. },
  22447. {
  22448. name: "Macro+++",
  22449. height: math.unit(4500, "m")
  22450. },
  22451. {
  22452. name: "Macro++++",
  22453. height: math.unit(45, "km")
  22454. },
  22455. {
  22456. name: "Macro+++++",
  22457. height: math.unit(1220, "km")
  22458. },
  22459. ]
  22460. ))
  22461. characterMakers.push(() => makeCharacter(
  22462. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22463. {
  22464. front: {
  22465. height: math.unit(2.3, "m"),
  22466. weight: math.unit(304, "kg"),
  22467. name: "Front",
  22468. image: {
  22469. source: "./media/characters/icowom-lee/front.svg",
  22470. extra: 985 / 955,
  22471. bottom: 25.4 / 1012
  22472. }
  22473. },
  22474. fronttentacles: {
  22475. height: math.unit(2.3, "m"),
  22476. weight: math.unit(304, "kg"),
  22477. name: "Front-tentacles",
  22478. image: {
  22479. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22480. extra: 985 / 955,
  22481. bottom: 25.4 / 1012
  22482. }
  22483. },
  22484. back: {
  22485. height: math.unit(2.3, "m"),
  22486. weight: math.unit(304, "kg"),
  22487. name: "Back",
  22488. image: {
  22489. source: "./media/characters/icowom-lee/back.svg",
  22490. extra: 975 / 954,
  22491. bottom: 9.5 / 985
  22492. }
  22493. },
  22494. backtentacles: {
  22495. height: math.unit(2.3, "m"),
  22496. weight: math.unit(304, "kg"),
  22497. name: "Back-tentacles",
  22498. image: {
  22499. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22500. extra: 975 / 954,
  22501. bottom: 9.5 / 985
  22502. }
  22503. },
  22504. frontDressed: {
  22505. height: math.unit(2.3, "m"),
  22506. weight: math.unit(304, "kg"),
  22507. name: "Front (Dressed)",
  22508. image: {
  22509. source: "./media/characters/icowom-lee/front-dressed.svg",
  22510. extra: 3076 / 2933,
  22511. bottom: 51.4 / 3125.1889
  22512. }
  22513. },
  22514. rump: {
  22515. height: math.unit(0.776, "meters"),
  22516. name: "Rump",
  22517. image: {
  22518. source: "./media/characters/icowom-lee/rump.svg"
  22519. }
  22520. },
  22521. genitals: {
  22522. height: math.unit(0.78, "meters"),
  22523. name: "Genitals",
  22524. image: {
  22525. source: "./media/characters/icowom-lee/genitals.svg"
  22526. }
  22527. },
  22528. },
  22529. [
  22530. {
  22531. name: "Normal",
  22532. height: math.unit(2.3, "meters"),
  22533. default: true
  22534. },
  22535. {
  22536. name: "Macro",
  22537. height: math.unit(94, "meters"),
  22538. default: true
  22539. },
  22540. ]
  22541. ))
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22544. {
  22545. front: {
  22546. height: math.unit(22, "meters"),
  22547. weight: math.unit(21000, "kg"),
  22548. name: "Front",
  22549. image: {
  22550. source: "./media/characters/shock-diamond/front.svg",
  22551. extra: 2204 / 2053,
  22552. bottom: 65 / 2239.47
  22553. }
  22554. },
  22555. frontNude: {
  22556. height: math.unit(22, "meters"),
  22557. weight: math.unit(21000, "kg"),
  22558. name: "Front (Nude)",
  22559. image: {
  22560. source: "./media/characters/shock-diamond/front-nude.svg",
  22561. extra: 2514 / 2285,
  22562. bottom: 13 / 2527.56
  22563. }
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "Normal",
  22569. height: math.unit(3, "meters")
  22570. },
  22571. {
  22572. name: "Macro",
  22573. height: math.unit(22, "meters"),
  22574. default: true
  22575. },
  22576. ]
  22577. ))
  22578. characterMakers.push(() => makeCharacter(
  22579. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22580. {
  22581. front: {
  22582. height: math.unit(5 + 4 / 12, "feet"),
  22583. weight: math.unit(120, "lb"),
  22584. name: "Front",
  22585. image: {
  22586. source: "./media/characters/rory/front.svg",
  22587. extra: 1318/1241,
  22588. bottom: 42/1360
  22589. }
  22590. },
  22591. back: {
  22592. height: math.unit(5 + 4 / 12, "feet"),
  22593. weight: math.unit(120, "lb"),
  22594. name: "Back",
  22595. image: {
  22596. source: "./media/characters/rory/back.svg",
  22597. extra: 1318/1241,
  22598. bottom: 42/1360
  22599. }
  22600. },
  22601. butt: {
  22602. height: math.unit(1.74, "feet"),
  22603. name: "Butt",
  22604. image: {
  22605. source: "./media/characters/rory/butt.svg"
  22606. }
  22607. },
  22608. dick: {
  22609. height: math.unit(1.02, "feet"),
  22610. name: "Dick",
  22611. image: {
  22612. source: "./media/characters/rory/dick.svg"
  22613. }
  22614. },
  22615. paws: {
  22616. height: math.unit(1, "feet"),
  22617. name: "Paws",
  22618. image: {
  22619. source: "./media/characters/rory/paws.svg"
  22620. }
  22621. },
  22622. frontAlt: {
  22623. height: math.unit(5 + 4 / 12, "feet"),
  22624. weight: math.unit(120, "lb"),
  22625. name: "Front (Alt)",
  22626. image: {
  22627. source: "./media/characters/rory/front-alt.svg",
  22628. extra: 589 / 556,
  22629. bottom: 45.7 / 635.76
  22630. }
  22631. },
  22632. frontAltNude: {
  22633. height: math.unit(5 + 4 / 12, "feet"),
  22634. weight: math.unit(120, "lb"),
  22635. name: "Front (Alt, Nude)",
  22636. image: {
  22637. source: "./media/characters/rory/front-alt-nude.svg",
  22638. extra: 589 / 556,
  22639. bottom: 45.7 / 635.76
  22640. }
  22641. },
  22642. side: {
  22643. height: math.unit(5 + 4 / 12, "feet"),
  22644. weight: math.unit(120, "lb"),
  22645. name: "Side",
  22646. image: {
  22647. source: "./media/characters/rory/side.svg",
  22648. extra: 597 / 564,
  22649. bottom: 55 / 653
  22650. }
  22651. },
  22652. backAlt: {
  22653. height: math.unit(5 + 4 / 12, "feet"),
  22654. weight: math.unit(120, "lb"),
  22655. name: "Back (Alt)",
  22656. image: {
  22657. source: "./media/characters/rory/back-alt.svg",
  22658. extra: 620 / 585,
  22659. bottom: 8.86 / 630.43
  22660. }
  22661. },
  22662. dickAlt: {
  22663. height: math.unit(0.86, "feet"),
  22664. name: "Dick (Alt)",
  22665. image: {
  22666. source: "./media/characters/rory/dick-alt.svg"
  22667. }
  22668. },
  22669. },
  22670. [
  22671. {
  22672. name: "Normal",
  22673. height: math.unit(5 + 4 / 12, "feet"),
  22674. default: true
  22675. },
  22676. {
  22677. name: "Macro",
  22678. height: math.unit(100, "feet")
  22679. },
  22680. {
  22681. name: "Macro+",
  22682. height: math.unit(140, "feet")
  22683. },
  22684. {
  22685. name: "Macro++",
  22686. height: math.unit(300, "feet")
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22692. {
  22693. front: {
  22694. height: math.unit(5 + 9 / 12, "feet"),
  22695. weight: math.unit(190, "lb"),
  22696. name: "Front",
  22697. image: {
  22698. source: "./media/characters/sprisk/front.svg",
  22699. extra: 1225 / 1180,
  22700. bottom: 42.7 / 1266.4
  22701. }
  22702. },
  22703. frontNsfw: {
  22704. height: math.unit(5 + 9 / 12, "feet"),
  22705. weight: math.unit(190, "lb"),
  22706. name: "Front (NSFW)",
  22707. image: {
  22708. source: "./media/characters/sprisk/front-nsfw.svg",
  22709. extra: 1225 / 1180,
  22710. bottom: 42.7 / 1266.4
  22711. }
  22712. },
  22713. back: {
  22714. height: math.unit(5 + 9 / 12, "feet"),
  22715. weight: math.unit(190, "lb"),
  22716. name: "Back",
  22717. image: {
  22718. source: "./media/characters/sprisk/back.svg",
  22719. extra: 1247 / 1200,
  22720. bottom: 5.6 / 1253.04
  22721. }
  22722. },
  22723. },
  22724. [
  22725. {
  22726. name: "Tiny",
  22727. height: math.unit(2, "inches")
  22728. },
  22729. {
  22730. name: "Normal",
  22731. height: math.unit(5 + 9 / 12, "feet"),
  22732. default: true
  22733. },
  22734. {
  22735. name: "Mini Macro",
  22736. height: math.unit(18, "feet")
  22737. },
  22738. {
  22739. name: "Macro",
  22740. height: math.unit(100, "feet")
  22741. },
  22742. {
  22743. name: "MACRO",
  22744. height: math.unit(50, "miles")
  22745. },
  22746. {
  22747. name: "M A C R O",
  22748. height: math.unit(300, "miles")
  22749. },
  22750. ]
  22751. ))
  22752. characterMakers.push(() => makeCharacter(
  22753. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22754. {
  22755. side: {
  22756. height: math.unit(15.6, "meters"),
  22757. weight: math.unit(700000, "kg"),
  22758. name: "Side",
  22759. image: {
  22760. source: "./media/characters/bunsen/side.svg",
  22761. extra: 1644 / 358
  22762. }
  22763. },
  22764. foot: {
  22765. height: math.unit(1.611 * 1644 / 358, "meter"),
  22766. name: "Foot",
  22767. image: {
  22768. source: "./media/characters/bunsen/foot.svg"
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Small",
  22775. height: math.unit(10, "feet")
  22776. },
  22777. {
  22778. name: "Normal",
  22779. height: math.unit(15.6, "meters"),
  22780. default: true
  22781. },
  22782. ]
  22783. ))
  22784. characterMakers.push(() => makeCharacter(
  22785. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22786. {
  22787. front: {
  22788. height: math.unit(4 + 11 / 12, "feet"),
  22789. weight: math.unit(140, "lb"),
  22790. name: "Front",
  22791. image: {
  22792. source: "./media/characters/sesh/front.svg",
  22793. extra: 3420 / 3231,
  22794. bottom: 72 / 3949.5
  22795. }
  22796. },
  22797. },
  22798. [
  22799. {
  22800. name: "Normal",
  22801. height: math.unit(4 + 11 / 12, "feet")
  22802. },
  22803. {
  22804. name: "Grown",
  22805. height: math.unit(15, "feet"),
  22806. default: true
  22807. },
  22808. {
  22809. name: "Macro",
  22810. height: math.unit(1500, "feet")
  22811. },
  22812. {
  22813. name: "Megamacro",
  22814. height: math.unit(30, "miles")
  22815. },
  22816. {
  22817. name: "Continental",
  22818. height: math.unit(3000, "miles")
  22819. },
  22820. {
  22821. name: "Gravity Mass",
  22822. height: math.unit(300000, "miles")
  22823. },
  22824. {
  22825. name: "Planet Buster",
  22826. height: math.unit(30000000, "miles")
  22827. },
  22828. {
  22829. name: "Big",
  22830. height: math.unit(3000000000, "miles")
  22831. },
  22832. ]
  22833. ))
  22834. characterMakers.push(() => makeCharacter(
  22835. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22836. {
  22837. front: {
  22838. height: math.unit(9, "feet"),
  22839. weight: math.unit(350, "lb"),
  22840. name: "Front",
  22841. image: {
  22842. source: "./media/characters/pepper/front.svg",
  22843. extra: 1448 / 1312,
  22844. bottom: 9.4 / 1457.88
  22845. }
  22846. },
  22847. back: {
  22848. height: math.unit(9, "feet"),
  22849. weight: math.unit(350, "lb"),
  22850. name: "Back",
  22851. image: {
  22852. source: "./media/characters/pepper/back.svg",
  22853. extra: 1423 / 1300,
  22854. bottom: 4.6 / 1429
  22855. }
  22856. },
  22857. maw: {
  22858. height: math.unit(0.932, "feet"),
  22859. name: "Maw",
  22860. image: {
  22861. source: "./media/characters/pepper/maw.svg"
  22862. }
  22863. },
  22864. },
  22865. [
  22866. {
  22867. name: "Normal",
  22868. height: math.unit(9, "feet"),
  22869. default: true
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22875. {
  22876. front: {
  22877. height: math.unit(6, "feet"),
  22878. weight: math.unit(150, "lb"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/maelstrom/front.svg",
  22882. extra: 2100 / 1883,
  22883. bottom: 94 / 2196.7
  22884. }
  22885. },
  22886. },
  22887. [
  22888. {
  22889. name: "Less Kaiju",
  22890. height: math.unit(200, "feet")
  22891. },
  22892. {
  22893. name: "Kaiju",
  22894. height: math.unit(400, "feet"),
  22895. default: true
  22896. },
  22897. {
  22898. name: "Kaiju-er",
  22899. height: math.unit(600, "feet")
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22905. {
  22906. front: {
  22907. height: math.unit(6 + 5 / 12, "feet"),
  22908. weight: math.unit(180, "lb"),
  22909. name: "Front",
  22910. image: {
  22911. source: "./media/characters/lexir/front.svg",
  22912. extra: 180 / 172,
  22913. bottom: 12 / 192
  22914. }
  22915. },
  22916. back: {
  22917. height: math.unit(6 + 5 / 12, "feet"),
  22918. weight: math.unit(180, "lb"),
  22919. name: "Back",
  22920. image: {
  22921. source: "./media/characters/lexir/back.svg",
  22922. extra: 183.84 / 175.5,
  22923. bottom: 3.1 / 187
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Very Smal",
  22930. height: math.unit(1, "nm")
  22931. },
  22932. {
  22933. name: "Normal",
  22934. height: math.unit(6 + 5 / 12, "feet"),
  22935. default: true
  22936. },
  22937. {
  22938. name: "Macro",
  22939. height: math.unit(1, "mile")
  22940. },
  22941. {
  22942. name: "Megamacro",
  22943. height: math.unit(50, "miles")
  22944. },
  22945. ]
  22946. ))
  22947. characterMakers.push(() => makeCharacter(
  22948. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22949. {
  22950. front: {
  22951. height: math.unit(1.5, "meters"),
  22952. weight: math.unit(100, "lb"),
  22953. name: "Front",
  22954. image: {
  22955. source: "./media/characters/maksio/front.svg",
  22956. extra: 1549 / 1531,
  22957. bottom: 123.7 / 1674.5429
  22958. }
  22959. },
  22960. back: {
  22961. height: math.unit(1.5, "meters"),
  22962. weight: math.unit(100, "lb"),
  22963. name: "Back",
  22964. image: {
  22965. source: "./media/characters/maksio/back.svg",
  22966. extra: 1541 / 1509,
  22967. bottom: 97 / 1639
  22968. }
  22969. },
  22970. hand: {
  22971. height: math.unit(0.621, "feet"),
  22972. name: "Hand",
  22973. image: {
  22974. source: "./media/characters/maksio/hand.svg"
  22975. }
  22976. },
  22977. foot: {
  22978. height: math.unit(1.611, "feet"),
  22979. name: "Foot",
  22980. image: {
  22981. source: "./media/characters/maksio/foot.svg"
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Shrunken",
  22988. height: math.unit(10, "cm")
  22989. },
  22990. {
  22991. name: "Normal",
  22992. height: math.unit(150, "cm"),
  22993. default: true
  22994. },
  22995. ]
  22996. ))
  22997. characterMakers.push(() => makeCharacter(
  22998. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22999. {
  23000. front: {
  23001. height: math.unit(100, "feet"),
  23002. name: "Front",
  23003. image: {
  23004. source: "./media/characters/erza-bear/front.svg",
  23005. extra: 2449 / 2390,
  23006. bottom: 46 / 2494
  23007. }
  23008. },
  23009. back: {
  23010. height: math.unit(100, "feet"),
  23011. name: "Back",
  23012. image: {
  23013. source: "./media/characters/erza-bear/back.svg",
  23014. extra: 2489 / 2430,
  23015. bottom: 85.4 / 2480
  23016. }
  23017. },
  23018. tail: {
  23019. height: math.unit(42, "feet"),
  23020. name: "Tail",
  23021. image: {
  23022. source: "./media/characters/erza-bear/tail.svg"
  23023. }
  23024. },
  23025. tongue: {
  23026. height: math.unit(8, "feet"),
  23027. name: "Tongue",
  23028. image: {
  23029. source: "./media/characters/erza-bear/tongue.svg"
  23030. }
  23031. },
  23032. dick: {
  23033. height: math.unit(10.5, "feet"),
  23034. name: "Dick",
  23035. image: {
  23036. source: "./media/characters/erza-bear/dick.svg"
  23037. }
  23038. },
  23039. dickVertical: {
  23040. height: math.unit(16.9, "feet"),
  23041. name: "Dick (Vertical)",
  23042. image: {
  23043. source: "./media/characters/erza-bear/dick-vertical.svg"
  23044. }
  23045. },
  23046. },
  23047. [
  23048. {
  23049. name: "Macro",
  23050. height: math.unit(100, "feet"),
  23051. default: true
  23052. },
  23053. ]
  23054. ))
  23055. characterMakers.push(() => makeCharacter(
  23056. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23057. {
  23058. front: {
  23059. height: math.unit(172, "cm"),
  23060. weight: math.unit(73, "kg"),
  23061. name: "Front",
  23062. image: {
  23063. source: "./media/characters/violet-flor/front.svg",
  23064. extra: 1530 / 1442,
  23065. bottom: 61.9 / 1588.8
  23066. }
  23067. },
  23068. back: {
  23069. height: math.unit(180, "cm"),
  23070. weight: math.unit(73, "kg"),
  23071. name: "Back",
  23072. image: {
  23073. source: "./media/characters/violet-flor/back.svg",
  23074. extra: 1692 / 1630,
  23075. bottom: 20 / 1712
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Normal",
  23082. height: math.unit(172, "cm"),
  23083. default: true
  23084. },
  23085. ]
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23089. {
  23090. front: {
  23091. height: math.unit(6, "feet"),
  23092. weight: math.unit(220, "lb"),
  23093. name: "Front",
  23094. image: {
  23095. source: "./media/characters/lynn-rhea/front.svg",
  23096. extra: 310 / 273
  23097. }
  23098. },
  23099. back: {
  23100. height: math.unit(6, "feet"),
  23101. weight: math.unit(220, "lb"),
  23102. name: "Back",
  23103. image: {
  23104. source: "./media/characters/lynn-rhea/back.svg",
  23105. extra: 310 / 273
  23106. }
  23107. },
  23108. dicks: {
  23109. height: math.unit(0.9, "feet"),
  23110. name: "Dicks",
  23111. image: {
  23112. source: "./media/characters/lynn-rhea/dicks.svg"
  23113. }
  23114. },
  23115. slit: {
  23116. height: math.unit(0.4, "feet"),
  23117. name: "Slit",
  23118. image: {
  23119. source: "./media/characters/lynn-rhea/slit.svg"
  23120. }
  23121. },
  23122. },
  23123. [
  23124. {
  23125. name: "Micro",
  23126. height: math.unit(1, "inch")
  23127. },
  23128. {
  23129. name: "Macro",
  23130. height: math.unit(60, "feet"),
  23131. default: true
  23132. },
  23133. {
  23134. name: "Megamacro",
  23135. height: math.unit(2, "miles")
  23136. },
  23137. {
  23138. name: "Gigamacro",
  23139. height: math.unit(3, "earths")
  23140. },
  23141. {
  23142. name: "Galactic",
  23143. height: math.unit(0.8, "galaxies")
  23144. },
  23145. ]
  23146. ))
  23147. characterMakers.push(() => makeCharacter(
  23148. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23149. {
  23150. front: {
  23151. height: math.unit(1600, "feet"),
  23152. weight: math.unit(85758785169, "kg"),
  23153. name: "Front",
  23154. image: {
  23155. source: "./media/characters/valathos/front.svg",
  23156. extra: 1451 / 1339
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Macro",
  23163. height: math.unit(1600, "feet"),
  23164. default: true
  23165. },
  23166. ]
  23167. ))
  23168. characterMakers.push(() => makeCharacter(
  23169. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23170. {
  23171. front: {
  23172. height: math.unit(7 + 5 / 12, "feet"),
  23173. weight: math.unit(300, "lb"),
  23174. name: "Front",
  23175. image: {
  23176. source: "./media/characters/azula/front.svg",
  23177. extra: 3208 / 2880,
  23178. bottom: 80.2 / 3277
  23179. }
  23180. },
  23181. back: {
  23182. height: math.unit(7 + 5 / 12, "feet"),
  23183. weight: math.unit(300, "lb"),
  23184. name: "Back",
  23185. image: {
  23186. source: "./media/characters/azula/back.svg",
  23187. extra: 3169 / 2822,
  23188. bottom: 150.6 / 3321
  23189. }
  23190. },
  23191. },
  23192. [
  23193. {
  23194. name: "Normal",
  23195. height: math.unit(7 + 5 / 12, "feet"),
  23196. default: true
  23197. },
  23198. {
  23199. name: "Big",
  23200. height: math.unit(20, "feet")
  23201. },
  23202. ]
  23203. ))
  23204. characterMakers.push(() => makeCharacter(
  23205. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23206. {
  23207. front: {
  23208. height: math.unit(5 + 1 / 12, "feet"),
  23209. weight: math.unit(110, "lb"),
  23210. name: "Front",
  23211. image: {
  23212. source: "./media/characters/rupert/front.svg",
  23213. extra: 1549 / 1495,
  23214. bottom: 54.2 / 1604.4
  23215. }
  23216. },
  23217. },
  23218. [
  23219. {
  23220. name: "Normal",
  23221. height: math.unit(5 + 1 / 12, "feet"),
  23222. default: true
  23223. },
  23224. ]
  23225. ))
  23226. characterMakers.push(() => makeCharacter(
  23227. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23228. {
  23229. front: {
  23230. height: math.unit(8 + 4 / 12, "feet"),
  23231. weight: math.unit(350, "lb"),
  23232. name: "Front",
  23233. image: {
  23234. source: "./media/characters/sheera-castellar/front.svg",
  23235. extra: 1957 / 1894,
  23236. bottom: 26.97 / 1975.017
  23237. }
  23238. },
  23239. side: {
  23240. height: math.unit(8 + 4 / 12, "feet"),
  23241. weight: math.unit(350, "lb"),
  23242. name: "Side",
  23243. image: {
  23244. source: "./media/characters/sheera-castellar/side.svg",
  23245. extra: 1957 / 1894
  23246. }
  23247. },
  23248. back: {
  23249. height: math.unit(8 + 4 / 12, "feet"),
  23250. weight: math.unit(350, "lb"),
  23251. name: "Back",
  23252. image: {
  23253. source: "./media/characters/sheera-castellar/back.svg",
  23254. extra: 1957 / 1894
  23255. }
  23256. },
  23257. angled: {
  23258. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23259. weight: math.unit(350, "lb"),
  23260. name: "Angled",
  23261. image: {
  23262. source: "./media/characters/sheera-castellar/angled.svg",
  23263. extra: 1807 / 1707,
  23264. bottom: 68 / 1875
  23265. }
  23266. },
  23267. genitals: {
  23268. height: math.unit(2.2, "feet"),
  23269. name: "Genitals",
  23270. image: {
  23271. source: "./media/characters/sheera-castellar/genitals.svg"
  23272. }
  23273. },
  23274. taur: {
  23275. height: math.unit(10 + 6/12, "feet"),
  23276. name: "Taur",
  23277. image: {
  23278. source: "./media/characters/sheera-castellar/taur.svg",
  23279. extra: 2017/1909,
  23280. bottom: 185/2202
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Normal",
  23287. height: math.unit(8 + 4 / 12, "feet")
  23288. },
  23289. {
  23290. name: "Macro",
  23291. height: math.unit(150, "feet"),
  23292. default: true
  23293. },
  23294. {
  23295. name: "Macro+",
  23296. height: math.unit(800, "feet")
  23297. },
  23298. ]
  23299. ))
  23300. characterMakers.push(() => makeCharacter(
  23301. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23302. {
  23303. front: {
  23304. height: math.unit(6, "feet"),
  23305. weight: math.unit(150, "lb"),
  23306. name: "Front",
  23307. image: {
  23308. source: "./media/characters/jaipur/front.svg",
  23309. extra: 3860 / 3731,
  23310. bottom: 287 / 4140
  23311. }
  23312. },
  23313. back: {
  23314. height: math.unit(6, "feet"),
  23315. weight: math.unit(150, "lb"),
  23316. name: "Back",
  23317. image: {
  23318. source: "./media/characters/jaipur/back.svg",
  23319. extra: 4060 / 3930,
  23320. bottom: 151 / 4200
  23321. }
  23322. },
  23323. },
  23324. [
  23325. {
  23326. name: "Normal",
  23327. height: math.unit(1.85, "meters"),
  23328. default: true
  23329. },
  23330. {
  23331. name: "Macro",
  23332. height: math.unit(150, "meters")
  23333. },
  23334. {
  23335. name: "Macro+",
  23336. height: math.unit(0.5, "miles")
  23337. },
  23338. {
  23339. name: "Macro++",
  23340. height: math.unit(2.5, "miles")
  23341. },
  23342. {
  23343. name: "Macro+++",
  23344. height: math.unit(12, "miles")
  23345. },
  23346. {
  23347. name: "Macro++++",
  23348. height: math.unit(120, "miles")
  23349. },
  23350. {
  23351. name: "Macro+++++",
  23352. height: math.unit(1200, "miles")
  23353. },
  23354. ]
  23355. ))
  23356. characterMakers.push(() => makeCharacter(
  23357. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23358. {
  23359. front: {
  23360. height: math.unit(6, "feet"),
  23361. weight: math.unit(150, "lb"),
  23362. name: "Front",
  23363. image: {
  23364. source: "./media/characters/sheila-wolf/front.svg",
  23365. extra: 1931 / 1808,
  23366. bottom: 29.5 / 1960
  23367. }
  23368. },
  23369. dick: {
  23370. height: math.unit(1.464, "feet"),
  23371. name: "Dick",
  23372. image: {
  23373. source: "./media/characters/sheila-wolf/dick.svg"
  23374. }
  23375. },
  23376. muzzle: {
  23377. height: math.unit(0.513, "feet"),
  23378. name: "Muzzle",
  23379. image: {
  23380. source: "./media/characters/sheila-wolf/muzzle.svg"
  23381. }
  23382. },
  23383. },
  23384. [
  23385. {
  23386. name: "Macro",
  23387. height: math.unit(70, "feet"),
  23388. default: true
  23389. },
  23390. ]
  23391. ))
  23392. characterMakers.push(() => makeCharacter(
  23393. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23394. {
  23395. front: {
  23396. height: math.unit(32, "meters"),
  23397. weight: math.unit(300000, "kg"),
  23398. name: "Front",
  23399. image: {
  23400. source: "./media/characters/almor/front.svg",
  23401. extra: 1408 / 1322,
  23402. bottom: 94.6 / 1506.5
  23403. }
  23404. },
  23405. },
  23406. [
  23407. {
  23408. name: "Macro",
  23409. height: math.unit(32, "meters"),
  23410. default: true
  23411. },
  23412. ]
  23413. ))
  23414. characterMakers.push(() => makeCharacter(
  23415. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23416. {
  23417. front: {
  23418. height: math.unit(7, "feet"),
  23419. weight: math.unit(200, "lb"),
  23420. name: "Front",
  23421. image: {
  23422. source: "./media/characters/silver/front.svg",
  23423. extra: 472.1 / 450.5,
  23424. bottom: 26.5 / 499.424
  23425. }
  23426. },
  23427. },
  23428. [
  23429. {
  23430. name: "Normal",
  23431. height: math.unit(7, "feet"),
  23432. default: true
  23433. },
  23434. {
  23435. name: "Macro",
  23436. height: math.unit(800, "feet")
  23437. },
  23438. {
  23439. name: "Megamacro",
  23440. height: math.unit(250, "miles")
  23441. },
  23442. ]
  23443. ))
  23444. characterMakers.push(() => makeCharacter(
  23445. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23446. {
  23447. front: {
  23448. height: math.unit(6, "feet"),
  23449. weight: math.unit(150, "lb"),
  23450. name: "Front",
  23451. image: {
  23452. source: "./media/characters/pliskin/front.svg",
  23453. extra: 1469 / 1359,
  23454. bottom: 70 / 1540
  23455. }
  23456. },
  23457. },
  23458. [
  23459. {
  23460. name: "Micro",
  23461. height: math.unit(3, "inches")
  23462. },
  23463. {
  23464. name: "Normal",
  23465. height: math.unit(5 + 11 / 12, "feet"),
  23466. default: true
  23467. },
  23468. {
  23469. name: "Macro",
  23470. height: math.unit(120, "feet")
  23471. },
  23472. ]
  23473. ))
  23474. characterMakers.push(() => makeCharacter(
  23475. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23476. {
  23477. front: {
  23478. height: math.unit(6, "feet"),
  23479. weight: math.unit(150, "lb"),
  23480. name: "Front",
  23481. image: {
  23482. source: "./media/characters/sammy/front.svg",
  23483. extra: 1193 / 1089,
  23484. bottom: 30.5 / 1226
  23485. }
  23486. },
  23487. },
  23488. [
  23489. {
  23490. name: "Macro",
  23491. height: math.unit(1700, "feet"),
  23492. default: true
  23493. },
  23494. {
  23495. name: "Examacro",
  23496. height: math.unit(2.5e9, "lightyears")
  23497. },
  23498. ]
  23499. ))
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23502. {
  23503. front: {
  23504. height: math.unit(21, "meters"),
  23505. weight: math.unit(12, "tonnes"),
  23506. name: "Front",
  23507. image: {
  23508. source: "./media/characters/kuru/front.svg",
  23509. extra: 4301 / 3785,
  23510. bottom: 371.3 / 4691
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Macro",
  23517. height: math.unit(21, "meters"),
  23518. default: true
  23519. },
  23520. ]
  23521. ))
  23522. characterMakers.push(() => makeCharacter(
  23523. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23524. {
  23525. front: {
  23526. height: math.unit(23, "meters"),
  23527. weight: math.unit(12.2, "tonnes"),
  23528. name: "Front",
  23529. image: {
  23530. source: "./media/characters/rakka/front.svg",
  23531. extra: 4670 / 4169,
  23532. bottom: 301 / 4968.7
  23533. }
  23534. },
  23535. },
  23536. [
  23537. {
  23538. name: "Macro",
  23539. height: math.unit(23, "meters"),
  23540. default: true
  23541. },
  23542. ]
  23543. ))
  23544. characterMakers.push(() => makeCharacter(
  23545. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23546. {
  23547. front: {
  23548. height: math.unit(6, "feet"),
  23549. weight: math.unit(150, "lb"),
  23550. name: "Front",
  23551. image: {
  23552. source: "./media/characters/rhys-feline/front.svg",
  23553. extra: 2488 / 2308,
  23554. bottom: 35.67 / 2519.19
  23555. }
  23556. },
  23557. },
  23558. [
  23559. {
  23560. name: "Really Small",
  23561. height: math.unit(1, "nm")
  23562. },
  23563. {
  23564. name: "Micro",
  23565. height: math.unit(4, "inches")
  23566. },
  23567. {
  23568. name: "Normal",
  23569. height: math.unit(4 + 10 / 12, "feet"),
  23570. default: true
  23571. },
  23572. {
  23573. name: "Macro",
  23574. height: math.unit(100, "feet")
  23575. },
  23576. {
  23577. name: "Megamacto",
  23578. height: math.unit(50, "miles")
  23579. },
  23580. ]
  23581. ))
  23582. characterMakers.push(() => makeCharacter(
  23583. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23584. {
  23585. side: {
  23586. height: math.unit(30, "feet"),
  23587. weight: math.unit(35000, "kg"),
  23588. name: "Side",
  23589. image: {
  23590. source: "./media/characters/alydar/side.svg",
  23591. extra: 234 / 222,
  23592. bottom: 6.5 / 241
  23593. }
  23594. },
  23595. front: {
  23596. height: math.unit(30, "feet"),
  23597. weight: math.unit(35000, "kg"),
  23598. name: "Front",
  23599. image: {
  23600. source: "./media/characters/alydar/front.svg",
  23601. extra: 223.37 / 210.2,
  23602. bottom: 22.3 / 246.76
  23603. }
  23604. },
  23605. top: {
  23606. height: math.unit(64.54, "feet"),
  23607. weight: math.unit(35000, "kg"),
  23608. name: "Top",
  23609. image: {
  23610. source: "./media/characters/alydar/top.svg"
  23611. }
  23612. },
  23613. anthro: {
  23614. height: math.unit(30, "feet"),
  23615. weight: math.unit(9000, "kg"),
  23616. name: "Anthro",
  23617. image: {
  23618. source: "./media/characters/alydar/anthro.svg",
  23619. extra: 432 / 421,
  23620. bottom: 7.18 / 440
  23621. }
  23622. },
  23623. maw: {
  23624. height: math.unit(11.693, "feet"),
  23625. name: "Maw",
  23626. image: {
  23627. source: "./media/characters/alydar/maw.svg"
  23628. }
  23629. },
  23630. head: {
  23631. height: math.unit(11.693, "feet"),
  23632. name: "Head",
  23633. image: {
  23634. source: "./media/characters/alydar/head.svg"
  23635. }
  23636. },
  23637. headAlt: {
  23638. height: math.unit(12.861, "feet"),
  23639. name: "Head (Alt)",
  23640. image: {
  23641. source: "./media/characters/alydar/head-alt.svg"
  23642. }
  23643. },
  23644. wing: {
  23645. height: math.unit(20.712, "feet"),
  23646. name: "Wing",
  23647. image: {
  23648. source: "./media/characters/alydar/wing.svg"
  23649. }
  23650. },
  23651. wingFeather: {
  23652. height: math.unit(9.662, "feet"),
  23653. name: "Wing Feather",
  23654. image: {
  23655. source: "./media/characters/alydar/wing-feather.svg"
  23656. }
  23657. },
  23658. countourFeather: {
  23659. height: math.unit(4.154, "feet"),
  23660. name: "Contour Feather",
  23661. image: {
  23662. source: "./media/characters/alydar/contour-feather.svg"
  23663. }
  23664. },
  23665. },
  23666. [
  23667. {
  23668. name: "Diplomatic",
  23669. height: math.unit(13, "feet"),
  23670. default: true
  23671. },
  23672. {
  23673. name: "Small",
  23674. height: math.unit(30, "feet")
  23675. },
  23676. {
  23677. name: "Normal",
  23678. height: math.unit(95, "feet"),
  23679. default: true
  23680. },
  23681. {
  23682. name: "Large",
  23683. height: math.unit(285, "feet")
  23684. },
  23685. {
  23686. name: "Incomprehensible",
  23687. height: math.unit(450, "megameters")
  23688. },
  23689. ]
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23693. {
  23694. side: {
  23695. height: math.unit(11, "feet"),
  23696. weight: math.unit(1750, "kg"),
  23697. name: "Side",
  23698. image: {
  23699. source: "./media/characters/selicia/side.svg",
  23700. extra: 440 / 396,
  23701. bottom: 24.8 / 465.979
  23702. }
  23703. },
  23704. maw: {
  23705. height: math.unit(4.665, "feet"),
  23706. name: "Maw",
  23707. image: {
  23708. source: "./media/characters/selicia/maw.svg"
  23709. }
  23710. },
  23711. },
  23712. [
  23713. {
  23714. name: "Normal",
  23715. height: math.unit(11, "feet"),
  23716. default: true
  23717. },
  23718. ]
  23719. ))
  23720. characterMakers.push(() => makeCharacter(
  23721. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23722. {
  23723. side: {
  23724. height: math.unit(2 + 6 / 12, "feet"),
  23725. weight: math.unit(30, "lb"),
  23726. name: "Side",
  23727. image: {
  23728. source: "./media/characters/layla/side.svg",
  23729. extra: 244 / 188,
  23730. bottom: 18.2 / 262.1
  23731. }
  23732. },
  23733. back: {
  23734. height: math.unit(2 + 6 / 12, "feet"),
  23735. weight: math.unit(30, "lb"),
  23736. name: "Back",
  23737. image: {
  23738. source: "./media/characters/layla/back.svg",
  23739. extra: 308 / 241.5,
  23740. bottom: 8.9 / 316.8
  23741. }
  23742. },
  23743. cumming: {
  23744. height: math.unit(2 + 6 / 12, "feet"),
  23745. weight: math.unit(30, "lb"),
  23746. name: "Cumming",
  23747. image: {
  23748. source: "./media/characters/layla/cumming.svg",
  23749. extra: 342 / 279,
  23750. bottom: 595 / 938
  23751. }
  23752. },
  23753. dickFlaccid: {
  23754. height: math.unit(2.595, "feet"),
  23755. name: "Flaccid Genitals",
  23756. image: {
  23757. source: "./media/characters/layla/dick-flaccid.svg"
  23758. }
  23759. },
  23760. dickErect: {
  23761. height: math.unit(2.359, "feet"),
  23762. name: "Erect Genitals",
  23763. image: {
  23764. source: "./media/characters/layla/dick-erect.svg"
  23765. }
  23766. },
  23767. dragon: {
  23768. height: math.unit(40, "feet"),
  23769. name: "Dragon",
  23770. image: {
  23771. source: "./media/characters/layla/dragon.svg",
  23772. extra: 610/535,
  23773. bottom: 367/977
  23774. }
  23775. },
  23776. taur: {
  23777. height: math.unit(30, "feet"),
  23778. name: "Taur",
  23779. image: {
  23780. source: "./media/characters/layla/taur.svg",
  23781. extra: 1268/1199,
  23782. bottom: 112/1380
  23783. }
  23784. },
  23785. },
  23786. [
  23787. {
  23788. name: "Micro",
  23789. height: math.unit(1, "inch")
  23790. },
  23791. {
  23792. name: "Small",
  23793. height: math.unit(1, "foot")
  23794. },
  23795. {
  23796. name: "Normal",
  23797. height: math.unit(2 + 6 / 12, "feet"),
  23798. default: true
  23799. },
  23800. {
  23801. name: "Macro",
  23802. height: math.unit(200, "feet")
  23803. },
  23804. {
  23805. name: "Megamacro",
  23806. height: math.unit(1000, "miles")
  23807. },
  23808. {
  23809. name: "Planetary",
  23810. height: math.unit(8000, "miles")
  23811. },
  23812. {
  23813. name: "True Layla",
  23814. height: math.unit(200000 * 7, "multiverses")
  23815. },
  23816. ]
  23817. ))
  23818. characterMakers.push(() => makeCharacter(
  23819. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23820. {
  23821. back: {
  23822. height: math.unit(10.5, "feet"),
  23823. weight: math.unit(800, "lb"),
  23824. name: "Back",
  23825. image: {
  23826. source: "./media/characters/knox/back.svg",
  23827. extra: 1486 / 1089,
  23828. bottom: 107 / 1601.4
  23829. }
  23830. },
  23831. side: {
  23832. height: math.unit(10.5, "feet"),
  23833. weight: math.unit(800, "lb"),
  23834. name: "Side",
  23835. image: {
  23836. source: "./media/characters/knox/side.svg",
  23837. extra: 244 / 218,
  23838. bottom: 14 / 260
  23839. }
  23840. },
  23841. },
  23842. [
  23843. {
  23844. name: "Compact",
  23845. height: math.unit(10.5, "feet"),
  23846. default: true
  23847. },
  23848. {
  23849. name: "Dynamax",
  23850. height: math.unit(210, "feet")
  23851. },
  23852. {
  23853. name: "Full Macro",
  23854. height: math.unit(850, "feet")
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23860. {
  23861. front: {
  23862. height: math.unit(28, "feet"),
  23863. weight: math.unit(10500, "lb"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/kayda/front.svg",
  23867. extra: 1536 / 1428,
  23868. bottom: 68.7 / 1603
  23869. }
  23870. },
  23871. back: {
  23872. height: math.unit(28, "feet"),
  23873. weight: math.unit(10500, "lb"),
  23874. name: "Back",
  23875. image: {
  23876. source: "./media/characters/kayda/back.svg",
  23877. extra: 1557 / 1464,
  23878. bottom: 39.5 / 1597.49
  23879. }
  23880. },
  23881. dick: {
  23882. height: math.unit(3.858, "feet"),
  23883. name: "Dick",
  23884. image: {
  23885. source: "./media/characters/kayda/dick.svg"
  23886. }
  23887. },
  23888. },
  23889. [
  23890. {
  23891. name: "Macro",
  23892. height: math.unit(28, "feet"),
  23893. default: true
  23894. },
  23895. ]
  23896. ))
  23897. characterMakers.push(() => makeCharacter(
  23898. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23899. {
  23900. front: {
  23901. height: math.unit(10 + 11 / 12, "feet"),
  23902. weight: math.unit(1400, "lb"),
  23903. name: "Front",
  23904. image: {
  23905. source: "./media/characters/brian/front.svg",
  23906. extra: 737 / 692,
  23907. bottom: 55.4 / 785
  23908. }
  23909. },
  23910. },
  23911. [
  23912. {
  23913. name: "Normal",
  23914. height: math.unit(10 + 11 / 12, "feet"),
  23915. default: true
  23916. },
  23917. ]
  23918. ))
  23919. characterMakers.push(() => makeCharacter(
  23920. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23921. {
  23922. front: {
  23923. height: math.unit(5 + 8 / 12, "feet"),
  23924. weight: math.unit(140, "lb"),
  23925. name: "Front",
  23926. image: {
  23927. source: "./media/characters/khemri/front.svg",
  23928. extra: 4780 / 4059,
  23929. bottom: 80.1 / 4859.25
  23930. }
  23931. },
  23932. },
  23933. [
  23934. {
  23935. name: "Micro",
  23936. height: math.unit(6, "inches")
  23937. },
  23938. {
  23939. name: "Normal",
  23940. height: math.unit(5 + 8 / 12, "feet"),
  23941. default: true
  23942. },
  23943. ]
  23944. ))
  23945. characterMakers.push(() => makeCharacter(
  23946. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23947. {
  23948. front: {
  23949. height: math.unit(13, "feet"),
  23950. weight: math.unit(1700, "lb"),
  23951. name: "Front",
  23952. image: {
  23953. source: "./media/characters/felix-braveheart/front.svg",
  23954. extra: 1222 / 1157,
  23955. bottom: 53.2 / 1280
  23956. }
  23957. },
  23958. back: {
  23959. height: math.unit(13, "feet"),
  23960. weight: math.unit(1700, "lb"),
  23961. name: "Back",
  23962. image: {
  23963. source: "./media/characters/felix-braveheart/back.svg",
  23964. extra: 1277 / 1203,
  23965. bottom: 50.2 / 1327
  23966. }
  23967. },
  23968. feral: {
  23969. height: math.unit(6, "feet"),
  23970. weight: math.unit(400, "lb"),
  23971. name: "Feral",
  23972. image: {
  23973. source: "./media/characters/felix-braveheart/feral.svg",
  23974. extra: 682 / 625,
  23975. bottom: 6.9 / 688
  23976. }
  23977. },
  23978. },
  23979. [
  23980. {
  23981. name: "Normal",
  23982. height: math.unit(13, "feet"),
  23983. default: true
  23984. },
  23985. ]
  23986. ))
  23987. characterMakers.push(() => makeCharacter(
  23988. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23989. {
  23990. side: {
  23991. height: math.unit(5 + 11 / 12, "feet"),
  23992. weight: math.unit(1400, "lb"),
  23993. name: "Side",
  23994. image: {
  23995. source: "./media/characters/shadow-blade/side.svg",
  23996. extra: 1726 / 1267,
  23997. bottom: 58.4 / 1785
  23998. }
  23999. },
  24000. },
  24001. [
  24002. {
  24003. name: "Normal",
  24004. height: math.unit(5 + 11 / 12, "feet"),
  24005. default: true
  24006. },
  24007. ]
  24008. ))
  24009. characterMakers.push(() => makeCharacter(
  24010. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24011. {
  24012. front: {
  24013. height: math.unit(1 + 6 / 12, "feet"),
  24014. weight: math.unit(25, "lb"),
  24015. name: "Front",
  24016. image: {
  24017. source: "./media/characters/karla-halldor/front.svg",
  24018. extra: 1459 / 1383,
  24019. bottom: 12 / 1472
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Normal",
  24026. height: math.unit(1 + 6 / 12, "feet"),
  24027. default: true
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24033. {
  24034. front: {
  24035. height: math.unit(6 + 2 / 12, "feet"),
  24036. weight: math.unit(160, "lb"),
  24037. name: "Front",
  24038. image: {
  24039. source: "./media/characters/ariam/front.svg",
  24040. extra: 714 / 617,
  24041. bottom: 23.4 / 737,
  24042. }
  24043. },
  24044. squatting: {
  24045. height: math.unit(4.1, "feet"),
  24046. weight: math.unit(160, "lb"),
  24047. name: "Squatting",
  24048. image: {
  24049. source: "./media/characters/ariam/squatting.svg",
  24050. extra: 2617 / 2112,
  24051. bottom: 61.2 / 2681,
  24052. }
  24053. },
  24054. },
  24055. [
  24056. {
  24057. name: "Normal",
  24058. height: math.unit(6 + 2 / 12, "feet"),
  24059. default: true
  24060. },
  24061. {
  24062. name: "Normal+",
  24063. height: math.unit(4, "meters")
  24064. },
  24065. {
  24066. name: "Macro",
  24067. height: math.unit(50, "meters")
  24068. },
  24069. {
  24070. name: "Macro+",
  24071. height: math.unit(100, "meters")
  24072. },
  24073. {
  24074. name: "Megamacro",
  24075. height: math.unit(20, "km")
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24081. {
  24082. front: {
  24083. height: math.unit(1.67, "meters"),
  24084. weight: math.unit(140, "lb"),
  24085. name: "Front",
  24086. image: {
  24087. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24088. extra: 438 / 410,
  24089. bottom: 0.75 / 439
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Shrunken",
  24096. height: math.unit(7.6, "cm")
  24097. },
  24098. {
  24099. name: "Human Scale",
  24100. height: math.unit(1.67, "meters")
  24101. },
  24102. {
  24103. name: "Wolxi Scale",
  24104. height: math.unit(36.7, "meters"),
  24105. default: true
  24106. },
  24107. ]
  24108. ))
  24109. characterMakers.push(() => makeCharacter(
  24110. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24111. {
  24112. front: {
  24113. height: math.unit(1.73, "meters"),
  24114. weight: math.unit(240, "lb"),
  24115. name: "Front",
  24116. image: {
  24117. source: "./media/characters/izue-two-mothers/front.svg",
  24118. extra: 469 / 437,
  24119. bottom: 1.24 / 470.6
  24120. }
  24121. },
  24122. },
  24123. [
  24124. {
  24125. name: "Shrunken",
  24126. height: math.unit(7.86, "cm")
  24127. },
  24128. {
  24129. name: "Human Scale",
  24130. height: math.unit(1.73, "meters")
  24131. },
  24132. {
  24133. name: "Wolxi Scale",
  24134. height: math.unit(38, "meters"),
  24135. default: true
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24141. {
  24142. front: {
  24143. height: math.unit(1.55, "meters"),
  24144. weight: math.unit(120, "lb"),
  24145. name: "Front",
  24146. image: {
  24147. source: "./media/characters/teeku-love-shack/front.svg",
  24148. extra: 387 / 362,
  24149. bottom: 1.51 / 388
  24150. }
  24151. },
  24152. },
  24153. [
  24154. {
  24155. name: "Shrunken",
  24156. height: math.unit(7, "cm")
  24157. },
  24158. {
  24159. name: "Human Scale",
  24160. height: math.unit(1.55, "meters")
  24161. },
  24162. {
  24163. name: "Wolxi Scale",
  24164. height: math.unit(34.1, "meters"),
  24165. default: true
  24166. },
  24167. ]
  24168. ))
  24169. characterMakers.push(() => makeCharacter(
  24170. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24171. {
  24172. front: {
  24173. height: math.unit(1.83, "meters"),
  24174. weight: math.unit(135, "lb"),
  24175. name: "Front",
  24176. image: {
  24177. source: "./media/characters/dejma-the-red/front.svg",
  24178. extra: 480 / 458,
  24179. bottom: 1.8 / 482
  24180. }
  24181. },
  24182. },
  24183. [
  24184. {
  24185. name: "Shrunken",
  24186. height: math.unit(8.3, "cm")
  24187. },
  24188. {
  24189. name: "Human Scale",
  24190. height: math.unit(1.83, "meters")
  24191. },
  24192. {
  24193. name: "Wolxi Scale",
  24194. height: math.unit(40, "meters"),
  24195. default: true
  24196. },
  24197. ]
  24198. ))
  24199. characterMakers.push(() => makeCharacter(
  24200. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24201. {
  24202. front: {
  24203. height: math.unit(1.78, "meters"),
  24204. weight: math.unit(65, "kg"),
  24205. name: "Front",
  24206. image: {
  24207. source: "./media/characters/aki/front.svg",
  24208. extra: 452 / 415
  24209. }
  24210. },
  24211. frontNsfw: {
  24212. height: math.unit(1.78, "meters"),
  24213. weight: math.unit(65, "kg"),
  24214. name: "Front (NSFW)",
  24215. image: {
  24216. source: "./media/characters/aki/front-nsfw.svg",
  24217. extra: 452 / 415
  24218. }
  24219. },
  24220. back: {
  24221. height: math.unit(1.78, "meters"),
  24222. weight: math.unit(65, "kg"),
  24223. name: "Back",
  24224. image: {
  24225. source: "./media/characters/aki/back.svg",
  24226. extra: 452 / 415
  24227. }
  24228. },
  24229. rump: {
  24230. height: math.unit(2.05, "feet"),
  24231. name: "Rump",
  24232. image: {
  24233. source: "./media/characters/aki/rump.svg"
  24234. }
  24235. },
  24236. dick: {
  24237. height: math.unit(0.95, "feet"),
  24238. name: "Dick",
  24239. image: {
  24240. source: "./media/characters/aki/dick.svg"
  24241. }
  24242. },
  24243. },
  24244. [
  24245. {
  24246. name: "Micro",
  24247. height: math.unit(15, "cm")
  24248. },
  24249. {
  24250. name: "Normal",
  24251. height: math.unit(178, "cm"),
  24252. default: true
  24253. },
  24254. {
  24255. name: "Macro",
  24256. height: math.unit(214, "m")
  24257. },
  24258. {
  24259. name: "Macro+",
  24260. height: math.unit(534, "m")
  24261. },
  24262. ]
  24263. ))
  24264. characterMakers.push(() => makeCharacter(
  24265. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24266. {
  24267. front: {
  24268. height: math.unit(5 + 5 / 12, "feet"),
  24269. weight: math.unit(120, "lb"),
  24270. name: "Front",
  24271. image: {
  24272. source: "./media/characters/ari/front.svg",
  24273. extra: 714.5 / 682,
  24274. bottom: 8 / 722.5
  24275. }
  24276. },
  24277. },
  24278. [
  24279. {
  24280. name: "Normal",
  24281. height: math.unit(5 + 5 / 12, "feet")
  24282. },
  24283. {
  24284. name: "Macro",
  24285. height: math.unit(100, "feet"),
  24286. default: true
  24287. },
  24288. {
  24289. name: "Megamacro",
  24290. height: math.unit(100, "miles")
  24291. },
  24292. {
  24293. name: "Gigamacro",
  24294. height: math.unit(80000, "miles")
  24295. },
  24296. ]
  24297. ))
  24298. characterMakers.push(() => makeCharacter(
  24299. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24300. {
  24301. side: {
  24302. height: math.unit(9, "feet"),
  24303. weight: math.unit(400, "kg"),
  24304. name: "Side",
  24305. image: {
  24306. source: "./media/characters/bolt/side.svg",
  24307. extra: 1126 / 896,
  24308. bottom: 60 / 1187.3,
  24309. }
  24310. },
  24311. },
  24312. [
  24313. {
  24314. name: "Micro",
  24315. height: math.unit(5, "inches")
  24316. },
  24317. {
  24318. name: "Normal",
  24319. height: math.unit(9, "feet"),
  24320. default: true
  24321. },
  24322. {
  24323. name: "Macro",
  24324. height: math.unit(700, "feet")
  24325. },
  24326. {
  24327. name: "Max Size",
  24328. height: math.unit(1.52e22, "yottameters")
  24329. },
  24330. ]
  24331. ))
  24332. characterMakers.push(() => makeCharacter(
  24333. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24334. {
  24335. front: {
  24336. height: math.unit(4.53, "meters"),
  24337. weight: math.unit(3, "tons"),
  24338. name: "Front",
  24339. image: {
  24340. source: "./media/characters/draekon-sylviar/front.svg",
  24341. extra: 1228 / 1068,
  24342. bottom: 41 / 1270
  24343. }
  24344. },
  24345. tail: {
  24346. height: math.unit(1.772, "meter"),
  24347. name: "Tail",
  24348. image: {
  24349. source: "./media/characters/draekon-sylviar/tail.svg"
  24350. }
  24351. },
  24352. head: {
  24353. height: math.unit(1.331, "meter"),
  24354. name: "Head",
  24355. image: {
  24356. source: "./media/characters/draekon-sylviar/head.svg"
  24357. }
  24358. },
  24359. hand: {
  24360. height: math.unit(0.564, "meter"),
  24361. name: "Hand",
  24362. image: {
  24363. source: "./media/characters/draekon-sylviar/hand.svg"
  24364. }
  24365. },
  24366. foot: {
  24367. height: math.unit(0.621, "meter"),
  24368. name: "Foot",
  24369. image: {
  24370. source: "./media/characters/draekon-sylviar/foot.svg",
  24371. bottom: 32 / 324
  24372. }
  24373. },
  24374. dick: {
  24375. height: math.unit(61, "cm"),
  24376. name: "Dick",
  24377. image: {
  24378. source: "./media/characters/draekon-sylviar/dick.svg"
  24379. }
  24380. },
  24381. dickseparated: {
  24382. height: math.unit(61, "cm"),
  24383. name: "Dick-separated",
  24384. image: {
  24385. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24386. }
  24387. },
  24388. },
  24389. [
  24390. {
  24391. name: "Small",
  24392. height: math.unit(4.53 / 2, "meters"),
  24393. default: true
  24394. },
  24395. {
  24396. name: "Normal",
  24397. height: math.unit(4.53, "meters"),
  24398. default: true
  24399. },
  24400. {
  24401. name: "Large",
  24402. height: math.unit(4.53 * 2, "meters"),
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24408. {
  24409. front: {
  24410. height: math.unit(6 + 2 / 12, "feet"),
  24411. weight: math.unit(180, "lb"),
  24412. name: "Front",
  24413. image: {
  24414. source: "./media/characters/brawler/front.svg",
  24415. extra: 3301 / 3027,
  24416. bottom: 138 / 3439
  24417. }
  24418. },
  24419. },
  24420. [
  24421. {
  24422. name: "Normal",
  24423. height: math.unit(6 + 2 / 12, "feet"),
  24424. default: true
  24425. },
  24426. ]
  24427. ))
  24428. characterMakers.push(() => makeCharacter(
  24429. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24430. {
  24431. front: {
  24432. height: math.unit(11, "feet"),
  24433. weight: math.unit(1000, "lb"),
  24434. name: "Front",
  24435. image: {
  24436. source: "./media/characters/alex/front.svg",
  24437. bottom: 44.5 / 620
  24438. }
  24439. },
  24440. },
  24441. [
  24442. {
  24443. name: "Micro",
  24444. height: math.unit(5, "inches")
  24445. },
  24446. {
  24447. name: "Normal",
  24448. height: math.unit(11, "feet"),
  24449. default: true
  24450. },
  24451. {
  24452. name: "Macro",
  24453. height: math.unit(9.5e9, "feet")
  24454. },
  24455. {
  24456. name: "Max Size",
  24457. height: math.unit(1.4e283, "yottameters")
  24458. },
  24459. ]
  24460. ))
  24461. characterMakers.push(() => makeCharacter(
  24462. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24463. {
  24464. female: {
  24465. height: math.unit(29.9, "m"),
  24466. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24467. name: "Female",
  24468. image: {
  24469. source: "./media/characters/zenari/female.svg",
  24470. extra: 3281.6 / 3217,
  24471. bottom: 72.2 / 3353
  24472. }
  24473. },
  24474. male: {
  24475. height: math.unit(27.7, "m"),
  24476. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24477. name: "Male",
  24478. image: {
  24479. source: "./media/characters/zenari/male.svg",
  24480. extra: 3008 / 2991,
  24481. bottom: 54.6 / 3069
  24482. }
  24483. },
  24484. },
  24485. [
  24486. {
  24487. name: "Macro",
  24488. height: math.unit(29.7, "meters"),
  24489. default: true
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24495. {
  24496. female: {
  24497. height: math.unit(23.8, "m"),
  24498. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24499. name: "Female",
  24500. image: {
  24501. source: "./media/characters/mactarian/female.svg",
  24502. extra: 2662 / 2569,
  24503. bottom: 73 / 2736
  24504. }
  24505. },
  24506. male: {
  24507. height: math.unit(23.8, "m"),
  24508. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24509. name: "Male",
  24510. image: {
  24511. source: "./media/characters/mactarian/male.svg",
  24512. extra: 2673 / 2600,
  24513. bottom: 76 / 2750
  24514. }
  24515. },
  24516. },
  24517. [
  24518. {
  24519. name: "Macro",
  24520. height: math.unit(23.8, "meters"),
  24521. default: true
  24522. },
  24523. ]
  24524. ))
  24525. characterMakers.push(() => makeCharacter(
  24526. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24527. {
  24528. female: {
  24529. height: math.unit(19.3, "m"),
  24530. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24531. name: "Female",
  24532. image: {
  24533. source: "./media/characters/umok/female.svg",
  24534. extra: 2186 / 2078,
  24535. bottom: 87 / 2277
  24536. }
  24537. },
  24538. male: {
  24539. height: math.unit(19.5, "m"),
  24540. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24541. name: "Male",
  24542. image: {
  24543. source: "./media/characters/umok/male.svg",
  24544. extra: 2233 / 2140,
  24545. bottom: 24.4 / 2258
  24546. }
  24547. },
  24548. },
  24549. [
  24550. {
  24551. name: "Macro",
  24552. height: math.unit(19.3, "meters"),
  24553. default: true
  24554. },
  24555. ]
  24556. ))
  24557. characterMakers.push(() => makeCharacter(
  24558. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24559. {
  24560. female: {
  24561. height: math.unit(26.15, "m"),
  24562. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24563. name: "Female",
  24564. image: {
  24565. source: "./media/characters/joraxian/female.svg",
  24566. extra: 2912 / 2824,
  24567. bottom: 36 / 2956
  24568. }
  24569. },
  24570. male: {
  24571. height: math.unit(25.4, "m"),
  24572. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24573. name: "Male",
  24574. image: {
  24575. source: "./media/characters/joraxian/male.svg",
  24576. extra: 2877 / 2721,
  24577. bottom: 82 / 2967
  24578. }
  24579. },
  24580. },
  24581. [
  24582. {
  24583. name: "Macro",
  24584. height: math.unit(26.15, "meters"),
  24585. default: true
  24586. },
  24587. ]
  24588. ))
  24589. characterMakers.push(() => makeCharacter(
  24590. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24591. {
  24592. female: {
  24593. height: math.unit(21.6, "m"),
  24594. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24595. name: "Female",
  24596. image: {
  24597. source: "./media/characters/sthara/female.svg",
  24598. extra: 2516 / 2347,
  24599. bottom: 21.5 / 2537
  24600. }
  24601. },
  24602. male: {
  24603. height: math.unit(24, "m"),
  24604. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24605. name: "Male",
  24606. image: {
  24607. source: "./media/characters/sthara/male.svg",
  24608. extra: 2732 / 2607,
  24609. bottom: 23 / 2732
  24610. }
  24611. },
  24612. },
  24613. [
  24614. {
  24615. name: "Macro",
  24616. height: math.unit(21.6, "meters"),
  24617. default: true
  24618. },
  24619. ]
  24620. ))
  24621. characterMakers.push(() => makeCharacter(
  24622. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24623. {
  24624. front: {
  24625. height: math.unit(6 + 4 / 12, "feet"),
  24626. weight: math.unit(175, "lb"),
  24627. name: "Front",
  24628. image: {
  24629. source: "./media/characters/luka-bryzant/front.svg",
  24630. extra: 311 / 289,
  24631. bottom: 4 / 315
  24632. }
  24633. },
  24634. back: {
  24635. height: math.unit(6 + 4 / 12, "feet"),
  24636. weight: math.unit(175, "lb"),
  24637. name: "Back",
  24638. image: {
  24639. source: "./media/characters/luka-bryzant/back.svg",
  24640. extra: 311 / 289,
  24641. bottom: 3.8 / 313.7
  24642. }
  24643. },
  24644. },
  24645. [
  24646. {
  24647. name: "Micro",
  24648. height: math.unit(10, "inches")
  24649. },
  24650. {
  24651. name: "Normal",
  24652. height: math.unit(6 + 4 / 12, "feet"),
  24653. default: true
  24654. },
  24655. {
  24656. name: "Large",
  24657. height: math.unit(12, "feet")
  24658. },
  24659. ]
  24660. ))
  24661. characterMakers.push(() => makeCharacter(
  24662. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24663. {
  24664. front: {
  24665. height: math.unit(5 + 7 / 12, "feet"),
  24666. weight: math.unit(185, "lb"),
  24667. name: "Front",
  24668. image: {
  24669. source: "./media/characters/aman-aquila/front.svg",
  24670. extra: 1013 / 976,
  24671. bottom: 45.6 / 1057
  24672. }
  24673. },
  24674. side: {
  24675. height: math.unit(5 + 7 / 12, "feet"),
  24676. weight: math.unit(185, "lb"),
  24677. name: "Side",
  24678. image: {
  24679. source: "./media/characters/aman-aquila/side.svg",
  24680. extra: 1054 / 1011,
  24681. bottom: 15 / 1070
  24682. }
  24683. },
  24684. back: {
  24685. height: math.unit(5 + 7 / 12, "feet"),
  24686. weight: math.unit(185, "lb"),
  24687. name: "Back",
  24688. image: {
  24689. source: "./media/characters/aman-aquila/back.svg",
  24690. extra: 1026 / 970,
  24691. bottom: 12 / 1039
  24692. }
  24693. },
  24694. head: {
  24695. height: math.unit(1.211, "feet"),
  24696. name: "Head",
  24697. image: {
  24698. source: "./media/characters/aman-aquila/head.svg",
  24699. }
  24700. },
  24701. },
  24702. [
  24703. {
  24704. name: "Minimicro",
  24705. height: math.unit(0.057, "inches")
  24706. },
  24707. {
  24708. name: "Micro",
  24709. height: math.unit(7, "inches")
  24710. },
  24711. {
  24712. name: "Mini",
  24713. height: math.unit(3 + 7 / 12, "feet")
  24714. },
  24715. {
  24716. name: "Normal",
  24717. height: math.unit(5 + 7 / 12, "feet"),
  24718. default: true
  24719. },
  24720. {
  24721. name: "Macro",
  24722. height: math.unit(157 + 7 / 12, "feet")
  24723. },
  24724. {
  24725. name: "Megamacro",
  24726. height: math.unit(1557 + 7 / 12, "feet")
  24727. },
  24728. {
  24729. name: "Gigamacro",
  24730. height: math.unit(15557 + 7 / 12, "feet")
  24731. },
  24732. ]
  24733. ))
  24734. characterMakers.push(() => makeCharacter(
  24735. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24736. {
  24737. front: {
  24738. height: math.unit(3 + 2 / 12, "inches"),
  24739. weight: math.unit(0.3, "ounces"),
  24740. name: "Front",
  24741. image: {
  24742. source: "./media/characters/hiphae/front.svg",
  24743. extra: 1931 / 1683,
  24744. bottom: 24 / 1955
  24745. }
  24746. },
  24747. },
  24748. [
  24749. {
  24750. name: "Normal",
  24751. height: math.unit(3 + 1 / 2, "inches"),
  24752. default: true
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24758. {
  24759. front: {
  24760. height: math.unit(5 + 10 / 12, "feet"),
  24761. weight: math.unit(165, "lb"),
  24762. name: "Front",
  24763. image: {
  24764. source: "./media/characters/nicky/front.svg",
  24765. extra: 3144 / 2886,
  24766. bottom: 45.6 / 3192
  24767. }
  24768. },
  24769. back: {
  24770. height: math.unit(5 + 10 / 12, "feet"),
  24771. weight: math.unit(165, "lb"),
  24772. name: "Back",
  24773. image: {
  24774. source: "./media/characters/nicky/back.svg",
  24775. extra: 3055 / 2804,
  24776. bottom: 28.4 / 3087
  24777. }
  24778. },
  24779. frontclothed: {
  24780. height: math.unit(5 + 10 / 12, "feet"),
  24781. weight: math.unit(165, "lb"),
  24782. name: "Front-clothed",
  24783. image: {
  24784. source: "./media/characters/nicky/front-clothed.svg",
  24785. extra: 3184.9 / 2926.9,
  24786. bottom: 86.5 / 3239.9
  24787. }
  24788. },
  24789. foot: {
  24790. height: math.unit(1.16, "feet"),
  24791. name: "Foot",
  24792. image: {
  24793. source: "./media/characters/nicky/foot.svg"
  24794. }
  24795. },
  24796. feet: {
  24797. height: math.unit(1.34, "feet"),
  24798. name: "Feet",
  24799. image: {
  24800. source: "./media/characters/nicky/feet.svg"
  24801. }
  24802. },
  24803. maw: {
  24804. height: math.unit(0.9, "feet"),
  24805. name: "Maw",
  24806. image: {
  24807. source: "./media/characters/nicky/maw.svg"
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(5 + 10 / 12, "feet"),
  24815. default: true
  24816. },
  24817. {
  24818. name: "Macro",
  24819. height: math.unit(60, "feet")
  24820. },
  24821. {
  24822. name: "Megamacro",
  24823. height: math.unit(1, "mile")
  24824. },
  24825. ]
  24826. ))
  24827. characterMakers.push(() => makeCharacter(
  24828. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24829. {
  24830. side: {
  24831. height: math.unit(10, "feet"),
  24832. weight: math.unit(600, "lb"),
  24833. name: "Side",
  24834. image: {
  24835. source: "./media/characters/blair/side.svg",
  24836. bottom: 16.6 / 475,
  24837. extra: 458 / 431
  24838. }
  24839. },
  24840. },
  24841. [
  24842. {
  24843. name: "Micro",
  24844. height: math.unit(8, "inches")
  24845. },
  24846. {
  24847. name: "Normal",
  24848. height: math.unit(10, "feet"),
  24849. default: true
  24850. },
  24851. {
  24852. name: "Macro",
  24853. height: math.unit(180, "feet")
  24854. },
  24855. ]
  24856. ))
  24857. characterMakers.push(() => makeCharacter(
  24858. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24859. {
  24860. front: {
  24861. height: math.unit(5 + 4 / 12, "feet"),
  24862. weight: math.unit(125, "lb"),
  24863. name: "Front",
  24864. image: {
  24865. source: "./media/characters/fisher/front.svg",
  24866. extra: 444 / 390,
  24867. bottom: 2 / 444.8
  24868. }
  24869. },
  24870. },
  24871. [
  24872. {
  24873. name: "Micro",
  24874. height: math.unit(4, "inches")
  24875. },
  24876. {
  24877. name: "Normal",
  24878. height: math.unit(5 + 4 / 12, "feet"),
  24879. default: true
  24880. },
  24881. {
  24882. name: "Macro",
  24883. height: math.unit(100, "feet")
  24884. },
  24885. ]
  24886. ))
  24887. characterMakers.push(() => makeCharacter(
  24888. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24889. {
  24890. front: {
  24891. height: math.unit(6.71, "feet"),
  24892. weight: math.unit(200, "lb"),
  24893. capacity: math.unit(1000000, "people"),
  24894. name: "Front",
  24895. image: {
  24896. source: "./media/characters/gliss/front.svg",
  24897. extra: 2347 / 2231,
  24898. bottom: 113 / 2462
  24899. }
  24900. },
  24901. hammerspaceSize: {
  24902. height: math.unit(6.71 * 717, "feet"),
  24903. weight: math.unit(200, "lb"),
  24904. capacity: math.unit(1000000, "people"),
  24905. name: "Hammerspace Size",
  24906. image: {
  24907. source: "./media/characters/gliss/front.svg",
  24908. extra: 2347 / 2231,
  24909. bottom: 113 / 2462
  24910. }
  24911. },
  24912. },
  24913. [
  24914. {
  24915. name: "Normal",
  24916. height: math.unit(6.71, "feet"),
  24917. default: true
  24918. },
  24919. ]
  24920. ))
  24921. characterMakers.push(() => makeCharacter(
  24922. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24923. {
  24924. side: {
  24925. height: math.unit(1.44, "m"),
  24926. weight: math.unit(80, "kg"),
  24927. name: "Side",
  24928. image: {
  24929. source: "./media/characters/dune-anderson/side.svg",
  24930. bottom: 49 / 1426
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Wolf-sized",
  24937. height: math.unit(1.44, "meters")
  24938. },
  24939. {
  24940. name: "Normal",
  24941. height: math.unit(5.05, "meters"),
  24942. default: true
  24943. },
  24944. {
  24945. name: "Big",
  24946. height: math.unit(14.4, "meters")
  24947. },
  24948. {
  24949. name: "Huge",
  24950. height: math.unit(144, "meters")
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(7, "feet"),
  24959. weight: math.unit(425, "lb"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/hind/front.svg",
  24963. extra: 2091 / 1860,
  24964. bottom: 129 / 2220
  24965. }
  24966. },
  24967. back: {
  24968. height: math.unit(7, "feet"),
  24969. weight: math.unit(425, "lb"),
  24970. name: "Back",
  24971. image: {
  24972. source: "./media/characters/hind/back.svg",
  24973. extra: 2091 / 1860,
  24974. bottom: 24.6 / 2309
  24975. }
  24976. },
  24977. tail: {
  24978. height: math.unit(2.8, "feet"),
  24979. name: "Tail",
  24980. image: {
  24981. source: "./media/characters/hind/tail.svg"
  24982. }
  24983. },
  24984. head: {
  24985. height: math.unit(2.55, "feet"),
  24986. name: "Head",
  24987. image: {
  24988. source: "./media/characters/hind/head.svg"
  24989. }
  24990. },
  24991. },
  24992. [
  24993. {
  24994. name: "XS",
  24995. height: math.unit(0.7, "feet")
  24996. },
  24997. {
  24998. name: "Normal",
  24999. height: math.unit(7, "feet"),
  25000. default: true
  25001. },
  25002. {
  25003. name: "XL",
  25004. height: math.unit(70, "feet")
  25005. },
  25006. ]
  25007. ))
  25008. characterMakers.push(() => makeCharacter(
  25009. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25010. {
  25011. front: {
  25012. height: math.unit(2.1, "meters"),
  25013. weight: math.unit(150, "lb"),
  25014. name: "Front",
  25015. image: {
  25016. source: "./media/characters/tharquench-sizestealer/front.svg",
  25017. extra: 1605/1470,
  25018. bottom: 36/1641
  25019. }
  25020. },
  25021. frontAlt: {
  25022. height: math.unit(2.1, "meters"),
  25023. weight: math.unit(150, "lb"),
  25024. name: "Front (Alt)",
  25025. image: {
  25026. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25027. extra: 2318 / 2063,
  25028. bottom: 93.4 / 2410
  25029. }
  25030. },
  25031. },
  25032. [
  25033. {
  25034. name: "Nano",
  25035. height: math.unit(1, "mm")
  25036. },
  25037. {
  25038. name: "Micro",
  25039. height: math.unit(1, "cm")
  25040. },
  25041. {
  25042. name: "Normal",
  25043. height: math.unit(2.1, "meters"),
  25044. default: true
  25045. },
  25046. ]
  25047. ))
  25048. characterMakers.push(() => makeCharacter(
  25049. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25050. {
  25051. front: {
  25052. height: math.unit(7 + 5 / 12, "feet"),
  25053. weight: math.unit(357, "lb"),
  25054. name: "Front",
  25055. image: {
  25056. source: "./media/characters/solex-draconov/front.svg",
  25057. extra: 1993 / 1865,
  25058. bottom: 117 / 2111
  25059. }
  25060. },
  25061. },
  25062. [
  25063. {
  25064. name: "Natural Height",
  25065. height: math.unit(7 + 5 / 12, "feet"),
  25066. default: true
  25067. },
  25068. {
  25069. name: "Macro",
  25070. height: math.unit(350, "feet")
  25071. },
  25072. {
  25073. name: "Macro+",
  25074. height: math.unit(1000, "feet")
  25075. },
  25076. {
  25077. name: "Megamacro",
  25078. height: math.unit(20, "km")
  25079. },
  25080. {
  25081. name: "Megamacro+",
  25082. height: math.unit(1000, "km")
  25083. },
  25084. {
  25085. name: "Gigamacro",
  25086. height: math.unit(2.5, "Gm")
  25087. },
  25088. {
  25089. name: "Teramacro",
  25090. height: math.unit(15, "Tm")
  25091. },
  25092. {
  25093. name: "Galactic",
  25094. height: math.unit(30, "Zm")
  25095. },
  25096. {
  25097. name: "Universal",
  25098. height: math.unit(21000, "Ym")
  25099. },
  25100. {
  25101. name: "Omniversal",
  25102. height: math.unit(9.861e50, "Ym")
  25103. },
  25104. {
  25105. name: "Existential",
  25106. height: math.unit(1e300, "meters")
  25107. },
  25108. ]
  25109. ))
  25110. characterMakers.push(() => makeCharacter(
  25111. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25112. {
  25113. side: {
  25114. height: math.unit(25, "feet"),
  25115. weight: math.unit(90000, "lb"),
  25116. name: "Side",
  25117. image: {
  25118. source: "./media/characters/mandarax/side.svg",
  25119. extra: 614 / 332,
  25120. bottom: 55 / 630
  25121. }
  25122. },
  25123. head: {
  25124. height: math.unit(11.4, "feet"),
  25125. name: "Head",
  25126. image: {
  25127. source: "./media/characters/mandarax/head.svg"
  25128. }
  25129. },
  25130. belly: {
  25131. height: math.unit(33, "feet"),
  25132. name: "Belly",
  25133. capacity: math.unit(500, "people"),
  25134. image: {
  25135. source: "./media/characters/mandarax/belly.svg"
  25136. }
  25137. },
  25138. dick: {
  25139. height: math.unit(8.46, "feet"),
  25140. name: "Dick",
  25141. image: {
  25142. source: "./media/characters/mandarax/dick.svg"
  25143. }
  25144. },
  25145. top: {
  25146. height: math.unit(28, "meters"),
  25147. name: "Top",
  25148. image: {
  25149. source: "./media/characters/mandarax/top.svg"
  25150. }
  25151. },
  25152. },
  25153. [
  25154. {
  25155. name: "Normal",
  25156. height: math.unit(25, "feet"),
  25157. default: true
  25158. },
  25159. ]
  25160. ))
  25161. characterMakers.push(() => makeCharacter(
  25162. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25163. {
  25164. front: {
  25165. height: math.unit(5, "feet"),
  25166. weight: math.unit(90, "lb"),
  25167. name: "Front",
  25168. image: {
  25169. source: "./media/characters/pixil/front.svg",
  25170. extra: 2000 / 1618,
  25171. bottom: 12.3 / 2011
  25172. }
  25173. },
  25174. },
  25175. [
  25176. {
  25177. name: "Normal",
  25178. height: math.unit(5, "feet"),
  25179. default: true
  25180. },
  25181. {
  25182. name: "Megamacro",
  25183. height: math.unit(10, "miles"),
  25184. },
  25185. ]
  25186. ))
  25187. characterMakers.push(() => makeCharacter(
  25188. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25189. {
  25190. front: {
  25191. height: math.unit(7 + 2 / 12, "feet"),
  25192. weight: math.unit(200, "lb"),
  25193. name: "Front",
  25194. image: {
  25195. source: "./media/characters/angel/front.svg",
  25196. extra: 1830 / 1737,
  25197. bottom: 22.6 / 1854,
  25198. }
  25199. },
  25200. },
  25201. [
  25202. {
  25203. name: "Normal",
  25204. height: math.unit(7 + 2 / 12, "feet"),
  25205. default: true
  25206. },
  25207. {
  25208. name: "Macro",
  25209. height: math.unit(1000, "feet")
  25210. },
  25211. {
  25212. name: "Megamacro",
  25213. height: math.unit(2, "miles")
  25214. },
  25215. {
  25216. name: "Gigamacro",
  25217. height: math.unit(20, "earths")
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25223. {
  25224. front: {
  25225. height: math.unit(5, "feet"),
  25226. weight: math.unit(180, "lb"),
  25227. name: "Front",
  25228. image: {
  25229. source: "./media/characters/mekana/front.svg",
  25230. extra: 1671 / 1605,
  25231. bottom: 3.5 / 1691
  25232. }
  25233. },
  25234. side: {
  25235. height: math.unit(5, "feet"),
  25236. weight: math.unit(180, "lb"),
  25237. name: "Side",
  25238. image: {
  25239. source: "./media/characters/mekana/side.svg",
  25240. extra: 1671 / 1605,
  25241. bottom: 3.5 / 1691
  25242. }
  25243. },
  25244. back: {
  25245. height: math.unit(5, "feet"),
  25246. weight: math.unit(180, "lb"),
  25247. name: "Back",
  25248. image: {
  25249. source: "./media/characters/mekana/back.svg",
  25250. extra: 1671 / 1605,
  25251. bottom: 3.5 / 1691
  25252. }
  25253. },
  25254. },
  25255. [
  25256. {
  25257. name: "Normal",
  25258. height: math.unit(5, "feet"),
  25259. default: true
  25260. },
  25261. ]
  25262. ))
  25263. characterMakers.push(() => makeCharacter(
  25264. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25265. {
  25266. front: {
  25267. height: math.unit(4 + 6 / 12, "feet"),
  25268. weight: math.unit(80, "lb"),
  25269. name: "Front",
  25270. image: {
  25271. source: "./media/characters/pixie/front.svg",
  25272. extra: 1924 / 1825,
  25273. bottom: 22.4 / 1946
  25274. }
  25275. },
  25276. },
  25277. [
  25278. {
  25279. name: "Normal",
  25280. height: math.unit(4 + 6 / 12, "feet"),
  25281. default: true
  25282. },
  25283. {
  25284. name: "Macro",
  25285. height: math.unit(40, "feet")
  25286. },
  25287. ]
  25288. ))
  25289. characterMakers.push(() => makeCharacter(
  25290. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25291. {
  25292. front: {
  25293. height: math.unit(2.1, "meters"),
  25294. weight: math.unit(200, "lb"),
  25295. name: "Front",
  25296. image: {
  25297. source: "./media/characters/the-lascivious/front.svg",
  25298. extra: 1 / 0.893,
  25299. bottom: 3.5 / 573.7
  25300. }
  25301. },
  25302. },
  25303. [
  25304. {
  25305. name: "Human Scale",
  25306. height: math.unit(2.1, "meters")
  25307. },
  25308. {
  25309. name: "Wolxi Scale",
  25310. height: math.unit(46.2, "m"),
  25311. default: true
  25312. },
  25313. {
  25314. name: "Boinker of Buildings",
  25315. height: math.unit(10, "km")
  25316. },
  25317. {
  25318. name: "Shagger of Skyscrapers",
  25319. height: math.unit(40, "km")
  25320. },
  25321. {
  25322. name: "Banger of Boroughs",
  25323. height: math.unit(4000, "km")
  25324. },
  25325. {
  25326. name: "Screwer of States",
  25327. height: math.unit(100000, "km")
  25328. },
  25329. {
  25330. name: "Pounder of Planets",
  25331. height: math.unit(2000000, "km")
  25332. },
  25333. ]
  25334. ))
  25335. characterMakers.push(() => makeCharacter(
  25336. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25337. {
  25338. front: {
  25339. height: math.unit(6, "feet"),
  25340. weight: math.unit(150, "lb"),
  25341. name: "Front",
  25342. image: {
  25343. source: "./media/characters/aj/front.svg",
  25344. extra: 2039 / 1562,
  25345. bottom: 40 / 2079
  25346. }
  25347. },
  25348. },
  25349. [
  25350. {
  25351. name: "Normal",
  25352. height: math.unit(11 + 6 / 12, "feet"),
  25353. default: true
  25354. },
  25355. {
  25356. name: "Megamacro",
  25357. height: math.unit(60, "megameters")
  25358. },
  25359. ]
  25360. ))
  25361. characterMakers.push(() => makeCharacter(
  25362. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25363. {
  25364. side: {
  25365. height: math.unit(31 + 8 / 12, "feet"),
  25366. weight: math.unit(75000, "kg"),
  25367. name: "Side",
  25368. image: {
  25369. source: "./media/characters/koros/side.svg",
  25370. extra: 1442 / 1297,
  25371. bottom: 122.7 / 1562
  25372. }
  25373. },
  25374. dicksKingsCrown: {
  25375. height: math.unit(6, "feet"),
  25376. name: "Dicks (King's Crown)",
  25377. image: {
  25378. source: "./media/characters/koros/dicks-kings-crown.svg"
  25379. }
  25380. },
  25381. dicksTailSet: {
  25382. height: math.unit(3, "feet"),
  25383. name: "Dicks (Tail Set)",
  25384. image: {
  25385. source: "./media/characters/koros/dicks-tail-set.svg"
  25386. }
  25387. },
  25388. dickCumming: {
  25389. height: math.unit(7.98, "feet"),
  25390. name: "Dick (Cumming)",
  25391. image: {
  25392. source: "./media/characters/koros/dick-cumming.svg"
  25393. }
  25394. },
  25395. dicksBack: {
  25396. height: math.unit(5.9, "feet"),
  25397. name: "Dicks (Back)",
  25398. image: {
  25399. source: "./media/characters/koros/dicks-back.svg"
  25400. }
  25401. },
  25402. dicksFront: {
  25403. height: math.unit(3.72, "feet"),
  25404. name: "Dicks (Front)",
  25405. image: {
  25406. source: "./media/characters/koros/dicks-front.svg"
  25407. }
  25408. },
  25409. dicksPeeking: {
  25410. height: math.unit(3.0, "feet"),
  25411. name: "Dicks (Peeking)",
  25412. image: {
  25413. source: "./media/characters/koros/dicks-peeking.svg"
  25414. }
  25415. },
  25416. eye: {
  25417. height: math.unit(1.7, "feet"),
  25418. name: "Eye",
  25419. image: {
  25420. source: "./media/characters/koros/eye.svg"
  25421. }
  25422. },
  25423. headFront: {
  25424. height: math.unit(11.69, "feet"),
  25425. name: "Head (Front)",
  25426. image: {
  25427. source: "./media/characters/koros/head-front.svg"
  25428. }
  25429. },
  25430. headSide: {
  25431. height: math.unit(14, "feet"),
  25432. name: "Head (Side)",
  25433. image: {
  25434. source: "./media/characters/koros/head-side.svg"
  25435. }
  25436. },
  25437. leg: {
  25438. height: math.unit(17, "feet"),
  25439. name: "Leg",
  25440. image: {
  25441. source: "./media/characters/koros/leg.svg"
  25442. }
  25443. },
  25444. mawSide: {
  25445. height: math.unit(12.8, "feet"),
  25446. name: "Maw (Side)",
  25447. image: {
  25448. source: "./media/characters/koros/maw-side.svg"
  25449. }
  25450. },
  25451. mawSpitting: {
  25452. height: math.unit(17, "feet"),
  25453. name: "Maw (Spitting)",
  25454. image: {
  25455. source: "./media/characters/koros/maw-spitting.svg"
  25456. }
  25457. },
  25458. slit: {
  25459. height: math.unit(2.8, "feet"),
  25460. name: "Slit",
  25461. image: {
  25462. source: "./media/characters/koros/slit.svg"
  25463. }
  25464. },
  25465. stomach: {
  25466. height: math.unit(6.8, "feet"),
  25467. capacity: math.unit(20, "people"),
  25468. name: "Stomach",
  25469. image: {
  25470. source: "./media/characters/koros/stomach.svg"
  25471. }
  25472. },
  25473. wingspanBottom: {
  25474. height: math.unit(114, "feet"),
  25475. name: "Wingspan (Bottom)",
  25476. image: {
  25477. source: "./media/characters/koros/wingspan-bottom.svg"
  25478. }
  25479. },
  25480. wingspanTop: {
  25481. height: math.unit(104, "feet"),
  25482. name: "Wingspan (Top)",
  25483. image: {
  25484. source: "./media/characters/koros/wingspan-top.svg"
  25485. }
  25486. },
  25487. },
  25488. [
  25489. {
  25490. name: "Normal",
  25491. height: math.unit(31 + 8 / 12, "feet"),
  25492. default: true
  25493. },
  25494. ]
  25495. ))
  25496. characterMakers.push(() => makeCharacter(
  25497. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25498. {
  25499. front: {
  25500. height: math.unit(18 + 5 / 12, "feet"),
  25501. weight: math.unit(3750, "kg"),
  25502. name: "Front",
  25503. image: {
  25504. source: "./media/characters/vexx/front.svg",
  25505. extra: 426 / 396,
  25506. bottom: 31.5 / 458
  25507. }
  25508. },
  25509. maw: {
  25510. height: math.unit(6, "feet"),
  25511. name: "Maw",
  25512. image: {
  25513. source: "./media/characters/vexx/maw.svg"
  25514. }
  25515. },
  25516. },
  25517. [
  25518. {
  25519. name: "Normal",
  25520. height: math.unit(18 + 5 / 12, "feet"),
  25521. default: true
  25522. },
  25523. ]
  25524. ))
  25525. characterMakers.push(() => makeCharacter(
  25526. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25527. {
  25528. front: {
  25529. height: math.unit(17 + 6 / 12, "feet"),
  25530. weight: math.unit(150, "lb"),
  25531. name: "Front",
  25532. image: {
  25533. source: "./media/characters/baadra/front.svg",
  25534. extra: 3137 / 2890,
  25535. bottom: 168.4 / 3305
  25536. }
  25537. },
  25538. back: {
  25539. height: math.unit(17 + 6 / 12, "feet"),
  25540. weight: math.unit(150, "lb"),
  25541. name: "Back",
  25542. image: {
  25543. source: "./media/characters/baadra/back.svg",
  25544. extra: 3142 / 2890,
  25545. bottom: 220 / 3371
  25546. }
  25547. },
  25548. head: {
  25549. height: math.unit(5.45, "feet"),
  25550. name: "Head",
  25551. image: {
  25552. source: "./media/characters/baadra/head.svg"
  25553. }
  25554. },
  25555. headAngry: {
  25556. height: math.unit(4.95, "feet"),
  25557. name: "Head (Angry)",
  25558. image: {
  25559. source: "./media/characters/baadra/head-angry.svg"
  25560. }
  25561. },
  25562. headOpen: {
  25563. height: math.unit(6, "feet"),
  25564. name: "Head (Open)",
  25565. image: {
  25566. source: "./media/characters/baadra/head-open.svg"
  25567. }
  25568. },
  25569. },
  25570. [
  25571. {
  25572. name: "Normal",
  25573. height: math.unit(17 + 6 / 12, "feet"),
  25574. default: true
  25575. },
  25576. ]
  25577. ))
  25578. characterMakers.push(() => makeCharacter(
  25579. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25580. {
  25581. front: {
  25582. height: math.unit(7 + 3 / 12, "feet"),
  25583. weight: math.unit(180, "lb"),
  25584. name: "Front",
  25585. image: {
  25586. source: "./media/characters/juri/front.svg",
  25587. extra: 1401 / 1237,
  25588. bottom: 18.5 / 1418
  25589. }
  25590. },
  25591. side: {
  25592. height: math.unit(7 + 3 / 12, "feet"),
  25593. weight: math.unit(180, "lb"),
  25594. name: "Side",
  25595. image: {
  25596. source: "./media/characters/juri/side.svg",
  25597. extra: 1424 / 1242,
  25598. bottom: 18.5 / 1447
  25599. }
  25600. },
  25601. sitting: {
  25602. height: math.unit(6, "feet"),
  25603. weight: math.unit(180, "lb"),
  25604. name: "Sitting",
  25605. image: {
  25606. source: "./media/characters/juri/sitting.svg",
  25607. extra: 1270 / 1143,
  25608. bottom: 100 / 1343
  25609. }
  25610. },
  25611. back: {
  25612. height: math.unit(7 + 3 / 12, "feet"),
  25613. weight: math.unit(180, "lb"),
  25614. name: "Back",
  25615. image: {
  25616. source: "./media/characters/juri/back.svg",
  25617. extra: 1377 / 1240,
  25618. bottom: 23.7 / 1405
  25619. }
  25620. },
  25621. maw: {
  25622. height: math.unit(2.8, "feet"),
  25623. name: "Maw",
  25624. image: {
  25625. source: "./media/characters/juri/maw.svg"
  25626. }
  25627. },
  25628. stomach: {
  25629. height: math.unit(0.89, "feet"),
  25630. capacity: math.unit(4, "liters"),
  25631. name: "Stomach",
  25632. image: {
  25633. source: "./media/characters/juri/stomach.svg"
  25634. }
  25635. },
  25636. },
  25637. [
  25638. {
  25639. name: "Normal",
  25640. height: math.unit(7 + 3 / 12, "feet"),
  25641. default: true
  25642. },
  25643. ]
  25644. ))
  25645. characterMakers.push(() => makeCharacter(
  25646. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25647. {
  25648. fox: {
  25649. height: math.unit(5 + 6 / 12, "feet"),
  25650. weight: math.unit(140, "lb"),
  25651. name: "Fox",
  25652. image: {
  25653. source: "./media/characters/maxene-sita/fox.svg",
  25654. extra: 146 / 138,
  25655. bottom: 2.1 / 148.19
  25656. }
  25657. },
  25658. foxLaying: {
  25659. height: math.unit(1.70, "feet"),
  25660. weight: math.unit(140, "lb"),
  25661. name: "Fox (Laying)",
  25662. image: {
  25663. source: "./media/characters/maxene-sita/fox-laying.svg",
  25664. extra: 910 / 572,
  25665. bottom: 71 / 981
  25666. }
  25667. },
  25668. kitsune: {
  25669. height: math.unit(10, "feet"),
  25670. weight: math.unit(800, "lb"),
  25671. name: "Kitsune",
  25672. image: {
  25673. source: "./media/characters/maxene-sita/kitsune.svg",
  25674. extra: 185 / 176,
  25675. bottom: 4.7 / 189.9
  25676. }
  25677. },
  25678. hellhound: {
  25679. height: math.unit(10, "feet"),
  25680. weight: math.unit(700, "lb"),
  25681. name: "Hellhound",
  25682. image: {
  25683. source: "./media/characters/maxene-sita/hellhound.svg",
  25684. extra: 1600 / 1545,
  25685. bottom: 81 / 1681
  25686. }
  25687. },
  25688. },
  25689. [
  25690. {
  25691. name: "Normal",
  25692. height: math.unit(5 + 6 / 12, "feet"),
  25693. default: true
  25694. },
  25695. ]
  25696. ))
  25697. characterMakers.push(() => makeCharacter(
  25698. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25699. {
  25700. front: {
  25701. height: math.unit(3 + 4 / 12, "feet"),
  25702. weight: math.unit(70, "lb"),
  25703. name: "Front",
  25704. image: {
  25705. source: "./media/characters/maia/front.svg",
  25706. extra: 227 / 219.5,
  25707. bottom: 40 / 267
  25708. }
  25709. },
  25710. back: {
  25711. height: math.unit(3 + 4 / 12, "feet"),
  25712. weight: math.unit(70, "lb"),
  25713. name: "Back",
  25714. image: {
  25715. source: "./media/characters/maia/back.svg",
  25716. extra: 237 / 225
  25717. }
  25718. },
  25719. },
  25720. [
  25721. {
  25722. name: "Normal",
  25723. height: math.unit(3 + 4 / 12, "feet"),
  25724. default: true
  25725. },
  25726. ]
  25727. ))
  25728. characterMakers.push(() => makeCharacter(
  25729. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25730. {
  25731. front: {
  25732. height: math.unit(5 + 10 / 12, "feet"),
  25733. weight: math.unit(197, "lb"),
  25734. name: "Front",
  25735. image: {
  25736. source: "./media/characters/jabaro/front.svg",
  25737. extra: 225 / 216,
  25738. bottom: 5.06 / 230
  25739. }
  25740. },
  25741. back: {
  25742. height: math.unit(5 + 10 / 12, "feet"),
  25743. weight: math.unit(197, "lb"),
  25744. name: "Back",
  25745. image: {
  25746. source: "./media/characters/jabaro/back.svg",
  25747. extra: 225 / 219,
  25748. bottom: 1.9 / 227
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "Normal",
  25755. height: math.unit(5 + 10 / 12, "feet"),
  25756. default: true
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25762. {
  25763. front: {
  25764. height: math.unit(5 + 8 / 12, "feet"),
  25765. weight: math.unit(139, "lb"),
  25766. name: "Front",
  25767. image: {
  25768. source: "./media/characters/risa/front.svg",
  25769. extra: 270 / 260,
  25770. bottom: 11.2 / 282
  25771. }
  25772. },
  25773. back: {
  25774. height: math.unit(5 + 8 / 12, "feet"),
  25775. weight: math.unit(139, "lb"),
  25776. name: "Back",
  25777. image: {
  25778. source: "./media/characters/risa/back.svg",
  25779. extra: 264 / 255,
  25780. bottom: 4 / 268
  25781. }
  25782. },
  25783. },
  25784. [
  25785. {
  25786. name: "Normal",
  25787. height: math.unit(5 + 8 / 12, "feet"),
  25788. default: true
  25789. },
  25790. ]
  25791. ))
  25792. characterMakers.push(() => makeCharacter(
  25793. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25794. {
  25795. front: {
  25796. height: math.unit(2 + 11 / 12, "feet"),
  25797. weight: math.unit(30, "lb"),
  25798. name: "Front",
  25799. image: {
  25800. source: "./media/characters/weatley/front.svg",
  25801. bottom: 10.7 / 414,
  25802. extra: 403.5 / 362
  25803. }
  25804. },
  25805. back: {
  25806. height: math.unit(2 + 11 / 12, "feet"),
  25807. weight: math.unit(30, "lb"),
  25808. name: "Back",
  25809. image: {
  25810. source: "./media/characters/weatley/back.svg",
  25811. bottom: 10.7 / 414,
  25812. extra: 403.5 / 362
  25813. }
  25814. },
  25815. },
  25816. [
  25817. {
  25818. name: "Normal",
  25819. height: math.unit(2 + 11 / 12, "feet"),
  25820. default: true
  25821. },
  25822. ]
  25823. ))
  25824. characterMakers.push(() => makeCharacter(
  25825. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25826. {
  25827. front: {
  25828. height: math.unit(5 + 2 / 12, "feet"),
  25829. weight: math.unit(50, "kg"),
  25830. name: "Front",
  25831. image: {
  25832. source: "./media/characters/mercury-crescent/front.svg",
  25833. extra: 1088 / 1033,
  25834. bottom: 18.9 / 1109
  25835. }
  25836. },
  25837. },
  25838. [
  25839. {
  25840. name: "Normal",
  25841. height: math.unit(5 + 2 / 12, "feet"),
  25842. default: true
  25843. },
  25844. ]
  25845. ))
  25846. characterMakers.push(() => makeCharacter(
  25847. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25848. {
  25849. front: {
  25850. height: math.unit(2, "feet"),
  25851. weight: math.unit(15, "kg"),
  25852. name: "Front",
  25853. image: {
  25854. source: "./media/characters/diamond-jones/front.svg",
  25855. extra: 727/723,
  25856. bottom: 46/773
  25857. }
  25858. },
  25859. },
  25860. [
  25861. {
  25862. name: "Normal",
  25863. height: math.unit(2, "feet"),
  25864. default: true
  25865. },
  25866. ]
  25867. ))
  25868. characterMakers.push(() => makeCharacter(
  25869. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25870. {
  25871. front: {
  25872. height: math.unit(3, "feet"),
  25873. weight: math.unit(30, "kg"),
  25874. name: "Front",
  25875. image: {
  25876. source: "./media/characters/sweet-bit/front.svg",
  25877. extra: 675 / 567,
  25878. bottom: 27.7 / 703
  25879. }
  25880. },
  25881. },
  25882. [
  25883. {
  25884. name: "Normal",
  25885. height: math.unit(3, "feet"),
  25886. default: true
  25887. },
  25888. ]
  25889. ))
  25890. characterMakers.push(() => makeCharacter(
  25891. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25892. {
  25893. side: {
  25894. height: math.unit(9.178, "feet"),
  25895. weight: math.unit(500, "lb"),
  25896. name: "Side",
  25897. image: {
  25898. source: "./media/characters/umbrazen/side.svg",
  25899. extra: 1730 / 1473,
  25900. bottom: 34.6 / 1765
  25901. }
  25902. },
  25903. },
  25904. [
  25905. {
  25906. name: "Normal",
  25907. height: math.unit(9.178, "feet"),
  25908. default: true
  25909. },
  25910. ]
  25911. ))
  25912. characterMakers.push(() => makeCharacter(
  25913. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25914. {
  25915. front: {
  25916. height: math.unit(10, "feet"),
  25917. weight: math.unit(750, "lb"),
  25918. name: "Front",
  25919. image: {
  25920. source: "./media/characters/arlist/front.svg",
  25921. extra: 961 / 778,
  25922. bottom: 6.2 / 986
  25923. }
  25924. },
  25925. },
  25926. [
  25927. {
  25928. name: "Normal",
  25929. height: math.unit(10, "feet"),
  25930. default: true
  25931. },
  25932. ]
  25933. ))
  25934. characterMakers.push(() => makeCharacter(
  25935. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25936. {
  25937. front: {
  25938. height: math.unit(5 + 1 / 12, "feet"),
  25939. weight: math.unit(110, "lb"),
  25940. name: "Front",
  25941. image: {
  25942. source: "./media/characters/aradel/front.svg",
  25943. extra: 324 / 303,
  25944. bottom: 3.6 / 329.4
  25945. }
  25946. },
  25947. },
  25948. [
  25949. {
  25950. name: "Normal",
  25951. height: math.unit(5 + 1 / 12, "feet"),
  25952. default: true
  25953. },
  25954. ]
  25955. ))
  25956. characterMakers.push(() => makeCharacter(
  25957. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25958. {
  25959. front: {
  25960. height: math.unit(3 + 8 / 12, "feet"),
  25961. weight: math.unit(50, "lb"),
  25962. name: "Front",
  25963. image: {
  25964. source: "./media/characters/serryn/front.svg",
  25965. extra: 1792 / 1656,
  25966. bottom: 43.5 / 1840
  25967. }
  25968. },
  25969. },
  25970. [
  25971. {
  25972. name: "Normal",
  25973. height: math.unit(3 + 8 / 12, "feet"),
  25974. default: true
  25975. },
  25976. ]
  25977. ))
  25978. characterMakers.push(() => makeCharacter(
  25979. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25980. {
  25981. front: {
  25982. height: math.unit(7 + 10 / 12, "feet"),
  25983. weight: math.unit(255, "lb"),
  25984. name: "Front",
  25985. image: {
  25986. source: "./media/characters/xavier-thyme/front.svg",
  25987. extra: 3733 / 3642,
  25988. bottom: 131 / 3869
  25989. }
  25990. },
  25991. frontRaven: {
  25992. height: math.unit(7 + 10 / 12, "feet"),
  25993. weight: math.unit(255, "lb"),
  25994. name: "Front (Raven)",
  25995. image: {
  25996. source: "./media/characters/xavier-thyme/front-raven.svg",
  25997. extra: 4385 / 3642,
  25998. bottom: 131 / 4517
  25999. }
  26000. },
  26001. },
  26002. [
  26003. {
  26004. name: "Normal",
  26005. height: math.unit(7 + 10 / 12, "feet"),
  26006. default: true
  26007. },
  26008. ]
  26009. ))
  26010. characterMakers.push(() => makeCharacter(
  26011. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26012. {
  26013. front: {
  26014. height: math.unit(1.6, "m"),
  26015. weight: math.unit(50, "kg"),
  26016. name: "Front",
  26017. image: {
  26018. source: "./media/characters/kiki/front.svg",
  26019. extra: 4682 / 3610,
  26020. bottom: 115 / 4777
  26021. }
  26022. },
  26023. },
  26024. [
  26025. {
  26026. name: "Normal",
  26027. height: math.unit(1.6, "meters"),
  26028. default: true
  26029. },
  26030. ]
  26031. ))
  26032. characterMakers.push(() => makeCharacter(
  26033. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26034. {
  26035. front: {
  26036. height: math.unit(50, "m"),
  26037. weight: math.unit(500, "tonnes"),
  26038. name: "Front",
  26039. image: {
  26040. source: "./media/characters/ryoko/front.svg",
  26041. extra: 4632 / 3926,
  26042. bottom: 193 / 4823
  26043. }
  26044. },
  26045. },
  26046. [
  26047. {
  26048. name: "Normal",
  26049. height: math.unit(50, "meters"),
  26050. default: true
  26051. },
  26052. ]
  26053. ))
  26054. characterMakers.push(() => makeCharacter(
  26055. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26056. {
  26057. front: {
  26058. height: math.unit(30, "m"),
  26059. weight: math.unit(22, "tonnes"),
  26060. name: "Front",
  26061. image: {
  26062. source: "./media/characters/elio/front.svg",
  26063. extra: 4582 / 3720,
  26064. bottom: 236 / 4828
  26065. }
  26066. },
  26067. },
  26068. [
  26069. {
  26070. name: "Normal",
  26071. height: math.unit(30, "meters"),
  26072. default: true
  26073. },
  26074. ]
  26075. ))
  26076. characterMakers.push(() => makeCharacter(
  26077. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26078. {
  26079. front: {
  26080. height: math.unit(6 + 3 / 12, "feet"),
  26081. weight: math.unit(120, "lb"),
  26082. name: "Front",
  26083. image: {
  26084. source: "./media/characters/azura/front.svg",
  26085. extra: 1149 / 1135,
  26086. bottom: 45 / 1194
  26087. }
  26088. },
  26089. frontClothed: {
  26090. height: math.unit(6 + 3 / 12, "feet"),
  26091. weight: math.unit(120, "lb"),
  26092. name: "Front (Clothed)",
  26093. image: {
  26094. source: "./media/characters/azura/front-clothed.svg",
  26095. extra: 1149 / 1135,
  26096. bottom: 45 / 1194
  26097. }
  26098. },
  26099. },
  26100. [
  26101. {
  26102. name: "Normal",
  26103. height: math.unit(6 + 3 / 12, "feet"),
  26104. default: true
  26105. },
  26106. {
  26107. name: "Macro",
  26108. height: math.unit(20 + 6 / 12, "feet")
  26109. },
  26110. {
  26111. name: "Megamacro",
  26112. height: math.unit(12, "miles")
  26113. },
  26114. {
  26115. name: "Gigamacro",
  26116. height: math.unit(10000, "miles")
  26117. },
  26118. {
  26119. name: "Teramacro",
  26120. height: math.unit(900000, "miles")
  26121. },
  26122. ]
  26123. ))
  26124. characterMakers.push(() => makeCharacter(
  26125. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26126. {
  26127. front: {
  26128. height: math.unit(12, "feet"),
  26129. weight: math.unit(1, "ton"),
  26130. capacity: math.unit(660000, "gallons"),
  26131. name: "Front",
  26132. image: {
  26133. source: "./media/characters/zeus/front.svg",
  26134. extra: 5005 / 4717,
  26135. bottom: 363 / 5388
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Normal",
  26142. height: math.unit(12, "feet")
  26143. },
  26144. {
  26145. name: "Preferred Size",
  26146. height: math.unit(0.5, "miles"),
  26147. default: true
  26148. },
  26149. {
  26150. name: "Giga Horse",
  26151. height: math.unit(300, "miles")
  26152. },
  26153. {
  26154. name: "Riding Planets",
  26155. height: math.unit(30, "megameters")
  26156. },
  26157. {
  26158. name: "Cosmic Giant",
  26159. height: math.unit(3, "zettameters")
  26160. },
  26161. {
  26162. name: "Breeding God",
  26163. height: math.unit(9.92e22, "yottameters")
  26164. },
  26165. ]
  26166. ))
  26167. characterMakers.push(() => makeCharacter(
  26168. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26169. {
  26170. side: {
  26171. height: math.unit(9, "feet"),
  26172. weight: math.unit(1500, "kg"),
  26173. name: "Side",
  26174. image: {
  26175. source: "./media/characters/fang/side.svg",
  26176. extra: 924 / 866,
  26177. bottom: 47.5 / 972.3
  26178. }
  26179. },
  26180. },
  26181. [
  26182. {
  26183. name: "Normal",
  26184. height: math.unit(9, "feet"),
  26185. default: true
  26186. },
  26187. {
  26188. name: "Macro",
  26189. height: math.unit(75 + 6 / 12, "feet")
  26190. },
  26191. {
  26192. name: "Teramacro",
  26193. height: math.unit(50000, "miles")
  26194. },
  26195. ]
  26196. ))
  26197. characterMakers.push(() => makeCharacter(
  26198. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26199. {
  26200. front: {
  26201. height: math.unit(10, "feet"),
  26202. weight: math.unit(2, "tons"),
  26203. name: "Front",
  26204. image: {
  26205. source: "./media/characters/rekhit/front.svg",
  26206. extra: 2796 / 2590,
  26207. bottom: 225 / 3022
  26208. }
  26209. },
  26210. },
  26211. [
  26212. {
  26213. name: "Normal",
  26214. height: math.unit(10, "feet"),
  26215. default: true
  26216. },
  26217. {
  26218. name: "Macro",
  26219. height: math.unit(500, "feet")
  26220. },
  26221. ]
  26222. ))
  26223. characterMakers.push(() => makeCharacter(
  26224. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26225. {
  26226. front: {
  26227. height: math.unit(7 + 6.451 / 12, "feet"),
  26228. weight: math.unit(310, "lb"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/dahlia-verrick/front.svg",
  26232. extra: 1488 / 1365,
  26233. bottom: 6.2 / 1495
  26234. }
  26235. },
  26236. back: {
  26237. height: math.unit(7 + 6.451 / 12, "feet"),
  26238. weight: math.unit(310, "lb"),
  26239. name: "Back",
  26240. image: {
  26241. source: "./media/characters/dahlia-verrick/back.svg",
  26242. extra: 1472 / 1351,
  26243. bottom: 5.28 / 1477
  26244. }
  26245. },
  26246. frontBusiness: {
  26247. height: math.unit(7 + 6.451 / 12, "feet"),
  26248. weight: math.unit(200, "lb"),
  26249. name: "Front (Business)",
  26250. image: {
  26251. source: "./media/characters/dahlia-verrick/front-business.svg",
  26252. extra: 1478 / 1381,
  26253. bottom: 5.5 / 1484
  26254. }
  26255. },
  26256. frontCasual: {
  26257. height: math.unit(7 + 6.451 / 12, "feet"),
  26258. weight: math.unit(200, "lb"),
  26259. name: "Front (Casual)",
  26260. image: {
  26261. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26262. extra: 1478 / 1381,
  26263. bottom: 5.5 / 1484
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Travel-Sized",
  26270. height: math.unit(7.45, "inches")
  26271. },
  26272. {
  26273. name: "Normal",
  26274. height: math.unit(7 + 6.451 / 12, "feet"),
  26275. default: true
  26276. },
  26277. {
  26278. name: "Hitting the Town",
  26279. height: math.unit(37 + 8 / 12, "feet")
  26280. },
  26281. {
  26282. name: "Stomp in the Suburbs",
  26283. height: math.unit(964 + 9.728 / 12, "feet")
  26284. },
  26285. {
  26286. name: "Sit on the City",
  26287. height: math.unit(61747 + 10.592 / 12, "feet")
  26288. },
  26289. {
  26290. name: "Glomp the Globe",
  26291. height: math.unit(252919327 + 4.832 / 12, "feet")
  26292. },
  26293. ]
  26294. ))
  26295. characterMakers.push(() => makeCharacter(
  26296. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26297. {
  26298. front: {
  26299. height: math.unit(6 + 4 / 12, "feet"),
  26300. weight: math.unit(320, "lb"),
  26301. name: "Front",
  26302. image: {
  26303. source: "./media/characters/balina-mahigan/front.svg",
  26304. extra: 447 / 428,
  26305. bottom: 18 / 466
  26306. }
  26307. },
  26308. back: {
  26309. height: math.unit(6 + 4 / 12, "feet"),
  26310. weight: math.unit(320, "lb"),
  26311. name: "Back",
  26312. image: {
  26313. source: "./media/characters/balina-mahigan/back.svg",
  26314. extra: 445 / 428,
  26315. bottom: 4.07 / 448
  26316. }
  26317. },
  26318. arm: {
  26319. height: math.unit(1.88, "feet"),
  26320. name: "Arm",
  26321. image: {
  26322. source: "./media/characters/balina-mahigan/arm.svg"
  26323. }
  26324. },
  26325. backPort: {
  26326. height: math.unit(0.685, "feet"),
  26327. name: "Back Port",
  26328. image: {
  26329. source: "./media/characters/balina-mahigan/back-port.svg"
  26330. }
  26331. },
  26332. hoofpaw: {
  26333. height: math.unit(1.41, "feet"),
  26334. name: "Hoofpaw",
  26335. image: {
  26336. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26337. }
  26338. },
  26339. leftHandBack: {
  26340. height: math.unit(0.938, "feet"),
  26341. name: "Left Hand (Back)",
  26342. image: {
  26343. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26344. }
  26345. },
  26346. leftHandFront: {
  26347. height: math.unit(0.938, "feet"),
  26348. name: "Left Hand (Front)",
  26349. image: {
  26350. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26351. }
  26352. },
  26353. rightHandBack: {
  26354. height: math.unit(0.95, "feet"),
  26355. name: "Right Hand (Back)",
  26356. image: {
  26357. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26358. }
  26359. },
  26360. rightHandFront: {
  26361. height: math.unit(0.95, "feet"),
  26362. name: "Right Hand (Front)",
  26363. image: {
  26364. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26365. }
  26366. },
  26367. },
  26368. [
  26369. {
  26370. name: "Normal",
  26371. height: math.unit(6 + 4 / 12, "feet"),
  26372. default: true
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26378. {
  26379. front: {
  26380. height: math.unit(6, "feet"),
  26381. weight: math.unit(320, "lb"),
  26382. name: "Front",
  26383. image: {
  26384. source: "./media/characters/balina-mejeri/front.svg",
  26385. extra: 517 / 488,
  26386. bottom: 44.2 / 561
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Normal",
  26393. height: math.unit(6 + 4 / 12, "feet")
  26394. },
  26395. {
  26396. name: "Business",
  26397. height: math.unit(155, "feet"),
  26398. default: true
  26399. },
  26400. ]
  26401. ))
  26402. characterMakers.push(() => makeCharacter(
  26403. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26404. {
  26405. kneeling: {
  26406. height: math.unit(6 + 4 / 12, "feet"),
  26407. weight: math.unit(300 * 20, "lb"),
  26408. name: "Kneeling",
  26409. image: {
  26410. source: "./media/characters/balbarian/kneeling.svg",
  26411. extra: 922 / 862,
  26412. bottom: 42.4 / 965
  26413. }
  26414. },
  26415. },
  26416. [
  26417. {
  26418. name: "Normal",
  26419. height: math.unit(6 + 4 / 12, "feet")
  26420. },
  26421. {
  26422. name: "Treasured",
  26423. height: math.unit(18 + 9 / 12, "feet"),
  26424. default: true
  26425. },
  26426. {
  26427. name: "Macro",
  26428. height: math.unit(900, "feet")
  26429. },
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26434. {
  26435. front: {
  26436. height: math.unit(6 + 4 / 12, "feet"),
  26437. weight: math.unit(325, "lb"),
  26438. name: "Front",
  26439. image: {
  26440. source: "./media/characters/balina-amarini/front.svg",
  26441. extra: 415 / 403,
  26442. bottom: 19 / 433.4
  26443. }
  26444. },
  26445. back: {
  26446. height: math.unit(6 + 4 / 12, "feet"),
  26447. weight: math.unit(325, "lb"),
  26448. name: "Back",
  26449. image: {
  26450. source: "./media/characters/balina-amarini/back.svg",
  26451. extra: 415 / 403,
  26452. bottom: 13.5 / 432
  26453. }
  26454. },
  26455. overdrive: {
  26456. height: math.unit(6 + 4 / 12, "feet"),
  26457. weight: math.unit(400, "lb"),
  26458. name: "Overdrive",
  26459. image: {
  26460. source: "./media/characters/balina-amarini/overdrive.svg",
  26461. extra: 269 / 259,
  26462. bottom: 12 / 282
  26463. }
  26464. },
  26465. },
  26466. [
  26467. {
  26468. name: "Boom",
  26469. height: math.unit(9 + 10 / 12, "feet"),
  26470. default: true
  26471. },
  26472. {
  26473. name: "Macro",
  26474. height: math.unit(280, "feet")
  26475. },
  26476. ]
  26477. ))
  26478. characterMakers.push(() => makeCharacter(
  26479. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26480. {
  26481. goddess: {
  26482. height: math.unit(600, "feet"),
  26483. weight: math.unit(2000000, "tons"),
  26484. name: "Goddess",
  26485. image: {
  26486. source: "./media/characters/lady-kubwa/goddess.svg",
  26487. extra: 1240.5 / 1223,
  26488. bottom: 22 / 1263
  26489. }
  26490. },
  26491. goddesser: {
  26492. height: math.unit(900, "feet"),
  26493. weight: math.unit(20000000, "lb"),
  26494. name: "Goddess-er",
  26495. image: {
  26496. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26497. extra: 899 / 888,
  26498. bottom: 12.6 / 912
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "Macro",
  26505. height: math.unit(600, "feet"),
  26506. default: true
  26507. },
  26508. {
  26509. name: "Megamacro",
  26510. height: math.unit(250, "miles")
  26511. },
  26512. ]
  26513. ))
  26514. characterMakers.push(() => makeCharacter(
  26515. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26516. {
  26517. front: {
  26518. height: math.unit(7 + 7 / 12, "feet"),
  26519. weight: math.unit(250, "lb"),
  26520. name: "Front",
  26521. image: {
  26522. source: "./media/characters/tala-grovehorn/front.svg",
  26523. extra: 2636 / 2525,
  26524. bottom: 147 / 2781
  26525. }
  26526. },
  26527. back: {
  26528. height: math.unit(7 + 7 / 12, "feet"),
  26529. weight: math.unit(250, "lb"),
  26530. name: "Back",
  26531. image: {
  26532. source: "./media/characters/tala-grovehorn/back.svg",
  26533. extra: 2635 / 2539,
  26534. bottom: 100 / 2732.8
  26535. }
  26536. },
  26537. mouth: {
  26538. height: math.unit(1.15, "feet"),
  26539. name: "Mouth",
  26540. image: {
  26541. source: "./media/characters/tala-grovehorn/mouth.svg"
  26542. }
  26543. },
  26544. dick: {
  26545. height: math.unit(2.36, "feet"),
  26546. name: "Dick",
  26547. image: {
  26548. source: "./media/characters/tala-grovehorn/dick.svg"
  26549. }
  26550. },
  26551. slit: {
  26552. height: math.unit(0.61, "feet"),
  26553. name: "Slit",
  26554. image: {
  26555. source: "./media/characters/tala-grovehorn/slit.svg"
  26556. }
  26557. },
  26558. },
  26559. [
  26560. ]
  26561. ))
  26562. characterMakers.push(() => makeCharacter(
  26563. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26564. {
  26565. front: {
  26566. height: math.unit(7 + 7 / 12, "feet"),
  26567. weight: math.unit(225, "lb"),
  26568. name: "Front",
  26569. image: {
  26570. source: "./media/characters/epona/front.svg",
  26571. extra: 2445 / 2290,
  26572. bottom: 251 / 2696
  26573. }
  26574. },
  26575. back: {
  26576. height: math.unit(7 + 7 / 12, "feet"),
  26577. weight: math.unit(225, "lb"),
  26578. name: "Back",
  26579. image: {
  26580. source: "./media/characters/epona/back.svg",
  26581. extra: 2546 / 2408,
  26582. bottom: 44 / 2589
  26583. }
  26584. },
  26585. genitals: {
  26586. height: math.unit(1.5, "feet"),
  26587. name: "Genitals",
  26588. image: {
  26589. source: "./media/characters/epona/genitals.svg"
  26590. }
  26591. },
  26592. },
  26593. [
  26594. {
  26595. name: "Normal",
  26596. height: math.unit(7 + 7 / 12, "feet"),
  26597. default: true
  26598. },
  26599. ]
  26600. ))
  26601. characterMakers.push(() => makeCharacter(
  26602. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26603. {
  26604. front: {
  26605. height: math.unit(7, "feet"),
  26606. weight: math.unit(518, "lb"),
  26607. name: "Front",
  26608. image: {
  26609. source: "./media/characters/avia-bloodbourn/front.svg",
  26610. extra: 1466 / 1350,
  26611. bottom: 65 / 1527
  26612. }
  26613. },
  26614. },
  26615. [
  26616. ]
  26617. ))
  26618. characterMakers.push(() => makeCharacter(
  26619. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26620. {
  26621. front: {
  26622. height: math.unit(9.35, "feet"),
  26623. weight: math.unit(600, "lb"),
  26624. name: "Front",
  26625. image: {
  26626. source: "./media/characters/amera/front.svg",
  26627. extra: 891 / 818,
  26628. bottom: 30 / 922.7
  26629. }
  26630. },
  26631. back: {
  26632. height: math.unit(9.35, "feet"),
  26633. weight: math.unit(600, "lb"),
  26634. name: "Back",
  26635. image: {
  26636. source: "./media/characters/amera/back.svg",
  26637. extra: 876 / 824,
  26638. bottom: 6.8 / 884
  26639. }
  26640. },
  26641. dick: {
  26642. height: math.unit(2.14, "feet"),
  26643. name: "Dick",
  26644. image: {
  26645. source: "./media/characters/amera/dick.svg"
  26646. }
  26647. },
  26648. },
  26649. [
  26650. {
  26651. name: "Normal",
  26652. height: math.unit(9.35, "feet"),
  26653. default: true
  26654. },
  26655. ]
  26656. ))
  26657. characterMakers.push(() => makeCharacter(
  26658. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26659. {
  26660. kneeling: {
  26661. height: math.unit(3 + 4 / 12, "feet"),
  26662. weight: math.unit(90, "lb"),
  26663. name: "Kneeling",
  26664. image: {
  26665. source: "./media/characters/rosewen/kneeling.svg",
  26666. extra: 1835 / 1571,
  26667. bottom: 27.7 / 1862
  26668. }
  26669. },
  26670. },
  26671. [
  26672. {
  26673. name: "Normal",
  26674. height: math.unit(3 + 4 / 12, "feet"),
  26675. default: true
  26676. },
  26677. ]
  26678. ))
  26679. characterMakers.push(() => makeCharacter(
  26680. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26681. {
  26682. front: {
  26683. height: math.unit(5 + 10 / 12, "feet"),
  26684. weight: math.unit(200, "lb"),
  26685. name: "Front",
  26686. image: {
  26687. source: "./media/characters/sabah/front.svg",
  26688. extra: 849 / 763,
  26689. bottom: 33.9 / 881
  26690. }
  26691. },
  26692. },
  26693. [
  26694. {
  26695. name: "Normal",
  26696. height: math.unit(5 + 10 / 12, "feet"),
  26697. default: true
  26698. },
  26699. ]
  26700. ))
  26701. characterMakers.push(() => makeCharacter(
  26702. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26703. {
  26704. front: {
  26705. height: math.unit(3 + 5 / 12, "feet"),
  26706. weight: math.unit(40, "kg"),
  26707. name: "Front",
  26708. image: {
  26709. source: "./media/characters/purple-flame/front.svg",
  26710. extra: 1577 / 1412,
  26711. bottom: 97 / 1694
  26712. }
  26713. },
  26714. frontDressed: {
  26715. height: math.unit(3 + 5 / 12, "feet"),
  26716. weight: math.unit(40, "kg"),
  26717. name: "Front (Dressed)",
  26718. image: {
  26719. source: "./media/characters/purple-flame/front-dressed.svg",
  26720. extra: 1577 / 1412,
  26721. bottom: 97 / 1694
  26722. }
  26723. },
  26724. headphones: {
  26725. height: math.unit(0.85, "feet"),
  26726. name: "Headphones",
  26727. image: {
  26728. source: "./media/characters/purple-flame/headphones.svg"
  26729. }
  26730. },
  26731. },
  26732. [
  26733. {
  26734. name: "Really Small",
  26735. height: math.unit(5, "cm")
  26736. },
  26737. {
  26738. name: "Micro",
  26739. height: math.unit(1 + 5 / 12, "feet")
  26740. },
  26741. {
  26742. name: "Normal",
  26743. height: math.unit(3 + 5 / 12, "feet"),
  26744. default: true
  26745. },
  26746. {
  26747. name: "Minimacro",
  26748. height: math.unit(125, "feet")
  26749. },
  26750. {
  26751. name: "Macro",
  26752. height: math.unit(0.5, "miles")
  26753. },
  26754. {
  26755. name: "Megamacro",
  26756. height: math.unit(50, "miles")
  26757. },
  26758. {
  26759. name: "Gigantic",
  26760. height: math.unit(750, "miles")
  26761. },
  26762. {
  26763. name: "Planetary",
  26764. height: math.unit(15000, "miles")
  26765. },
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26770. {
  26771. front: {
  26772. height: math.unit(14, "feet"),
  26773. weight: math.unit(959, "lb"),
  26774. name: "Front",
  26775. image: {
  26776. source: "./media/characters/arsenal/front.svg",
  26777. extra: 2357 / 2157,
  26778. bottom: 93 / 2458
  26779. }
  26780. },
  26781. },
  26782. [
  26783. {
  26784. name: "Normal",
  26785. height: math.unit(14, "feet"),
  26786. default: true
  26787. },
  26788. ]
  26789. ))
  26790. characterMakers.push(() => makeCharacter(
  26791. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26792. {
  26793. front: {
  26794. height: math.unit(6, "feet"),
  26795. weight: math.unit(150, "lb"),
  26796. name: "Front",
  26797. image: {
  26798. source: "./media/characters/adira/front.svg",
  26799. extra: 1078 / 1029,
  26800. bottom: 87 / 1166
  26801. }
  26802. },
  26803. },
  26804. [
  26805. {
  26806. name: "Micro",
  26807. height: math.unit(4, "inches"),
  26808. default: true
  26809. },
  26810. {
  26811. name: "Macro",
  26812. height: math.unit(50, "feet")
  26813. },
  26814. ]
  26815. ))
  26816. characterMakers.push(() => makeCharacter(
  26817. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26818. {
  26819. front: {
  26820. height: math.unit(16, "feet"),
  26821. weight: math.unit(1000, "lb"),
  26822. name: "Front",
  26823. image: {
  26824. source: "./media/characters/grim/front.svg",
  26825. extra: 622 / 614,
  26826. bottom: 18.1 / 642
  26827. }
  26828. },
  26829. back: {
  26830. height: math.unit(16, "feet"),
  26831. weight: math.unit(1000, "lb"),
  26832. name: "Back",
  26833. image: {
  26834. source: "./media/characters/grim/back.svg",
  26835. extra: 610.6 / 602,
  26836. bottom: 40.8 / 652
  26837. }
  26838. },
  26839. hunched: {
  26840. height: math.unit(9.75, "feet"),
  26841. weight: math.unit(1000, "lb"),
  26842. name: "Hunched",
  26843. image: {
  26844. source: "./media/characters/grim/hunched.svg",
  26845. extra: 304 / 297,
  26846. bottom: 35.4 / 394
  26847. }
  26848. },
  26849. },
  26850. [
  26851. {
  26852. name: "Normal",
  26853. height: math.unit(16, "feet"),
  26854. default: true
  26855. },
  26856. ]
  26857. ))
  26858. characterMakers.push(() => makeCharacter(
  26859. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26860. {
  26861. front: {
  26862. height: math.unit(2.3, "meters"),
  26863. weight: math.unit(300, "lb"),
  26864. name: "Front",
  26865. image: {
  26866. source: "./media/characters/sinja/front-sfw.svg",
  26867. extra: 1393 / 1294,
  26868. bottom: 70 / 1463
  26869. }
  26870. },
  26871. frontNsfw: {
  26872. height: math.unit(2.3, "meters"),
  26873. weight: math.unit(300, "lb"),
  26874. name: "Front (NSFW)",
  26875. image: {
  26876. source: "./media/characters/sinja/front-nsfw.svg",
  26877. extra: 1393 / 1294,
  26878. bottom: 70 / 1463
  26879. }
  26880. },
  26881. back: {
  26882. height: math.unit(2.3, "meters"),
  26883. weight: math.unit(300, "lb"),
  26884. name: "Back",
  26885. image: {
  26886. source: "./media/characters/sinja/back.svg",
  26887. extra: 1393 / 1294,
  26888. bottom: 70 / 1463
  26889. }
  26890. },
  26891. head: {
  26892. height: math.unit(1.771, "feet"),
  26893. name: "Head",
  26894. image: {
  26895. source: "./media/characters/sinja/head.svg"
  26896. }
  26897. },
  26898. slit: {
  26899. height: math.unit(0.8, "feet"),
  26900. name: "Slit",
  26901. image: {
  26902. source: "./media/characters/sinja/slit.svg"
  26903. }
  26904. },
  26905. },
  26906. [
  26907. {
  26908. name: "Normal",
  26909. height: math.unit(2.3, "meters")
  26910. },
  26911. {
  26912. name: "Macro",
  26913. height: math.unit(91, "meters"),
  26914. default: true
  26915. },
  26916. {
  26917. name: "Megamacro",
  26918. height: math.unit(91440, "meters")
  26919. },
  26920. {
  26921. name: "Gigamacro",
  26922. height: math.unit(60960000, "meters")
  26923. },
  26924. {
  26925. name: "Teramacro",
  26926. height: math.unit(9144000000, "meters")
  26927. },
  26928. ]
  26929. ))
  26930. characterMakers.push(() => makeCharacter(
  26931. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26932. {
  26933. front: {
  26934. height: math.unit(1.7, "meters"),
  26935. weight: math.unit(130, "lb"),
  26936. name: "Front",
  26937. image: {
  26938. source: "./media/characters/kyu/front.svg",
  26939. extra: 415 / 395,
  26940. bottom: 5 / 420
  26941. }
  26942. },
  26943. head: {
  26944. height: math.unit(1.75, "feet"),
  26945. name: "Head",
  26946. image: {
  26947. source: "./media/characters/kyu/head.svg"
  26948. }
  26949. },
  26950. foot: {
  26951. height: math.unit(0.81, "feet"),
  26952. name: "Foot",
  26953. image: {
  26954. source: "./media/characters/kyu/foot.svg"
  26955. }
  26956. },
  26957. },
  26958. [
  26959. {
  26960. name: "Normal",
  26961. height: math.unit(1.7, "meters")
  26962. },
  26963. {
  26964. name: "Macro",
  26965. height: math.unit(131, "feet"),
  26966. default: true
  26967. },
  26968. {
  26969. name: "Megamacro",
  26970. height: math.unit(91440, "meters")
  26971. },
  26972. {
  26973. name: "Gigamacro",
  26974. height: math.unit(60960000, "meters")
  26975. },
  26976. {
  26977. name: "Teramacro",
  26978. height: math.unit(9144000000, "meters")
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(7 + 1 / 12, "feet"),
  26987. weight: math.unit(250, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/joey/front.svg",
  26991. extra: 1791 / 1537,
  26992. bottom: 28 / 1816
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Micro",
  26999. height: math.unit(3, "inches")
  27000. },
  27001. {
  27002. name: "Normal",
  27003. height: math.unit(7 + 1 / 12, "feet"),
  27004. default: true
  27005. },
  27006. ]
  27007. ))
  27008. characterMakers.push(() => makeCharacter(
  27009. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27010. {
  27011. front: {
  27012. height: math.unit(165, "cm"),
  27013. weight: math.unit(140, "lb"),
  27014. name: "Front",
  27015. image: {
  27016. source: "./media/characters/sam-evans/front.svg",
  27017. extra: 3417 / 3230,
  27018. bottom: 41.3 / 3417
  27019. }
  27020. },
  27021. frontSixTails: {
  27022. height: math.unit(165, "cm"),
  27023. weight: math.unit(140, "lb"),
  27024. name: "Front-six-tails",
  27025. image: {
  27026. source: "./media/characters/sam-evans/front-six-tails.svg",
  27027. extra: 3417 / 3230,
  27028. bottom: 41.3 / 3417
  27029. }
  27030. },
  27031. back: {
  27032. height: math.unit(165, "cm"),
  27033. weight: math.unit(140, "lb"),
  27034. name: "Back",
  27035. image: {
  27036. source: "./media/characters/sam-evans/back.svg",
  27037. extra: 3227 / 3032,
  27038. bottom: 6.8 / 3234
  27039. }
  27040. },
  27041. face: {
  27042. height: math.unit(0.68, "feet"),
  27043. name: "Face",
  27044. image: {
  27045. source: "./media/characters/sam-evans/face.svg"
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Normal",
  27052. height: math.unit(165, "cm"),
  27053. default: true
  27054. },
  27055. {
  27056. name: "Macro",
  27057. height: math.unit(100, "meters")
  27058. },
  27059. {
  27060. name: "Macro+",
  27061. height: math.unit(800, "meters")
  27062. },
  27063. {
  27064. name: "Macro++",
  27065. height: math.unit(3, "km")
  27066. },
  27067. {
  27068. name: "Macro+++",
  27069. height: math.unit(30, "km")
  27070. },
  27071. ]
  27072. ))
  27073. characterMakers.push(() => makeCharacter(
  27074. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27075. {
  27076. front: {
  27077. height: math.unit(10, "feet"),
  27078. weight: math.unit(750, "lb"),
  27079. name: "Front",
  27080. image: {
  27081. source: "./media/characters/juliet-a/front.svg",
  27082. extra: 1766 / 1720,
  27083. bottom: 43 / 1809
  27084. }
  27085. },
  27086. back: {
  27087. height: math.unit(10, "feet"),
  27088. weight: math.unit(750, "lb"),
  27089. name: "Back",
  27090. image: {
  27091. source: "./media/characters/juliet-a/back.svg",
  27092. extra: 1781 / 1734,
  27093. bottom: 35 / 1810,
  27094. }
  27095. },
  27096. },
  27097. [
  27098. {
  27099. name: "Normal",
  27100. height: math.unit(10, "feet"),
  27101. default: true
  27102. },
  27103. {
  27104. name: "Dragon Form",
  27105. height: math.unit(250, "feet")
  27106. },
  27107. {
  27108. name: "Macro",
  27109. height: math.unit(1000, "feet")
  27110. },
  27111. {
  27112. name: "Megamacro",
  27113. height: math.unit(10000, "feet")
  27114. }
  27115. ]
  27116. ))
  27117. characterMakers.push(() => makeCharacter(
  27118. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27119. {
  27120. regular: {
  27121. height: math.unit(7 + 3 / 12, "feet"),
  27122. weight: math.unit(260, "lb"),
  27123. name: "Regular",
  27124. image: {
  27125. source: "./media/characters/wild/regular.svg",
  27126. extra: 97.45 / 92,
  27127. bottom: 6.8 / 104.3
  27128. }
  27129. },
  27130. biggums: {
  27131. height: math.unit(8 + 6 / 12, "feet"),
  27132. weight: math.unit(425, "lb"),
  27133. name: "Biggums",
  27134. image: {
  27135. source: "./media/characters/wild/biggums.svg",
  27136. extra: 97.45 / 92,
  27137. bottom: 7.5 / 132.34
  27138. }
  27139. },
  27140. mawRegular: {
  27141. height: math.unit(1.24, "feet"),
  27142. name: "Maw (Regular)",
  27143. image: {
  27144. source: "./media/characters/wild/maw.svg"
  27145. }
  27146. },
  27147. mawBiggums: {
  27148. height: math.unit(1.47, "feet"),
  27149. name: "Maw (Biggums)",
  27150. image: {
  27151. source: "./media/characters/wild/maw.svg"
  27152. }
  27153. },
  27154. },
  27155. [
  27156. {
  27157. name: "Normal",
  27158. height: math.unit(7 + 3 / 12, "feet"),
  27159. default: true
  27160. },
  27161. ]
  27162. ))
  27163. characterMakers.push(() => makeCharacter(
  27164. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27165. {
  27166. front: {
  27167. height: math.unit(2.5, "meters"),
  27168. weight: math.unit(200, "kg"),
  27169. name: "Front",
  27170. image: {
  27171. source: "./media/characters/vidar/front.svg",
  27172. extra: 2994 / 2795,
  27173. bottom: 56 / 3061
  27174. }
  27175. },
  27176. back: {
  27177. height: math.unit(2.5, "meters"),
  27178. weight: math.unit(200, "kg"),
  27179. name: "Back",
  27180. image: {
  27181. source: "./media/characters/vidar/back.svg",
  27182. extra: 3131 / 2928,
  27183. bottom: 13.5 / 3141.5
  27184. }
  27185. },
  27186. feral: {
  27187. height: math.unit(2.5, "meters"),
  27188. weight: math.unit(2000, "kg"),
  27189. name: "Feral",
  27190. image: {
  27191. source: "./media/characters/vidar/feral.svg",
  27192. extra: 2790 / 1765,
  27193. bottom: 6 / 2796
  27194. }
  27195. },
  27196. },
  27197. [
  27198. {
  27199. name: "Normal",
  27200. height: math.unit(2.5, "meters"),
  27201. default: true
  27202. },
  27203. {
  27204. name: "Macro",
  27205. height: math.unit(100, "meters")
  27206. },
  27207. ]
  27208. ))
  27209. characterMakers.push(() => makeCharacter(
  27210. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27211. {
  27212. front: {
  27213. height: math.unit(5 + 9 / 12, "feet"),
  27214. weight: math.unit(120, "lb"),
  27215. name: "Front",
  27216. image: {
  27217. source: "./media/characters/ash/front.svg",
  27218. extra: 2189 / 1961,
  27219. bottom: 5.2 / 2194
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Normal",
  27226. height: math.unit(5 + 9 / 12, "feet"),
  27227. default: true
  27228. },
  27229. ]
  27230. ))
  27231. characterMakers.push(() => makeCharacter(
  27232. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27233. {
  27234. front: {
  27235. height: math.unit(9, "feet"),
  27236. weight: math.unit(10000, "lb"),
  27237. name: "Front",
  27238. image: {
  27239. source: "./media/characters/gygabite/front.svg",
  27240. bottom: 31.7 / 537.8,
  27241. extra: 505 / 370
  27242. }
  27243. },
  27244. },
  27245. [
  27246. {
  27247. name: "Normal",
  27248. height: math.unit(9, "feet"),
  27249. default: true
  27250. },
  27251. ]
  27252. ))
  27253. characterMakers.push(() => makeCharacter(
  27254. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27255. {
  27256. front: {
  27257. height: math.unit(12, "feet"),
  27258. weight: math.unit(35000, "lb"),
  27259. name: "Front",
  27260. image: {
  27261. source: "./media/characters/p0tat0/front.svg",
  27262. extra: 1065 / 921,
  27263. bottom: 55.7 / 1121.25
  27264. }
  27265. },
  27266. },
  27267. [
  27268. {
  27269. name: "Normal",
  27270. height: math.unit(12, "feet"),
  27271. default: true
  27272. },
  27273. ]
  27274. ))
  27275. characterMakers.push(() => makeCharacter(
  27276. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27277. {
  27278. side: {
  27279. height: math.unit(6.5, "feet"),
  27280. weight: math.unit(800, "lb"),
  27281. name: "Side",
  27282. image: {
  27283. source: "./media/characters/dusk/side.svg",
  27284. extra: 615 / 373,
  27285. bottom: 53 / 664
  27286. }
  27287. },
  27288. sitting: {
  27289. height: math.unit(7, "feet"),
  27290. weight: math.unit(800, "lb"),
  27291. name: "Sitting",
  27292. image: {
  27293. source: "./media/characters/dusk/sitting.svg",
  27294. extra: 753 / 425,
  27295. bottom: 33 / 774
  27296. }
  27297. },
  27298. head: {
  27299. height: math.unit(6.1, "feet"),
  27300. name: "Head",
  27301. image: {
  27302. source: "./media/characters/dusk/head.svg"
  27303. }
  27304. },
  27305. },
  27306. [
  27307. {
  27308. name: "Normal",
  27309. height: math.unit(7, "feet"),
  27310. default: true
  27311. },
  27312. ]
  27313. ))
  27314. characterMakers.push(() => makeCharacter(
  27315. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27316. {
  27317. front: {
  27318. height: math.unit(15, "feet"),
  27319. weight: math.unit(7000, "lb"),
  27320. name: "Front",
  27321. image: {
  27322. source: "./media/characters/jay-direwolf/front.svg",
  27323. extra: 1810 / 1732,
  27324. bottom: 66 / 1892
  27325. }
  27326. },
  27327. },
  27328. [
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(15, "feet"),
  27332. default: true
  27333. },
  27334. ]
  27335. ))
  27336. characterMakers.push(() => makeCharacter(
  27337. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27338. {
  27339. front: {
  27340. height: math.unit(4 + 9 / 12, "feet"),
  27341. weight: math.unit(130, "lb"),
  27342. name: "Front",
  27343. image: {
  27344. source: "./media/characters/anchovie/front.svg",
  27345. extra: 382 / 350,
  27346. bottom: 25 / 409
  27347. }
  27348. },
  27349. back: {
  27350. height: math.unit(4 + 9 / 12, "feet"),
  27351. weight: math.unit(130, "lb"),
  27352. name: "Back",
  27353. image: {
  27354. source: "./media/characters/anchovie/back.svg",
  27355. extra: 385 / 352,
  27356. bottom: 16.6 / 402
  27357. }
  27358. },
  27359. frontDressed: {
  27360. height: math.unit(4 + 9 / 12, "feet"),
  27361. weight: math.unit(130, "lb"),
  27362. name: "Front (Dressed)",
  27363. image: {
  27364. source: "./media/characters/anchovie/front-dressed.svg",
  27365. extra: 382 / 350,
  27366. bottom: 25 / 409
  27367. }
  27368. },
  27369. backDressed: {
  27370. height: math.unit(4 + 9 / 12, "feet"),
  27371. weight: math.unit(130, "lb"),
  27372. name: "Back (Dressed)",
  27373. image: {
  27374. source: "./media/characters/anchovie/back-dressed.svg",
  27375. extra: 385 / 352,
  27376. bottom: 16.6 / 402
  27377. }
  27378. },
  27379. },
  27380. [
  27381. {
  27382. name: "Micro",
  27383. height: math.unit(6.4, "inches")
  27384. },
  27385. {
  27386. name: "Normal",
  27387. height: math.unit(4 + 9 / 12, "feet"),
  27388. default: true
  27389. },
  27390. ]
  27391. ))
  27392. characterMakers.push(() => makeCharacter(
  27393. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27394. {
  27395. front: {
  27396. height: math.unit(2, "meters"),
  27397. weight: math.unit(180, "lb"),
  27398. name: "Front",
  27399. image: {
  27400. source: "./media/characters/acidrenamon/front.svg",
  27401. extra: 987 / 890,
  27402. bottom: 22.8 / 1009
  27403. }
  27404. },
  27405. back: {
  27406. height: math.unit(2, "meters"),
  27407. weight: math.unit(180, "lb"),
  27408. name: "Back",
  27409. image: {
  27410. source: "./media/characters/acidrenamon/back.svg",
  27411. extra: 983 / 891,
  27412. bottom: 8.4 / 992
  27413. }
  27414. },
  27415. head: {
  27416. height: math.unit(1.92, "feet"),
  27417. name: "Head",
  27418. image: {
  27419. source: "./media/characters/acidrenamon/head.svg"
  27420. }
  27421. },
  27422. rump: {
  27423. height: math.unit(1.72, "feet"),
  27424. name: "Rump",
  27425. image: {
  27426. source: "./media/characters/acidrenamon/rump.svg"
  27427. }
  27428. },
  27429. tail: {
  27430. height: math.unit(4.2, "feet"),
  27431. name: "Tail",
  27432. image: {
  27433. source: "./media/characters/acidrenamon/tail.svg"
  27434. }
  27435. },
  27436. },
  27437. [
  27438. {
  27439. name: "Normal",
  27440. height: math.unit(2, "meters"),
  27441. default: true
  27442. },
  27443. {
  27444. name: "Minimacro",
  27445. height: math.unit(7, "meters")
  27446. },
  27447. {
  27448. name: "Macro",
  27449. height: math.unit(200, "meters")
  27450. },
  27451. {
  27452. name: "Gigamacro",
  27453. height: math.unit(0.2, "earths")
  27454. },
  27455. ]
  27456. ))
  27457. characterMakers.push(() => makeCharacter(
  27458. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27459. {
  27460. front: {
  27461. height: math.unit(6, "feet"),
  27462. weight: math.unit(150, "lb"),
  27463. name: "Front",
  27464. image: {
  27465. source: "./media/characters/kenzie-lee/front.svg",
  27466. extra: 1525 / 1465,
  27467. bottom: 45 / 1570
  27468. }
  27469. },
  27470. side: {
  27471. height: math.unit(6, "feet"),
  27472. weight: math.unit(150, "lb"),
  27473. name: "Side",
  27474. image: {
  27475. source: "./media/characters/kenzie-lee/side.svg",
  27476. extra: 5505 / 5383,
  27477. bottom: 60 / 5573
  27478. }
  27479. },
  27480. paw: {
  27481. height: math.unit(0.57, "feet"),
  27482. name: "Paw",
  27483. image: {
  27484. source: "./media/characters/kenzie-lee/paw.svg"
  27485. }
  27486. },
  27487. },
  27488. [
  27489. {
  27490. name: "Normal",
  27491. height: math.unit(152, "feet"),
  27492. default: true
  27493. },
  27494. {
  27495. name: "Megamacro",
  27496. height: math.unit(7, "miles")
  27497. },
  27498. {
  27499. name: "Gigamacro",
  27500. height: math.unit(8000, "miles")
  27501. },
  27502. ]
  27503. ))
  27504. characterMakers.push(() => makeCharacter(
  27505. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27506. {
  27507. side: {
  27508. height: math.unit(6, "feet"),
  27509. weight: math.unit(150, "lb"),
  27510. name: "Side",
  27511. image: {
  27512. source: "./media/characters/withers/side.svg",
  27513. extra: 1830 / 1728,
  27514. bottom: 96 / 1927
  27515. }
  27516. },
  27517. front: {
  27518. height: math.unit(6, "feet"),
  27519. weight: math.unit(150, "lb"),
  27520. name: "Front",
  27521. image: {
  27522. source: "./media/characters/withers/front.svg",
  27523. extra: 1514 / 1438,
  27524. bottom: 118 / 1632
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Macro",
  27531. height: math.unit(168, "feet"),
  27532. default: true
  27533. },
  27534. {
  27535. name: "Megamacro",
  27536. height: math.unit(15, "miles")
  27537. }
  27538. ]
  27539. ))
  27540. characterMakers.push(() => makeCharacter(
  27541. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27542. {
  27543. front: {
  27544. height: math.unit(6 + 7 / 12, "feet"),
  27545. weight: math.unit(250, "lb"),
  27546. name: "Front",
  27547. image: {
  27548. source: "./media/characters/nemoskii/front.svg",
  27549. extra: 2270 / 1734,
  27550. bottom: 86 / 2354
  27551. }
  27552. },
  27553. back: {
  27554. height: math.unit(6 + 7 / 12, "feet"),
  27555. weight: math.unit(250, "lb"),
  27556. name: "Back",
  27557. image: {
  27558. source: "./media/characters/nemoskii/back.svg",
  27559. extra: 1845 / 1788,
  27560. bottom: 10.5 / 1852
  27561. }
  27562. },
  27563. head: {
  27564. height: math.unit(1.31, "feet"),
  27565. name: "Head",
  27566. image: {
  27567. source: "./media/characters/nemoskii/head.svg"
  27568. }
  27569. },
  27570. },
  27571. [
  27572. {
  27573. name: "Micro",
  27574. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27575. },
  27576. {
  27577. name: "Normal",
  27578. height: math.unit(6 + 7 / 12, "feet"),
  27579. default: true
  27580. },
  27581. {
  27582. name: "Macro",
  27583. height: math.unit((6 + 7 / 12) * 150, "feet")
  27584. },
  27585. {
  27586. name: "Macro+",
  27587. height: math.unit((6 + 7 / 12) * 500, "feet")
  27588. },
  27589. {
  27590. name: "Megamacro",
  27591. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27592. },
  27593. ]
  27594. ))
  27595. characterMakers.push(() => makeCharacter(
  27596. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27597. {
  27598. front: {
  27599. height: math.unit(1, "mile"),
  27600. weight: math.unit(265261.9, "lb"),
  27601. name: "Front",
  27602. image: {
  27603. source: "./media/characters/shui/front.svg",
  27604. extra: 1633 / 1564,
  27605. bottom: 91.5 / 1726
  27606. }
  27607. },
  27608. },
  27609. [
  27610. {
  27611. name: "Macro",
  27612. height: math.unit(1, "mile"),
  27613. default: true
  27614. },
  27615. ]
  27616. ))
  27617. characterMakers.push(() => makeCharacter(
  27618. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27619. {
  27620. front: {
  27621. height: math.unit(12 + 6 / 12, "feet"),
  27622. weight: math.unit(1342, "lb"),
  27623. name: "Front",
  27624. image: {
  27625. source: "./media/characters/arokh-takakura/front.svg",
  27626. extra: 1089 / 1043,
  27627. bottom: 77.4 / 1176.7
  27628. }
  27629. },
  27630. back: {
  27631. height: math.unit(12 + 6 / 12, "feet"),
  27632. weight: math.unit(1342, "lb"),
  27633. name: "Back",
  27634. image: {
  27635. source: "./media/characters/arokh-takakura/back.svg",
  27636. extra: 1046 / 1019,
  27637. bottom: 102 / 1150
  27638. }
  27639. },
  27640. },
  27641. [
  27642. {
  27643. name: "Big",
  27644. height: math.unit(12 + 6 / 12, "feet"),
  27645. default: true
  27646. },
  27647. ]
  27648. ))
  27649. characterMakers.push(() => makeCharacter(
  27650. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27651. {
  27652. front: {
  27653. height: math.unit(5 + 6 / 12, "feet"),
  27654. weight: math.unit(150, "lb"),
  27655. name: "Front",
  27656. image: {
  27657. source: "./media/characters/theo/front.svg",
  27658. extra: 1184 / 1131,
  27659. bottom: 7.4 / 1191
  27660. }
  27661. },
  27662. },
  27663. [
  27664. {
  27665. name: "Micro",
  27666. height: math.unit(5, "inches")
  27667. },
  27668. {
  27669. name: "Normal",
  27670. height: math.unit(5 + 6 / 12, "feet"),
  27671. default: true
  27672. },
  27673. ]
  27674. ))
  27675. characterMakers.push(() => makeCharacter(
  27676. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27677. {
  27678. front: {
  27679. height: math.unit(5 + 9 / 12, "feet"),
  27680. weight: math.unit(130, "lb"),
  27681. name: "Front",
  27682. image: {
  27683. source: "./media/characters/cecelia-swift/front.svg",
  27684. extra: 502 / 484,
  27685. bottom: 23 / 523
  27686. }
  27687. },
  27688. back: {
  27689. height: math.unit(5 + 9 / 12, "feet"),
  27690. weight: math.unit(130, "lb"),
  27691. name: "Back",
  27692. image: {
  27693. source: "./media/characters/cecelia-swift/back.svg",
  27694. extra: 499 / 485,
  27695. bottom: 12 / 511
  27696. }
  27697. },
  27698. head: {
  27699. height: math.unit(0.90, "feet"),
  27700. name: "Head",
  27701. image: {
  27702. source: "./media/characters/cecelia-swift/head.svg"
  27703. }
  27704. },
  27705. rump: {
  27706. height: math.unit(1.75, "feet"),
  27707. name: "Rump",
  27708. image: {
  27709. source: "./media/characters/cecelia-swift/rump.svg"
  27710. }
  27711. },
  27712. },
  27713. [
  27714. {
  27715. name: "Normal",
  27716. height: math.unit(5 + 9 / 12, "feet"),
  27717. default: true
  27718. },
  27719. {
  27720. name: "Big",
  27721. height: math.unit(50, "feet")
  27722. },
  27723. {
  27724. name: "Macro",
  27725. height: math.unit(100, "feet")
  27726. },
  27727. {
  27728. name: "Macro+",
  27729. height: math.unit(500, "feet")
  27730. },
  27731. {
  27732. name: "Macro++",
  27733. height: math.unit(1000, "feet")
  27734. },
  27735. ]
  27736. ))
  27737. characterMakers.push(() => makeCharacter(
  27738. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27739. {
  27740. front: {
  27741. height: math.unit(6, "feet"),
  27742. weight: math.unit(150, "lb"),
  27743. name: "Front",
  27744. image: {
  27745. source: "./media/characters/kaunan/front.svg",
  27746. extra: 2890 / 2523,
  27747. bottom: 49 / 2939
  27748. }
  27749. },
  27750. },
  27751. [
  27752. {
  27753. name: "Macro",
  27754. height: math.unit(150, "feet"),
  27755. default: true
  27756. },
  27757. ]
  27758. ))
  27759. characterMakers.push(() => makeCharacter(
  27760. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27761. {
  27762. front: {
  27763. height: math.unit(175, "cm"),
  27764. weight: math.unit(60, "kg"),
  27765. name: "Front",
  27766. image: {
  27767. source: "./media/characters/fei/front.svg",
  27768. extra: 1873/1723,
  27769. bottom: 53/1926
  27770. }
  27771. },
  27772. },
  27773. [
  27774. {
  27775. name: "Mortal",
  27776. height: math.unit(175, "cm")
  27777. },
  27778. {
  27779. name: "Normal",
  27780. height: math.unit(3500, "m"),
  27781. default: true
  27782. },
  27783. {
  27784. name: "Stroll",
  27785. height: math.unit(17.5, "km")
  27786. },
  27787. {
  27788. name: "Showoff",
  27789. height: math.unit(175, "km")
  27790. },
  27791. ]
  27792. ))
  27793. characterMakers.push(() => makeCharacter(
  27794. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27795. {
  27796. front: {
  27797. height: math.unit(7, "feet"),
  27798. weight: math.unit(1000, "kg"),
  27799. name: "Front",
  27800. image: {
  27801. source: "./media/characters/edrax/front.svg",
  27802. extra: 2838 / 2550,
  27803. bottom: 130 / 2968
  27804. }
  27805. },
  27806. },
  27807. [
  27808. {
  27809. name: "Small",
  27810. height: math.unit(7, "feet")
  27811. },
  27812. {
  27813. name: "Normal",
  27814. height: math.unit(1500, "meters")
  27815. },
  27816. {
  27817. name: "Mega",
  27818. height: math.unit(12000000, "km"),
  27819. default: true
  27820. },
  27821. {
  27822. name: "Megamacro",
  27823. height: math.unit(10600000, "lightyears")
  27824. },
  27825. {
  27826. name: "Hypermacro",
  27827. height: math.unit(256, "yottameters")
  27828. },
  27829. ]
  27830. ))
  27831. characterMakers.push(() => makeCharacter(
  27832. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27833. {
  27834. front: {
  27835. height: math.unit(10, "feet"),
  27836. weight: math.unit(750, "lb"),
  27837. name: "Front",
  27838. image: {
  27839. source: "./media/characters/clove/front.svg",
  27840. extra: 2031 / 1860,
  27841. bottom: 47.8 / 2080
  27842. }
  27843. },
  27844. back: {
  27845. height: math.unit(10, "feet"),
  27846. weight: math.unit(750, "lb"),
  27847. name: "Back",
  27848. image: {
  27849. source: "./media/characters/clove/back.svg",
  27850. extra: 2025 / 1859,
  27851. bottom: 46 / 2071
  27852. }
  27853. },
  27854. },
  27855. [
  27856. {
  27857. name: "Normal",
  27858. height: math.unit(10, "feet"),
  27859. default: true
  27860. },
  27861. ]
  27862. ))
  27863. characterMakers.push(() => makeCharacter(
  27864. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27865. {
  27866. front: {
  27867. height: math.unit(4, "feet"),
  27868. weight: math.unit(50, "lb"),
  27869. name: "Front",
  27870. image: {
  27871. source: "./media/characters/alex-rabbit/front.svg",
  27872. extra: 507 / 458,
  27873. bottom: 18.5 / 527
  27874. }
  27875. },
  27876. back: {
  27877. height: math.unit(4, "feet"),
  27878. weight: math.unit(50, "lb"),
  27879. name: "Back",
  27880. image: {
  27881. source: "./media/characters/alex-rabbit/back.svg",
  27882. extra: 502 / 460,
  27883. bottom: 18.9 / 521
  27884. }
  27885. },
  27886. },
  27887. [
  27888. {
  27889. name: "Normal",
  27890. height: math.unit(4, "feet"),
  27891. default: true
  27892. },
  27893. ]
  27894. ))
  27895. characterMakers.push(() => makeCharacter(
  27896. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27897. {
  27898. front: {
  27899. height: math.unit(1 + 3 / 12, "feet"),
  27900. weight: math.unit(80, "lb"),
  27901. name: "Front",
  27902. image: {
  27903. source: "./media/characters/zander-rose/front.svg",
  27904. extra: 916 / 797,
  27905. bottom: 17 / 933
  27906. }
  27907. },
  27908. back: {
  27909. height: math.unit(1 + 3 / 12, "feet"),
  27910. weight: math.unit(80, "lb"),
  27911. name: "Back",
  27912. image: {
  27913. source: "./media/characters/zander-rose/back.svg",
  27914. extra: 903 / 779,
  27915. bottom: 31 / 934
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Normal",
  27922. height: math.unit(1 + 3 / 12, "feet"),
  27923. default: true
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27929. {
  27930. anthro: {
  27931. height: math.unit(6, "feet"),
  27932. weight: math.unit(150, "lb"),
  27933. name: "Anthro",
  27934. image: {
  27935. source: "./media/characters/razz/anthro.svg",
  27936. extra: 1437 / 1343,
  27937. bottom: 48 / 1485
  27938. }
  27939. },
  27940. feral: {
  27941. height: math.unit(6, "feet"),
  27942. weight: math.unit(150, "lb"),
  27943. name: "Feral",
  27944. image: {
  27945. source: "./media/characters/razz/feral.svg",
  27946. extra: 2569 / 1385,
  27947. bottom: 95 / 2664
  27948. }
  27949. },
  27950. },
  27951. [
  27952. {
  27953. name: "Normal",
  27954. height: math.unit(6, "feet"),
  27955. default: true
  27956. },
  27957. ]
  27958. ))
  27959. characterMakers.push(() => makeCharacter(
  27960. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27961. {
  27962. front: {
  27963. height: math.unit(9 + 4 / 12, "feet"),
  27964. weight: math.unit(500, "lb"),
  27965. name: "Front",
  27966. image: {
  27967. source: "./media/characters/morrigan/front.svg",
  27968. extra: 2707 / 2579,
  27969. bottom: 156 / 2863
  27970. }
  27971. },
  27972. },
  27973. [
  27974. {
  27975. name: "Normal",
  27976. height: math.unit(9 + 4 / 12, "feet"),
  27977. default: true
  27978. },
  27979. ]
  27980. ))
  27981. characterMakers.push(() => makeCharacter(
  27982. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27983. {
  27984. front: {
  27985. height: math.unit(5, "stories"),
  27986. weight: math.unit(4000, "lb"),
  27987. name: "Front",
  27988. image: {
  27989. source: "./media/characters/jenene/front.svg",
  27990. extra: 1780 / 1710,
  27991. bottom: 57 / 1837
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(5, "stories"),
  27999. default: true
  28000. },
  28001. ]
  28002. ))
  28003. characterMakers.push(() => makeCharacter(
  28004. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28005. {
  28006. taurSfw: {
  28007. height: math.unit(10, "meters"),
  28008. weight: math.unit(17500, "kg"),
  28009. name: "Taur",
  28010. image: {
  28011. source: "./media/characters/faey/taur-sfw.svg",
  28012. extra: 1200 / 968,
  28013. bottom: 41 / 1241
  28014. }
  28015. },
  28016. chestmaw: {
  28017. height: math.unit(2.01, "meters"),
  28018. name: "Chestmaw",
  28019. image: {
  28020. source: "./media/characters/faey/chestmaw.svg"
  28021. }
  28022. },
  28023. foot: {
  28024. height: math.unit(2.43, "meters"),
  28025. name: "Foot",
  28026. image: {
  28027. source: "./media/characters/faey/foot.svg"
  28028. }
  28029. },
  28030. jaws: {
  28031. height: math.unit(1.66, "meters"),
  28032. name: "Jaws",
  28033. image: {
  28034. source: "./media/characters/faey/jaws.svg"
  28035. }
  28036. },
  28037. tongues: {
  28038. height: math.unit(2.01, "meters"),
  28039. name: "Tongues",
  28040. image: {
  28041. source: "./media/characters/faey/tongues.svg"
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Small",
  28048. height: math.unit(10, "meters"),
  28049. default: true
  28050. },
  28051. {
  28052. name: "Big",
  28053. height: math.unit(500000, "km")
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(7, "feet"),
  28062. weight: math.unit(275, "lb"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/roku/front.svg",
  28066. extra: 903 / 878,
  28067. bottom: 37 / 940
  28068. }
  28069. },
  28070. },
  28071. [
  28072. {
  28073. name: "Normal",
  28074. height: math.unit(7, "feet"),
  28075. default: true
  28076. },
  28077. {
  28078. name: "Macro",
  28079. height: math.unit(500, "feet")
  28080. },
  28081. {
  28082. name: "Megamacro",
  28083. height: math.unit(200, "miles")
  28084. },
  28085. ]
  28086. ))
  28087. characterMakers.push(() => makeCharacter(
  28088. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28089. {
  28090. front: {
  28091. height: math.unit(6 + 2 / 12, "feet"),
  28092. weight: math.unit(150, "lb"),
  28093. name: "Front",
  28094. image: {
  28095. source: "./media/characters/lira/front.svg",
  28096. extra: 1727 / 1605,
  28097. bottom: 26 / 1753
  28098. }
  28099. },
  28100. back: {
  28101. height: math.unit(6 + 2 / 12, "feet"),
  28102. weight: math.unit(150, "lb"),
  28103. name: "Back",
  28104. image: {
  28105. source: "./media/characters/lira/back.svg",
  28106. extra: 1713/1621,
  28107. bottom: 20/1733
  28108. }
  28109. },
  28110. hand: {
  28111. height: math.unit(0.75, "feet"),
  28112. name: "Hand",
  28113. image: {
  28114. source: "./media/characters/lira/hand.svg"
  28115. }
  28116. },
  28117. maw: {
  28118. height: math.unit(0.65, "feet"),
  28119. name: "Maw",
  28120. image: {
  28121. source: "./media/characters/lira/maw.svg"
  28122. }
  28123. },
  28124. pawDigi: {
  28125. height: math.unit(1.6, "feet"),
  28126. name: "Paw Digi",
  28127. image: {
  28128. source: "./media/characters/lira/paw-digi.svg"
  28129. }
  28130. },
  28131. pawPlanti: {
  28132. height: math.unit(1.4, "feet"),
  28133. name: "Paw Planti",
  28134. image: {
  28135. source: "./media/characters/lira/paw-planti.svg"
  28136. }
  28137. },
  28138. },
  28139. [
  28140. {
  28141. name: "Normal",
  28142. height: math.unit(6 + 2 / 12, "feet"),
  28143. default: true
  28144. },
  28145. {
  28146. name: "Macro",
  28147. height: math.unit(100, "feet")
  28148. },
  28149. {
  28150. name: "Macro²",
  28151. height: math.unit(1600, "feet")
  28152. },
  28153. {
  28154. name: "Planetary",
  28155. height: math.unit(20, "earths")
  28156. },
  28157. ]
  28158. ))
  28159. characterMakers.push(() => makeCharacter(
  28160. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28161. {
  28162. front: {
  28163. height: math.unit(6, "feet"),
  28164. weight: math.unit(150, "lb"),
  28165. name: "Front",
  28166. image: {
  28167. source: "./media/characters/hadjet/front.svg",
  28168. extra: 1480 / 1346,
  28169. bottom: 26 / 1506
  28170. }
  28171. },
  28172. frontNsfw: {
  28173. height: math.unit(6, "feet"),
  28174. weight: math.unit(150, "lb"),
  28175. name: "Front (NSFW)",
  28176. image: {
  28177. source: "./media/characters/hadjet/front-nsfw.svg",
  28178. extra: 1440 / 1358,
  28179. bottom: 52 / 1492
  28180. }
  28181. },
  28182. },
  28183. [
  28184. {
  28185. name: "Macro",
  28186. height: math.unit(10, "stories"),
  28187. default: true
  28188. },
  28189. {
  28190. name: "Megamacro",
  28191. height: math.unit(1.5, "miles")
  28192. },
  28193. {
  28194. name: "Megamacro+",
  28195. height: math.unit(5, "miles")
  28196. },
  28197. ]
  28198. ))
  28199. characterMakers.push(() => makeCharacter(
  28200. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28201. {
  28202. side: {
  28203. height: math.unit(106, "feet"),
  28204. weight: math.unit(500, "tonnes"),
  28205. name: "Side",
  28206. image: {
  28207. source: "./media/characters/kodran/side.svg",
  28208. extra: 553 / 480,
  28209. bottom: 33 / 586
  28210. }
  28211. },
  28212. front: {
  28213. height: math.unit(132, "feet"),
  28214. weight: math.unit(500, "tonnes"),
  28215. name: "Front",
  28216. image: {
  28217. source: "./media/characters/kodran/front.svg",
  28218. extra: 667 / 643,
  28219. bottom: 42 / 709
  28220. }
  28221. },
  28222. flying: {
  28223. height: math.unit(350, "feet"),
  28224. weight: math.unit(500, "tonnes"),
  28225. name: "Flying",
  28226. image: {
  28227. source: "./media/characters/kodran/flying.svg"
  28228. }
  28229. },
  28230. foot: {
  28231. height: math.unit(33, "feet"),
  28232. name: "Foot",
  28233. image: {
  28234. source: "./media/characters/kodran/foot.svg"
  28235. }
  28236. },
  28237. footFront: {
  28238. height: math.unit(19, "feet"),
  28239. name: "Foot (Front)",
  28240. image: {
  28241. source: "./media/characters/kodran/foot-front.svg",
  28242. extra: 261 / 261,
  28243. bottom: 91 / 352
  28244. }
  28245. },
  28246. headFront: {
  28247. height: math.unit(53, "feet"),
  28248. name: "Head (Front)",
  28249. image: {
  28250. source: "./media/characters/kodran/head-front.svg"
  28251. }
  28252. },
  28253. headSide: {
  28254. height: math.unit(65, "feet"),
  28255. name: "Head (Side)",
  28256. image: {
  28257. source: "./media/characters/kodran/head-side.svg"
  28258. }
  28259. },
  28260. throat: {
  28261. height: math.unit(79, "feet"),
  28262. name: "Throat",
  28263. image: {
  28264. source: "./media/characters/kodran/throat.svg"
  28265. }
  28266. },
  28267. },
  28268. [
  28269. {
  28270. name: "Large",
  28271. height: math.unit(106, "feet"),
  28272. default: true
  28273. },
  28274. ]
  28275. ))
  28276. characterMakers.push(() => makeCharacter(
  28277. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28278. {
  28279. side: {
  28280. height: math.unit(11, "feet"),
  28281. weight: math.unit(150, "lb"),
  28282. name: "Side",
  28283. image: {
  28284. source: "./media/characters/pyxaron/side.svg",
  28285. extra: 305 / 195,
  28286. bottom: 17 / 322
  28287. }
  28288. },
  28289. },
  28290. [
  28291. {
  28292. name: "Normal",
  28293. height: math.unit(11, "feet"),
  28294. default: true
  28295. },
  28296. ]
  28297. ))
  28298. characterMakers.push(() => makeCharacter(
  28299. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28300. {
  28301. front: {
  28302. height: math.unit(6, "feet"),
  28303. weight: math.unit(150, "lb"),
  28304. name: "Front",
  28305. image: {
  28306. source: "./media/characters/meep/front.svg",
  28307. extra: 88 / 80,
  28308. bottom: 6 / 94
  28309. }
  28310. },
  28311. },
  28312. [
  28313. {
  28314. name: "Fun Sized",
  28315. height: math.unit(2, "inches"),
  28316. default: true
  28317. },
  28318. {
  28319. name: "Friend Sized",
  28320. height: math.unit(8, "inches")
  28321. },
  28322. ]
  28323. ))
  28324. characterMakers.push(() => makeCharacter(
  28325. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28326. {
  28327. front: {
  28328. height: math.unit(15, "feet"),
  28329. weight: math.unit(2500, "lb"),
  28330. name: "Front",
  28331. image: {
  28332. source: "./media/characters/holly-rabbit/front.svg",
  28333. extra: 1433 / 1233,
  28334. bottom: 125 / 1558
  28335. }
  28336. },
  28337. dick: {
  28338. height: math.unit(4.6, "feet"),
  28339. name: "Dick",
  28340. image: {
  28341. source: "./media/characters/holly-rabbit/dick.svg"
  28342. }
  28343. },
  28344. },
  28345. [
  28346. {
  28347. name: "Normal",
  28348. height: math.unit(15, "feet"),
  28349. default: true
  28350. },
  28351. {
  28352. name: "Macro",
  28353. height: math.unit(250, "feet")
  28354. },
  28355. {
  28356. name: "Macro+",
  28357. height: math.unit(2500, "feet")
  28358. },
  28359. ]
  28360. ))
  28361. characterMakers.push(() => makeCharacter(
  28362. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28363. {
  28364. front: {
  28365. height: math.unit(3.02, "meters"),
  28366. weight: math.unit(500, "kg"),
  28367. name: "Front",
  28368. image: {
  28369. source: "./media/characters/drena/front.svg",
  28370. extra: 282 / 243,
  28371. bottom: 8 / 290
  28372. }
  28373. },
  28374. side: {
  28375. height: math.unit(3.02, "meters"),
  28376. weight: math.unit(500, "kg"),
  28377. name: "Side",
  28378. image: {
  28379. source: "./media/characters/drena/side.svg",
  28380. extra: 280 / 245,
  28381. bottom: 10 / 290
  28382. }
  28383. },
  28384. back: {
  28385. height: math.unit(3.02, "meters"),
  28386. weight: math.unit(500, "kg"),
  28387. name: "Back",
  28388. image: {
  28389. source: "./media/characters/drena/back.svg",
  28390. extra: 278 / 243,
  28391. bottom: 2 / 280
  28392. }
  28393. },
  28394. foot: {
  28395. height: math.unit(0.75, "meters"),
  28396. name: "Foot",
  28397. image: {
  28398. source: "./media/characters/drena/foot.svg"
  28399. }
  28400. },
  28401. maw: {
  28402. height: math.unit(0.82, "meters"),
  28403. name: "Maw",
  28404. image: {
  28405. source: "./media/characters/drena/maw.svg"
  28406. }
  28407. },
  28408. rump: {
  28409. height: math.unit(0.93, "meters"),
  28410. name: "Rump",
  28411. image: {
  28412. source: "./media/characters/drena/rump.svg"
  28413. }
  28414. },
  28415. },
  28416. [
  28417. {
  28418. name: "Normal",
  28419. height: math.unit(3.02, "meters"),
  28420. default: true
  28421. },
  28422. ]
  28423. ))
  28424. characterMakers.push(() => makeCharacter(
  28425. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28426. {
  28427. front: {
  28428. height: math.unit(6 + 4 / 12, "feet"),
  28429. weight: math.unit(250, "lb"),
  28430. name: "Front",
  28431. image: {
  28432. source: "./media/characters/remmyzilla/front.svg",
  28433. extra: 4033 / 3588,
  28434. bottom: 123 / 4156
  28435. }
  28436. },
  28437. back: {
  28438. height: math.unit(6 + 4 / 12, "feet"),
  28439. weight: math.unit(250, "lb"),
  28440. name: "Back",
  28441. image: {
  28442. source: "./media/characters/remmyzilla/back.svg",
  28443. extra: 2687 / 2555,
  28444. bottom: 48 / 2735
  28445. }
  28446. },
  28447. paw: {
  28448. height: math.unit(1.73, "feet"),
  28449. name: "Paw",
  28450. image: {
  28451. source: "./media/characters/remmyzilla/paw.svg"
  28452. }
  28453. },
  28454. maw: {
  28455. height: math.unit(1.73, "feet"),
  28456. name: "Maw",
  28457. image: {
  28458. source: "./media/characters/remmyzilla/maw.svg"
  28459. }
  28460. },
  28461. },
  28462. [
  28463. {
  28464. name: "Normal",
  28465. height: math.unit(6 + 4 / 12, "feet")
  28466. },
  28467. {
  28468. name: "Minimacro",
  28469. height: math.unit(12 + 8 / 12, "feet")
  28470. },
  28471. {
  28472. name: "Normal",
  28473. height: math.unit(640, "feet"),
  28474. default: true
  28475. },
  28476. {
  28477. name: "Megamacro",
  28478. height: math.unit(6400, "feet")
  28479. },
  28480. {
  28481. name: "Gigamacro",
  28482. height: math.unit(64000, "miles")
  28483. },
  28484. ]
  28485. ))
  28486. characterMakers.push(() => makeCharacter(
  28487. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28488. {
  28489. front: {
  28490. height: math.unit(2.5, "meters"),
  28491. weight: math.unit(300, "lb"),
  28492. name: "Front",
  28493. image: {
  28494. source: "./media/characters/lawrence/front.svg",
  28495. extra: 357 / 335,
  28496. bottom: 30 / 387
  28497. }
  28498. },
  28499. back: {
  28500. height: math.unit(2.5, "meters"),
  28501. weight: math.unit(300, "lb"),
  28502. name: "Back",
  28503. image: {
  28504. source: "./media/characters/lawrence/back.svg",
  28505. extra: 357 / 338,
  28506. bottom: 16 / 373
  28507. }
  28508. },
  28509. head: {
  28510. height: math.unit(0.9, "meter"),
  28511. name: "Head",
  28512. image: {
  28513. source: "./media/characters/lawrence/head.svg"
  28514. }
  28515. },
  28516. maw: {
  28517. height: math.unit(0.7, "meter"),
  28518. name: "Maw",
  28519. image: {
  28520. source: "./media/characters/lawrence/maw.svg"
  28521. }
  28522. },
  28523. footBottom: {
  28524. height: math.unit(0.5, "meter"),
  28525. name: "Foot (Bottom)",
  28526. image: {
  28527. source: "./media/characters/lawrence/foot-bottom.svg"
  28528. }
  28529. },
  28530. footTop: {
  28531. height: math.unit(0.5, "meter"),
  28532. name: "Foot (Top)",
  28533. image: {
  28534. source: "./media/characters/lawrence/foot-top.svg"
  28535. }
  28536. },
  28537. },
  28538. [
  28539. {
  28540. name: "Normal",
  28541. height: math.unit(2.5, "meters"),
  28542. default: true
  28543. },
  28544. {
  28545. name: "Macro",
  28546. height: math.unit(95, "meters")
  28547. },
  28548. {
  28549. name: "Megamacro",
  28550. height: math.unit(150, "km")
  28551. },
  28552. ]
  28553. ))
  28554. characterMakers.push(() => makeCharacter(
  28555. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28556. {
  28557. front: {
  28558. height: math.unit(4.2, "meters"),
  28559. name: "Front",
  28560. image: {
  28561. source: "./media/characters/sydney/front.svg",
  28562. extra: 1323 / 1277,
  28563. bottom: 111 / 1434
  28564. }
  28565. },
  28566. },
  28567. [
  28568. {
  28569. name: "Normal",
  28570. height: math.unit(4.2, "meters"),
  28571. default: true
  28572. },
  28573. ]
  28574. ))
  28575. characterMakers.push(() => makeCharacter(
  28576. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28577. {
  28578. back: {
  28579. height: math.unit(201, "feet"),
  28580. name: "Back",
  28581. image: {
  28582. source: "./media/characters/jessica/back.svg",
  28583. extra: 273 / 259,
  28584. bottom: 7 / 280
  28585. }
  28586. },
  28587. },
  28588. [
  28589. {
  28590. name: "Normal",
  28591. height: math.unit(201, "feet"),
  28592. default: true
  28593. },
  28594. {
  28595. name: "Megamacro",
  28596. height: math.unit(8, "miles")
  28597. },
  28598. ]
  28599. ))
  28600. characterMakers.push(() => makeCharacter(
  28601. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28602. {
  28603. side: {
  28604. height: math.unit(320, "cm"),
  28605. name: "Side",
  28606. image: {
  28607. source: "./media/characters/victoria/side.svg",
  28608. extra: 778 / 346,
  28609. bottom: 56 / 834
  28610. }
  28611. },
  28612. maw: {
  28613. height: math.unit(5.9, "feet"),
  28614. name: "Maw",
  28615. image: {
  28616. source: "./media/characters/victoria/maw.svg"
  28617. }
  28618. },
  28619. },
  28620. [
  28621. {
  28622. name: "Normal",
  28623. height: math.unit(320, "cm"),
  28624. default: true
  28625. },
  28626. ]
  28627. ))
  28628. characterMakers.push(() => makeCharacter(
  28629. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28630. {
  28631. front: {
  28632. height: math.unit(5 + 6 / 12, "feet"),
  28633. name: "Front",
  28634. image: {
  28635. source: "./media/characters/cat/front.svg",
  28636. extra: 1449/1295,
  28637. bottom: 34/1483
  28638. }
  28639. },
  28640. back: {
  28641. height: math.unit(5 + 6 / 12, "feet"),
  28642. name: "Back",
  28643. image: {
  28644. source: "./media/characters/cat/back.svg",
  28645. extra: 1466/1301,
  28646. bottom: 19/1485
  28647. }
  28648. },
  28649. taur: {
  28650. height: math.unit(7, "feet"),
  28651. name: "Taur",
  28652. image: {
  28653. source: "./media/characters/cat/taur.svg",
  28654. extra: 1389/1233,
  28655. bottom: 83/1472
  28656. }
  28657. },
  28658. lucarioFront: {
  28659. height: math.unit(4, "feet"),
  28660. name: "Lucario (Front)",
  28661. image: {
  28662. source: "./media/characters/cat/lucario-front.svg",
  28663. extra: 1149/1019,
  28664. bottom: 84/1233
  28665. }
  28666. },
  28667. lucarioBack: {
  28668. height: math.unit(4, "feet"),
  28669. name: "Lucario (Back)",
  28670. image: {
  28671. source: "./media/characters/cat/lucario-back.svg",
  28672. extra: 1190/1059,
  28673. bottom: 33/1223
  28674. }
  28675. },
  28676. megaLucario: {
  28677. height: math.unit(4, "feet"),
  28678. name: "Mega Lucario",
  28679. image: {
  28680. source: "./media/characters/cat/mega-lucario.svg",
  28681. extra: 1515 / 1319,
  28682. bottom: 63 / 1578
  28683. }
  28684. },
  28685. nickit: {
  28686. height: math.unit(2, "feet"),
  28687. name: "Nickit",
  28688. image: {
  28689. source: "./media/characters/cat/nickit.svg",
  28690. extra: 1980 / 1585,
  28691. bottom: 102 / 2082
  28692. }
  28693. },
  28694. lopunnyFront: {
  28695. height: math.unit(5, "feet"),
  28696. name: "Lopunny (Front)",
  28697. image: {
  28698. source: "./media/characters/cat/lopunny-front.svg",
  28699. extra: 1782 / 1469,
  28700. bottom: 38 / 1820
  28701. }
  28702. },
  28703. lopunnyBack: {
  28704. height: math.unit(5, "feet"),
  28705. name: "Lopunny (Back)",
  28706. image: {
  28707. source: "./media/characters/cat/lopunny-back.svg",
  28708. extra: 1660 / 1490,
  28709. bottom: 25 / 1685
  28710. }
  28711. },
  28712. },
  28713. [
  28714. {
  28715. name: "Really small",
  28716. height: math.unit(1, "nm")
  28717. },
  28718. {
  28719. name: "Micro",
  28720. height: math.unit(5, "inches")
  28721. },
  28722. {
  28723. name: "Normal",
  28724. height: math.unit(5 + 6 / 12, "feet"),
  28725. default: true
  28726. },
  28727. {
  28728. name: "Macro",
  28729. height: math.unit(50, "feet")
  28730. },
  28731. {
  28732. name: "Macro+",
  28733. height: math.unit(150, "feet")
  28734. },
  28735. {
  28736. name: "Megamacro",
  28737. height: math.unit(100, "miles")
  28738. },
  28739. ]
  28740. ))
  28741. characterMakers.push(() => makeCharacter(
  28742. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28743. {
  28744. front: {
  28745. height: math.unit(63.4, "meters"),
  28746. weight: math.unit(3.28349e+6, "kilograms"),
  28747. name: "Front",
  28748. image: {
  28749. source: "./media/characters/kirina-violet/front.svg",
  28750. extra: 2812 / 2725,
  28751. bottom: 0 / 2812
  28752. }
  28753. },
  28754. back: {
  28755. height: math.unit(63.4, "meters"),
  28756. weight: math.unit(3.28349e+6, "kilograms"),
  28757. name: "Back",
  28758. image: {
  28759. source: "./media/characters/kirina-violet/back.svg",
  28760. extra: 2812 / 2725,
  28761. bottom: 0 / 2812
  28762. }
  28763. },
  28764. mouth: {
  28765. height: math.unit(4.35, "meters"),
  28766. name: "Mouth",
  28767. image: {
  28768. source: "./media/characters/kirina-violet/mouth.svg"
  28769. }
  28770. },
  28771. paw: {
  28772. height: math.unit(5.6, "meters"),
  28773. name: "Paw",
  28774. image: {
  28775. source: "./media/characters/kirina-violet/paw.svg"
  28776. }
  28777. },
  28778. tail: {
  28779. height: math.unit(18, "meters"),
  28780. name: "Tail",
  28781. image: {
  28782. source: "./media/characters/kirina-violet/tail.svg"
  28783. }
  28784. },
  28785. },
  28786. [
  28787. {
  28788. name: "Macro",
  28789. height: math.unit(63.4, "meters"),
  28790. default: true
  28791. },
  28792. ]
  28793. ))
  28794. characterMakers.push(() => makeCharacter(
  28795. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28796. {
  28797. front: {
  28798. height: math.unit(75, "feet"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/cat-gigachu/front.svg",
  28802. extra: 1239/1027,
  28803. bottom: 32/1271
  28804. }
  28805. },
  28806. back: {
  28807. height: math.unit(75, "feet"),
  28808. name: "Back",
  28809. image: {
  28810. source: "./media/characters/cat-gigachu/back.svg",
  28811. extra: 1229/1030,
  28812. bottom: 9/1238
  28813. }
  28814. },
  28815. },
  28816. [
  28817. {
  28818. name: "Dynamax",
  28819. height: math.unit(75, "feet"),
  28820. default: true
  28821. },
  28822. ]
  28823. ))
  28824. characterMakers.push(() => makeCharacter(
  28825. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28826. {
  28827. front: {
  28828. height: math.unit(6, "feet"),
  28829. weight: math.unit(150, "lb"),
  28830. name: "Front",
  28831. image: {
  28832. source: "./media/characters/sfaiyan/front.svg",
  28833. extra: 999 / 978,
  28834. bottom: 5 / 1004
  28835. }
  28836. },
  28837. },
  28838. [
  28839. {
  28840. name: "Normal",
  28841. height: math.unit(1.82, "meters")
  28842. },
  28843. {
  28844. name: "Giant",
  28845. height: math.unit(2.27, "km"),
  28846. default: true
  28847. },
  28848. ]
  28849. ))
  28850. characterMakers.push(() => makeCharacter(
  28851. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28852. {
  28853. front: {
  28854. height: math.unit(179, "cm"),
  28855. weight: math.unit(100, "kg"),
  28856. name: "Front",
  28857. image: {
  28858. source: "./media/characters/raunehkeli/front.svg",
  28859. extra: 1934 / 1926,
  28860. bottom: 0 / 1934
  28861. }
  28862. },
  28863. },
  28864. [
  28865. {
  28866. name: "Normal",
  28867. height: math.unit(179, "cm")
  28868. },
  28869. {
  28870. name: "Maximum",
  28871. height: math.unit(575, "meters"),
  28872. default: true
  28873. },
  28874. ]
  28875. ))
  28876. characterMakers.push(() => makeCharacter(
  28877. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28878. {
  28879. front: {
  28880. height: math.unit(6, "feet"),
  28881. weight: math.unit(150, "lb"),
  28882. name: "Front",
  28883. image: {
  28884. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28885. extra: 2625 / 2518,
  28886. bottom: 60 / 2685
  28887. }
  28888. },
  28889. },
  28890. [
  28891. {
  28892. name: "Normal",
  28893. height: math.unit(6 + 2 / 12, "feet")
  28894. },
  28895. {
  28896. name: "Macro",
  28897. height: math.unit(1180, "feet"),
  28898. default: true
  28899. },
  28900. ]
  28901. ))
  28902. characterMakers.push(() => makeCharacter(
  28903. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28904. {
  28905. front: {
  28906. height: math.unit(5 + 6 / 12, "feet"),
  28907. weight: math.unit(108, "lb"),
  28908. name: "Front",
  28909. image: {
  28910. source: "./media/characters/lilith-zott/front.svg",
  28911. extra: 2510 / 2238,
  28912. bottom: 100 / 2610
  28913. }
  28914. },
  28915. frontDressed: {
  28916. height: math.unit(5 + 6 / 12, "feet"),
  28917. weight: math.unit(108, "lb"),
  28918. name: "Front (Dressed)",
  28919. image: {
  28920. source: "./media/characters/lilith-zott/front-dressed.svg",
  28921. extra: 2510 / 2238,
  28922. bottom: 100 / 2610
  28923. }
  28924. },
  28925. },
  28926. [
  28927. {
  28928. name: "Normal",
  28929. height: math.unit(5 + 6 / 12, "feet")
  28930. },
  28931. {
  28932. name: "Macro",
  28933. height: math.unit(1030, "feet"),
  28934. default: true
  28935. },
  28936. ]
  28937. ))
  28938. characterMakers.push(() => makeCharacter(
  28939. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28940. {
  28941. front: {
  28942. height: math.unit(6, "feet"),
  28943. weight: math.unit(150, "lb"),
  28944. name: "Front",
  28945. image: {
  28946. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28947. extra: 2567 / 2435,
  28948. bottom: 39 / 2606
  28949. }
  28950. },
  28951. frontSuper: {
  28952. height: math.unit(6, "feet"),
  28953. name: "Front (Super)",
  28954. image: {
  28955. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28956. extra: 2567 / 2435,
  28957. bottom: 39 / 2606
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Normal",
  28964. height: math.unit(5 + 10 / 12, "feet")
  28965. },
  28966. {
  28967. name: "Macro",
  28968. height: math.unit(1100, "feet"),
  28969. default: true
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28975. {
  28976. front: {
  28977. height: math.unit(100, "miles"),
  28978. name: "Front",
  28979. image: {
  28980. source: "./media/characters/sona/front.svg",
  28981. extra: 2433 / 2201,
  28982. bottom: 53 / 2486
  28983. }
  28984. },
  28985. foot: {
  28986. height: math.unit(16.1, "miles"),
  28987. name: "Foot",
  28988. image: {
  28989. source: "./media/characters/sona/foot.svg"
  28990. }
  28991. },
  28992. },
  28993. [
  28994. {
  28995. name: "Macro",
  28996. height: math.unit(100, "miles"),
  28997. default: true
  28998. },
  28999. ]
  29000. ))
  29001. characterMakers.push(() => makeCharacter(
  29002. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29003. {
  29004. front: {
  29005. height: math.unit(6, "feet"),
  29006. weight: math.unit(150, "lb"),
  29007. name: "Front",
  29008. image: {
  29009. source: "./media/characters/bailey/front.svg",
  29010. extra: 1778 / 1724,
  29011. bottom: 30 / 1808
  29012. }
  29013. },
  29014. },
  29015. [
  29016. {
  29017. name: "Micro",
  29018. height: math.unit(4, "inches")
  29019. },
  29020. {
  29021. name: "Normal",
  29022. height: math.unit(5 + 5 / 12, "feet"),
  29023. default: true
  29024. },
  29025. {
  29026. name: "Macro",
  29027. height: math.unit(250, "feet")
  29028. },
  29029. {
  29030. name: "Megamacro",
  29031. height: math.unit(100, "miles")
  29032. },
  29033. ]
  29034. ))
  29035. characterMakers.push(() => makeCharacter(
  29036. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29037. {
  29038. front: {
  29039. height: math.unit(5 + 2 / 12, "feet"),
  29040. weight: math.unit(120, "lb"),
  29041. name: "Front",
  29042. image: {
  29043. source: "./media/characters/snaps/front.svg",
  29044. extra: 2370 / 2177,
  29045. bottom: 48 / 2418
  29046. }
  29047. },
  29048. back: {
  29049. height: math.unit(5 + 2 / 12, "feet"),
  29050. weight: math.unit(120, "lb"),
  29051. name: "Back",
  29052. image: {
  29053. source: "./media/characters/snaps/back.svg",
  29054. extra: 2408 / 2258,
  29055. bottom: 15 / 2423
  29056. }
  29057. },
  29058. },
  29059. [
  29060. {
  29061. name: "Micro",
  29062. height: math.unit(9, "inches")
  29063. },
  29064. {
  29065. name: "Normal",
  29066. height: math.unit(5 + 2 / 12, "feet"),
  29067. default: true
  29068. },
  29069. {
  29070. name: "Mini Macro",
  29071. height: math.unit(10, "feet")
  29072. },
  29073. ]
  29074. ))
  29075. characterMakers.push(() => makeCharacter(
  29076. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29077. {
  29078. front: {
  29079. height: math.unit(1.8, "meters"),
  29080. weight: math.unit(85, "kg"),
  29081. name: "Front",
  29082. image: {
  29083. source: "./media/characters/azteck/front.svg",
  29084. extra: 2815 / 2625,
  29085. bottom: 89 / 2904
  29086. }
  29087. },
  29088. back: {
  29089. height: math.unit(1.8, "meters"),
  29090. weight: math.unit(85, "kg"),
  29091. name: "Back",
  29092. image: {
  29093. source: "./media/characters/azteck/back.svg",
  29094. extra: 2856 / 2648,
  29095. bottom: 85 / 2941
  29096. }
  29097. },
  29098. frontDressed: {
  29099. height: math.unit(1.8, "meters"),
  29100. weight: math.unit(85, "kg"),
  29101. name: "Front (Dressed)",
  29102. image: {
  29103. source: "./media/characters/azteck/front-dressed.svg",
  29104. extra: 2147 / 2003,
  29105. bottom: 68 / 2215
  29106. }
  29107. },
  29108. head: {
  29109. height: math.unit(0.47, "meters"),
  29110. weight: math.unit(85, "kg"),
  29111. name: "Head",
  29112. image: {
  29113. source: "./media/characters/azteck/head.svg"
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Bite sized",
  29120. height: math.unit(16, "cm")
  29121. },
  29122. {
  29123. name: "Normal",
  29124. height: math.unit(1.8, "meters"),
  29125. default: true
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(6, "feet"),
  29134. weight: math.unit(150, "lb"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/pidge/front.svg",
  29138. extra: 620 / 588,
  29139. bottom: 9 / 629
  29140. }
  29141. },
  29142. back: {
  29143. height: math.unit(6, "feet"),
  29144. weight: math.unit(150, "lb"),
  29145. name: "Back",
  29146. image: {
  29147. source: "./media/characters/pidge/back.svg",
  29148. extra: 620 / 588,
  29149. bottom: 9 / 629
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Macro",
  29156. height: math.unit(1, "mile"),
  29157. default: true
  29158. },
  29159. ]
  29160. ))
  29161. characterMakers.push(() => makeCharacter(
  29162. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29163. {
  29164. front: {
  29165. height: math.unit(6, "feet"),
  29166. weight: math.unit(150, "lb"),
  29167. name: "Front",
  29168. image: {
  29169. source: "./media/characters/en/front.svg",
  29170. extra: 1697 / 1563,
  29171. bottom: 103 / 1800
  29172. }
  29173. },
  29174. back: {
  29175. height: math.unit(6, "feet"),
  29176. weight: math.unit(150, "lb"),
  29177. name: "Back",
  29178. image: {
  29179. source: "./media/characters/en/back.svg",
  29180. extra: 1700 / 1570,
  29181. bottom: 51 / 1751
  29182. }
  29183. },
  29184. frontDressed: {
  29185. height: math.unit(6, "feet"),
  29186. weight: math.unit(150, "lb"),
  29187. name: "Front (Dressed)",
  29188. image: {
  29189. source: "./media/characters/en/front-dressed.svg",
  29190. extra: 1697 / 1563,
  29191. bottom: 103 / 1800
  29192. }
  29193. },
  29194. backDressed: {
  29195. height: math.unit(6, "feet"),
  29196. weight: math.unit(150, "lb"),
  29197. name: "Back (Dressed)",
  29198. image: {
  29199. source: "./media/characters/en/back-dressed.svg",
  29200. extra: 1700 / 1570,
  29201. bottom: 51 / 1751
  29202. }
  29203. },
  29204. },
  29205. [
  29206. {
  29207. name: "Macro",
  29208. height: math.unit(210, "feet"),
  29209. default: true
  29210. },
  29211. ]
  29212. ))
  29213. characterMakers.push(() => makeCharacter(
  29214. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29215. {
  29216. front: {
  29217. height: math.unit(6, "feet"),
  29218. weight: math.unit(150, "lb"),
  29219. name: "Front",
  29220. image: {
  29221. source: "./media/characters/haze-orris/front.svg",
  29222. extra: 3975 / 3525,
  29223. bottom: 137 / 4112
  29224. }
  29225. },
  29226. },
  29227. [
  29228. {
  29229. name: "Micro",
  29230. height: math.unit(150, "mm"),
  29231. default: true
  29232. },
  29233. ]
  29234. ))
  29235. characterMakers.push(() => makeCharacter(
  29236. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29237. {
  29238. front: {
  29239. height: math.unit(6, "feet"),
  29240. weight: math.unit(150, "lb"),
  29241. name: "Front",
  29242. image: {
  29243. source: "./media/characters/casselene-yaro/front.svg",
  29244. extra: 4721 / 4541,
  29245. bottom: 82 / 4803
  29246. }
  29247. },
  29248. back: {
  29249. height: math.unit(6, "feet"),
  29250. weight: math.unit(150, "lb"),
  29251. name: "Back",
  29252. image: {
  29253. source: "./media/characters/casselene-yaro/back.svg",
  29254. extra: 4569 / 4377,
  29255. bottom: 69 / 4638
  29256. }
  29257. },
  29258. frontDressed: {
  29259. height: math.unit(6, "feet"),
  29260. weight: math.unit(150, "lb"),
  29261. name: "Front-dressed",
  29262. image: {
  29263. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29264. extra: 4721 / 4541,
  29265. bottom: 82 / 4803
  29266. }
  29267. },
  29268. },
  29269. [
  29270. {
  29271. name: "Macro",
  29272. height: math.unit(190, "feet"),
  29273. default: true
  29274. },
  29275. ]
  29276. ))
  29277. characterMakers.push(() => makeCharacter(
  29278. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29279. {
  29280. front: {
  29281. height: math.unit(6, "feet"),
  29282. weight: math.unit(150, "lb"),
  29283. name: "Front",
  29284. image: {
  29285. source: "./media/characters/myra-rue-delore/front.svg",
  29286. extra: 1340 / 1308,
  29287. bottom: 67 / 1407
  29288. }
  29289. },
  29290. back: {
  29291. height: math.unit(6, "feet"),
  29292. weight: math.unit(150, "lb"),
  29293. name: "Back",
  29294. image: {
  29295. source: "./media/characters/myra-rue-delore/back.svg",
  29296. extra: 1341 / 1310,
  29297. bottom: 40 / 1381
  29298. }
  29299. },
  29300. frontDressed: {
  29301. height: math.unit(6, "feet"),
  29302. weight: math.unit(150, "lb"),
  29303. name: "Front (Dressed)",
  29304. image: {
  29305. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29306. extra: 1340 / 1308,
  29307. bottom: 67 / 1407
  29308. }
  29309. },
  29310. },
  29311. [
  29312. {
  29313. name: "Macro",
  29314. height: math.unit(150, "feet"),
  29315. default: true
  29316. },
  29317. ]
  29318. ))
  29319. characterMakers.push(() => makeCharacter(
  29320. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29321. {
  29322. front: {
  29323. height: math.unit(10, "feet"),
  29324. weight: math.unit(15015, "lb"),
  29325. name: "Front",
  29326. image: {
  29327. source: "./media/characters/fem!plat/front.svg",
  29328. extra: 2799 / 2604,
  29329. bottom: 149 / 2948
  29330. }
  29331. },
  29332. },
  29333. [
  29334. {
  29335. name: "Normal",
  29336. height: math.unit(10, "feet"),
  29337. default: true
  29338. },
  29339. {
  29340. name: "Macro",
  29341. height: math.unit(100, "feet")
  29342. },
  29343. {
  29344. name: "Megamacro",
  29345. height: math.unit(1000, "feet")
  29346. },
  29347. ]
  29348. ))
  29349. characterMakers.push(() => makeCharacter(
  29350. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29351. {
  29352. front: {
  29353. height: math.unit(15 + 5 / 12, "feet"),
  29354. weight: math.unit(4600, "lb"),
  29355. name: "Front",
  29356. image: {
  29357. source: "./media/characters/neapolitan-ananassa/front.svg",
  29358. extra: 2903 / 2736,
  29359. bottom: 0 / 2903
  29360. }
  29361. },
  29362. side: {
  29363. height: math.unit(15 + 5 / 12, "feet"),
  29364. weight: math.unit(4600, "lb"),
  29365. name: "Side",
  29366. image: {
  29367. source: "./media/characters/neapolitan-ananassa/side.svg",
  29368. extra: 2925 / 2719,
  29369. bottom: 0 / 2925
  29370. }
  29371. },
  29372. back: {
  29373. height: math.unit(15 + 5 / 12, "feet"),
  29374. weight: math.unit(4600, "lb"),
  29375. name: "Back",
  29376. image: {
  29377. source: "./media/characters/neapolitan-ananassa/back.svg",
  29378. extra: 2903 / 2736,
  29379. bottom: 0 / 2903
  29380. }
  29381. },
  29382. },
  29383. [
  29384. {
  29385. name: "Normal",
  29386. height: math.unit(15 + 5 / 12, "feet"),
  29387. default: true
  29388. },
  29389. {
  29390. name: "Post-Millenium",
  29391. height: math.unit(35 + 5 / 12, "feet")
  29392. },
  29393. {
  29394. name: "Post-Era",
  29395. height: math.unit(450 + 5 / 12, "feet")
  29396. },
  29397. ]
  29398. ))
  29399. characterMakers.push(() => makeCharacter(
  29400. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29401. {
  29402. front: {
  29403. height: math.unit(300, "meters"),
  29404. weight: math.unit(125000, "tonnes"),
  29405. name: "Front",
  29406. image: {
  29407. source: "./media/characters/pazuzu/front.svg",
  29408. extra: 877 / 794,
  29409. bottom: 47 / 924
  29410. }
  29411. },
  29412. },
  29413. [
  29414. {
  29415. name: "Macro",
  29416. height: math.unit(300, "meters"),
  29417. default: true
  29418. },
  29419. ]
  29420. ))
  29421. characterMakers.push(() => makeCharacter(
  29422. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29423. {
  29424. side: {
  29425. height: math.unit(10 + 7 / 12, "feet"),
  29426. weight: math.unit(2.5, "tons"),
  29427. name: "Side",
  29428. image: {
  29429. source: "./media/characters/aasha/side.svg",
  29430. extra: 1345 / 1245,
  29431. bottom: 111 / 1456
  29432. }
  29433. },
  29434. back: {
  29435. height: math.unit(10 + 7 / 12, "feet"),
  29436. weight: math.unit(2.5, "tons"),
  29437. name: "Back",
  29438. image: {
  29439. source: "./media/characters/aasha/back.svg",
  29440. extra: 1133 / 1057,
  29441. bottom: 257 / 1390
  29442. }
  29443. },
  29444. },
  29445. [
  29446. {
  29447. name: "Normal",
  29448. height: math.unit(10 + 7 / 12, "feet"),
  29449. default: true
  29450. },
  29451. ]
  29452. ))
  29453. characterMakers.push(() => makeCharacter(
  29454. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29455. {
  29456. front: {
  29457. height: math.unit(6 + 3 / 12, "feet"),
  29458. name: "Front",
  29459. image: {
  29460. source: "./media/characters/nevan/front.svg",
  29461. extra: 704 / 704,
  29462. bottom: 28 / 732
  29463. }
  29464. },
  29465. back: {
  29466. height: math.unit(6 + 3 / 12, "feet"),
  29467. name: "Back",
  29468. image: {
  29469. source: "./media/characters/nevan/back.svg",
  29470. extra: 714 / 714,
  29471. bottom: 21 / 735
  29472. }
  29473. },
  29474. frontFlaccid: {
  29475. height: math.unit(6 + 3 / 12, "feet"),
  29476. name: "Front (Flaccid)",
  29477. image: {
  29478. source: "./media/characters/nevan/front-flaccid.svg",
  29479. extra: 704 / 704,
  29480. bottom: 28 / 732
  29481. }
  29482. },
  29483. frontErect: {
  29484. height: math.unit(6 + 3 / 12, "feet"),
  29485. name: "Front (Erect)",
  29486. image: {
  29487. source: "./media/characters/nevan/front-erect.svg",
  29488. extra: 704 / 704,
  29489. bottom: 28 / 732
  29490. }
  29491. },
  29492. backFlaccid: {
  29493. height: math.unit(6 + 3 / 12, "feet"),
  29494. name: "Back (Flaccid)",
  29495. image: {
  29496. source: "./media/characters/nevan/back-flaccid.svg",
  29497. extra: 714 / 714,
  29498. bottom: 21 / 735
  29499. }
  29500. },
  29501. },
  29502. [
  29503. {
  29504. name: "Normal",
  29505. height: math.unit(6 + 3 / 12, "feet"),
  29506. default: true
  29507. },
  29508. ]
  29509. ))
  29510. characterMakers.push(() => makeCharacter(
  29511. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29512. {
  29513. front: {
  29514. height: math.unit(4, "feet"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/arhan/front.svg",
  29518. extra: 3368 / 3133,
  29519. bottom: 0 / 3368
  29520. }
  29521. },
  29522. side: {
  29523. height: math.unit(4, "feet"),
  29524. name: "Side",
  29525. image: {
  29526. source: "./media/characters/arhan/side.svg",
  29527. extra: 3347 / 3105,
  29528. bottom: 0 / 3347
  29529. }
  29530. },
  29531. tongue: {
  29532. height: math.unit(1.42, "feet"),
  29533. name: "Tongue",
  29534. image: {
  29535. source: "./media/characters/arhan/tongue.svg"
  29536. }
  29537. },
  29538. head: {
  29539. height: math.unit(0.85, "feet"),
  29540. name: "Head",
  29541. image: {
  29542. source: "./media/characters/arhan/head.svg"
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Normal",
  29549. height: math.unit(4, "feet"),
  29550. default: true
  29551. },
  29552. ]
  29553. ))
  29554. characterMakers.push(() => makeCharacter(
  29555. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29556. {
  29557. front: {
  29558. height: math.unit(5 + 7.5 / 12, "feet"),
  29559. weight: math.unit(120, "lb"),
  29560. name: "Front",
  29561. image: {
  29562. source: "./media/characters/digi-duncan/front.svg",
  29563. extra: 330 / 326,
  29564. bottom: 16 / 346
  29565. }
  29566. },
  29567. side: {
  29568. height: math.unit(5 + 7.5 / 12, "feet"),
  29569. weight: math.unit(120, "lb"),
  29570. name: "Side",
  29571. image: {
  29572. source: "./media/characters/digi-duncan/side.svg",
  29573. extra: 341 / 337,
  29574. bottom: 1 / 342
  29575. }
  29576. },
  29577. back: {
  29578. height: math.unit(5 + 7.5 / 12, "feet"),
  29579. weight: math.unit(120, "lb"),
  29580. name: "Back",
  29581. image: {
  29582. source: "./media/characters/digi-duncan/back.svg",
  29583. extra: 330 / 326,
  29584. bottom: 12 / 342
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Speck",
  29591. height: math.unit(0.25, "mm")
  29592. },
  29593. {
  29594. name: "Micro",
  29595. height: math.unit(5, "mm")
  29596. },
  29597. {
  29598. name: "Tiny",
  29599. height: math.unit(0.5, "inches"),
  29600. default: true
  29601. },
  29602. {
  29603. name: "Human",
  29604. height: math.unit(5 + 7.5 / 12, "feet")
  29605. },
  29606. {
  29607. name: "Minigiant",
  29608. height: math.unit(8 + 5.25, "feet")
  29609. },
  29610. {
  29611. name: "Giant",
  29612. height: math.unit(2000, "feet")
  29613. },
  29614. {
  29615. name: "Mega",
  29616. height: math.unit(371.1, "miles")
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(2, "meters"),
  29625. weight: math.unit(350, "kg"),
  29626. name: "Front",
  29627. image: {
  29628. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29629. extra: 898 / 838,
  29630. bottom: 9 / 907
  29631. }
  29632. },
  29633. },
  29634. [
  29635. {
  29636. name: "Micro",
  29637. height: math.unit(8, "meters")
  29638. },
  29639. {
  29640. name: "Normal",
  29641. height: math.unit(50, "meters"),
  29642. default: true
  29643. },
  29644. {
  29645. name: "Macro",
  29646. height: math.unit(500, "meters")
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29652. {
  29653. front: {
  29654. height: math.unit(6 + 6 / 12, "feet"),
  29655. name: "Front",
  29656. image: {
  29657. source: "./media/characters/khardesh/front.svg",
  29658. extra: 888 / 797,
  29659. bottom: 25 / 913
  29660. }
  29661. },
  29662. },
  29663. [
  29664. {
  29665. name: "Normal",
  29666. height: math.unit(6 + 6 / 12, "feet"),
  29667. default: true
  29668. },
  29669. {
  29670. name: "Normal+",
  29671. height: math.unit(4, "meters")
  29672. },
  29673. {
  29674. name: "Macro",
  29675. height: math.unit(50, "meters")
  29676. },
  29677. {
  29678. name: "Macro+",
  29679. height: math.unit(100, "meters")
  29680. },
  29681. {
  29682. name: "Megamacro",
  29683. height: math.unit(20, "km")
  29684. },
  29685. ]
  29686. ))
  29687. characterMakers.push(() => makeCharacter(
  29688. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29689. {
  29690. front: {
  29691. height: math.unit(6, "feet"),
  29692. weight: math.unit(150, "lb"),
  29693. name: "Front",
  29694. image: {
  29695. source: "./media/characters/kosho/front.svg",
  29696. extra: 1847 / 1847,
  29697. bottom: 86 / 1933
  29698. }
  29699. },
  29700. },
  29701. [
  29702. {
  29703. name: "Second-stage micro",
  29704. height: math.unit(0.5, "inches")
  29705. },
  29706. {
  29707. name: "First-stage micro",
  29708. height: math.unit(6, "inches")
  29709. },
  29710. {
  29711. name: "Normal",
  29712. height: math.unit(6, "feet"),
  29713. default: true
  29714. },
  29715. {
  29716. name: "First-stage macro",
  29717. height: math.unit(72, "feet")
  29718. },
  29719. {
  29720. name: "Second-stage macro",
  29721. height: math.unit(864, "feet")
  29722. },
  29723. ]
  29724. ))
  29725. characterMakers.push(() => makeCharacter(
  29726. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29727. {
  29728. normal: {
  29729. height: math.unit(4 + 6 / 12, "feet"),
  29730. name: "Normal",
  29731. image: {
  29732. source: "./media/characters/hydra/normal.svg",
  29733. extra: 2833 / 2634,
  29734. bottom: 68 / 2901
  29735. }
  29736. },
  29737. smol: {
  29738. height: math.unit(0.705, "inches"),
  29739. name: "Smol",
  29740. image: {
  29741. source: "./media/characters/hydra/smol.svg",
  29742. extra: 2715 / 2540,
  29743. bottom: 0 / 2715
  29744. }
  29745. },
  29746. },
  29747. [
  29748. {
  29749. name: "Normal",
  29750. height: math.unit(4 + 6 / 12, "feet"),
  29751. default: true
  29752. }
  29753. ]
  29754. ))
  29755. characterMakers.push(() => makeCharacter(
  29756. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29757. {
  29758. front: {
  29759. height: math.unit(0.6, "cm"),
  29760. name: "Front",
  29761. image: {
  29762. source: "./media/characters/daz/front.svg",
  29763. extra: 1682 / 1164,
  29764. bottom: 42 / 1724
  29765. }
  29766. },
  29767. },
  29768. [
  29769. {
  29770. name: "Normal",
  29771. height: math.unit(0.6, "cm"),
  29772. default: true
  29773. },
  29774. ]
  29775. ))
  29776. characterMakers.push(() => makeCharacter(
  29777. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29778. {
  29779. front: {
  29780. height: math.unit(6, "feet"),
  29781. weight: math.unit(235, "lb"),
  29782. name: "Front",
  29783. image: {
  29784. source: "./media/characters/theo-pangolin/front.svg",
  29785. extra: 1996 / 1969,
  29786. bottom: 115 / 2111
  29787. }
  29788. },
  29789. back: {
  29790. height: math.unit(6, "feet"),
  29791. weight: math.unit(235, "lb"),
  29792. name: "Back",
  29793. image: {
  29794. source: "./media/characters/theo-pangolin/back.svg",
  29795. extra: 1979 / 1979,
  29796. bottom: 40 / 2019
  29797. }
  29798. },
  29799. feral: {
  29800. height: math.unit(2, "feet"),
  29801. weight: math.unit(30, "lb"),
  29802. name: "Feral",
  29803. image: {
  29804. source: "./media/characters/theo-pangolin/feral.svg",
  29805. extra: 803 / 791,
  29806. bottom: 181 / 984
  29807. }
  29808. },
  29809. footFive: {
  29810. height: math.unit(1.43, "feet"),
  29811. name: "Foot (Five Toes)",
  29812. image: {
  29813. source: "./media/characters/theo-pangolin/foot-five.svg"
  29814. }
  29815. },
  29816. footFour: {
  29817. height: math.unit(1.43, "feet"),
  29818. name: "Foot (Four Toes)",
  29819. image: {
  29820. source: "./media/characters/theo-pangolin/foot-four.svg"
  29821. }
  29822. },
  29823. handFour: {
  29824. height: math.unit(0.81, "feet"),
  29825. name: "Hand (Four Fingers)",
  29826. image: {
  29827. source: "./media/characters/theo-pangolin/hand-four.svg"
  29828. }
  29829. },
  29830. handThree: {
  29831. height: math.unit(0.81, "feet"),
  29832. name: "Hand (Three Fingers)",
  29833. image: {
  29834. source: "./media/characters/theo-pangolin/hand-three.svg"
  29835. }
  29836. },
  29837. headFront: {
  29838. height: math.unit(1.37, "feet"),
  29839. name: "Head (Front)",
  29840. image: {
  29841. source: "./media/characters/theo-pangolin/head-front.svg"
  29842. }
  29843. },
  29844. headSide: {
  29845. height: math.unit(1.43, "feet"),
  29846. name: "Head (Side)",
  29847. image: {
  29848. source: "./media/characters/theo-pangolin/head-side.svg"
  29849. }
  29850. },
  29851. tongue: {
  29852. height: math.unit(2.29, "feet"),
  29853. name: "Tongue",
  29854. image: {
  29855. source: "./media/characters/theo-pangolin/tongue.svg"
  29856. }
  29857. },
  29858. },
  29859. [
  29860. {
  29861. name: "Normal",
  29862. height: math.unit(6, "feet")
  29863. },
  29864. {
  29865. name: "Macro",
  29866. height: math.unit(400, "feet"),
  29867. default: true
  29868. },
  29869. ]
  29870. ))
  29871. characterMakers.push(() => makeCharacter(
  29872. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29873. {
  29874. front: {
  29875. height: math.unit(6, "inches"),
  29876. weight: math.unit(0.036, "kg"),
  29877. name: "Front",
  29878. image: {
  29879. source: "./media/characters/renée/front.svg",
  29880. extra: 900 / 886,
  29881. bottom: 8 / 908
  29882. }
  29883. },
  29884. },
  29885. [
  29886. {
  29887. name: "Nano",
  29888. height: math.unit(1, "nm")
  29889. },
  29890. {
  29891. name: "Micro",
  29892. height: math.unit(1, "mm")
  29893. },
  29894. {
  29895. name: "Normal",
  29896. height: math.unit(6, "inches")
  29897. },
  29898. {
  29899. name: "Macro",
  29900. height: math.unit(2000, "feet"),
  29901. default: true
  29902. },
  29903. {
  29904. name: "Megamacro",
  29905. height: math.unit(2, "km")
  29906. },
  29907. {
  29908. name: "Gigamacro",
  29909. height: math.unit(2000, "km")
  29910. },
  29911. {
  29912. name: "Teramacro",
  29913. height: math.unit(250000, "km")
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29919. {
  29920. front: {
  29921. height: math.unit(4, "meters"),
  29922. weight: math.unit(150, "kg"),
  29923. name: "Front",
  29924. image: {
  29925. source: "./media/characters/caledvwlch/front.svg",
  29926. extra: 1760 / 1551,
  29927. bottom: 28 / 1788
  29928. }
  29929. },
  29930. side: {
  29931. height: math.unit(4, "meters"),
  29932. weight: math.unit(150, "kg"),
  29933. name: "Side",
  29934. image: {
  29935. source: "./media/characters/caledvwlch/side.svg",
  29936. extra: 1605 / 1536,
  29937. bottom: 31 / 1636
  29938. }
  29939. },
  29940. back: {
  29941. height: math.unit(4, "meters"),
  29942. weight: math.unit(150, "kg"),
  29943. name: "Back",
  29944. image: {
  29945. source: "./media/characters/caledvwlch/back.svg",
  29946. extra: 1635 / 1565,
  29947. bottom: 27 / 1662
  29948. }
  29949. },
  29950. },
  29951. [
  29952. {
  29953. name: "\"Incognito\"",
  29954. height: math.unit(4, "meters")
  29955. },
  29956. {
  29957. name: "Small rampage",
  29958. height: math.unit(600, "meters")
  29959. },
  29960. {
  29961. name: "Mega",
  29962. height: math.unit(30, "km")
  29963. },
  29964. {
  29965. name: "Home-size",
  29966. height: math.unit(50, "km"),
  29967. default: true
  29968. },
  29969. {
  29970. name: "Giga",
  29971. height: math.unit(300, "km")
  29972. },
  29973. {
  29974. name: "Lounging",
  29975. height: math.unit(11000, "km")
  29976. },
  29977. {
  29978. name: "Planet snacking",
  29979. height: math.unit(2000000, "km")
  29980. },
  29981. ]
  29982. ))
  29983. characterMakers.push(() => makeCharacter(
  29984. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29985. {
  29986. front: {
  29987. height: math.unit(6, "feet"),
  29988. weight: math.unit(215, "lb"),
  29989. name: "Front",
  29990. image: {
  29991. source: "./media/characters/sapphire-svell/front.svg",
  29992. extra: 495 / 455,
  29993. bottom: 20 / 515
  29994. }
  29995. },
  29996. back: {
  29997. height: math.unit(6, "feet"),
  29998. weight: math.unit(216, "lb"),
  29999. name: "Back",
  30000. image: {
  30001. source: "./media/characters/sapphire-svell/back.svg",
  30002. extra: 497 / 477,
  30003. bottom: 7 / 504
  30004. }
  30005. },
  30006. maw: {
  30007. height: math.unit(1.57, "feet"),
  30008. name: "Maw",
  30009. image: {
  30010. source: "./media/characters/sapphire-svell/maw.svg"
  30011. }
  30012. },
  30013. foot: {
  30014. height: math.unit(1.07, "feet"),
  30015. name: "Foot",
  30016. image: {
  30017. source: "./media/characters/sapphire-svell/foot.svg"
  30018. }
  30019. },
  30020. toering: {
  30021. height: math.unit(1.7, "inch"),
  30022. name: "Toering",
  30023. image: {
  30024. source: "./media/characters/sapphire-svell/toering.svg"
  30025. }
  30026. },
  30027. },
  30028. [
  30029. {
  30030. name: "Normal",
  30031. height: math.unit(300, "feet"),
  30032. default: true
  30033. },
  30034. {
  30035. name: "Augmented",
  30036. height: math.unit(1250, "feet")
  30037. },
  30038. {
  30039. name: "Unleashed",
  30040. height: math.unit(3000, "feet")
  30041. },
  30042. ]
  30043. ))
  30044. characterMakers.push(() => makeCharacter(
  30045. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30046. {
  30047. side: {
  30048. height: math.unit(2 + 3 / 12, "feet"),
  30049. weight: math.unit(110, "lb"),
  30050. name: "Side",
  30051. image: {
  30052. source: "./media/characters/glitch-flux/side.svg",
  30053. extra: 997 / 805,
  30054. bottom: 20 / 1017
  30055. }
  30056. },
  30057. },
  30058. [
  30059. {
  30060. name: "Normal",
  30061. height: math.unit(2 + 3 / 12, "feet"),
  30062. default: true
  30063. },
  30064. ]
  30065. ))
  30066. characterMakers.push(() => makeCharacter(
  30067. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30068. {
  30069. front: {
  30070. height: math.unit(4, "meters"),
  30071. name: "Front",
  30072. image: {
  30073. source: "./media/characters/mid/front.svg",
  30074. extra: 507 / 476,
  30075. bottom: 17 / 524
  30076. }
  30077. },
  30078. back: {
  30079. height: math.unit(4, "meters"),
  30080. name: "Back",
  30081. image: {
  30082. source: "./media/characters/mid/back.svg",
  30083. extra: 519 / 487,
  30084. bottom: 7 / 526
  30085. }
  30086. },
  30087. stuck: {
  30088. height: math.unit(2.2, "meters"),
  30089. name: "Stuck",
  30090. image: {
  30091. source: "./media/characters/mid/stuck.svg",
  30092. extra: 1951 / 1869,
  30093. bottom: 88 / 2039
  30094. }
  30095. }
  30096. },
  30097. [
  30098. {
  30099. name: "Normal",
  30100. height: math.unit(4, "meters"),
  30101. default: true
  30102. },
  30103. {
  30104. name: "Big",
  30105. height: math.unit(10, "meters")
  30106. },
  30107. {
  30108. name: "Macro",
  30109. height: math.unit(800, "meters")
  30110. },
  30111. {
  30112. name: "Megamacro",
  30113. height: math.unit(100, "km")
  30114. },
  30115. {
  30116. name: "Overgrown",
  30117. height: math.unit(1, "parsec")
  30118. },
  30119. ]
  30120. ))
  30121. characterMakers.push(() => makeCharacter(
  30122. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30123. {
  30124. front: {
  30125. height: math.unit(2.5, "meters"),
  30126. weight: math.unit(225, "kg"),
  30127. name: "Front",
  30128. image: {
  30129. source: "./media/characters/iris/front.svg",
  30130. extra: 3348 / 3251,
  30131. bottom: 205 / 3553
  30132. }
  30133. },
  30134. maw: {
  30135. height: math.unit(0.56, "meter"),
  30136. name: "Maw",
  30137. image: {
  30138. source: "./media/characters/iris/maw.svg"
  30139. }
  30140. },
  30141. },
  30142. [
  30143. {
  30144. name: "Mewter cat",
  30145. height: math.unit(1.2, "meters")
  30146. },
  30147. {
  30148. name: "Minimacro",
  30149. height: math.unit(2.5, "meters"),
  30150. default: true
  30151. },
  30152. {
  30153. name: "Macro",
  30154. height: math.unit(180, "meters")
  30155. },
  30156. {
  30157. name: "Megamacro",
  30158. height: math.unit(2746, "meters")
  30159. },
  30160. ]
  30161. ))
  30162. characterMakers.push(() => makeCharacter(
  30163. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30164. {
  30165. front: {
  30166. height: math.unit(6, "feet"),
  30167. weight: math.unit(135, "lb"),
  30168. name: "Front",
  30169. image: {
  30170. source: "./media/characters/axel/front.svg",
  30171. extra: 908 / 908,
  30172. bottom: 58 / 966
  30173. }
  30174. },
  30175. side: {
  30176. height: math.unit(6, "feet"),
  30177. weight: math.unit(135, "lb"),
  30178. name: "Side",
  30179. image: {
  30180. source: "./media/characters/axel/side.svg",
  30181. extra: 958 / 958,
  30182. bottom: 11 / 969
  30183. }
  30184. },
  30185. back: {
  30186. height: math.unit(6, "feet"),
  30187. weight: math.unit(135, "lb"),
  30188. name: "Back",
  30189. image: {
  30190. source: "./media/characters/axel/back.svg",
  30191. extra: 887 / 887,
  30192. bottom: 34 / 921
  30193. }
  30194. },
  30195. head: {
  30196. height: math.unit(1.07, "feet"),
  30197. name: "Head",
  30198. image: {
  30199. source: "./media/characters/axel/head.svg"
  30200. }
  30201. },
  30202. beak: {
  30203. height: math.unit(1.4, "feet"),
  30204. name: "Beak",
  30205. image: {
  30206. source: "./media/characters/axel/beak.svg"
  30207. }
  30208. },
  30209. beakSide: {
  30210. height: math.unit(1.4, "feet"),
  30211. name: "Beak Side",
  30212. image: {
  30213. source: "./media/characters/axel/beak-side.svg"
  30214. }
  30215. },
  30216. sheath: {
  30217. height: math.unit(0.5, "feet"),
  30218. name: "Sheath",
  30219. image: {
  30220. source: "./media/characters/axel/sheath.svg"
  30221. }
  30222. },
  30223. dick: {
  30224. height: math.unit(0.98, "feet"),
  30225. name: "Dick",
  30226. image: {
  30227. source: "./media/characters/axel/dick.svg"
  30228. }
  30229. },
  30230. },
  30231. [
  30232. {
  30233. name: "Macro",
  30234. height: math.unit(68, "meters"),
  30235. default: true
  30236. },
  30237. ]
  30238. ))
  30239. characterMakers.push(() => makeCharacter(
  30240. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30241. {
  30242. front: {
  30243. height: math.unit(3.5, "meters"),
  30244. weight: math.unit(1200, "kg"),
  30245. name: "Front",
  30246. image: {
  30247. source: "./media/characters/joanna/front.svg",
  30248. extra: 1596 / 1488,
  30249. bottom: 29 / 1625
  30250. }
  30251. },
  30252. back: {
  30253. height: math.unit(3.5, "meters"),
  30254. weight: math.unit(1200, "kg"),
  30255. name: "Back",
  30256. image: {
  30257. source: "./media/characters/joanna/back.svg",
  30258. extra: 1594 / 1495,
  30259. bottom: 26 / 1620
  30260. }
  30261. },
  30262. frontShorts: {
  30263. height: math.unit(3.5, "meters"),
  30264. weight: math.unit(1200, "kg"),
  30265. name: "Front (Shorts)",
  30266. image: {
  30267. source: "./media/characters/joanna/front-shorts.svg",
  30268. extra: 1596 / 1488,
  30269. bottom: 29 / 1625
  30270. }
  30271. },
  30272. frontBiker: {
  30273. height: math.unit(3.5, "meters"),
  30274. weight: math.unit(1200, "kg"),
  30275. name: "Front (Biker)",
  30276. image: {
  30277. source: "./media/characters/joanna/front-biker.svg",
  30278. extra: 1596 / 1488,
  30279. bottom: 29 / 1625
  30280. }
  30281. },
  30282. backBiker: {
  30283. height: math.unit(3.5, "meters"),
  30284. weight: math.unit(1200, "kg"),
  30285. name: "Back (Biker)",
  30286. image: {
  30287. source: "./media/characters/joanna/back-biker.svg",
  30288. extra: 1594 / 1495,
  30289. bottom: 88 / 1682
  30290. }
  30291. },
  30292. bikeLeft: {
  30293. height: math.unit(2.4, "meters"),
  30294. weight: math.unit(1600, "kg"),
  30295. name: "Bike (Left)",
  30296. image: {
  30297. source: "./media/characters/joanna/bike-left.svg",
  30298. extra: 720 / 720,
  30299. bottom: 8 / 728
  30300. }
  30301. },
  30302. bikeRight: {
  30303. height: math.unit(2.4, "meters"),
  30304. weight: math.unit(1600, "kg"),
  30305. name: "Bike (Right)",
  30306. image: {
  30307. source: "./media/characters/joanna/bike-right.svg",
  30308. extra: 720 / 720,
  30309. bottom: 8 / 728
  30310. }
  30311. },
  30312. },
  30313. [
  30314. {
  30315. name: "Incognito",
  30316. height: math.unit(3.5, "meters")
  30317. },
  30318. {
  30319. name: "Casual Big",
  30320. height: math.unit(200, "meters")
  30321. },
  30322. {
  30323. name: "Macro",
  30324. height: math.unit(600, "meters")
  30325. },
  30326. {
  30327. name: "Original",
  30328. height: math.unit(20, "km"),
  30329. default: true
  30330. },
  30331. {
  30332. name: "Giga",
  30333. height: math.unit(400, "km")
  30334. },
  30335. {
  30336. name: "Lounging",
  30337. height: math.unit(1500, "km")
  30338. },
  30339. {
  30340. name: "Planetary",
  30341. height: math.unit(200000, "km")
  30342. },
  30343. ]
  30344. ))
  30345. characterMakers.push(() => makeCharacter(
  30346. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30347. {
  30348. front: {
  30349. height: math.unit(6, "feet"),
  30350. weight: math.unit(150, "lb"),
  30351. name: "Front",
  30352. image: {
  30353. source: "./media/characters/hugo-sigil/front.svg",
  30354. extra: 522 / 500,
  30355. bottom: 2 / 524
  30356. }
  30357. },
  30358. back: {
  30359. height: math.unit(6, "feet"),
  30360. weight: math.unit(150, "lb"),
  30361. name: "Back",
  30362. image: {
  30363. source: "./media/characters/hugo-sigil/back.svg",
  30364. extra: 519 / 495,
  30365. bottom: 5 / 524
  30366. }
  30367. },
  30368. maw: {
  30369. height: math.unit(1.4, "feet"),
  30370. weight: math.unit(150, "lb"),
  30371. name: "Maw",
  30372. image: {
  30373. source: "./media/characters/hugo-sigil/maw.svg"
  30374. }
  30375. },
  30376. feet: {
  30377. height: math.unit(1.56, "feet"),
  30378. weight: math.unit(150, "lb"),
  30379. name: "Feet",
  30380. image: {
  30381. source: "./media/characters/hugo-sigil/feet.svg",
  30382. extra: 177 / 177,
  30383. bottom: 12 / 189
  30384. }
  30385. },
  30386. },
  30387. [
  30388. {
  30389. name: "Normal",
  30390. height: math.unit(6, "feet")
  30391. },
  30392. {
  30393. name: "Macro",
  30394. height: math.unit(200, "feet"),
  30395. default: true
  30396. },
  30397. ]
  30398. ))
  30399. characterMakers.push(() => makeCharacter(
  30400. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30401. {
  30402. front: {
  30403. height: math.unit(6, "feet"),
  30404. weight: math.unit(150, "lb"),
  30405. name: "Front",
  30406. image: {
  30407. source: "./media/characters/peri/front.svg",
  30408. extra: 2354 / 2233,
  30409. bottom: 49 / 2403
  30410. }
  30411. },
  30412. },
  30413. [
  30414. {
  30415. name: "Really Small",
  30416. height: math.unit(1, "nm")
  30417. },
  30418. {
  30419. name: "Micro",
  30420. height: math.unit(4, "inches")
  30421. },
  30422. {
  30423. name: "Normal",
  30424. height: math.unit(7, "inches"),
  30425. default: true
  30426. },
  30427. {
  30428. name: "Macro",
  30429. height: math.unit(400, "feet")
  30430. },
  30431. {
  30432. name: "Megamacro",
  30433. height: math.unit(100, "miles")
  30434. },
  30435. ]
  30436. ))
  30437. characterMakers.push(() => makeCharacter(
  30438. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30439. {
  30440. frontSlim: {
  30441. height: math.unit(7, "feet"),
  30442. name: "Front (Slim)",
  30443. image: {
  30444. source: "./media/characters/issilora/front-slim.svg",
  30445. extra: 529 / 449,
  30446. bottom: 53 / 582
  30447. }
  30448. },
  30449. sideSlim: {
  30450. height: math.unit(7, "feet"),
  30451. name: "Side (Slim)",
  30452. image: {
  30453. source: "./media/characters/issilora/side-slim.svg",
  30454. extra: 570 / 480,
  30455. bottom: 30 / 600
  30456. }
  30457. },
  30458. backSlim: {
  30459. height: math.unit(7, "feet"),
  30460. name: "Back (Slim)",
  30461. image: {
  30462. source: "./media/characters/issilora/back-slim.svg",
  30463. extra: 537 / 455,
  30464. bottom: 46 / 583
  30465. }
  30466. },
  30467. frontBuff: {
  30468. height: math.unit(7, "feet"),
  30469. name: "Front (Buff)",
  30470. image: {
  30471. source: "./media/characters/issilora/front-buff.svg",
  30472. extra: 2310 / 2035,
  30473. bottom: 335 / 2645
  30474. }
  30475. },
  30476. head: {
  30477. height: math.unit(1.94, "feet"),
  30478. name: "Head",
  30479. image: {
  30480. source: "./media/characters/issilora/head.svg"
  30481. }
  30482. },
  30483. },
  30484. [
  30485. {
  30486. name: "Minimum",
  30487. height: math.unit(7, "feet")
  30488. },
  30489. {
  30490. name: "Comfortable",
  30491. height: math.unit(17, "feet")
  30492. },
  30493. {
  30494. name: "Fun Size",
  30495. height: math.unit(47, "feet")
  30496. },
  30497. {
  30498. name: "Natural Macro",
  30499. height: math.unit(137, "feet"),
  30500. default: true
  30501. },
  30502. {
  30503. name: "Maximum Kaiju",
  30504. height: math.unit(397, "feet")
  30505. },
  30506. ]
  30507. ))
  30508. characterMakers.push(() => makeCharacter(
  30509. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30510. {
  30511. front: {
  30512. height: math.unit(50 + 9/12, "feet"),
  30513. weight: math.unit(32.8, "tons"),
  30514. name: "Front",
  30515. image: {
  30516. source: "./media/characters/irb'iiritaahn/front.svg",
  30517. extra: 1878/1826,
  30518. bottom: 326/2204
  30519. }
  30520. },
  30521. back: {
  30522. height: math.unit(50 + 9/12, "feet"),
  30523. weight: math.unit(32.8, "tons"),
  30524. name: "Back",
  30525. image: {
  30526. source: "./media/characters/irb'iiritaahn/back.svg",
  30527. extra: 2052/2018,
  30528. bottom: 152/2204
  30529. }
  30530. },
  30531. head: {
  30532. height: math.unit(12.86, "feet"),
  30533. name: "Head",
  30534. image: {
  30535. source: "./media/characters/irb'iiritaahn/head.svg"
  30536. }
  30537. },
  30538. maw: {
  30539. height: math.unit(9.66, "feet"),
  30540. name: "Maw",
  30541. image: {
  30542. source: "./media/characters/irb'iiritaahn/maw.svg"
  30543. }
  30544. },
  30545. frontDick: {
  30546. height: math.unit(8.78461, "feet"),
  30547. name: "Front Dick",
  30548. image: {
  30549. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30550. }
  30551. },
  30552. rearDick: {
  30553. height: math.unit(8.78461, "feet"),
  30554. name: "Rear Dick",
  30555. image: {
  30556. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30557. }
  30558. },
  30559. rearDickUnfolded: {
  30560. height: math.unit(8.78, "feet"),
  30561. name: "Rear Dick (Unfolded)",
  30562. image: {
  30563. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30564. }
  30565. },
  30566. wings: {
  30567. height: math.unit(43, "feet"),
  30568. name: "Wings",
  30569. image: {
  30570. source: "./media/characters/irb'iiritaahn/wings.svg"
  30571. }
  30572. },
  30573. },
  30574. [
  30575. {
  30576. name: "Macro",
  30577. height: math.unit(50 + 9/12, "feet"),
  30578. default: true
  30579. },
  30580. ]
  30581. ))
  30582. characterMakers.push(() => makeCharacter(
  30583. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30584. {
  30585. front: {
  30586. height: math.unit(205, "cm"),
  30587. weight: math.unit(102, "kg"),
  30588. name: "Front",
  30589. image: {
  30590. source: "./media/characters/irbisgreif/front.svg",
  30591. extra: 785/706,
  30592. bottom: 13/798
  30593. }
  30594. },
  30595. back: {
  30596. height: math.unit(205, "cm"),
  30597. weight: math.unit(102, "kg"),
  30598. name: "Back",
  30599. image: {
  30600. source: "./media/characters/irbisgreif/back.svg",
  30601. extra: 713/701,
  30602. bottom: 26/739
  30603. }
  30604. },
  30605. frontDressed: {
  30606. height: math.unit(216, "cm"),
  30607. weight: math.unit(102, "kg"),
  30608. name: "Front-dressed",
  30609. image: {
  30610. source: "./media/characters/irbisgreif/front-dressed.svg",
  30611. extra: 902/776,
  30612. bottom: 14/916
  30613. }
  30614. },
  30615. sideDressed: {
  30616. height: math.unit(195, "cm"),
  30617. weight: math.unit(102, "kg"),
  30618. name: "Side-dressed",
  30619. image: {
  30620. source: "./media/characters/irbisgreif/side-dressed.svg",
  30621. extra: 788/688,
  30622. bottom: 21/809
  30623. }
  30624. },
  30625. backDressed: {
  30626. height: math.unit(216, "cm"),
  30627. weight: math.unit(102, "kg"),
  30628. name: "Back-dressed",
  30629. image: {
  30630. source: "./media/characters/irbisgreif/back-dressed.svg",
  30631. extra: 901/783,
  30632. bottom: 10/911
  30633. }
  30634. },
  30635. dick: {
  30636. height: math.unit(0.49, "feet"),
  30637. name: "Dick",
  30638. image: {
  30639. source: "./media/characters/irbisgreif/dick.svg"
  30640. }
  30641. },
  30642. wingTop: {
  30643. height: math.unit(1.93 , "feet"),
  30644. name: "Wing-top",
  30645. image: {
  30646. source: "./media/characters/irbisgreif/wing-top.svg"
  30647. }
  30648. },
  30649. wingBottom: {
  30650. height: math.unit(1.93 , "feet"),
  30651. name: "Wing-bottom",
  30652. image: {
  30653. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30654. }
  30655. },
  30656. },
  30657. [
  30658. {
  30659. name: "Normal",
  30660. height: math.unit(216, "cm"),
  30661. default: true
  30662. },
  30663. ]
  30664. ))
  30665. characterMakers.push(() => makeCharacter(
  30666. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30667. {
  30668. front: {
  30669. height: math.unit(6, "feet"),
  30670. weight: math.unit(150, "lb"),
  30671. name: "Front",
  30672. image: {
  30673. source: "./media/characters/pride/front.svg",
  30674. extra: 1299/1230,
  30675. bottom: 18/1317
  30676. }
  30677. },
  30678. },
  30679. [
  30680. {
  30681. name: "Normal",
  30682. height: math.unit(7, "feet")
  30683. },
  30684. {
  30685. name: "Mini-macro",
  30686. height: math.unit(11, "feet")
  30687. },
  30688. {
  30689. name: "Macro",
  30690. height: math.unit(15, "meters"),
  30691. default: true
  30692. },
  30693. {
  30694. name: "Macro+",
  30695. height: math.unit(40, "meters")
  30696. },
  30697. ]
  30698. ))
  30699. characterMakers.push(() => makeCharacter(
  30700. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30701. {
  30702. front: {
  30703. height: math.unit(4 + 2 / 12, "feet"),
  30704. weight: math.unit(95, "lb"),
  30705. name: "Front",
  30706. image: {
  30707. source: "./media/characters/vaelophis-nyx/front.svg",
  30708. extra: 2532/2330,
  30709. bottom: 0/2532
  30710. }
  30711. },
  30712. back: {
  30713. height: math.unit(4 + 2 / 12, "feet"),
  30714. weight: math.unit(95, "lb"),
  30715. name: "Back",
  30716. image: {
  30717. source: "./media/characters/vaelophis-nyx/back.svg",
  30718. extra: 2484/2361,
  30719. bottom: 0/2484
  30720. }
  30721. },
  30722. feralSide: {
  30723. height: math.unit(2 + 1/12, "feet"),
  30724. weight: math.unit(20, "lb"),
  30725. name: "Feral (Side)",
  30726. image: {
  30727. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30728. extra: 1721/1581,
  30729. bottom: 70/1791
  30730. }
  30731. },
  30732. feralLazing: {
  30733. height: math.unit(1.08, "feet"),
  30734. weight: math.unit(20, "lb"),
  30735. name: "Feral (Lazing)",
  30736. image: {
  30737. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30738. extra: 822/822,
  30739. bottom: 248/1070
  30740. }
  30741. },
  30742. ear: {
  30743. height: math.unit(0.416, "feet"),
  30744. name: "Ear",
  30745. image: {
  30746. source: "./media/characters/vaelophis-nyx/ear.svg"
  30747. }
  30748. },
  30749. eye: {
  30750. height: math.unit(0.0748, "feet"),
  30751. name: "Eye",
  30752. image: {
  30753. source: "./media/characters/vaelophis-nyx/eye.svg"
  30754. }
  30755. },
  30756. mouth: {
  30757. height: math.unit(0.378, "feet"),
  30758. name: "Mouth",
  30759. image: {
  30760. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30761. }
  30762. },
  30763. spade: {
  30764. height: math.unit(0.55, "feet"),
  30765. name: "Spade",
  30766. image: {
  30767. source: "./media/characters/vaelophis-nyx/spade.svg"
  30768. }
  30769. },
  30770. },
  30771. [
  30772. {
  30773. name: "Normal",
  30774. height: math.unit(4 + 2/12, "feet"),
  30775. default: true
  30776. },
  30777. ]
  30778. ))
  30779. characterMakers.push(() => makeCharacter(
  30780. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30781. {
  30782. front: {
  30783. height: math.unit(7, "feet"),
  30784. weight: math.unit(231, "lb"),
  30785. name: "Front",
  30786. image: {
  30787. source: "./media/characters/flux/front.svg",
  30788. extra: 919/871,
  30789. bottom: 0/919
  30790. }
  30791. },
  30792. back: {
  30793. height: math.unit(7, "feet"),
  30794. weight: math.unit(231, "lb"),
  30795. name: "Back",
  30796. image: {
  30797. source: "./media/characters/flux/back.svg",
  30798. extra: 1040/992,
  30799. bottom: 0/1040
  30800. }
  30801. },
  30802. frontDressed: {
  30803. height: math.unit(7, "feet"),
  30804. weight: math.unit(231, "lb"),
  30805. name: "Front (Dressed)",
  30806. image: {
  30807. source: "./media/characters/flux/front-dressed.svg",
  30808. extra: 919/871,
  30809. bottom: 0/919
  30810. }
  30811. },
  30812. feralSide: {
  30813. height: math.unit(5, "feet"),
  30814. weight: math.unit(150, "lb"),
  30815. name: "Feral (Side)",
  30816. image: {
  30817. source: "./media/characters/flux/feral-side.svg",
  30818. extra: 598/528,
  30819. bottom: 28/626
  30820. }
  30821. },
  30822. head: {
  30823. height: math.unit(1.585, "feet"),
  30824. name: "Head",
  30825. image: {
  30826. source: "./media/characters/flux/head.svg"
  30827. }
  30828. },
  30829. headSide: {
  30830. height: math.unit(1.74, "feet"),
  30831. name: "Head (Side)",
  30832. image: {
  30833. source: "./media/characters/flux/head-side.svg"
  30834. }
  30835. },
  30836. headSideFire: {
  30837. height: math.unit(1.76, "feet"),
  30838. name: "Head (Side, Fire)",
  30839. image: {
  30840. source: "./media/characters/flux/head-side-fire.svg"
  30841. }
  30842. },
  30843. },
  30844. [
  30845. {
  30846. name: "Normal",
  30847. height: math.unit(7, "feet"),
  30848. default: true
  30849. },
  30850. ]
  30851. ))
  30852. characterMakers.push(() => makeCharacter(
  30853. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30854. {
  30855. front: {
  30856. height: math.unit(9, "feet"),
  30857. weight: math.unit(1012, "lb"),
  30858. name: "Front",
  30859. image: {
  30860. source: "./media/characters/ulfra-lupae/front.svg",
  30861. extra: 1083/1011,
  30862. bottom: 67/1150
  30863. }
  30864. },
  30865. },
  30866. [
  30867. {
  30868. name: "Micro",
  30869. height: math.unit(6, "inches")
  30870. },
  30871. {
  30872. name: "Socializing",
  30873. height: math.unit(6 + 5/12, "feet")
  30874. },
  30875. {
  30876. name: "Normal",
  30877. height: math.unit(9, "feet"),
  30878. default: true
  30879. },
  30880. {
  30881. name: "Macro",
  30882. height: math.unit(150, "feet")
  30883. },
  30884. ]
  30885. ))
  30886. characterMakers.push(() => makeCharacter(
  30887. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30888. {
  30889. front: {
  30890. height: math.unit(5 + 2/12, "feet"),
  30891. weight: math.unit(120, "lb"),
  30892. name: "Front",
  30893. image: {
  30894. source: "./media/characters/timber/front.svg",
  30895. extra: 2814/2705,
  30896. bottom: 181/2995
  30897. }
  30898. },
  30899. },
  30900. [
  30901. {
  30902. name: "Normal",
  30903. height: math.unit(5 + 2/12, "feet"),
  30904. default: true
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30910. {
  30911. front: {
  30912. height: math.unit(5 + 7/12, "feet"),
  30913. weight: math.unit(220, "lb"),
  30914. name: "Front",
  30915. image: {
  30916. source: "./media/characters/nicki/front.svg",
  30917. extra: 453/419,
  30918. bottom: 7/460
  30919. }
  30920. },
  30921. frontAlt: {
  30922. height: math.unit(5 + 7/12, "feet"),
  30923. weight: math.unit(220, "lb"),
  30924. name: "Front-alt",
  30925. image: {
  30926. source: "./media/characters/nicki/front-alt.svg",
  30927. extra: 435/411,
  30928. bottom: 12/447
  30929. }
  30930. },
  30931. back: {
  30932. height: math.unit(5 + 7/12, "feet"),
  30933. weight: math.unit(220, "lb"),
  30934. name: "Back",
  30935. image: {
  30936. source: "./media/characters/nicki/back.svg",
  30937. extra: 440/413,
  30938. bottom: 19/459
  30939. }
  30940. },
  30941. taur: {
  30942. height: math.unit(7 + 6/12, "feet"),
  30943. weight: math.unit(700, "lb"),
  30944. name: "Taur",
  30945. image: {
  30946. source: "./media/characters/nicki/taur.svg",
  30947. extra: 975/773,
  30948. bottom: 0/975
  30949. }
  30950. },
  30951. frontNsfw: {
  30952. height: math.unit(5 + 7/12, "feet"),
  30953. weight: math.unit(220, "lb"),
  30954. name: "Front (NSFW)",
  30955. image: {
  30956. source: "./media/characters/nicki/front-nsfw.svg",
  30957. extra: 453/419,
  30958. bottom: 7/460
  30959. }
  30960. },
  30961. frontNsfwAlt: {
  30962. height: math.unit(5 + 7/12, "feet"),
  30963. weight: math.unit(220, "lb"),
  30964. name: "Front (Alt, NSFW)",
  30965. image: {
  30966. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30967. extra: 435/411,
  30968. bottom: 12/447
  30969. }
  30970. },
  30971. backNsfw: {
  30972. height: math.unit(5 + 7/12, "feet"),
  30973. weight: math.unit(220, "lb"),
  30974. name: "Back (NSFW)",
  30975. image: {
  30976. source: "./media/characters/nicki/back-nsfw.svg",
  30977. extra: 440/413,
  30978. bottom: 19/459
  30979. }
  30980. },
  30981. head: {
  30982. height: math.unit(2.1, "feet"),
  30983. name: "Head",
  30984. image: {
  30985. source: "./media/characters/nicki/head.svg"
  30986. }
  30987. },
  30988. paw: {
  30989. height: math.unit(1.88, "feet"),
  30990. name: "Paw",
  30991. image: {
  30992. source: "./media/characters/nicki/paw.svg"
  30993. }
  30994. },
  30995. },
  30996. [
  30997. {
  30998. name: "Normal",
  30999. height: math.unit(5 + 7/12, "feet"),
  31000. default: true
  31001. },
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31006. {
  31007. front: {
  31008. height: math.unit(7 + 10/12, "feet"),
  31009. weight: math.unit(3.5, "tons"),
  31010. name: "Front",
  31011. image: {
  31012. source: "./media/characters/lee/front.svg",
  31013. extra: 1773/1615,
  31014. bottom: 86/1859
  31015. }
  31016. },
  31017. hand: {
  31018. height: math.unit(1.78, "feet"),
  31019. name: "Hand",
  31020. image: {
  31021. source: "./media/characters/lee/hand.svg"
  31022. }
  31023. },
  31024. maw: {
  31025. height: math.unit(1.18, "feet"),
  31026. name: "Maw",
  31027. image: {
  31028. source: "./media/characters/lee/maw.svg"
  31029. }
  31030. },
  31031. },
  31032. [
  31033. {
  31034. name: "Normal",
  31035. height: math.unit(7 + 10/12, "feet"),
  31036. default: true
  31037. },
  31038. ]
  31039. ))
  31040. characterMakers.push(() => makeCharacter(
  31041. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31042. {
  31043. front: {
  31044. height: math.unit(9, "feet"),
  31045. name: "Front",
  31046. image: {
  31047. source: "./media/characters/guti/front.svg",
  31048. extra: 4551/4355,
  31049. bottom: 123/4674
  31050. }
  31051. },
  31052. tongue: {
  31053. height: math.unit(1, "feet"),
  31054. name: "Tongue",
  31055. image: {
  31056. source: "./media/characters/guti/tongue.svg"
  31057. }
  31058. },
  31059. paw: {
  31060. height: math.unit(1.18, "feet"),
  31061. name: "Paw",
  31062. image: {
  31063. source: "./media/characters/guti/paw.svg"
  31064. }
  31065. },
  31066. },
  31067. [
  31068. {
  31069. name: "Normal",
  31070. height: math.unit(9, "feet"),
  31071. default: true
  31072. },
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31077. {
  31078. side: {
  31079. height: math.unit(5, "meters"),
  31080. name: "Side",
  31081. image: {
  31082. source: "./media/characters/vesper/side.svg",
  31083. extra: 1605/1518,
  31084. bottom: 0/1605
  31085. }
  31086. },
  31087. },
  31088. [
  31089. {
  31090. name: "Small",
  31091. height: math.unit(5, "meters")
  31092. },
  31093. {
  31094. name: "Sage",
  31095. height: math.unit(100, "meters"),
  31096. default: true
  31097. },
  31098. {
  31099. name: "Fun Size",
  31100. height: math.unit(600, "meters")
  31101. },
  31102. {
  31103. name: "Goddess",
  31104. height: math.unit(20000, "km")
  31105. },
  31106. {
  31107. name: "Maximum",
  31108. height: math.unit(5, "galaxies")
  31109. },
  31110. ]
  31111. ))
  31112. characterMakers.push(() => makeCharacter(
  31113. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31114. {
  31115. front: {
  31116. height: math.unit(6 + 3/12, "feet"),
  31117. weight: math.unit(190, "lb"),
  31118. name: "Front",
  31119. image: {
  31120. source: "./media/characters/gawain/front.svg",
  31121. extra: 2222/2139,
  31122. bottom: 90/2312
  31123. }
  31124. },
  31125. back: {
  31126. height: math.unit(6 + 3/12, "feet"),
  31127. weight: math.unit(190, "lb"),
  31128. name: "Back",
  31129. image: {
  31130. source: "./media/characters/gawain/back.svg",
  31131. extra: 2199/2111,
  31132. bottom: 73/2272
  31133. }
  31134. },
  31135. },
  31136. [
  31137. {
  31138. name: "Normal",
  31139. height: math.unit(6 + 3/12, "feet"),
  31140. default: true
  31141. },
  31142. ]
  31143. ))
  31144. characterMakers.push(() => makeCharacter(
  31145. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31146. {
  31147. side: {
  31148. height: math.unit(3.5, "meters"),
  31149. weight: math.unit(16000, "lb"),
  31150. name: "Side",
  31151. image: {
  31152. source: "./media/characters/dascalti/side.svg",
  31153. extra: 392/273,
  31154. bottom: 47/439
  31155. }
  31156. },
  31157. breath: {
  31158. height: math.unit(7.4, "feet"),
  31159. name: "Breath",
  31160. image: {
  31161. source: "./media/characters/dascalti/breath.svg"
  31162. }
  31163. },
  31164. fed: {
  31165. height: math.unit(3.6, "meters"),
  31166. weight: math.unit(16000, "lb"),
  31167. name: "Fed",
  31168. image: {
  31169. source: "./media/characters/dascalti/fed.svg",
  31170. extra: 1419/820,
  31171. bottom: 95/1514
  31172. }
  31173. },
  31174. },
  31175. [
  31176. {
  31177. name: "Normal",
  31178. height: math.unit(3.5, "meters"),
  31179. default: true
  31180. },
  31181. ]
  31182. ))
  31183. characterMakers.push(() => makeCharacter(
  31184. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31185. {
  31186. front: {
  31187. height: math.unit(3 + 5/12, "feet"),
  31188. name: "Front",
  31189. image: {
  31190. source: "./media/characters/mauve/front.svg",
  31191. extra: 1126/1033,
  31192. bottom: 65/1191
  31193. }
  31194. },
  31195. side: {
  31196. height: math.unit(3 + 5/12, "feet"),
  31197. name: "Side",
  31198. image: {
  31199. source: "./media/characters/mauve/side.svg",
  31200. extra: 1089/1001,
  31201. bottom: 29/1118
  31202. }
  31203. },
  31204. back: {
  31205. height: math.unit(3 + 5/12, "feet"),
  31206. name: "Back",
  31207. image: {
  31208. source: "./media/characters/mauve/back.svg",
  31209. extra: 1173/1053,
  31210. bottom: 109/1282
  31211. }
  31212. },
  31213. },
  31214. [
  31215. {
  31216. name: "Normal",
  31217. height: math.unit(3 + 5/12, "feet"),
  31218. default: true
  31219. },
  31220. ]
  31221. ))
  31222. characterMakers.push(() => makeCharacter(
  31223. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31224. {
  31225. front: {
  31226. height: math.unit(6 + 3/12, "feet"),
  31227. weight: math.unit(430, "lb"),
  31228. name: "Front",
  31229. image: {
  31230. source: "./media/characters/carlos/front.svg",
  31231. extra: 1964/1913,
  31232. bottom: 70/2034
  31233. }
  31234. },
  31235. },
  31236. [
  31237. {
  31238. name: "Normal",
  31239. height: math.unit(6 + 3/12, "feet"),
  31240. default: true
  31241. },
  31242. ]
  31243. ))
  31244. characterMakers.push(() => makeCharacter(
  31245. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31246. {
  31247. back: {
  31248. height: math.unit(5 + 10/12, "feet"),
  31249. weight: math.unit(200, "lb"),
  31250. name: "Back",
  31251. image: {
  31252. source: "./media/characters/jax/back.svg",
  31253. extra: 764/739,
  31254. bottom: 25/789
  31255. }
  31256. },
  31257. },
  31258. [
  31259. {
  31260. name: "Normal",
  31261. height: math.unit(5 + 10/12, "feet"),
  31262. default: true
  31263. },
  31264. ]
  31265. ))
  31266. characterMakers.push(() => makeCharacter(
  31267. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31268. {
  31269. front: {
  31270. height: math.unit(8, "feet"),
  31271. weight: math.unit(250, "lb"),
  31272. name: "Front",
  31273. image: {
  31274. source: "./media/characters/eikthynir/front.svg",
  31275. extra: 1332/1166,
  31276. bottom: 82/1414
  31277. }
  31278. },
  31279. back: {
  31280. height: math.unit(8, "feet"),
  31281. weight: math.unit(250, "lb"),
  31282. name: "Back",
  31283. image: {
  31284. source: "./media/characters/eikthynir/back.svg",
  31285. extra: 1342/1190,
  31286. bottom: 19/1361
  31287. }
  31288. },
  31289. dick: {
  31290. height: math.unit(2.35, "feet"),
  31291. name: "Dick",
  31292. image: {
  31293. source: "./media/characters/eikthynir/dick.svg"
  31294. }
  31295. },
  31296. },
  31297. [
  31298. {
  31299. name: "Normal",
  31300. height: math.unit(8, "feet"),
  31301. default: true
  31302. },
  31303. ]
  31304. ))
  31305. characterMakers.push(() => makeCharacter(
  31306. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31307. {
  31308. front: {
  31309. height: math.unit(99, "meters"),
  31310. weight: math.unit(13000, "tons"),
  31311. name: "Front",
  31312. image: {
  31313. source: "./media/characters/zlmos/front.svg",
  31314. extra: 2202/1992,
  31315. bottom: 315/2517
  31316. }
  31317. },
  31318. },
  31319. [
  31320. {
  31321. name: "Macro",
  31322. height: math.unit(99, "meters"),
  31323. default: true
  31324. },
  31325. ]
  31326. ))
  31327. characterMakers.push(() => makeCharacter(
  31328. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31329. {
  31330. front: {
  31331. height: math.unit(6 + 5/12, "feet"),
  31332. name: "Front",
  31333. image: {
  31334. source: "./media/characters/purri/front.svg",
  31335. extra: 1698/1610,
  31336. bottom: 32/1730
  31337. }
  31338. },
  31339. frontAlt: {
  31340. height: math.unit(6 + 5/12, "feet"),
  31341. name: "Front (Alt)",
  31342. image: {
  31343. source: "./media/characters/purri/front-alt.svg",
  31344. extra: 450/420,
  31345. bottom: 26/476
  31346. }
  31347. },
  31348. boots: {
  31349. height: math.unit(5.5, "feet"),
  31350. name: "Boots",
  31351. image: {
  31352. source: "./media/characters/purri/boots.svg",
  31353. extra: 905/853,
  31354. bottom: 18/923
  31355. }
  31356. },
  31357. lying: {
  31358. height: math.unit(2, "feet"),
  31359. name: "Lying",
  31360. image: {
  31361. source: "./media/characters/purri/lying.svg",
  31362. extra: 940/843,
  31363. bottom: 146/1086
  31364. }
  31365. },
  31366. devious: {
  31367. height: math.unit(1.77, "feet"),
  31368. name: "Devious",
  31369. image: {
  31370. source: "./media/characters/purri/devious.svg",
  31371. extra: 1440/1155,
  31372. bottom: 147/1587
  31373. }
  31374. },
  31375. bean: {
  31376. height: math.unit(1.94, "feet"),
  31377. name: "Bean",
  31378. image: {
  31379. source: "./media/characters/purri/bean.svg"
  31380. }
  31381. },
  31382. },
  31383. [
  31384. {
  31385. name: "Micro",
  31386. height: math.unit(1, "mm")
  31387. },
  31388. {
  31389. name: "Normal",
  31390. height: math.unit(6 + 5/12, "feet"),
  31391. default: true
  31392. },
  31393. {
  31394. name: "Macro :3c",
  31395. height: math.unit(2, "miles")
  31396. },
  31397. ]
  31398. ))
  31399. characterMakers.push(() => makeCharacter(
  31400. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31401. {
  31402. front: {
  31403. height: math.unit(6 + 2/12, "feet"),
  31404. weight: math.unit(250, "lb"),
  31405. name: "Front",
  31406. image: {
  31407. source: "./media/characters/moonlight/front.svg",
  31408. extra: 1044/908,
  31409. bottom: 56/1100
  31410. }
  31411. },
  31412. feral: {
  31413. height: math.unit(3 + 1/12, "feet"),
  31414. weight: math.unit(50, "kg"),
  31415. name: "Feral",
  31416. image: {
  31417. source: "./media/characters/moonlight/feral.svg",
  31418. extra: 3705/2791,
  31419. bottom: 145/3850
  31420. }
  31421. },
  31422. paw: {
  31423. height: math.unit(1, "feet"),
  31424. name: "Paw",
  31425. image: {
  31426. source: "./media/characters/moonlight/paw.svg"
  31427. }
  31428. },
  31429. paws: {
  31430. height: math.unit(0.98, "feet"),
  31431. name: "Paws",
  31432. image: {
  31433. source: "./media/characters/moonlight/paws.svg",
  31434. extra: 939/939,
  31435. bottom: 50/989
  31436. }
  31437. },
  31438. mouth: {
  31439. height: math.unit(0.48, "feet"),
  31440. name: "Mouth",
  31441. image: {
  31442. source: "./media/characters/moonlight/mouth.svg"
  31443. }
  31444. },
  31445. dick: {
  31446. height: math.unit(1.46, "feet"),
  31447. name: "Dick",
  31448. image: {
  31449. source: "./media/characters/moonlight/dick.svg"
  31450. }
  31451. },
  31452. },
  31453. [
  31454. {
  31455. name: "Normal",
  31456. height: math.unit(6 + 2/12, "feet"),
  31457. default: true
  31458. },
  31459. {
  31460. name: "Macro",
  31461. height: math.unit(300, "feet")
  31462. },
  31463. {
  31464. name: "Macro+",
  31465. height: math.unit(1, "mile")
  31466. },
  31467. {
  31468. name: "Mt. Moon",
  31469. height: math.unit(5, "miles")
  31470. },
  31471. {
  31472. name: "Megamacro",
  31473. height: math.unit(15, "miles")
  31474. },
  31475. ]
  31476. ))
  31477. characterMakers.push(() => makeCharacter(
  31478. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31479. {
  31480. back: {
  31481. height: math.unit(6, "feet"),
  31482. weight: math.unit(150, "lb"),
  31483. name: "Back",
  31484. image: {
  31485. source: "./media/characters/sylen/back.svg",
  31486. extra: 1335/1273,
  31487. bottom: 107/1442
  31488. }
  31489. },
  31490. },
  31491. [
  31492. {
  31493. name: "Normal",
  31494. height: math.unit(5 + 5/12, "feet")
  31495. },
  31496. {
  31497. name: "Megamacro",
  31498. height: math.unit(3, "miles"),
  31499. default: true
  31500. },
  31501. ]
  31502. ))
  31503. characterMakers.push(() => makeCharacter(
  31504. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31505. {
  31506. front: {
  31507. height: math.unit(6, "feet"),
  31508. weight: math.unit(190, "lb"),
  31509. name: "Front",
  31510. image: {
  31511. source: "./media/characters/huttser/front.svg",
  31512. extra: 1152/1058,
  31513. bottom: 23/1175
  31514. }
  31515. },
  31516. side: {
  31517. height: math.unit(6, "feet"),
  31518. weight: math.unit(190, "lb"),
  31519. name: "Side",
  31520. image: {
  31521. source: "./media/characters/huttser/side.svg",
  31522. extra: 1174/1065,
  31523. bottom: 18/1192
  31524. }
  31525. },
  31526. back: {
  31527. height: math.unit(6, "feet"),
  31528. weight: math.unit(190, "lb"),
  31529. name: "Back",
  31530. image: {
  31531. source: "./media/characters/huttser/back.svg",
  31532. extra: 1158/1056,
  31533. bottom: 12/1170
  31534. }
  31535. },
  31536. },
  31537. [
  31538. ]
  31539. ))
  31540. characterMakers.push(() => makeCharacter(
  31541. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31542. {
  31543. side: {
  31544. height: math.unit(12 + 9/12, "feet"),
  31545. weight: math.unit(15000, "lb"),
  31546. name: "Side",
  31547. image: {
  31548. source: "./media/characters/faan/side.svg",
  31549. extra: 2747/2697,
  31550. bottom: 0/2747
  31551. }
  31552. },
  31553. front: {
  31554. height: math.unit(12 + 9/12, "feet"),
  31555. weight: math.unit(15000, "lb"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/faan/front.svg",
  31559. extra: 607/571,
  31560. bottom: 24/631
  31561. }
  31562. },
  31563. head: {
  31564. height: math.unit(2.85, "feet"),
  31565. name: "Head",
  31566. image: {
  31567. source: "./media/characters/faan/head.svg"
  31568. }
  31569. },
  31570. headAlt: {
  31571. height: math.unit(3.13, "feet"),
  31572. name: "Head-alt",
  31573. image: {
  31574. source: "./media/characters/faan/head-alt.svg"
  31575. }
  31576. },
  31577. },
  31578. [
  31579. {
  31580. name: "Normal",
  31581. height: math.unit(12 + 9/12, "feet"),
  31582. default: true
  31583. },
  31584. ]
  31585. ))
  31586. characterMakers.push(() => makeCharacter(
  31587. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31588. {
  31589. front: {
  31590. height: math.unit(6, "feet"),
  31591. weight: math.unit(300, "lb"),
  31592. name: "Front",
  31593. image: {
  31594. source: "./media/characters/tanio/front.svg",
  31595. extra: 711/673,
  31596. bottom: 25/736
  31597. }
  31598. },
  31599. },
  31600. [
  31601. {
  31602. name: "Normal",
  31603. height: math.unit(6, "feet"),
  31604. default: true
  31605. },
  31606. ]
  31607. ))
  31608. characterMakers.push(() => makeCharacter(
  31609. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31610. {
  31611. front: {
  31612. height: math.unit(3, "inches"),
  31613. name: "Front",
  31614. image: {
  31615. source: "./media/characters/noboru/front.svg",
  31616. extra: 1039/932,
  31617. bottom: 18/1057
  31618. }
  31619. },
  31620. },
  31621. [
  31622. {
  31623. name: "Micro",
  31624. height: math.unit(3, "inches"),
  31625. default: true
  31626. },
  31627. ]
  31628. ))
  31629. characterMakers.push(() => makeCharacter(
  31630. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31631. {
  31632. front: {
  31633. height: math.unit(1.85, "meters"),
  31634. weight: math.unit(80, "kg"),
  31635. name: "Front",
  31636. image: {
  31637. source: "./media/characters/daniel-barrett/front.svg",
  31638. extra: 355/337,
  31639. bottom: 9/364
  31640. }
  31641. },
  31642. },
  31643. [
  31644. {
  31645. name: "Pico",
  31646. height: math.unit(0.0433, "mm")
  31647. },
  31648. {
  31649. name: "Nano",
  31650. height: math.unit(1.5, "mm")
  31651. },
  31652. {
  31653. name: "Micro",
  31654. height: math.unit(5.3, "cm"),
  31655. default: true
  31656. },
  31657. {
  31658. name: "Normal",
  31659. height: math.unit(1.85, "meters")
  31660. },
  31661. {
  31662. name: "Macro",
  31663. height: math.unit(64.7, "meters")
  31664. },
  31665. {
  31666. name: "Megamacro",
  31667. height: math.unit(2.26, "km")
  31668. },
  31669. {
  31670. name: "Gigamacro",
  31671. height: math.unit(79, "km")
  31672. },
  31673. {
  31674. name: "Teramacro",
  31675. height: math.unit(2765, "km")
  31676. },
  31677. {
  31678. name: "Petamacro",
  31679. height: math.unit(96678, "km")
  31680. },
  31681. ]
  31682. ))
  31683. characterMakers.push(() => makeCharacter(
  31684. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31685. {
  31686. front: {
  31687. height: math.unit(30, "meters"),
  31688. weight: math.unit(400, "tons"),
  31689. name: "Front",
  31690. image: {
  31691. source: "./media/characters/zeel/front.svg",
  31692. extra: 2599/2599,
  31693. bottom: 226/2825
  31694. }
  31695. },
  31696. },
  31697. [
  31698. {
  31699. name: "Macro",
  31700. height: math.unit(30, "meters"),
  31701. default: true
  31702. },
  31703. ]
  31704. ))
  31705. characterMakers.push(() => makeCharacter(
  31706. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31707. {
  31708. front: {
  31709. height: math.unit(6 + 7/12, "feet"),
  31710. weight: math.unit(210, "lb"),
  31711. name: "Front",
  31712. image: {
  31713. source: "./media/characters/tarn/front.svg",
  31714. extra: 3517/3220,
  31715. bottom: 91/3608
  31716. }
  31717. },
  31718. back: {
  31719. height: math.unit(6 + 7/12, "feet"),
  31720. weight: math.unit(210, "lb"),
  31721. name: "Back",
  31722. image: {
  31723. source: "./media/characters/tarn/back.svg",
  31724. extra: 3566/3241,
  31725. bottom: 34/3600
  31726. }
  31727. },
  31728. dick: {
  31729. height: math.unit(1.65, "feet"),
  31730. name: "Dick",
  31731. image: {
  31732. source: "./media/characters/tarn/dick.svg"
  31733. }
  31734. },
  31735. paw: {
  31736. height: math.unit(1.80, "feet"),
  31737. name: "Paw",
  31738. image: {
  31739. source: "./media/characters/tarn/paw.svg"
  31740. }
  31741. },
  31742. tongue: {
  31743. height: math.unit(0.97, "feet"),
  31744. name: "Tongue",
  31745. image: {
  31746. source: "./media/characters/tarn/tongue.svg"
  31747. }
  31748. },
  31749. },
  31750. [
  31751. {
  31752. name: "Micro",
  31753. height: math.unit(4, "inches")
  31754. },
  31755. {
  31756. name: "Normal",
  31757. height: math.unit(6 + 7/12, "feet"),
  31758. default: true
  31759. },
  31760. {
  31761. name: "Macro",
  31762. height: math.unit(300, "feet")
  31763. },
  31764. ]
  31765. ))
  31766. characterMakers.push(() => makeCharacter(
  31767. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31768. {
  31769. front: {
  31770. height: math.unit(5 + 7/12, "feet"),
  31771. weight: math.unit(80, "kg"),
  31772. name: "Front",
  31773. image: {
  31774. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31775. extra: 3023/2865,
  31776. bottom: 33/3056
  31777. }
  31778. },
  31779. back: {
  31780. height: math.unit(5 + 7/12, "feet"),
  31781. weight: math.unit(80, "kg"),
  31782. name: "Back",
  31783. image: {
  31784. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31785. extra: 3020/2886,
  31786. bottom: 30/3050
  31787. }
  31788. },
  31789. dick: {
  31790. height: math.unit(0.98, "feet"),
  31791. name: "Dick",
  31792. image: {
  31793. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31794. }
  31795. },
  31796. anatomy: {
  31797. height: math.unit(2.86, "feet"),
  31798. name: "Anatomy",
  31799. image: {
  31800. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31801. }
  31802. },
  31803. },
  31804. [
  31805. {
  31806. name: "Really Small",
  31807. height: math.unit(2, "inches")
  31808. },
  31809. {
  31810. name: "Micro",
  31811. height: math.unit(5.583, "inches")
  31812. },
  31813. {
  31814. name: "Normal",
  31815. height: math.unit(5 + 7/12, "feet"),
  31816. default: true
  31817. },
  31818. {
  31819. name: "Macro",
  31820. height: math.unit(67, "feet")
  31821. },
  31822. {
  31823. name: "Megamacro",
  31824. height: math.unit(134, "feet")
  31825. },
  31826. ]
  31827. ))
  31828. characterMakers.push(() => makeCharacter(
  31829. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31830. {
  31831. front: {
  31832. height: math.unit(9, "feet"),
  31833. weight: math.unit(120, "lb"),
  31834. name: "Front",
  31835. image: {
  31836. source: "./media/characters/sally/front.svg",
  31837. extra: 1506/1349,
  31838. bottom: 66/1572
  31839. }
  31840. },
  31841. },
  31842. [
  31843. {
  31844. name: "Normal",
  31845. height: math.unit(9, "feet"),
  31846. default: true
  31847. },
  31848. ]
  31849. ))
  31850. characterMakers.push(() => makeCharacter(
  31851. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31852. {
  31853. front: {
  31854. height: math.unit(8, "feet"),
  31855. weight: math.unit(900, "lb"),
  31856. name: "Front",
  31857. image: {
  31858. source: "./media/characters/owen/front.svg",
  31859. extra: 1761/1657,
  31860. bottom: 74/1835
  31861. }
  31862. },
  31863. side: {
  31864. height: math.unit(8, "feet"),
  31865. weight: math.unit(900, "lb"),
  31866. name: "Side",
  31867. image: {
  31868. source: "./media/characters/owen/side.svg",
  31869. extra: 1797/1734,
  31870. bottom: 30/1827
  31871. }
  31872. },
  31873. back: {
  31874. height: math.unit(8, "feet"),
  31875. weight: math.unit(900, "lb"),
  31876. name: "Back",
  31877. image: {
  31878. source: "./media/characters/owen/back.svg",
  31879. extra: 1796/1706,
  31880. bottom: 59/1855
  31881. }
  31882. },
  31883. maw: {
  31884. height: math.unit(1.76, "feet"),
  31885. name: "Maw",
  31886. image: {
  31887. source: "./media/characters/owen/maw.svg"
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Normal",
  31894. height: math.unit(8, "feet"),
  31895. default: true
  31896. },
  31897. ]
  31898. ))
  31899. characterMakers.push(() => makeCharacter(
  31900. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31901. {
  31902. front: {
  31903. height: math.unit(4, "feet"),
  31904. weight: math.unit(400, "lb"),
  31905. name: "Front",
  31906. image: {
  31907. source: "./media/characters/ryth/front.svg",
  31908. extra: 1920/1748,
  31909. bottom: 42/1962
  31910. }
  31911. },
  31912. back: {
  31913. height: math.unit(4, "feet"),
  31914. weight: math.unit(400, "lb"),
  31915. name: "Back",
  31916. image: {
  31917. source: "./media/characters/ryth/back.svg",
  31918. extra: 1897/1690,
  31919. bottom: 89/1986
  31920. }
  31921. },
  31922. mouth: {
  31923. height: math.unit(1.39, "feet"),
  31924. name: "Mouth",
  31925. image: {
  31926. source: "./media/characters/ryth/mouth.svg"
  31927. }
  31928. },
  31929. tailmaw: {
  31930. height: math.unit(1.23, "feet"),
  31931. name: "Tailmaw",
  31932. image: {
  31933. source: "./media/characters/ryth/tailmaw.svg"
  31934. }
  31935. },
  31936. goia: {
  31937. height: math.unit(12, "feet"),
  31938. weight: math.unit(10800, "lb"),
  31939. name: "Goia",
  31940. image: {
  31941. source: "./media/characters/ryth/goia.svg",
  31942. extra: 3450/3198,
  31943. bottom: 61/3511
  31944. }
  31945. },
  31946. },
  31947. [
  31948. {
  31949. name: "Normal",
  31950. height: math.unit(4, "feet"),
  31951. default: true
  31952. },
  31953. ]
  31954. ))
  31955. characterMakers.push(() => makeCharacter(
  31956. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31957. {
  31958. front: {
  31959. height: math.unit(7, "feet"),
  31960. weight: math.unit(180, "lb"),
  31961. name: "Front",
  31962. image: {
  31963. source: "./media/characters/necrolance/front.svg",
  31964. extra: 1062/947,
  31965. bottom: 41/1103
  31966. }
  31967. },
  31968. back: {
  31969. height: math.unit(7, "feet"),
  31970. weight: math.unit(180, "lb"),
  31971. name: "Back",
  31972. image: {
  31973. source: "./media/characters/necrolance/back.svg",
  31974. extra: 1045/984,
  31975. bottom: 14/1059
  31976. }
  31977. },
  31978. wing: {
  31979. height: math.unit(2.67, "feet"),
  31980. name: "Wing",
  31981. image: {
  31982. source: "./media/characters/necrolance/wing.svg"
  31983. }
  31984. },
  31985. },
  31986. [
  31987. {
  31988. name: "Normal",
  31989. height: math.unit(7, "feet"),
  31990. default: true
  31991. },
  31992. ]
  31993. ))
  31994. characterMakers.push(() => makeCharacter(
  31995. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31996. {
  31997. front: {
  31998. height: math.unit(76, "meters"),
  31999. weight: math.unit(30000, "tons"),
  32000. name: "Front",
  32001. image: {
  32002. source: "./media/characters/tyler/front.svg",
  32003. extra: 1640/1640,
  32004. bottom: 114/1754
  32005. }
  32006. },
  32007. },
  32008. [
  32009. {
  32010. name: "Macro",
  32011. height: math.unit(76, "meters"),
  32012. default: true
  32013. },
  32014. ]
  32015. ))
  32016. characterMakers.push(() => makeCharacter(
  32017. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32018. {
  32019. front: {
  32020. height: math.unit(4 + 11/12, "feet"),
  32021. weight: math.unit(132, "lb"),
  32022. name: "Front",
  32023. image: {
  32024. source: "./media/characters/icey/front.svg",
  32025. extra: 2750/2550,
  32026. bottom: 33/2783
  32027. }
  32028. },
  32029. back: {
  32030. height: math.unit(4 + 11/12, "feet"),
  32031. weight: math.unit(132, "lb"),
  32032. name: "Back",
  32033. image: {
  32034. source: "./media/characters/icey/back.svg",
  32035. extra: 2624/2481,
  32036. bottom: 35/2659
  32037. }
  32038. },
  32039. },
  32040. [
  32041. {
  32042. name: "Normal",
  32043. height: math.unit(4 + 11/12, "feet"),
  32044. default: true
  32045. },
  32046. ]
  32047. ))
  32048. characterMakers.push(() => makeCharacter(
  32049. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32050. {
  32051. front: {
  32052. height: math.unit(100, "feet"),
  32053. weight: math.unit(0, "lb"),
  32054. name: "Front",
  32055. image: {
  32056. source: "./media/characters/smile/front.svg",
  32057. extra: 2983/2912,
  32058. bottom: 162/3145
  32059. }
  32060. },
  32061. back: {
  32062. height: math.unit(100, "feet"),
  32063. weight: math.unit(0, "lb"),
  32064. name: "Back",
  32065. image: {
  32066. source: "./media/characters/smile/back.svg",
  32067. extra: 3143/3031,
  32068. bottom: 91/3234
  32069. }
  32070. },
  32071. head: {
  32072. height: math.unit(26.3, "feet"),
  32073. weight: math.unit(0, "lb"),
  32074. name: "Head",
  32075. image: {
  32076. source: "./media/characters/smile/head.svg"
  32077. }
  32078. },
  32079. collar: {
  32080. height: math.unit(5.3, "feet"),
  32081. weight: math.unit(0, "lb"),
  32082. name: "Collar",
  32083. image: {
  32084. source: "./media/characters/smile/collar.svg"
  32085. }
  32086. },
  32087. },
  32088. [
  32089. {
  32090. name: "Macro",
  32091. height: math.unit(100, "feet"),
  32092. default: true
  32093. },
  32094. ]
  32095. ))
  32096. characterMakers.push(() => makeCharacter(
  32097. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32098. {
  32099. dragon: {
  32100. height: math.unit(26, "feet"),
  32101. weight: math.unit(36, "tons"),
  32102. name: "Dragon",
  32103. image: {
  32104. source: "./media/characters/arimphae/dragon.svg",
  32105. extra: 1574/983,
  32106. bottom: 357/1931
  32107. }
  32108. },
  32109. drake: {
  32110. height: math.unit(9, "feet"),
  32111. weight: math.unit(1.5, "tons"),
  32112. name: "Drake",
  32113. image: {
  32114. source: "./media/characters/arimphae/drake.svg",
  32115. extra: 1120/925,
  32116. bottom: 435/1555
  32117. }
  32118. },
  32119. },
  32120. [
  32121. {
  32122. name: "Small",
  32123. height: math.unit(26*5/9, "feet")
  32124. },
  32125. {
  32126. name: "Normal",
  32127. height: math.unit(26, "feet"),
  32128. default: true
  32129. },
  32130. ]
  32131. ))
  32132. characterMakers.push(() => makeCharacter(
  32133. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32134. {
  32135. front: {
  32136. height: math.unit(8 + 9/12, "feet"),
  32137. name: "Front",
  32138. image: {
  32139. source: "./media/characters/xander/front.svg",
  32140. extra: 848/673,
  32141. bottom: 62/910
  32142. }
  32143. },
  32144. },
  32145. [
  32146. {
  32147. name: "Normal",
  32148. height: math.unit(8 + 9/12, "feet"),
  32149. default: true
  32150. },
  32151. {
  32152. name: "Gaze Grabber",
  32153. height: math.unit(13 + 8/12, "feet")
  32154. },
  32155. {
  32156. name: "Jaw Dropper",
  32157. height: math.unit(27, "feet")
  32158. },
  32159. {
  32160. name: "Show Stopper",
  32161. height: math.unit(136, "feet")
  32162. },
  32163. {
  32164. name: "Superstar",
  32165. height: math.unit(1.9e6, "miles")
  32166. },
  32167. ]
  32168. ))
  32169. characterMakers.push(() => makeCharacter(
  32170. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32171. {
  32172. side: {
  32173. height: math.unit(2100, "feet"),
  32174. name: "Side",
  32175. image: {
  32176. source: "./media/characters/osiris/side.svg",
  32177. extra: 1105/939,
  32178. bottom: 167/1272
  32179. }
  32180. },
  32181. },
  32182. [
  32183. {
  32184. name: "Macro",
  32185. height: math.unit(2100, "feet"),
  32186. default: true
  32187. },
  32188. ]
  32189. ))
  32190. characterMakers.push(() => makeCharacter(
  32191. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32192. {
  32193. front: {
  32194. height: math.unit(6 + 8/12, "feet"),
  32195. weight: math.unit(225, "lb"),
  32196. name: "Front",
  32197. image: {
  32198. source: "./media/characters/rhys-londe/front.svg",
  32199. extra: 2258/2141,
  32200. bottom: 188/2446
  32201. }
  32202. },
  32203. back: {
  32204. height: math.unit(6 + 8/12, "feet"),
  32205. weight: math.unit(225, "lb"),
  32206. name: "Back",
  32207. image: {
  32208. source: "./media/characters/rhys-londe/back.svg",
  32209. extra: 2237/2137,
  32210. bottom: 63/2300
  32211. }
  32212. },
  32213. frontNsfw: {
  32214. height: math.unit(6 + 8/12, "feet"),
  32215. weight: math.unit(225, "lb"),
  32216. name: "Front (NSFW)",
  32217. image: {
  32218. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32219. extra: 2258/2141,
  32220. bottom: 188/2446
  32221. }
  32222. },
  32223. backNsfw: {
  32224. height: math.unit(6 + 8/12, "feet"),
  32225. weight: math.unit(225, "lb"),
  32226. name: "Back (NSFW)",
  32227. image: {
  32228. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32229. extra: 2237/2137,
  32230. bottom: 63/2300
  32231. }
  32232. },
  32233. dick: {
  32234. height: math.unit(30, "inches"),
  32235. name: "Dick",
  32236. image: {
  32237. source: "./media/characters/rhys-londe/dick.svg"
  32238. }
  32239. },
  32240. maw: {
  32241. height: math.unit(1.6, "feet"),
  32242. name: "Maw",
  32243. image: {
  32244. source: "./media/characters/rhys-londe/maw.svg"
  32245. }
  32246. },
  32247. },
  32248. [
  32249. {
  32250. name: "Normal",
  32251. height: math.unit(6 + 8/12, "feet"),
  32252. default: true
  32253. },
  32254. ]
  32255. ))
  32256. characterMakers.push(() => makeCharacter(
  32257. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32258. {
  32259. front: {
  32260. height: math.unit(3 + 10/12, "feet"),
  32261. weight: math.unit(90, "lb"),
  32262. name: "Front",
  32263. image: {
  32264. source: "./media/characters/taivas-ensim/front.svg",
  32265. extra: 1327/1216,
  32266. bottom: 96/1423
  32267. }
  32268. },
  32269. back: {
  32270. height: math.unit(3 + 10/12, "feet"),
  32271. weight: math.unit(90, "lb"),
  32272. name: "Back",
  32273. image: {
  32274. source: "./media/characters/taivas-ensim/back.svg",
  32275. extra: 1355/1247,
  32276. bottom: 11/1366
  32277. }
  32278. },
  32279. frontNsfw: {
  32280. height: math.unit(3 + 10/12, "feet"),
  32281. weight: math.unit(90, "lb"),
  32282. name: "Front (NSFW)",
  32283. image: {
  32284. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32285. extra: 1327/1216,
  32286. bottom: 96/1423
  32287. }
  32288. },
  32289. backNsfw: {
  32290. height: math.unit(3 + 10/12, "feet"),
  32291. weight: math.unit(90, "lb"),
  32292. name: "Back (NSFW)",
  32293. image: {
  32294. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32295. extra: 1355/1247,
  32296. bottom: 11/1366
  32297. }
  32298. },
  32299. },
  32300. [
  32301. {
  32302. name: "Normal",
  32303. height: math.unit(3 + 10/12, "feet"),
  32304. default: true
  32305. },
  32306. ]
  32307. ))
  32308. characterMakers.push(() => makeCharacter(
  32309. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32310. {
  32311. front: {
  32312. height: math.unit(9 + 6/12, "feet"),
  32313. weight: math.unit(940, "lb"),
  32314. name: "Front",
  32315. image: {
  32316. source: "./media/characters/byliss/front.svg",
  32317. extra: 1327/1290,
  32318. bottom: 82/1409
  32319. }
  32320. },
  32321. back: {
  32322. height: math.unit(9 + 6/12, "feet"),
  32323. weight: math.unit(940, "lb"),
  32324. name: "Back",
  32325. image: {
  32326. source: "./media/characters/byliss/back.svg",
  32327. extra: 1376/1349,
  32328. bottom: 9/1385
  32329. }
  32330. },
  32331. frontNsfw: {
  32332. height: math.unit(9 + 6/12, "feet"),
  32333. weight: math.unit(940, "lb"),
  32334. name: "Front (NSFW)",
  32335. image: {
  32336. source: "./media/characters/byliss/front-nsfw.svg",
  32337. extra: 1327/1290,
  32338. bottom: 82/1409
  32339. }
  32340. },
  32341. backNsfw: {
  32342. height: math.unit(9 + 6/12, "feet"),
  32343. weight: math.unit(940, "lb"),
  32344. name: "Back (NSFW)",
  32345. image: {
  32346. source: "./media/characters/byliss/back-nsfw.svg",
  32347. extra: 1376/1349,
  32348. bottom: 9/1385
  32349. }
  32350. },
  32351. },
  32352. [
  32353. {
  32354. name: "Normal",
  32355. height: math.unit(9 + 6/12, "feet"),
  32356. default: true
  32357. },
  32358. ]
  32359. ))
  32360. characterMakers.push(() => makeCharacter(
  32361. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32362. {
  32363. front: {
  32364. height: math.unit(5 + 2/12, "feet"),
  32365. weight: math.unit(200, "lb"),
  32366. name: "Front",
  32367. image: {
  32368. source: "./media/characters/noraly/front.svg",
  32369. extra: 4985/4773,
  32370. bottom: 150/5135
  32371. }
  32372. },
  32373. full: {
  32374. height: math.unit(5 + 2/12, "feet"),
  32375. weight: math.unit(164, "lb"),
  32376. name: "Full",
  32377. image: {
  32378. source: "./media/characters/noraly/full.svg",
  32379. extra: 1114/1059,
  32380. bottom: 35/1149
  32381. }
  32382. },
  32383. fuller: {
  32384. height: math.unit(5 + 2/12, "feet"),
  32385. weight: math.unit(230, "lb"),
  32386. name: "Fuller",
  32387. image: {
  32388. source: "./media/characters/noraly/fuller.svg",
  32389. extra: 1114/1059,
  32390. bottom: 35/1149
  32391. }
  32392. },
  32393. fullest: {
  32394. height: math.unit(5 + 2/12, "feet"),
  32395. weight: math.unit(300, "lb"),
  32396. name: "Fullest",
  32397. image: {
  32398. source: "./media/characters/noraly/fullest.svg",
  32399. extra: 1114/1059,
  32400. bottom: 35/1149
  32401. }
  32402. },
  32403. },
  32404. [
  32405. {
  32406. name: "Normal",
  32407. height: math.unit(5 + 2/12, "feet"),
  32408. default: true
  32409. },
  32410. ]
  32411. ))
  32412. characterMakers.push(() => makeCharacter(
  32413. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32414. {
  32415. front: {
  32416. height: math.unit(5 + 2/12, "feet"),
  32417. weight: math.unit(210, "lb"),
  32418. name: "Front",
  32419. image: {
  32420. source: "./media/characters/pera/front.svg",
  32421. extra: 1560/1531,
  32422. bottom: 165/1725
  32423. }
  32424. },
  32425. back: {
  32426. height: math.unit(5 + 2/12, "feet"),
  32427. weight: math.unit(210, "lb"),
  32428. name: "Back",
  32429. image: {
  32430. source: "./media/characters/pera/back.svg",
  32431. extra: 1523/1493,
  32432. bottom: 152/1675
  32433. }
  32434. },
  32435. dick: {
  32436. height: math.unit(2.4, "feet"),
  32437. name: "Dick",
  32438. image: {
  32439. source: "./media/characters/pera/dick.svg"
  32440. }
  32441. },
  32442. },
  32443. [
  32444. {
  32445. name: "Normal",
  32446. height: math.unit(5 + 2/12, "feet"),
  32447. default: true
  32448. },
  32449. ]
  32450. ))
  32451. characterMakers.push(() => makeCharacter(
  32452. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32453. {
  32454. front: {
  32455. height: math.unit(12, "feet"),
  32456. weight: math.unit(3200, "lb"),
  32457. name: "Front",
  32458. image: {
  32459. source: "./media/characters/julian/front.svg",
  32460. extra: 2962/2701,
  32461. bottom: 184/3146
  32462. }
  32463. },
  32464. maw: {
  32465. height: math.unit(5.35, "feet"),
  32466. name: "Maw",
  32467. image: {
  32468. source: "./media/characters/julian/maw.svg"
  32469. }
  32470. },
  32471. paw: {
  32472. height: math.unit(3.07, "feet"),
  32473. name: "Paw",
  32474. image: {
  32475. source: "./media/characters/julian/paw.svg"
  32476. }
  32477. },
  32478. },
  32479. [
  32480. {
  32481. name: "Default",
  32482. height: math.unit(12, "feet"),
  32483. default: true
  32484. },
  32485. {
  32486. name: "Big",
  32487. height: math.unit(50, "feet")
  32488. },
  32489. {
  32490. name: "Really Big",
  32491. height: math.unit(1, "mile")
  32492. },
  32493. {
  32494. name: "Extremely Big",
  32495. height: math.unit(100, "miles")
  32496. },
  32497. {
  32498. name: "Planet Hugger",
  32499. height: math.unit(200, "megameters")
  32500. },
  32501. {
  32502. name: "Unreasonably Big",
  32503. height: math.unit(1e300, "meters")
  32504. },
  32505. ]
  32506. ))
  32507. characterMakers.push(() => makeCharacter(
  32508. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32509. {
  32510. solgooleo: {
  32511. height: math.unit(4, "meters"),
  32512. weight: math.unit(6000*1.5, "kg"),
  32513. volume: math.unit(6000, "liters"),
  32514. name: "Solgooleo",
  32515. image: {
  32516. source: "./media/characters/pi/solgooleo.svg",
  32517. extra: 388/331,
  32518. bottom: 29/417
  32519. }
  32520. },
  32521. },
  32522. [
  32523. {
  32524. name: "Normal",
  32525. height: math.unit(4, "meters"),
  32526. default: true
  32527. },
  32528. ]
  32529. ))
  32530. characterMakers.push(() => makeCharacter(
  32531. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32532. {
  32533. front: {
  32534. height: math.unit(8 + 2/12, "feet"),
  32535. weight: math.unit(4, "tons"),
  32536. name: "Front",
  32537. image: {
  32538. source: "./media/characters/shaun/front.svg",
  32539. extra: 1550/1505,
  32540. bottom: 353/1903
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Lorg",
  32547. height: math.unit(8 + 2/12, "feet"),
  32548. default: true
  32549. },
  32550. ]
  32551. ))
  32552. characterMakers.push(() => makeCharacter(
  32553. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32554. {
  32555. front: {
  32556. height: math.unit(7, "feet"),
  32557. name: "Front",
  32558. image: {
  32559. source: "./media/characters/sini/front.svg",
  32560. extra: 726/678,
  32561. bottom: 35/761
  32562. }
  32563. },
  32564. back: {
  32565. height: math.unit(7, "feet"),
  32566. name: "Back",
  32567. image: {
  32568. source: "./media/characters/sini/back.svg",
  32569. extra: 743/701,
  32570. bottom: 12/755
  32571. }
  32572. },
  32573. mawAnthro: {
  32574. height: math.unit(2.14, "feet"),
  32575. name: "Maw (Anthro)",
  32576. image: {
  32577. source: "./media/characters/sini/maw-anthro.svg"
  32578. }
  32579. },
  32580. dick: {
  32581. height: math.unit(1.45, "feet"),
  32582. name: "Dick (Anthro)",
  32583. image: {
  32584. source: "./media/characters/sini/dick-anthro.svg"
  32585. }
  32586. },
  32587. feral: {
  32588. height: math.unit(16, "feet"),
  32589. name: "Feral",
  32590. image: {
  32591. source: "./media/characters/sini/feral.svg",
  32592. extra: 814/605,
  32593. bottom: 11/825
  32594. }
  32595. },
  32596. mawFeral: {
  32597. height: math.unit(5.66, "feet"),
  32598. name: "Maw-feral",
  32599. image: {
  32600. source: "./media/characters/sini/maw-feral.svg"
  32601. }
  32602. },
  32603. footFeral: {
  32604. height: math.unit(5.17, "feet"),
  32605. name: "Foot-feral",
  32606. image: {
  32607. source: "./media/characters/sini/foot-feral.svg"
  32608. }
  32609. },
  32610. },
  32611. [
  32612. {
  32613. name: "Normal",
  32614. height: math.unit(7, "feet"),
  32615. default: true
  32616. },
  32617. ]
  32618. ))
  32619. characterMakers.push(() => makeCharacter(
  32620. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32621. {
  32622. side: {
  32623. height: math.unit(13, "meters"),
  32624. weight: math.unit(9072, "kg"),
  32625. name: "Side",
  32626. image: {
  32627. source: "./media/characters/raylldo/side.svg",
  32628. extra: 403/344,
  32629. bottom: 42/445
  32630. }
  32631. },
  32632. leaping: {
  32633. height: math.unit(12.3, "meters"),
  32634. weight: math.unit(9072, "kg"),
  32635. name: "Leaping",
  32636. image: {
  32637. source: "./media/characters/raylldo/leaping.svg",
  32638. extra: 470/249,
  32639. bottom: 13/483
  32640. }
  32641. },
  32642. flying: {
  32643. height: math.unit(18, "meters"),
  32644. weight: math.unit(9072, "kg"),
  32645. name: "Flying",
  32646. image: {
  32647. source: "./media/characters/raylldo/flying.svg"
  32648. }
  32649. },
  32650. head: {
  32651. height: math.unit(5.85, "meters"),
  32652. name: "Head",
  32653. image: {
  32654. source: "./media/characters/raylldo/head.svg"
  32655. }
  32656. },
  32657. maw: {
  32658. height: math.unit(5.32, "meters"),
  32659. name: "Maw",
  32660. image: {
  32661. source: "./media/characters/raylldo/maw.svg"
  32662. }
  32663. },
  32664. eye: {
  32665. height: math.unit(0.54, "meters"),
  32666. name: "Eye",
  32667. image: {
  32668. source: "./media/characters/raylldo/eye.svg"
  32669. }
  32670. },
  32671. },
  32672. [
  32673. {
  32674. name: "Normal",
  32675. height: math.unit(13, "meters"),
  32676. default: true
  32677. },
  32678. ]
  32679. ))
  32680. characterMakers.push(() => makeCharacter(
  32681. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32682. {
  32683. anthroFront: {
  32684. height: math.unit(9, "feet"),
  32685. weight: math.unit(600, "lb"),
  32686. name: "Anthro (Front)",
  32687. image: {
  32688. source: "./media/characters/glint/anthro-front.svg",
  32689. extra: 1097/1018,
  32690. bottom: 28/1125
  32691. }
  32692. },
  32693. anthroBack: {
  32694. height: math.unit(9, "feet"),
  32695. weight: math.unit(600, "lb"),
  32696. name: "Anthro (Back)",
  32697. image: {
  32698. source: "./media/characters/glint/anthro-back.svg",
  32699. extra: 1154/997,
  32700. bottom: 36/1190
  32701. }
  32702. },
  32703. feral: {
  32704. height: math.unit(11, "feet"),
  32705. weight: math.unit(50000, "lb"),
  32706. name: "Feral",
  32707. image: {
  32708. source: "./media/characters/glint/feral.svg",
  32709. extra: 3035/1585,
  32710. bottom: 1169/4204
  32711. }
  32712. },
  32713. dickAnthro: {
  32714. height: math.unit(0.7, "meters"),
  32715. name: "Dick (Anthro)",
  32716. image: {
  32717. source: "./media/characters/glint/dick-anthro.svg"
  32718. }
  32719. },
  32720. dickFeral: {
  32721. height: math.unit(2.65, "meters"),
  32722. name: "Dick (Feral)",
  32723. image: {
  32724. source: "./media/characters/glint/dick-feral.svg"
  32725. }
  32726. },
  32727. slitHidden: {
  32728. height: math.unit(5.85, "meters"),
  32729. name: "Slit (Hidden)",
  32730. image: {
  32731. source: "./media/characters/glint/slit-hidden.svg"
  32732. }
  32733. },
  32734. slitErect: {
  32735. height: math.unit(5.85, "meters"),
  32736. name: "Slit (Erect)",
  32737. image: {
  32738. source: "./media/characters/glint/slit-erect.svg"
  32739. }
  32740. },
  32741. mawAnthro: {
  32742. height: math.unit(0.63, "meters"),
  32743. name: "Maw (Anthro)",
  32744. image: {
  32745. source: "./media/characters/glint/maw.svg"
  32746. }
  32747. },
  32748. mawFeral: {
  32749. height: math.unit(2.89, "meters"),
  32750. name: "Maw (Feral)",
  32751. image: {
  32752. source: "./media/characters/glint/maw.svg"
  32753. }
  32754. },
  32755. },
  32756. [
  32757. {
  32758. name: "Normal",
  32759. height: math.unit(9, "feet"),
  32760. default: true
  32761. },
  32762. ]
  32763. ))
  32764. characterMakers.push(() => makeCharacter(
  32765. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32766. {
  32767. side: {
  32768. height: math.unit(15, "feet"),
  32769. weight: math.unit(5000, "kg"),
  32770. name: "Side",
  32771. image: {
  32772. source: "./media/characters/kairne/side.svg",
  32773. extra: 979/811,
  32774. bottom: 13/992
  32775. }
  32776. },
  32777. front: {
  32778. height: math.unit(15, "feet"),
  32779. weight: math.unit(5000, "kg"),
  32780. name: "Front",
  32781. image: {
  32782. source: "./media/characters/kairne/front.svg",
  32783. extra: 908/814,
  32784. bottom: 26/934
  32785. }
  32786. },
  32787. sideNsfw: {
  32788. height: math.unit(15, "feet"),
  32789. weight: math.unit(5000, "kg"),
  32790. name: "Side (NSFW)",
  32791. image: {
  32792. source: "./media/characters/kairne/side-nsfw.svg",
  32793. extra: 979/811,
  32794. bottom: 13/992
  32795. }
  32796. },
  32797. frontNsfw: {
  32798. height: math.unit(15, "feet"),
  32799. weight: math.unit(5000, "kg"),
  32800. name: "Front (NSFW)",
  32801. image: {
  32802. source: "./media/characters/kairne/front-nsfw.svg",
  32803. extra: 908/814,
  32804. bottom: 26/934
  32805. }
  32806. },
  32807. dickCaged: {
  32808. height: math.unit(0.65, "meters"),
  32809. name: "Dick-caged",
  32810. image: {
  32811. source: "./media/characters/kairne/dick-caged.svg"
  32812. }
  32813. },
  32814. dick: {
  32815. height: math.unit(0.79, "meters"),
  32816. name: "Dick",
  32817. image: {
  32818. source: "./media/characters/kairne/dick.svg"
  32819. }
  32820. },
  32821. genitals: {
  32822. height: math.unit(1.29, "meters"),
  32823. name: "Genitals",
  32824. image: {
  32825. source: "./media/characters/kairne/genitals.svg"
  32826. }
  32827. },
  32828. maw: {
  32829. height: math.unit(1.73, "meters"),
  32830. name: "Maw",
  32831. image: {
  32832. source: "./media/characters/kairne/maw.svg"
  32833. }
  32834. },
  32835. },
  32836. [
  32837. {
  32838. name: "Normal",
  32839. height: math.unit(15, "feet"),
  32840. default: true
  32841. },
  32842. ]
  32843. ))
  32844. characterMakers.push(() => makeCharacter(
  32845. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32846. {
  32847. front: {
  32848. height: math.unit(5 + 8/12, "feet"),
  32849. weight: math.unit(139, "lb"),
  32850. name: "Front",
  32851. image: {
  32852. source: "./media/characters/biscuit-jackal/front.svg",
  32853. extra: 2106/1961,
  32854. bottom: 58/2164
  32855. }
  32856. },
  32857. back: {
  32858. height: math.unit(5 + 8/12, "feet"),
  32859. weight: math.unit(139, "lb"),
  32860. name: "Back",
  32861. image: {
  32862. source: "./media/characters/biscuit-jackal/back.svg",
  32863. extra: 2132/1976,
  32864. bottom: 57/2189
  32865. }
  32866. },
  32867. werejackal: {
  32868. height: math.unit(6 + 3/12, "feet"),
  32869. weight: math.unit(188, "lb"),
  32870. name: "Werejackal",
  32871. image: {
  32872. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32873. extra: 2373/2178,
  32874. bottom: 53/2426
  32875. }
  32876. },
  32877. },
  32878. [
  32879. {
  32880. name: "Normal",
  32881. height: math.unit(5 + 8/12, "feet"),
  32882. default: true
  32883. },
  32884. ]
  32885. ))
  32886. characterMakers.push(() => makeCharacter(
  32887. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32888. {
  32889. front: {
  32890. height: math.unit(140, "cm"),
  32891. weight: math.unit(45, "kg"),
  32892. name: "Front",
  32893. image: {
  32894. source: "./media/characters/tayra-white/front.svg",
  32895. extra: 2229/2192,
  32896. bottom: 75/2304
  32897. }
  32898. },
  32899. },
  32900. [
  32901. {
  32902. name: "Normal",
  32903. height: math.unit(140, "cm"),
  32904. default: true
  32905. },
  32906. ]
  32907. ))
  32908. characterMakers.push(() => makeCharacter(
  32909. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32910. {
  32911. front: {
  32912. height: math.unit(4 + 5/12, "feet"),
  32913. name: "Front",
  32914. image: {
  32915. source: "./media/characters/scoop/front.svg",
  32916. extra: 1257/1136,
  32917. bottom: 69/1326
  32918. }
  32919. },
  32920. back: {
  32921. height: math.unit(4 + 5/12, "feet"),
  32922. name: "Back",
  32923. image: {
  32924. source: "./media/characters/scoop/back.svg",
  32925. extra: 1321/1152,
  32926. bottom: 32/1353
  32927. }
  32928. },
  32929. maw: {
  32930. height: math.unit(0.68, "feet"),
  32931. name: "Maw",
  32932. image: {
  32933. source: "./media/characters/scoop/maw.svg"
  32934. }
  32935. },
  32936. },
  32937. [
  32938. {
  32939. name: "Really Small",
  32940. height: math.unit(1, "mm")
  32941. },
  32942. {
  32943. name: "Micro",
  32944. height: math.unit(1, "inch")
  32945. },
  32946. {
  32947. name: "Normal",
  32948. height: math.unit(4 + 5/12, "feet"),
  32949. default: true
  32950. },
  32951. {
  32952. name: "Macro",
  32953. height: math.unit(200, "feet")
  32954. },
  32955. {
  32956. name: "Megamacro",
  32957. height: math.unit(3240, "feet")
  32958. },
  32959. {
  32960. name: "Teramacro",
  32961. height: math.unit(2500, "miles")
  32962. },
  32963. ]
  32964. ))
  32965. characterMakers.push(() => makeCharacter(
  32966. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32967. {
  32968. front: {
  32969. height: math.unit(15 + 7/12, "feet"),
  32970. name: "Front",
  32971. image: {
  32972. source: "./media/characters/saphinara/front.svg",
  32973. extra: 604/546,
  32974. bottom: 19/623
  32975. }
  32976. },
  32977. side: {
  32978. height: math.unit(15 + 7/12, "feet"),
  32979. name: "Side",
  32980. image: {
  32981. source: "./media/characters/saphinara/side.svg",
  32982. extra: 605/547,
  32983. bottom: 6/611
  32984. }
  32985. },
  32986. back: {
  32987. height: math.unit(15 + 7/12, "feet"),
  32988. name: "Back",
  32989. image: {
  32990. source: "./media/characters/saphinara/back.svg",
  32991. extra: 591/531,
  32992. bottom: 13/604
  32993. }
  32994. },
  32995. frontTail: {
  32996. height: math.unit(15 + 7/12, "feet"),
  32997. name: "Front (Full Tail)",
  32998. image: {
  32999. source: "./media/characters/saphinara/front-tail.svg",
  33000. extra: 748/547,
  33001. bottom: 66/814
  33002. }
  33003. },
  33004. },
  33005. [
  33006. {
  33007. name: "Normal",
  33008. height: math.unit(15 + 7/12, "feet"),
  33009. default: true
  33010. },
  33011. {
  33012. name: "Angry",
  33013. height: math.unit(30 + 6/12, "feet")
  33014. },
  33015. {
  33016. name: "Enraged",
  33017. height: math.unit(102 + 1/12, "feet")
  33018. },
  33019. ]
  33020. ))
  33021. characterMakers.push(() => makeCharacter(
  33022. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33023. {
  33024. front: {
  33025. height: math.unit(6 + 8/12, "feet"),
  33026. weight: math.unit(300, "lb"),
  33027. name: "Front",
  33028. image: {
  33029. source: "./media/characters/jrain/front.svg",
  33030. extra: 3039/2865,
  33031. bottom: 399/3438
  33032. }
  33033. },
  33034. back: {
  33035. height: math.unit(6 + 8/12, "feet"),
  33036. weight: math.unit(300, "lb"),
  33037. name: "Back",
  33038. image: {
  33039. source: "./media/characters/jrain/back.svg",
  33040. extra: 3089/2938,
  33041. bottom: 172/3261
  33042. }
  33043. },
  33044. head: {
  33045. height: math.unit(2.14, "feet"),
  33046. name: "Head",
  33047. image: {
  33048. source: "./media/characters/jrain/head.svg"
  33049. }
  33050. },
  33051. maw: {
  33052. height: math.unit(1.77, "feet"),
  33053. name: "Maw",
  33054. image: {
  33055. source: "./media/characters/jrain/maw.svg"
  33056. }
  33057. },
  33058. leftHand: {
  33059. height: math.unit(1.1, "feet"),
  33060. name: "Left Hand",
  33061. image: {
  33062. source: "./media/characters/jrain/left-hand.svg"
  33063. }
  33064. },
  33065. rightHand: {
  33066. height: math.unit(1.1, "feet"),
  33067. name: "Right Hand",
  33068. image: {
  33069. source: "./media/characters/jrain/right-hand.svg"
  33070. }
  33071. },
  33072. eye: {
  33073. height: math.unit(0.35, "feet"),
  33074. name: "Eye",
  33075. image: {
  33076. source: "./media/characters/jrain/eye.svg"
  33077. }
  33078. },
  33079. },
  33080. [
  33081. {
  33082. name: "Normal",
  33083. height: math.unit(6 + 8/12, "feet"),
  33084. default: true
  33085. },
  33086. {
  33087. name: "Casually Large",
  33088. height: math.unit(25, "feet")
  33089. },
  33090. {
  33091. name: "Giant",
  33092. height: math.unit(100, "feet")
  33093. },
  33094. {
  33095. name: "Kaiju",
  33096. height: math.unit(300, "feet")
  33097. },
  33098. ]
  33099. ))
  33100. characterMakers.push(() => makeCharacter(
  33101. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33102. {
  33103. dragon: {
  33104. height: math.unit(5, "meters"),
  33105. name: "Dragon",
  33106. image: {
  33107. source: "./media/characters/sabrina/dragon.svg",
  33108. extra: 3670 / 2365,
  33109. bottom: 333 / 4003
  33110. }
  33111. },
  33112. gryphon: {
  33113. height: math.unit(3, "meters"),
  33114. name: "Gryphon",
  33115. image: {
  33116. source: "./media/characters/sabrina/gryphon.svg",
  33117. extra: 1576 / 945,
  33118. bottom: 71 / 1647
  33119. }
  33120. },
  33121. snake: {
  33122. height: math.unit(12, "meters"),
  33123. name: "Snake",
  33124. image: {
  33125. source: "./media/characters/sabrina/snake.svg",
  33126. extra: 1758 / 1320,
  33127. bottom: 186 / 1944
  33128. }
  33129. },
  33130. collar: {
  33131. height: math.unit(1.86, "meters"),
  33132. name: "Collar",
  33133. image: {
  33134. source: "./media/characters/sabrina/collar.svg"
  33135. }
  33136. },
  33137. eye: {
  33138. height: math.unit(0.53, "meters"),
  33139. name: "Eye",
  33140. image: {
  33141. source: "./media/characters/sabrina/eye.svg"
  33142. }
  33143. },
  33144. foot: {
  33145. height: math.unit(1.86, "meters"),
  33146. name: "Foot",
  33147. image: {
  33148. source: "./media/characters/sabrina/foot.svg"
  33149. }
  33150. },
  33151. hand: {
  33152. height: math.unit(1.32, "meters"),
  33153. name: "Hand",
  33154. image: {
  33155. source: "./media/characters/sabrina/hand.svg"
  33156. }
  33157. },
  33158. head: {
  33159. height: math.unit(2.44, "meters"),
  33160. name: "Head",
  33161. image: {
  33162. source: "./media/characters/sabrina/head.svg"
  33163. }
  33164. },
  33165. headAngry: {
  33166. height: math.unit(2.44, "meters"),
  33167. name: "Head (Angry))",
  33168. image: {
  33169. source: "./media/characters/sabrina/head-angry.svg"
  33170. }
  33171. },
  33172. maw: {
  33173. height: math.unit(1.65, "meters"),
  33174. name: "Maw",
  33175. image: {
  33176. source: "./media/characters/sabrina/maw.svg"
  33177. }
  33178. },
  33179. spikes: {
  33180. height: math.unit(1.69, "meters"),
  33181. name: "Spikes",
  33182. image: {
  33183. source: "./media/characters/sabrina/spikes.svg"
  33184. }
  33185. },
  33186. stomach: {
  33187. height: math.unit(1.15, "meters"),
  33188. name: "Stomach",
  33189. image: {
  33190. source: "./media/characters/sabrina/stomach.svg"
  33191. }
  33192. },
  33193. tongue: {
  33194. height: math.unit(1.27, "meters"),
  33195. name: "Tongue",
  33196. image: {
  33197. source: "./media/characters/sabrina/tongue.svg"
  33198. }
  33199. },
  33200. wingDorsal: {
  33201. height: math.unit(4.85, "meters"),
  33202. name: "Wing (Dorsal)",
  33203. image: {
  33204. source: "./media/characters/sabrina/wing-dorsal.svg"
  33205. }
  33206. },
  33207. wingVentral: {
  33208. height: math.unit(4.85, "meters"),
  33209. name: "Wing (Ventral)",
  33210. image: {
  33211. source: "./media/characters/sabrina/wing-ventral.svg"
  33212. }
  33213. },
  33214. },
  33215. [
  33216. {
  33217. name: "Normal",
  33218. height: math.unit(5, "meters"),
  33219. default: true
  33220. },
  33221. ]
  33222. ))
  33223. characterMakers.push(() => makeCharacter(
  33224. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33225. {
  33226. frontMaid: {
  33227. height: math.unit(5 + 5/12, "feet"),
  33228. weight: math.unit(130, "lb"),
  33229. name: "Front (Maid)",
  33230. image: {
  33231. source: "./media/characters/midnight-tales/front-maid.svg",
  33232. extra: 489/454,
  33233. bottom: 61/550
  33234. }
  33235. },
  33236. frontFormal: {
  33237. height: math.unit(5 + 5/12, "feet"),
  33238. weight: math.unit(130, "lb"),
  33239. name: "Front (Formal)",
  33240. image: {
  33241. source: "./media/characters/midnight-tales/front-formal.svg",
  33242. extra: 489/454,
  33243. bottom: 61/550
  33244. }
  33245. },
  33246. back: {
  33247. height: math.unit(5 + 5/12, "feet"),
  33248. weight: math.unit(130, "lb"),
  33249. name: "Back",
  33250. image: {
  33251. source: "./media/characters/midnight-tales/back.svg",
  33252. extra: 498/456,
  33253. bottom: 33/531
  33254. }
  33255. },
  33256. frontBeast: {
  33257. height: math.unit(40, "feet"),
  33258. weight: math.unit(64000, "lb"),
  33259. name: "Front (Beast)",
  33260. image: {
  33261. source: "./media/characters/midnight-tales/front-beast.svg",
  33262. extra: 927/860,
  33263. bottom: 53/980
  33264. }
  33265. },
  33266. backBeast: {
  33267. height: math.unit(40, "feet"),
  33268. weight: math.unit(64000, "lb"),
  33269. name: "Back (Beast)",
  33270. image: {
  33271. source: "./media/characters/midnight-tales/back-beast.svg",
  33272. extra: 929/855,
  33273. bottom: 16/945
  33274. }
  33275. },
  33276. footBeast: {
  33277. height: math.unit(6.7, "feet"),
  33278. name: "Foot (Beast)",
  33279. image: {
  33280. source: "./media/characters/midnight-tales/foot-beast.svg"
  33281. }
  33282. },
  33283. headBeast: {
  33284. height: math.unit(8, "feet"),
  33285. name: "Head (Beast)",
  33286. image: {
  33287. source: "./media/characters/midnight-tales/head-beast.svg"
  33288. }
  33289. },
  33290. },
  33291. [
  33292. {
  33293. name: "Normal",
  33294. height: math.unit(5 + 5 / 12, "feet"),
  33295. default: true
  33296. },
  33297. {
  33298. name: "Macro",
  33299. height: math.unit(25, "feet")
  33300. },
  33301. ]
  33302. ))
  33303. characterMakers.push(() => makeCharacter(
  33304. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33305. {
  33306. front: {
  33307. height: math.unit(5 + 10/12, "feet"),
  33308. name: "Front",
  33309. image: {
  33310. source: "./media/characters/argon/front.svg",
  33311. extra: 2009/1935,
  33312. bottom: 118/2127
  33313. }
  33314. },
  33315. back: {
  33316. height: math.unit(5 + 10/12, "feet"),
  33317. name: "Back",
  33318. image: {
  33319. source: "./media/characters/argon/back.svg",
  33320. extra: 2047/1992,
  33321. bottom: 20/2067
  33322. }
  33323. },
  33324. frontDressed: {
  33325. height: math.unit(5 + 10/12, "feet"),
  33326. name: "Front (Dressed)",
  33327. image: {
  33328. source: "./media/characters/argon/front-dressed.svg",
  33329. extra: 2009/1935,
  33330. bottom: 118/2127
  33331. }
  33332. },
  33333. },
  33334. [
  33335. {
  33336. name: "Normal",
  33337. height: math.unit(5 + 10/12, "feet"),
  33338. default: true
  33339. },
  33340. ]
  33341. ))
  33342. characterMakers.push(() => makeCharacter(
  33343. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33344. {
  33345. front: {
  33346. height: math.unit(8 + 6/12, "feet"),
  33347. weight: math.unit(1150, "lb"),
  33348. name: "Front",
  33349. image: {
  33350. source: "./media/characters/kichi/front.svg",
  33351. extra: 1267/1164,
  33352. bottom: 61/1328
  33353. }
  33354. },
  33355. back: {
  33356. height: math.unit(8 + 6/12, "feet"),
  33357. weight: math.unit(1150, "lb"),
  33358. name: "Back",
  33359. image: {
  33360. source: "./media/characters/kichi/back.svg",
  33361. extra: 1273/1166,
  33362. bottom: 33/1306
  33363. }
  33364. },
  33365. },
  33366. [
  33367. {
  33368. name: "Normal",
  33369. height: math.unit(8 + 6/12, "feet"),
  33370. default: true
  33371. },
  33372. ]
  33373. ))
  33374. characterMakers.push(() => makeCharacter(
  33375. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33376. {
  33377. front: {
  33378. height: math.unit(6, "feet"),
  33379. weight: math.unit(210, "lb"),
  33380. name: "Front",
  33381. image: {
  33382. source: "./media/characters/manetel-greyscale/front.svg",
  33383. extra: 350/312,
  33384. bottom: 8/358
  33385. }
  33386. },
  33387. },
  33388. [
  33389. {
  33390. name: "Micro",
  33391. height: math.unit(2, "inches")
  33392. },
  33393. {
  33394. name: "Normal",
  33395. height: math.unit(6, "feet"),
  33396. default: true
  33397. },
  33398. {
  33399. name: "Minimacro",
  33400. height: math.unit(17, "feet")
  33401. },
  33402. {
  33403. name: "Macro",
  33404. height: math.unit(117, "feet")
  33405. },
  33406. ]
  33407. ))
  33408. characterMakers.push(() => makeCharacter(
  33409. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33410. {
  33411. side: {
  33412. height: math.unit(5 + 1/12, "feet"),
  33413. weight: math.unit(418, "lb"),
  33414. name: "Side",
  33415. image: {
  33416. source: "./media/characters/softpurr/side.svg",
  33417. extra: 1993/1945,
  33418. bottom: 134/2127
  33419. }
  33420. },
  33421. front: {
  33422. height: math.unit(5 + 1/12, "feet"),
  33423. weight: math.unit(418, "lb"),
  33424. name: "Front",
  33425. image: {
  33426. source: "./media/characters/softpurr/front.svg",
  33427. extra: 1950/1856,
  33428. bottom: 174/2124
  33429. }
  33430. },
  33431. paw: {
  33432. height: math.unit(1, "feet"),
  33433. name: "Paw",
  33434. image: {
  33435. source: "./media/characters/softpurr/paw.svg"
  33436. }
  33437. },
  33438. },
  33439. [
  33440. {
  33441. name: "Normal",
  33442. height: math.unit(5 + 1/12, "feet"),
  33443. default: true
  33444. },
  33445. ]
  33446. ))
  33447. characterMakers.push(() => makeCharacter(
  33448. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33449. {
  33450. front: {
  33451. height: math.unit(260, "meters"),
  33452. name: "Front",
  33453. image: {
  33454. source: "./media/characters/anahita/front.svg",
  33455. extra: 665/635,
  33456. bottom: 89/754
  33457. }
  33458. },
  33459. },
  33460. [
  33461. {
  33462. name: "Macro",
  33463. height: math.unit(260, "meters"),
  33464. default: true
  33465. },
  33466. ]
  33467. ))
  33468. characterMakers.push(() => makeCharacter(
  33469. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33470. {
  33471. front: {
  33472. height: math.unit(4 + 10/12, "feet"),
  33473. weight: math.unit(160, "lb"),
  33474. name: "Front",
  33475. image: {
  33476. source: "./media/characters/chip-mouse/front.svg",
  33477. extra: 3528/3408,
  33478. bottom: 0/3528
  33479. }
  33480. },
  33481. frontNsfw: {
  33482. height: math.unit(4 + 10/12, "feet"),
  33483. weight: math.unit(160, "lb"),
  33484. name: "Front (NSFW)",
  33485. image: {
  33486. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33487. extra: 3528/3408,
  33488. bottom: 0/3528
  33489. }
  33490. },
  33491. },
  33492. [
  33493. {
  33494. name: "Normal",
  33495. height: math.unit(4 + 10/12, "feet"),
  33496. default: true
  33497. },
  33498. ]
  33499. ))
  33500. characterMakers.push(() => makeCharacter(
  33501. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33502. {
  33503. side: {
  33504. height: math.unit(10, "feet"),
  33505. weight: math.unit(14000, "lb"),
  33506. name: "Side",
  33507. image: {
  33508. source: "./media/characters/kremm/side.svg",
  33509. extra: 1390/1053,
  33510. bottom: 90/1480
  33511. }
  33512. },
  33513. gut: {
  33514. height: math.unit(5.8, "feet"),
  33515. name: "Gut",
  33516. image: {
  33517. source: "./media/characters/kremm/gut.svg"
  33518. }
  33519. },
  33520. ass: {
  33521. height: math.unit(6.1, "feet"),
  33522. name: "Ass",
  33523. image: {
  33524. source: "./media/characters/kremm/ass.svg"
  33525. }
  33526. },
  33527. jaws: {
  33528. height: math.unit(2.2, "feet"),
  33529. name: "Jaws",
  33530. image: {
  33531. source: "./media/characters/kremm/jaws.svg"
  33532. }
  33533. },
  33534. dick: {
  33535. height: math.unit(4.26, "feet"),
  33536. name: "Dick",
  33537. image: {
  33538. source: "./media/characters/kremm/dick.svg"
  33539. }
  33540. },
  33541. },
  33542. [
  33543. {
  33544. name: "Normal",
  33545. height: math.unit(10, "feet"),
  33546. default: true
  33547. },
  33548. ]
  33549. ))
  33550. characterMakers.push(() => makeCharacter(
  33551. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33552. {
  33553. front: {
  33554. height: math.unit(30, "stories"),
  33555. name: "Front",
  33556. image: {
  33557. source: "./media/characters/kai/front.svg",
  33558. extra: 1892/1718,
  33559. bottom: 162/2054
  33560. }
  33561. },
  33562. },
  33563. [
  33564. {
  33565. name: "Macro",
  33566. height: math.unit(30, "stories"),
  33567. default: true
  33568. },
  33569. ]
  33570. ))
  33571. characterMakers.push(() => makeCharacter(
  33572. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33573. {
  33574. front: {
  33575. height: math.unit(6 + 4/12, "feet"),
  33576. weight: math.unit(145, "lb"),
  33577. name: "Front",
  33578. image: {
  33579. source: "./media/characters/sykes/front.svg",
  33580. extra: 1321 / 1187,
  33581. bottom: 66 / 1387
  33582. }
  33583. },
  33584. back: {
  33585. height: math.unit(6 + 4/12, "feet"),
  33586. weight: math.unit(145, "lb"),
  33587. name: "Back",
  33588. image: {
  33589. source: "./media/characters/sykes/back.svg",
  33590. extra: 1326/1181,
  33591. bottom: 31/1357
  33592. }
  33593. },
  33594. handBack: {
  33595. height: math.unit(0.9, "feet"),
  33596. name: "Hand (Back)",
  33597. image: {
  33598. source: "./media/characters/sykes/hand-back.svg"
  33599. }
  33600. },
  33601. handFront: {
  33602. height: math.unit(0.839, "feet"),
  33603. name: "Hand (Front)",
  33604. image: {
  33605. source: "./media/characters/sykes/hand-front.svg"
  33606. }
  33607. },
  33608. leftFoot: {
  33609. height: math.unit(1.2, "feet"),
  33610. name: "Foot (Left)",
  33611. image: {
  33612. source: "./media/characters/sykes/foot-left.svg"
  33613. }
  33614. },
  33615. rightFoot: {
  33616. height: math.unit(1.2, "feet"),
  33617. name: "Foot (Right)",
  33618. image: {
  33619. source: "./media/characters/sykes/foot-right.svg"
  33620. }
  33621. },
  33622. maw: {
  33623. height: math.unit(1.93, "feet"),
  33624. name: "Maw",
  33625. image: {
  33626. source: "./media/characters/sykes/maw.svg"
  33627. }
  33628. },
  33629. teeth: {
  33630. height: math.unit(0.51, "feet"),
  33631. name: "Teeth",
  33632. image: {
  33633. source: "./media/characters/sykes/teeth.svg"
  33634. }
  33635. },
  33636. tongue: {
  33637. height: math.unit(2.13, "feet"),
  33638. name: "Tongue",
  33639. image: {
  33640. source: "./media/characters/sykes/tongue.svg"
  33641. }
  33642. },
  33643. uvula: {
  33644. height: math.unit(0.16, "feet"),
  33645. name: "Uvula",
  33646. image: {
  33647. source: "./media/characters/sykes/uvula.svg"
  33648. }
  33649. },
  33650. collar: {
  33651. height: math.unit(0.287, "feet"),
  33652. name: "Collar",
  33653. image: {
  33654. source: "./media/characters/sykes/collar.svg"
  33655. }
  33656. },
  33657. },
  33658. [
  33659. {
  33660. name: "Shrunken",
  33661. height: math.unit(5, "inches")
  33662. },
  33663. {
  33664. name: "Normal",
  33665. height: math.unit(6 + 4 / 12, "feet"),
  33666. default: true
  33667. },
  33668. {
  33669. name: "Big",
  33670. height: math.unit(15, "feet")
  33671. },
  33672. ]
  33673. ))
  33674. characterMakers.push(() => makeCharacter(
  33675. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33676. {
  33677. front: {
  33678. height: math.unit(5 + 8/12, "feet"),
  33679. weight: math.unit(190, "lb"),
  33680. name: "Front",
  33681. image: {
  33682. source: "./media/characters/oven-otter/front.svg",
  33683. extra: 1809/1740,
  33684. bottom: 181/1990
  33685. }
  33686. },
  33687. back: {
  33688. height: math.unit(5 + 8/12, "feet"),
  33689. weight: math.unit(190, "lb"),
  33690. name: "Back",
  33691. image: {
  33692. source: "./media/characters/oven-otter/back.svg",
  33693. extra: 1709/1635,
  33694. bottom: 118/1827
  33695. }
  33696. },
  33697. hand: {
  33698. height: math.unit(1.07, "feet"),
  33699. name: "Hand",
  33700. image: {
  33701. source: "./media/characters/oven-otter/hand.svg"
  33702. }
  33703. },
  33704. beans: {
  33705. height: math.unit(1.74, "feet"),
  33706. name: "Beans",
  33707. image: {
  33708. source: "./media/characters/oven-otter/beans.svg"
  33709. }
  33710. },
  33711. },
  33712. [
  33713. {
  33714. name: "Micro",
  33715. height: math.unit(0.5, "inches")
  33716. },
  33717. {
  33718. name: "Normal",
  33719. height: math.unit(5 + 8/12, "feet"),
  33720. default: true
  33721. },
  33722. {
  33723. name: "Macro",
  33724. height: math.unit(250, "feet")
  33725. },
  33726. {
  33727. name: "Really High",
  33728. height: math.unit(420, "feet")
  33729. },
  33730. ]
  33731. ))
  33732. characterMakers.push(() => makeCharacter(
  33733. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33734. {
  33735. front: {
  33736. height: math.unit(5, "meters"),
  33737. weight: math.unit(292000000000000, "kg"),
  33738. name: "Front",
  33739. image: {
  33740. source: "./media/characters/devourer/front.svg",
  33741. extra: 1800/1733,
  33742. bottom: 211/2011
  33743. }
  33744. },
  33745. maw: {
  33746. height: math.unit(1.1, "meter"),
  33747. name: "Maw",
  33748. image: {
  33749. source: "./media/characters/devourer/maw.svg"
  33750. }
  33751. },
  33752. },
  33753. [
  33754. {
  33755. name: "Small",
  33756. height: math.unit(3, "meters")
  33757. },
  33758. {
  33759. name: "Large",
  33760. height: math.unit(5, "meters"),
  33761. default: true
  33762. },
  33763. ]
  33764. ))
  33765. characterMakers.push(() => makeCharacter(
  33766. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33767. {
  33768. front: {
  33769. height: math.unit(6, "feet"),
  33770. weight: math.unit(400, "lb"),
  33771. name: "Front",
  33772. image: {
  33773. source: "./media/characters/ellarby/front.svg",
  33774. extra: 1909/1763,
  33775. bottom: 80/1989
  33776. }
  33777. },
  33778. back: {
  33779. height: math.unit(6, "feet"),
  33780. weight: math.unit(400, "lb"),
  33781. name: "Back",
  33782. image: {
  33783. source: "./media/characters/ellarby/back.svg",
  33784. extra: 1914/1784,
  33785. bottom: 172/2086
  33786. }
  33787. },
  33788. },
  33789. [
  33790. {
  33791. name: "Mischief",
  33792. height: math.unit(18, "inches")
  33793. },
  33794. {
  33795. name: "Trouble",
  33796. height: math.unit(12, "feet")
  33797. },
  33798. {
  33799. name: "Havoc",
  33800. height: math.unit(200, "feet"),
  33801. default: true
  33802. },
  33803. {
  33804. name: "Pandemonium",
  33805. height: math.unit(1, "mile")
  33806. },
  33807. {
  33808. name: "Catastrophe",
  33809. height: math.unit(100, "miles")
  33810. },
  33811. ]
  33812. ))
  33813. characterMakers.push(() => makeCharacter(
  33814. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33815. {
  33816. front: {
  33817. height: math.unit(4.7, "meters"),
  33818. weight: math.unit(6500, "kg"),
  33819. name: "Front",
  33820. image: {
  33821. source: "./media/characters/vex/front.svg",
  33822. extra: 1288/1140,
  33823. bottom: 100/1388
  33824. }
  33825. },
  33826. },
  33827. [
  33828. {
  33829. name: "Normal",
  33830. height: math.unit(4.7, "meters"),
  33831. default: true
  33832. },
  33833. ]
  33834. ))
  33835. characterMakers.push(() => makeCharacter(
  33836. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33837. {
  33838. normal: {
  33839. height: math.unit(6, "feet"),
  33840. weight: math.unit(350, "lb"),
  33841. name: "Normal",
  33842. image: {
  33843. source: "./media/characters/teshy/normal.svg",
  33844. extra: 1795/1735,
  33845. bottom: 16/1811
  33846. }
  33847. },
  33848. monsterFront: {
  33849. height: math.unit(12, "feet"),
  33850. weight: math.unit(4700, "lb"),
  33851. name: "Monster (Front)",
  33852. image: {
  33853. source: "./media/characters/teshy/monster-front.svg",
  33854. extra: 2042/2034,
  33855. bottom: 128/2170
  33856. }
  33857. },
  33858. monsterSide: {
  33859. height: math.unit(12, "feet"),
  33860. weight: math.unit(4700, "lb"),
  33861. name: "Monster (Side)",
  33862. image: {
  33863. source: "./media/characters/teshy/monster-side.svg",
  33864. extra: 2067/2056,
  33865. bottom: 70/2137
  33866. }
  33867. },
  33868. monsterBack: {
  33869. height: math.unit(12, "feet"),
  33870. weight: math.unit(4700, "lb"),
  33871. name: "Monster (Back)",
  33872. image: {
  33873. source: "./media/characters/teshy/monster-back.svg",
  33874. extra: 1921/1914,
  33875. bottom: 171/2092
  33876. }
  33877. },
  33878. },
  33879. [
  33880. {
  33881. name: "Normal",
  33882. height: math.unit(6, "feet"),
  33883. default: true
  33884. },
  33885. ]
  33886. ))
  33887. characterMakers.push(() => makeCharacter(
  33888. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33889. {
  33890. front: {
  33891. height: math.unit(6, "feet"),
  33892. name: "Front",
  33893. image: {
  33894. source: "./media/characters/ramey/front.svg",
  33895. extra: 790/787,
  33896. bottom: 27/817
  33897. }
  33898. },
  33899. },
  33900. [
  33901. {
  33902. name: "Normal",
  33903. height: math.unit(6, "feet"),
  33904. default: true
  33905. },
  33906. ]
  33907. ))
  33908. characterMakers.push(() => makeCharacter(
  33909. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33910. {
  33911. front: {
  33912. height: math.unit(5 + 5/12, "feet"),
  33913. weight: math.unit(120, "lb"),
  33914. name: "Front",
  33915. image: {
  33916. source: "./media/characters/phirae/front.svg",
  33917. extra: 2491/2436,
  33918. bottom: 38/2529
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(5 + 5/12, "feet"),
  33926. default: true
  33927. },
  33928. ]
  33929. ))
  33930. characterMakers.push(() => makeCharacter(
  33931. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33932. {
  33933. front: {
  33934. height: math.unit(5 + 3/12, "feet"),
  33935. name: "Front",
  33936. image: {
  33937. source: "./media/characters/stagglas/front.svg",
  33938. extra: 962/882,
  33939. bottom: 53/1015
  33940. }
  33941. },
  33942. feral: {
  33943. height: math.unit(335, "cm"),
  33944. name: "Feral",
  33945. image: {
  33946. source: "./media/characters/stagglas/feral.svg",
  33947. extra: 1732/1090,
  33948. bottom: 48/1780
  33949. }
  33950. },
  33951. },
  33952. [
  33953. {
  33954. name: "Normal",
  33955. height: math.unit(5 + 3/12, "feet"),
  33956. default: true
  33957. },
  33958. ]
  33959. ))
  33960. characterMakers.push(() => makeCharacter(
  33961. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33962. {
  33963. front: {
  33964. height: math.unit(5 + 4/12, "feet"),
  33965. weight: math.unit(145, "lb"),
  33966. name: "Front",
  33967. image: {
  33968. source: "./media/characters/starra/front.svg",
  33969. extra: 1790/1691,
  33970. bottom: 91/1881
  33971. }
  33972. },
  33973. },
  33974. [
  33975. {
  33976. name: "Normal",
  33977. height: math.unit(5 + 4/12, "feet"),
  33978. default: true
  33979. },
  33980. ]
  33981. ))
  33982. characterMakers.push(() => makeCharacter(
  33983. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33984. {
  33985. front: {
  33986. height: math.unit(2.2, "meters"),
  33987. name: "Front",
  33988. image: {
  33989. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33990. extra: 1194/1005,
  33991. bottom: 25/1219
  33992. }
  33993. },
  33994. },
  33995. [
  33996. {
  33997. name: "Normal",
  33998. height: math.unit(2.2, "meters"),
  33999. default: true
  34000. },
  34001. ]
  34002. ))
  34003. characterMakers.push(() => makeCharacter(
  34004. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34005. {
  34006. side: {
  34007. height: math.unit(8 + 2/12, "feet"),
  34008. weight: math.unit(1240, "lb"),
  34009. name: "Side",
  34010. image: {
  34011. source: "./media/characters/mika-valentine/side.svg",
  34012. extra: 2670/2501,
  34013. bottom: 250/2920
  34014. }
  34015. },
  34016. },
  34017. [
  34018. {
  34019. name: "Normal",
  34020. height: math.unit(8 + 2/12, "feet"),
  34021. default: true
  34022. },
  34023. ]
  34024. ))
  34025. characterMakers.push(() => makeCharacter(
  34026. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34027. {
  34028. front: {
  34029. height: math.unit(7 + 2/12, "feet"),
  34030. name: "Front",
  34031. image: {
  34032. source: "./media/characters/xoltol/front.svg",
  34033. extra: 2212/2124,
  34034. bottom: 84/2296
  34035. }
  34036. },
  34037. side: {
  34038. height: math.unit(7 + 2/12, "feet"),
  34039. name: "Side",
  34040. image: {
  34041. source: "./media/characters/xoltol/side.svg",
  34042. extra: 2273/2197,
  34043. bottom: 26/2299
  34044. }
  34045. },
  34046. hand: {
  34047. height: math.unit(2.5, "feet"),
  34048. name: "Hand",
  34049. image: {
  34050. source: "./media/characters/xoltol/hand.svg"
  34051. }
  34052. },
  34053. },
  34054. [
  34055. {
  34056. name: "Small-ish",
  34057. height: math.unit(5 + 11/12, "feet")
  34058. },
  34059. {
  34060. name: "Normal",
  34061. height: math.unit(7 + 2/12, "feet")
  34062. },
  34063. {
  34064. name: "\"Macro\"",
  34065. height: math.unit(14 + 9/12, "feet"),
  34066. default: true
  34067. },
  34068. {
  34069. name: "Alternate Height",
  34070. height: math.unit(20, "feet")
  34071. },
  34072. {
  34073. name: "Actually Macro",
  34074. height: math.unit(100, "feet")
  34075. },
  34076. ]
  34077. ))
  34078. characterMakers.push(() => makeCharacter(
  34079. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34080. {
  34081. front: {
  34082. height: math.unit(5 + 2/12, "feet"),
  34083. name: "Front",
  34084. image: {
  34085. source: "./media/characters/kotetsu-redwood/front.svg",
  34086. extra: 1053/942,
  34087. bottom: 60/1113
  34088. }
  34089. },
  34090. },
  34091. [
  34092. {
  34093. name: "Normal",
  34094. height: math.unit(5 + 2/12, "feet"),
  34095. default: true
  34096. },
  34097. ]
  34098. ))
  34099. characterMakers.push(() => makeCharacter(
  34100. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34101. {
  34102. front: {
  34103. height: math.unit(2.4, "meters"),
  34104. weight: math.unit(125, "kg"),
  34105. name: "Front",
  34106. image: {
  34107. source: "./media/characters/lilith/front.svg",
  34108. extra: 1590/1513,
  34109. bottom: 203/1793
  34110. }
  34111. },
  34112. },
  34113. [
  34114. {
  34115. name: "Humanoid",
  34116. height: math.unit(2.4, "meters")
  34117. },
  34118. {
  34119. name: "Normal",
  34120. height: math.unit(6, "meters"),
  34121. default: true
  34122. },
  34123. {
  34124. name: "Largest",
  34125. height: math.unit(55, "meters")
  34126. },
  34127. ]
  34128. ))
  34129. characterMakers.push(() => makeCharacter(
  34130. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34131. {
  34132. front: {
  34133. height: math.unit(8 + 4/12, "feet"),
  34134. weight: math.unit(535, "lb"),
  34135. name: "Front",
  34136. image: {
  34137. source: "./media/characters/beh'kah-bolger/front.svg",
  34138. extra: 1660/1603,
  34139. bottom: 37/1697
  34140. }
  34141. },
  34142. },
  34143. [
  34144. {
  34145. name: "Normal",
  34146. height: math.unit(8 + 4/12, "feet"),
  34147. default: true
  34148. },
  34149. {
  34150. name: "Kaiju",
  34151. height: math.unit(250, "feet")
  34152. },
  34153. {
  34154. name: "Still Growing",
  34155. height: math.unit(10, "miles")
  34156. },
  34157. {
  34158. name: "Continental",
  34159. height: math.unit(5000, "miles")
  34160. },
  34161. {
  34162. name: "Final Form",
  34163. height: math.unit(2500000, "miles")
  34164. },
  34165. ]
  34166. ))
  34167. characterMakers.push(() => makeCharacter(
  34168. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34169. {
  34170. front: {
  34171. height: math.unit(7 + 2/12, "feet"),
  34172. weight: math.unit(230, "kg"),
  34173. name: "Front",
  34174. image: {
  34175. source: "./media/characters/tatyana-milewska/front.svg",
  34176. extra: 1199/1150,
  34177. bottom: 86/1285
  34178. }
  34179. },
  34180. },
  34181. [
  34182. {
  34183. name: "Normal",
  34184. height: math.unit(7 + 2/12, "feet"),
  34185. default: true
  34186. },
  34187. {
  34188. name: "Big",
  34189. height: math.unit(12, "feet")
  34190. },
  34191. {
  34192. name: "Minimacro",
  34193. height: math.unit(20, "feet")
  34194. },
  34195. {
  34196. name: "Macro",
  34197. height: math.unit(120, "feet")
  34198. },
  34199. ]
  34200. ))
  34201. characterMakers.push(() => makeCharacter(
  34202. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34203. {
  34204. front: {
  34205. height: math.unit(7 + 8/12, "feet"),
  34206. weight: math.unit(152, "kg"),
  34207. name: "Front",
  34208. image: {
  34209. source: "./media/characters/helen-arri/front.svg",
  34210. extra: 440/423,
  34211. bottom: 14/454
  34212. }
  34213. },
  34214. back: {
  34215. height: math.unit(7 + 8/12, "feet"),
  34216. weight: math.unit(152, "kg"),
  34217. name: "Back",
  34218. image: {
  34219. source: "./media/characters/helen-arri/back.svg",
  34220. extra: 443/426,
  34221. bottom: 8/451
  34222. }
  34223. },
  34224. },
  34225. [
  34226. {
  34227. name: "Normal",
  34228. height: math.unit(7 + 8/12, "feet"),
  34229. default: true
  34230. },
  34231. {
  34232. name: "Big",
  34233. height: math.unit(14, "feet")
  34234. },
  34235. {
  34236. name: "Minimacro",
  34237. height: math.unit(24, "feet")
  34238. },
  34239. {
  34240. name: "Macro",
  34241. height: math.unit(140, "feet")
  34242. },
  34243. ]
  34244. ))
  34245. characterMakers.push(() => makeCharacter(
  34246. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34247. {
  34248. front: {
  34249. height: math.unit(6, "meters"),
  34250. name: "Front",
  34251. image: {
  34252. source: "./media/characters/ehanu-rehu/front.svg",
  34253. extra: 1800/1800,
  34254. bottom: 59/1859
  34255. }
  34256. },
  34257. },
  34258. [
  34259. {
  34260. name: "Normal",
  34261. height: math.unit(6, "meters"),
  34262. default: true
  34263. },
  34264. ]
  34265. ))
  34266. characterMakers.push(() => makeCharacter(
  34267. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34268. {
  34269. front: {
  34270. height: math.unit(7 + 3/12, "feet"),
  34271. name: "Front",
  34272. image: {
  34273. source: "./media/characters/renholder/front.svg",
  34274. extra: 3096/2960,
  34275. bottom: 250/3346
  34276. }
  34277. },
  34278. },
  34279. [
  34280. {
  34281. name: "Normal Bat",
  34282. height: math.unit(7 + 3/12, "feet"),
  34283. default: true
  34284. },
  34285. {
  34286. name: "Slightly Tall Bat",
  34287. height: math.unit(100, "feet")
  34288. },
  34289. {
  34290. name: "Big Bat",
  34291. height: math.unit(1000, "feet")
  34292. },
  34293. {
  34294. name: "City-Sized Bat",
  34295. height: math.unit(200000, "feet")
  34296. },
  34297. {
  34298. name: "Bigger Bat",
  34299. height: math.unit(10000, "miles")
  34300. },
  34301. {
  34302. name: "Solar Sized Bat",
  34303. height: math.unit(100, "AU")
  34304. },
  34305. {
  34306. name: "Galactic Bat",
  34307. height: math.unit(200000, "lightyears")
  34308. },
  34309. {
  34310. name: "Universally Known Bat",
  34311. height: math.unit(1, "universe")
  34312. },
  34313. ]
  34314. ))
  34315. characterMakers.push(() => makeCharacter(
  34316. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34317. {
  34318. front: {
  34319. height: math.unit(6 + 11/12, "feet"),
  34320. weight: math.unit(250, "lb"),
  34321. name: "Front",
  34322. image: {
  34323. source: "./media/characters/cookiecat/front.svg",
  34324. extra: 893/827,
  34325. bottom: 14/907
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Micro",
  34332. height: math.unit(3, "inches")
  34333. },
  34334. {
  34335. name: "Normal",
  34336. height: math.unit(6 + 11/12, "feet"),
  34337. default: true
  34338. },
  34339. {
  34340. name: "Macro",
  34341. height: math.unit(100, "feet")
  34342. },
  34343. {
  34344. name: "Macro+",
  34345. height: math.unit(404, "feet")
  34346. },
  34347. {
  34348. name: "Megamacro",
  34349. height: math.unit(165, "miles")
  34350. },
  34351. {
  34352. name: "Planetary",
  34353. height: math.unit(4600, "miles")
  34354. },
  34355. ]
  34356. ))
  34357. characterMakers.push(() => makeCharacter(
  34358. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34359. {
  34360. front: {
  34361. height: math.unit(10 + 3/12, "feet"),
  34362. weight: math.unit(1500, "lb"),
  34363. name: "Front",
  34364. image: {
  34365. source: "./media/characters/tux-kusanagi/front.svg",
  34366. extra: 944/840,
  34367. bottom: 39/983
  34368. }
  34369. },
  34370. back: {
  34371. height: math.unit(10 + 3/12, "feet"),
  34372. weight: math.unit(1500, "lb"),
  34373. name: "Back",
  34374. image: {
  34375. source: "./media/characters/tux-kusanagi/back.svg",
  34376. extra: 941/842,
  34377. bottom: 28/969
  34378. }
  34379. },
  34380. rump: {
  34381. height: math.unit(5.25, "feet"),
  34382. name: "Rump",
  34383. image: {
  34384. source: "./media/characters/tux-kusanagi/rump.svg"
  34385. }
  34386. },
  34387. beak: {
  34388. height: math.unit(1.54, "feet"),
  34389. name: "Beak",
  34390. image: {
  34391. source: "./media/characters/tux-kusanagi/beak.svg"
  34392. }
  34393. },
  34394. },
  34395. [
  34396. {
  34397. name: "Normal",
  34398. height: math.unit(10 + 3/12, "feet"),
  34399. default: true
  34400. },
  34401. ]
  34402. ))
  34403. characterMakers.push(() => makeCharacter(
  34404. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34405. {
  34406. front: {
  34407. height: math.unit(58, "feet"),
  34408. weight: math.unit(200, "tons"),
  34409. name: "Front",
  34410. image: {
  34411. source: "./media/characters/uzarmazari/front.svg",
  34412. extra: 1575/1455,
  34413. bottom: 152/1727
  34414. }
  34415. },
  34416. back: {
  34417. height: math.unit(58, "feet"),
  34418. weight: math.unit(200, "tons"),
  34419. name: "Back",
  34420. image: {
  34421. source: "./media/characters/uzarmazari/back.svg",
  34422. extra: 1585/1510,
  34423. bottom: 157/1742
  34424. }
  34425. },
  34426. head: {
  34427. height: math.unit(26, "feet"),
  34428. name: "Head",
  34429. image: {
  34430. source: "./media/characters/uzarmazari/head.svg"
  34431. }
  34432. },
  34433. },
  34434. [
  34435. {
  34436. name: "Normal",
  34437. height: math.unit(58, "feet"),
  34438. default: true
  34439. },
  34440. ]
  34441. ))
  34442. characterMakers.push(() => makeCharacter(
  34443. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34444. {
  34445. side: {
  34446. height: math.unit(15, "feet"),
  34447. name: "Side",
  34448. image: {
  34449. source: "./media/characters/akitu/side.svg",
  34450. extra: 1421/1321,
  34451. bottom: 157/1578
  34452. }
  34453. },
  34454. front: {
  34455. height: math.unit(15, "feet"),
  34456. name: "Front",
  34457. image: {
  34458. source: "./media/characters/akitu/front.svg",
  34459. extra: 1435/1326,
  34460. bottom: 232/1667
  34461. }
  34462. },
  34463. },
  34464. [
  34465. {
  34466. name: "Normal",
  34467. height: math.unit(15, "feet"),
  34468. default: true
  34469. },
  34470. ]
  34471. ))
  34472. characterMakers.push(() => makeCharacter(
  34473. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34474. {
  34475. front: {
  34476. height: math.unit(10 + 8/12, "feet"),
  34477. name: "Front",
  34478. image: {
  34479. source: "./media/characters/azalie-croixland/front.svg",
  34480. extra: 1972/1856,
  34481. bottom: 31/2003
  34482. }
  34483. },
  34484. },
  34485. [
  34486. {
  34487. name: "Original Height",
  34488. height: math.unit(5 + 4/12, "feet")
  34489. },
  34490. {
  34491. name: "Normal Height",
  34492. height: math.unit(10 + 8/12, "feet"),
  34493. default: true
  34494. },
  34495. ]
  34496. ))
  34497. characterMakers.push(() => makeCharacter(
  34498. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34499. {
  34500. side: {
  34501. height: math.unit(7 + 1/12, "feet"),
  34502. weight: math.unit(245, "lb"),
  34503. name: "Side",
  34504. image: {
  34505. source: "./media/characters/kavus-kazian/side.svg",
  34506. extra: 349/342,
  34507. bottom: 15/364
  34508. }
  34509. },
  34510. },
  34511. [
  34512. {
  34513. name: "Normal",
  34514. height: math.unit(7 + 1/12, "feet"),
  34515. default: true
  34516. },
  34517. ]
  34518. ))
  34519. characterMakers.push(() => makeCharacter(
  34520. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34521. {
  34522. normal: {
  34523. height: math.unit(5 + 11/12, "feet"),
  34524. name: "Normal",
  34525. image: {
  34526. source: "./media/characters/moonlight-rose/normal.svg",
  34527. extra: 1979/1835,
  34528. bottom: 14/1993
  34529. }
  34530. },
  34531. demon: {
  34532. height: math.unit(5, "km"),
  34533. name: "Demon",
  34534. image: {
  34535. source: "./media/characters/moonlight-rose/demon.svg",
  34536. extra: 986/916,
  34537. bottom: 28/1014
  34538. }
  34539. },
  34540. },
  34541. [
  34542. {
  34543. name: "\"Natural\" height",
  34544. height: math.unit(5 + 11/12, "feet")
  34545. },
  34546. {
  34547. name: "Comfortable Size",
  34548. height: math.unit(40, "meters")
  34549. },
  34550. {
  34551. name: "Common Size",
  34552. height: math.unit(50, "km"),
  34553. default: true
  34554. },
  34555. {
  34556. name: "Demonic",
  34557. height: math.unit(1.24415e+21, "meters")
  34558. },
  34559. ]
  34560. ))
  34561. characterMakers.push(() => makeCharacter(
  34562. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34563. {
  34564. front: {
  34565. height: math.unit(16, "feet"),
  34566. weight: math.unit(610, "kg"),
  34567. name: "Front",
  34568. image: {
  34569. source: "./media/characters/huckle/front.svg",
  34570. extra: 1731/1625,
  34571. bottom: 33/1764
  34572. }
  34573. },
  34574. back: {
  34575. height: math.unit(16, "feet"),
  34576. weight: math.unit(610, "kg"),
  34577. name: "Back",
  34578. image: {
  34579. source: "./media/characters/huckle/back.svg",
  34580. extra: 1738/1651,
  34581. bottom: 37/1775
  34582. }
  34583. },
  34584. laughing: {
  34585. height: math.unit(3.75, "feet"),
  34586. name: "Laughing",
  34587. image: {
  34588. source: "./media/characters/huckle/laughing.svg"
  34589. }
  34590. },
  34591. angry: {
  34592. height: math.unit(4.15, "feet"),
  34593. name: "Angry",
  34594. image: {
  34595. source: "./media/characters/huckle/angry.svg"
  34596. }
  34597. },
  34598. },
  34599. [
  34600. {
  34601. name: "Normal",
  34602. height: math.unit(16, "feet"),
  34603. default: true
  34604. },
  34605. {
  34606. name: "Mini Macro",
  34607. height: math.unit(463, "feet")
  34608. },
  34609. {
  34610. name: "Macro",
  34611. height: math.unit(1680, "meters")
  34612. },
  34613. {
  34614. name: "Mega Macro",
  34615. height: math.unit(175, "km")
  34616. },
  34617. {
  34618. name: "Terra Macro",
  34619. height: math.unit(32, "gigameters")
  34620. },
  34621. {
  34622. name: "Multiverse+",
  34623. height: math.unit(2.56e23, "yottameters")
  34624. },
  34625. ]
  34626. ))
  34627. characterMakers.push(() => makeCharacter(
  34628. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34629. {
  34630. front: {
  34631. height: math.unit(6 + 9/12, "feet"),
  34632. weight: math.unit(280, "lb"),
  34633. name: "Front",
  34634. image: {
  34635. source: "./media/characters/candy/front.svg",
  34636. extra: 234/217,
  34637. bottom: 11/245
  34638. }
  34639. },
  34640. },
  34641. [
  34642. {
  34643. name: "Really Small",
  34644. height: math.unit(0.1, "nm")
  34645. },
  34646. {
  34647. name: "Micro",
  34648. height: math.unit(2, "inches")
  34649. },
  34650. {
  34651. name: "Normal",
  34652. height: math.unit(6 + 9/12, "feet"),
  34653. default: true
  34654. },
  34655. {
  34656. name: "Small Macro",
  34657. height: math.unit(69, "feet")
  34658. },
  34659. {
  34660. name: "Macro",
  34661. height: math.unit(160, "feet")
  34662. },
  34663. {
  34664. name: "Megamacro",
  34665. height: math.unit(22000, "miles")
  34666. },
  34667. {
  34668. name: "Gigamacro",
  34669. height: math.unit(50000, "miles")
  34670. },
  34671. ]
  34672. ))
  34673. characterMakers.push(() => makeCharacter(
  34674. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34675. {
  34676. front: {
  34677. height: math.unit(4, "feet"),
  34678. weight: math.unit(90, "lb"),
  34679. name: "Front",
  34680. image: {
  34681. source: "./media/characters/joey-mcdonald/front.svg",
  34682. extra: 1059/852,
  34683. bottom: 33/1092
  34684. }
  34685. },
  34686. back: {
  34687. height: math.unit(4, "feet"),
  34688. weight: math.unit(90, "lb"),
  34689. name: "Back",
  34690. image: {
  34691. source: "./media/characters/joey-mcdonald/back.svg",
  34692. extra: 1077/879,
  34693. bottom: 5/1082
  34694. }
  34695. },
  34696. frontKobold: {
  34697. height: math.unit(4, "feet"),
  34698. weight: math.unit(100, "lb"),
  34699. name: "Front-kobold",
  34700. image: {
  34701. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34702. extra: 1480/1367,
  34703. bottom: 0/1480
  34704. }
  34705. },
  34706. backKobold: {
  34707. height: math.unit(4, "feet"),
  34708. weight: math.unit(100, "lb"),
  34709. name: "Back-kobold",
  34710. image: {
  34711. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34712. extra: 1449/1361,
  34713. bottom: 0/1449
  34714. }
  34715. },
  34716. },
  34717. [
  34718. {
  34719. name: "Normal",
  34720. height: math.unit(4, "feet"),
  34721. default: true
  34722. },
  34723. ]
  34724. ))
  34725. characterMakers.push(() => makeCharacter(
  34726. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34727. {
  34728. front: {
  34729. height: math.unit(12 + 6/12, "feet"),
  34730. name: "Front",
  34731. image: {
  34732. source: "./media/characters/kass-lockheed/front.svg",
  34733. extra: 354/343,
  34734. bottom: 9/363
  34735. }
  34736. },
  34737. back: {
  34738. height: math.unit(12 + 6/12, "feet"),
  34739. name: "Back",
  34740. image: {
  34741. source: "./media/characters/kass-lockheed/back.svg",
  34742. extra: 364/352,
  34743. bottom: 3/367
  34744. }
  34745. },
  34746. dick: {
  34747. height: math.unit(3.12, "feet"),
  34748. name: "Dick",
  34749. image: {
  34750. source: "./media/characters/kass-lockheed/dick.svg"
  34751. }
  34752. },
  34753. head: {
  34754. height: math.unit(2.6, "feet"),
  34755. name: "Head",
  34756. image: {
  34757. source: "./media/characters/kass-lockheed/head.svg"
  34758. }
  34759. },
  34760. bleh: {
  34761. height: math.unit(2.85, "feet"),
  34762. name: "Bleh",
  34763. image: {
  34764. source: "./media/characters/kass-lockheed/bleh.svg"
  34765. }
  34766. },
  34767. smug: {
  34768. height: math.unit(2.85, "feet"),
  34769. name: "Smug",
  34770. image: {
  34771. source: "./media/characters/kass-lockheed/smug.svg"
  34772. }
  34773. },
  34774. },
  34775. [
  34776. {
  34777. name: "Normal",
  34778. height: math.unit(12 + 6/12, "feet"),
  34779. default: true
  34780. },
  34781. ]
  34782. ))
  34783. characterMakers.push(() => makeCharacter(
  34784. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34785. {
  34786. front: {
  34787. height: math.unit(6 + 2/12, "feet"),
  34788. name: "Front",
  34789. image: {
  34790. source: "./media/characters/taylor/front.svg",
  34791. extra: 639/495,
  34792. bottom: 12/651
  34793. }
  34794. },
  34795. },
  34796. [
  34797. {
  34798. name: "Normal",
  34799. height: math.unit(6 + 2/12, "feet"),
  34800. default: true
  34801. },
  34802. {
  34803. name: "Big",
  34804. height: math.unit(15, "feet")
  34805. },
  34806. {
  34807. name: "Lorg",
  34808. height: math.unit(80, "feet")
  34809. },
  34810. {
  34811. name: "Too Lorg",
  34812. height: math.unit(120, "feet")
  34813. },
  34814. ]
  34815. ))
  34816. characterMakers.push(() => makeCharacter(
  34817. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34818. {
  34819. front: {
  34820. height: math.unit(15, "feet"),
  34821. name: "Front",
  34822. image: {
  34823. source: "./media/characters/kaizer/front.svg",
  34824. extra: 1612/1436,
  34825. bottom: 43/1655
  34826. }
  34827. },
  34828. },
  34829. [
  34830. {
  34831. name: "Normal",
  34832. height: math.unit(15, "feet"),
  34833. default: true
  34834. },
  34835. ]
  34836. ))
  34837. characterMakers.push(() => makeCharacter(
  34838. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34839. {
  34840. front: {
  34841. height: math.unit(2, "feet"),
  34842. weight: math.unit(30, "lb"),
  34843. name: "Front",
  34844. image: {
  34845. source: "./media/characters/sandy/front.svg",
  34846. extra: 1439/1307,
  34847. bottom: 194/1633
  34848. }
  34849. },
  34850. },
  34851. [
  34852. {
  34853. name: "Normal",
  34854. height: math.unit(2, "feet"),
  34855. default: true
  34856. },
  34857. ]
  34858. ))
  34859. characterMakers.push(() => makeCharacter(
  34860. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34861. {
  34862. front: {
  34863. height: math.unit(3, "feet"),
  34864. name: "Front",
  34865. image: {
  34866. source: "./media/characters/mellvi/front.svg",
  34867. extra: 1831/1630,
  34868. bottom: 58/1889
  34869. }
  34870. },
  34871. },
  34872. [
  34873. {
  34874. name: "Normal",
  34875. height: math.unit(3, "feet"),
  34876. default: true
  34877. },
  34878. ]
  34879. ))
  34880. characterMakers.push(() => makeCharacter(
  34881. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34882. {
  34883. front: {
  34884. height: math.unit(5 + 11/12, "feet"),
  34885. weight: math.unit(200, "lb"),
  34886. name: "Front",
  34887. image: {
  34888. source: "./media/characters/shirou/front.svg",
  34889. extra: 2491/2383,
  34890. bottom: 189/2680
  34891. }
  34892. },
  34893. back: {
  34894. height: math.unit(5 + 11/12, "feet"),
  34895. weight: math.unit(200, "lb"),
  34896. name: "Back",
  34897. image: {
  34898. source: "./media/characters/shirou/back.svg",
  34899. extra: 2554/2450,
  34900. bottom: 76/2630
  34901. }
  34902. },
  34903. },
  34904. [
  34905. {
  34906. name: "Normal",
  34907. height: math.unit(5 + 11/12, "feet"),
  34908. default: true
  34909. },
  34910. ]
  34911. ))
  34912. characterMakers.push(() => makeCharacter(
  34913. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34914. {
  34915. front: {
  34916. height: math.unit(6 + 3/12, "feet"),
  34917. weight: math.unit(177, "lb"),
  34918. name: "Front",
  34919. image: {
  34920. source: "./media/characters/noryu/front.svg",
  34921. extra: 973/885,
  34922. bottom: 10/983
  34923. }
  34924. },
  34925. },
  34926. [
  34927. {
  34928. name: "Normal",
  34929. height: math.unit(6 + 3/12, "feet"),
  34930. default: true
  34931. },
  34932. ]
  34933. ))
  34934. characterMakers.push(() => makeCharacter(
  34935. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34936. {
  34937. front: {
  34938. height: math.unit(5 + 6/12, "feet"),
  34939. weight: math.unit(170, "lb"),
  34940. name: "Front",
  34941. image: {
  34942. source: "./media/characters/mevolas-rubenido/front.svg",
  34943. extra: 2109/1901,
  34944. bottom: 96/2205
  34945. }
  34946. },
  34947. },
  34948. [
  34949. {
  34950. name: "Normal",
  34951. height: math.unit(5 + 6/12, "feet"),
  34952. default: true
  34953. },
  34954. ]
  34955. ))
  34956. characterMakers.push(() => makeCharacter(
  34957. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34958. {
  34959. front: {
  34960. height: math.unit(100, "feet"),
  34961. name: "Front",
  34962. image: {
  34963. source: "./media/characters/dee/front.svg",
  34964. extra: 2153/2036,
  34965. bottom: 59/2212
  34966. }
  34967. },
  34968. back: {
  34969. height: math.unit(100, "feet"),
  34970. name: "Back",
  34971. image: {
  34972. source: "./media/characters/dee/back.svg",
  34973. extra: 2183/2058,
  34974. bottom: 75/2258
  34975. }
  34976. },
  34977. foot: {
  34978. height: math.unit(19.43, "feet"),
  34979. name: "Foot",
  34980. image: {
  34981. source: "./media/characters/dee/foot.svg"
  34982. }
  34983. },
  34984. hoof: {
  34985. height: math.unit(20.6, "feet"),
  34986. name: "Hoof",
  34987. image: {
  34988. source: "./media/characters/dee/hoof.svg"
  34989. }
  34990. },
  34991. },
  34992. [
  34993. {
  34994. name: "Macro",
  34995. height: math.unit(100, "feet"),
  34996. default: true
  34997. },
  34998. ]
  34999. ))
  35000. characterMakers.push(() => makeCharacter(
  35001. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35002. {
  35003. front: {
  35004. height: math.unit(5 + 6/12, "feet"),
  35005. name: "Front",
  35006. image: {
  35007. source: "./media/characters/teh/front.svg",
  35008. extra: 1002/847,
  35009. bottom: 62/1064
  35010. }
  35011. },
  35012. },
  35013. [
  35014. {
  35015. name: "Normal",
  35016. height: math.unit(5 + 6/12, "feet"),
  35017. default: true
  35018. },
  35019. ]
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35023. {
  35024. side: {
  35025. height: math.unit(6 + 1/12, "feet"),
  35026. weight: math.unit(204, "lb"),
  35027. name: "Side",
  35028. image: {
  35029. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35030. extra: 974/775,
  35031. bottom: 169/1143
  35032. }
  35033. },
  35034. sitting: {
  35035. height: math.unit(6 + 2/12, "feet"),
  35036. weight: math.unit(204, "lb"),
  35037. name: "Sitting",
  35038. image: {
  35039. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35040. extra: 1175/964,
  35041. bottom: 378/1553
  35042. }
  35043. },
  35044. },
  35045. [
  35046. {
  35047. name: "Normal",
  35048. height: math.unit(6 + 1/12, "feet"),
  35049. default: true
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35055. {
  35056. front: {
  35057. height: math.unit(6, "inches"),
  35058. name: "Front",
  35059. image: {
  35060. source: "./media/characters/tululi/front.svg",
  35061. extra: 1997/1876,
  35062. bottom: 20/2017
  35063. }
  35064. },
  35065. },
  35066. [
  35067. {
  35068. name: "Normal",
  35069. height: math.unit(6, "inches"),
  35070. default: true
  35071. },
  35072. ]
  35073. ))
  35074. characterMakers.push(() => makeCharacter(
  35075. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35076. {
  35077. front: {
  35078. height: math.unit(4 + 1/12, "feet"),
  35079. name: "Front",
  35080. image: {
  35081. source: "./media/characters/star/front.svg",
  35082. extra: 1493/1189,
  35083. bottom: 48/1541
  35084. }
  35085. },
  35086. },
  35087. [
  35088. {
  35089. name: "Normal",
  35090. height: math.unit(4 + 1/12, "feet"),
  35091. default: true
  35092. },
  35093. ]
  35094. ))
  35095. characterMakers.push(() => makeCharacter(
  35096. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35097. {
  35098. front: {
  35099. height: math.unit(6 + 3/12, "feet"),
  35100. name: "Front",
  35101. image: {
  35102. source: "./media/characters/comet/front.svg",
  35103. extra: 1681/1462,
  35104. bottom: 26/1707
  35105. }
  35106. },
  35107. },
  35108. [
  35109. {
  35110. name: "Normal",
  35111. height: math.unit(6 + 3/12, "feet"),
  35112. default: true
  35113. },
  35114. ]
  35115. ))
  35116. characterMakers.push(() => makeCharacter(
  35117. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35118. {
  35119. front: {
  35120. height: math.unit(950, "feet"),
  35121. name: "Front",
  35122. image: {
  35123. source: "./media/characters/vortex/front.svg",
  35124. extra: 1497/1434,
  35125. bottom: 56/1553
  35126. }
  35127. },
  35128. maw: {
  35129. height: math.unit(285, "feet"),
  35130. name: "Maw",
  35131. image: {
  35132. source: "./media/characters/vortex/maw.svg"
  35133. }
  35134. },
  35135. },
  35136. [
  35137. {
  35138. name: "Macro",
  35139. height: math.unit(950, "feet"),
  35140. default: true
  35141. },
  35142. ]
  35143. ))
  35144. characterMakers.push(() => makeCharacter(
  35145. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35146. {
  35147. front: {
  35148. height: math.unit(600, "feet"),
  35149. weight: math.unit(0.02, "grams"),
  35150. name: "Front",
  35151. image: {
  35152. source: "./media/characters/doodle/front.svg",
  35153. extra: 1578/1413,
  35154. bottom: 37/1615
  35155. }
  35156. },
  35157. },
  35158. [
  35159. {
  35160. name: "Macro",
  35161. height: math.unit(600, "feet"),
  35162. default: true
  35163. },
  35164. ]
  35165. ))
  35166. characterMakers.push(() => makeCharacter(
  35167. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35168. {
  35169. front: {
  35170. height: math.unit(6 + 6/12, "feet"),
  35171. name: "Front",
  35172. image: {
  35173. source: "./media/characters/jai/front.svg",
  35174. extra: 1645/1534,
  35175. bottom: 115/1760
  35176. }
  35177. },
  35178. },
  35179. [
  35180. {
  35181. name: "Normal",
  35182. height: math.unit(6 + 6/12, "feet"),
  35183. default: true
  35184. },
  35185. ]
  35186. ))
  35187. characterMakers.push(() => makeCharacter(
  35188. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35189. {
  35190. front: {
  35191. height: math.unit(6 + 8/12, "feet"),
  35192. name: "Front",
  35193. image: {
  35194. source: "./media/characters/pixel/front.svg",
  35195. extra: 1900/1735,
  35196. bottom: 63/1963
  35197. }
  35198. },
  35199. },
  35200. [
  35201. {
  35202. name: "Normal",
  35203. height: math.unit(6 + 8/12, "feet"),
  35204. default: true
  35205. },
  35206. ]
  35207. ))
  35208. characterMakers.push(() => makeCharacter(
  35209. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35210. {
  35211. front: {
  35212. height: math.unit(4 + 11/12, "feet"),
  35213. weight: math.unit(111, "lb"),
  35214. name: "Front",
  35215. image: {
  35216. source: "./media/characters/rhett/front.svg",
  35217. extra: 1682/1586,
  35218. bottom: 92/1774
  35219. }
  35220. },
  35221. },
  35222. [
  35223. {
  35224. name: "Mini",
  35225. height: math.unit(1 + 1/12, "feet")
  35226. },
  35227. {
  35228. name: "Normal",
  35229. height: math.unit(4 + 11/12, "feet"),
  35230. default: true
  35231. },
  35232. ]
  35233. ))
  35234. characterMakers.push(() => makeCharacter(
  35235. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35236. {
  35237. front: {
  35238. height: math.unit(3 + 3/12, "feet"),
  35239. name: "Front",
  35240. image: {
  35241. source: "./media/characters/penny/front.svg",
  35242. extra: 1406/1311,
  35243. bottom: 26/1432
  35244. }
  35245. },
  35246. },
  35247. [
  35248. {
  35249. name: "Normal",
  35250. height: math.unit(3 + 3/12, "feet"),
  35251. default: true
  35252. },
  35253. ]
  35254. ))
  35255. characterMakers.push(() => makeCharacter(
  35256. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35257. {
  35258. front: {
  35259. height: math.unit(4 + 11/12, "feet"),
  35260. name: "Front",
  35261. image: {
  35262. source: "./media/characters/monty/front.svg",
  35263. extra: 1479/1209,
  35264. bottom: 0/1479
  35265. }
  35266. },
  35267. },
  35268. [
  35269. {
  35270. name: "Normal",
  35271. height: math.unit(4 + 11/12, "feet"),
  35272. default: true
  35273. },
  35274. ]
  35275. ))
  35276. characterMakers.push(() => makeCharacter(
  35277. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35278. {
  35279. front: {
  35280. height: math.unit(8 + 4/12, "feet"),
  35281. name: "Front",
  35282. image: {
  35283. source: "./media/characters/sterling/front.svg",
  35284. extra: 1420/1236,
  35285. bottom: 27/1447
  35286. }
  35287. },
  35288. },
  35289. [
  35290. {
  35291. name: "Normal",
  35292. height: math.unit(8 + 4/12, "feet"),
  35293. default: true
  35294. },
  35295. ]
  35296. ))
  35297. characterMakers.push(() => makeCharacter(
  35298. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35299. {
  35300. front: {
  35301. height: math.unit(15, "feet"),
  35302. name: "Front",
  35303. image: {
  35304. source: "./media/characters/marble/front.svg",
  35305. extra: 973/937,
  35306. bottom: 32/1005
  35307. }
  35308. },
  35309. },
  35310. [
  35311. {
  35312. name: "Normal",
  35313. height: math.unit(15, "feet"),
  35314. default: true
  35315. },
  35316. ]
  35317. ))
  35318. characterMakers.push(() => makeCharacter(
  35319. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35320. {
  35321. front: {
  35322. height: math.unit(3, "inches"),
  35323. name: "Front",
  35324. image: {
  35325. source: "./media/characters/powder/front.svg",
  35326. extra: 1504/1334,
  35327. bottom: 518/2022
  35328. }
  35329. },
  35330. },
  35331. [
  35332. {
  35333. name: "Normal",
  35334. height: math.unit(3, "inches"),
  35335. default: true
  35336. },
  35337. ]
  35338. ))
  35339. characterMakers.push(() => makeCharacter(
  35340. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35341. {
  35342. front: {
  35343. height: math.unit(4 + 5/12, "feet"),
  35344. name: "Front",
  35345. image: {
  35346. source: "./media/characters/joey-raccoon/front.svg",
  35347. extra: 1273/1197,
  35348. bottom: 0/1273
  35349. }
  35350. },
  35351. },
  35352. [
  35353. {
  35354. name: "Normal",
  35355. height: math.unit(4 + 5/12, "feet"),
  35356. default: true
  35357. },
  35358. ]
  35359. ))
  35360. characterMakers.push(() => makeCharacter(
  35361. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35362. {
  35363. front: {
  35364. height: math.unit(8 + 4/12, "feet"),
  35365. name: "Front",
  35366. image: {
  35367. source: "./media/characters/vick/front.svg",
  35368. extra: 2187/2118,
  35369. bottom: 47/2234
  35370. }
  35371. },
  35372. },
  35373. [
  35374. {
  35375. name: "Normal",
  35376. height: math.unit(8 + 4/12, "feet"),
  35377. default: true
  35378. },
  35379. ]
  35380. ))
  35381. characterMakers.push(() => makeCharacter(
  35382. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35383. {
  35384. front: {
  35385. height: math.unit(5 + 5/12, "feet"),
  35386. name: "Front",
  35387. image: {
  35388. source: "./media/characters/mitsy/front.svg",
  35389. extra: 1842/1695,
  35390. bottom: 0/1842
  35391. }
  35392. },
  35393. },
  35394. [
  35395. {
  35396. name: "Normal",
  35397. height: math.unit(5 + 5/12, "feet"),
  35398. default: true
  35399. },
  35400. ]
  35401. ))
  35402. characterMakers.push(() => makeCharacter(
  35403. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35404. {
  35405. front: {
  35406. height: math.unit(6 + 3/12, "feet"),
  35407. name: "Front",
  35408. image: {
  35409. source: "./media/characters/silvy/front.svg",
  35410. extra: 1995/1836,
  35411. bottom: 225/2220
  35412. }
  35413. },
  35414. },
  35415. [
  35416. {
  35417. name: "Normal",
  35418. height: math.unit(6 + 3/12, "feet"),
  35419. default: true
  35420. },
  35421. ]
  35422. ))
  35423. characterMakers.push(() => makeCharacter(
  35424. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35425. {
  35426. front: {
  35427. height: math.unit(3 + 8/12, "feet"),
  35428. name: "Front",
  35429. image: {
  35430. source: "./media/characters/rodney/front.svg",
  35431. extra: 1956/1747,
  35432. bottom: 31/1987
  35433. }
  35434. },
  35435. frontDressed: {
  35436. height: math.unit(2.9, "feet"),
  35437. name: "Front (Dressed)",
  35438. image: {
  35439. source: "./media/characters/rodney/front-dressed.svg",
  35440. extra: 1382/1241,
  35441. bottom: 385/1767
  35442. }
  35443. },
  35444. },
  35445. [
  35446. {
  35447. name: "Normal",
  35448. height: math.unit(3 + 8/12, "feet"),
  35449. default: true
  35450. },
  35451. ]
  35452. ))
  35453. characterMakers.push(() => makeCharacter(
  35454. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35455. {
  35456. front: {
  35457. height: math.unit(5 + 9/12, "feet"),
  35458. weight: math.unit(194, "lbs"),
  35459. name: "Front",
  35460. image: {
  35461. source: "./media/characters/zakail-sudekai/front.svg",
  35462. extra: 2696/2533,
  35463. bottom: 248/2944
  35464. }
  35465. },
  35466. maw: {
  35467. height: math.unit(1.35, "feet"),
  35468. name: "Maw",
  35469. image: {
  35470. source: "./media/characters/zakail-sudekai/maw.svg"
  35471. }
  35472. },
  35473. },
  35474. [
  35475. {
  35476. name: "Normal",
  35477. height: math.unit(5 + 9/12, "feet"),
  35478. default: true
  35479. },
  35480. ]
  35481. ))
  35482. characterMakers.push(() => makeCharacter(
  35483. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35484. {
  35485. front: {
  35486. height: math.unit(8 + 4/12, "feet"),
  35487. weight: math.unit(1200, "lb"),
  35488. name: "Front",
  35489. image: {
  35490. source: "./media/characters/eleanor/front.svg",
  35491. extra: 1226/1192,
  35492. bottom: 52/1278
  35493. }
  35494. },
  35495. back: {
  35496. height: math.unit(8 + 4/12, "feet"),
  35497. weight: math.unit(1200, "lb"),
  35498. name: "Back",
  35499. image: {
  35500. source: "./media/characters/eleanor/back.svg",
  35501. extra: 1242/1184,
  35502. bottom: 60/1302
  35503. }
  35504. },
  35505. head: {
  35506. height: math.unit(2.62, "feet"),
  35507. name: "Head",
  35508. image: {
  35509. source: "./media/characters/eleanor/head.svg"
  35510. }
  35511. },
  35512. },
  35513. [
  35514. {
  35515. name: "Normal",
  35516. height: math.unit(8 + 4/12, "feet"),
  35517. default: true
  35518. },
  35519. ]
  35520. ))
  35521. characterMakers.push(() => makeCharacter(
  35522. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35523. {
  35524. front: {
  35525. height: math.unit(8 + 4/12, "feet"),
  35526. weight: math.unit(750, "lb"),
  35527. name: "Front",
  35528. image: {
  35529. source: "./media/characters/tanya/front.svg",
  35530. extra: 1749/1615,
  35531. bottom: 33/1782
  35532. }
  35533. },
  35534. },
  35535. [
  35536. {
  35537. name: "Normal",
  35538. height: math.unit(8 + 4/12, "feet"),
  35539. default: true
  35540. },
  35541. ]
  35542. ))
  35543. characterMakers.push(() => makeCharacter(
  35544. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35545. {
  35546. front: {
  35547. height: math.unit(5, "feet"),
  35548. weight: math.unit(225, "lb"),
  35549. name: "Front",
  35550. image: {
  35551. source: "./media/characters/cindy/front.svg",
  35552. extra: 1320/1250,
  35553. bottom: 42/1362
  35554. }
  35555. },
  35556. frontDressed: {
  35557. height: math.unit(5, "feet"),
  35558. weight: math.unit(225, "lb"),
  35559. name: "Front (Dressed)",
  35560. image: {
  35561. source: "./media/characters/cindy/front-dressed.svg",
  35562. extra: 1320/1250,
  35563. bottom: 42/1362
  35564. }
  35565. },
  35566. back: {
  35567. height: math.unit(5, "feet"),
  35568. weight: math.unit(225, "lb"),
  35569. name: "Back",
  35570. image: {
  35571. source: "./media/characters/cindy/back.svg",
  35572. extra: 1384/1346,
  35573. bottom: 14/1398
  35574. }
  35575. },
  35576. },
  35577. [
  35578. {
  35579. name: "Normal",
  35580. height: math.unit(5, "feet"),
  35581. default: true
  35582. },
  35583. ]
  35584. ))
  35585. characterMakers.push(() => makeCharacter(
  35586. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35587. {
  35588. front: {
  35589. height: math.unit(6 + 9/12, "feet"),
  35590. weight: math.unit(440, "lb"),
  35591. name: "Front",
  35592. image: {
  35593. source: "./media/characters/wilbur-owen/front.svg",
  35594. extra: 1575/1448,
  35595. bottom: 72/1647
  35596. }
  35597. },
  35598. back: {
  35599. height: math.unit(6 + 9/12, "feet"),
  35600. weight: math.unit(440, "lb"),
  35601. name: "Back",
  35602. image: {
  35603. source: "./media/characters/wilbur-owen/back.svg",
  35604. extra: 1578/1445,
  35605. bottom: 36/1614
  35606. }
  35607. },
  35608. },
  35609. [
  35610. {
  35611. name: "Normal",
  35612. height: math.unit(6 + 9/12, "feet"),
  35613. default: true
  35614. },
  35615. ]
  35616. ))
  35617. characterMakers.push(() => makeCharacter(
  35618. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35619. {
  35620. front: {
  35621. height: math.unit(6 + 5/12, "feet"),
  35622. weight: math.unit(650, "lb"),
  35623. name: "Front",
  35624. image: {
  35625. source: "./media/characters/keegan/front.svg",
  35626. extra: 2387/2198,
  35627. bottom: 33/2420
  35628. }
  35629. },
  35630. side: {
  35631. height: math.unit(6 + 5/12, "feet"),
  35632. weight: math.unit(650, "lb"),
  35633. name: "Side",
  35634. image: {
  35635. source: "./media/characters/keegan/side.svg",
  35636. extra: 2390/2202,
  35637. bottom: 47/2437
  35638. }
  35639. },
  35640. back: {
  35641. height: math.unit(6 + 5/12, "feet"),
  35642. weight: math.unit(650, "lb"),
  35643. name: "Back",
  35644. image: {
  35645. source: "./media/characters/keegan/back.svg",
  35646. extra: 2418/2268,
  35647. bottom: 15/2433
  35648. }
  35649. },
  35650. frontSfw: {
  35651. height: math.unit(6 + 5/12, "feet"),
  35652. weight: math.unit(650, "lb"),
  35653. name: "Front (SFW)",
  35654. image: {
  35655. source: "./media/characters/keegan/front-sfw.svg",
  35656. extra: 2387/2198,
  35657. bottom: 33/2420
  35658. }
  35659. },
  35660. beans: {
  35661. height: math.unit(1.85, "feet"),
  35662. name: "Beans",
  35663. image: {
  35664. source: "./media/characters/keegan/beans.svg"
  35665. }
  35666. },
  35667. },
  35668. [
  35669. {
  35670. name: "Normal",
  35671. height: math.unit(6 + 5/12, "feet"),
  35672. default: true
  35673. },
  35674. ]
  35675. ))
  35676. characterMakers.push(() => makeCharacter(
  35677. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35678. {
  35679. front: {
  35680. height: math.unit(9, "feet"),
  35681. name: "Front",
  35682. image: {
  35683. source: "./media/characters/colton/front.svg",
  35684. extra: 1589/1326,
  35685. bottom: 139/1728
  35686. }
  35687. },
  35688. },
  35689. [
  35690. {
  35691. name: "Normal",
  35692. height: math.unit(9, "feet"),
  35693. default: true
  35694. },
  35695. ]
  35696. ))
  35697. characterMakers.push(() => makeCharacter(
  35698. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35699. {
  35700. front: {
  35701. height: math.unit(2 + 9/12, "feet"),
  35702. name: "Front",
  35703. image: {
  35704. source: "./media/characters/bora/front.svg",
  35705. extra: 1265/1250,
  35706. bottom: 24/1289
  35707. }
  35708. },
  35709. },
  35710. [
  35711. {
  35712. name: "Normal",
  35713. height: math.unit(2 + 9/12, "feet"),
  35714. default: true
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35720. {
  35721. front: {
  35722. height: math.unit(8, "feet"),
  35723. name: "Front",
  35724. image: {
  35725. source: "./media/characters/myu-myu/front.svg",
  35726. extra: 1949/1857,
  35727. bottom: 90/2039
  35728. }
  35729. },
  35730. },
  35731. [
  35732. {
  35733. name: "Normal",
  35734. height: math.unit(8, "feet"),
  35735. default: true
  35736. },
  35737. {
  35738. name: "Big",
  35739. height: math.unit(15, "feet")
  35740. },
  35741. {
  35742. name: "BIG",
  35743. height: math.unit(25, "feet")
  35744. },
  35745. ]
  35746. ))
  35747. characterMakers.push(() => makeCharacter(
  35748. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35749. {
  35750. side: {
  35751. height: math.unit(7 + 5/12, "feet"),
  35752. weight: math.unit(2800, "lb"),
  35753. name: "Side",
  35754. image: {
  35755. source: "./media/characters/haloren/side.svg",
  35756. extra: 1793/409,
  35757. bottom: 59/1852
  35758. }
  35759. },
  35760. frontPaw: {
  35761. height: math.unit(2.36, "feet"),
  35762. name: "Front paw",
  35763. image: {
  35764. source: "./media/characters/haloren/front-paw.svg"
  35765. }
  35766. },
  35767. hindPaw: {
  35768. height: math.unit(3.18, "feet"),
  35769. name: "Hind paw",
  35770. image: {
  35771. source: "./media/characters/haloren/hind-paw.svg"
  35772. }
  35773. },
  35774. maw: {
  35775. height: math.unit(5.05, "feet"),
  35776. name: "Maw",
  35777. image: {
  35778. source: "./media/characters/haloren/maw.svg"
  35779. }
  35780. },
  35781. dick: {
  35782. height: math.unit(2.90, "feet"),
  35783. name: "Dick",
  35784. image: {
  35785. source: "./media/characters/haloren/dick.svg"
  35786. }
  35787. },
  35788. },
  35789. [
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(7 + 5/12, "feet"),
  35793. default: true
  35794. },
  35795. {
  35796. name: "Enhanced",
  35797. height: math.unit(14 + 3/12, "feet")
  35798. },
  35799. ]
  35800. ))
  35801. characterMakers.push(() => makeCharacter(
  35802. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35803. {
  35804. front: {
  35805. height: math.unit(171, "cm"),
  35806. name: "Front",
  35807. image: {
  35808. source: "./media/characters/kimmy/front.svg",
  35809. extra: 1491/1435,
  35810. bottom: 53/1544
  35811. }
  35812. },
  35813. },
  35814. [
  35815. {
  35816. name: "Small",
  35817. height: math.unit(9, "cm")
  35818. },
  35819. {
  35820. name: "Normal",
  35821. height: math.unit(171, "cm"),
  35822. default: true
  35823. },
  35824. ]
  35825. ))
  35826. characterMakers.push(() => makeCharacter(
  35827. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35828. {
  35829. front: {
  35830. height: math.unit(8, "feet"),
  35831. weight: math.unit(300, "lb"),
  35832. name: "Front",
  35833. image: {
  35834. source: "./media/characters/galeboomer/front.svg",
  35835. extra: 4651/4415,
  35836. bottom: 162/4813
  35837. }
  35838. },
  35839. back: {
  35840. height: math.unit(8, "feet"),
  35841. weight: math.unit(300, "lb"),
  35842. name: "Back",
  35843. image: {
  35844. source: "./media/characters/galeboomer/back.svg",
  35845. extra: 4544/4314,
  35846. bottom: 16/4560
  35847. }
  35848. },
  35849. frontAlt: {
  35850. height: math.unit(8, "feet"),
  35851. weight: math.unit(300, "lb"),
  35852. name: "Front (Alt)",
  35853. image: {
  35854. source: "./media/characters/galeboomer/front-alt.svg",
  35855. extra: 4458/4228,
  35856. bottom: 68/4526
  35857. }
  35858. },
  35859. maw: {
  35860. height: math.unit(1.2, "feet"),
  35861. name: "Maw",
  35862. image: {
  35863. source: "./media/characters/galeboomer/maw.svg"
  35864. }
  35865. },
  35866. },
  35867. [
  35868. {
  35869. name: "Normal",
  35870. height: math.unit(8, "feet"),
  35871. default: true
  35872. },
  35873. ]
  35874. ))
  35875. characterMakers.push(() => makeCharacter(
  35876. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35877. {
  35878. front: {
  35879. height: math.unit(5 + 9/12, "feet"),
  35880. weight: math.unit(120, "lb"),
  35881. name: "Front",
  35882. image: {
  35883. source: "./media/characters/chyr/front.svg",
  35884. extra: 1323/1254,
  35885. bottom: 63/1386
  35886. }
  35887. },
  35888. back: {
  35889. height: math.unit(5 + 9/12, "feet"),
  35890. weight: math.unit(120, "lb"),
  35891. name: "Back",
  35892. image: {
  35893. source: "./media/characters/chyr/back.svg",
  35894. extra: 1323/1252,
  35895. bottom: 48/1371
  35896. }
  35897. },
  35898. },
  35899. [
  35900. {
  35901. name: "Normal",
  35902. height: math.unit(5 + 9/12, "feet"),
  35903. default: true
  35904. },
  35905. ]
  35906. ))
  35907. characterMakers.push(() => makeCharacter(
  35908. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35909. {
  35910. front: {
  35911. height: math.unit(7, "feet"),
  35912. weight: math.unit(310, "lb"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/solarus/front.svg",
  35916. extra: 2415/2021,
  35917. bottom: 103/2518
  35918. }
  35919. },
  35920. back: {
  35921. height: math.unit(7, "feet"),
  35922. weight: math.unit(310, "lb"),
  35923. name: "Back",
  35924. image: {
  35925. source: "./media/characters/solarus/back.svg",
  35926. extra: 2463/2089,
  35927. bottom: 79/2542
  35928. }
  35929. },
  35930. },
  35931. [
  35932. {
  35933. name: "Normal",
  35934. height: math.unit(7, "feet"),
  35935. default: true
  35936. },
  35937. ]
  35938. ))
  35939. characterMakers.push(() => makeCharacter(
  35940. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35941. {
  35942. front: {
  35943. height: math.unit(16, "feet"),
  35944. name: "Front",
  35945. image: {
  35946. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35947. extra: 1844/1780,
  35948. bottom: 58/1902
  35949. }
  35950. },
  35951. winterCoat: {
  35952. height: math.unit(16, "feet"),
  35953. name: "Winter Coat",
  35954. image: {
  35955. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35956. extra: 1807/1775,
  35957. bottom: 69/1876
  35958. }
  35959. },
  35960. },
  35961. [
  35962. {
  35963. name: "Normal",
  35964. height: math.unit(16, "feet"),
  35965. default: true
  35966. },
  35967. {
  35968. name: "Chicago Size",
  35969. height: math.unit(560, "feet")
  35970. },
  35971. ]
  35972. ))
  35973. characterMakers.push(() => makeCharacter(
  35974. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35975. {
  35976. front: {
  35977. height: math.unit(11 + 6/12, "feet"),
  35978. weight: math.unit(1366, "lb"),
  35979. name: "Front",
  35980. image: {
  35981. source: "./media/characters/lexor/front.svg",
  35982. extra: 1560/1481,
  35983. bottom: 211/1771
  35984. }
  35985. },
  35986. back: {
  35987. height: math.unit(11 + 6/12, "feet"),
  35988. weight: math.unit(1366, "lb"),
  35989. name: "Back",
  35990. image: {
  35991. source: "./media/characters/lexor/back.svg",
  35992. extra: 1614/1533,
  35993. bottom: 76/1690
  35994. }
  35995. },
  35996. maw: {
  35997. height: math.unit(3, "feet"),
  35998. name: "Maw",
  35999. image: {
  36000. source: "./media/characters/lexor/maw.svg"
  36001. }
  36002. },
  36003. dick: {
  36004. height: math.unit(2.59, "feet"),
  36005. name: "Dick",
  36006. image: {
  36007. source: "./media/characters/lexor/dick.svg"
  36008. }
  36009. },
  36010. },
  36011. [
  36012. {
  36013. name: "Normal",
  36014. height: math.unit(11 + 6/12, "feet"),
  36015. default: true
  36016. },
  36017. ]
  36018. ))
  36019. characterMakers.push(() => makeCharacter(
  36020. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36021. {
  36022. front: {
  36023. height: math.unit(5 + 8/12, "feet"),
  36024. name: "Front",
  36025. image: {
  36026. source: "./media/characters/magnum/front.svg",
  36027. extra: 942/855,
  36028. bottom: 26/968
  36029. }
  36030. },
  36031. },
  36032. [
  36033. {
  36034. name: "Normal",
  36035. height: math.unit(5 + 8/12, "feet"),
  36036. default: true
  36037. },
  36038. ]
  36039. ))
  36040. characterMakers.push(() => makeCharacter(
  36041. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36042. {
  36043. front: {
  36044. height: math.unit(18 + 4/12, "feet"),
  36045. weight: math.unit(1500, "kg"),
  36046. name: "Front",
  36047. image: {
  36048. source: "./media/characters/solas-sharpsman/front.svg",
  36049. extra: 1698/1589,
  36050. bottom: 0/1698
  36051. }
  36052. },
  36053. },
  36054. [
  36055. {
  36056. name: "Normal",
  36057. height: math.unit(18 + 4/12, "feet"),
  36058. default: true
  36059. },
  36060. ]
  36061. ))
  36062. characterMakers.push(() => makeCharacter(
  36063. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36064. {
  36065. front: {
  36066. height: math.unit(5 + 5/12, "feet"),
  36067. weight: math.unit(180, "lb"),
  36068. name: "Front",
  36069. image: {
  36070. source: "./media/characters/october/front.svg",
  36071. extra: 1800/1650,
  36072. bottom: 0/1800
  36073. }
  36074. },
  36075. frontNsfw: {
  36076. height: math.unit(5 + 5/12, "feet"),
  36077. weight: math.unit(180, "lb"),
  36078. name: "Front (NSFW)",
  36079. image: {
  36080. source: "./media/characters/october/front-nsfw.svg",
  36081. extra: 1392/1307,
  36082. bottom: 42/1434
  36083. }
  36084. },
  36085. },
  36086. [
  36087. {
  36088. name: "Normal",
  36089. height: math.unit(5 + 5/12, "feet"),
  36090. default: true
  36091. },
  36092. ]
  36093. ))
  36094. characterMakers.push(() => makeCharacter(
  36095. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36096. {
  36097. front: {
  36098. height: math.unit(8 + 6/12, "feet"),
  36099. name: "Front",
  36100. image: {
  36101. source: "./media/characters/essynkardi/front.svg",
  36102. extra: 1914/1846,
  36103. bottom: 22/1936
  36104. }
  36105. },
  36106. },
  36107. [
  36108. {
  36109. name: "Normal",
  36110. height: math.unit(8 + 6/12, "feet"),
  36111. default: true
  36112. },
  36113. ]
  36114. ))
  36115. characterMakers.push(() => makeCharacter(
  36116. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36117. {
  36118. front: {
  36119. height: math.unit(6 + 6/12, "feet"),
  36120. weight: math.unit(7, "lb"),
  36121. name: "Front",
  36122. image: {
  36123. source: "./media/characters/icky/front.svg",
  36124. extra: 813/782,
  36125. bottom: 66/879
  36126. }
  36127. },
  36128. back: {
  36129. height: math.unit(6 + 6/12, "feet"),
  36130. weight: math.unit(7, "lb"),
  36131. name: "Back",
  36132. image: {
  36133. source: "./media/characters/icky/back.svg",
  36134. extra: 754/735,
  36135. bottom: 56/810
  36136. }
  36137. },
  36138. },
  36139. [
  36140. {
  36141. name: "Normal",
  36142. height: math.unit(6 + 6/12, "feet"),
  36143. default: true
  36144. },
  36145. ]
  36146. ))
  36147. characterMakers.push(() => makeCharacter(
  36148. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36149. {
  36150. front: {
  36151. height: math.unit(15, "feet"),
  36152. name: "Front",
  36153. image: {
  36154. source: "./media/characters/rojas/front.svg",
  36155. extra: 1462/1408,
  36156. bottom: 95/1557
  36157. }
  36158. },
  36159. back: {
  36160. height: math.unit(15, "feet"),
  36161. name: "Back",
  36162. image: {
  36163. source: "./media/characters/rojas/back.svg",
  36164. extra: 1023/954,
  36165. bottom: 28/1051
  36166. }
  36167. },
  36168. },
  36169. [
  36170. {
  36171. name: "Normal",
  36172. height: math.unit(15, "feet"),
  36173. default: true
  36174. },
  36175. ]
  36176. ))
  36177. characterMakers.push(() => makeCharacter(
  36178. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36179. {
  36180. frontHuman: {
  36181. height: math.unit(5 + 7/12, "feet"),
  36182. name: "Front (Human)",
  36183. image: {
  36184. source: "./media/characters/alek-dryagan/front-human.svg",
  36185. extra: 1687/1667,
  36186. bottom: 69/1756
  36187. }
  36188. },
  36189. backHuman: {
  36190. height: math.unit(5 + 7/12, "feet"),
  36191. name: "Back (Human)",
  36192. image: {
  36193. source: "./media/characters/alek-dryagan/back-human.svg",
  36194. extra: 1670/1649,
  36195. bottom: 65/1735
  36196. }
  36197. },
  36198. frontDemi: {
  36199. height: math.unit(65, "feet"),
  36200. name: "Front (Demi)",
  36201. image: {
  36202. source: "./media/characters/alek-dryagan/front-demi.svg",
  36203. extra: 1669/1642,
  36204. bottom: 49/1718
  36205. }
  36206. },
  36207. backDemi: {
  36208. height: math.unit(65, "feet"),
  36209. name: "Back (Demi)",
  36210. image: {
  36211. source: "./media/characters/alek-dryagan/back-demi.svg",
  36212. extra: 1658/1637,
  36213. bottom: 40/1698
  36214. }
  36215. },
  36216. mawHuman: {
  36217. height: math.unit(0.3, "feet"),
  36218. name: "Maw (Human)",
  36219. image: {
  36220. source: "./media/characters/alek-dryagan/maw-human.svg"
  36221. }
  36222. },
  36223. mawDemi: {
  36224. height: math.unit(3.8, "feet"),
  36225. name: "Maw (Demi)",
  36226. image: {
  36227. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36228. }
  36229. },
  36230. },
  36231. [
  36232. {
  36233. name: "Normal",
  36234. height: math.unit(5 + 7/12, "feet"),
  36235. default: true
  36236. },
  36237. ]
  36238. ))
  36239. characterMakers.push(() => makeCharacter(
  36240. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36241. {
  36242. frontHuman: {
  36243. height: math.unit(5 + 2/12, "feet"),
  36244. name: "Front (Human)",
  36245. image: {
  36246. source: "./media/characters/gen/front-human.svg",
  36247. extra: 1627/1538,
  36248. bottom: 71/1698
  36249. }
  36250. },
  36251. backHuman: {
  36252. height: math.unit(5 + 2/12, "feet"),
  36253. name: "Back (Human)",
  36254. image: {
  36255. source: "./media/characters/gen/back-human.svg",
  36256. extra: 1638/1548,
  36257. bottom: 69/1707
  36258. }
  36259. },
  36260. frontDemi: {
  36261. height: math.unit(5 + 2/12, "feet"),
  36262. name: "Front (Demi)",
  36263. image: {
  36264. source: "./media/characters/gen/front-demi.svg",
  36265. extra: 1627/1538,
  36266. bottom: 71/1698
  36267. }
  36268. },
  36269. backDemi: {
  36270. height: math.unit(5 + 2/12, "feet"),
  36271. name: "Back (Demi)",
  36272. image: {
  36273. source: "./media/characters/gen/back-demi.svg",
  36274. extra: 1638/1548,
  36275. bottom: 69/1707
  36276. }
  36277. },
  36278. },
  36279. [
  36280. {
  36281. name: "Normal",
  36282. height: math.unit(5 + 2/12, "feet"),
  36283. default: true
  36284. },
  36285. ]
  36286. ))
  36287. characterMakers.push(() => makeCharacter(
  36288. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36289. {
  36290. frontImp: {
  36291. height: math.unit(1 + 11/12, "feet"),
  36292. name: "Front (Imp)",
  36293. image: {
  36294. source: "./media/characters/max-kobold/front-imp.svg",
  36295. extra: 1238/1134,
  36296. bottom: 81/1319
  36297. }
  36298. },
  36299. backImp: {
  36300. height: math.unit(1 + 11/12, "feet"),
  36301. name: "Back (Imp)",
  36302. image: {
  36303. source: "./media/characters/max-kobold/back-imp.svg",
  36304. extra: 1334/1175,
  36305. bottom: 34/1368
  36306. }
  36307. },
  36308. frontDemi: {
  36309. height: math.unit(5 + 9/12, "feet"),
  36310. name: "Front (Demi)",
  36311. image: {
  36312. source: "./media/characters/max-kobold/front-demi.svg",
  36313. extra: 1715/1685,
  36314. bottom: 54/1769
  36315. }
  36316. },
  36317. backDemi: {
  36318. height: math.unit(5 + 9/12, "feet"),
  36319. name: "Back (Demi)",
  36320. image: {
  36321. source: "./media/characters/max-kobold/back-demi.svg",
  36322. extra: 1752/1729,
  36323. bottom: 41/1793
  36324. }
  36325. },
  36326. handImp: {
  36327. height: math.unit(0.45, "feet"),
  36328. name: "Hand (Imp)",
  36329. image: {
  36330. source: "./media/characters/max-kobold/hand.svg"
  36331. }
  36332. },
  36333. pawImp: {
  36334. height: math.unit(0.46, "feet"),
  36335. name: "Paw (Imp)",
  36336. image: {
  36337. source: "./media/characters/max-kobold/paw.svg"
  36338. }
  36339. },
  36340. handDemi: {
  36341. height: math.unit(0.80, "feet"),
  36342. name: "Hand (Demi)",
  36343. image: {
  36344. source: "./media/characters/max-kobold/hand.svg"
  36345. }
  36346. },
  36347. pawDemi: {
  36348. height: math.unit(1.1, "feet"),
  36349. name: "Paw (Demi)",
  36350. image: {
  36351. source: "./media/characters/max-kobold/paw.svg"
  36352. }
  36353. },
  36354. headImp: {
  36355. height: math.unit(1.33, "feet"),
  36356. name: "Head (Imp)",
  36357. image: {
  36358. source: "./media/characters/max-kobold/head-imp.svg"
  36359. }
  36360. },
  36361. mawImp: {
  36362. height: math.unit(0.75, "feet"),
  36363. name: "Maw (Imp)",
  36364. image: {
  36365. source: "./media/characters/max-kobold/maw-imp.svg"
  36366. }
  36367. },
  36368. mawDemi: {
  36369. height: math.unit(0.42, "feet"),
  36370. name: "Maw (Demi)",
  36371. image: {
  36372. source: "./media/characters/max-kobold/maw-demi.svg"
  36373. }
  36374. },
  36375. },
  36376. [
  36377. {
  36378. name: "Normal",
  36379. height: math.unit(1 + 11/12, "feet"),
  36380. default: true
  36381. },
  36382. ]
  36383. ))
  36384. characterMakers.push(() => makeCharacter(
  36385. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36386. {
  36387. front: {
  36388. height: math.unit(7 + 5/12, "feet"),
  36389. name: "Front",
  36390. image: {
  36391. source: "./media/characters/carbon/front.svg",
  36392. extra: 1754/1689,
  36393. bottom: 65/1819
  36394. }
  36395. },
  36396. back: {
  36397. height: math.unit(7 + 5/12, "feet"),
  36398. name: "Back",
  36399. image: {
  36400. source: "./media/characters/carbon/back.svg",
  36401. extra: 1762/1695,
  36402. bottom: 24/1786
  36403. }
  36404. },
  36405. frontGigantamax: {
  36406. height: math.unit(150, "feet"),
  36407. name: "Front (Gigantamax)",
  36408. image: {
  36409. source: "./media/characters/carbon/front-gigantamax.svg",
  36410. extra: 1826/1669,
  36411. bottom: 59/1885
  36412. }
  36413. },
  36414. backGigantamax: {
  36415. height: math.unit(150, "feet"),
  36416. name: "Back (Gigantamax)",
  36417. image: {
  36418. source: "./media/characters/carbon/back-gigantamax.svg",
  36419. extra: 1796/1653,
  36420. bottom: 53/1849
  36421. }
  36422. },
  36423. maw: {
  36424. height: math.unit(0.48, "feet"),
  36425. name: "Maw",
  36426. image: {
  36427. source: "./media/characters/carbon/maw.svg"
  36428. }
  36429. },
  36430. mawGigantamax: {
  36431. height: math.unit(7.5, "feet"),
  36432. name: "Maw (Gigantamax)",
  36433. image: {
  36434. source: "./media/characters/carbon/maw-gigantamax.svg"
  36435. }
  36436. },
  36437. },
  36438. [
  36439. {
  36440. name: "Normal",
  36441. height: math.unit(7 + 5/12, "feet"),
  36442. default: true
  36443. },
  36444. ]
  36445. ))
  36446. characterMakers.push(() => makeCharacter(
  36447. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36448. {
  36449. front: {
  36450. height: math.unit(6, "feet"),
  36451. name: "Front",
  36452. image: {
  36453. source: "./media/characters/maverick/front.svg",
  36454. extra: 1672/1661,
  36455. bottom: 85/1757
  36456. }
  36457. },
  36458. back: {
  36459. height: math.unit(6, "feet"),
  36460. name: "Back",
  36461. image: {
  36462. source: "./media/characters/maverick/back.svg",
  36463. extra: 1642/1631,
  36464. bottom: 38/1680
  36465. }
  36466. },
  36467. },
  36468. [
  36469. {
  36470. name: "Normal",
  36471. height: math.unit(6, "feet"),
  36472. default: true
  36473. },
  36474. ]
  36475. ))
  36476. characterMakers.push(() => makeCharacter(
  36477. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36478. {
  36479. front: {
  36480. height: math.unit(15, "feet"),
  36481. weight: math.unit(615, "lb"),
  36482. name: "Front",
  36483. image: {
  36484. source: "./media/characters/grockle/front.svg",
  36485. extra: 1535/1427,
  36486. bottom: 56/1591
  36487. }
  36488. },
  36489. },
  36490. [
  36491. {
  36492. name: "Normal",
  36493. height: math.unit(15, "feet"),
  36494. default: true
  36495. },
  36496. {
  36497. name: "Large",
  36498. height: math.unit(150, "feet")
  36499. },
  36500. {
  36501. name: "Macro",
  36502. height: math.unit(1876, "feet")
  36503. },
  36504. {
  36505. name: "Mega Macro",
  36506. height: math.unit(121940, "feet")
  36507. },
  36508. {
  36509. name: "Giga Macro",
  36510. height: math.unit(750, "km")
  36511. },
  36512. {
  36513. name: "Tera Macro",
  36514. height: math.unit(750000, "km")
  36515. },
  36516. {
  36517. name: "Galactic",
  36518. height: math.unit(1.4e5, "km")
  36519. },
  36520. {
  36521. name: "Godlike",
  36522. height: math.unit(9.8e280, "galaxies")
  36523. },
  36524. ]
  36525. ))
  36526. characterMakers.push(() => makeCharacter(
  36527. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36528. {
  36529. front: {
  36530. height: math.unit(11, "meters"),
  36531. weight: math.unit(20, "tonnes"),
  36532. name: "Front",
  36533. image: {
  36534. source: "./media/characters/alistair/front.svg",
  36535. extra: 1265/1009,
  36536. bottom: 93/1358
  36537. }
  36538. },
  36539. },
  36540. [
  36541. {
  36542. name: "Normal",
  36543. height: math.unit(11, "meters"),
  36544. default: true
  36545. },
  36546. ]
  36547. ))
  36548. characterMakers.push(() => makeCharacter(
  36549. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36550. {
  36551. front: {
  36552. height: math.unit(5 + 8/12, "feet"),
  36553. name: "Front",
  36554. image: {
  36555. source: "./media/characters/haruka/front.svg",
  36556. extra: 2012/1952,
  36557. bottom: 0/2012
  36558. }
  36559. },
  36560. },
  36561. [
  36562. {
  36563. name: "Normal",
  36564. height: math.unit(5 + 8/12, "feet"),
  36565. default: true
  36566. },
  36567. ]
  36568. ))
  36569. characterMakers.push(() => makeCharacter(
  36570. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36571. {
  36572. back: {
  36573. height: math.unit(9, "feet"),
  36574. name: "Back",
  36575. image: {
  36576. source: "./media/characters/vivian-sylveon/back.svg",
  36577. extra: 1853/1714,
  36578. bottom: 0/1853
  36579. }
  36580. },
  36581. },
  36582. [
  36583. {
  36584. name: "Normal",
  36585. height: math.unit(9, "feet"),
  36586. default: true
  36587. },
  36588. {
  36589. name: "Macro",
  36590. height: math.unit(500, "feet")
  36591. },
  36592. {
  36593. name: "Megamacro",
  36594. height: math.unit(600, "miles")
  36595. },
  36596. {
  36597. name: "Gigamacro",
  36598. height: math.unit(30000, "miles")
  36599. },
  36600. ]
  36601. ))
  36602. characterMakers.push(() => makeCharacter(
  36603. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36604. {
  36605. anthro: {
  36606. height: math.unit(5 + 10/12, "feet"),
  36607. weight: math.unit(100, "lb"),
  36608. name: "Anthro",
  36609. image: {
  36610. source: "./media/characters/daiki/anthro.svg",
  36611. extra: 1115/1027,
  36612. bottom: 69/1184
  36613. }
  36614. },
  36615. feral: {
  36616. height: math.unit(200, "feet"),
  36617. name: "Feral",
  36618. image: {
  36619. source: "./media/characters/daiki/feral.svg",
  36620. extra: 1256/313,
  36621. bottom: 39/1295
  36622. }
  36623. },
  36624. feralHead: {
  36625. height: math.unit(171, "feet"),
  36626. name: "Feral Head",
  36627. image: {
  36628. source: "./media/characters/daiki/feral-head.svg"
  36629. }
  36630. },
  36631. manaDragon: {
  36632. height: math.unit(170, "meters"),
  36633. name: "Mana-dragon",
  36634. image: {
  36635. source: "./media/characters/daiki/mana-dragon.svg",
  36636. extra: 763/420,
  36637. bottom: 97/860
  36638. }
  36639. },
  36640. },
  36641. [
  36642. {
  36643. name: "Normal",
  36644. height: math.unit(5 + 10/12, "feet"),
  36645. default: true
  36646. },
  36647. ]
  36648. ))
  36649. characterMakers.push(() => makeCharacter(
  36650. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36651. {
  36652. fullyEquippedFront: {
  36653. height: math.unit(3 + 1/12, "feet"),
  36654. weight: math.unit(24, "lb"),
  36655. name: "Fully Equipped (Front)",
  36656. image: {
  36657. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36658. extra: 687/605,
  36659. bottom: 18/705
  36660. }
  36661. },
  36662. fullyEquippedBack: {
  36663. height: math.unit(3 + 1/12, "feet"),
  36664. weight: math.unit(24, "lb"),
  36665. name: "Fully Equipped (Back)",
  36666. image: {
  36667. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36668. extra: 689/590,
  36669. bottom: 18/707
  36670. }
  36671. },
  36672. dailyWear: {
  36673. height: math.unit(3 + 1/12, "feet"),
  36674. weight: math.unit(24, "lb"),
  36675. name: "Daily Wear",
  36676. image: {
  36677. source: "./media/characters/tea-spot/daily-wear.svg",
  36678. extra: 701/620,
  36679. bottom: 21/722
  36680. }
  36681. },
  36682. maidWork: {
  36683. height: math.unit(3 + 1/12, "feet"),
  36684. weight: math.unit(24, "lb"),
  36685. name: "Maid Work",
  36686. image: {
  36687. source: "./media/characters/tea-spot/maid-work.svg",
  36688. extra: 693/609,
  36689. bottom: 15/708
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "Normal",
  36696. height: math.unit(3 + 1/12, "feet"),
  36697. default: true
  36698. },
  36699. ]
  36700. ))
  36701. characterMakers.push(() => makeCharacter(
  36702. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36703. {
  36704. front: {
  36705. height: math.unit(175, "cm"),
  36706. weight: math.unit(75, "kg"),
  36707. name: "Front",
  36708. image: {
  36709. source: "./media/characters/chee/front.svg",
  36710. extra: 1796/1740,
  36711. bottom: 40/1836
  36712. }
  36713. },
  36714. },
  36715. [
  36716. {
  36717. name: "Micro-Micro",
  36718. height: math.unit(1, "nm")
  36719. },
  36720. {
  36721. name: "Micro-erst",
  36722. height: math.unit(1, "micrometer")
  36723. },
  36724. {
  36725. name: "Micro-er",
  36726. height: math.unit(1, "cm")
  36727. },
  36728. {
  36729. name: "Normal",
  36730. height: math.unit(175, "cm"),
  36731. default: true
  36732. },
  36733. {
  36734. name: "Macro",
  36735. height: math.unit(100, "m")
  36736. },
  36737. {
  36738. name: "Macro-er",
  36739. height: math.unit(1, "km")
  36740. },
  36741. {
  36742. name: "Macro-erst",
  36743. height: math.unit(10, "km")
  36744. },
  36745. {
  36746. name: "Macro-Macro",
  36747. height: math.unit(100, "km")
  36748. },
  36749. ]
  36750. ))
  36751. characterMakers.push(() => makeCharacter(
  36752. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36753. {
  36754. front: {
  36755. height: math.unit(11 + 9/12, "feet"),
  36756. weight: math.unit(935, "lb"),
  36757. name: "Front",
  36758. image: {
  36759. source: "./media/characters/kingsley/front.svg",
  36760. extra: 1803/1674,
  36761. bottom: 127/1930
  36762. }
  36763. },
  36764. frontNude: {
  36765. height: math.unit(11 + 9/12, "feet"),
  36766. weight: math.unit(935, "lb"),
  36767. name: "Front (Nude)",
  36768. image: {
  36769. source: "./media/characters/kingsley/front-nude.svg",
  36770. extra: 1803/1674,
  36771. bottom: 127/1930
  36772. }
  36773. },
  36774. },
  36775. [
  36776. {
  36777. name: "Normal",
  36778. height: math.unit(11 + 9/12, "feet"),
  36779. default: true
  36780. },
  36781. ]
  36782. ))
  36783. characterMakers.push(() => makeCharacter(
  36784. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36785. {
  36786. side: {
  36787. height: math.unit(9, "feet"),
  36788. name: "Side",
  36789. image: {
  36790. source: "./media/characters/rymel/side.svg",
  36791. extra: 792/469,
  36792. bottom: 121/913
  36793. }
  36794. },
  36795. maw: {
  36796. height: math.unit(2.4, "meters"),
  36797. name: "Maw",
  36798. image: {
  36799. source: "./media/characters/rymel/maw.svg"
  36800. }
  36801. },
  36802. },
  36803. [
  36804. {
  36805. name: "House Drake",
  36806. height: math.unit(2, "feet")
  36807. },
  36808. {
  36809. name: "Reduced",
  36810. height: math.unit(4.5, "feet")
  36811. },
  36812. {
  36813. name: "Normal",
  36814. height: math.unit(9, "feet"),
  36815. default: true
  36816. },
  36817. ]
  36818. ))
  36819. characterMakers.push(() => makeCharacter(
  36820. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36821. {
  36822. front: {
  36823. height: math.unit(1.74, "meters"),
  36824. weight: math.unit(55, "kg"),
  36825. name: "Front",
  36826. image: {
  36827. source: "./media/characters/rubus/front.svg",
  36828. extra: 1894/1742,
  36829. bottom: 44/1938
  36830. }
  36831. },
  36832. },
  36833. [
  36834. {
  36835. name: "Normal",
  36836. height: math.unit(1.74, "meters"),
  36837. default: true
  36838. },
  36839. ]
  36840. ))
  36841. characterMakers.push(() => makeCharacter(
  36842. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36843. {
  36844. front: {
  36845. height: math.unit(5 + 2/12, "feet"),
  36846. weight: math.unit(112, "lb"),
  36847. name: "Front",
  36848. image: {
  36849. source: "./media/characters/cassie-kingston/front.svg",
  36850. extra: 1438/1390,
  36851. bottom: 47/1485
  36852. }
  36853. },
  36854. },
  36855. [
  36856. {
  36857. name: "Normal",
  36858. height: math.unit(5 + 2/12, "feet"),
  36859. default: true
  36860. },
  36861. {
  36862. name: "Macro",
  36863. height: math.unit(128, "feet")
  36864. },
  36865. {
  36866. name: "Megamacro",
  36867. height: math.unit(2.56, "miles")
  36868. },
  36869. ]
  36870. ))
  36871. characterMakers.push(() => makeCharacter(
  36872. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36873. {
  36874. front: {
  36875. height: math.unit(7, "feet"),
  36876. name: "Front",
  36877. image: {
  36878. source: "./media/characters/fox/front.svg",
  36879. extra: 1798/1703,
  36880. bottom: 55/1853
  36881. }
  36882. },
  36883. back: {
  36884. height: math.unit(7, "feet"),
  36885. name: "Back",
  36886. image: {
  36887. source: "./media/characters/fox/back.svg",
  36888. extra: 1748/1649,
  36889. bottom: 32/1780
  36890. }
  36891. },
  36892. head: {
  36893. height: math.unit(1.95, "feet"),
  36894. name: "Head",
  36895. image: {
  36896. source: "./media/characters/fox/head.svg"
  36897. }
  36898. },
  36899. dick: {
  36900. height: math.unit(1.33, "feet"),
  36901. name: "Dick",
  36902. image: {
  36903. source: "./media/characters/fox/dick.svg"
  36904. }
  36905. },
  36906. foot: {
  36907. height: math.unit(1, "feet"),
  36908. name: "Foot",
  36909. image: {
  36910. source: "./media/characters/fox/foot.svg"
  36911. }
  36912. },
  36913. paw: {
  36914. height: math.unit(0.92, "feet"),
  36915. name: "Paw",
  36916. image: {
  36917. source: "./media/characters/fox/paw.svg"
  36918. }
  36919. },
  36920. },
  36921. [
  36922. {
  36923. name: "Small",
  36924. height: math.unit(3, "inches")
  36925. },
  36926. {
  36927. name: "\"Realistic\"",
  36928. height: math.unit(7, "feet")
  36929. },
  36930. {
  36931. name: "Normal",
  36932. height: math.unit(150, "feet"),
  36933. default: true
  36934. },
  36935. {
  36936. name: "BIG",
  36937. height: math.unit(1200, "feet")
  36938. },
  36939. {
  36940. name: "👀",
  36941. height: math.unit(5, "miles")
  36942. },
  36943. {
  36944. name: "👀👀👀",
  36945. height: math.unit(64, "miles")
  36946. },
  36947. ]
  36948. ))
  36949. characterMakers.push(() => makeCharacter(
  36950. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36951. {
  36952. front: {
  36953. height: math.unit(625, "feet"),
  36954. name: "Front",
  36955. image: {
  36956. source: "./media/characters/asonja-rossa/front.svg",
  36957. extra: 1833/1686,
  36958. bottom: 24/1857
  36959. }
  36960. },
  36961. back: {
  36962. height: math.unit(625, "feet"),
  36963. name: "Back",
  36964. image: {
  36965. source: "./media/characters/asonja-rossa/back.svg",
  36966. extra: 1852/1753,
  36967. bottom: 26/1878
  36968. }
  36969. },
  36970. },
  36971. [
  36972. {
  36973. name: "Macro",
  36974. height: math.unit(625, "feet"),
  36975. default: true
  36976. },
  36977. ]
  36978. ))
  36979. characterMakers.push(() => makeCharacter(
  36980. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36981. {
  36982. side: {
  36983. height: math.unit(8, "feet"),
  36984. name: "Side",
  36985. image: {
  36986. source: "./media/characters/rezukii/side.svg",
  36987. extra: 979/542,
  36988. bottom: 87/1066
  36989. }
  36990. },
  36991. sitting: {
  36992. height: math.unit(14.6, "feet"),
  36993. name: "Sitting",
  36994. image: {
  36995. source: "./media/characters/rezukii/sitting.svg",
  36996. extra: 1023/813,
  36997. bottom: 45/1068
  36998. }
  36999. },
  37000. },
  37001. [
  37002. {
  37003. name: "Tiny",
  37004. height: math.unit(2, "feet")
  37005. },
  37006. {
  37007. name: "Smol",
  37008. height: math.unit(4, "feet")
  37009. },
  37010. {
  37011. name: "Normal",
  37012. height: math.unit(8, "feet"),
  37013. default: true
  37014. },
  37015. {
  37016. name: "Big",
  37017. height: math.unit(12, "feet")
  37018. },
  37019. {
  37020. name: "Macro",
  37021. height: math.unit(30, "feet")
  37022. },
  37023. ]
  37024. ))
  37025. characterMakers.push(() => makeCharacter(
  37026. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37027. {
  37028. front: {
  37029. height: math.unit(14, "feet"),
  37030. weight: math.unit(9.5, "tonnes"),
  37031. name: "Front",
  37032. image: {
  37033. source: "./media/characters/dawnheart/front.svg",
  37034. extra: 2792/2675,
  37035. bottom: 64/2856
  37036. }
  37037. },
  37038. },
  37039. [
  37040. {
  37041. name: "Normal",
  37042. height: math.unit(14, "feet"),
  37043. default: true
  37044. },
  37045. ]
  37046. ))
  37047. characterMakers.push(() => makeCharacter(
  37048. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37049. {
  37050. front: {
  37051. height: math.unit(1.7, "m"),
  37052. name: "Front",
  37053. image: {
  37054. source: "./media/characters/gladi/front.svg",
  37055. extra: 1460/1362,
  37056. bottom: 19/1479
  37057. }
  37058. },
  37059. back: {
  37060. height: math.unit(1.7, "m"),
  37061. name: "Back",
  37062. image: {
  37063. source: "./media/characters/gladi/back.svg",
  37064. extra: 1459/1357,
  37065. bottom: 12/1471
  37066. }
  37067. },
  37068. feral: {
  37069. height: math.unit(2.05, "m"),
  37070. name: "Feral",
  37071. image: {
  37072. source: "./media/characters/gladi/feral.svg",
  37073. extra: 821/557,
  37074. bottom: 91/912
  37075. }
  37076. },
  37077. },
  37078. [
  37079. {
  37080. name: "Shortest",
  37081. height: math.unit(70, "cm")
  37082. },
  37083. {
  37084. name: "Normal",
  37085. height: math.unit(1.7, "m")
  37086. },
  37087. {
  37088. name: "Macro",
  37089. height: math.unit(10, "m"),
  37090. default: true
  37091. },
  37092. {
  37093. name: "Tallest",
  37094. height: math.unit(200, "m")
  37095. },
  37096. ]
  37097. ))
  37098. characterMakers.push(() => makeCharacter(
  37099. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37100. {
  37101. front: {
  37102. height: math.unit(5 + 7/12, "feet"),
  37103. weight: math.unit(2, "tons"),
  37104. name: "Front",
  37105. image: {
  37106. source: "./media/characters/erdno/front.svg",
  37107. extra: 1234/1129,
  37108. bottom: 35/1269
  37109. }
  37110. },
  37111. angled: {
  37112. height: math.unit(5 + 7/12, "feet"),
  37113. weight: math.unit(2, "tons"),
  37114. name: "Angled",
  37115. image: {
  37116. source: "./media/characters/erdno/angled.svg",
  37117. extra: 1185/1139,
  37118. bottom: 36/1221
  37119. }
  37120. },
  37121. side: {
  37122. height: math.unit(5 + 7/12, "feet"),
  37123. weight: math.unit(2, "tons"),
  37124. name: "Side",
  37125. image: {
  37126. source: "./media/characters/erdno/side.svg",
  37127. extra: 1191/1144,
  37128. bottom: 40/1231
  37129. }
  37130. },
  37131. back: {
  37132. height: math.unit(5 + 7/12, "feet"),
  37133. weight: math.unit(2, "tons"),
  37134. name: "Back",
  37135. image: {
  37136. source: "./media/characters/erdno/back.svg",
  37137. extra: 1202/1146,
  37138. bottom: 17/1219
  37139. }
  37140. },
  37141. frontNsfw: {
  37142. height: math.unit(5 + 7/12, "feet"),
  37143. weight: math.unit(2, "tons"),
  37144. name: "Front (NSFW)",
  37145. image: {
  37146. source: "./media/characters/erdno/front-nsfw.svg",
  37147. extra: 1234/1129,
  37148. bottom: 35/1269
  37149. }
  37150. },
  37151. angledNsfw: {
  37152. height: math.unit(5 + 7/12, "feet"),
  37153. weight: math.unit(2, "tons"),
  37154. name: "Angled (NSFW)",
  37155. image: {
  37156. source: "./media/characters/erdno/angled-nsfw.svg",
  37157. extra: 1185/1139,
  37158. bottom: 36/1221
  37159. }
  37160. },
  37161. sideNsfw: {
  37162. height: math.unit(5 + 7/12, "feet"),
  37163. weight: math.unit(2, "tons"),
  37164. name: "Side (NSFW)",
  37165. image: {
  37166. source: "./media/characters/erdno/side-nsfw.svg",
  37167. extra: 1191/1144,
  37168. bottom: 40/1231
  37169. }
  37170. },
  37171. backNsfw: {
  37172. height: math.unit(5 + 7/12, "feet"),
  37173. weight: math.unit(2, "tons"),
  37174. name: "Back (NSFW)",
  37175. image: {
  37176. source: "./media/characters/erdno/back-nsfw.svg",
  37177. extra: 1202/1146,
  37178. bottom: 17/1219
  37179. }
  37180. },
  37181. frontHyper: {
  37182. height: math.unit(5 + 7/12, "feet"),
  37183. weight: math.unit(2, "tons"),
  37184. name: "Front (Hyper)",
  37185. image: {
  37186. source: "./media/characters/erdno/front-hyper.svg",
  37187. extra: 1298/1136,
  37188. bottom: 35/1333
  37189. }
  37190. },
  37191. },
  37192. [
  37193. {
  37194. name: "Normal",
  37195. height: math.unit(5 + 7/12, "feet"),
  37196. default: true
  37197. },
  37198. {
  37199. name: "Big",
  37200. height: math.unit(5.7, "meters")
  37201. },
  37202. {
  37203. name: "Macro",
  37204. height: math.unit(5.7, "kilometers")
  37205. },
  37206. {
  37207. name: "Megamacro",
  37208. height: math.unit(5.7, "earths")
  37209. },
  37210. ]
  37211. ))
  37212. characterMakers.push(() => makeCharacter(
  37213. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37214. {
  37215. front: {
  37216. height: math.unit(5 + 10/12, "feet"),
  37217. weight: math.unit(150, "lb"),
  37218. name: "Front",
  37219. image: {
  37220. source: "./media/characters/jamie/front.svg",
  37221. extra: 1908/1768,
  37222. bottom: 19/1927
  37223. }
  37224. },
  37225. },
  37226. [
  37227. {
  37228. name: "Minimum",
  37229. height: math.unit(2, "cm")
  37230. },
  37231. {
  37232. name: "Micro",
  37233. height: math.unit(3, "inches")
  37234. },
  37235. {
  37236. name: "Normal",
  37237. height: math.unit(5 + 10/12, "feet"),
  37238. default: true
  37239. },
  37240. {
  37241. name: "Macro",
  37242. height: math.unit(150, "feet")
  37243. },
  37244. {
  37245. name: "Megamacro",
  37246. height: math.unit(10000, "m")
  37247. },
  37248. ]
  37249. ))
  37250. characterMakers.push(() => makeCharacter(
  37251. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37252. {
  37253. front: {
  37254. height: math.unit(2, "meters"),
  37255. weight: math.unit(100, "kg"),
  37256. name: "Front",
  37257. image: {
  37258. source: "./media/characters/shiron/front.svg",
  37259. extra: 2103/1985,
  37260. bottom: 98/2201
  37261. }
  37262. },
  37263. back: {
  37264. height: math.unit(2, "meters"),
  37265. weight: math.unit(100, "kg"),
  37266. name: "Back",
  37267. image: {
  37268. source: "./media/characters/shiron/back.svg",
  37269. extra: 2110/2015,
  37270. bottom: 89/2199
  37271. }
  37272. },
  37273. hand: {
  37274. height: math.unit(0.96, "feet"),
  37275. name: "Hand",
  37276. image: {
  37277. source: "./media/characters/shiron/hand.svg"
  37278. }
  37279. },
  37280. foot: {
  37281. height: math.unit(1.464, "feet"),
  37282. name: "Foot",
  37283. image: {
  37284. source: "./media/characters/shiron/foot.svg"
  37285. }
  37286. },
  37287. },
  37288. [
  37289. {
  37290. name: "Normal",
  37291. height: math.unit(2, "meters")
  37292. },
  37293. {
  37294. name: "Macro",
  37295. height: math.unit(500, "meters"),
  37296. default: true
  37297. },
  37298. {
  37299. name: "Megamacro",
  37300. height: math.unit(20, "km")
  37301. },
  37302. ]
  37303. ))
  37304. characterMakers.push(() => makeCharacter(
  37305. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37306. {
  37307. front: {
  37308. height: math.unit(6, "feet"),
  37309. name: "Front",
  37310. image: {
  37311. source: "./media/characters/sam/front.svg",
  37312. extra: 849/826,
  37313. bottom: 19/868
  37314. }
  37315. },
  37316. },
  37317. [
  37318. {
  37319. name: "Normal",
  37320. height: math.unit(6, "feet"),
  37321. default: true
  37322. },
  37323. ]
  37324. ))
  37325. characterMakers.push(() => makeCharacter(
  37326. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37327. {
  37328. front: {
  37329. height: math.unit(8 + 4/12, "feet"),
  37330. weight: math.unit(122, "kg"),
  37331. name: "Front",
  37332. image: {
  37333. source: "./media/characters/namori-kurogawa/front.svg",
  37334. extra: 1894/1576,
  37335. bottom: 34/1928
  37336. }
  37337. },
  37338. },
  37339. [
  37340. {
  37341. name: "Normal",
  37342. height: math.unit(8 + 4/12, "feet"),
  37343. default: true
  37344. },
  37345. ]
  37346. ))
  37347. characterMakers.push(() => makeCharacter(
  37348. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37349. {
  37350. front: {
  37351. height: math.unit(9, "feet"),
  37352. weight: math.unit(621, "lb"),
  37353. name: "Front",
  37354. image: {
  37355. source: "./media/characters/unmru/front.svg",
  37356. extra: 1853/1747,
  37357. bottom: 73/1926
  37358. }
  37359. },
  37360. side: {
  37361. height: math.unit(9, "feet"),
  37362. weight: math.unit(621, "lb"),
  37363. name: "Side",
  37364. image: {
  37365. source: "./media/characters/unmru/side.svg",
  37366. extra: 1781/1671,
  37367. bottom: 127/1908
  37368. }
  37369. },
  37370. back: {
  37371. height: math.unit(9, "feet"),
  37372. weight: math.unit(621, "lb"),
  37373. name: "Back",
  37374. image: {
  37375. source: "./media/characters/unmru/back.svg",
  37376. extra: 1894/1765,
  37377. bottom: 75/1969
  37378. }
  37379. },
  37380. dick: {
  37381. height: math.unit(3, "feet"),
  37382. weight: math.unit(35, "lb"),
  37383. name: "Dick",
  37384. image: {
  37385. source: "./media/characters/unmru/dick.svg"
  37386. }
  37387. },
  37388. },
  37389. [
  37390. {
  37391. name: "Normal",
  37392. height: math.unit(9, "feet")
  37393. },
  37394. {
  37395. name: "Natural",
  37396. height: math.unit(27, "feet"),
  37397. default: true
  37398. },
  37399. {
  37400. name: "Giant",
  37401. height: math.unit(90, "feet")
  37402. },
  37403. {
  37404. name: "Kaiju",
  37405. height: math.unit(270, "feet")
  37406. },
  37407. {
  37408. name: "Macro",
  37409. height: math.unit(900, "feet")
  37410. },
  37411. {
  37412. name: "Macro+",
  37413. height: math.unit(2700, "feet")
  37414. },
  37415. {
  37416. name: "Megamacro",
  37417. height: math.unit(9000, "feet")
  37418. },
  37419. {
  37420. name: "City-Crushing",
  37421. height: math.unit(27000, "feet")
  37422. },
  37423. {
  37424. name: "Mountain-Mashing",
  37425. height: math.unit(90000, "feet")
  37426. },
  37427. {
  37428. name: "Earth-Eclipsing",
  37429. height: math.unit(2.7e8, "feet")
  37430. },
  37431. {
  37432. name: "Sol-Swallowing",
  37433. height: math.unit(9e10, "feet")
  37434. },
  37435. {
  37436. name: "Majoris-Munching",
  37437. height: math.unit(2.7e13, "feet")
  37438. },
  37439. ]
  37440. ))
  37441. characterMakers.push(() => makeCharacter(
  37442. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37443. {
  37444. front: {
  37445. height: math.unit(1, "inch"),
  37446. name: "Front",
  37447. image: {
  37448. source: "./media/characters/squeaks-mouse/front.svg",
  37449. extra: 352/308,
  37450. bottom: 25/377
  37451. }
  37452. },
  37453. },
  37454. [
  37455. {
  37456. name: "Micro",
  37457. height: math.unit(1, "inch"),
  37458. default: true
  37459. },
  37460. ]
  37461. ))
  37462. characterMakers.push(() => makeCharacter(
  37463. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37464. {
  37465. side: {
  37466. height: math.unit(35, "feet"),
  37467. name: "Side",
  37468. image: {
  37469. source: "./media/characters/sayko/side.svg",
  37470. extra: 1697/1021,
  37471. bottom: 82/1779
  37472. }
  37473. },
  37474. head: {
  37475. height: math.unit(16, "feet"),
  37476. name: "Head",
  37477. image: {
  37478. source: "./media/characters/sayko/head.svg"
  37479. }
  37480. },
  37481. forepaw: {
  37482. height: math.unit(7.85, "feet"),
  37483. name: "Forepaw",
  37484. image: {
  37485. source: "./media/characters/sayko/forepaw.svg"
  37486. }
  37487. },
  37488. hindpaw: {
  37489. height: math.unit(8.8, "feet"),
  37490. name: "Hindpaw",
  37491. image: {
  37492. source: "./media/characters/sayko/hindpaw.svg"
  37493. }
  37494. },
  37495. },
  37496. [
  37497. {
  37498. name: "Normal",
  37499. height: math.unit(35, "feet"),
  37500. default: true
  37501. },
  37502. {
  37503. name: "Colossus",
  37504. height: math.unit(100, "meters")
  37505. },
  37506. {
  37507. name: "\"Small\" Deity",
  37508. height: math.unit(1, "km")
  37509. },
  37510. {
  37511. name: "\"Large\" Deity",
  37512. height: math.unit(15, "km")
  37513. },
  37514. ]
  37515. ))
  37516. characterMakers.push(() => makeCharacter(
  37517. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37518. {
  37519. front: {
  37520. height: math.unit(6, "feet"),
  37521. weight: math.unit(250, "lb"),
  37522. name: "Front",
  37523. image: {
  37524. source: "./media/characters/mukiro/front.svg",
  37525. extra: 1368/1310,
  37526. bottom: 34/1402
  37527. }
  37528. },
  37529. },
  37530. [
  37531. {
  37532. name: "Normal",
  37533. height: math.unit(6, "feet"),
  37534. default: true
  37535. },
  37536. ]
  37537. ))
  37538. characterMakers.push(() => makeCharacter(
  37539. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37540. {
  37541. front: {
  37542. height: math.unit(12 + 4/12, "feet"),
  37543. name: "Front",
  37544. image: {
  37545. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37546. extra: 1346/1311,
  37547. bottom: 65/1411
  37548. }
  37549. },
  37550. },
  37551. [
  37552. {
  37553. name: "Base",
  37554. height: math.unit(12 + 4/12, "feet"),
  37555. default: true
  37556. },
  37557. {
  37558. name: "Macro",
  37559. height: math.unit(150, "feet")
  37560. },
  37561. {
  37562. name: "Mega",
  37563. height: math.unit(2, "miles")
  37564. },
  37565. {
  37566. name: "Demi God",
  37567. height: math.unit(4, "AU")
  37568. },
  37569. {
  37570. name: "God Size",
  37571. height: math.unit(1, "universe")
  37572. },
  37573. ]
  37574. ))
  37575. characterMakers.push(() => makeCharacter(
  37576. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37577. {
  37578. front: {
  37579. height: math.unit(3 + 3/12, "feet"),
  37580. weight: math.unit(88, "lb"),
  37581. name: "Front",
  37582. image: {
  37583. source: "./media/characters/trey/front.svg",
  37584. extra: 1815/1509,
  37585. bottom: 60/1875
  37586. }
  37587. },
  37588. },
  37589. [
  37590. {
  37591. name: "Normal",
  37592. height: math.unit(3 + 3/12, "feet"),
  37593. default: true
  37594. },
  37595. ]
  37596. ))
  37597. characterMakers.push(() => makeCharacter(
  37598. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37599. {
  37600. front: {
  37601. height: math.unit(4, "meters"),
  37602. name: "Front",
  37603. image: {
  37604. source: "./media/characters/adelonda/front.svg",
  37605. extra: 1077/982,
  37606. bottom: 39/1116
  37607. }
  37608. },
  37609. back: {
  37610. height: math.unit(4, "meters"),
  37611. name: "Back",
  37612. image: {
  37613. source: "./media/characters/adelonda/back.svg",
  37614. extra: 1105/1003,
  37615. bottom: 25/1130
  37616. }
  37617. },
  37618. },
  37619. [
  37620. {
  37621. name: "Normal",
  37622. height: math.unit(4, "meters"),
  37623. default: true
  37624. },
  37625. ]
  37626. ))
  37627. characterMakers.push(() => makeCharacter(
  37628. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37629. {
  37630. front: {
  37631. height: math.unit(8 + 4/12, "feet"),
  37632. weight: math.unit(670, "lb"),
  37633. name: "Front",
  37634. image: {
  37635. source: "./media/characters/acadiel/front.svg",
  37636. extra: 1901/1595,
  37637. bottom: 142/2043
  37638. }
  37639. },
  37640. },
  37641. [
  37642. {
  37643. name: "Normal",
  37644. height: math.unit(8 + 4/12, "feet"),
  37645. default: true
  37646. },
  37647. {
  37648. name: "Macro",
  37649. height: math.unit(200, "feet")
  37650. },
  37651. ]
  37652. ))
  37653. characterMakers.push(() => makeCharacter(
  37654. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37655. {
  37656. front: {
  37657. height: math.unit(6 + 2/12, "feet"),
  37658. weight: math.unit(185, "lb"),
  37659. name: "Front",
  37660. image: {
  37661. source: "./media/characters/kayne-ein/front.svg",
  37662. extra: 1780/1560,
  37663. bottom: 81/1861
  37664. }
  37665. },
  37666. },
  37667. [
  37668. {
  37669. name: "Normal",
  37670. height: math.unit(6 + 2/12, "feet"),
  37671. default: true
  37672. },
  37673. {
  37674. name: "Transformation Stage",
  37675. height: math.unit(15, "feet")
  37676. },
  37677. {
  37678. name: "Macro",
  37679. height: math.unit(150, "feet")
  37680. },
  37681. {
  37682. name: "Earth's Shadow",
  37683. height: math.unit(6200, "miles")
  37684. },
  37685. {
  37686. name: "Universal Demon",
  37687. height: math.unit(28e9, "parsecs")
  37688. },
  37689. {
  37690. name: "Multiverse God",
  37691. height: math.unit(3, "multiverses")
  37692. },
  37693. ]
  37694. ))
  37695. characterMakers.push(() => makeCharacter(
  37696. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37697. {
  37698. front: {
  37699. height: math.unit(5 + 5/12, "feet"),
  37700. name: "Front",
  37701. image: {
  37702. source: "./media/characters/fawn/front.svg",
  37703. extra: 1873/1731,
  37704. bottom: 95/1968
  37705. }
  37706. },
  37707. back: {
  37708. height: math.unit(5 + 5/12, "feet"),
  37709. name: "Back",
  37710. image: {
  37711. source: "./media/characters/fawn/back.svg",
  37712. extra: 1813/1700,
  37713. bottom: 14/1827
  37714. }
  37715. },
  37716. hoof: {
  37717. height: math.unit(1.45, "feet"),
  37718. name: "Hoof",
  37719. image: {
  37720. source: "./media/characters/fawn/hoof.svg"
  37721. }
  37722. },
  37723. },
  37724. [
  37725. {
  37726. name: "Normal",
  37727. height: math.unit(5 + 5/12, "feet"),
  37728. default: true
  37729. },
  37730. ]
  37731. ))
  37732. characterMakers.push(() => makeCharacter(
  37733. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37734. {
  37735. front: {
  37736. height: math.unit(2 + 5/12, "feet"),
  37737. name: "Front",
  37738. image: {
  37739. source: "./media/characters/orion/front.svg",
  37740. extra: 1366/1304,
  37741. bottom: 43/1409
  37742. }
  37743. },
  37744. paw: {
  37745. height: math.unit(0.52, "feet"),
  37746. name: "Paw",
  37747. image: {
  37748. source: "./media/characters/orion/paw.svg"
  37749. }
  37750. },
  37751. },
  37752. [
  37753. {
  37754. name: "Normal",
  37755. height: math.unit(2 + 5/12, "feet"),
  37756. default: true
  37757. },
  37758. ]
  37759. ))
  37760. characterMakers.push(() => makeCharacter(
  37761. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37762. {
  37763. front: {
  37764. height: math.unit(5 + 10/12, "feet"),
  37765. name: "Front",
  37766. image: {
  37767. source: "./media/characters/vera/front.svg",
  37768. extra: 1680/1575,
  37769. bottom: 49/1729
  37770. }
  37771. },
  37772. back: {
  37773. height: math.unit(5 + 10/12, "feet"),
  37774. name: "Back",
  37775. image: {
  37776. source: "./media/characters/vera/back.svg",
  37777. extra: 1700/1588,
  37778. bottom: 18/1718
  37779. }
  37780. },
  37781. arcanine: {
  37782. height: math.unit(6 + 8/12, "feet"),
  37783. name: "Arcanine",
  37784. image: {
  37785. source: "./media/characters/vera/arcanine.svg",
  37786. extra: 1590/1511,
  37787. bottom: 71/1661
  37788. }
  37789. },
  37790. maw: {
  37791. height: math.unit(0.82, "feet"),
  37792. name: "Maw",
  37793. image: {
  37794. source: "./media/characters/vera/maw.svg"
  37795. }
  37796. },
  37797. mawArcanine: {
  37798. height: math.unit(0.97, "feet"),
  37799. name: "Maw (Arcanine)",
  37800. image: {
  37801. source: "./media/characters/vera/maw-arcanine.svg"
  37802. }
  37803. },
  37804. paw: {
  37805. height: math.unit(0.75, "feet"),
  37806. name: "Paw",
  37807. image: {
  37808. source: "./media/characters/vera/paw.svg"
  37809. }
  37810. },
  37811. pawprint: {
  37812. height: math.unit(0.52, "feet"),
  37813. name: "Pawprint",
  37814. image: {
  37815. source: "./media/characters/vera/pawprint.svg"
  37816. }
  37817. },
  37818. },
  37819. [
  37820. {
  37821. name: "Normal",
  37822. height: math.unit(5 + 10/12, "feet"),
  37823. default: true
  37824. },
  37825. {
  37826. name: "Macro",
  37827. height: math.unit(75, "feet")
  37828. },
  37829. ]
  37830. ))
  37831. characterMakers.push(() => makeCharacter(
  37832. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37833. {
  37834. front: {
  37835. height: math.unit(4, "feet"),
  37836. weight: math.unit(40, "lb"),
  37837. name: "Front",
  37838. image: {
  37839. source: "./media/characters/orvan-rabbit/front.svg",
  37840. extra: 1896/1642,
  37841. bottom: 29/1925
  37842. }
  37843. },
  37844. },
  37845. [
  37846. {
  37847. name: "Normal",
  37848. height: math.unit(4, "feet"),
  37849. default: true
  37850. },
  37851. ]
  37852. ))
  37853. characterMakers.push(() => makeCharacter(
  37854. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37855. {
  37856. front: {
  37857. height: math.unit(6, "feet"),
  37858. weight: math.unit(168, "lb"),
  37859. name: "Front",
  37860. image: {
  37861. source: "./media/characters/lisa/front.svg",
  37862. extra: 2065/1867,
  37863. bottom: 46/2111
  37864. }
  37865. },
  37866. back: {
  37867. height: math.unit(6, "feet"),
  37868. weight: math.unit(168, "lb"),
  37869. name: "Back",
  37870. image: {
  37871. source: "./media/characters/lisa/back.svg",
  37872. extra: 1982/1838,
  37873. bottom: 29/2011
  37874. }
  37875. },
  37876. maw: {
  37877. height: math.unit(0.81, "feet"),
  37878. name: "Maw",
  37879. image: {
  37880. source: "./media/characters/lisa/maw.svg"
  37881. }
  37882. },
  37883. paw: {
  37884. height: math.unit(0.9, "feet"),
  37885. name: "Paw",
  37886. image: {
  37887. source: "./media/characters/lisa/paw.svg"
  37888. }
  37889. },
  37890. caribousune: {
  37891. height: math.unit(7 + 2/12, "feet"),
  37892. weight: math.unit(268, "lb"),
  37893. name: "Caribousune",
  37894. image: {
  37895. source: "./media/characters/lisa/caribousune.svg",
  37896. extra: 1843/1633,
  37897. bottom: 29/1872
  37898. }
  37899. },
  37900. frontCaribousune: {
  37901. height: math.unit(7 + 2/12, "feet"),
  37902. weight: math.unit(268, "lb"),
  37903. name: "Front (Caribousune)",
  37904. image: {
  37905. source: "./media/characters/lisa/front-caribousune.svg",
  37906. extra: 1818/1638,
  37907. bottom: 52/1870
  37908. }
  37909. },
  37910. sideCaribousune: {
  37911. height: math.unit(7 + 2/12, "feet"),
  37912. weight: math.unit(268, "lb"),
  37913. name: "Side (Caribousune)",
  37914. image: {
  37915. source: "./media/characters/lisa/side-caribousune.svg",
  37916. extra: 1851/1635,
  37917. bottom: 16/1867
  37918. }
  37919. },
  37920. backCaribousune: {
  37921. height: math.unit(7 + 2/12, "feet"),
  37922. weight: math.unit(268, "lb"),
  37923. name: "Back (Caribousune)",
  37924. image: {
  37925. source: "./media/characters/lisa/back-caribousune.svg",
  37926. extra: 1801/1604,
  37927. bottom: 44/1845
  37928. }
  37929. },
  37930. caribou: {
  37931. height: math.unit(7 + 2/12, "feet"),
  37932. weight: math.unit(268, "lb"),
  37933. name: "Caribou",
  37934. image: {
  37935. source: "./media/characters/lisa/caribou.svg",
  37936. extra: 1843/1633,
  37937. bottom: 29/1872
  37938. }
  37939. },
  37940. frontCaribou: {
  37941. height: math.unit(7 + 2/12, "feet"),
  37942. weight: math.unit(268, "lb"),
  37943. name: "Front (Caribou)",
  37944. image: {
  37945. source: "./media/characters/lisa/front-caribou.svg",
  37946. extra: 1818/1638,
  37947. bottom: 52/1870
  37948. }
  37949. },
  37950. sideCaribou: {
  37951. height: math.unit(7 + 2/12, "feet"),
  37952. weight: math.unit(268, "lb"),
  37953. name: "Side (Caribou)",
  37954. image: {
  37955. source: "./media/characters/lisa/side-caribou.svg",
  37956. extra: 1851/1635,
  37957. bottom: 16/1867
  37958. }
  37959. },
  37960. backCaribou: {
  37961. height: math.unit(7 + 2/12, "feet"),
  37962. weight: math.unit(268, "lb"),
  37963. name: "Back (Caribou)",
  37964. image: {
  37965. source: "./media/characters/lisa/back-caribou.svg",
  37966. extra: 1801/1604,
  37967. bottom: 44/1845
  37968. }
  37969. },
  37970. mawCaribou: {
  37971. height: math.unit(1.45, "feet"),
  37972. name: "Maw (Caribou)",
  37973. image: {
  37974. source: "./media/characters/lisa/maw-caribou.svg"
  37975. }
  37976. },
  37977. mawCaribousune: {
  37978. height: math.unit(1.45, "feet"),
  37979. name: "Maw (Caribousune)",
  37980. image: {
  37981. source: "./media/characters/lisa/maw-caribousune.svg"
  37982. }
  37983. },
  37984. pawCaribousune: {
  37985. height: math.unit(1.61, "feet"),
  37986. name: "Paw (Caribou)",
  37987. image: {
  37988. source: "./media/characters/lisa/paw-caribousune.svg"
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(6, "feet")
  37996. },
  37997. {
  37998. name: "God Size",
  37999. height: math.unit(72, "feet"),
  38000. default: true
  38001. },
  38002. {
  38003. name: "Towering",
  38004. height: math.unit(288, "feet")
  38005. },
  38006. {
  38007. name: "City Size",
  38008. height: math.unit(48384, "feet")
  38009. },
  38010. {
  38011. name: "Continental",
  38012. height: math.unit(4200, "miles")
  38013. },
  38014. {
  38015. name: "Planet Eater",
  38016. height: math.unit(42, "earths")
  38017. },
  38018. {
  38019. name: "Star Swallower",
  38020. height: math.unit(42, "solarradii")
  38021. },
  38022. {
  38023. name: "System Swallower",
  38024. height: math.unit(84000, "AU")
  38025. },
  38026. {
  38027. name: "Galaxy Gobbler",
  38028. height: math.unit(42, "galaxies")
  38029. },
  38030. {
  38031. name: "Universe Devourer",
  38032. height: math.unit(42, "universes")
  38033. },
  38034. {
  38035. name: "Multiverse Muncher",
  38036. height: math.unit(42, "multiverses")
  38037. },
  38038. ]
  38039. ))
  38040. characterMakers.push(() => makeCharacter(
  38041. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38042. {
  38043. front: {
  38044. height: math.unit(36, "feet"),
  38045. name: "Front",
  38046. image: {
  38047. source: "./media/characters/shadow-rat/front.svg",
  38048. extra: 1845/1758,
  38049. bottom: 83/1928
  38050. }
  38051. },
  38052. },
  38053. [
  38054. {
  38055. name: "Macro",
  38056. height: math.unit(36, "feet"),
  38057. default: true
  38058. },
  38059. ]
  38060. ))
  38061. characterMakers.push(() => makeCharacter(
  38062. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38063. {
  38064. side: {
  38065. height: math.unit(8, "feet"),
  38066. weight: math.unit(2630, "lb"),
  38067. name: "Side",
  38068. image: {
  38069. source: "./media/characters/torallia/side.svg",
  38070. extra: 2164/2021,
  38071. bottom: 371/2535
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Mortal Interaction",
  38078. height: math.unit(8, "feet")
  38079. },
  38080. {
  38081. name: "Natural",
  38082. height: math.unit(24, "feet"),
  38083. default: true
  38084. },
  38085. {
  38086. name: "Giant",
  38087. height: math.unit(80, "feet")
  38088. },
  38089. {
  38090. name: "Kaiju",
  38091. height: math.unit(240, "feet")
  38092. },
  38093. {
  38094. name: "Macro",
  38095. height: math.unit(800, "feet")
  38096. },
  38097. {
  38098. name: "Macro+",
  38099. height: math.unit(2400, "feet")
  38100. },
  38101. {
  38102. name: "Macro++",
  38103. height: math.unit(8000, "feet")
  38104. },
  38105. {
  38106. name: "City-Crushing",
  38107. height: math.unit(24000, "feet")
  38108. },
  38109. {
  38110. name: "Mountain-Mashing",
  38111. height: math.unit(80000, "feet")
  38112. },
  38113. {
  38114. name: "District Demolisher",
  38115. height: math.unit(240000, "feet")
  38116. },
  38117. {
  38118. name: "Tri-County Terror",
  38119. height: math.unit(800000, "feet")
  38120. },
  38121. {
  38122. name: "State Smasher",
  38123. height: math.unit(2.4e6, "feet")
  38124. },
  38125. {
  38126. name: "Nation Nemesis",
  38127. height: math.unit(8e6, "feet")
  38128. },
  38129. {
  38130. name: "Continent Cracker",
  38131. height: math.unit(2.4e7, "feet")
  38132. },
  38133. {
  38134. name: "Planet-Pillaging",
  38135. height: math.unit(8e7, "feet")
  38136. },
  38137. {
  38138. name: "Earth-Eclipsing",
  38139. height: math.unit(2.4e8, "feet")
  38140. },
  38141. {
  38142. name: "Jovian-Jostling",
  38143. height: math.unit(8e8, "feet")
  38144. },
  38145. {
  38146. name: "Gas Giant Gulper",
  38147. height: math.unit(2.4e9, "feet")
  38148. },
  38149. {
  38150. name: "Astral Annihilator",
  38151. height: math.unit(8e9, "feet")
  38152. },
  38153. {
  38154. name: "Celestial Conqueror",
  38155. height: math.unit(2.4e10, "feet")
  38156. },
  38157. {
  38158. name: "Sol-Swallowing",
  38159. height: math.unit(8e10, "feet")
  38160. },
  38161. {
  38162. name: "Hunter of the Heavens",
  38163. height: math.unit(2.4e13, "feet")
  38164. },
  38165. ]
  38166. ))
  38167. characterMakers.push(() => makeCharacter(
  38168. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38169. {
  38170. front: {
  38171. height: math.unit(6 + 8/12, "feet"),
  38172. name: "Front",
  38173. image: {
  38174. source: "./media/characters/rebecca-pawlson/front.svg",
  38175. extra: 1737/1596,
  38176. bottom: 107/1844
  38177. }
  38178. },
  38179. back: {
  38180. height: math.unit(6 + 8/12, "feet"),
  38181. name: "Back",
  38182. image: {
  38183. source: "./media/characters/rebecca-pawlson/back.svg",
  38184. extra: 1702/1523,
  38185. bottom: 86/1788
  38186. }
  38187. },
  38188. },
  38189. [
  38190. {
  38191. name: "Normal",
  38192. height: math.unit(6 + 8/12, "feet")
  38193. },
  38194. {
  38195. name: "Mini Macro",
  38196. height: math.unit(10, "feet"),
  38197. default: true
  38198. },
  38199. {
  38200. name: "Macro",
  38201. height: math.unit(100, "feet")
  38202. },
  38203. {
  38204. name: "Mega Macro",
  38205. height: math.unit(2500, "feet")
  38206. },
  38207. {
  38208. name: "Giga Macro",
  38209. height: math.unit(50, "miles")
  38210. },
  38211. ]
  38212. ))
  38213. characterMakers.push(() => makeCharacter(
  38214. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38215. {
  38216. front: {
  38217. height: math.unit(7 + 6/12, "feet"),
  38218. weight: math.unit(600, "lb"),
  38219. name: "Front",
  38220. image: {
  38221. source: "./media/characters/moxie-nova/front.svg",
  38222. extra: 1734/1652,
  38223. bottom: 41/1775
  38224. }
  38225. },
  38226. },
  38227. [
  38228. {
  38229. name: "Normal",
  38230. height: math.unit(7 + 6/12, "feet"),
  38231. default: true
  38232. },
  38233. ]
  38234. ))
  38235. characterMakers.push(() => makeCharacter(
  38236. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38237. {
  38238. goat: {
  38239. height: math.unit(4, "feet"),
  38240. weight: math.unit(180, "lb"),
  38241. name: "Goat",
  38242. image: {
  38243. source: "./media/characters/tiffany/goat.svg",
  38244. extra: 1845/1595,
  38245. bottom: 106/1951
  38246. }
  38247. },
  38248. front: {
  38249. height: math.unit(5, "feet"),
  38250. weight: math.unit(150, "lb"),
  38251. name: "Foxcoon",
  38252. image: {
  38253. source: "./media/characters/tiffany/foxcoon.svg",
  38254. extra: 1941/1845,
  38255. bottom: 58/1999
  38256. }
  38257. },
  38258. },
  38259. [
  38260. {
  38261. name: "Normal",
  38262. height: math.unit(5, "feet"),
  38263. default: true
  38264. },
  38265. ]
  38266. ))
  38267. characterMakers.push(() => makeCharacter(
  38268. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38269. {
  38270. front: {
  38271. height: math.unit(8, "feet"),
  38272. weight: math.unit(300, "lb"),
  38273. name: "Front",
  38274. image: {
  38275. source: "./media/characters/raxinath/front.svg",
  38276. extra: 1407/1309,
  38277. bottom: 39/1446
  38278. }
  38279. },
  38280. back: {
  38281. height: math.unit(8, "feet"),
  38282. weight: math.unit(300, "lb"),
  38283. name: "Back",
  38284. image: {
  38285. source: "./media/characters/raxinath/back.svg",
  38286. extra: 1405/1315,
  38287. bottom: 9/1414
  38288. }
  38289. },
  38290. },
  38291. [
  38292. {
  38293. name: "Speck",
  38294. height: math.unit(0.5, "nm")
  38295. },
  38296. {
  38297. name: "Micro",
  38298. height: math.unit(3, "inches")
  38299. },
  38300. {
  38301. name: "Kobold",
  38302. height: math.unit(3, "feet")
  38303. },
  38304. {
  38305. name: "Normal",
  38306. height: math.unit(8, "feet"),
  38307. default: true
  38308. },
  38309. {
  38310. name: "Giant",
  38311. height: math.unit(50, "feet")
  38312. },
  38313. {
  38314. name: "Macro",
  38315. height: math.unit(1000, "feet")
  38316. },
  38317. {
  38318. name: "Megamacro",
  38319. height: math.unit(1, "mile")
  38320. },
  38321. ]
  38322. ))
  38323. characterMakers.push(() => makeCharacter(
  38324. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38325. {
  38326. front: {
  38327. height: math.unit(10, "feet"),
  38328. weight: math.unit(1442, "lb"),
  38329. name: "Front",
  38330. image: {
  38331. source: "./media/characters/mal-dragon/front.svg",
  38332. extra: 1515/1444,
  38333. bottom: 113/1628
  38334. }
  38335. },
  38336. back: {
  38337. height: math.unit(10, "feet"),
  38338. weight: math.unit(1442, "lb"),
  38339. name: "Back",
  38340. image: {
  38341. source: "./media/characters/mal-dragon/back.svg",
  38342. extra: 1527/1434,
  38343. bottom: 25/1552
  38344. }
  38345. },
  38346. },
  38347. [
  38348. {
  38349. name: "Mortal Interaction",
  38350. height: math.unit(10, "feet"),
  38351. default: true
  38352. },
  38353. {
  38354. name: "Large",
  38355. height: math.unit(30, "feet")
  38356. },
  38357. {
  38358. name: "Kaiju",
  38359. height: math.unit(300, "feet")
  38360. },
  38361. {
  38362. name: "Megamacro",
  38363. height: math.unit(10000, "feet")
  38364. },
  38365. {
  38366. name: "Continent Cracker",
  38367. height: math.unit(30000000, "feet")
  38368. },
  38369. {
  38370. name: "Sol-Swallowing",
  38371. height: math.unit(1e11, "feet")
  38372. },
  38373. {
  38374. name: "Light Universal",
  38375. height: math.unit(5, "universes")
  38376. },
  38377. {
  38378. name: "Universe Atoms",
  38379. height: math.unit(1.829e9, "universes")
  38380. },
  38381. {
  38382. name: "Light Multiversal",
  38383. height: math.unit(5, "multiverses")
  38384. },
  38385. {
  38386. name: "Multiverse Atoms",
  38387. height: math.unit(1.829e9, "multiverses")
  38388. },
  38389. {
  38390. name: "Fabric of Time",
  38391. height: math.unit(1e262, "multiverses")
  38392. },
  38393. ]
  38394. ))
  38395. characterMakers.push(() => makeCharacter(
  38396. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38397. {
  38398. front: {
  38399. height: math.unit(9, "feet"),
  38400. weight: math.unit(1050, "lb"),
  38401. name: "Front",
  38402. image: {
  38403. source: "./media/characters/tabitha/front.svg",
  38404. extra: 2083/1994,
  38405. bottom: 68/2151
  38406. }
  38407. },
  38408. },
  38409. [
  38410. {
  38411. name: "Baseline",
  38412. height: math.unit(9, "feet"),
  38413. default: true
  38414. },
  38415. {
  38416. name: "Giant",
  38417. height: math.unit(90, "feet")
  38418. },
  38419. {
  38420. name: "Macro",
  38421. height: math.unit(900, "feet")
  38422. },
  38423. {
  38424. name: "Megamacro",
  38425. height: math.unit(9000, "feet")
  38426. },
  38427. {
  38428. name: "City-Crushing",
  38429. height: math.unit(27000, "feet")
  38430. },
  38431. {
  38432. name: "Mountain-Mashing",
  38433. height: math.unit(90000, "feet")
  38434. },
  38435. {
  38436. name: "Nation Nemesis",
  38437. height: math.unit(9e6, "feet")
  38438. },
  38439. {
  38440. name: "Continent Cracker",
  38441. height: math.unit(27e6, "feet")
  38442. },
  38443. {
  38444. name: "Earth-Eclipsing",
  38445. height: math.unit(2.7e8, "feet")
  38446. },
  38447. {
  38448. name: "Gas Giant Gulper",
  38449. height: math.unit(2.7e9, "feet")
  38450. },
  38451. {
  38452. name: "Sol-Swallowing",
  38453. height: math.unit(9e10, "feet")
  38454. },
  38455. {
  38456. name: "Galaxy Gulper",
  38457. height: math.unit(9, "galaxies")
  38458. },
  38459. {
  38460. name: "Cosmos Churner",
  38461. height: math.unit(9, "universes")
  38462. },
  38463. ]
  38464. ))
  38465. characterMakers.push(() => makeCharacter(
  38466. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38467. {
  38468. front: {
  38469. height: math.unit(160, "cm"),
  38470. weight: math.unit(55, "kg"),
  38471. name: "Front",
  38472. image: {
  38473. source: "./media/characters/tow/front.svg",
  38474. extra: 1751/1722,
  38475. bottom: 74/1825
  38476. }
  38477. },
  38478. },
  38479. [
  38480. {
  38481. name: "Norm",
  38482. height: math.unit(160, "cm")
  38483. },
  38484. {
  38485. name: "Casual",
  38486. height: math.unit(3200, "m"),
  38487. default: true
  38488. },
  38489. {
  38490. name: "Show-Off",
  38491. height: math.unit(160, "km")
  38492. },
  38493. ]
  38494. ))
  38495. characterMakers.push(() => makeCharacter(
  38496. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38497. {
  38498. front: {
  38499. height: math.unit(7 + 11/12, "feet"),
  38500. weight: math.unit(342.8, "lb"),
  38501. name: "Front",
  38502. image: {
  38503. source: "./media/characters/vivian-orca-dragon/front.svg",
  38504. extra: 1890/1865,
  38505. bottom: 28/1918
  38506. }
  38507. },
  38508. },
  38509. [
  38510. {
  38511. name: "Micro",
  38512. height: math.unit(5, "inches")
  38513. },
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(7 + 11/12, "feet"),
  38517. default: true
  38518. },
  38519. {
  38520. name: "Macro",
  38521. height: math.unit(395 + 7/12, "feet")
  38522. },
  38523. ]
  38524. ))
  38525. characterMakers.push(() => makeCharacter(
  38526. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38527. {
  38528. side: {
  38529. height: math.unit(10, "feet"),
  38530. weight: math.unit(1442, "lb"),
  38531. name: "Side",
  38532. image: {
  38533. source: "./media/characters/lotherakon/side.svg",
  38534. extra: 1604/1497,
  38535. bottom: 89/1693
  38536. }
  38537. },
  38538. },
  38539. [
  38540. {
  38541. name: "Mortal Interaction",
  38542. height: math.unit(10, "feet")
  38543. },
  38544. {
  38545. name: "Large",
  38546. height: math.unit(30, "feet"),
  38547. default: true
  38548. },
  38549. {
  38550. name: "Giant",
  38551. height: math.unit(100, "feet")
  38552. },
  38553. {
  38554. name: "Kaiju",
  38555. height: math.unit(300, "feet")
  38556. },
  38557. {
  38558. name: "Macro",
  38559. height: math.unit(1000, "feet")
  38560. },
  38561. {
  38562. name: "Macro+",
  38563. height: math.unit(3000, "feet")
  38564. },
  38565. {
  38566. name: "Megamacro",
  38567. height: math.unit(10000, "feet")
  38568. },
  38569. {
  38570. name: "City-Crushing",
  38571. height: math.unit(30000, "feet")
  38572. },
  38573. {
  38574. name: "Continent Cracker",
  38575. height: math.unit(30e6, "feet")
  38576. },
  38577. {
  38578. name: "Earth Eclipsing",
  38579. height: math.unit(3e8, "feet")
  38580. },
  38581. {
  38582. name: "Gas Giant Gulper",
  38583. height: math.unit(3e9, "feet")
  38584. },
  38585. {
  38586. name: "Sol-Swallowing",
  38587. height: math.unit(1e11, "feet")
  38588. },
  38589. {
  38590. name: "System Swallower",
  38591. height: math.unit(3e14, "feet")
  38592. },
  38593. {
  38594. name: "Galaxy Gulper",
  38595. height: math.unit(10, "galaxies")
  38596. },
  38597. {
  38598. name: "Light Universal",
  38599. height: math.unit(5, "universes")
  38600. },
  38601. {
  38602. name: "Universe Palm",
  38603. height: math.unit(20, "universes")
  38604. },
  38605. {
  38606. name: "Light Multiversal",
  38607. height: math.unit(5, "multiverses")
  38608. },
  38609. {
  38610. name: "Multiverse Palm",
  38611. height: math.unit(20, "multiverses")
  38612. },
  38613. {
  38614. name: "Inferno Incarnate",
  38615. height: math.unit(1e7, "multiverses")
  38616. },
  38617. ]
  38618. ))
  38619. characterMakers.push(() => makeCharacter(
  38620. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38621. {
  38622. front: {
  38623. height: math.unit(8, "feet"),
  38624. weight: math.unit(1200, "lb"),
  38625. name: "Front",
  38626. image: {
  38627. source: "./media/characters/malithee/front.svg",
  38628. extra: 1675/1640,
  38629. bottom: 162/1837
  38630. }
  38631. },
  38632. },
  38633. [
  38634. {
  38635. name: "Mortal Interaction",
  38636. height: math.unit(8, "feet"),
  38637. default: true
  38638. },
  38639. {
  38640. name: "Large",
  38641. height: math.unit(24, "feet")
  38642. },
  38643. {
  38644. name: "Kaiju",
  38645. height: math.unit(240, "feet")
  38646. },
  38647. {
  38648. name: "Megamacro",
  38649. height: math.unit(8000, "feet")
  38650. },
  38651. {
  38652. name: "Continent Cracker",
  38653. height: math.unit(24e6, "feet")
  38654. },
  38655. {
  38656. name: "Earth-Eclipsing",
  38657. height: math.unit(2.4e8, "feet")
  38658. },
  38659. {
  38660. name: "Sol-Swallowing",
  38661. height: math.unit(8e10, "feet")
  38662. },
  38663. {
  38664. name: "Galaxy Gulper",
  38665. height: math.unit(8, "galaxies")
  38666. },
  38667. {
  38668. name: "Light Universal",
  38669. height: math.unit(4, "universes")
  38670. },
  38671. {
  38672. name: "Universe Atoms",
  38673. height: math.unit(1.829e9, "universes")
  38674. },
  38675. {
  38676. name: "Light Multiversal",
  38677. height: math.unit(4, "multiverses")
  38678. },
  38679. {
  38680. name: "Multiverse Atoms",
  38681. height: math.unit(1.829e9, "multiverses")
  38682. },
  38683. {
  38684. name: "Nigh-Omnipresence",
  38685. height: math.unit(8e261, "multiverses")
  38686. },
  38687. ]
  38688. ))
  38689. characterMakers.push(() => makeCharacter(
  38690. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38691. {
  38692. front: {
  38693. height: math.unit(10, "feet"),
  38694. weight: math.unit(1500, "lb"),
  38695. name: "Front",
  38696. image: {
  38697. source: "./media/characters/miles-thestia/front.svg",
  38698. extra: 1812/1727,
  38699. bottom: 86/1898
  38700. }
  38701. },
  38702. back: {
  38703. height: math.unit(10, "feet"),
  38704. weight: math.unit(1500, "lb"),
  38705. name: "Back",
  38706. image: {
  38707. source: "./media/characters/miles-thestia/back.svg",
  38708. extra: 1799/1690,
  38709. bottom: 47/1846
  38710. }
  38711. },
  38712. frontNsfw: {
  38713. height: math.unit(10, "feet"),
  38714. weight: math.unit(1500, "lb"),
  38715. name: "Front (NSFW)",
  38716. image: {
  38717. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38718. extra: 1812/1727,
  38719. bottom: 86/1898
  38720. }
  38721. },
  38722. },
  38723. [
  38724. {
  38725. name: "Mini-Macro",
  38726. height: math.unit(10, "feet"),
  38727. default: true
  38728. },
  38729. ]
  38730. ))
  38731. characterMakers.push(() => makeCharacter(
  38732. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38733. {
  38734. front: {
  38735. height: math.unit(25, "feet"),
  38736. name: "Front",
  38737. image: {
  38738. source: "./media/characters/titan-s-wulf/front.svg",
  38739. extra: 1560/1484,
  38740. bottom: 76/1636
  38741. }
  38742. },
  38743. },
  38744. [
  38745. {
  38746. name: "Smallest",
  38747. height: math.unit(25, "feet"),
  38748. default: true
  38749. },
  38750. {
  38751. name: "Normal",
  38752. height: math.unit(200, "feet")
  38753. },
  38754. {
  38755. name: "Macro",
  38756. height: math.unit(200000, "feet")
  38757. },
  38758. {
  38759. name: "Multiversal Original",
  38760. height: math.unit(10000, "multiverses")
  38761. },
  38762. ]
  38763. ))
  38764. characterMakers.push(() => makeCharacter(
  38765. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38766. {
  38767. front: {
  38768. height: math.unit(8, "feet"),
  38769. weight: math.unit(553, "lb"),
  38770. name: "Front",
  38771. image: {
  38772. source: "./media/characters/tawendeh/front.svg",
  38773. extra: 2365/2268,
  38774. bottom: 83/2448
  38775. }
  38776. },
  38777. frontClothed: {
  38778. height: math.unit(8, "feet"),
  38779. weight: math.unit(553, "lb"),
  38780. name: "Front (Clothed)",
  38781. image: {
  38782. source: "./media/characters/tawendeh/front-clothed.svg",
  38783. extra: 2365/2268,
  38784. bottom: 83/2448
  38785. }
  38786. },
  38787. back: {
  38788. height: math.unit(8, "feet"),
  38789. weight: math.unit(553, "lb"),
  38790. name: "Back",
  38791. image: {
  38792. source: "./media/characters/tawendeh/back.svg",
  38793. extra: 2397/2294,
  38794. bottom: 42/2439
  38795. }
  38796. },
  38797. },
  38798. [
  38799. {
  38800. name: "Mortal Interaction",
  38801. height: math.unit(8, "feet"),
  38802. default: true
  38803. },
  38804. {
  38805. name: "Giant",
  38806. height: math.unit(80, "feet")
  38807. },
  38808. {
  38809. name: "Macro",
  38810. height: math.unit(800, "feet")
  38811. },
  38812. {
  38813. name: "Megamacro",
  38814. height: math.unit(8000, "feet")
  38815. },
  38816. {
  38817. name: "City-Crushing",
  38818. height: math.unit(24000, "feet")
  38819. },
  38820. {
  38821. name: "Mountain-Mashing",
  38822. height: math.unit(80000, "feet")
  38823. },
  38824. {
  38825. name: "Nation Nemesis",
  38826. height: math.unit(8e6, "feet")
  38827. },
  38828. {
  38829. name: "Continent Cracker",
  38830. height: math.unit(24e6, "feet")
  38831. },
  38832. {
  38833. name: "Earth-Eclipsing",
  38834. height: math.unit(2.4e8, "feet")
  38835. },
  38836. {
  38837. name: "Gas Giant Gulper",
  38838. height: math.unit(2.4e9, "feet")
  38839. },
  38840. {
  38841. name: "Sol-Swallowing",
  38842. height: math.unit(8e10, "feet")
  38843. },
  38844. {
  38845. name: "Galaxy Gulper",
  38846. height: math.unit(8, "galaxies")
  38847. },
  38848. {
  38849. name: "Cosmos Churner",
  38850. height: math.unit(8, "universes")
  38851. },
  38852. {
  38853. name: "Omnipotent Otter",
  38854. height: math.unit(80, "universes")
  38855. },
  38856. ]
  38857. ))
  38858. characterMakers.push(() => makeCharacter(
  38859. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38860. {
  38861. front: {
  38862. height: math.unit(2.6, "meters"),
  38863. weight: math.unit(900, "kg"),
  38864. name: "Front",
  38865. image: {
  38866. source: "./media/characters/neesha/front.svg",
  38867. extra: 1803/1653,
  38868. bottom: 128/1931
  38869. }
  38870. },
  38871. },
  38872. [
  38873. {
  38874. name: "Normal",
  38875. height: math.unit(2.6, "meters"),
  38876. default: true
  38877. },
  38878. {
  38879. name: "Macro",
  38880. height: math.unit(50, "meters")
  38881. },
  38882. ]
  38883. ))
  38884. characterMakers.push(() => makeCharacter(
  38885. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38886. {
  38887. front: {
  38888. height: math.unit(5, "feet"),
  38889. weight: math.unit(185, "lb"),
  38890. name: "Front",
  38891. image: {
  38892. source: "./media/characters/kyera/front.svg",
  38893. extra: 1875/1790,
  38894. bottom: 96/1971
  38895. }
  38896. },
  38897. },
  38898. [
  38899. {
  38900. name: "Normal",
  38901. height: math.unit(5, "feet"),
  38902. default: true
  38903. },
  38904. ]
  38905. ))
  38906. characterMakers.push(() => makeCharacter(
  38907. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38908. {
  38909. front: {
  38910. height: math.unit(7 + 6/12, "feet"),
  38911. weight: math.unit(540, "lb"),
  38912. name: "Front",
  38913. image: {
  38914. source: "./media/characters/yuko/front.svg",
  38915. extra: 1282/1222,
  38916. bottom: 101/1383
  38917. }
  38918. },
  38919. frontClothed: {
  38920. height: math.unit(7 + 6/12, "feet"),
  38921. weight: math.unit(540, "lb"),
  38922. name: "Front (Clothed)",
  38923. image: {
  38924. source: "./media/characters/yuko/front-clothed.svg",
  38925. extra: 1282/1222,
  38926. bottom: 101/1383
  38927. }
  38928. },
  38929. },
  38930. [
  38931. {
  38932. name: "Normal",
  38933. height: math.unit(7 + 6/12, "feet"),
  38934. default: true
  38935. },
  38936. {
  38937. name: "Macro",
  38938. height: math.unit(26 + 9/12, "feet")
  38939. },
  38940. {
  38941. name: "Megamacro",
  38942. height: math.unit(300, "feet")
  38943. },
  38944. {
  38945. name: "Gigamacro",
  38946. height: math.unit(5000, "feet")
  38947. },
  38948. {
  38949. name: "Planetary",
  38950. height: math.unit(10000, "miles")
  38951. },
  38952. ]
  38953. ))
  38954. characterMakers.push(() => makeCharacter(
  38955. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38956. {
  38957. front: {
  38958. height: math.unit(8 + 2/12, "feet"),
  38959. weight: math.unit(600, "lb"),
  38960. name: "Front",
  38961. image: {
  38962. source: "./media/characters/deam-nitrel/front.svg",
  38963. extra: 1308/1234,
  38964. bottom: 125/1433
  38965. }
  38966. },
  38967. },
  38968. [
  38969. {
  38970. name: "Normal",
  38971. height: math.unit(8 + 2/12, "feet"),
  38972. default: true
  38973. },
  38974. ]
  38975. ))
  38976. characterMakers.push(() => makeCharacter(
  38977. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38978. {
  38979. front: {
  38980. height: math.unit(6.1, "feet"),
  38981. weight: math.unit(180, "lb"),
  38982. name: "Front",
  38983. image: {
  38984. source: "./media/characters/skyress/front.svg",
  38985. extra: 1045/915,
  38986. bottom: 28/1073
  38987. }
  38988. },
  38989. maw: {
  38990. height: math.unit(1, "feet"),
  38991. name: "Maw",
  38992. image: {
  38993. source: "./media/characters/skyress/maw.svg"
  38994. }
  38995. },
  38996. },
  38997. [
  38998. {
  38999. name: "Normal",
  39000. height: math.unit(6.1, "feet"),
  39001. default: true
  39002. },
  39003. {
  39004. name: "Macro",
  39005. height: math.unit(200, "feet")
  39006. },
  39007. ]
  39008. ))
  39009. characterMakers.push(() => makeCharacter(
  39010. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39011. {
  39012. front: {
  39013. height: math.unit(4 + 2/12, "feet"),
  39014. weight: math.unit(40, "kg"),
  39015. name: "Front",
  39016. image: {
  39017. source: "./media/characters/amethyst-jones/front.svg",
  39018. extra: 1220/1150,
  39019. bottom: 101/1321
  39020. }
  39021. },
  39022. },
  39023. [
  39024. {
  39025. name: "Normal",
  39026. height: math.unit(4 + 2/12, "feet"),
  39027. default: true
  39028. },
  39029. ]
  39030. ))
  39031. characterMakers.push(() => makeCharacter(
  39032. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39033. {
  39034. front: {
  39035. height: math.unit(1.7, "m"),
  39036. weight: math.unit(135, "lb"),
  39037. name: "Front",
  39038. image: {
  39039. source: "./media/characters/jade/front.svg",
  39040. extra: 1818/1767,
  39041. bottom: 32/1850
  39042. }
  39043. },
  39044. back: {
  39045. height: math.unit(1.7, "m"),
  39046. weight: math.unit(135, "lb"),
  39047. name: "Back",
  39048. image: {
  39049. source: "./media/characters/jade/back.svg",
  39050. extra: 1869/1809,
  39051. bottom: 35/1904
  39052. }
  39053. },
  39054. hand: {
  39055. height: math.unit(0.24, "m"),
  39056. name: "Hand",
  39057. image: {
  39058. source: "./media/characters/jade/hand.svg"
  39059. }
  39060. },
  39061. foot: {
  39062. height: math.unit(0.263, "m"),
  39063. name: "Foot",
  39064. image: {
  39065. source: "./media/characters/jade/foot.svg"
  39066. }
  39067. },
  39068. dick: {
  39069. height: math.unit(0.47, "m"),
  39070. name: "Dick",
  39071. image: {
  39072. source: "./media/characters/jade/dick.svg"
  39073. }
  39074. },
  39075. },
  39076. [
  39077. {
  39078. name: "Micro",
  39079. height: math.unit(22, "cm")
  39080. },
  39081. {
  39082. name: "Normal",
  39083. height: math.unit(1.7, "m"),
  39084. default: true
  39085. },
  39086. {
  39087. name: "Macro",
  39088. height: math.unit(152, "m")
  39089. },
  39090. ]
  39091. ))
  39092. characterMakers.push(() => makeCharacter(
  39093. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39094. {
  39095. front: {
  39096. height: math.unit(100, "miles"),
  39097. weight: math.unit(20000, "tons"),
  39098. name: "Front",
  39099. image: {
  39100. source: "./media/characters/cookie/front.svg",
  39101. extra: 1125/1070,
  39102. bottom: 30/1155
  39103. }
  39104. },
  39105. },
  39106. [
  39107. {
  39108. name: "Big",
  39109. height: math.unit(50, "feet")
  39110. },
  39111. {
  39112. name: "Macro",
  39113. height: math.unit(100, "miles"),
  39114. default: true
  39115. },
  39116. {
  39117. name: "Megamacro",
  39118. height: math.unit(90000, "miles")
  39119. },
  39120. ]
  39121. ))
  39122. characterMakers.push(() => makeCharacter(
  39123. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39124. {
  39125. front: {
  39126. height: math.unit(6, "feet"),
  39127. weight: math.unit(145, "lb"),
  39128. name: "Front",
  39129. image: {
  39130. source: "./media/characters/farzian/front.svg",
  39131. extra: 1902/1693,
  39132. bottom: 108/2010
  39133. }
  39134. },
  39135. },
  39136. [
  39137. {
  39138. name: "Macro",
  39139. height: math.unit(500, "feet"),
  39140. default: true
  39141. },
  39142. ]
  39143. ))
  39144. characterMakers.push(() => makeCharacter(
  39145. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39146. {
  39147. front: {
  39148. height: math.unit(3 + 6/12, "feet"),
  39149. weight: math.unit(50, "lb"),
  39150. name: "Front",
  39151. image: {
  39152. source: "./media/characters/kimberly-tilson/front.svg",
  39153. extra: 1400/1322,
  39154. bottom: 36/1436
  39155. }
  39156. },
  39157. back: {
  39158. height: math.unit(3 + 6/12, "feet"),
  39159. weight: math.unit(50, "lb"),
  39160. name: "Back",
  39161. image: {
  39162. source: "./media/characters/kimberly-tilson/back.svg",
  39163. extra: 1370/1307,
  39164. bottom: 20/1390
  39165. }
  39166. },
  39167. },
  39168. [
  39169. {
  39170. name: "Normal",
  39171. height: math.unit(3 + 6/12, "feet"),
  39172. default: true
  39173. },
  39174. ]
  39175. ))
  39176. characterMakers.push(() => makeCharacter(
  39177. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39178. {
  39179. front: {
  39180. height: math.unit(1148, "feet"),
  39181. weight: math.unit(34057, "lb"),
  39182. name: "Front",
  39183. image: {
  39184. source: "./media/characters/harthos/front.svg",
  39185. extra: 1391/1339,
  39186. bottom: 13/1404
  39187. }
  39188. },
  39189. },
  39190. [
  39191. {
  39192. name: "Macro",
  39193. height: math.unit(1148, "feet"),
  39194. default: true
  39195. },
  39196. ]
  39197. ))
  39198. characterMakers.push(() => makeCharacter(
  39199. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39200. {
  39201. front: {
  39202. height: math.unit(15, "feet"),
  39203. name: "Front",
  39204. image: {
  39205. source: "./media/characters/hypatia/front.svg",
  39206. extra: 1653/1591,
  39207. bottom: 79/1732
  39208. }
  39209. },
  39210. },
  39211. [
  39212. {
  39213. name: "Normal",
  39214. height: math.unit(15, "feet")
  39215. },
  39216. {
  39217. name: "Small",
  39218. height: math.unit(300, "feet")
  39219. },
  39220. {
  39221. name: "Macro",
  39222. height: math.unit(2500, "feet"),
  39223. default: true
  39224. },
  39225. {
  39226. name: "Mega Macro",
  39227. height: math.unit(1500, "miles")
  39228. },
  39229. {
  39230. name: "Giga Macro",
  39231. height: math.unit(1.5e6, "miles")
  39232. },
  39233. ]
  39234. ))
  39235. characterMakers.push(() => makeCharacter(
  39236. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39237. {
  39238. front: {
  39239. height: math.unit(6, "feet"),
  39240. weight: math.unit(200, "lb"),
  39241. name: "Front",
  39242. image: {
  39243. source: "./media/characters/wulver/front.svg",
  39244. extra: 1724/1632,
  39245. bottom: 130/1854
  39246. }
  39247. },
  39248. frontNsfw: {
  39249. height: math.unit(6, "feet"),
  39250. weight: math.unit(200, "lb"),
  39251. name: "Front (NSFW)",
  39252. image: {
  39253. source: "./media/characters/wulver/front-nsfw.svg",
  39254. extra: 1724/1632,
  39255. bottom: 130/1854
  39256. }
  39257. },
  39258. },
  39259. [
  39260. {
  39261. name: "Human-Sized",
  39262. height: math.unit(6, "feet")
  39263. },
  39264. {
  39265. name: "Normal",
  39266. height: math.unit(4, "meters"),
  39267. default: true
  39268. },
  39269. {
  39270. name: "Large",
  39271. height: math.unit(6, "m")
  39272. },
  39273. ]
  39274. ))
  39275. characterMakers.push(() => makeCharacter(
  39276. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39277. {
  39278. front: {
  39279. height: math.unit(7, "feet"),
  39280. name: "Front",
  39281. image: {
  39282. source: "./media/characters/maru/front.svg",
  39283. extra: 1595/1570,
  39284. bottom: 0/1595
  39285. }
  39286. },
  39287. },
  39288. [
  39289. {
  39290. name: "Normal",
  39291. height: math.unit(7, "feet"),
  39292. default: true
  39293. },
  39294. {
  39295. name: "Macro",
  39296. height: math.unit(700, "feet")
  39297. },
  39298. {
  39299. name: "Mega Macro",
  39300. height: math.unit(25, "miles")
  39301. },
  39302. ]
  39303. ))
  39304. characterMakers.push(() => makeCharacter(
  39305. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39306. {
  39307. front: {
  39308. height: math.unit(6, "feet"),
  39309. weight: math.unit(170, "lb"),
  39310. name: "Front",
  39311. image: {
  39312. source: "./media/characters/xenon/front.svg",
  39313. extra: 1376/1305,
  39314. bottom: 56/1432
  39315. }
  39316. },
  39317. back: {
  39318. height: math.unit(6, "feet"),
  39319. weight: math.unit(170, "lb"),
  39320. name: "Back",
  39321. image: {
  39322. source: "./media/characters/xenon/back.svg",
  39323. extra: 1328/1259,
  39324. bottom: 95/1423
  39325. }
  39326. },
  39327. maw: {
  39328. height: math.unit(0.52, "feet"),
  39329. name: "Maw",
  39330. image: {
  39331. source: "./media/characters/xenon/maw.svg"
  39332. }
  39333. },
  39334. hand: {
  39335. height: math.unit(0.82, "feet"),
  39336. name: "Hand",
  39337. image: {
  39338. source: "./media/characters/xenon/hand.svg"
  39339. }
  39340. },
  39341. foot: {
  39342. height: math.unit(1.13, "feet"),
  39343. name: "Foot",
  39344. image: {
  39345. source: "./media/characters/xenon/foot.svg"
  39346. }
  39347. },
  39348. },
  39349. [
  39350. {
  39351. name: "Micro",
  39352. height: math.unit(0.8, "inches")
  39353. },
  39354. {
  39355. name: "Normal",
  39356. height: math.unit(6, "feet")
  39357. },
  39358. {
  39359. name: "Macro",
  39360. height: math.unit(50, "feet"),
  39361. default: true
  39362. },
  39363. {
  39364. name: "Macro+",
  39365. height: math.unit(250, "feet")
  39366. },
  39367. {
  39368. name: "Megamacro",
  39369. height: math.unit(1500, "feet")
  39370. },
  39371. ]
  39372. ))
  39373. characterMakers.push(() => makeCharacter(
  39374. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39375. {
  39376. front: {
  39377. height: math.unit(7 + 5/12, "feet"),
  39378. name: "Front",
  39379. image: {
  39380. source: "./media/characters/zane/front.svg",
  39381. extra: 1260/1203,
  39382. bottom: 94/1354
  39383. }
  39384. },
  39385. back: {
  39386. height: math.unit(5.05, "feet"),
  39387. name: "Back",
  39388. image: {
  39389. source: "./media/characters/zane/back.svg",
  39390. extra: 893/829,
  39391. bottom: 30/923
  39392. }
  39393. },
  39394. werewolf: {
  39395. height: math.unit(11, "feet"),
  39396. name: "Werewolf",
  39397. image: {
  39398. source: "./media/characters/zane/werewolf.svg",
  39399. extra: 1383/1323,
  39400. bottom: 89/1472
  39401. }
  39402. },
  39403. foot: {
  39404. height: math.unit(1.46, "feet"),
  39405. name: "Foot",
  39406. image: {
  39407. source: "./media/characters/zane/foot.svg"
  39408. }
  39409. },
  39410. footFront: {
  39411. height: math.unit(0.784, "feet"),
  39412. name: "Foot (Front)",
  39413. image: {
  39414. source: "./media/characters/zane/foot-front.svg"
  39415. }
  39416. },
  39417. dick: {
  39418. height: math.unit(1.95, "feet"),
  39419. name: "Dick",
  39420. image: {
  39421. source: "./media/characters/zane/dick.svg"
  39422. }
  39423. },
  39424. dickWerewolf: {
  39425. height: math.unit(3.77, "feet"),
  39426. name: "Dick (Werewolf)",
  39427. image: {
  39428. source: "./media/characters/zane/dick.svg"
  39429. }
  39430. },
  39431. },
  39432. [
  39433. {
  39434. name: "Normal",
  39435. height: math.unit(7 + 5/12, "feet"),
  39436. default: true
  39437. },
  39438. ]
  39439. ))
  39440. characterMakers.push(() => makeCharacter(
  39441. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39442. {
  39443. front: {
  39444. height: math.unit(6 + 2/12, "feet"),
  39445. weight: math.unit(284, "lb"),
  39446. name: "Front",
  39447. image: {
  39448. source: "./media/characters/benni-desparque/front.svg",
  39449. extra: 1353/1126,
  39450. bottom: 69/1422
  39451. }
  39452. },
  39453. },
  39454. [
  39455. {
  39456. name: "Civilian",
  39457. height: math.unit(6 + 2/12, "feet")
  39458. },
  39459. {
  39460. name: "Normal",
  39461. height: math.unit(98, "feet"),
  39462. default: true
  39463. },
  39464. {
  39465. name: "Kaiju Fighter",
  39466. height: math.unit(268, "feet")
  39467. },
  39468. ]
  39469. ))
  39470. characterMakers.push(() => makeCharacter(
  39471. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39472. {
  39473. front: {
  39474. height: math.unit(5, "feet"),
  39475. weight: math.unit(105, "lb"),
  39476. name: "Front",
  39477. image: {
  39478. source: "./media/characters/maxine/front.svg",
  39479. extra: 1386/1250,
  39480. bottom: 71/1457
  39481. }
  39482. },
  39483. },
  39484. [
  39485. {
  39486. name: "Normal",
  39487. height: math.unit(5, "feet"),
  39488. default: true
  39489. },
  39490. ]
  39491. ))
  39492. characterMakers.push(() => makeCharacter(
  39493. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39494. {
  39495. front: {
  39496. height: math.unit(11 + 7/12, "feet"),
  39497. weight: math.unit(9576, "lb"),
  39498. name: "Front",
  39499. image: {
  39500. source: "./media/characters/scaly/front.svg",
  39501. extra: 888/867,
  39502. bottom: 36/924
  39503. }
  39504. },
  39505. },
  39506. [
  39507. {
  39508. name: "Normal",
  39509. height: math.unit(11 + 7/12, "feet"),
  39510. default: true
  39511. },
  39512. ]
  39513. ))
  39514. characterMakers.push(() => makeCharacter(
  39515. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39516. {
  39517. front: {
  39518. height: math.unit(9, "inches"),
  39519. name: "Front",
  39520. image: {
  39521. source: "./media/characters/saelria/front.svg",
  39522. extra: 662/621,
  39523. bottom: 12/674
  39524. }
  39525. },
  39526. },
  39527. [
  39528. {
  39529. name: "Tiny",
  39530. height: math.unit(9, "inches"),
  39531. default: true
  39532. },
  39533. ]
  39534. ))
  39535. characterMakers.push(() => makeCharacter(
  39536. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39537. {
  39538. front: {
  39539. height: math.unit(80, "meters"),
  39540. weight: math.unit(7000, "tonnes"),
  39541. name: "Front",
  39542. image: {
  39543. source: "./media/characters/tef/front.svg",
  39544. extra: 2036/1991,
  39545. bottom: 54/2090
  39546. }
  39547. },
  39548. back: {
  39549. height: math.unit(80, "meters"),
  39550. weight: math.unit(7000, "tonnes"),
  39551. name: "Back",
  39552. image: {
  39553. source: "./media/characters/tef/back.svg",
  39554. extra: 2036/1991,
  39555. bottom: 54/2090
  39556. }
  39557. },
  39558. },
  39559. [
  39560. {
  39561. name: "Macro",
  39562. height: math.unit(80, "meters"),
  39563. default: true
  39564. },
  39565. ]
  39566. ))
  39567. characterMakers.push(() => makeCharacter(
  39568. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39569. {
  39570. front: {
  39571. height: math.unit(13, "feet"),
  39572. weight: math.unit(6, "tons"),
  39573. name: "Front",
  39574. image: {
  39575. source: "./media/characters/rover/front.svg",
  39576. extra: 1233/1156,
  39577. bottom: 50/1283
  39578. }
  39579. },
  39580. back: {
  39581. height: math.unit(13, "feet"),
  39582. weight: math.unit(6, "tons"),
  39583. name: "Back",
  39584. image: {
  39585. source: "./media/characters/rover/back.svg",
  39586. extra: 1327/1258,
  39587. bottom: 39/1366
  39588. }
  39589. },
  39590. },
  39591. [
  39592. {
  39593. name: "Normal",
  39594. height: math.unit(13, "feet"),
  39595. default: true
  39596. },
  39597. {
  39598. name: "Macro",
  39599. height: math.unit(1300, "feet")
  39600. },
  39601. {
  39602. name: "Megamacro",
  39603. height: math.unit(1300, "miles")
  39604. },
  39605. {
  39606. name: "Gigamacro",
  39607. height: math.unit(1300000, "miles")
  39608. },
  39609. ]
  39610. ))
  39611. characterMakers.push(() => makeCharacter(
  39612. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39613. {
  39614. front: {
  39615. height: math.unit(6, "feet"),
  39616. weight: math.unit(150, "lb"),
  39617. name: "Front",
  39618. image: {
  39619. source: "./media/characters/ariz/front.svg",
  39620. extra: 1401/1346,
  39621. bottom: 5/1406
  39622. }
  39623. },
  39624. },
  39625. [
  39626. {
  39627. name: "Normal",
  39628. height: math.unit(10, "feet"),
  39629. default: true
  39630. },
  39631. ]
  39632. ))
  39633. characterMakers.push(() => makeCharacter(
  39634. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39635. {
  39636. front: {
  39637. height: math.unit(6, "feet"),
  39638. weight: math.unit(140, "lb"),
  39639. name: "Front",
  39640. image: {
  39641. source: "./media/characters/sigrun/front.svg",
  39642. extra: 1418/1359,
  39643. bottom: 27/1445
  39644. }
  39645. },
  39646. },
  39647. [
  39648. {
  39649. name: "Macro",
  39650. height: math.unit(35, "feet"),
  39651. default: true
  39652. },
  39653. ]
  39654. ))
  39655. characterMakers.push(() => makeCharacter(
  39656. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39657. {
  39658. front: {
  39659. height: math.unit(6, "feet"),
  39660. weight: math.unit(150, "lb"),
  39661. name: "Front",
  39662. image: {
  39663. source: "./media/characters/numin/front.svg",
  39664. extra: 1433/1388,
  39665. bottom: 12/1445
  39666. }
  39667. },
  39668. },
  39669. [
  39670. {
  39671. name: "Macro",
  39672. height: math.unit(21.5, "km"),
  39673. default: true
  39674. },
  39675. ]
  39676. ))
  39677. characterMakers.push(() => makeCharacter(
  39678. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39679. {
  39680. front: {
  39681. height: math.unit(6, "feet"),
  39682. weight: math.unit(463, "lb"),
  39683. name: "Front",
  39684. image: {
  39685. source: "./media/characters/melwa/front.svg",
  39686. extra: 1307/1248,
  39687. bottom: 93/1400
  39688. }
  39689. },
  39690. },
  39691. [
  39692. {
  39693. name: "Macro",
  39694. height: math.unit(50, "meters"),
  39695. default: true
  39696. },
  39697. ]
  39698. ))
  39699. characterMakers.push(() => makeCharacter(
  39700. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39701. {
  39702. front: {
  39703. height: math.unit(325, "feet"),
  39704. name: "Front",
  39705. image: {
  39706. source: "./media/characters/zorkaiju/front.svg",
  39707. extra: 1955/1814,
  39708. bottom: 40/1995
  39709. }
  39710. },
  39711. frontExtended: {
  39712. height: math.unit(325, "feet"),
  39713. name: "Front (Extended)",
  39714. image: {
  39715. source: "./media/characters/zorkaiju/front-extended.svg",
  39716. extra: 1955/1814,
  39717. bottom: 40/1995
  39718. }
  39719. },
  39720. side: {
  39721. height: math.unit(325, "feet"),
  39722. name: "Side",
  39723. image: {
  39724. source: "./media/characters/zorkaiju/side.svg",
  39725. extra: 1495/1396,
  39726. bottom: 17/1512
  39727. }
  39728. },
  39729. sideExtended: {
  39730. height: math.unit(325, "feet"),
  39731. name: "Side (Extended)",
  39732. image: {
  39733. source: "./media/characters/zorkaiju/side-extended.svg",
  39734. extra: 1495/1396,
  39735. bottom: 17/1512
  39736. }
  39737. },
  39738. back: {
  39739. height: math.unit(325, "feet"),
  39740. name: "Back",
  39741. image: {
  39742. source: "./media/characters/zorkaiju/back.svg",
  39743. extra: 1959/1821,
  39744. bottom: 31/1990
  39745. }
  39746. },
  39747. backExtended: {
  39748. height: math.unit(325, "feet"),
  39749. name: "Back (Extended)",
  39750. image: {
  39751. source: "./media/characters/zorkaiju/back-extended.svg",
  39752. extra: 1959/1821,
  39753. bottom: 31/1990
  39754. }
  39755. },
  39756. hand: {
  39757. height: math.unit(58.4, "feet"),
  39758. name: "Hand",
  39759. image: {
  39760. source: "./media/characters/zorkaiju/hand.svg"
  39761. }
  39762. },
  39763. handExtended: {
  39764. height: math.unit(61.4, "feet"),
  39765. name: "Hand (Extended)",
  39766. image: {
  39767. source: "./media/characters/zorkaiju/hand-extended.svg"
  39768. }
  39769. },
  39770. foot: {
  39771. height: math.unit(95, "feet"),
  39772. name: "Foot",
  39773. image: {
  39774. source: "./media/characters/zorkaiju/foot.svg"
  39775. }
  39776. },
  39777. leftArm: {
  39778. height: math.unit(59, "feet"),
  39779. name: "Left Arm",
  39780. image: {
  39781. source: "./media/characters/zorkaiju/left-arm.svg"
  39782. }
  39783. },
  39784. rightArm: {
  39785. height: math.unit(59, "feet"),
  39786. name: "Right Arm",
  39787. image: {
  39788. source: "./media/characters/zorkaiju/right-arm.svg"
  39789. }
  39790. },
  39791. tail: {
  39792. height: math.unit(104, "feet"),
  39793. name: "Tail",
  39794. image: {
  39795. source: "./media/characters/zorkaiju/tail.svg"
  39796. }
  39797. },
  39798. tailExtended: {
  39799. height: math.unit(104, "feet"),
  39800. name: "Tail (Extended)",
  39801. image: {
  39802. source: "./media/characters/zorkaiju/tail-extended.svg"
  39803. }
  39804. },
  39805. tailBottom: {
  39806. height: math.unit(104, "feet"),
  39807. name: "Tail Bottom",
  39808. image: {
  39809. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39810. }
  39811. },
  39812. crystal: {
  39813. height: math.unit(27.54, "feet"),
  39814. name: "Crystal",
  39815. image: {
  39816. source: "./media/characters/zorkaiju/crystal.svg"
  39817. }
  39818. },
  39819. },
  39820. [
  39821. {
  39822. name: "Kaiju",
  39823. height: math.unit(325, "feet"),
  39824. default: true
  39825. },
  39826. ]
  39827. ))
  39828. characterMakers.push(() => makeCharacter(
  39829. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39830. {
  39831. front: {
  39832. height: math.unit(6 + 1/12, "feet"),
  39833. weight: math.unit(115, "lb"),
  39834. name: "Front",
  39835. image: {
  39836. source: "./media/characters/bailey-belfry/front.svg",
  39837. extra: 1240/1121,
  39838. bottom: 101/1341
  39839. }
  39840. },
  39841. },
  39842. [
  39843. {
  39844. name: "Normal",
  39845. height: math.unit(6 + 1/12, "feet"),
  39846. default: true
  39847. },
  39848. ]
  39849. ))
  39850. characterMakers.push(() => makeCharacter(
  39851. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39852. {
  39853. side: {
  39854. height: math.unit(4, "meters"),
  39855. weight: math.unit(250, "kg"),
  39856. name: "Side",
  39857. image: {
  39858. source: "./media/characters/blacky/side.svg",
  39859. extra: 1027/919,
  39860. bottom: 43/1070
  39861. }
  39862. },
  39863. maw: {
  39864. height: math.unit(1, "meters"),
  39865. name: "Maw",
  39866. image: {
  39867. source: "./media/characters/blacky/maw.svg"
  39868. }
  39869. },
  39870. paw: {
  39871. height: math.unit(1, "meters"),
  39872. name: "Paw",
  39873. image: {
  39874. source: "./media/characters/blacky/paw.svg"
  39875. }
  39876. },
  39877. },
  39878. [
  39879. {
  39880. name: "Normal",
  39881. height: math.unit(4, "meters"),
  39882. default: true
  39883. },
  39884. ]
  39885. ))
  39886. characterMakers.push(() => makeCharacter(
  39887. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39888. {
  39889. front: {
  39890. height: math.unit(170, "cm"),
  39891. weight: math.unit(66, "kg"),
  39892. name: "Front",
  39893. image: {
  39894. source: "./media/characters/thux-ei/front.svg",
  39895. extra: 1109/1011,
  39896. bottom: 8/1117
  39897. }
  39898. },
  39899. },
  39900. [
  39901. {
  39902. name: "Normal",
  39903. height: math.unit(170, "cm"),
  39904. default: true
  39905. },
  39906. ]
  39907. ))
  39908. characterMakers.push(() => makeCharacter(
  39909. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39910. {
  39911. front: {
  39912. height: math.unit(5, "feet"),
  39913. weight: math.unit(120, "lb"),
  39914. name: "Front",
  39915. image: {
  39916. source: "./media/characters/roxanne-voltaire/front.svg",
  39917. extra: 1901/1779,
  39918. bottom: 53/1954
  39919. }
  39920. },
  39921. },
  39922. [
  39923. {
  39924. name: "Normal",
  39925. height: math.unit(5, "feet"),
  39926. default: true
  39927. },
  39928. {
  39929. name: "Giant",
  39930. height: math.unit(50, "feet")
  39931. },
  39932. {
  39933. name: "Titan",
  39934. height: math.unit(500, "feet")
  39935. },
  39936. {
  39937. name: "Macro",
  39938. height: math.unit(5000, "feet")
  39939. },
  39940. {
  39941. name: "Megamacro",
  39942. height: math.unit(50000, "feet")
  39943. },
  39944. {
  39945. name: "Gigamacro",
  39946. height: math.unit(500000, "feet")
  39947. },
  39948. {
  39949. name: "Teramacro",
  39950. height: math.unit(5e6, "feet")
  39951. },
  39952. ]
  39953. ))
  39954. characterMakers.push(() => makeCharacter(
  39955. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39956. {
  39957. front: {
  39958. height: math.unit(6 + 2/12, "feet"),
  39959. name: "Front",
  39960. image: {
  39961. source: "./media/characters/squeaks/front.svg",
  39962. extra: 1823/1768,
  39963. bottom: 138/1961
  39964. }
  39965. },
  39966. },
  39967. [
  39968. {
  39969. name: "Micro",
  39970. height: math.unit(0.5, "inches")
  39971. },
  39972. {
  39973. name: "Normal",
  39974. height: math.unit(6 + 2/12, "feet"),
  39975. default: true
  39976. },
  39977. {
  39978. name: "Macro",
  39979. height: math.unit(600, "feet")
  39980. },
  39981. ]
  39982. ))
  39983. characterMakers.push(() => makeCharacter(
  39984. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39985. {
  39986. front: {
  39987. height: math.unit(1.72, "meters"),
  39988. name: "Front",
  39989. image: {
  39990. source: "./media/characters/archinger/front.svg",
  39991. extra: 1861/1675,
  39992. bottom: 125/1986
  39993. }
  39994. },
  39995. back: {
  39996. height: math.unit(1.72, "meters"),
  39997. name: "Back",
  39998. image: {
  39999. source: "./media/characters/archinger/back.svg",
  40000. extra: 1844/1701,
  40001. bottom: 104/1948
  40002. }
  40003. },
  40004. cock: {
  40005. height: math.unit(0.59, "feet"),
  40006. name: "Cock",
  40007. image: {
  40008. source: "./media/characters/archinger/cock.svg"
  40009. }
  40010. },
  40011. },
  40012. [
  40013. {
  40014. name: "Normal",
  40015. height: math.unit(1.72, "meters"),
  40016. default: true
  40017. },
  40018. {
  40019. name: "Macro",
  40020. height: math.unit(84, "meters")
  40021. },
  40022. {
  40023. name: "Macro+",
  40024. height: math.unit(112, "meters")
  40025. },
  40026. {
  40027. name: "Macro++",
  40028. height: math.unit(960, "meters")
  40029. },
  40030. {
  40031. name: "Macro+++",
  40032. height: math.unit(4, "km")
  40033. },
  40034. {
  40035. name: "Macro++++",
  40036. height: math.unit(48, "km")
  40037. },
  40038. {
  40039. name: "Macro+++++",
  40040. height: math.unit(4500, "km")
  40041. },
  40042. ]
  40043. ))
  40044. characterMakers.push(() => makeCharacter(
  40045. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40046. {
  40047. front: {
  40048. height: math.unit(5 + 5/12, "feet"),
  40049. name: "Front",
  40050. image: {
  40051. source: "./media/characters/alsnapz/front.svg",
  40052. extra: 1157/1065,
  40053. bottom: 42/1199
  40054. }
  40055. },
  40056. },
  40057. [
  40058. {
  40059. name: "Normal",
  40060. height: math.unit(5 + 5/12, "feet"),
  40061. default: true
  40062. },
  40063. ]
  40064. ))
  40065. characterMakers.push(() => makeCharacter(
  40066. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40067. {
  40068. side: {
  40069. height: math.unit(3.2, "earths"),
  40070. name: "Side",
  40071. image: {
  40072. source: "./media/characters/mag/side.svg",
  40073. extra: 1331/1008,
  40074. bottom: 52/1383
  40075. }
  40076. },
  40077. wing: {
  40078. height: math.unit(1.94, "earths"),
  40079. name: "Wing",
  40080. image: {
  40081. source: "./media/characters/mag/wing.svg"
  40082. }
  40083. },
  40084. dick: {
  40085. height: math.unit(1.8, "earths"),
  40086. name: "Dick",
  40087. image: {
  40088. source: "./media/characters/mag/dick.svg"
  40089. }
  40090. },
  40091. ass: {
  40092. height: math.unit(1.33, "earths"),
  40093. name: "Ass",
  40094. image: {
  40095. source: "./media/characters/mag/ass.svg"
  40096. }
  40097. },
  40098. head: {
  40099. height: math.unit(1.1, "earths"),
  40100. name: "Head",
  40101. image: {
  40102. source: "./media/characters/mag/head.svg"
  40103. }
  40104. },
  40105. maw: {
  40106. height: math.unit(1.62, "earths"),
  40107. name: "Maw",
  40108. image: {
  40109. source: "./media/characters/mag/maw.svg"
  40110. }
  40111. },
  40112. },
  40113. [
  40114. {
  40115. name: "Small",
  40116. height: math.unit(162, "feet")
  40117. },
  40118. {
  40119. name: "Normal",
  40120. height: math.unit(3.2, "earths"),
  40121. default: true
  40122. },
  40123. ]
  40124. ))
  40125. characterMakers.push(() => makeCharacter(
  40126. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40127. {
  40128. front: {
  40129. height: math.unit(512, "feet"),
  40130. weight: math.unit(63509, "tonnes"),
  40131. name: "Front",
  40132. image: {
  40133. source: "./media/characters/vorrel-harroc/front.svg",
  40134. extra: 1075/1063,
  40135. bottom: 62/1137
  40136. }
  40137. },
  40138. },
  40139. [
  40140. {
  40141. name: "Normal",
  40142. height: math.unit(10, "feet")
  40143. },
  40144. {
  40145. name: "Macro",
  40146. height: math.unit(512, "feet"),
  40147. default: true
  40148. },
  40149. {
  40150. name: "Megamacro",
  40151. height: math.unit(256, "miles")
  40152. },
  40153. {
  40154. name: "Gigamacro",
  40155. height: math.unit(4096, "miles")
  40156. },
  40157. ]
  40158. ))
  40159. characterMakers.push(() => makeCharacter(
  40160. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40161. {
  40162. side: {
  40163. height: math.unit(50, "feet"),
  40164. name: "Side",
  40165. image: {
  40166. source: "./media/characters/froimar/side.svg",
  40167. extra: 855/638,
  40168. bottom: 99/954
  40169. }
  40170. },
  40171. },
  40172. [
  40173. {
  40174. name: "Macro",
  40175. height: math.unit(50, "feet"),
  40176. default: true
  40177. },
  40178. ]
  40179. ))
  40180. characterMakers.push(() => makeCharacter(
  40181. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40182. {
  40183. front: {
  40184. height: math.unit(210, "miles"),
  40185. name: "Front",
  40186. image: {
  40187. source: "./media/characters/timothy/front.svg",
  40188. extra: 1007/943,
  40189. bottom: 62/1069
  40190. }
  40191. },
  40192. frontSkirt: {
  40193. height: math.unit(210, "miles"),
  40194. name: "Front (Skirt)",
  40195. image: {
  40196. source: "./media/characters/timothy/front-skirt.svg",
  40197. extra: 1007/943,
  40198. bottom: 62/1069
  40199. }
  40200. },
  40201. frontCoat: {
  40202. height: math.unit(210, "miles"),
  40203. name: "Front (Coat)",
  40204. image: {
  40205. source: "./media/characters/timothy/front-coat.svg",
  40206. extra: 1007/943,
  40207. bottom: 62/1069
  40208. }
  40209. },
  40210. },
  40211. [
  40212. {
  40213. name: "Macro",
  40214. height: math.unit(210, "miles"),
  40215. default: true
  40216. },
  40217. {
  40218. name: "Megamacro",
  40219. height: math.unit(210000, "miles")
  40220. },
  40221. ]
  40222. ))
  40223. characterMakers.push(() => makeCharacter(
  40224. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40225. {
  40226. front: {
  40227. height: math.unit(188, "feet"),
  40228. name: "Front",
  40229. image: {
  40230. source: "./media/characters/pyotr/front.svg",
  40231. extra: 1912/1826,
  40232. bottom: 18/1930
  40233. }
  40234. },
  40235. },
  40236. [
  40237. {
  40238. name: "Macro",
  40239. height: math.unit(188, "feet"),
  40240. default: true
  40241. },
  40242. {
  40243. name: "Megamacro",
  40244. height: math.unit(8, "miles")
  40245. },
  40246. ]
  40247. ))
  40248. characterMakers.push(() => makeCharacter(
  40249. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40250. {
  40251. side: {
  40252. height: math.unit(10, "feet"),
  40253. weight: math.unit(4500, "lb"),
  40254. name: "Side",
  40255. image: {
  40256. source: "./media/characters/ackart/side.svg",
  40257. extra: 1776/1668,
  40258. bottom: 116/1892
  40259. }
  40260. },
  40261. },
  40262. [
  40263. {
  40264. name: "Normal",
  40265. height: math.unit(10, "feet"),
  40266. default: true
  40267. },
  40268. ]
  40269. ))
  40270. characterMakers.push(() => makeCharacter(
  40271. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40272. {
  40273. side: {
  40274. height: math.unit(21, "feet"),
  40275. name: "Side",
  40276. image: {
  40277. source: "./media/characters/nolow/side.svg",
  40278. extra: 1484/1434,
  40279. bottom: 85/1569
  40280. }
  40281. },
  40282. sideErect: {
  40283. height: math.unit(21, "feet"),
  40284. name: "Side-erect",
  40285. image: {
  40286. source: "./media/characters/nolow/side-erect.svg",
  40287. extra: 1484/1434,
  40288. bottom: 85/1569
  40289. }
  40290. },
  40291. },
  40292. [
  40293. {
  40294. name: "Regular",
  40295. height: math.unit(12, "feet")
  40296. },
  40297. {
  40298. name: "Big Chee",
  40299. height: math.unit(21, "feet"),
  40300. default: true
  40301. },
  40302. ]
  40303. ))
  40304. characterMakers.push(() => makeCharacter(
  40305. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40306. {
  40307. front: {
  40308. height: math.unit(7, "feet"),
  40309. weight: math.unit(250, "lb"),
  40310. name: "Front",
  40311. image: {
  40312. source: "./media/characters/nines/front.svg",
  40313. extra: 1741/1607,
  40314. bottom: 41/1782
  40315. }
  40316. },
  40317. side: {
  40318. height: math.unit(7, "feet"),
  40319. weight: math.unit(250, "lb"),
  40320. name: "Side",
  40321. image: {
  40322. source: "./media/characters/nines/side.svg",
  40323. extra: 1854/1735,
  40324. bottom: 93/1947
  40325. }
  40326. },
  40327. back: {
  40328. height: math.unit(7, "feet"),
  40329. weight: math.unit(250, "lb"),
  40330. name: "Back",
  40331. image: {
  40332. source: "./media/characters/nines/back.svg",
  40333. extra: 1748/1615,
  40334. bottom: 20/1768
  40335. }
  40336. },
  40337. },
  40338. [
  40339. {
  40340. name: "Megamacro",
  40341. height: math.unit(99, "km"),
  40342. default: true
  40343. },
  40344. ]
  40345. ))
  40346. characterMakers.push(() => makeCharacter(
  40347. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40348. {
  40349. front: {
  40350. height: math.unit(5 + 10/12, "feet"),
  40351. weight: math.unit(210, "lb"),
  40352. name: "Front",
  40353. image: {
  40354. source: "./media/characters/zenith/front.svg",
  40355. extra: 1531/1452,
  40356. bottom: 198/1729
  40357. }
  40358. },
  40359. back: {
  40360. height: math.unit(5 + 10/12, "feet"),
  40361. weight: math.unit(210, "lb"),
  40362. name: "Back",
  40363. image: {
  40364. source: "./media/characters/zenith/back.svg",
  40365. extra: 1571/1487,
  40366. bottom: 75/1646
  40367. }
  40368. },
  40369. },
  40370. [
  40371. {
  40372. name: "Normal",
  40373. height: math.unit(5 + 10/12, "feet"),
  40374. default: true
  40375. }
  40376. ]
  40377. ))
  40378. characterMakers.push(() => makeCharacter(
  40379. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40380. {
  40381. front: {
  40382. height: math.unit(4, "feet"),
  40383. weight: math.unit(60, "lb"),
  40384. name: "Front",
  40385. image: {
  40386. source: "./media/characters/jasper/front.svg",
  40387. extra: 1450/1379,
  40388. bottom: 19/1469
  40389. }
  40390. },
  40391. },
  40392. [
  40393. {
  40394. name: "Normal",
  40395. height: math.unit(4, "feet"),
  40396. default: true
  40397. },
  40398. ]
  40399. ))
  40400. characterMakers.push(() => makeCharacter(
  40401. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40402. {
  40403. front: {
  40404. height: math.unit(6 + 5/12, "feet"),
  40405. weight: math.unit(290, "lb"),
  40406. name: "Front",
  40407. image: {
  40408. source: "./media/characters/tiberius-thyben/front.svg",
  40409. extra: 757/739,
  40410. bottom: 39/796
  40411. }
  40412. },
  40413. },
  40414. [
  40415. {
  40416. name: "Micro",
  40417. height: math.unit(1.5, "inches")
  40418. },
  40419. {
  40420. name: "Normal",
  40421. height: math.unit(6 + 5/12, "feet"),
  40422. default: true
  40423. },
  40424. {
  40425. name: "Macro",
  40426. height: math.unit(300, "feet")
  40427. },
  40428. ]
  40429. ))
  40430. characterMakers.push(() => makeCharacter(
  40431. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40432. {
  40433. front: {
  40434. height: math.unit(5 + 6/12, "feet"),
  40435. weight: math.unit(60, "kg"),
  40436. name: "Front",
  40437. image: {
  40438. source: "./media/characters/sabre/front.svg",
  40439. extra: 738/671,
  40440. bottom: 27/765
  40441. }
  40442. },
  40443. },
  40444. [
  40445. {
  40446. name: "Teeny",
  40447. height: math.unit(2, "inches")
  40448. },
  40449. {
  40450. name: "Smol",
  40451. height: math.unit(8, "inches")
  40452. },
  40453. {
  40454. name: "Normal",
  40455. height: math.unit(5 + 6/12, "feet"),
  40456. default: true
  40457. },
  40458. {
  40459. name: "Mini-Macro",
  40460. height: math.unit(15, "feet")
  40461. },
  40462. {
  40463. name: "Macro",
  40464. height: math.unit(50, "feet")
  40465. },
  40466. ]
  40467. ))
  40468. characterMakers.push(() => makeCharacter(
  40469. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40470. {
  40471. front: {
  40472. height: math.unit(6 + 4/12, "feet"),
  40473. weight: math.unit(170, "lb"),
  40474. name: "Front",
  40475. image: {
  40476. source: "./media/characters/charlie/front.svg",
  40477. extra: 1348/1228,
  40478. bottom: 15/1363
  40479. }
  40480. },
  40481. },
  40482. [
  40483. {
  40484. name: "Macro",
  40485. height: math.unit(1700, "meters"),
  40486. default: true
  40487. },
  40488. {
  40489. name: "MegaMacro",
  40490. height: math.unit(20400, "meters")
  40491. },
  40492. ]
  40493. ))
  40494. characterMakers.push(() => makeCharacter(
  40495. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40496. {
  40497. front: {
  40498. height: math.unit(6 + 3/12, "feet"),
  40499. weight: math.unit(185, "lb"),
  40500. name: "Front",
  40501. image: {
  40502. source: "./media/characters/susan-grant/front.svg",
  40503. extra: 1351/1327,
  40504. bottom: 26/1377
  40505. }
  40506. },
  40507. },
  40508. [
  40509. {
  40510. name: "Normal",
  40511. height: math.unit(6 + 3/12, "feet"),
  40512. default: true
  40513. },
  40514. {
  40515. name: "Macro",
  40516. height: math.unit(225, "feet")
  40517. },
  40518. {
  40519. name: "Macro+",
  40520. height: math.unit(900, "feet")
  40521. },
  40522. {
  40523. name: "MegaMacro",
  40524. height: math.unit(14400, "feet")
  40525. },
  40526. ]
  40527. ))
  40528. characterMakers.push(() => makeCharacter(
  40529. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40530. {
  40531. front: {
  40532. height: math.unit(5 + 4/12, "feet"),
  40533. weight: math.unit(110, "lb"),
  40534. name: "Front",
  40535. image: {
  40536. source: "./media/characters/axel-isanov/front.svg",
  40537. extra: 1096/1065,
  40538. bottom: 13/1109
  40539. }
  40540. },
  40541. },
  40542. [
  40543. {
  40544. name: "Normal",
  40545. height: math.unit(5 + 4/12, "feet"),
  40546. default: true
  40547. },
  40548. ]
  40549. ))
  40550. characterMakers.push(() => makeCharacter(
  40551. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40552. {
  40553. front: {
  40554. height: math.unit(9, "feet"),
  40555. weight: math.unit(467, "lb"),
  40556. name: "Front",
  40557. image: {
  40558. source: "./media/characters/necahual/front.svg",
  40559. extra: 920/873,
  40560. bottom: 26/946
  40561. }
  40562. },
  40563. back: {
  40564. height: math.unit(9, "feet"),
  40565. weight: math.unit(467, "lb"),
  40566. name: "Back",
  40567. image: {
  40568. source: "./media/characters/necahual/back.svg",
  40569. extra: 930/884,
  40570. bottom: 16/946
  40571. }
  40572. },
  40573. frontUnderwear: {
  40574. height: math.unit(9, "feet"),
  40575. weight: math.unit(467, "lb"),
  40576. name: "Front (Underwear)",
  40577. image: {
  40578. source: "./media/characters/necahual/front-underwear.svg",
  40579. extra: 920/873,
  40580. bottom: 26/946
  40581. }
  40582. },
  40583. frontDressed: {
  40584. height: math.unit(9, "feet"),
  40585. weight: math.unit(467, "lb"),
  40586. name: "Front (Dressed)",
  40587. image: {
  40588. source: "./media/characters/necahual/front-dressed.svg",
  40589. extra: 920/873,
  40590. bottom: 26/946
  40591. }
  40592. },
  40593. },
  40594. [
  40595. {
  40596. name: "Comprsesed",
  40597. height: math.unit(9, "feet")
  40598. },
  40599. {
  40600. name: "Natural",
  40601. height: math.unit(15, "feet"),
  40602. default: true
  40603. },
  40604. {
  40605. name: "Boosted",
  40606. height: math.unit(50, "feet")
  40607. },
  40608. {
  40609. name: "Boosted+",
  40610. height: math.unit(150, "feet")
  40611. },
  40612. {
  40613. name: "Max",
  40614. height: math.unit(500, "feet")
  40615. },
  40616. ]
  40617. ))
  40618. characterMakers.push(() => makeCharacter(
  40619. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40620. {
  40621. front: {
  40622. height: math.unit(22 + 1/12, "feet"),
  40623. weight: math.unit(3200, "lb"),
  40624. name: "Front",
  40625. image: {
  40626. source: "./media/characters/theo-acacia/front.svg",
  40627. extra: 1796/1741,
  40628. bottom: 83/1879
  40629. }
  40630. },
  40631. frontUnderwear: {
  40632. height: math.unit(22 + 1/12, "feet"),
  40633. weight: math.unit(3200, "lb"),
  40634. name: "Front (Underwear)",
  40635. image: {
  40636. source: "./media/characters/theo-acacia/front-underwear.svg",
  40637. extra: 1796/1741,
  40638. bottom: 83/1879
  40639. }
  40640. },
  40641. frontNude: {
  40642. height: math.unit(22 + 1/12, "feet"),
  40643. weight: math.unit(3200, "lb"),
  40644. name: "Front (Nude)",
  40645. image: {
  40646. source: "./media/characters/theo-acacia/front-nude.svg",
  40647. extra: 1796/1741,
  40648. bottom: 83/1879
  40649. }
  40650. },
  40651. },
  40652. [
  40653. {
  40654. name: "Normal",
  40655. height: math.unit(22 + 1/12, "feet"),
  40656. default: true
  40657. },
  40658. ]
  40659. ))
  40660. characterMakers.push(() => makeCharacter(
  40661. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40662. {
  40663. front: {
  40664. height: math.unit(20, "feet"),
  40665. name: "Front",
  40666. image: {
  40667. source: "./media/characters/astra/front.svg",
  40668. extra: 1850/1714,
  40669. bottom: 106/1956
  40670. }
  40671. },
  40672. frontUndressed: {
  40673. height: math.unit(20, "feet"),
  40674. name: "Front (Undressed)",
  40675. image: {
  40676. source: "./media/characters/astra/front-undressed.svg",
  40677. extra: 1926/1749,
  40678. bottom: 0/1926
  40679. }
  40680. },
  40681. hand: {
  40682. height: math.unit(1.53, "feet"),
  40683. name: "Hand",
  40684. image: {
  40685. source: "./media/characters/astra/hand.svg"
  40686. }
  40687. },
  40688. paw: {
  40689. height: math.unit(1.53, "feet"),
  40690. name: "Paw",
  40691. image: {
  40692. source: "./media/characters/astra/paw.svg"
  40693. }
  40694. },
  40695. },
  40696. [
  40697. {
  40698. name: "Smallest",
  40699. height: math.unit(20, "feet")
  40700. },
  40701. {
  40702. name: "Normal",
  40703. height: math.unit(1e9, "miles"),
  40704. default: true
  40705. },
  40706. {
  40707. name: "Larger",
  40708. height: math.unit(5, "multiverses")
  40709. },
  40710. {
  40711. name: "Largest",
  40712. height: math.unit(1e9, "multiverses")
  40713. },
  40714. ]
  40715. ))
  40716. characterMakers.push(() => makeCharacter(
  40717. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40718. {
  40719. front: {
  40720. height: math.unit(8, "feet"),
  40721. name: "Front",
  40722. image: {
  40723. source: "./media/characters/breanna/front.svg",
  40724. extra: 1912/1632,
  40725. bottom: 33/1945
  40726. }
  40727. },
  40728. },
  40729. [
  40730. {
  40731. name: "Smallest",
  40732. height: math.unit(8, "feet")
  40733. },
  40734. {
  40735. name: "Normal",
  40736. height: math.unit(1, "mile"),
  40737. default: true
  40738. },
  40739. {
  40740. name: "Maximum",
  40741. height: math.unit(1500000000000, "lightyears")
  40742. },
  40743. ]
  40744. ))
  40745. characterMakers.push(() => makeCharacter(
  40746. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40747. {
  40748. front: {
  40749. height: math.unit(5 + 11/12, "feet"),
  40750. weight: math.unit(155, "lb"),
  40751. name: "Front",
  40752. image: {
  40753. source: "./media/characters/cai/front.svg",
  40754. extra: 1823/1702,
  40755. bottom: 32/1855
  40756. }
  40757. },
  40758. back: {
  40759. height: math.unit(5 + 11/12, "feet"),
  40760. weight: math.unit(155, "lb"),
  40761. name: "Back",
  40762. image: {
  40763. source: "./media/characters/cai/back.svg",
  40764. extra: 1809/1708,
  40765. bottom: 31/1840
  40766. }
  40767. },
  40768. },
  40769. [
  40770. {
  40771. name: "Normal",
  40772. height: math.unit(5 + 11/12, "feet"),
  40773. default: true
  40774. },
  40775. {
  40776. name: "Big",
  40777. height: math.unit(15, "feet")
  40778. },
  40779. {
  40780. name: "Macro",
  40781. height: math.unit(200, "feet")
  40782. },
  40783. ]
  40784. ))
  40785. characterMakers.push(() => makeCharacter(
  40786. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40787. {
  40788. front: {
  40789. height: math.unit(5 + 6/12, "feet"),
  40790. weight: math.unit(160, "lb"),
  40791. name: "Front",
  40792. image: {
  40793. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40794. extra: 1227/1174,
  40795. bottom: 37/1264
  40796. }
  40797. },
  40798. },
  40799. [
  40800. {
  40801. name: "Macro",
  40802. height: math.unit(444, "meters"),
  40803. default: true
  40804. },
  40805. ]
  40806. ))
  40807. characterMakers.push(() => makeCharacter(
  40808. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40809. {
  40810. front: {
  40811. height: math.unit(18 + 7/12, "feet"),
  40812. name: "Front",
  40813. image: {
  40814. source: "./media/characters/rex/front.svg",
  40815. extra: 1941/1807,
  40816. bottom: 66/2007
  40817. }
  40818. },
  40819. back: {
  40820. height: math.unit(18 + 7/12, "feet"),
  40821. name: "Back",
  40822. image: {
  40823. source: "./media/characters/rex/back.svg",
  40824. extra: 1937/1822,
  40825. bottom: 42/1979
  40826. }
  40827. },
  40828. boot: {
  40829. height: math.unit(3.45, "feet"),
  40830. name: "Boot",
  40831. image: {
  40832. source: "./media/characters/rex/boot.svg"
  40833. }
  40834. },
  40835. paw: {
  40836. height: math.unit(4.17, "feet"),
  40837. name: "Paw",
  40838. image: {
  40839. source: "./media/characters/rex/paw.svg"
  40840. }
  40841. },
  40842. head: {
  40843. height: math.unit(6.728, "feet"),
  40844. name: "Head",
  40845. image: {
  40846. source: "./media/characters/rex/head.svg"
  40847. }
  40848. },
  40849. },
  40850. [
  40851. {
  40852. name: "Nano",
  40853. height: math.unit(18 + 7/12, "feet")
  40854. },
  40855. {
  40856. name: "Micro",
  40857. height: math.unit(1.5, "megameters")
  40858. },
  40859. {
  40860. name: "Normal",
  40861. height: math.unit(440, "megameters"),
  40862. default: true
  40863. },
  40864. {
  40865. name: "Macro",
  40866. height: math.unit(2.5, "gigameters")
  40867. },
  40868. {
  40869. name: "Gigamacro",
  40870. height: math.unit(2, "galaxies")
  40871. },
  40872. ]
  40873. ))
  40874. characterMakers.push(() => makeCharacter(
  40875. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40876. {
  40877. side: {
  40878. height: math.unit(32, "feet"),
  40879. weight: math.unit(250000, "lb"),
  40880. name: "Side",
  40881. image: {
  40882. source: "./media/characters/silverwing/side.svg",
  40883. extra: 1100/1019,
  40884. bottom: 204/1304
  40885. }
  40886. },
  40887. },
  40888. [
  40889. {
  40890. name: "Normal",
  40891. height: math.unit(32, "feet"),
  40892. default: true
  40893. },
  40894. ]
  40895. ))
  40896. characterMakers.push(() => makeCharacter(
  40897. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40898. {
  40899. front: {
  40900. height: math.unit(6 + 6/12, "feet"),
  40901. weight: math.unit(350, "lb"),
  40902. name: "Front",
  40903. image: {
  40904. source: "./media/characters/tristan-hawthorne/front.svg",
  40905. extra: 1159/1124,
  40906. bottom: 37/1196
  40907. }
  40908. },
  40909. },
  40910. [
  40911. {
  40912. name: "Normal",
  40913. height: math.unit(6 + 6/12, "feet"),
  40914. default: true
  40915. },
  40916. ]
  40917. ))
  40918. characterMakers.push(() => makeCharacter(
  40919. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40920. {
  40921. front: {
  40922. height: math.unit(5 + 11/12, "feet"),
  40923. weight: math.unit(190, "lb"),
  40924. name: "Front",
  40925. image: {
  40926. source: "./media/characters/mizu/front.svg",
  40927. extra: 1988/1788,
  40928. bottom: 14/2002
  40929. }
  40930. },
  40931. },
  40932. [
  40933. {
  40934. name: "Normal",
  40935. height: math.unit(5 + 11/12, "feet"),
  40936. default: true
  40937. },
  40938. ]
  40939. ))
  40940. characterMakers.push(() => makeCharacter(
  40941. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40942. {
  40943. front: {
  40944. height: math.unit(6, "feet"),
  40945. name: "Front",
  40946. image: {
  40947. source: "./media/characters/moonlight-rose-terra/front.svg",
  40948. extra: 1434/1252,
  40949. bottom: 48/1482
  40950. }
  40951. },
  40952. },
  40953. [
  40954. {
  40955. name: "TRAPPIST-1D",
  40956. height: math.unit(4992*2, "km")
  40957. },
  40958. {
  40959. name: "Earth",
  40960. height: math.unit(6367*2, "km"),
  40961. default: true
  40962. },
  40963. {
  40964. name: "Kepler-22b",
  40965. height: math.unit(15282*2, "km")
  40966. },
  40967. ]
  40968. ))
  40969. characterMakers.push(() => makeCharacter(
  40970. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40971. {
  40972. front: {
  40973. height: math.unit(6, "feet"),
  40974. name: "Front",
  40975. image: {
  40976. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40977. extra: 1851/1712,
  40978. bottom: 0/1851
  40979. }
  40980. },
  40981. },
  40982. [
  40983. {
  40984. name: "Enceladus",
  40985. height: math.unit(513*2, "km")
  40986. },
  40987. {
  40988. name: "Europe",
  40989. height: math.unit(1560*2, "km")
  40990. },
  40991. {
  40992. name: "Neptune",
  40993. height: math.unit(24622*2, "km"),
  40994. default: true
  40995. },
  40996. {
  40997. name: "CoRoT-9b",
  40998. height: math.unit(75067*2, "km")
  40999. },
  41000. ]
  41001. ))
  41002. characterMakers.push(() => makeCharacter(
  41003. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41004. {
  41005. front: {
  41006. height: math.unit(6, "feet"),
  41007. name: "Front",
  41008. image: {
  41009. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41010. extra: 1367/1286,
  41011. bottom: 55/1422
  41012. }
  41013. },
  41014. },
  41015. [
  41016. {
  41017. name: "Saturn",
  41018. height: math.unit(58232*2, "km")
  41019. },
  41020. {
  41021. name: "Jupiter",
  41022. height: math.unit(69911*2, "km"),
  41023. default: true
  41024. },
  41025. {
  41026. name: "HD 100546 b",
  41027. height: math.unit(482938, "km")
  41028. },
  41029. ]
  41030. ))
  41031. characterMakers.push(() => makeCharacter(
  41032. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41033. {
  41034. front: {
  41035. height: math.unit(1.7, "feet"),
  41036. weight: math.unit(50, "lb"),
  41037. name: "Front",
  41038. image: {
  41039. source: "./media/characters/dechroma/front.svg",
  41040. extra: 1095/859,
  41041. bottom: 64/1159
  41042. }
  41043. },
  41044. },
  41045. [
  41046. {
  41047. name: "Normal",
  41048. height: math.unit(1.7, "feet"),
  41049. default: true
  41050. },
  41051. ]
  41052. ))
  41053. characterMakers.push(() => makeCharacter(
  41054. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41055. {
  41056. side: {
  41057. height: math.unit(30, "feet"),
  41058. name: "Side",
  41059. image: {
  41060. source: "./media/characters/veluren-thanazel/side.svg",
  41061. extra: 1611/633,
  41062. bottom: 118/1729
  41063. }
  41064. },
  41065. front: {
  41066. height: math.unit(30, "feet"),
  41067. name: "Front",
  41068. image: {
  41069. source: "./media/characters/veluren-thanazel/front.svg",
  41070. extra: 1486/636,
  41071. bottom: 238/1724
  41072. }
  41073. },
  41074. head: {
  41075. height: math.unit(21.4, "feet"),
  41076. name: "Head",
  41077. image: {
  41078. source: "./media/characters/veluren-thanazel/head.svg"
  41079. }
  41080. },
  41081. genitals: {
  41082. height: math.unit(19.4, "feet"),
  41083. name: "Genitals",
  41084. image: {
  41085. source: "./media/characters/veluren-thanazel/genitals.svg"
  41086. }
  41087. },
  41088. },
  41089. [
  41090. {
  41091. name: "Social",
  41092. height: math.unit(6, "feet")
  41093. },
  41094. {
  41095. name: "Play",
  41096. height: math.unit(12, "feet")
  41097. },
  41098. {
  41099. name: "True",
  41100. height: math.unit(30, "feet"),
  41101. default: true
  41102. },
  41103. ]
  41104. ))
  41105. characterMakers.push(() => makeCharacter(
  41106. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41107. {
  41108. front: {
  41109. height: math.unit(7 + 6/12, "feet"),
  41110. weight: math.unit(500, "kg"),
  41111. name: "Front",
  41112. image: {
  41113. source: "./media/characters/arcturas/front.svg",
  41114. extra: 1700/1500,
  41115. bottom: 145/1845
  41116. }
  41117. },
  41118. },
  41119. [
  41120. {
  41121. name: "Normal",
  41122. height: math.unit(7 + 6/12, "feet"),
  41123. default: true
  41124. },
  41125. ]
  41126. ))
  41127. characterMakers.push(() => makeCharacter(
  41128. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41129. {
  41130. side: {
  41131. height: math.unit(6, "feet"),
  41132. weight: math.unit(2, "tons"),
  41133. name: "Side",
  41134. image: {
  41135. source: "./media/characters/vitaen/side.svg",
  41136. extra: 1157/617,
  41137. bottom: 122/1279
  41138. }
  41139. },
  41140. },
  41141. [
  41142. {
  41143. name: "Normal",
  41144. height: math.unit(6, "feet"),
  41145. default: true
  41146. },
  41147. ]
  41148. ))
  41149. characterMakers.push(() => makeCharacter(
  41150. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41151. {
  41152. front: {
  41153. height: math.unit(19, "feet"),
  41154. name: "Front",
  41155. image: {
  41156. source: "./media/characters/fia-dreamweaver/front.svg",
  41157. extra: 1630/1504,
  41158. bottom: 25/1655
  41159. }
  41160. },
  41161. },
  41162. [
  41163. {
  41164. name: "Normal",
  41165. height: math.unit(19, "feet"),
  41166. default: true
  41167. },
  41168. ]
  41169. ))
  41170. characterMakers.push(() => makeCharacter(
  41171. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41172. {
  41173. front: {
  41174. height: math.unit(5 + 4/12, "feet"),
  41175. name: "Front",
  41176. image: {
  41177. source: "./media/characters/artan/front.svg",
  41178. extra: 1618/1535,
  41179. bottom: 46/1664
  41180. }
  41181. },
  41182. back: {
  41183. height: math.unit(5 + 4/12, "feet"),
  41184. name: "Back",
  41185. image: {
  41186. source: "./media/characters/artan/back.svg",
  41187. extra: 1618/1543,
  41188. bottom: 31/1649
  41189. }
  41190. },
  41191. },
  41192. [
  41193. {
  41194. name: "Normal",
  41195. height: math.unit(5 + 4/12, "feet"),
  41196. default: true
  41197. },
  41198. ]
  41199. ))
  41200. characterMakers.push(() => makeCharacter(
  41201. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41202. {
  41203. side: {
  41204. height: math.unit(182, "cm"),
  41205. weight: math.unit(1000, "lb"),
  41206. name: "Side",
  41207. image: {
  41208. source: "./media/characters/silver-dragon/side.svg",
  41209. extra: 710/287,
  41210. bottom: 88/798
  41211. }
  41212. },
  41213. },
  41214. [
  41215. {
  41216. name: "Normal",
  41217. height: math.unit(182, "cm"),
  41218. default: true
  41219. },
  41220. ]
  41221. ))
  41222. characterMakers.push(() => makeCharacter(
  41223. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41224. {
  41225. side: {
  41226. height: math.unit(6 + 6/12, "feet"),
  41227. weight: math.unit(1.5, "tons"),
  41228. name: "Side",
  41229. image: {
  41230. source: "./media/characters/zephyr/side.svg",
  41231. extra: 1433/586,
  41232. bottom: 109/1542
  41233. }
  41234. },
  41235. },
  41236. [
  41237. {
  41238. name: "Normal",
  41239. height: math.unit(6 + 6/12, "feet"),
  41240. default: true
  41241. },
  41242. ]
  41243. ))
  41244. characterMakers.push(() => makeCharacter(
  41245. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41246. {
  41247. side: {
  41248. height: math.unit(1, "feet"),
  41249. name: "Side",
  41250. image: {
  41251. source: "./media/characters/vixye/side.svg",
  41252. extra: 632/541,
  41253. bottom: 0/632
  41254. }
  41255. },
  41256. },
  41257. [
  41258. {
  41259. name: "Normal",
  41260. height: math.unit(1, "feet"),
  41261. default: true
  41262. },
  41263. {
  41264. name: "True",
  41265. height: math.unit(1e15, "multiverses")
  41266. },
  41267. ]
  41268. ))
  41269. characterMakers.push(() => makeCharacter(
  41270. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41271. {
  41272. front: {
  41273. height: math.unit(8 + 2/12, "feet"),
  41274. weight: math.unit(650, "lb"),
  41275. name: "Front",
  41276. image: {
  41277. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41278. extra: 1174/1137,
  41279. bottom: 82/1256
  41280. }
  41281. },
  41282. back: {
  41283. height: math.unit(8 + 2/12, "feet"),
  41284. weight: math.unit(650, "lb"),
  41285. name: "Back",
  41286. image: {
  41287. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41288. extra: 1204/1157,
  41289. bottom: 46/1250
  41290. }
  41291. },
  41292. },
  41293. [
  41294. {
  41295. name: "Wildform",
  41296. height: math.unit(8 + 2/12, "feet"),
  41297. default: true
  41298. },
  41299. ]
  41300. ))
  41301. characterMakers.push(() => makeCharacter(
  41302. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41303. {
  41304. front: {
  41305. height: math.unit(18, "feet"),
  41306. name: "Front",
  41307. image: {
  41308. source: "./media/characters/cyphin/front.svg",
  41309. extra: 970/886,
  41310. bottom: 42/1012
  41311. }
  41312. },
  41313. back: {
  41314. height: math.unit(18, "feet"),
  41315. name: "Back",
  41316. image: {
  41317. source: "./media/characters/cyphin/back.svg",
  41318. extra: 1009/894,
  41319. bottom: 24/1033
  41320. }
  41321. },
  41322. head: {
  41323. height: math.unit(5.05, "feet"),
  41324. name: "Head",
  41325. image: {
  41326. source: "./media/characters/cyphin/head.svg"
  41327. }
  41328. },
  41329. tailbud: {
  41330. height: math.unit(5, "feet"),
  41331. name: "Tailbud",
  41332. image: {
  41333. source: "./media/characters/cyphin/tailbud.svg"
  41334. }
  41335. },
  41336. },
  41337. [
  41338. ]
  41339. ))
  41340. characterMakers.push(() => makeCharacter(
  41341. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41342. {
  41343. side: {
  41344. height: math.unit(10, "feet"),
  41345. weight: math.unit(6, "tons"),
  41346. name: "Side",
  41347. image: {
  41348. source: "./media/characters/raijin/side.svg",
  41349. extra: 1529/613,
  41350. bottom: 337/1866
  41351. }
  41352. },
  41353. },
  41354. [
  41355. {
  41356. name: "Normal",
  41357. height: math.unit(10, "feet"),
  41358. default: true
  41359. },
  41360. ]
  41361. ))
  41362. characterMakers.push(() => makeCharacter(
  41363. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41364. {
  41365. side: {
  41366. height: math.unit(9, "feet"),
  41367. name: "Side",
  41368. image: {
  41369. source: "./media/characters/nilghais/side.svg",
  41370. extra: 1047/744,
  41371. bottom: 91/1138
  41372. }
  41373. },
  41374. head: {
  41375. height: math.unit(3.14, "feet"),
  41376. name: "Head",
  41377. image: {
  41378. source: "./media/characters/nilghais/head.svg"
  41379. }
  41380. },
  41381. mouth: {
  41382. height: math.unit(4.6, "feet"),
  41383. name: "Mouth",
  41384. image: {
  41385. source: "./media/characters/nilghais/mouth.svg"
  41386. }
  41387. },
  41388. wings: {
  41389. height: math.unit(24, "feet"),
  41390. name: "Wings",
  41391. image: {
  41392. source: "./media/characters/nilghais/wings.svg"
  41393. }
  41394. },
  41395. ass: {
  41396. height: math.unit(6.12, "feet"),
  41397. name: "Ass",
  41398. image: {
  41399. source: "./media/characters/nilghais/ass.svg"
  41400. }
  41401. },
  41402. },
  41403. [
  41404. {
  41405. name: "Normal",
  41406. height: math.unit(9, "feet"),
  41407. default: true
  41408. },
  41409. ]
  41410. ))
  41411. characterMakers.push(() => makeCharacter(
  41412. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41413. {
  41414. regular: {
  41415. height: math.unit(16 + 2/12, "feet"),
  41416. weight: math.unit(2300, "lb"),
  41417. name: "Regular",
  41418. image: {
  41419. source: "./media/characters/zolgar/regular.svg",
  41420. extra: 1246/1004,
  41421. bottom: 124/1370
  41422. }
  41423. },
  41424. boxers: {
  41425. height: math.unit(16 + 2/12, "feet"),
  41426. weight: math.unit(2300, "lb"),
  41427. name: "Boxers",
  41428. image: {
  41429. source: "./media/characters/zolgar/boxers.svg",
  41430. extra: 1246/1004,
  41431. bottom: 124/1370
  41432. }
  41433. },
  41434. armored: {
  41435. height: math.unit(16 + 2/12, "feet"),
  41436. weight: math.unit(2300, "lb"),
  41437. name: "Armored",
  41438. image: {
  41439. source: "./media/characters/zolgar/armored.svg",
  41440. extra: 1246/1004,
  41441. bottom: 124/1370
  41442. }
  41443. },
  41444. goth: {
  41445. height: math.unit(16 + 2/12, "feet"),
  41446. weight: math.unit(2300, "lb"),
  41447. name: "Goth",
  41448. image: {
  41449. source: "./media/characters/zolgar/goth.svg",
  41450. extra: 1246/1004,
  41451. bottom: 124/1370
  41452. }
  41453. },
  41454. },
  41455. [
  41456. {
  41457. name: "Shrunken Down",
  41458. height: math.unit(9 + 2/12, "feet")
  41459. },
  41460. {
  41461. name: "Normal",
  41462. height: math.unit(16 + 2/12, "feet"),
  41463. default: true
  41464. },
  41465. ]
  41466. ))
  41467. characterMakers.push(() => makeCharacter(
  41468. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41469. {
  41470. front: {
  41471. height: math.unit(6, "feet"),
  41472. weight: math.unit(168, "lb"),
  41473. name: "Front",
  41474. image: {
  41475. source: "./media/characters/luca/front.svg",
  41476. extra: 841/667,
  41477. bottom: 102/943
  41478. }
  41479. },
  41480. },
  41481. [
  41482. {
  41483. name: "Normal",
  41484. height: math.unit(6, "feet"),
  41485. default: true
  41486. },
  41487. ]
  41488. ))
  41489. characterMakers.push(() => makeCharacter(
  41490. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41491. {
  41492. side: {
  41493. height: math.unit(7 + 3/12, "feet"),
  41494. weight: math.unit(312, "lb"),
  41495. name: "Side",
  41496. image: {
  41497. source: "./media/characters/zezo/side.svg",
  41498. extra: 1192/1067,
  41499. bottom: 63/1255
  41500. }
  41501. },
  41502. },
  41503. [
  41504. {
  41505. name: "Normal",
  41506. height: math.unit(7 + 3/12, "feet"),
  41507. default: true
  41508. },
  41509. ]
  41510. ))
  41511. characterMakers.push(() => makeCharacter(
  41512. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41513. {
  41514. front: {
  41515. height: math.unit(5 + 5/12, "feet"),
  41516. weight: math.unit(170, "lb"),
  41517. name: "Front",
  41518. image: {
  41519. source: "./media/characters/mayso/front.svg",
  41520. extra: 1215/1108,
  41521. bottom: 16/1231
  41522. }
  41523. },
  41524. },
  41525. [
  41526. {
  41527. name: "Normal",
  41528. height: math.unit(5 + 5/12, "feet"),
  41529. default: true
  41530. },
  41531. ]
  41532. ))
  41533. characterMakers.push(() => makeCharacter(
  41534. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41535. {
  41536. front: {
  41537. height: math.unit(4 + 3/12, "feet"),
  41538. weight: math.unit(80, "lb"),
  41539. name: "Front",
  41540. image: {
  41541. source: "./media/characters/hess/front.svg",
  41542. extra: 1200/1123,
  41543. bottom: 16/1216
  41544. }
  41545. },
  41546. },
  41547. [
  41548. {
  41549. name: "Normal",
  41550. height: math.unit(4 + 3/12, "feet"),
  41551. default: true
  41552. },
  41553. ]
  41554. ))
  41555. characterMakers.push(() => makeCharacter(
  41556. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41557. {
  41558. front: {
  41559. height: math.unit(1.9, "meters"),
  41560. name: "Front",
  41561. image: {
  41562. source: "./media/characters/ashgar/front.svg",
  41563. extra: 1177/1146,
  41564. bottom: 99/1276
  41565. }
  41566. },
  41567. back: {
  41568. height: math.unit(1.9, "meters"),
  41569. name: "Back",
  41570. image: {
  41571. source: "./media/characters/ashgar/back.svg",
  41572. extra: 1201/1183,
  41573. bottom: 53/1254
  41574. }
  41575. },
  41576. feral: {
  41577. height: math.unit(1.4, "meters"),
  41578. name: "Feral",
  41579. image: {
  41580. source: "./media/characters/ashgar/feral.svg",
  41581. extra: 370/345,
  41582. bottom: 45/415
  41583. }
  41584. },
  41585. },
  41586. [
  41587. {
  41588. name: "Normal",
  41589. height: math.unit(1.9, "meters"),
  41590. default: true
  41591. },
  41592. ]
  41593. ))
  41594. characterMakers.push(() => makeCharacter(
  41595. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41596. {
  41597. regular: {
  41598. height: math.unit(6, "feet"),
  41599. weight: math.unit(220, "lb"),
  41600. name: "Regular",
  41601. image: {
  41602. source: "./media/characters/phillip/regular.svg",
  41603. extra: 1373/1277,
  41604. bottom: 75/1448
  41605. }
  41606. },
  41607. dressed: {
  41608. height: math.unit(6, "feet"),
  41609. weight: math.unit(220, "lb"),
  41610. name: "Dressed",
  41611. image: {
  41612. source: "./media/characters/phillip/dressed.svg",
  41613. extra: 1373/1277,
  41614. bottom: 75/1448
  41615. }
  41616. },
  41617. paw: {
  41618. height: math.unit(1.44, "feet"),
  41619. name: "Paw",
  41620. image: {
  41621. source: "./media/characters/phillip/paw.svg"
  41622. }
  41623. },
  41624. },
  41625. [
  41626. {
  41627. name: "Normal",
  41628. height: math.unit(6, "feet"),
  41629. default: true
  41630. },
  41631. ]
  41632. ))
  41633. characterMakers.push(() => makeCharacter(
  41634. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41635. {
  41636. side: {
  41637. height: math.unit(42, "feet"),
  41638. name: "Side",
  41639. image: {
  41640. source: "./media/characters/uvula/side.svg",
  41641. extra: 683/586,
  41642. bottom: 60/743
  41643. }
  41644. },
  41645. front: {
  41646. height: math.unit(42, "feet"),
  41647. name: "Front",
  41648. image: {
  41649. source: "./media/characters/uvula/front.svg",
  41650. extra: 705/613,
  41651. bottom: 54/759
  41652. }
  41653. },
  41654. maw: {
  41655. height: math.unit(23.5, "feet"),
  41656. name: "Maw",
  41657. image: {
  41658. source: "./media/characters/uvula/maw.svg"
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Original Size",
  41665. height: math.unit(14, "inches")
  41666. },
  41667. {
  41668. name: "Human Size",
  41669. height: math.unit(6, "feet")
  41670. },
  41671. {
  41672. name: "Big",
  41673. height: math.unit(42, "feet"),
  41674. default: true
  41675. },
  41676. {
  41677. name: "Bigger",
  41678. height: math.unit(100, "feet")
  41679. },
  41680. ]
  41681. ))
  41682. characterMakers.push(() => makeCharacter(
  41683. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41684. {
  41685. front: {
  41686. height: math.unit(5 + 11/12, "feet"),
  41687. name: "Front",
  41688. image: {
  41689. source: "./media/characters/lannah/front.svg",
  41690. extra: 1208/1113,
  41691. bottom: 97/1305
  41692. }
  41693. },
  41694. },
  41695. [
  41696. {
  41697. name: "Normal",
  41698. height: math.unit(5 + 11/12, "feet"),
  41699. default: true
  41700. },
  41701. ]
  41702. ))
  41703. characterMakers.push(() => makeCharacter(
  41704. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41705. {
  41706. front: {
  41707. height: math.unit(6 + 3/12, "feet"),
  41708. weight: math.unit(3.5, "tons"),
  41709. name: "Front",
  41710. image: {
  41711. source: "./media/characters/emberflame/front.svg",
  41712. extra: 1198/672,
  41713. bottom: 82/1280
  41714. }
  41715. },
  41716. side: {
  41717. height: math.unit(6 + 3/12, "feet"),
  41718. weight: math.unit(3.5, "tons"),
  41719. name: "Side",
  41720. image: {
  41721. source: "./media/characters/emberflame/side.svg",
  41722. extra: 938/527,
  41723. bottom: 56/994
  41724. }
  41725. },
  41726. },
  41727. [
  41728. {
  41729. name: "Normal",
  41730. height: math.unit(6 + 3/12, "feet"),
  41731. default: true
  41732. },
  41733. ]
  41734. ))
  41735. characterMakers.push(() => makeCharacter(
  41736. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41737. {
  41738. side: {
  41739. height: math.unit(17.5, "feet"),
  41740. weight: math.unit(35, "tons"),
  41741. name: "Side",
  41742. image: {
  41743. source: "./media/characters/sophie-ambrose/side.svg",
  41744. extra: 1573/1242,
  41745. bottom: 71/1644
  41746. }
  41747. },
  41748. maw: {
  41749. height: math.unit(7.4, "feet"),
  41750. name: "Maw",
  41751. image: {
  41752. source: "./media/characters/sophie-ambrose/maw.svg"
  41753. }
  41754. },
  41755. },
  41756. [
  41757. {
  41758. name: "Normal",
  41759. height: math.unit(17.5, "feet"),
  41760. default: true
  41761. },
  41762. ]
  41763. ))
  41764. characterMakers.push(() => makeCharacter(
  41765. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41766. {
  41767. front: {
  41768. height: math.unit(280, "feet"),
  41769. weight: math.unit(550, "tons"),
  41770. name: "Front",
  41771. image: {
  41772. source: "./media/characters/king-mugi/front.svg",
  41773. extra: 1102/947,
  41774. bottom: 104/1206
  41775. }
  41776. },
  41777. },
  41778. [
  41779. {
  41780. name: "King Mugi",
  41781. height: math.unit(280, "feet"),
  41782. default: true
  41783. },
  41784. ]
  41785. ))
  41786. characterMakers.push(() => makeCharacter(
  41787. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41788. {
  41789. front: {
  41790. height: math.unit(64, "meters"),
  41791. name: "Front",
  41792. image: {
  41793. source: "./media/characters/nova-fox/front.svg",
  41794. extra: 1310/1246,
  41795. bottom: 65/1375
  41796. }
  41797. },
  41798. },
  41799. [
  41800. {
  41801. name: "Macro",
  41802. height: math.unit(64, "meters"),
  41803. default: true
  41804. },
  41805. ]
  41806. ))
  41807. characterMakers.push(() => makeCharacter(
  41808. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41809. {
  41810. front: {
  41811. height: math.unit(6 + 3/12, "feet"),
  41812. weight: math.unit(170, "lb"),
  41813. name: "Front",
  41814. image: {
  41815. source: "./media/characters/sam-bat/front.svg",
  41816. extra: 1601/1411,
  41817. bottom: 125/1726
  41818. }
  41819. },
  41820. back: {
  41821. height: math.unit(6 + 3/12, "feet"),
  41822. weight: math.unit(170, "lb"),
  41823. name: "Back",
  41824. image: {
  41825. source: "./media/characters/sam-bat/back.svg",
  41826. extra: 1577/1405,
  41827. bottom: 58/1635
  41828. }
  41829. },
  41830. },
  41831. [
  41832. {
  41833. name: "Normal",
  41834. height: math.unit(6 + 3/12, "feet"),
  41835. default: true
  41836. },
  41837. ]
  41838. ))
  41839. characterMakers.push(() => makeCharacter(
  41840. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41841. {
  41842. front: {
  41843. height: math.unit(59, "feet"),
  41844. weight: math.unit(40000, "lb"),
  41845. name: "Front",
  41846. image: {
  41847. source: "./media/characters/inari/front.svg",
  41848. extra: 1884/1350,
  41849. bottom: 95/1979
  41850. }
  41851. },
  41852. },
  41853. [
  41854. {
  41855. name: "Gigantamax",
  41856. height: math.unit(59, "feet"),
  41857. default: true
  41858. },
  41859. ]
  41860. ))
  41861. characterMakers.push(() => makeCharacter(
  41862. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41863. {
  41864. front: {
  41865. height: math.unit(5 + 8/12, "feet"),
  41866. name: "Front",
  41867. image: {
  41868. source: "./media/characters/elizabeth/front.svg",
  41869. extra: 1395/1298,
  41870. bottom: 54/1449
  41871. }
  41872. },
  41873. mouth: {
  41874. height: math.unit(1.97, "feet"),
  41875. name: "Mouth",
  41876. image: {
  41877. source: "./media/characters/elizabeth/mouth.svg"
  41878. }
  41879. },
  41880. foot: {
  41881. height: math.unit(1.17, "feet"),
  41882. name: "Foot",
  41883. image: {
  41884. source: "./media/characters/elizabeth/foot.svg"
  41885. }
  41886. },
  41887. },
  41888. [
  41889. {
  41890. name: "Normal",
  41891. height: math.unit(5 + 8/12, "feet"),
  41892. default: true
  41893. },
  41894. {
  41895. name: "Minimacro",
  41896. height: math.unit(18, "feet")
  41897. },
  41898. {
  41899. name: "Macro",
  41900. height: math.unit(180, "feet")
  41901. },
  41902. ]
  41903. ))
  41904. characterMakers.push(() => makeCharacter(
  41905. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41906. {
  41907. front: {
  41908. height: math.unit(5 + 2/12, "feet"),
  41909. name: "Front",
  41910. image: {
  41911. source: "./media/characters/october-gossamer/front.svg",
  41912. extra: 505/454,
  41913. bottom: 7/512
  41914. }
  41915. },
  41916. back: {
  41917. height: math.unit(5 + 2/12, "feet"),
  41918. name: "Back",
  41919. image: {
  41920. source: "./media/characters/october-gossamer/back.svg",
  41921. extra: 501/454,
  41922. bottom: 11/512
  41923. }
  41924. },
  41925. },
  41926. [
  41927. {
  41928. name: "Normal",
  41929. height: math.unit(5 + 2/12, "feet"),
  41930. default: true
  41931. },
  41932. ]
  41933. ))
  41934. characterMakers.push(() => makeCharacter(
  41935. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41936. {
  41937. front: {
  41938. height: math.unit(5, "feet"),
  41939. name: "Front",
  41940. image: {
  41941. source: "./media/characters/epiglottis/front.svg",
  41942. extra: 923/849,
  41943. bottom: 17/940
  41944. }
  41945. },
  41946. },
  41947. [
  41948. {
  41949. name: "Original Size",
  41950. height: math.unit(10, "inches")
  41951. },
  41952. {
  41953. name: "Human Size",
  41954. height: math.unit(5, "feet"),
  41955. default: true
  41956. },
  41957. {
  41958. name: "Big",
  41959. height: math.unit(25, "feet")
  41960. },
  41961. {
  41962. name: "Bigger",
  41963. height: math.unit(50, "feet")
  41964. },
  41965. {
  41966. name: "oh lawd",
  41967. height: math.unit(75, "feet")
  41968. },
  41969. ]
  41970. ))
  41971. characterMakers.push(() => makeCharacter(
  41972. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41973. {
  41974. front: {
  41975. height: math.unit(2 + 4/12, "feet"),
  41976. weight: math.unit(60, "lb"),
  41977. name: "Front",
  41978. image: {
  41979. source: "./media/characters/lerm/front.svg",
  41980. extra: 796/790,
  41981. bottom: 79/875
  41982. }
  41983. },
  41984. },
  41985. [
  41986. {
  41987. name: "Normal",
  41988. height: math.unit(2 + 4/12, "feet"),
  41989. default: true
  41990. },
  41991. ]
  41992. ))
  41993. characterMakers.push(() => makeCharacter(
  41994. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41995. {
  41996. front: {
  41997. height: math.unit(5.5, "feet"),
  41998. weight: math.unit(130, "lb"),
  41999. name: "Front",
  42000. image: {
  42001. source: "./media/characters/xena-nebadon/front.svg",
  42002. extra: 1828/1730,
  42003. bottom: 79/1907
  42004. }
  42005. },
  42006. },
  42007. [
  42008. {
  42009. name: "Tiny Puppy",
  42010. height: math.unit(3, "inches")
  42011. },
  42012. {
  42013. name: "Normal",
  42014. height: math.unit(5.5, "feet"),
  42015. default: true
  42016. },
  42017. {
  42018. name: "Lotta Lady",
  42019. height: math.unit(12, "feet")
  42020. },
  42021. {
  42022. name: "Pretty Big",
  42023. height: math.unit(100, "feet")
  42024. },
  42025. {
  42026. name: "Big",
  42027. height: math.unit(500, "feet")
  42028. },
  42029. {
  42030. name: "Skyscraper Toys",
  42031. height: math.unit(2500, "feet")
  42032. },
  42033. {
  42034. name: "Plane Catcher",
  42035. height: math.unit(8, "miles")
  42036. },
  42037. {
  42038. name: "Planet Toys",
  42039. height: math.unit(15, "earths")
  42040. },
  42041. {
  42042. name: "Stardust",
  42043. height: math.unit(0.25, "galaxies")
  42044. },
  42045. {
  42046. name: "Snacks",
  42047. height: math.unit(70, "universes")
  42048. },
  42049. ]
  42050. ))
  42051. characterMakers.push(() => makeCharacter(
  42052. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42053. {
  42054. front: {
  42055. height: math.unit(1.6, "meters"),
  42056. weight: math.unit(60, "kg"),
  42057. name: "Front",
  42058. image: {
  42059. source: "./media/characters/bounty/front.svg",
  42060. extra: 1426/1308,
  42061. bottom: 15/1441
  42062. }
  42063. },
  42064. },
  42065. [
  42066. {
  42067. name: "Normal",
  42068. height: math.unit(1.6, "meters"),
  42069. default: true
  42070. },
  42071. {
  42072. name: "Macro",
  42073. height: math.unit(300, "meters")
  42074. },
  42075. ]
  42076. ))
  42077. characterMakers.push(() => makeCharacter(
  42078. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42079. {
  42080. front: {
  42081. height: math.unit(2 + 8/12, "feet"),
  42082. weight: math.unit(15, "lb"),
  42083. name: "Front",
  42084. image: {
  42085. source: "./media/characters/mochi/front.svg",
  42086. extra: 1022/852,
  42087. bottom: 435/1457
  42088. }
  42089. },
  42090. back: {
  42091. height: math.unit(2 + 8/12, "feet"),
  42092. weight: math.unit(15, "lb"),
  42093. name: "Back",
  42094. image: {
  42095. source: "./media/characters/mochi/back.svg",
  42096. extra: 1335/1119,
  42097. bottom: 39/1374
  42098. }
  42099. },
  42100. bird: {
  42101. height: math.unit(2 + 8/12, "feet"),
  42102. weight: math.unit(15, "lb"),
  42103. name: "Bird",
  42104. image: {
  42105. source: "./media/characters/mochi/bird.svg",
  42106. extra: 1251/1113,
  42107. bottom: 178/1429
  42108. }
  42109. },
  42110. kaiju: {
  42111. height: math.unit(154, "feet"),
  42112. weight: math.unit(1e7, "lb"),
  42113. name: "Kaiju",
  42114. image: {
  42115. source: "./media/characters/mochi/kaiju.svg",
  42116. extra: 460/324,
  42117. bottom: 40/500
  42118. }
  42119. },
  42120. head: {
  42121. height: math.unit(1.21, "feet"),
  42122. name: "Head",
  42123. image: {
  42124. source: "./media/characters/mochi/head.svg"
  42125. }
  42126. },
  42127. alternateTail: {
  42128. height: math.unit(2 + 8/12, "feet"),
  42129. weight: math.unit(45, "lb"),
  42130. name: "Alternate Tail",
  42131. image: {
  42132. source: "./media/characters/mochi/alternate-tail.svg",
  42133. extra: 139/76,
  42134. bottom: 45/184
  42135. }
  42136. },
  42137. },
  42138. [
  42139. {
  42140. name: "Micro",
  42141. height: math.unit(2, "inches")
  42142. },
  42143. {
  42144. name: "Normal",
  42145. height: math.unit(2 + 8/12, "feet"),
  42146. default: true
  42147. },
  42148. {
  42149. name: "Macro",
  42150. height: math.unit(106, "feet")
  42151. },
  42152. ]
  42153. ))
  42154. characterMakers.push(() => makeCharacter(
  42155. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42156. {
  42157. front: {
  42158. height: math.unit(5.67, "feet"),
  42159. weight: math.unit(135, "lb"),
  42160. name: "Front",
  42161. image: {
  42162. source: "./media/characters/sarel/front.svg",
  42163. extra: 865/788,
  42164. bottom: 97/962
  42165. }
  42166. },
  42167. back: {
  42168. height: math.unit(5.67, "feet"),
  42169. weight: math.unit(135, "lb"),
  42170. name: "Back",
  42171. image: {
  42172. source: "./media/characters/sarel/back.svg",
  42173. extra: 857/777,
  42174. bottom: 32/889
  42175. }
  42176. },
  42177. chozoan: {
  42178. height: math.unit(5.67, "feet"),
  42179. weight: math.unit(135, "lb"),
  42180. name: "Chozoan",
  42181. image: {
  42182. source: "./media/characters/sarel/chozoan.svg",
  42183. extra: 865/788,
  42184. bottom: 97/962
  42185. }
  42186. },
  42187. current: {
  42188. height: math.unit(5.67, "feet"),
  42189. weight: math.unit(135, "lb"),
  42190. name: "Current",
  42191. image: {
  42192. source: "./media/characters/sarel/current.svg",
  42193. extra: 865/788,
  42194. bottom: 97/962
  42195. }
  42196. },
  42197. head: {
  42198. height: math.unit(1.77, "feet"),
  42199. name: "Head",
  42200. image: {
  42201. source: "./media/characters/sarel/head.svg"
  42202. }
  42203. },
  42204. claws: {
  42205. height: math.unit(1.8, "feet"),
  42206. name: "Claws",
  42207. image: {
  42208. source: "./media/characters/sarel/claws.svg"
  42209. }
  42210. },
  42211. clawsAlt: {
  42212. height: math.unit(1.8, "feet"),
  42213. name: "Claws-alt",
  42214. image: {
  42215. source: "./media/characters/sarel/claws-alt.svg"
  42216. }
  42217. },
  42218. },
  42219. [
  42220. {
  42221. name: "Normal",
  42222. height: math.unit(5.67, "feet"),
  42223. default: true
  42224. },
  42225. ]
  42226. ))
  42227. characterMakers.push(() => makeCharacter(
  42228. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42229. {
  42230. front: {
  42231. height: math.unit(5500, "feet"),
  42232. name: "Front",
  42233. image: {
  42234. source: "./media/characters/alyonia/front.svg",
  42235. extra: 1200/1135,
  42236. bottom: 29/1229
  42237. }
  42238. },
  42239. back: {
  42240. height: math.unit(5500, "feet"),
  42241. name: "Back",
  42242. image: {
  42243. source: "./media/characters/alyonia/back.svg",
  42244. extra: 1205/1138,
  42245. bottom: 10/1215
  42246. }
  42247. },
  42248. },
  42249. [
  42250. {
  42251. name: "Small",
  42252. height: math.unit(10, "feet")
  42253. },
  42254. {
  42255. name: "Macro",
  42256. height: math.unit(500, "feet")
  42257. },
  42258. {
  42259. name: "Mega Macro",
  42260. height: math.unit(5500, "feet"),
  42261. default: true
  42262. },
  42263. {
  42264. name: "Mega Macro+",
  42265. height: math.unit(500000, "feet")
  42266. },
  42267. {
  42268. name: "Giga Macro",
  42269. height: math.unit(3000, "miles")
  42270. },
  42271. {
  42272. name: "Tera Macro",
  42273. height: math.unit(2.8e6, "miles")
  42274. },
  42275. {
  42276. name: "Galactic",
  42277. height: math.unit(120000, "lightyears")
  42278. },
  42279. ]
  42280. ))
  42281. characterMakers.push(() => makeCharacter(
  42282. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42283. {
  42284. werewolf: {
  42285. height: math.unit(8, "feet"),
  42286. weight: math.unit(425, "lb"),
  42287. name: "Werewolf",
  42288. image: {
  42289. source: "./media/characters/autumn/werewolf.svg",
  42290. extra: 2154/2031,
  42291. bottom: 160/2314
  42292. }
  42293. },
  42294. human: {
  42295. height: math.unit(5 + 8/12, "feet"),
  42296. weight: math.unit(150, "lb"),
  42297. name: "Human",
  42298. image: {
  42299. source: "./media/characters/autumn/human.svg",
  42300. extra: 1200/1149,
  42301. bottom: 30/1230
  42302. }
  42303. },
  42304. },
  42305. [
  42306. {
  42307. name: "Normal",
  42308. height: math.unit(8, "feet"),
  42309. default: true
  42310. },
  42311. ]
  42312. ))
  42313. characterMakers.push(() => makeCharacter(
  42314. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42315. {
  42316. front: {
  42317. height: math.unit(8 + 5/12, "feet"),
  42318. weight: math.unit(825, "lb"),
  42319. name: "Front",
  42320. image: {
  42321. source: "./media/characters/cobalt-charizard/front.svg",
  42322. extra: 1268/1155,
  42323. bottom: 122/1390
  42324. }
  42325. },
  42326. side: {
  42327. height: math.unit(8 + 5/12, "feet"),
  42328. weight: math.unit(825, "lb"),
  42329. name: "Side",
  42330. image: {
  42331. source: "./media/characters/cobalt-charizard/side.svg",
  42332. extra: 1348/1257,
  42333. bottom: 58/1406
  42334. }
  42335. },
  42336. gMax: {
  42337. height: math.unit(134 + 11/12, "feet"),
  42338. name: "G-Max",
  42339. image: {
  42340. source: "./media/characters/cobalt-charizard/g-max.svg",
  42341. extra: 1835/1541,
  42342. bottom: 151/1986
  42343. }
  42344. },
  42345. },
  42346. [
  42347. {
  42348. name: "Normal",
  42349. height: math.unit(8 + 5/12, "feet"),
  42350. default: true
  42351. },
  42352. ]
  42353. ))
  42354. characterMakers.push(() => makeCharacter(
  42355. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42356. {
  42357. front: {
  42358. height: math.unit(6 + 3/12, "feet"),
  42359. weight: math.unit(210, "lb"),
  42360. name: "Front",
  42361. image: {
  42362. source: "./media/characters/stella/front.svg",
  42363. extra: 3549/3335,
  42364. bottom: 51/3600
  42365. }
  42366. },
  42367. },
  42368. [
  42369. {
  42370. name: "Normal",
  42371. height: math.unit(6 + 3/12, "feet"),
  42372. default: true
  42373. },
  42374. ]
  42375. ))
  42376. characterMakers.push(() => makeCharacter(
  42377. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42378. {
  42379. front: {
  42380. height: math.unit(5, "feet"),
  42381. weight: math.unit(90, "lb"),
  42382. name: "Front",
  42383. image: {
  42384. source: "./media/characters/riley-bishop/front.svg",
  42385. extra: 1450/1428,
  42386. bottom: 152/1602
  42387. }
  42388. },
  42389. },
  42390. [
  42391. {
  42392. name: "Normal",
  42393. height: math.unit(5, "feet"),
  42394. default: true
  42395. },
  42396. ]
  42397. ))
  42398. characterMakers.push(() => makeCharacter(
  42399. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42400. {
  42401. side: {
  42402. height: math.unit(8 + 2/12, "feet"),
  42403. weight: math.unit(500, "kg"),
  42404. name: "Side",
  42405. image: {
  42406. source: "./media/characters/theo-arcanine/side.svg",
  42407. extra: 1342/1074,
  42408. bottom: 111/1453
  42409. }
  42410. },
  42411. },
  42412. [
  42413. {
  42414. name: "Normal",
  42415. height: math.unit(8 + 2/12, "feet"),
  42416. default: true
  42417. },
  42418. ]
  42419. ))
  42420. characterMakers.push(() => makeCharacter(
  42421. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42422. {
  42423. front: {
  42424. height: math.unit(4, "feet"),
  42425. name: "Front",
  42426. image: {
  42427. source: "./media/characters/kali/front.svg",
  42428. extra: 1921/1357,
  42429. bottom: 70/1991
  42430. }
  42431. },
  42432. },
  42433. [
  42434. {
  42435. name: "Normal",
  42436. height: math.unit(4, "feet"),
  42437. default: true
  42438. },
  42439. {
  42440. name: "Macro",
  42441. height: math.unit(32, "meters")
  42442. },
  42443. {
  42444. name: "Macro+",
  42445. height: math.unit(150, "meters")
  42446. },
  42447. {
  42448. name: "Megamacro",
  42449. height: math.unit(7500, "meters")
  42450. },
  42451. {
  42452. name: "Megamacro+",
  42453. height: math.unit(80, "kilometers")
  42454. },
  42455. ]
  42456. ))
  42457. characterMakers.push(() => makeCharacter(
  42458. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42459. {
  42460. side: {
  42461. height: math.unit(5 + 11/12, "feet"),
  42462. weight: math.unit(236, "lb"),
  42463. name: "Side",
  42464. image: {
  42465. source: "./media/characters/gapp/side.svg",
  42466. extra: 775/340,
  42467. bottom: 58/833
  42468. }
  42469. },
  42470. mouth: {
  42471. height: math.unit(2.98, "feet"),
  42472. name: "Mouth",
  42473. image: {
  42474. source: "./media/characters/gapp/mouth.svg"
  42475. }
  42476. },
  42477. },
  42478. [
  42479. {
  42480. name: "Normal",
  42481. height: math.unit(5 + 1/12, "feet"),
  42482. default: true
  42483. },
  42484. ]
  42485. ))
  42486. characterMakers.push(() => makeCharacter(
  42487. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42488. {
  42489. front: {
  42490. height: math.unit(6, "feet"),
  42491. name: "Front",
  42492. image: {
  42493. source: "./media/characters/persephone/front.svg",
  42494. extra: 1895/1717,
  42495. bottom: 96/1991
  42496. }
  42497. },
  42498. back: {
  42499. height: math.unit(6, "feet"),
  42500. name: "Back",
  42501. image: {
  42502. source: "./media/characters/persephone/back.svg",
  42503. extra: 1868/1679,
  42504. bottom: 26/1894
  42505. }
  42506. },
  42507. casual: {
  42508. height: math.unit(6, "feet"),
  42509. name: "Casual",
  42510. image: {
  42511. source: "./media/characters/persephone/casual.svg",
  42512. extra: 1713/1541,
  42513. bottom: 76/1789
  42514. }
  42515. },
  42516. },
  42517. [
  42518. {
  42519. name: "Human Size",
  42520. height: math.unit(6, "feet")
  42521. },
  42522. {
  42523. name: "Big Steppy",
  42524. height: math.unit(600, "meters"),
  42525. default: true
  42526. },
  42527. {
  42528. name: "Galaxy Brain",
  42529. height: math.unit(1, "zettameter")
  42530. },
  42531. ]
  42532. ))
  42533. characterMakers.push(() => makeCharacter(
  42534. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42535. {
  42536. front: {
  42537. height: math.unit(1.85, "meters"),
  42538. name: "Front",
  42539. image: {
  42540. source: "./media/characters/riley-foxthing/front.svg",
  42541. extra: 1495/1354,
  42542. bottom: 122/1617
  42543. }
  42544. },
  42545. frontAlt: {
  42546. height: math.unit(1.85, "meters"),
  42547. name: "Front (Alt)",
  42548. image: {
  42549. source: "./media/characters/riley-foxthing/front-alt.svg",
  42550. extra: 1572/1389,
  42551. bottom: 116/1688
  42552. }
  42553. },
  42554. },
  42555. [
  42556. {
  42557. name: "Normal Sized",
  42558. height: math.unit(1.85, "meters"),
  42559. default: true
  42560. },
  42561. {
  42562. name: "Quite Sizable",
  42563. height: math.unit(5, "meters")
  42564. },
  42565. {
  42566. name: "Rather Large",
  42567. height: math.unit(20, "meters")
  42568. },
  42569. {
  42570. name: "Macro",
  42571. height: math.unit(450, "meters")
  42572. },
  42573. {
  42574. name: "Giga",
  42575. height: math.unit(5, "km")
  42576. },
  42577. ]
  42578. ))
  42579. characterMakers.push(() => makeCharacter(
  42580. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42581. {
  42582. front: {
  42583. height: math.unit(6, "feet"),
  42584. weight: math.unit(200, "lb"),
  42585. name: "Front",
  42586. image: {
  42587. source: "./media/characters/blizzard/front.svg",
  42588. extra: 1136/990,
  42589. bottom: 136/1272
  42590. }
  42591. },
  42592. back: {
  42593. height: math.unit(6, "feet"),
  42594. weight: math.unit(200, "lb"),
  42595. name: "Back",
  42596. image: {
  42597. source: "./media/characters/blizzard/back.svg",
  42598. extra: 1175/1034,
  42599. bottom: 97/1272
  42600. }
  42601. },
  42602. sitting: {
  42603. height: math.unit(3.725, "feet"),
  42604. weight: math.unit(200, "lb"),
  42605. name: "Sitting",
  42606. image: {
  42607. source: "./media/characters/blizzard/sitting.svg",
  42608. extra: 581/485,
  42609. bottom: 90/671
  42610. }
  42611. },
  42612. frontWizard: {
  42613. height: math.unit(7.9, "feet"),
  42614. weight: math.unit(200, "lb"),
  42615. name: "Front (Wizard)",
  42616. image: {
  42617. source: "./media/characters/blizzard/front-wizard.svg"
  42618. }
  42619. },
  42620. backWizard: {
  42621. height: math.unit(7.9, "feet"),
  42622. weight: math.unit(200, "lb"),
  42623. name: "Back (Wizard)",
  42624. image: {
  42625. source: "./media/characters/blizzard/back-wizard.svg"
  42626. }
  42627. },
  42628. frontNsfw: {
  42629. height: math.unit(6, "feet"),
  42630. weight: math.unit(200, "lb"),
  42631. name: "Front (NSFW)",
  42632. image: {
  42633. source: "./media/characters/blizzard/front-nsfw.svg",
  42634. extra: 1136/990,
  42635. bottom: 136/1272
  42636. }
  42637. },
  42638. backNsfw: {
  42639. height: math.unit(6, "feet"),
  42640. weight: math.unit(200, "lb"),
  42641. name: "Back (NSFW)",
  42642. image: {
  42643. source: "./media/characters/blizzard/back-nsfw.svg",
  42644. extra: 1175/1034,
  42645. bottom: 97/1272
  42646. }
  42647. },
  42648. sittingNsfw: {
  42649. height: math.unit(3.725, "feet"),
  42650. weight: math.unit(200, "lb"),
  42651. name: "Sitting (NSFW)",
  42652. image: {
  42653. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42654. extra: 581/485,
  42655. bottom: 90/671
  42656. }
  42657. },
  42658. wizardFrontNsfw: {
  42659. height: math.unit(7.9, "feet"),
  42660. weight: math.unit(200, "lb"),
  42661. name: "Wizard (Front, NSFW)",
  42662. image: {
  42663. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42664. }
  42665. },
  42666. },
  42667. [
  42668. {
  42669. name: "Normal",
  42670. height: math.unit(6, "feet"),
  42671. default: true
  42672. },
  42673. ]
  42674. ))
  42675. characterMakers.push(() => makeCharacter(
  42676. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42677. {
  42678. front: {
  42679. height: math.unit(5 + 2/12, "feet"),
  42680. name: "Front",
  42681. image: {
  42682. source: "./media/characters/lumi/front.svg",
  42683. extra: 1328/1268,
  42684. bottom: 103/1431
  42685. }
  42686. },
  42687. back: {
  42688. height: math.unit(5 + 2/12, "feet"),
  42689. name: "Back",
  42690. image: {
  42691. source: "./media/characters/lumi/back.svg",
  42692. extra: 1381/1327,
  42693. bottom: 43/1424
  42694. }
  42695. },
  42696. },
  42697. [
  42698. {
  42699. name: "Normal",
  42700. height: math.unit(5 + 2/12, "feet"),
  42701. default: true
  42702. },
  42703. ]
  42704. ))
  42705. characterMakers.push(() => makeCharacter(
  42706. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42707. {
  42708. front: {
  42709. height: math.unit(5 + 9/12, "feet"),
  42710. name: "Front",
  42711. image: {
  42712. source: "./media/characters/aliya-cotton/front.svg",
  42713. extra: 577/564,
  42714. bottom: 29/606
  42715. }
  42716. },
  42717. },
  42718. [
  42719. {
  42720. name: "Normal",
  42721. height: math.unit(5 + 9/12, "feet"),
  42722. default: true
  42723. },
  42724. ]
  42725. ))
  42726. characterMakers.push(() => makeCharacter(
  42727. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42728. {
  42729. front: {
  42730. height: math.unit(2.7, "meters"),
  42731. weight: math.unit(25000, "lb"),
  42732. name: "Front",
  42733. image: {
  42734. source: "./media/characters/noah-luxray/front.svg",
  42735. extra: 1644/825,
  42736. bottom: 339/1983
  42737. }
  42738. },
  42739. side: {
  42740. height: math.unit(2.97, "meters"),
  42741. weight: math.unit(25000, "lb"),
  42742. name: "Side",
  42743. image: {
  42744. source: "./media/characters/noah-luxray/side.svg",
  42745. extra: 1319/650,
  42746. bottom: 163/1482
  42747. }
  42748. },
  42749. dick: {
  42750. height: math.unit(7.4, "feet"),
  42751. weight: math.unit(2500, "lb"),
  42752. name: "Dick",
  42753. image: {
  42754. source: "./media/characters/noah-luxray/dick.svg"
  42755. }
  42756. },
  42757. dickAlt: {
  42758. height: math.unit(10.83, "feet"),
  42759. weight: math.unit(2500, "lb"),
  42760. name: "Dick-alt",
  42761. image: {
  42762. source: "./media/characters/noah-luxray/dick-alt.svg"
  42763. }
  42764. },
  42765. },
  42766. [
  42767. {
  42768. name: "BIG",
  42769. height: math.unit(2.7, "meters"),
  42770. default: true
  42771. },
  42772. ]
  42773. ))
  42774. characterMakers.push(() => makeCharacter(
  42775. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42776. {
  42777. standing: {
  42778. height: math.unit(183, "cm"),
  42779. weight: math.unit(68, "kg"),
  42780. name: "Standing",
  42781. image: {
  42782. source: "./media/characters/arion/standing.svg",
  42783. extra: 1869/1807,
  42784. bottom: 93/1962
  42785. }
  42786. },
  42787. reclining: {
  42788. height: math.unit(70.5, "cm"),
  42789. weight: math.unit(68, "lb"),
  42790. name: "Reclining",
  42791. image: {
  42792. source: "./media/characters/arion/reclining.svg",
  42793. extra: 937/870,
  42794. bottom: 63/1000
  42795. }
  42796. },
  42797. },
  42798. [
  42799. {
  42800. name: "Colossus Size, Low",
  42801. height: math.unit(33, "meters"),
  42802. default: true
  42803. },
  42804. {
  42805. name: "Colossus Size, Mid",
  42806. height: math.unit(52, "meters")
  42807. },
  42808. {
  42809. name: "Colossus Size, High",
  42810. height: math.unit(60, "meters")
  42811. },
  42812. {
  42813. name: "Titan Size, Low",
  42814. height: math.unit(91, "meters"),
  42815. },
  42816. {
  42817. name: "Titan Size, Mid",
  42818. height: math.unit(122, "meters")
  42819. },
  42820. {
  42821. name: "Titan Size, High",
  42822. height: math.unit(162, "meters")
  42823. },
  42824. ]
  42825. ))
  42826. characterMakers.push(() => makeCharacter(
  42827. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42828. {
  42829. front: {
  42830. height: math.unit(53, "meters"),
  42831. name: "Front",
  42832. image: {
  42833. source: "./media/characters/stellar-marbey/front.svg",
  42834. extra: 1913/1805,
  42835. bottom: 92/2005
  42836. }
  42837. },
  42838. back: {
  42839. height: math.unit(53, "meters"),
  42840. name: "Back",
  42841. image: {
  42842. source: "./media/characters/stellar-marbey/back.svg",
  42843. extra: 1960/1851,
  42844. bottom: 28/1988
  42845. }
  42846. },
  42847. mouth: {
  42848. height: math.unit(3.5, "meters"),
  42849. name: "Mouth",
  42850. image: {
  42851. source: "./media/characters/stellar-marbey/mouth.svg"
  42852. }
  42853. },
  42854. },
  42855. [
  42856. {
  42857. name: "Macro",
  42858. height: math.unit(53, "meters"),
  42859. default: true
  42860. },
  42861. ]
  42862. ))
  42863. characterMakers.push(() => makeCharacter(
  42864. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42865. {
  42866. front: {
  42867. height: math.unit(8 + 1/12, "feet"),
  42868. weight: math.unit(233, "lb"),
  42869. name: "Front",
  42870. image: {
  42871. source: "./media/characters/matsu/front.svg",
  42872. extra: 832/772,
  42873. bottom: 40/872
  42874. }
  42875. },
  42876. back: {
  42877. height: math.unit(8 + 1/12, "feet"),
  42878. weight: math.unit(233, "lb"),
  42879. name: "Back",
  42880. image: {
  42881. source: "./media/characters/matsu/back.svg",
  42882. extra: 839/780,
  42883. bottom: 47/886
  42884. }
  42885. },
  42886. },
  42887. [
  42888. {
  42889. name: "Normal",
  42890. height: math.unit(8 + 1/12, "feet"),
  42891. default: true
  42892. },
  42893. ]
  42894. ))
  42895. characterMakers.push(() => makeCharacter(
  42896. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42897. {
  42898. front: {
  42899. height: math.unit(4, "feet"),
  42900. weight: math.unit(148, "lb"),
  42901. name: "Front",
  42902. image: {
  42903. source: "./media/characters/thiz/front.svg",
  42904. extra: 1913/1748,
  42905. bottom: 62/1975
  42906. }
  42907. },
  42908. },
  42909. [
  42910. {
  42911. name: "Normal",
  42912. height: math.unit(4, "feet"),
  42913. default: true
  42914. },
  42915. ]
  42916. ))
  42917. characterMakers.push(() => makeCharacter(
  42918. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42919. {
  42920. front: {
  42921. height: math.unit(7 + 6/12, "feet"),
  42922. weight: math.unit(267, "lb"),
  42923. name: "Front",
  42924. image: {
  42925. source: "./media/characters/marcel/front.svg",
  42926. extra: 1221/1096,
  42927. bottom: 76/1297
  42928. }
  42929. },
  42930. },
  42931. [
  42932. {
  42933. name: "Normal",
  42934. height: math.unit(7 + 6/12, "feet"),
  42935. default: true
  42936. },
  42937. ]
  42938. ))
  42939. characterMakers.push(() => makeCharacter(
  42940. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42941. {
  42942. side: {
  42943. height: math.unit(42, "meters"),
  42944. name: "Side",
  42945. image: {
  42946. source: "./media/characters/flake/side.svg",
  42947. extra: 1525/1306,
  42948. bottom: 209/1734
  42949. }
  42950. },
  42951. },
  42952. [
  42953. {
  42954. name: "Normal",
  42955. height: math.unit(42, "meters"),
  42956. default: true
  42957. },
  42958. ]
  42959. ))
  42960. characterMakers.push(() => makeCharacter(
  42961. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  42962. {
  42963. dressed: {
  42964. height: math.unit(6 + 4/12, "feet"),
  42965. weight: math.unit(520, "lb"),
  42966. name: "Dressed",
  42967. image: {
  42968. source: "./media/characters/someonne/dressed.svg",
  42969. extra: 1020/1010,
  42970. bottom: 178/1198
  42971. }
  42972. },
  42973. undressed: {
  42974. height: math.unit(6 + 4/12, "feet"),
  42975. weight: math.unit(520, "lb"),
  42976. name: "Undressed",
  42977. image: {
  42978. source: "./media/characters/someonne/undressed.svg",
  42979. extra: 1019/1014,
  42980. bottom: 169/1188
  42981. }
  42982. },
  42983. },
  42984. [
  42985. {
  42986. name: "Normal",
  42987. height: math.unit(6 + 4/12, "feet"),
  42988. default: true
  42989. },
  42990. ]
  42991. ))
  42992. characterMakers.push(() => makeCharacter(
  42993. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  42994. {
  42995. front: {
  42996. height: math.unit(3, "feet"),
  42997. weight: math.unit(30, "lb"),
  42998. name: "Front",
  42999. image: {
  43000. source: "./media/characters/till/front.svg",
  43001. extra: 892/823,
  43002. bottom: 55/947
  43003. }
  43004. },
  43005. },
  43006. [
  43007. {
  43008. name: "Normal",
  43009. height: math.unit(3, "feet"),
  43010. default: true
  43011. },
  43012. ]
  43013. ))
  43014. characterMakers.push(() => makeCharacter(
  43015. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43016. {
  43017. front: {
  43018. height: math.unit(9 + 8/12, "feet"),
  43019. weight: math.unit(800, "lb"),
  43020. name: "Front",
  43021. image: {
  43022. source: "./media/characters/sydney-heki/front.svg",
  43023. extra: 1360/1300,
  43024. bottom: 22/1382
  43025. }
  43026. },
  43027. back: {
  43028. height: math.unit(9 + 8/12, "feet"),
  43029. weight: math.unit(800, "lb"),
  43030. name: "Back",
  43031. image: {
  43032. source: "./media/characters/sydney-heki/back.svg",
  43033. extra: 1356/1293,
  43034. bottom: 12/1368
  43035. }
  43036. },
  43037. frontDressed: {
  43038. height: math.unit(9 + 8/12, "feet"),
  43039. weight: math.unit(800, "lb"),
  43040. name: "Front-dressed",
  43041. image: {
  43042. source: "./media/characters/sydney-heki/front-dressed.svg",
  43043. extra: 1360/1300,
  43044. bottom: 22/1382
  43045. }
  43046. },
  43047. },
  43048. [
  43049. {
  43050. name: "Normal",
  43051. height: math.unit(9 + 8/12, "feet"),
  43052. default: true
  43053. },
  43054. {
  43055. name: "Macro",
  43056. height: math.unit(500, "feet")
  43057. },
  43058. {
  43059. name: "Megamacro",
  43060. height: math.unit(3.6, "miles")
  43061. },
  43062. ]
  43063. ))
  43064. characterMakers.push(() => makeCharacter(
  43065. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43066. {
  43067. front: {
  43068. height: math.unit(200, "cm"),
  43069. weight: math.unit(250, "lb"),
  43070. name: "Front",
  43071. image: {
  43072. source: "./media/characters/fowler-karlsson/front.svg",
  43073. extra: 897/845,
  43074. bottom: 123/1020
  43075. }
  43076. },
  43077. back: {
  43078. height: math.unit(200, "cm"),
  43079. weight: math.unit(250, "lb"),
  43080. name: "Back",
  43081. image: {
  43082. source: "./media/characters/fowler-karlsson/back.svg",
  43083. extra: 999/944,
  43084. bottom: 26/1025
  43085. }
  43086. },
  43087. dick: {
  43088. height: math.unit(1.92, "feet"),
  43089. weight: math.unit(150, "lb"),
  43090. name: "Dick",
  43091. image: {
  43092. source: "./media/characters/fowler-karlsson/dick.svg"
  43093. }
  43094. },
  43095. },
  43096. [
  43097. {
  43098. name: "Normal",
  43099. height: math.unit(200, "cm"),
  43100. default: true
  43101. },
  43102. {
  43103. name: "Smaller Macro",
  43104. height: math.unit(90, "m")
  43105. },
  43106. {
  43107. name: "Macro",
  43108. height: math.unit(150, "m")
  43109. },
  43110. {
  43111. name: "Bigger Macro",
  43112. height: math.unit(300, "m")
  43113. },
  43114. ]
  43115. ))
  43116. characterMakers.push(() => makeCharacter(
  43117. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43118. {
  43119. side: {
  43120. height: math.unit(8 + 2/12, "feet"),
  43121. weight: math.unit(1, "tonne"),
  43122. name: "Side",
  43123. image: {
  43124. source: "./media/characters/rylide/side.svg",
  43125. extra: 1318/1034,
  43126. bottom: 106/1424
  43127. }
  43128. },
  43129. sitting: {
  43130. height: math.unit(303, "cm"),
  43131. weight: math.unit(1, "tonne"),
  43132. name: "Sitting",
  43133. image: {
  43134. source: "./media/characters/rylide/sitting.svg",
  43135. extra: 1303/1103,
  43136. bottom: 36/1339
  43137. }
  43138. },
  43139. },
  43140. [
  43141. {
  43142. name: "Normal",
  43143. height: math.unit(8 + 2/12, "feet"),
  43144. default: true
  43145. },
  43146. ]
  43147. ))
  43148. characterMakers.push(() => makeCharacter(
  43149. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43150. {
  43151. front: {
  43152. height: math.unit(5 + 10/12, "feet"),
  43153. weight: math.unit(160, "lb"),
  43154. name: "Front",
  43155. image: {
  43156. source: "./media/characters/pudask/front.svg",
  43157. extra: 1616/1590,
  43158. bottom: 161/1777
  43159. }
  43160. },
  43161. },
  43162. [
  43163. {
  43164. name: "Ferret Height",
  43165. height: math.unit(2 + 5/12, "feet")
  43166. },
  43167. {
  43168. name: "Canon Height",
  43169. height: math.unit(5 + 10/12, "feet"),
  43170. default: true
  43171. },
  43172. ]
  43173. ))
  43174. characterMakers.push(() => makeCharacter(
  43175. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43176. {
  43177. front: {
  43178. height: math.unit(3 + 6/12, "feet"),
  43179. weight: math.unit(60, "lb"),
  43180. name: "Front",
  43181. image: {
  43182. source: "./media/characters/ramita/front.svg",
  43183. extra: 1402/1232,
  43184. bottom: 62/1464
  43185. }
  43186. },
  43187. dressed: {
  43188. height: math.unit(3 + 6/12, "feet"),
  43189. weight: math.unit(60, "lb"),
  43190. name: "Dressed",
  43191. image: {
  43192. source: "./media/characters/ramita/dressed.svg",
  43193. extra: 1534/1249,
  43194. bottom: 50/1584
  43195. }
  43196. },
  43197. },
  43198. [
  43199. {
  43200. name: "Normal",
  43201. height: math.unit(3 + 6/12, "feet"),
  43202. default: true
  43203. },
  43204. ]
  43205. ))
  43206. characterMakers.push(() => makeCharacter(
  43207. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43208. {
  43209. front: {
  43210. height: math.unit(8, "feet"),
  43211. name: "Front",
  43212. image: {
  43213. source: "./media/characters/ark/front.svg",
  43214. extra: 772/693,
  43215. bottom: 45/817
  43216. }
  43217. },
  43218. },
  43219. [
  43220. {
  43221. name: "Normal",
  43222. height: math.unit(8, "feet"),
  43223. default: true
  43224. },
  43225. ]
  43226. ))
  43227. characterMakers.push(() => makeCharacter(
  43228. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43229. {
  43230. front: {
  43231. height: math.unit(6, "feet"),
  43232. weight: math.unit(250, "lb"),
  43233. volume: math.unit(5/8, "gallons"),
  43234. name: "Front",
  43235. image: {
  43236. source: "./media/characters/ludwig-horn/front.svg",
  43237. extra: 1782/1635,
  43238. bottom: 96/1878
  43239. }
  43240. },
  43241. back: {
  43242. height: math.unit(6, "feet"),
  43243. weight: math.unit(250, "lb"),
  43244. volume: math.unit(5/8, "gallons"),
  43245. name: "Back",
  43246. image: {
  43247. source: "./media/characters/ludwig-horn/back.svg",
  43248. extra: 1874/1729,
  43249. bottom: 27/1901
  43250. }
  43251. },
  43252. dick: {
  43253. height: math.unit(1.05, "feet"),
  43254. weight: math.unit(15, "lb"),
  43255. volume: math.unit(5/8, "gallons"),
  43256. name: "Dick",
  43257. image: {
  43258. source: "./media/characters/ludwig-horn/dick.svg"
  43259. }
  43260. },
  43261. },
  43262. [
  43263. {
  43264. name: "Small",
  43265. height: math.unit(6, "feet")
  43266. },
  43267. {
  43268. name: "Typical",
  43269. height: math.unit(12, "feet"),
  43270. default: true
  43271. },
  43272. {
  43273. name: "Building",
  43274. height: math.unit(80, "feet")
  43275. },
  43276. {
  43277. name: "Town",
  43278. height: math.unit(800, "feet")
  43279. },
  43280. {
  43281. name: "Kingdom",
  43282. height: math.unit(80000, "feet")
  43283. },
  43284. {
  43285. name: "Planet",
  43286. height: math.unit(8000000, "feet")
  43287. },
  43288. {
  43289. name: "Universe",
  43290. height: math.unit(8000000000, "feet")
  43291. },
  43292. {
  43293. name: "Transcended",
  43294. height: math.unit(8e27, "feet")
  43295. },
  43296. ]
  43297. ))
  43298. characterMakers.push(() => makeCharacter(
  43299. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43300. {
  43301. front: {
  43302. height: math.unit(5, "feet"),
  43303. weight: math.unit(50, "kg"),
  43304. name: "Front",
  43305. image: {
  43306. source: "./media/characters/biot-avery/front.svg",
  43307. extra: 1295/1232,
  43308. bottom: 86/1381
  43309. }
  43310. },
  43311. },
  43312. [
  43313. {
  43314. name: "Normal",
  43315. height: math.unit(5, "feet"),
  43316. default: true
  43317. },
  43318. ]
  43319. ))
  43320. characterMakers.push(() => makeCharacter(
  43321. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43322. {
  43323. front: {
  43324. height: math.unit(6, "feet"),
  43325. name: "Front",
  43326. image: {
  43327. source: "./media/characters/kitsune-kiro/front.svg",
  43328. extra: 1270/1158,
  43329. bottom: 42/1312
  43330. }
  43331. },
  43332. frontAlt: {
  43333. height: math.unit(6, "feet"),
  43334. name: "Front-alt",
  43335. image: {
  43336. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43337. extra: 1130/1081,
  43338. bottom: 36/1166
  43339. }
  43340. },
  43341. },
  43342. [
  43343. {
  43344. name: "Smol",
  43345. height: math.unit(3, "feet")
  43346. },
  43347. {
  43348. name: "Normal",
  43349. height: math.unit(6, "feet"),
  43350. default: true
  43351. },
  43352. ]
  43353. ))
  43354. characterMakers.push(() => makeCharacter(
  43355. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43356. {
  43357. front: {
  43358. height: math.unit(6, "feet"),
  43359. weight: math.unit(125, "lb"),
  43360. name: "Front",
  43361. image: {
  43362. source: "./media/characters/jack-thatcher/front.svg",
  43363. extra: 1474/1370,
  43364. bottom: 26/1500
  43365. }
  43366. },
  43367. back: {
  43368. height: math.unit(6, "feet"),
  43369. weight: math.unit(125, "lb"),
  43370. name: "Back",
  43371. image: {
  43372. source: "./media/characters/jack-thatcher/back.svg",
  43373. extra: 1489/1384,
  43374. bottom: 18/1507
  43375. }
  43376. },
  43377. },
  43378. [
  43379. {
  43380. name: "Normal",
  43381. height: math.unit(6, "feet"),
  43382. default: true
  43383. },
  43384. {
  43385. name: "Macro",
  43386. height: math.unit(75, "feet")
  43387. },
  43388. {
  43389. name: "Macro-er",
  43390. height: math.unit(250, "feet")
  43391. },
  43392. ]
  43393. ))
  43394. characterMakers.push(() => makeCharacter(
  43395. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43396. {
  43397. front: {
  43398. height: math.unit(7, "feet"),
  43399. weight: math.unit(110, "kg"),
  43400. name: "Front",
  43401. image: {
  43402. source: "./media/characters/max-hyper/front.svg",
  43403. extra: 1969/1881,
  43404. bottom: 49/2018
  43405. }
  43406. },
  43407. },
  43408. [
  43409. {
  43410. name: "Normal",
  43411. height: math.unit(7, "feet"),
  43412. default: true
  43413. },
  43414. ]
  43415. ))
  43416. characterMakers.push(() => makeCharacter(
  43417. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43418. {
  43419. front: {
  43420. height: math.unit(5 + 5/12, "feet"),
  43421. weight: math.unit(160, "lb"),
  43422. name: "Front",
  43423. image: {
  43424. source: "./media/characters/spook/front.svg",
  43425. extra: 794/791,
  43426. bottom: 54/848
  43427. }
  43428. },
  43429. back: {
  43430. height: math.unit(5 + 5/12, "feet"),
  43431. weight: math.unit(160, "lb"),
  43432. name: "Back",
  43433. image: {
  43434. source: "./media/characters/spook/back.svg",
  43435. extra: 812/798,
  43436. bottom: 32/844
  43437. }
  43438. },
  43439. },
  43440. [
  43441. {
  43442. name: "Normal",
  43443. height: math.unit(5 + 5/12, "feet"),
  43444. default: true
  43445. },
  43446. ]
  43447. ))
  43448. characterMakers.push(() => makeCharacter(
  43449. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43450. {
  43451. front: {
  43452. height: math.unit(18, "feet"),
  43453. name: "Front",
  43454. image: {
  43455. source: "./media/characters/xeaduulix/front.svg",
  43456. extra: 1380/1166,
  43457. bottom: 110/1490
  43458. }
  43459. },
  43460. back: {
  43461. height: math.unit(18, "feet"),
  43462. name: "Back",
  43463. image: {
  43464. source: "./media/characters/xeaduulix/back.svg",
  43465. extra: 1592/1170,
  43466. bottom: 128/1720
  43467. }
  43468. },
  43469. frontNsfw: {
  43470. height: math.unit(18, "feet"),
  43471. name: "Front (NSFW)",
  43472. image: {
  43473. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43474. extra: 1380/1166,
  43475. bottom: 110/1490
  43476. }
  43477. },
  43478. backNsfw: {
  43479. height: math.unit(18, "feet"),
  43480. name: "Back (NSFW)",
  43481. image: {
  43482. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43483. extra: 1592/1170,
  43484. bottom: 128/1720
  43485. }
  43486. },
  43487. },
  43488. [
  43489. {
  43490. name: "Normal",
  43491. height: math.unit(18, "feet"),
  43492. default: true
  43493. },
  43494. ]
  43495. ))
  43496. characterMakers.push(() => makeCharacter(
  43497. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43498. {
  43499. spreadWings: {
  43500. height: math.unit(20, "feet"),
  43501. name: "Spread Wings",
  43502. image: {
  43503. source: "./media/characters/fledge/spread-wings.svg",
  43504. extra: 693/635,
  43505. bottom: 26/719
  43506. }
  43507. },
  43508. front: {
  43509. height: math.unit(20, "feet"),
  43510. name: "Front",
  43511. image: {
  43512. source: "./media/characters/fledge/front.svg",
  43513. extra: 684/637,
  43514. bottom: 18/702
  43515. }
  43516. },
  43517. frontAlt: {
  43518. height: math.unit(20, "feet"),
  43519. name: "Front (Alt)",
  43520. image: {
  43521. source: "./media/characters/fledge/front-alt.svg",
  43522. extra: 708/664,
  43523. bottom: 13/721
  43524. }
  43525. },
  43526. back: {
  43527. height: math.unit(20, "feet"),
  43528. name: "Back",
  43529. image: {
  43530. source: "./media/characters/fledge/back.svg",
  43531. extra: 718/634,
  43532. bottom: 22/740
  43533. }
  43534. },
  43535. head: {
  43536. height: math.unit(5.55, "feet"),
  43537. name: "Head",
  43538. image: {
  43539. source: "./media/characters/fledge/head.svg"
  43540. }
  43541. },
  43542. headAlt: {
  43543. height: math.unit(5.1, "feet"),
  43544. name: "Head (Alt)",
  43545. image: {
  43546. source: "./media/characters/fledge/head-alt.svg"
  43547. }
  43548. },
  43549. },
  43550. [
  43551. {
  43552. name: "Small",
  43553. height: math.unit(6 + 2/12, "feet")
  43554. },
  43555. {
  43556. name: "Big",
  43557. height: math.unit(20, "feet"),
  43558. default: true
  43559. },
  43560. {
  43561. name: "Giant",
  43562. height: math.unit(100, "feet")
  43563. },
  43564. {
  43565. name: "Macro",
  43566. height: math.unit(200, "feet")
  43567. },
  43568. ]
  43569. ))
  43570. characterMakers.push(() => makeCharacter(
  43571. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43572. {
  43573. front: {
  43574. height: math.unit(1, "meter"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/atlas-morenai/front.svg",
  43578. extra: 1275/1043,
  43579. bottom: 19/1294
  43580. }
  43581. },
  43582. back: {
  43583. height: math.unit(1, "meter"),
  43584. name: "Back",
  43585. image: {
  43586. source: "./media/characters/atlas-morenai/back.svg",
  43587. extra: 1141/1001,
  43588. bottom: 25/1166
  43589. }
  43590. },
  43591. },
  43592. [
  43593. {
  43594. name: "Normal",
  43595. height: math.unit(1, "meter"),
  43596. default: true
  43597. },
  43598. {
  43599. name: "Magic-Infused",
  43600. height: math.unit(5, "meters")
  43601. },
  43602. ]
  43603. ))
  43604. characterMakers.push(() => makeCharacter(
  43605. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43606. {
  43607. front: {
  43608. height: math.unit(5, "meters"),
  43609. name: "Front",
  43610. image: {
  43611. source: "./media/characters/cintia/front.svg",
  43612. extra: 1312/1228,
  43613. bottom: 38/1350
  43614. }
  43615. },
  43616. back: {
  43617. height: math.unit(5, "meters"),
  43618. name: "Back",
  43619. image: {
  43620. source: "./media/characters/cintia/back.svg",
  43621. extra: 1260/1166,
  43622. bottom: 98/1358
  43623. }
  43624. },
  43625. frontDick: {
  43626. height: math.unit(5, "meters"),
  43627. name: "Front (Dick)",
  43628. image: {
  43629. source: "./media/characters/cintia/front-dick.svg",
  43630. extra: 1312/1228,
  43631. bottom: 38/1350
  43632. }
  43633. },
  43634. backDick: {
  43635. height: math.unit(5, "meters"),
  43636. name: "Back (Dick)",
  43637. image: {
  43638. source: "./media/characters/cintia/back-dick.svg",
  43639. extra: 1260/1166,
  43640. bottom: 98/1358
  43641. }
  43642. },
  43643. bust: {
  43644. height: math.unit(1.97, "meters"),
  43645. name: "Bust",
  43646. image: {
  43647. source: "./media/characters/cintia/bust.svg",
  43648. extra: 617/565,
  43649. bottom: 0/617
  43650. }
  43651. },
  43652. },
  43653. [
  43654. {
  43655. name: "Normal",
  43656. height: math.unit(5, "meters"),
  43657. default: true
  43658. },
  43659. ]
  43660. ))
  43661. characterMakers.push(() => makeCharacter(
  43662. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43663. {
  43664. side: {
  43665. height: math.unit(100, "feet"),
  43666. name: "Side",
  43667. image: {
  43668. source: "./media/characters/denora/side.svg",
  43669. extra: 875/803,
  43670. bottom: 9/884
  43671. }
  43672. },
  43673. },
  43674. [
  43675. {
  43676. name: "Standard",
  43677. height: math.unit(100, "feet"),
  43678. default: true
  43679. },
  43680. {
  43681. name: "Grand",
  43682. height: math.unit(1000, "feet")
  43683. },
  43684. {
  43685. name: "Conquering",
  43686. height: math.unit(10000, "feet")
  43687. },
  43688. ]
  43689. ))
  43690. characterMakers.push(() => makeCharacter(
  43691. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43692. {
  43693. dressed: {
  43694. height: math.unit(8 + 5/12, "feet"),
  43695. weight: math.unit(700, "lb"),
  43696. name: "Dressed",
  43697. image: {
  43698. source: "./media/characters/kiva/dressed.svg",
  43699. extra: 1102/1055,
  43700. bottom: 60/1162
  43701. }
  43702. },
  43703. nude: {
  43704. height: math.unit(8 + 5/12, "feet"),
  43705. weight: math.unit(700, "lb"),
  43706. name: "Nude",
  43707. image: {
  43708. source: "./media/characters/kiva/nude.svg",
  43709. extra: 1102/1055,
  43710. bottom: 60/1162
  43711. }
  43712. },
  43713. },
  43714. [
  43715. {
  43716. name: "Base Height",
  43717. height: math.unit(8 + 5/12, "feet"),
  43718. default: true
  43719. },
  43720. {
  43721. name: "Macro",
  43722. height: math.unit(100, "feet")
  43723. },
  43724. {
  43725. name: "Max",
  43726. height: math.unit(3280, "feet")
  43727. },
  43728. ]
  43729. ))
  43730. characterMakers.push(() => makeCharacter(
  43731. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  43732. {
  43733. front: {
  43734. height: math.unit(6 + 8/12, "feet"),
  43735. weight: math.unit(250, "lb"),
  43736. name: "Front",
  43737. image: {
  43738. source: "./media/characters/ztragon/front.svg",
  43739. extra: 1825/1684,
  43740. bottom: 98/1923
  43741. }
  43742. },
  43743. },
  43744. [
  43745. {
  43746. name: "Normal",
  43747. height: math.unit(6 + 8/12, "feet"),
  43748. default: true
  43749. },
  43750. {
  43751. name: "Macro",
  43752. height: math.unit(80, "feet")
  43753. },
  43754. ]
  43755. ))
  43756. characterMakers.push(() => makeCharacter(
  43757. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  43758. {
  43759. front: {
  43760. height: math.unit(10.4, "feet"),
  43761. weight: math.unit(2, "tons"),
  43762. name: "Front",
  43763. image: {
  43764. source: "./media/characters/yesenia/front.svg",
  43765. extra: 1479/1474,
  43766. bottom: 233/1712
  43767. }
  43768. },
  43769. },
  43770. [
  43771. {
  43772. name: "Normal",
  43773. height: math.unit(10.4, "feet"),
  43774. default: true
  43775. },
  43776. ]
  43777. ))
  43778. //characters
  43779. function makeCharacters() {
  43780. const results = [];
  43781. characterMakers.forEach(character => {
  43782. results.push(character());
  43783. });
  43784. return results;
  43785. }