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

39823 lines
1001 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["mammal"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "T Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. }
  1659. //species
  1660. function getSpeciesInfo(speciesList) {
  1661. let result = new Set();
  1662. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1663. result.add(entry)
  1664. });
  1665. return Array.from(result);
  1666. };
  1667. function getSpeciesInfoHelper(species) {
  1668. if (!speciesData[species]) {
  1669. console.warn(species + " doesn't exist");
  1670. return [];
  1671. }
  1672. if (speciesData[species].parents) {
  1673. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1674. } else {
  1675. return [species];
  1676. }
  1677. }
  1678. characterMakers.push(() => makeCharacter(
  1679. {
  1680. name: "Fen",
  1681. species: ["crux"],
  1682. description: {
  1683. title: "Bio",
  1684. text: "Very furry. Sheds on everything."
  1685. },
  1686. tags: [
  1687. "anthro",
  1688. "goo"
  1689. ]
  1690. },
  1691. {
  1692. back: {
  1693. height: math.unit(2.2428, "meter"),
  1694. weight: math.unit(124.738, "kg"),
  1695. name: "Back",
  1696. image: {
  1697. source: "./media/characters/fen/back.svg",
  1698. extra: 2024 / 1867,
  1699. bottom: 13 / 2037
  1700. },
  1701. info: {
  1702. description: {
  1703. mode: "append",
  1704. text: "\n\nHe is not currently looking at you."
  1705. }
  1706. }
  1707. },
  1708. full: {
  1709. height: math.unit(1.34, "meter"),
  1710. weight: math.unit(225, "kg"),
  1711. name: "Full",
  1712. image: {
  1713. source: "./media/characters/fen/full.svg"
  1714. },
  1715. info: {
  1716. description: {
  1717. mode: "append",
  1718. text: "\n\nMunch."
  1719. }
  1720. }
  1721. },
  1722. kneeling: {
  1723. height: math.unit(5.4, "feet"),
  1724. weight: math.unit(124.738, "kg"),
  1725. name: "Kneeling",
  1726. image: {
  1727. source: "./media/characters/fen/kneeling.svg",
  1728. extra: 563 / 507
  1729. }
  1730. },
  1731. goo: {
  1732. height: math.unit(2.8, "feet"),
  1733. weight: math.unit(125, "kg"),
  1734. capacity: math.unit(1, "people"),
  1735. name: "Goo",
  1736. image: {
  1737. source: "./media/characters/fen/goo.svg",
  1738. bottom: 116 / 613
  1739. }
  1740. },
  1741. lounging: {
  1742. height: math.unit(6.5, "feet"),
  1743. weight: math.unit(125, "kg"),
  1744. name: "Lounging",
  1745. image: {
  1746. source: "./media/characters/fen/lounging.svg"
  1747. }
  1748. },
  1749. },
  1750. [
  1751. {
  1752. name: "Normal",
  1753. height: math.unit(2.2428, "meter")
  1754. },
  1755. {
  1756. name: "Big",
  1757. height: math.unit(12, "feet")
  1758. },
  1759. {
  1760. name: "Minimacro",
  1761. height: math.unit(40, "feet"),
  1762. default: true,
  1763. info: {
  1764. description: {
  1765. mode: "append",
  1766. text: "\n\nTOO DAMN BIG"
  1767. }
  1768. }
  1769. },
  1770. {
  1771. name: "Macro",
  1772. height: math.unit(100, "feet"),
  1773. info: {
  1774. description: {
  1775. mode: "append",
  1776. text: "\n\nTOO DAMN BIG"
  1777. }
  1778. }
  1779. },
  1780. {
  1781. name: "Macro+",
  1782. height: math.unit(300, "feet")
  1783. },
  1784. {
  1785. name: "Megamacro",
  1786. height: math.unit(2, "miles")
  1787. }
  1788. ]
  1789. ))
  1790. characterMakers.push(() => makeCharacter(
  1791. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1792. {
  1793. front: {
  1794. height: math.unit(183, "cm"),
  1795. weight: math.unit(80, "kg"),
  1796. name: "Front",
  1797. image: {
  1798. source: "./media/characters/sofia-fluttertail/front.svg",
  1799. bottom: 0.01,
  1800. extra: 2154 / 2081
  1801. }
  1802. },
  1803. frontAlt: {
  1804. height: math.unit(183, "cm"),
  1805. weight: math.unit(80, "kg"),
  1806. name: "Front (alt)",
  1807. image: {
  1808. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1809. }
  1810. },
  1811. back: {
  1812. height: math.unit(183, "cm"),
  1813. weight: math.unit(80, "kg"),
  1814. name: "Back",
  1815. image: {
  1816. source: "./media/characters/sofia-fluttertail/back.svg"
  1817. }
  1818. },
  1819. kneeling: {
  1820. height: math.unit(125, "cm"),
  1821. weight: math.unit(80, "kg"),
  1822. name: "Kneeling",
  1823. image: {
  1824. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1825. extra: 1033 / 977,
  1826. bottom: 23.7 / 1057
  1827. }
  1828. },
  1829. maw: {
  1830. height: math.unit(183 / 5, "cm"),
  1831. name: "Maw",
  1832. image: {
  1833. source: "./media/characters/sofia-fluttertail/maw.svg"
  1834. }
  1835. },
  1836. mawcloseup: {
  1837. height: math.unit(183 / 5 * 0.41, "cm"),
  1838. name: "Maw (Closeup)",
  1839. image: {
  1840. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1841. }
  1842. },
  1843. paws: {
  1844. height: math.unit(1.17, "feet"),
  1845. name: "Paws",
  1846. image: {
  1847. source: "./media/characters/sofia-fluttertail/paws.svg",
  1848. extra: 851 / 851,
  1849. bottom: 17 / 868
  1850. }
  1851. },
  1852. },
  1853. [
  1854. {
  1855. name: "Normal",
  1856. height: math.unit(1.83, "meter")
  1857. },
  1858. {
  1859. name: "Size Thief",
  1860. height: math.unit(18, "feet")
  1861. },
  1862. {
  1863. name: "50 Foot Collie",
  1864. height: math.unit(50, "feet")
  1865. },
  1866. {
  1867. name: "Macro",
  1868. height: math.unit(96, "feet"),
  1869. default: true
  1870. },
  1871. {
  1872. name: "Megamerger",
  1873. height: math.unit(650, "feet")
  1874. },
  1875. ]
  1876. ))
  1877. characterMakers.push(() => makeCharacter(
  1878. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1879. {
  1880. front: {
  1881. height: math.unit(7, "feet"),
  1882. weight: math.unit(100, "kg"),
  1883. name: "Front",
  1884. image: {
  1885. source: "./media/characters/march/front.svg",
  1886. extra: 1992/1851,
  1887. bottom: 39/2031
  1888. }
  1889. },
  1890. foot: {
  1891. height: math.unit(0.9, "feet"),
  1892. name: "Foot",
  1893. image: {
  1894. source: "./media/characters/march/foot.svg"
  1895. }
  1896. },
  1897. },
  1898. [
  1899. {
  1900. name: "Normal",
  1901. height: math.unit(7.9, "feet")
  1902. },
  1903. {
  1904. name: "Macro",
  1905. height: math.unit(220, "meters")
  1906. },
  1907. {
  1908. name: "Megamacro",
  1909. height: math.unit(2.98, "km"),
  1910. default: true
  1911. },
  1912. {
  1913. name: "Gigamacro",
  1914. height: math.unit(15963, "km")
  1915. },
  1916. {
  1917. name: "Teramacro",
  1918. height: math.unit(2980000000, "km")
  1919. },
  1920. {
  1921. name: "Examacro",
  1922. height: math.unit(250, "parsecs")
  1923. },
  1924. ]
  1925. ))
  1926. characterMakers.push(() => makeCharacter(
  1927. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1928. {
  1929. front: {
  1930. height: math.unit(6, "feet"),
  1931. weight: math.unit(60, "kg"),
  1932. name: "Front",
  1933. image: {
  1934. source: "./media/characters/noir/front.svg",
  1935. extra: 1,
  1936. bottom: 0.032
  1937. }
  1938. },
  1939. },
  1940. [
  1941. {
  1942. name: "Normal",
  1943. height: math.unit(6.6, "feet")
  1944. },
  1945. {
  1946. name: "Macro",
  1947. height: math.unit(500, "feet")
  1948. },
  1949. {
  1950. name: "Megamacro",
  1951. height: math.unit(2.5, "km"),
  1952. default: true
  1953. },
  1954. {
  1955. name: "Gigamacro",
  1956. height: math.unit(22500, "km")
  1957. },
  1958. {
  1959. name: "Teramacro",
  1960. height: math.unit(2500000000, "km")
  1961. },
  1962. {
  1963. name: "Examacro",
  1964. height: math.unit(200, "parsecs")
  1965. },
  1966. ]
  1967. ))
  1968. characterMakers.push(() => makeCharacter(
  1969. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1970. {
  1971. front: {
  1972. height: math.unit(7, "feet"),
  1973. weight: math.unit(100, "kg"),
  1974. name: "Front",
  1975. image: {
  1976. source: "./media/characters/okuri/front.svg",
  1977. extra: 1,
  1978. bottom: 0.037
  1979. }
  1980. },
  1981. back: {
  1982. height: math.unit(7, "feet"),
  1983. weight: math.unit(100, "kg"),
  1984. name: "Back",
  1985. image: {
  1986. source: "./media/characters/okuri/back.svg",
  1987. extra: 1,
  1988. bottom: 0.007
  1989. }
  1990. },
  1991. },
  1992. [
  1993. {
  1994. name: "Megamacro",
  1995. height: math.unit(100, "miles"),
  1996. default: true
  1997. },
  1998. ]
  1999. ))
  2000. characterMakers.push(() => makeCharacter(
  2001. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2002. {
  2003. front: {
  2004. height: math.unit(7, "feet"),
  2005. weight: math.unit(100, "kg"),
  2006. name: "Front",
  2007. image: {
  2008. source: "./media/characters/manny/front.svg",
  2009. extra: 1,
  2010. bottom: 0.06
  2011. }
  2012. },
  2013. back: {
  2014. height: math.unit(7, "feet"),
  2015. weight: math.unit(100, "kg"),
  2016. name: "Back",
  2017. image: {
  2018. source: "./media/characters/manny/back.svg",
  2019. extra: 1,
  2020. bottom: 0.014
  2021. }
  2022. },
  2023. },
  2024. [
  2025. {
  2026. name: "Normal",
  2027. height: math.unit(7, "feet"),
  2028. },
  2029. {
  2030. name: "Macro",
  2031. height: math.unit(78, "feet"),
  2032. default: true
  2033. },
  2034. {
  2035. name: "Macro+",
  2036. height: math.unit(300, "meters")
  2037. },
  2038. {
  2039. name: "Macro++",
  2040. height: math.unit(2400, "meters")
  2041. },
  2042. {
  2043. name: "Megamacro",
  2044. height: math.unit(5167, "meters")
  2045. },
  2046. {
  2047. name: "Gigamacro",
  2048. height: math.unit(41769, "miles")
  2049. },
  2050. ]
  2051. ))
  2052. characterMakers.push(() => makeCharacter(
  2053. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2054. {
  2055. front: {
  2056. height: math.unit(7, "feet"),
  2057. weight: math.unit(100, "kg"),
  2058. name: "Front",
  2059. image: {
  2060. source: "./media/characters/adake/front-1.svg"
  2061. }
  2062. },
  2063. frontAlt: {
  2064. height: math.unit(7, "feet"),
  2065. weight: math.unit(100, "kg"),
  2066. name: "Front (Alt)",
  2067. image: {
  2068. source: "./media/characters/adake/front-2.svg",
  2069. extra: 1,
  2070. bottom: 0.01
  2071. }
  2072. },
  2073. back: {
  2074. height: math.unit(7, "feet"),
  2075. weight: math.unit(100, "kg"),
  2076. name: "Back",
  2077. image: {
  2078. source: "./media/characters/adake/back.svg",
  2079. }
  2080. },
  2081. kneel: {
  2082. height: math.unit(5.385, "feet"),
  2083. weight: math.unit(100, "kg"),
  2084. name: "Kneeling",
  2085. image: {
  2086. source: "./media/characters/adake/kneel.svg",
  2087. bottom: 0.052
  2088. }
  2089. },
  2090. },
  2091. [
  2092. {
  2093. name: "Normal",
  2094. height: math.unit(7, "feet"),
  2095. },
  2096. {
  2097. name: "Macro",
  2098. height: math.unit(78, "feet"),
  2099. default: true
  2100. },
  2101. {
  2102. name: "Macro+",
  2103. height: math.unit(300, "meters")
  2104. },
  2105. {
  2106. name: "Macro++",
  2107. height: math.unit(2400, "meters")
  2108. },
  2109. {
  2110. name: "Megamacro",
  2111. height: math.unit(5167, "meters")
  2112. },
  2113. {
  2114. name: "Gigamacro",
  2115. height: math.unit(41769, "miles")
  2116. },
  2117. ]
  2118. ))
  2119. characterMakers.push(() => makeCharacter(
  2120. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2121. {
  2122. front: {
  2123. height: math.unit(1.65, "meters"),
  2124. weight: math.unit(50, "kg"),
  2125. name: "Front",
  2126. image: {
  2127. source: "./media/characters/elijah/front.svg",
  2128. extra: 858 / 830,
  2129. bottom: 95.5 / 953.8559
  2130. }
  2131. },
  2132. back: {
  2133. height: math.unit(1.65, "meters"),
  2134. weight: math.unit(50, "kg"),
  2135. name: "Back",
  2136. image: {
  2137. source: "./media/characters/elijah/back.svg",
  2138. extra: 895 / 850,
  2139. bottom: 5.3 / 897.956
  2140. }
  2141. },
  2142. frontNsfw: {
  2143. height: math.unit(1.65, "meters"),
  2144. weight: math.unit(50, "kg"),
  2145. name: "Front (NSFW)",
  2146. image: {
  2147. source: "./media/characters/elijah/front-nsfw.svg",
  2148. extra: 858 / 830,
  2149. bottom: 95.5 / 953.8559
  2150. }
  2151. },
  2152. backNsfw: {
  2153. height: math.unit(1.65, "meters"),
  2154. weight: math.unit(50, "kg"),
  2155. name: "Back (NSFW)",
  2156. image: {
  2157. source: "./media/characters/elijah/back-nsfw.svg",
  2158. extra: 895 / 850,
  2159. bottom: 5.3 / 897.956
  2160. }
  2161. },
  2162. dick: {
  2163. height: math.unit(1, "feet"),
  2164. name: "Dick",
  2165. image: {
  2166. source: "./media/characters/elijah/dick.svg"
  2167. }
  2168. },
  2169. beakOpen: {
  2170. height: math.unit(1.25, "feet"),
  2171. name: "Beak (Open)",
  2172. image: {
  2173. source: "./media/characters/elijah/beak-open.svg"
  2174. }
  2175. },
  2176. beakShut: {
  2177. height: math.unit(1.25, "feet"),
  2178. name: "Beak (Shut)",
  2179. image: {
  2180. source: "./media/characters/elijah/beak-shut.svg"
  2181. }
  2182. },
  2183. footFlexing: {
  2184. height: math.unit(1.61, "feet"),
  2185. name: "Foot (Flexing)",
  2186. image: {
  2187. source: "./media/characters/elijah/foot-flexing.svg"
  2188. }
  2189. },
  2190. footStepping: {
  2191. height: math.unit(1.44, "feet"),
  2192. name: "Foot (Stepping)",
  2193. image: {
  2194. source: "./media/characters/elijah/foot-stepping.svg"
  2195. }
  2196. },
  2197. plantigradeLeg: {
  2198. height: math.unit(2.34, "feet"),
  2199. name: "Plantigrade Leg",
  2200. image: {
  2201. source: "./media/characters/elijah/plantigrade-leg.svg"
  2202. }
  2203. },
  2204. plantigradeFootLeft: {
  2205. height: math.unit(0.9, "feet"),
  2206. name: "Plantigrade Foot (Left)",
  2207. image: {
  2208. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2209. }
  2210. },
  2211. plantigradeFootRight: {
  2212. height: math.unit(0.9, "feet"),
  2213. name: "Plantigrade Foot (Right)",
  2214. image: {
  2215. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2216. }
  2217. },
  2218. },
  2219. [
  2220. {
  2221. name: "Normal",
  2222. height: math.unit(1.65, "meters")
  2223. },
  2224. {
  2225. name: "Macro",
  2226. height: math.unit(55, "meters"),
  2227. default: true
  2228. },
  2229. {
  2230. name: "Macro+",
  2231. height: math.unit(105, "meters")
  2232. },
  2233. ]
  2234. ))
  2235. characterMakers.push(() => makeCharacter(
  2236. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2237. {
  2238. front: {
  2239. height: math.unit(11, "feet"),
  2240. weight: math.unit(320, "kg"),
  2241. name: "Front",
  2242. image: {
  2243. source: "./media/characters/rai/front.svg",
  2244. extra: 1802/1696,
  2245. bottom: 68/1870
  2246. }
  2247. },
  2248. frontDressed: {
  2249. height: math.unit(11, "feet"),
  2250. weight: math.unit(320, "kg"),
  2251. name: "Front (Dressed)",
  2252. image: {
  2253. source: "./media/characters/rai/front-dressed.svg",
  2254. extra: 1802/1696,
  2255. bottom: 68/1870
  2256. }
  2257. },
  2258. side: {
  2259. height: math.unit(11, "feet"),
  2260. weight: math.unit(320, "kg"),
  2261. name: "Side",
  2262. image: {
  2263. source: "./media/characters/rai/side.svg",
  2264. extra: 1789/1710,
  2265. bottom: 115/1904
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(11, "feet"),
  2270. weight: math.unit(320, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/rai/back.svg",
  2274. extra: 1770/1707,
  2275. bottom: 28/1798
  2276. }
  2277. },
  2278. feral: {
  2279. height: math.unit(11, "feet"),
  2280. weight: math.unit(640, "kg"),
  2281. name: "Feral",
  2282. image: {
  2283. source: "./media/characters/rai/feral.svg",
  2284. extra: 1035/642,
  2285. bottom: 86/1121
  2286. }
  2287. },
  2288. dragon: {
  2289. height: math.unit(23, "feet"),
  2290. weight: math.unit(50000, "lb"),
  2291. name: "Dragon",
  2292. image: {
  2293. source: "./media/characters/rai/dragon.svg",
  2294. extra: 2498 / 2030,
  2295. bottom: 85.2 / 2584
  2296. }
  2297. },
  2298. maw: {
  2299. height: math.unit(6 / 3.81416, "feet"),
  2300. name: "Maw",
  2301. image: {
  2302. source: "./media/characters/rai/maw.svg"
  2303. }
  2304. },
  2305. },
  2306. [
  2307. {
  2308. name: "Normal",
  2309. height: math.unit(11, "feet")
  2310. },
  2311. {
  2312. name: "Macro",
  2313. height: math.unit(302, "feet"),
  2314. default: true
  2315. },
  2316. ]
  2317. ))
  2318. characterMakers.push(() => makeCharacter(
  2319. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2320. {
  2321. frontDressed: {
  2322. height: math.unit(216, "feet"),
  2323. weight: math.unit(7000000, "lb"),
  2324. name: "Front (Dressed)",
  2325. image: {
  2326. source: "./media/characters/jazzy/front-dressed.svg",
  2327. extra: 2738 / 2651,
  2328. bottom: 41.8 / 2786
  2329. }
  2330. },
  2331. backDressed: {
  2332. height: math.unit(216, "feet"),
  2333. weight: math.unit(7000000, "lb"),
  2334. name: "Back (Dressed)",
  2335. image: {
  2336. source: "./media/characters/jazzy/back-dressed.svg",
  2337. extra: 2775 / 2673,
  2338. bottom: 36.8 / 2817
  2339. }
  2340. },
  2341. front: {
  2342. height: math.unit(216, "feet"),
  2343. weight: math.unit(7000000, "lb"),
  2344. name: "Front",
  2345. image: {
  2346. source: "./media/characters/jazzy/front.svg",
  2347. extra: 2738 / 2651,
  2348. bottom: 41.8 / 2786
  2349. }
  2350. },
  2351. back: {
  2352. height: math.unit(216, "feet"),
  2353. weight: math.unit(7000000, "lb"),
  2354. name: "Back",
  2355. image: {
  2356. source: "./media/characters/jazzy/back.svg",
  2357. extra: 2775 / 2673,
  2358. bottom: 36.8 / 2817
  2359. }
  2360. },
  2361. maw: {
  2362. height: math.unit(20, "feet"),
  2363. name: "Maw",
  2364. image: {
  2365. source: "./media/characters/jazzy/maw.svg"
  2366. }
  2367. },
  2368. paws: {
  2369. height: math.unit(27.5, "feet"),
  2370. name: "Paws",
  2371. image: {
  2372. source: "./media/characters/jazzy/paws.svg"
  2373. }
  2374. },
  2375. eye: {
  2376. height: math.unit(4.4, "feet"),
  2377. name: "Eye",
  2378. image: {
  2379. source: "./media/characters/jazzy/eye.svg"
  2380. }
  2381. },
  2382. droneOffense: {
  2383. height: math.unit(9.5, "inches"),
  2384. name: "Drone (Offense)",
  2385. image: {
  2386. source: "./media/characters/jazzy/drone-offense.svg"
  2387. }
  2388. },
  2389. droneRecon: {
  2390. height: math.unit(9.5, "inches"),
  2391. name: "Drone (Recon)",
  2392. image: {
  2393. source: "./media/characters/jazzy/drone-recon.svg"
  2394. }
  2395. },
  2396. droneDefense: {
  2397. height: math.unit(9.5, "inches"),
  2398. name: "Drone (Defense)",
  2399. image: {
  2400. source: "./media/characters/jazzy/drone-defense.svg"
  2401. }
  2402. },
  2403. },
  2404. [
  2405. {
  2406. name: "Macro",
  2407. height: math.unit(216, "feet"),
  2408. default: true
  2409. },
  2410. ]
  2411. ))
  2412. characterMakers.push(() => makeCharacter(
  2413. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2414. {
  2415. front: {
  2416. height: math.unit(9 + 6/12, "feet"),
  2417. weight: math.unit(700, "lb"),
  2418. name: "Front",
  2419. image: {
  2420. source: "./media/characters/flamm/front.svg",
  2421. extra: 1751/1632,
  2422. bottom: 46/1797
  2423. }
  2424. },
  2425. buff: {
  2426. height: math.unit(9 + 6/12, "feet"),
  2427. weight: math.unit(950, "lb"),
  2428. name: "Buff",
  2429. image: {
  2430. source: "./media/characters/flamm/buff.svg",
  2431. extra: 3018/2874,
  2432. bottom: 221/3239
  2433. }
  2434. },
  2435. },
  2436. [
  2437. {
  2438. name: "Normal",
  2439. height: math.unit(9.5, "feet")
  2440. },
  2441. {
  2442. name: "Macro",
  2443. height: math.unit(200, "feet"),
  2444. default: true
  2445. },
  2446. ]
  2447. ))
  2448. characterMakers.push(() => makeCharacter(
  2449. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2450. {
  2451. front: {
  2452. height: math.unit(5 + 3/12, "feet"),
  2453. weight: math.unit(60, "kg"),
  2454. name: "Front",
  2455. image: {
  2456. source: "./media/characters/zephiro/front.svg",
  2457. extra: 2309 / 2162,
  2458. bottom: 0.069
  2459. }
  2460. },
  2461. side: {
  2462. height: math.unit(5 + 3/12, "feet"),
  2463. weight: math.unit(60, "kg"),
  2464. name: "Side",
  2465. image: {
  2466. source: "./media/characters/zephiro/side.svg",
  2467. extra: 2403 / 2279,
  2468. bottom: 0.015
  2469. }
  2470. },
  2471. back: {
  2472. height: math.unit(5 + 3/12, "feet"),
  2473. weight: math.unit(60, "kg"),
  2474. name: "Back",
  2475. image: {
  2476. source: "./media/characters/zephiro/back.svg",
  2477. extra: 2373 / 2244,
  2478. bottom: 0.013
  2479. }
  2480. },
  2481. hand: {
  2482. height: math.unit(0.68, "feet"),
  2483. name: "Hand",
  2484. image: {
  2485. source: "./media/characters/zephiro/hand.svg"
  2486. }
  2487. },
  2488. paw: {
  2489. height: math.unit(1, "feet"),
  2490. name: "Paw",
  2491. image: {
  2492. source: "./media/characters/zephiro/paw.svg"
  2493. }
  2494. },
  2495. beans: {
  2496. height: math.unit(0.93, "feet"),
  2497. name: "Beans",
  2498. image: {
  2499. source: "./media/characters/zephiro/beans.svg"
  2500. }
  2501. },
  2502. },
  2503. [
  2504. {
  2505. name: "Micro",
  2506. height: math.unit(3, "inches")
  2507. },
  2508. {
  2509. name: "Normal",
  2510. height: math.unit(5 + 3 / 12, "feet"),
  2511. default: true
  2512. },
  2513. {
  2514. name: "Macro",
  2515. height: math.unit(118, "feet")
  2516. },
  2517. ]
  2518. ))
  2519. characterMakers.push(() => makeCharacter(
  2520. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2521. {
  2522. front: {
  2523. height: math.unit(5, "feet"),
  2524. weight: math.unit(90, "kg"),
  2525. name: "Front",
  2526. image: {
  2527. source: "./media/characters/fory/front.svg",
  2528. extra: 2862 / 2674,
  2529. bottom: 180 / 3043.8
  2530. }
  2531. },
  2532. back: {
  2533. height: math.unit(5, "feet"),
  2534. weight: math.unit(90, "kg"),
  2535. name: "Back",
  2536. image: {
  2537. source: "./media/characters/fory/back.svg",
  2538. extra: 2962 / 2791,
  2539. bottom: 106 / 3071.8
  2540. }
  2541. },
  2542. foot: {
  2543. height: math.unit(2.14, "feet"),
  2544. name: "Foot",
  2545. image: {
  2546. source: "./media/characters/fory/foot.svg"
  2547. }
  2548. },
  2549. },
  2550. [
  2551. {
  2552. name: "Normal",
  2553. height: math.unit(5, "feet")
  2554. },
  2555. {
  2556. name: "Macro",
  2557. height: math.unit(50, "feet"),
  2558. default: true
  2559. },
  2560. {
  2561. name: "Megamacro",
  2562. height: math.unit(10, "miles")
  2563. },
  2564. {
  2565. name: "Gigamacro",
  2566. height: math.unit(5, "earths")
  2567. },
  2568. ]
  2569. ))
  2570. characterMakers.push(() => makeCharacter(
  2571. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2572. {
  2573. front: {
  2574. height: math.unit(7, "feet"),
  2575. weight: math.unit(90, "kg"),
  2576. name: "Front",
  2577. image: {
  2578. source: "./media/characters/kurrikage/front.svg",
  2579. extra: 1,
  2580. bottom: 0.035
  2581. }
  2582. },
  2583. back: {
  2584. height: math.unit(7, "feet"),
  2585. weight: math.unit(90, "lb"),
  2586. name: "Back",
  2587. image: {
  2588. source: "./media/characters/kurrikage/back.svg"
  2589. }
  2590. },
  2591. paw: {
  2592. height: math.unit(1.5, "feet"),
  2593. name: "Paw",
  2594. image: {
  2595. source: "./media/characters/kurrikage/paw.svg"
  2596. }
  2597. },
  2598. staff: {
  2599. height: math.unit(6.7, "feet"),
  2600. name: "Staff",
  2601. image: {
  2602. source: "./media/characters/kurrikage/staff.svg"
  2603. }
  2604. },
  2605. peek: {
  2606. height: math.unit(1.05, "feet"),
  2607. name: "Peeking",
  2608. image: {
  2609. source: "./media/characters/kurrikage/peek.svg",
  2610. bottom: 0.08
  2611. }
  2612. },
  2613. },
  2614. [
  2615. {
  2616. name: "Normal",
  2617. height: math.unit(12, "feet"),
  2618. default: true
  2619. },
  2620. {
  2621. name: "Big",
  2622. height: math.unit(20, "feet")
  2623. },
  2624. {
  2625. name: "Macro",
  2626. height: math.unit(500, "feet")
  2627. },
  2628. {
  2629. name: "Megamacro",
  2630. height: math.unit(20, "miles")
  2631. },
  2632. ]
  2633. ))
  2634. characterMakers.push(() => makeCharacter(
  2635. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2636. {
  2637. front: {
  2638. height: math.unit(6, "feet"),
  2639. weight: math.unit(75, "kg"),
  2640. name: "Front",
  2641. image: {
  2642. source: "./media/characters/shingo/front.svg",
  2643. extra: 706/681,
  2644. bottom: 11/717
  2645. }
  2646. },
  2647. frontAlt: {
  2648. height: math.unit(6, "feet"),
  2649. weight: math.unit(75, "kg"),
  2650. name: "Front (Alt)",
  2651. image: {
  2652. source: "./media/characters/shingo/front-alt.svg",
  2653. extra: 3511 / 3338,
  2654. bottom: 0.005
  2655. }
  2656. },
  2657. paw: {
  2658. height: math.unit(1, "feet"),
  2659. name: "Paw",
  2660. image: {
  2661. source: "./media/characters/shingo/paw.svg"
  2662. }
  2663. },
  2664. },
  2665. [
  2666. {
  2667. name: "Micro",
  2668. height: math.unit(4, "inches")
  2669. },
  2670. {
  2671. name: "Normal",
  2672. height: math.unit(6, "feet"),
  2673. default: true
  2674. },
  2675. {
  2676. name: "Macro",
  2677. height: math.unit(108, "feet")
  2678. },
  2679. {
  2680. name: "Macro+",
  2681. height: math.unit(1500, "feet")
  2682. },
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2687. {
  2688. side: {
  2689. height: math.unit(6, "feet"),
  2690. weight: math.unit(75, "kg"),
  2691. name: "Side",
  2692. image: {
  2693. source: "./media/characters/aigey/side.svg"
  2694. }
  2695. },
  2696. },
  2697. [
  2698. {
  2699. name: "Macro",
  2700. height: math.unit(200, "feet"),
  2701. default: true
  2702. },
  2703. {
  2704. name: "Megamacro",
  2705. height: math.unit(100, "miles")
  2706. },
  2707. ]
  2708. )
  2709. )
  2710. characterMakers.push(() => makeCharacter(
  2711. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2712. {
  2713. front: {
  2714. height: math.unit(5 + 5 / 12, "feet"),
  2715. weight: math.unit(75, "kg"),
  2716. name: "Front",
  2717. image: {
  2718. source: "./media/characters/natasha/front.svg",
  2719. extra: 859 / 824,
  2720. bottom: 23 / 879.6
  2721. }
  2722. },
  2723. frontNsfw: {
  2724. height: math.unit(5 + 5 / 12, "feet"),
  2725. weight: math.unit(75, "kg"),
  2726. name: "Front (NSFW)",
  2727. image: {
  2728. source: "./media/characters/natasha/front-nsfw.svg",
  2729. extra: 859 / 824,
  2730. bottom: 23 / 879.6
  2731. }
  2732. },
  2733. frontErect: {
  2734. height: math.unit(5 + 5 / 12, "feet"),
  2735. weight: math.unit(75, "kg"),
  2736. name: "Front (Erect)",
  2737. image: {
  2738. source: "./media/characters/natasha/front-erect.svg",
  2739. extra: 859 / 824,
  2740. bottom: 23 / 879.6
  2741. }
  2742. },
  2743. back: {
  2744. height: math.unit(5 + 5 / 12, "feet"),
  2745. weight: math.unit(75, "kg"),
  2746. name: "Back",
  2747. image: {
  2748. source: "./media/characters/natasha/back.svg",
  2749. extra: 887.9 / 852.6,
  2750. bottom: 9.7 / 896.4
  2751. }
  2752. },
  2753. backAlt: {
  2754. height: math.unit(5 + 5 / 12, "feet"),
  2755. weight: math.unit(75, "kg"),
  2756. name: "Back (Alt)",
  2757. image: {
  2758. source: "./media/characters/natasha/back-alt.svg",
  2759. extra: 1236.7 / 1192,
  2760. bottom: 22.3 / 1258.2
  2761. }
  2762. },
  2763. dick: {
  2764. height: math.unit(1.772, "feet"),
  2765. name: "Dick",
  2766. image: {
  2767. source: "./media/characters/natasha/dick.svg"
  2768. }
  2769. },
  2770. paw: {
  2771. height: math.unit(0.250, "meters"),
  2772. name: "Paw",
  2773. image: {
  2774. source: "./media/characters/natasha/paw.svg"
  2775. }
  2776. },
  2777. },
  2778. [
  2779. {
  2780. name: "Normal",
  2781. height: math.unit(5 + 5 / 12, "feet")
  2782. },
  2783. {
  2784. name: "Large",
  2785. height: math.unit(12, "feet")
  2786. },
  2787. {
  2788. name: "Macro",
  2789. height: math.unit(100, "feet"),
  2790. default: true
  2791. },
  2792. {
  2793. name: "Macro+",
  2794. height: math.unit(260, "feet")
  2795. },
  2796. {
  2797. name: "Macro++",
  2798. height: math.unit(1, "mile")
  2799. },
  2800. ]
  2801. ))
  2802. characterMakers.push(() => makeCharacter(
  2803. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2804. {
  2805. front: {
  2806. height: math.unit(6, "feet"),
  2807. weight: math.unit(75, "kg"),
  2808. name: "Front",
  2809. image: {
  2810. source: "./media/characters/malik/front.svg"
  2811. }
  2812. },
  2813. side: {
  2814. height: math.unit(6, "feet"),
  2815. weight: math.unit(75, "kg"),
  2816. name: "Side",
  2817. image: {
  2818. source: "./media/characters/malik/side.svg",
  2819. extra: 1.1539
  2820. }
  2821. },
  2822. back: {
  2823. height: math.unit(6, "feet"),
  2824. weight: math.unit(75, "kg"),
  2825. name: "Back",
  2826. image: {
  2827. source: "./media/characters/malik/back.svg"
  2828. }
  2829. },
  2830. },
  2831. [
  2832. {
  2833. name: "Macro",
  2834. height: math.unit(156, "feet"),
  2835. default: true
  2836. },
  2837. {
  2838. name: "Macro+",
  2839. height: math.unit(1188, "feet")
  2840. },
  2841. ]
  2842. ))
  2843. characterMakers.push(() => makeCharacter(
  2844. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2845. {
  2846. front: {
  2847. height: math.unit(6, "feet"),
  2848. weight: math.unit(75, "kg"),
  2849. name: "Front",
  2850. image: {
  2851. source: "./media/characters/sefer/front.svg",
  2852. extra: 848 / 659,
  2853. bottom: 28.3 / 876.442
  2854. }
  2855. },
  2856. back: {
  2857. height: math.unit(6, "feet"),
  2858. weight: math.unit(75, "kg"),
  2859. name: "Back",
  2860. image: {
  2861. source: "./media/characters/sefer/back.svg",
  2862. extra: 864 / 695,
  2863. bottom: 10 / 871
  2864. }
  2865. },
  2866. frontDressed: {
  2867. height: math.unit(6, "feet"),
  2868. weight: math.unit(75, "kg"),
  2869. name: "Front (Dressed)",
  2870. image: {
  2871. source: "./media/characters/sefer/front-dressed.svg",
  2872. extra: 839 / 653,
  2873. bottom: 37.6 / 878
  2874. }
  2875. },
  2876. },
  2877. [
  2878. {
  2879. name: "Normal",
  2880. height: math.unit(6, "feet"),
  2881. default: true
  2882. },
  2883. ]
  2884. ))
  2885. characterMakers.push(() => makeCharacter(
  2886. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2887. {
  2888. body: {
  2889. height: math.unit(2.2428, "meter"),
  2890. weight: math.unit(124.738, "kg"),
  2891. name: "Body",
  2892. image: {
  2893. extra: 1225 / 1050,
  2894. source: "./media/characters/north/front.svg"
  2895. }
  2896. }
  2897. },
  2898. [
  2899. {
  2900. name: "Micro",
  2901. height: math.unit(4, "inches")
  2902. },
  2903. {
  2904. name: "Macro",
  2905. height: math.unit(63, "meters")
  2906. },
  2907. {
  2908. name: "Megamacro",
  2909. height: math.unit(101, "miles"),
  2910. default: true
  2911. }
  2912. ]
  2913. ))
  2914. characterMakers.push(() => makeCharacter(
  2915. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2916. {
  2917. angled: {
  2918. height: math.unit(4, "meter"),
  2919. weight: math.unit(150, "kg"),
  2920. name: "Angled",
  2921. image: {
  2922. source: "./media/characters/talan/angled-sfw.svg",
  2923. bottom: 29 / 3734
  2924. }
  2925. },
  2926. angledNsfw: {
  2927. height: math.unit(4, "meter"),
  2928. weight: math.unit(150, "kg"),
  2929. name: "Angled (NSFW)",
  2930. image: {
  2931. source: "./media/characters/talan/angled-nsfw.svg",
  2932. bottom: 29 / 3734
  2933. }
  2934. },
  2935. frontNsfw: {
  2936. height: math.unit(4, "meter"),
  2937. weight: math.unit(150, "kg"),
  2938. name: "Front (NSFW)",
  2939. image: {
  2940. source: "./media/characters/talan/front-nsfw.svg",
  2941. bottom: 29 / 3734
  2942. }
  2943. },
  2944. sideNsfw: {
  2945. height: math.unit(4, "meter"),
  2946. weight: math.unit(150, "kg"),
  2947. name: "Side (NSFW)",
  2948. image: {
  2949. source: "./media/characters/talan/side-nsfw.svg",
  2950. bottom: 29 / 3734
  2951. }
  2952. },
  2953. back: {
  2954. height: math.unit(4, "meter"),
  2955. weight: math.unit(150, "kg"),
  2956. name: "Back",
  2957. image: {
  2958. source: "./media/characters/talan/back.svg"
  2959. }
  2960. },
  2961. dickBottom: {
  2962. height: math.unit(0.621, "meter"),
  2963. name: "Dick (Bottom)",
  2964. image: {
  2965. source: "./media/characters/talan/dick-bottom.svg"
  2966. }
  2967. },
  2968. dickTop: {
  2969. height: math.unit(0.621, "meter"),
  2970. name: "Dick (Top)",
  2971. image: {
  2972. source: "./media/characters/talan/dick-top.svg"
  2973. }
  2974. },
  2975. dickSide: {
  2976. height: math.unit(0.305, "meter"),
  2977. name: "Dick (Side)",
  2978. image: {
  2979. source: "./media/characters/talan/dick-side.svg"
  2980. }
  2981. },
  2982. dickFront: {
  2983. height: math.unit(0.305, "meter"),
  2984. name: "Dick (Front)",
  2985. image: {
  2986. source: "./media/characters/talan/dick-front.svg"
  2987. }
  2988. },
  2989. },
  2990. [
  2991. {
  2992. name: "Normal",
  2993. height: math.unit(4, "meters")
  2994. },
  2995. {
  2996. name: "Macro",
  2997. height: math.unit(100, "meters")
  2998. },
  2999. {
  3000. name: "Megamacro",
  3001. height: math.unit(2, "miles"),
  3002. default: true
  3003. },
  3004. {
  3005. name: "Gigamacro",
  3006. height: math.unit(5000, "miles")
  3007. },
  3008. {
  3009. name: "Teramacro",
  3010. height: math.unit(100, "parsecs")
  3011. }
  3012. ]
  3013. ))
  3014. characterMakers.push(() => makeCharacter(
  3015. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3016. {
  3017. front: {
  3018. height: math.unit(2, "meter"),
  3019. weight: math.unit(90, "kg"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/gael'rathus/front.svg"
  3023. }
  3024. },
  3025. frontAlt: {
  3026. height: math.unit(2, "meter"),
  3027. weight: math.unit(90, "kg"),
  3028. name: "Front (alt)",
  3029. image: {
  3030. source: "./media/characters/gael'rathus/front-alt.svg"
  3031. }
  3032. },
  3033. frontAlt2: {
  3034. height: math.unit(2, "meter"),
  3035. weight: math.unit(90, "kg"),
  3036. name: "Front (alt 2)",
  3037. image: {
  3038. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3039. }
  3040. }
  3041. },
  3042. [
  3043. {
  3044. name: "Normal",
  3045. height: math.unit(9, "feet"),
  3046. default: true
  3047. },
  3048. {
  3049. name: "Large",
  3050. height: math.unit(25, "feet")
  3051. },
  3052. {
  3053. name: "Macro",
  3054. height: math.unit(0.25, "miles")
  3055. },
  3056. {
  3057. name: "Megamacro",
  3058. height: math.unit(10, "miles")
  3059. }
  3060. ]
  3061. ))
  3062. characterMakers.push(() => makeCharacter(
  3063. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3064. {
  3065. side: {
  3066. height: math.unit(2, "meter"),
  3067. weight: math.unit(140, "kg"),
  3068. name: "Side",
  3069. image: {
  3070. source: "./media/characters/sosha/side.svg",
  3071. bottom: 0.042
  3072. }
  3073. },
  3074. },
  3075. [
  3076. {
  3077. name: "Normal",
  3078. height: math.unit(12, "feet"),
  3079. default: true
  3080. }
  3081. ]
  3082. ))
  3083. characterMakers.push(() => makeCharacter(
  3084. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3085. {
  3086. side: {
  3087. height: math.unit(5 + 5 / 12, "feet"),
  3088. weight: math.unit(170, "kg"),
  3089. name: "Side",
  3090. image: {
  3091. source: "./media/characters/runnola/side.svg",
  3092. extra: 741 / 448,
  3093. bottom: 0.05
  3094. }
  3095. },
  3096. },
  3097. [
  3098. {
  3099. name: "Small",
  3100. height: math.unit(3, "feet")
  3101. },
  3102. {
  3103. name: "Normal",
  3104. height: math.unit(5 + 5 / 12, "feet"),
  3105. default: true
  3106. },
  3107. {
  3108. name: "Big",
  3109. height: math.unit(10, "feet")
  3110. },
  3111. ]
  3112. ))
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3115. {
  3116. front: {
  3117. height: math.unit(2, "meter"),
  3118. weight: math.unit(50, "kg"),
  3119. name: "Front",
  3120. image: {
  3121. source: "./media/characters/kurribird/front.svg",
  3122. bottom: 0.015
  3123. }
  3124. },
  3125. frontAlt: {
  3126. height: math.unit(1.5, "meter"),
  3127. weight: math.unit(50, "kg"),
  3128. name: "Front (Alt)",
  3129. image: {
  3130. source: "./media/characters/kurribird/front-alt.svg",
  3131. extra: 1.45
  3132. }
  3133. },
  3134. },
  3135. [
  3136. {
  3137. name: "Normal",
  3138. height: math.unit(7, "feet")
  3139. },
  3140. {
  3141. name: "Big",
  3142. height: math.unit(12, "feet"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Macro",
  3147. height: math.unit(1500, "feet")
  3148. },
  3149. {
  3150. name: "Megamacro",
  3151. height: math.unit(2, "miles")
  3152. }
  3153. ]
  3154. ))
  3155. characterMakers.push(() => makeCharacter(
  3156. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3157. {
  3158. front: {
  3159. height: math.unit(2, "meter"),
  3160. weight: math.unit(80, "kg"),
  3161. name: "Front",
  3162. image: {
  3163. source: "./media/characters/elbial/front.svg",
  3164. extra: 1643 / 1556,
  3165. bottom: 60.2 / 1696
  3166. }
  3167. },
  3168. side: {
  3169. height: math.unit(2, "meter"),
  3170. weight: math.unit(80, "kg"),
  3171. name: "Side",
  3172. image: {
  3173. source: "./media/characters/elbial/side.svg",
  3174. extra: 1630 / 1565,
  3175. bottom: 71.5 / 1697
  3176. }
  3177. },
  3178. back: {
  3179. height: math.unit(2, "meter"),
  3180. weight: math.unit(80, "kg"),
  3181. name: "Back",
  3182. image: {
  3183. source: "./media/characters/elbial/back.svg",
  3184. extra: 1668 / 1595,
  3185. bottom: 5.6 / 1672
  3186. }
  3187. },
  3188. frontDressed: {
  3189. height: math.unit(2, "meter"),
  3190. weight: math.unit(80, "kg"),
  3191. name: "Front (Dressed)",
  3192. image: {
  3193. source: "./media/characters/elbial/front-dressed.svg",
  3194. extra: 1653 / 1584,
  3195. bottom: 57 / 1708
  3196. }
  3197. },
  3198. genitals: {
  3199. height: math.unit(2 / 3.367, "meter"),
  3200. name: "Genitals",
  3201. image: {
  3202. source: "./media/characters/elbial/genitals.svg"
  3203. }
  3204. },
  3205. },
  3206. [
  3207. {
  3208. name: "Large",
  3209. height: math.unit(100, "feet")
  3210. },
  3211. {
  3212. name: "Macro",
  3213. height: math.unit(500, "feet"),
  3214. default: true
  3215. },
  3216. {
  3217. name: "Megamacro",
  3218. height: math.unit(10, "miles")
  3219. },
  3220. {
  3221. name: "Gigamacro",
  3222. height: math.unit(25000, "miles")
  3223. },
  3224. {
  3225. name: "Full-Size",
  3226. height: math.unit(8000000, "gigaparsecs")
  3227. }
  3228. ]
  3229. ))
  3230. characterMakers.push(() => makeCharacter(
  3231. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3232. {
  3233. front: {
  3234. height: math.unit(2, "meter"),
  3235. weight: math.unit(60, "kg"),
  3236. name: "Front",
  3237. image: {
  3238. source: "./media/characters/noah/front.svg"
  3239. }
  3240. },
  3241. talons: {
  3242. height: math.unit(0.315, "meter"),
  3243. name: "Talons",
  3244. image: {
  3245. source: "./media/characters/noah/talons.svg"
  3246. }
  3247. }
  3248. },
  3249. [
  3250. {
  3251. name: "Large",
  3252. height: math.unit(50, "feet")
  3253. },
  3254. {
  3255. name: "Macro",
  3256. height: math.unit(750, "feet"),
  3257. default: true
  3258. },
  3259. {
  3260. name: "Megamacro",
  3261. height: math.unit(50, "miles")
  3262. },
  3263. {
  3264. name: "Gigamacro",
  3265. height: math.unit(100000, "miles")
  3266. },
  3267. {
  3268. name: "Full-Size",
  3269. height: math.unit(3000000000, "miles")
  3270. }
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3275. {
  3276. front: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(80, "kg"),
  3279. name: "Front",
  3280. image: {
  3281. source: "./media/characters/natalya/front.svg"
  3282. }
  3283. },
  3284. back: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(80, "kg"),
  3287. name: "Back",
  3288. image: {
  3289. source: "./media/characters/natalya/back.svg"
  3290. }
  3291. }
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(150, "feet"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Megamacro",
  3301. height: math.unit(5, "miles")
  3302. },
  3303. {
  3304. name: "Full-Size",
  3305. height: math.unit(600, "kiloparsecs")
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3311. {
  3312. front: {
  3313. height: math.unit(2, "meter"),
  3314. weight: math.unit(50, "kg"),
  3315. name: "Front",
  3316. image: {
  3317. source: "./media/characters/erestrebah/front.svg",
  3318. extra: 208 / 193,
  3319. bottom: 0.055
  3320. }
  3321. },
  3322. back: {
  3323. height: math.unit(2, "meter"),
  3324. weight: math.unit(50, "kg"),
  3325. name: "Back",
  3326. image: {
  3327. source: "./media/characters/erestrebah/back.svg",
  3328. extra: 1.3
  3329. }
  3330. }
  3331. },
  3332. [
  3333. {
  3334. name: "Normal",
  3335. height: math.unit(10, "feet")
  3336. },
  3337. {
  3338. name: "Large",
  3339. height: math.unit(50, "feet"),
  3340. default: true
  3341. },
  3342. {
  3343. name: "Macro",
  3344. height: math.unit(300, "feet")
  3345. },
  3346. {
  3347. name: "Macro+",
  3348. height: math.unit(750, "feet")
  3349. },
  3350. {
  3351. name: "Megamacro",
  3352. height: math.unit(3, "miles")
  3353. }
  3354. ]
  3355. ))
  3356. characterMakers.push(() => makeCharacter(
  3357. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3358. {
  3359. front: {
  3360. height: math.unit(2, "meter"),
  3361. weight: math.unit(80, "kg"),
  3362. name: "Front",
  3363. image: {
  3364. source: "./media/characters/jennifer/front.svg",
  3365. bottom: 0.11,
  3366. extra: 1.16
  3367. }
  3368. },
  3369. frontAlt: {
  3370. height: math.unit(2, "meter"),
  3371. weight: math.unit(80, "kg"),
  3372. name: "Front (Alt)",
  3373. image: {
  3374. source: "./media/characters/jennifer/front-alt.svg"
  3375. }
  3376. }
  3377. },
  3378. [
  3379. {
  3380. name: "Canon Height",
  3381. height: math.unit(120, "feet"),
  3382. default: true
  3383. },
  3384. {
  3385. name: "Macro+",
  3386. height: math.unit(300, "feet")
  3387. },
  3388. {
  3389. name: "Megamacro",
  3390. height: math.unit(20000, "feet")
  3391. }
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3396. {
  3397. front: {
  3398. height: math.unit(2, "meter"),
  3399. weight: math.unit(50, "kg"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/kalista/front.svg",
  3403. extra: 1947 / 1700,
  3404. bottom: 76.6 / 1412.98
  3405. }
  3406. },
  3407. back: {
  3408. height: math.unit(2, "meter"),
  3409. weight: math.unit(50, "kg"),
  3410. name: "Back",
  3411. image: {
  3412. source: "./media/characters/kalista/back.svg",
  3413. extra: 1366 / 1156,
  3414. bottom: 33.9 / 1362.78
  3415. }
  3416. }
  3417. },
  3418. [
  3419. {
  3420. name: "Uncomfortably Small",
  3421. height: math.unit(10, "feet")
  3422. },
  3423. {
  3424. name: "Small",
  3425. height: math.unit(30, "feet")
  3426. },
  3427. {
  3428. name: "Macro",
  3429. height: math.unit(100, "feet"),
  3430. default: true
  3431. },
  3432. {
  3433. name: "Macro+",
  3434. height: math.unit(2000, "feet")
  3435. },
  3436. {
  3437. name: "True Form",
  3438. height: math.unit(8924, "miles")
  3439. }
  3440. ]
  3441. ))
  3442. characterMakers.push(() => makeCharacter(
  3443. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3444. {
  3445. front: {
  3446. height: math.unit(2, "meter"),
  3447. weight: math.unit(120, "kg"),
  3448. name: "Front",
  3449. image: {
  3450. source: "./media/characters/ggv/front.svg"
  3451. }
  3452. },
  3453. side: {
  3454. height: math.unit(2, "meter"),
  3455. weight: math.unit(120, "kg"),
  3456. name: "Side",
  3457. image: {
  3458. source: "./media/characters/ggv/side.svg"
  3459. }
  3460. }
  3461. },
  3462. [
  3463. {
  3464. name: "Extremely Puny",
  3465. height: math.unit(9 + 5 / 12, "feet")
  3466. },
  3467. {
  3468. name: "Horribly Small",
  3469. height: math.unit(47.7, "miles"),
  3470. default: true
  3471. },
  3472. {
  3473. name: "Reasonably Sized",
  3474. height: math.unit(25000, "parsecs")
  3475. },
  3476. {
  3477. name: "Slightly Uncompressed",
  3478. height: math.unit(7.77e31, "parsecs")
  3479. },
  3480. {
  3481. name: "Omniversal",
  3482. height: math.unit(1e300, "meters")
  3483. },
  3484. ]
  3485. ))
  3486. characterMakers.push(() => makeCharacter(
  3487. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3488. {
  3489. front: {
  3490. height: math.unit(2, "meter"),
  3491. weight: math.unit(75, "lb"),
  3492. name: "Front",
  3493. image: {
  3494. source: "./media/characters/napalm/front.svg"
  3495. }
  3496. },
  3497. back: {
  3498. height: math.unit(2, "meter"),
  3499. weight: math.unit(75, "lb"),
  3500. name: "Back",
  3501. image: {
  3502. source: "./media/characters/napalm/back.svg"
  3503. }
  3504. }
  3505. },
  3506. [
  3507. {
  3508. name: "Standard",
  3509. height: math.unit(55, "feet"),
  3510. default: true
  3511. }
  3512. ]
  3513. ))
  3514. characterMakers.push(() => makeCharacter(
  3515. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3516. {
  3517. front: {
  3518. height: math.unit(7 + 5 / 6, "feet"),
  3519. weight: math.unit(325, "lb"),
  3520. name: "Front",
  3521. image: {
  3522. source: "./media/characters/asana/front.svg",
  3523. extra: 1133 / 1060,
  3524. bottom: 15.2 / 1148.6
  3525. }
  3526. },
  3527. back: {
  3528. height: math.unit(7 + 5 / 6, "feet"),
  3529. weight: math.unit(325, "lb"),
  3530. name: "Back",
  3531. image: {
  3532. source: "./media/characters/asana/back.svg",
  3533. extra: 1114 / 1043,
  3534. bottom: 5 / 1120
  3535. }
  3536. },
  3537. dressedDark: {
  3538. height: math.unit(7 + 5 / 6, "feet"),
  3539. weight: math.unit(325, "lb"),
  3540. name: "Dressed (Dark)",
  3541. image: {
  3542. source: "./media/characters/asana/dressed-dark.svg",
  3543. extra: 1133 / 1060,
  3544. bottom: 15.2 / 1148.6
  3545. }
  3546. },
  3547. dressedLight: {
  3548. height: math.unit(7 + 5 / 6, "feet"),
  3549. weight: math.unit(325, "lb"),
  3550. name: "Dressed (Light)",
  3551. image: {
  3552. source: "./media/characters/asana/dressed-light.svg",
  3553. extra: 1133 / 1060,
  3554. bottom: 15.2 / 1148.6
  3555. }
  3556. },
  3557. },
  3558. [
  3559. {
  3560. name: "Standard",
  3561. height: math.unit(7 + 5 / 6, "feet"),
  3562. default: true
  3563. },
  3564. {
  3565. name: "Large",
  3566. height: math.unit(10, "meters")
  3567. },
  3568. {
  3569. name: "Macro",
  3570. height: math.unit(2500, "meters")
  3571. },
  3572. {
  3573. name: "Megamacro",
  3574. height: math.unit(5e6, "meters")
  3575. },
  3576. {
  3577. name: "Examacro",
  3578. height: math.unit(5e12, "lightyears")
  3579. },
  3580. {
  3581. name: "Max Size",
  3582. height: math.unit(1e31, "lightyears")
  3583. }
  3584. ]
  3585. ))
  3586. characterMakers.push(() => makeCharacter(
  3587. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3588. {
  3589. front: {
  3590. height: math.unit(2, "meter"),
  3591. weight: math.unit(60, "kg"),
  3592. name: "Front",
  3593. image: {
  3594. source: "./media/characters/ebony/front.svg",
  3595. bottom: 0.03,
  3596. extra: 1045 / 810 + 0.03
  3597. }
  3598. },
  3599. side: {
  3600. height: math.unit(2, "meter"),
  3601. weight: math.unit(60, "kg"),
  3602. name: "Side",
  3603. image: {
  3604. source: "./media/characters/ebony/side.svg",
  3605. bottom: 0.03,
  3606. extra: 1045 / 810 + 0.03
  3607. }
  3608. },
  3609. back: {
  3610. height: math.unit(2, "meter"),
  3611. weight: math.unit(60, "kg"),
  3612. name: "Back",
  3613. image: {
  3614. source: "./media/characters/ebony/back.svg",
  3615. bottom: 0.01,
  3616. extra: 1045 / 810 + 0.01
  3617. }
  3618. },
  3619. },
  3620. [
  3621. // TODO check why I did this lol
  3622. {
  3623. name: "Standard",
  3624. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Macro",
  3629. height: math.unit(200, "feet")
  3630. },
  3631. {
  3632. name: "Gigamacro",
  3633. height: math.unit(13000, "km")
  3634. }
  3635. ]
  3636. ))
  3637. characterMakers.push(() => makeCharacter(
  3638. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3639. {
  3640. front: {
  3641. height: math.unit(6, "feet"),
  3642. weight: math.unit(175, "lb"),
  3643. name: "Front",
  3644. image: {
  3645. source: "./media/characters/mountain/front.svg",
  3646. extra: 972 / 955,
  3647. bottom: 64 / 1036.6
  3648. }
  3649. },
  3650. back: {
  3651. height: math.unit(6, "feet"),
  3652. weight: math.unit(175, "lb"),
  3653. name: "Back",
  3654. image: {
  3655. source: "./media/characters/mountain/back.svg",
  3656. extra: 970 / 950,
  3657. bottom: 28.25 / 999
  3658. }
  3659. },
  3660. },
  3661. [
  3662. {
  3663. name: "Large",
  3664. height: math.unit(20, "meters")
  3665. },
  3666. {
  3667. name: "Macro",
  3668. height: math.unit(300, "meters")
  3669. },
  3670. {
  3671. name: "Gigamacro",
  3672. height: math.unit(10000, "km"),
  3673. default: true
  3674. },
  3675. {
  3676. name: "Examacro",
  3677. height: math.unit(10e9, "lightyears")
  3678. }
  3679. ]
  3680. ))
  3681. characterMakers.push(() => makeCharacter(
  3682. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3683. {
  3684. front: {
  3685. height: math.unit(8, "feet"),
  3686. weight: math.unit(500, "lb"),
  3687. name: "Front",
  3688. image: {
  3689. source: "./media/characters/rick/front.svg"
  3690. }
  3691. }
  3692. },
  3693. [
  3694. {
  3695. name: "Normal",
  3696. height: math.unit(8, "feet"),
  3697. default: true
  3698. },
  3699. {
  3700. name: "Macro",
  3701. height: math.unit(5, "km")
  3702. }
  3703. ]
  3704. ))
  3705. characterMakers.push(() => makeCharacter(
  3706. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3707. {
  3708. front: {
  3709. height: math.unit(8, "feet"),
  3710. weight: math.unit(120, "lb"),
  3711. name: "Front",
  3712. image: {
  3713. source: "./media/characters/ona/front.svg"
  3714. }
  3715. },
  3716. frontAlt: {
  3717. height: math.unit(8, "feet"),
  3718. weight: math.unit(120, "lb"),
  3719. name: "Front (Alt)",
  3720. image: {
  3721. source: "./media/characters/ona/front-alt.svg"
  3722. }
  3723. },
  3724. back: {
  3725. height: math.unit(8, "feet"),
  3726. weight: math.unit(120, "lb"),
  3727. name: "Back",
  3728. image: {
  3729. source: "./media/characters/ona/back.svg"
  3730. }
  3731. },
  3732. foot: {
  3733. height: math.unit(1.1, "feet"),
  3734. name: "Foot",
  3735. image: {
  3736. source: "./media/characters/ona/foot.svg"
  3737. }
  3738. }
  3739. },
  3740. [
  3741. {
  3742. name: "Megamacro",
  3743. height: math.unit(70, "km"),
  3744. default: true
  3745. },
  3746. {
  3747. name: "Gigamacro",
  3748. height: math.unit(681818, "miles")
  3749. },
  3750. {
  3751. name: "Examacro",
  3752. height: math.unit(3800000, "lightyears")
  3753. },
  3754. ]
  3755. ))
  3756. characterMakers.push(() => makeCharacter(
  3757. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3758. {
  3759. front: {
  3760. height: math.unit(12, "feet"),
  3761. weight: math.unit(3000, "lb"),
  3762. name: "Front",
  3763. image: {
  3764. source: "./media/characters/mech/front.svg",
  3765. extra: 2900 / 2770,
  3766. bottom: 110 / 3010
  3767. }
  3768. },
  3769. back: {
  3770. height: math.unit(12, "feet"),
  3771. weight: math.unit(3000, "lb"),
  3772. name: "Back",
  3773. image: {
  3774. source: "./media/characters/mech/back.svg",
  3775. extra: 3011 / 2890,
  3776. bottom: 94 / 3105
  3777. }
  3778. },
  3779. maw: {
  3780. height: math.unit(3.07, "feet"),
  3781. name: "Maw",
  3782. image: {
  3783. source: "./media/characters/mech/maw.svg"
  3784. }
  3785. },
  3786. head: {
  3787. height: math.unit(2.82, "feet"),
  3788. name: "Head",
  3789. image: {
  3790. source: "./media/characters/mech/head.svg"
  3791. }
  3792. },
  3793. dick: {
  3794. height: math.unit(1.43, "feet"),
  3795. name: "Dick",
  3796. image: {
  3797. source: "./media/characters/mech/dick.svg"
  3798. }
  3799. },
  3800. },
  3801. [
  3802. {
  3803. name: "Normal",
  3804. height: math.unit(12, "feet")
  3805. },
  3806. {
  3807. name: "Macro",
  3808. height: math.unit(300, "feet"),
  3809. default: true
  3810. },
  3811. {
  3812. name: "Macro+",
  3813. height: math.unit(1500, "feet")
  3814. },
  3815. ]
  3816. ))
  3817. characterMakers.push(() => makeCharacter(
  3818. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3819. {
  3820. front: {
  3821. height: math.unit(1.3, "meter"),
  3822. weight: math.unit(30, "kg"),
  3823. name: "Front",
  3824. image: {
  3825. source: "./media/characters/gregory/front.svg",
  3826. }
  3827. }
  3828. },
  3829. [
  3830. {
  3831. name: "Normal",
  3832. height: math.unit(1.3, "meter"),
  3833. default: true
  3834. },
  3835. {
  3836. name: "Macro",
  3837. height: math.unit(20, "meter")
  3838. }
  3839. ]
  3840. ))
  3841. characterMakers.push(() => makeCharacter(
  3842. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3843. {
  3844. front: {
  3845. height: math.unit(2.8, "meter"),
  3846. weight: math.unit(200, "kg"),
  3847. name: "Front",
  3848. image: {
  3849. source: "./media/characters/elory/front.svg",
  3850. }
  3851. }
  3852. },
  3853. [
  3854. {
  3855. name: "Normal",
  3856. height: math.unit(2.8, "meter"),
  3857. default: true
  3858. },
  3859. {
  3860. name: "Macro",
  3861. height: math.unit(38, "meter")
  3862. }
  3863. ]
  3864. ))
  3865. characterMakers.push(() => makeCharacter(
  3866. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3867. {
  3868. front: {
  3869. height: math.unit(470, "feet"),
  3870. weight: math.unit(924, "tons"),
  3871. name: "Front",
  3872. image: {
  3873. source: "./media/characters/angelpatamon/front.svg",
  3874. }
  3875. }
  3876. },
  3877. [
  3878. {
  3879. name: "Normal",
  3880. height: math.unit(470, "feet"),
  3881. default: true
  3882. },
  3883. {
  3884. name: "Deity Size I",
  3885. height: math.unit(28651.2, "km")
  3886. },
  3887. {
  3888. name: "Deity Size II",
  3889. height: math.unit(171907.2, "km")
  3890. }
  3891. ]
  3892. ))
  3893. characterMakers.push(() => makeCharacter(
  3894. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3895. {
  3896. side: {
  3897. height: math.unit(7.2, "meter"),
  3898. weight: math.unit(8.2, "tons"),
  3899. name: "Side",
  3900. image: {
  3901. source: "./media/characters/cryae/side.svg",
  3902. extra: 3500 / 1500
  3903. }
  3904. }
  3905. },
  3906. [
  3907. {
  3908. name: "Normal",
  3909. height: math.unit(7.2, "meter"),
  3910. default: true
  3911. }
  3912. ]
  3913. ))
  3914. characterMakers.push(() => makeCharacter(
  3915. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3916. {
  3917. front: {
  3918. height: math.unit(6, "feet"),
  3919. weight: math.unit(175, "lb"),
  3920. name: "Front",
  3921. image: {
  3922. source: "./media/characters/xera/front.svg",
  3923. extra: 2377 / 1972,
  3924. bottom: 75.5 / 2452
  3925. }
  3926. },
  3927. side: {
  3928. height: math.unit(6, "feet"),
  3929. weight: math.unit(175, "lb"),
  3930. name: "Side",
  3931. image: {
  3932. source: "./media/characters/xera/side.svg",
  3933. extra: 2345 / 2019,
  3934. bottom: 39.7 / 2384
  3935. }
  3936. },
  3937. back: {
  3938. height: math.unit(6, "feet"),
  3939. weight: math.unit(175, "lb"),
  3940. name: "Back",
  3941. image: {
  3942. source: "./media/characters/xera/back.svg",
  3943. extra: 2095 / 1984,
  3944. bottom: 67 / 2166
  3945. }
  3946. },
  3947. },
  3948. [
  3949. {
  3950. name: "Small",
  3951. height: math.unit(10, "feet")
  3952. },
  3953. {
  3954. name: "Macro",
  3955. height: math.unit(500, "meters"),
  3956. default: true
  3957. },
  3958. {
  3959. name: "Macro+",
  3960. height: math.unit(10, "km")
  3961. },
  3962. {
  3963. name: "Gigamacro",
  3964. height: math.unit(25000, "km")
  3965. },
  3966. {
  3967. name: "Teramacro",
  3968. height: math.unit(3e6, "km")
  3969. }
  3970. ]
  3971. ))
  3972. characterMakers.push(() => makeCharacter(
  3973. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3974. {
  3975. front: {
  3976. height: math.unit(6, "feet"),
  3977. weight: math.unit(175, "lb"),
  3978. name: "Front",
  3979. image: {
  3980. source: "./media/characters/nebula/front.svg",
  3981. extra: 2566 / 2362,
  3982. bottom: 81 / 2644
  3983. }
  3984. }
  3985. },
  3986. [
  3987. {
  3988. name: "Small",
  3989. height: math.unit(4.5, "meters")
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(1500, "meters"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Megamacro",
  3998. height: math.unit(150, "km")
  3999. },
  4000. {
  4001. name: "Gigamacro",
  4002. height: math.unit(27000, "km")
  4003. }
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4008. {
  4009. front: {
  4010. height: math.unit(6, "feet"),
  4011. weight: math.unit(225, "lb"),
  4012. name: "Front",
  4013. image: {
  4014. source: "./media/characters/abysgar/front.svg"
  4015. }
  4016. }
  4017. },
  4018. [
  4019. {
  4020. name: "Small",
  4021. height: math.unit(4.5, "meters")
  4022. },
  4023. {
  4024. name: "Macro",
  4025. height: math.unit(1250, "meters"),
  4026. default: true
  4027. },
  4028. {
  4029. name: "Megamacro",
  4030. height: math.unit(125, "km")
  4031. },
  4032. {
  4033. name: "Gigamacro",
  4034. height: math.unit(26000, "km")
  4035. }
  4036. ]
  4037. ))
  4038. characterMakers.push(() => makeCharacter(
  4039. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4040. {
  4041. front: {
  4042. height: math.unit(6, "feet"),
  4043. weight: math.unit(180, "lb"),
  4044. name: "Front",
  4045. image: {
  4046. source: "./media/characters/yakuz/front.svg"
  4047. }
  4048. }
  4049. },
  4050. [
  4051. {
  4052. name: "Small",
  4053. height: math.unit(5, "meters")
  4054. },
  4055. {
  4056. name: "Macro",
  4057. height: math.unit(1500, "meters"),
  4058. default: true
  4059. },
  4060. {
  4061. name: "Megamacro",
  4062. height: math.unit(200, "km")
  4063. },
  4064. {
  4065. name: "Gigamacro",
  4066. height: math.unit(100000, "km")
  4067. }
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4072. {
  4073. front: {
  4074. height: math.unit(6, "feet"),
  4075. weight: math.unit(175, "lb"),
  4076. name: "Front",
  4077. image: {
  4078. source: "./media/characters/mirova/front.svg",
  4079. extra: 3334 / 3071,
  4080. bottom: 42 / 3375.6
  4081. }
  4082. }
  4083. },
  4084. [
  4085. {
  4086. name: "Small",
  4087. height: math.unit(5, "meters")
  4088. },
  4089. {
  4090. name: "Macro",
  4091. height: math.unit(900, "meters"),
  4092. default: true
  4093. },
  4094. {
  4095. name: "Megamacro",
  4096. height: math.unit(135, "km")
  4097. },
  4098. {
  4099. name: "Gigamacro",
  4100. height: math.unit(20000, "km")
  4101. }
  4102. ]
  4103. ))
  4104. characterMakers.push(() => makeCharacter(
  4105. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4106. {
  4107. side: {
  4108. height: math.unit(28.35, "feet"),
  4109. weight: math.unit(99.75, "tons"),
  4110. name: "Side",
  4111. image: {
  4112. source: "./media/characters/asana-mech/side.svg",
  4113. extra: 923 / 699,
  4114. bottom: 50 / 975
  4115. }
  4116. },
  4117. chaingun: {
  4118. height: math.unit(7, "feet"),
  4119. weight: math.unit(2400, "lb"),
  4120. name: "Chaingun",
  4121. image: {
  4122. source: "./media/characters/asana-mech/chaingun.svg"
  4123. }
  4124. },
  4125. laser: {
  4126. height: math.unit(7.12, "feet"),
  4127. weight: math.unit(2000, "lb"),
  4128. name: "Laser",
  4129. image: {
  4130. source: "./media/characters/asana-mech/laser.svg"
  4131. }
  4132. },
  4133. },
  4134. [
  4135. {
  4136. name: "Normal",
  4137. height: math.unit(28.35, "feet"),
  4138. default: true
  4139. },
  4140. {
  4141. name: "Macro",
  4142. height: math.unit(2500, "feet")
  4143. },
  4144. {
  4145. name: "Megamacro",
  4146. height: math.unit(25, "miles")
  4147. },
  4148. {
  4149. name: "Examacro",
  4150. height: math.unit(6e8, "lightyears")
  4151. },
  4152. ]
  4153. ))
  4154. characterMakers.push(() => makeCharacter(
  4155. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4156. {
  4157. front: {
  4158. height: math.unit(5, "meters"),
  4159. weight: math.unit(1000, "kg"),
  4160. name: "Front",
  4161. image: {
  4162. source: "./media/characters/asche/front.svg",
  4163. extra: 1258 / 1190,
  4164. bottom: 47 / 1305
  4165. }
  4166. },
  4167. frontUnderwear: {
  4168. height: math.unit(5, "meters"),
  4169. weight: math.unit(1000, "kg"),
  4170. name: "Front (Underwear)",
  4171. image: {
  4172. source: "./media/characters/asche/front-underwear.svg",
  4173. extra: 1258 / 1190,
  4174. bottom: 47 / 1305
  4175. }
  4176. },
  4177. frontDressed: {
  4178. height: math.unit(5, "meters"),
  4179. weight: math.unit(1000, "kg"),
  4180. name: "Front (Dressed)",
  4181. image: {
  4182. source: "./media/characters/asche/front-dressed.svg",
  4183. extra: 1258 / 1190,
  4184. bottom: 47 / 1305
  4185. }
  4186. },
  4187. frontArmor: {
  4188. height: math.unit(5, "meters"),
  4189. weight: math.unit(1000, "kg"),
  4190. name: "Front (Armored)",
  4191. image: {
  4192. source: "./media/characters/asche/front-armored.svg",
  4193. extra: 1374 / 1308,
  4194. bottom: 23 / 1397
  4195. }
  4196. },
  4197. mp724: {
  4198. height: math.unit(0.96, "meters"),
  4199. weight: math.unit(38, "kg"),
  4200. name: "H&K MP724",
  4201. image: {
  4202. source: "./media/characters/asche/h&k-mp724.svg"
  4203. }
  4204. },
  4205. side: {
  4206. height: math.unit(5, "meters"),
  4207. weight: math.unit(1000, "kg"),
  4208. name: "Side",
  4209. image: {
  4210. source: "./media/characters/asche/side.svg",
  4211. extra: 1717 / 1609,
  4212. bottom: 0.005
  4213. }
  4214. },
  4215. back: {
  4216. height: math.unit(5, "meters"),
  4217. weight: math.unit(1000, "kg"),
  4218. name: "Back",
  4219. image: {
  4220. source: "./media/characters/asche/back.svg",
  4221. extra: 1570 / 1501
  4222. }
  4223. },
  4224. },
  4225. [
  4226. {
  4227. name: "DEFCON 5",
  4228. height: math.unit(5, "meters")
  4229. },
  4230. {
  4231. name: "DEFCON 4",
  4232. height: math.unit(500, "meters"),
  4233. default: true
  4234. },
  4235. {
  4236. name: "DEFCON 3",
  4237. height: math.unit(5, "km")
  4238. },
  4239. {
  4240. name: "DEFCON 2",
  4241. height: math.unit(500, "km")
  4242. },
  4243. {
  4244. name: "DEFCON 1",
  4245. height: math.unit(500000, "km")
  4246. },
  4247. {
  4248. name: "DEFCON 0",
  4249. height: math.unit(3, "gigaparsecs")
  4250. },
  4251. ]
  4252. ))
  4253. characterMakers.push(() => makeCharacter(
  4254. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4255. {
  4256. front: {
  4257. height: math.unit(2, "meters"),
  4258. weight: math.unit(76, "kg"),
  4259. name: "Front",
  4260. image: {
  4261. source: "./media/characters/gale/front.svg"
  4262. }
  4263. },
  4264. frontAlt1: {
  4265. height: math.unit(2, "meters"),
  4266. weight: math.unit(76, "kg"),
  4267. name: "Front (Alt 1)",
  4268. image: {
  4269. source: "./media/characters/gale/front-alt-1.svg"
  4270. }
  4271. },
  4272. frontAlt2: {
  4273. height: math.unit(2, "meters"),
  4274. weight: math.unit(76, "kg"),
  4275. name: "Front (Alt 2)",
  4276. image: {
  4277. source: "./media/characters/gale/front-alt-2.svg"
  4278. }
  4279. },
  4280. },
  4281. [
  4282. {
  4283. name: "Normal",
  4284. height: math.unit(7, "feet")
  4285. },
  4286. {
  4287. name: "Macro",
  4288. height: math.unit(150, "feet"),
  4289. default: true
  4290. },
  4291. {
  4292. name: "Macro+",
  4293. height: math.unit(300, "feet")
  4294. },
  4295. ]
  4296. ))
  4297. characterMakers.push(() => makeCharacter(
  4298. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4299. {
  4300. front: {
  4301. height: math.unit(2, "meters"),
  4302. weight: math.unit(76, "kg"),
  4303. name: "Front",
  4304. image: {
  4305. source: "./media/characters/draylen/front.svg"
  4306. }
  4307. }
  4308. },
  4309. [
  4310. {
  4311. name: "Macro",
  4312. height: math.unit(150, "feet"),
  4313. default: true
  4314. }
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4319. {
  4320. front: {
  4321. height: math.unit(7 + 9 / 12, "feet"),
  4322. weight: math.unit(379, "lbs"),
  4323. name: "Front",
  4324. image: {
  4325. source: "./media/characters/chez/front.svg"
  4326. }
  4327. },
  4328. side: {
  4329. height: math.unit(7 + 9 / 12, "feet"),
  4330. weight: math.unit(379, "lbs"),
  4331. name: "Side",
  4332. image: {
  4333. source: "./media/characters/chez/side.svg"
  4334. }
  4335. }
  4336. },
  4337. [
  4338. {
  4339. name: "Normal",
  4340. height: math.unit(7 + 9 / 12, "feet"),
  4341. default: true
  4342. },
  4343. {
  4344. name: "God King",
  4345. height: math.unit(9750000, "meters")
  4346. }
  4347. ]
  4348. ))
  4349. characterMakers.push(() => makeCharacter(
  4350. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4351. {
  4352. front: {
  4353. height: math.unit(6, "feet"),
  4354. weight: math.unit(275, "lbs"),
  4355. name: "Front",
  4356. image: {
  4357. source: "./media/characters/kaylum/front.svg",
  4358. bottom: 0.01,
  4359. extra: 1166 / 1031
  4360. }
  4361. },
  4362. frontWingless: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(275, "lbs"),
  4365. name: "Front (Wingless)",
  4366. image: {
  4367. source: "./media/characters/kaylum/front-wingless.svg",
  4368. bottom: 0.01,
  4369. extra: 1117 / 1031
  4370. }
  4371. }
  4372. },
  4373. [
  4374. {
  4375. name: "Normal",
  4376. height: math.unit(3.05, "meters")
  4377. },
  4378. {
  4379. name: "Master",
  4380. height: math.unit(5.5, "meters")
  4381. },
  4382. {
  4383. name: "Rampage",
  4384. height: math.unit(19, "meters")
  4385. },
  4386. {
  4387. name: "Macro Lite",
  4388. height: math.unit(37, "meters")
  4389. },
  4390. {
  4391. name: "Hyper Predator",
  4392. height: math.unit(61, "meters")
  4393. },
  4394. {
  4395. name: "Macro",
  4396. height: math.unit(138, "meters"),
  4397. default: true
  4398. }
  4399. ]
  4400. ))
  4401. characterMakers.push(() => makeCharacter(
  4402. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4403. {
  4404. front: {
  4405. height: math.unit(6, "feet"),
  4406. weight: math.unit(150, "lbs"),
  4407. name: "Front",
  4408. image: {
  4409. source: "./media/characters/geta/front.svg"
  4410. }
  4411. }
  4412. },
  4413. [
  4414. {
  4415. name: "Micro",
  4416. height: math.unit(3, "inches"),
  4417. default: true
  4418. },
  4419. {
  4420. name: "Normal",
  4421. height: math.unit(5 + 5 / 12, "feet")
  4422. }
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4427. {
  4428. front: {
  4429. height: math.unit(6, "feet"),
  4430. weight: math.unit(300, "lbs"),
  4431. name: "Front",
  4432. image: {
  4433. source: "./media/characters/tyrnn/front.svg"
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Main Height",
  4440. height: math.unit(355, "feet"),
  4441. default: true
  4442. },
  4443. {
  4444. name: "Fave. Height",
  4445. height: math.unit(2400, "feet")
  4446. }
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4451. {
  4452. front: {
  4453. height: math.unit(6, "feet"),
  4454. weight: math.unit(300, "lbs"),
  4455. name: "Front",
  4456. image: {
  4457. source: "./media/characters/appledectomy/front.svg"
  4458. }
  4459. }
  4460. },
  4461. [
  4462. {
  4463. name: "Macro",
  4464. height: math.unit(2500, "feet")
  4465. },
  4466. {
  4467. name: "Megamacro",
  4468. height: math.unit(50, "miles"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "Gigamacro",
  4473. height: math.unit(5000, "miles")
  4474. },
  4475. {
  4476. name: "Teramacro",
  4477. height: math.unit(250000, "miles")
  4478. },
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4483. {
  4484. front: {
  4485. height: math.unit(6, "feet"),
  4486. weight: math.unit(200, "lbs"),
  4487. name: "Front",
  4488. image: {
  4489. source: "./media/characters/vulpes/front.svg",
  4490. extra: 573 / 543,
  4491. bottom: 0.033
  4492. }
  4493. },
  4494. side: {
  4495. height: math.unit(6, "feet"),
  4496. weight: math.unit(200, "lbs"),
  4497. name: "Side",
  4498. image: {
  4499. source: "./media/characters/vulpes/side.svg",
  4500. extra: 577 / 549,
  4501. bottom: 11 / 588
  4502. }
  4503. },
  4504. back: {
  4505. height: math.unit(6, "feet"),
  4506. weight: math.unit(200, "lbs"),
  4507. name: "Back",
  4508. image: {
  4509. source: "./media/characters/vulpes/back.svg",
  4510. extra: 573 / 549,
  4511. bottom: 20 / 593
  4512. }
  4513. },
  4514. feet: {
  4515. height: math.unit(1.276, "feet"),
  4516. name: "Feet",
  4517. image: {
  4518. source: "./media/characters/vulpes/feet.svg"
  4519. }
  4520. },
  4521. maw: {
  4522. height: math.unit(1.18, "feet"),
  4523. name: "Maw",
  4524. image: {
  4525. source: "./media/characters/vulpes/maw.svg"
  4526. }
  4527. },
  4528. },
  4529. [
  4530. {
  4531. name: "Micro",
  4532. height: math.unit(2, "inches")
  4533. },
  4534. {
  4535. name: "Normal",
  4536. height: math.unit(6.3, "feet")
  4537. },
  4538. {
  4539. name: "Macro",
  4540. height: math.unit(850, "feet")
  4541. },
  4542. {
  4543. name: "Megamacro",
  4544. height: math.unit(7500, "feet"),
  4545. default: true
  4546. },
  4547. {
  4548. name: "Gigamacro",
  4549. height: math.unit(570000, "miles")
  4550. }
  4551. ]
  4552. ))
  4553. characterMakers.push(() => makeCharacter(
  4554. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4555. {
  4556. front: {
  4557. height: math.unit(6, "feet"),
  4558. weight: math.unit(210, "lbs"),
  4559. name: "Front",
  4560. image: {
  4561. source: "./media/characters/rain-fallen/front.svg"
  4562. }
  4563. },
  4564. side: {
  4565. height: math.unit(6, "feet"),
  4566. weight: math.unit(210, "lbs"),
  4567. name: "Side",
  4568. image: {
  4569. source: "./media/characters/rain-fallen/side.svg"
  4570. }
  4571. },
  4572. back: {
  4573. height: math.unit(6, "feet"),
  4574. weight: math.unit(210, "lbs"),
  4575. name: "Back",
  4576. image: {
  4577. source: "./media/characters/rain-fallen/back.svg"
  4578. }
  4579. },
  4580. feral: {
  4581. height: math.unit(9, "feet"),
  4582. weight: math.unit(700, "lbs"),
  4583. name: "Feral",
  4584. image: {
  4585. source: "./media/characters/rain-fallen/feral.svg"
  4586. }
  4587. },
  4588. },
  4589. [
  4590. {
  4591. name: "Meddling with Mortals",
  4592. height: math.unit(8 + 8/12, "feet")
  4593. },
  4594. {
  4595. name: "Normal",
  4596. height: math.unit(5, "meter")
  4597. },
  4598. {
  4599. name: "Macro",
  4600. height: math.unit(150, "meter"),
  4601. default: true
  4602. },
  4603. {
  4604. name: "Megamacro",
  4605. height: math.unit(278e6, "meter")
  4606. },
  4607. {
  4608. name: "Gigamacro",
  4609. height: math.unit(2e9, "meter")
  4610. },
  4611. {
  4612. name: "Teramacro",
  4613. height: math.unit(8e12, "meter")
  4614. },
  4615. {
  4616. name: "Devourer",
  4617. height: math.unit(14, "zettameters")
  4618. },
  4619. {
  4620. name: "Scarlet King",
  4621. height: math.unit(18, "yottameters")
  4622. },
  4623. {
  4624. name: "Void",
  4625. height: math.unit(1e88, "yottameters")
  4626. }
  4627. ]
  4628. ))
  4629. characterMakers.push(() => makeCharacter(
  4630. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4631. {
  4632. standing: {
  4633. height: math.unit(6, "feet"),
  4634. weight: math.unit(180, "lbs"),
  4635. name: "Standing",
  4636. image: {
  4637. source: "./media/characters/zaakira/standing.svg",
  4638. extra: 1599/1504,
  4639. bottom: 39/1638
  4640. }
  4641. },
  4642. laying: {
  4643. height: math.unit(3, "feet"),
  4644. weight: math.unit(180, "lbs"),
  4645. name: "Laying",
  4646. image: {
  4647. source: "./media/characters/zaakira/laying.svg"
  4648. }
  4649. },
  4650. },
  4651. [
  4652. {
  4653. name: "Normal",
  4654. height: math.unit(12, "feet")
  4655. },
  4656. {
  4657. name: "Macro",
  4658. height: math.unit(279, "feet"),
  4659. default: true
  4660. }
  4661. ]
  4662. ))
  4663. characterMakers.push(() => makeCharacter(
  4664. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4665. {
  4666. femSfw: {
  4667. height: math.unit(8, "feet"),
  4668. weight: math.unit(350, "lb"),
  4669. name: "Fem",
  4670. image: {
  4671. source: "./media/characters/sigvald/fem-sfw.svg",
  4672. extra: 182 / 164,
  4673. bottom: 8.7 / 190.5
  4674. }
  4675. },
  4676. femNsfw: {
  4677. height: math.unit(8, "feet"),
  4678. weight: math.unit(350, "lb"),
  4679. name: "Fem (NSFW)",
  4680. image: {
  4681. source: "./media/characters/sigvald/fem-nsfw.svg",
  4682. extra: 182 / 164,
  4683. bottom: 8.7 / 190.5
  4684. }
  4685. },
  4686. maleNsfw: {
  4687. height: math.unit(8, "feet"),
  4688. weight: math.unit(350, "lb"),
  4689. name: "Male (NSFW)",
  4690. image: {
  4691. source: "./media/characters/sigvald/male-nsfw.svg",
  4692. extra: 182 / 164,
  4693. bottom: 8.7 / 190.5
  4694. }
  4695. },
  4696. hermNsfw: {
  4697. height: math.unit(8, "feet"),
  4698. weight: math.unit(350, "lb"),
  4699. name: "Herm (NSFW)",
  4700. image: {
  4701. source: "./media/characters/sigvald/herm-nsfw.svg",
  4702. extra: 182 / 164,
  4703. bottom: 8.7 / 190.5
  4704. }
  4705. },
  4706. dick: {
  4707. height: math.unit(2.36, "feet"),
  4708. name: "Dick",
  4709. image: {
  4710. source: "./media/characters/sigvald/dick.svg"
  4711. }
  4712. },
  4713. eye: {
  4714. height: math.unit(0.31, "feet"),
  4715. name: "Eye",
  4716. image: {
  4717. source: "./media/characters/sigvald/eye.svg"
  4718. }
  4719. },
  4720. mouth: {
  4721. height: math.unit(0.92, "feet"),
  4722. name: "Mouth",
  4723. image: {
  4724. source: "./media/characters/sigvald/mouth.svg"
  4725. }
  4726. },
  4727. paws: {
  4728. height: math.unit(2.2, "feet"),
  4729. name: "Paws",
  4730. image: {
  4731. source: "./media/characters/sigvald/paws.svg"
  4732. }
  4733. }
  4734. },
  4735. [
  4736. {
  4737. name: "Normal",
  4738. height: math.unit(8, "feet")
  4739. },
  4740. {
  4741. name: "Large",
  4742. height: math.unit(12, "feet")
  4743. },
  4744. {
  4745. name: "Larger",
  4746. height: math.unit(20, "feet")
  4747. },
  4748. {
  4749. name: "Macro",
  4750. height: math.unit(150, "feet")
  4751. },
  4752. {
  4753. name: "Macro+",
  4754. height: math.unit(200, "feet"),
  4755. default: true
  4756. },
  4757. ]
  4758. ))
  4759. characterMakers.push(() => makeCharacter(
  4760. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4761. {
  4762. side: {
  4763. height: math.unit(12, "feet"),
  4764. weight: math.unit(2000, "kg"),
  4765. name: "Side",
  4766. image: {
  4767. source: "./media/characters/scott/side.svg",
  4768. extra: 754 / 724,
  4769. bottom: 0.069
  4770. }
  4771. },
  4772. upright: {
  4773. height: math.unit(12, "feet"),
  4774. weight: math.unit(2000, "kg"),
  4775. name: "Upright",
  4776. image: {
  4777. source: "./media/characters/scott/upright.svg",
  4778. extra: 3881 / 3722,
  4779. bottom: 0.05
  4780. }
  4781. },
  4782. },
  4783. [
  4784. {
  4785. name: "Normal",
  4786. height: math.unit(12, "feet"),
  4787. default: true
  4788. },
  4789. ]
  4790. ))
  4791. characterMakers.push(() => makeCharacter(
  4792. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4793. {
  4794. side: {
  4795. height: math.unit(8, "meters"),
  4796. weight: math.unit(84755, "lbs"),
  4797. name: "Side",
  4798. image: {
  4799. source: "./media/characters/tobias/side.svg",
  4800. extra: 1474 / 1096,
  4801. bottom: 38.9 / 1513.1235
  4802. }
  4803. },
  4804. },
  4805. [
  4806. {
  4807. name: "Normal",
  4808. height: math.unit(8, "meters"),
  4809. default: true
  4810. },
  4811. ]
  4812. ))
  4813. characterMakers.push(() => makeCharacter(
  4814. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4815. {
  4816. front: {
  4817. height: math.unit(5.5, "feet"),
  4818. weight: math.unit(400, "lbs"),
  4819. name: "Front",
  4820. image: {
  4821. source: "./media/characters/kieran/front.svg",
  4822. extra: 2694 / 2364,
  4823. bottom: 217 / 2908
  4824. }
  4825. },
  4826. side: {
  4827. height: math.unit(5.5, "feet"),
  4828. weight: math.unit(400, "lbs"),
  4829. name: "Side",
  4830. image: {
  4831. source: "./media/characters/kieran/side.svg",
  4832. extra: 875 / 777,
  4833. bottom: 84.6 / 959
  4834. }
  4835. },
  4836. },
  4837. [
  4838. {
  4839. name: "Normal",
  4840. height: math.unit(5.5, "feet"),
  4841. default: true
  4842. },
  4843. ]
  4844. ))
  4845. characterMakers.push(() => makeCharacter(
  4846. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4847. {
  4848. side: {
  4849. height: math.unit(2, "meters"),
  4850. weight: math.unit(70, "kg"),
  4851. name: "Side",
  4852. image: {
  4853. source: "./media/characters/sanya/side.svg",
  4854. bottom: 0.02,
  4855. extra: 1.02
  4856. }
  4857. },
  4858. },
  4859. [
  4860. {
  4861. name: "Small",
  4862. height: math.unit(2, "meters")
  4863. },
  4864. {
  4865. name: "Normal",
  4866. height: math.unit(3, "meters")
  4867. },
  4868. {
  4869. name: "Macro",
  4870. height: math.unit(16, "meters"),
  4871. default: true
  4872. },
  4873. ]
  4874. ))
  4875. characterMakers.push(() => makeCharacter(
  4876. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4877. {
  4878. front: {
  4879. height: math.unit(2, "meters"),
  4880. weight: math.unit(120, "kg"),
  4881. name: "Front",
  4882. image: {
  4883. source: "./media/characters/miranda/front.svg",
  4884. extra: 195 / 185,
  4885. bottom: 10.9 / 206.5
  4886. }
  4887. },
  4888. back: {
  4889. height: math.unit(2, "meters"),
  4890. weight: math.unit(120, "kg"),
  4891. name: "Back",
  4892. image: {
  4893. source: "./media/characters/miranda/back.svg",
  4894. extra: 201 / 193,
  4895. bottom: 2.3 / 203.7
  4896. }
  4897. },
  4898. },
  4899. [
  4900. {
  4901. name: "Normal",
  4902. height: math.unit(10, "feet"),
  4903. default: true
  4904. }
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "James", species: ["deer"], tags: ["anthro"] },
  4909. {
  4910. side: {
  4911. height: math.unit(2, "meters"),
  4912. weight: math.unit(100, "kg"),
  4913. name: "Front",
  4914. image: {
  4915. source: "./media/characters/james/front.svg",
  4916. extra: 10 / 8.5
  4917. }
  4918. },
  4919. },
  4920. [
  4921. {
  4922. name: "Normal",
  4923. height: math.unit(8.5, "feet"),
  4924. default: true
  4925. }
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4930. {
  4931. side: {
  4932. height: math.unit(9.5, "feet"),
  4933. weight: math.unit(2500, "lbs"),
  4934. name: "Side",
  4935. image: {
  4936. source: "./media/characters/heather/side.svg"
  4937. }
  4938. },
  4939. },
  4940. [
  4941. {
  4942. name: "Normal",
  4943. height: math.unit(9.5, "feet"),
  4944. default: true
  4945. }
  4946. ]
  4947. ))
  4948. characterMakers.push(() => makeCharacter(
  4949. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4950. {
  4951. side: {
  4952. height: math.unit(6.5, "feet"),
  4953. weight: math.unit(400, "lbs"),
  4954. name: "Side",
  4955. image: {
  4956. source: "./media/characters/lukas/side.svg",
  4957. extra: 7.25 / 6.5
  4958. }
  4959. },
  4960. },
  4961. [
  4962. {
  4963. name: "Normal",
  4964. height: math.unit(6.5, "feet"),
  4965. default: true
  4966. }
  4967. ]
  4968. ))
  4969. characterMakers.push(() => makeCharacter(
  4970. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4971. {
  4972. side: {
  4973. height: math.unit(5, "feet"),
  4974. weight: math.unit(3000, "lbs"),
  4975. name: "Side",
  4976. image: {
  4977. source: "./media/characters/louise/side.svg"
  4978. }
  4979. },
  4980. },
  4981. [
  4982. {
  4983. name: "Normal",
  4984. height: math.unit(5, "feet"),
  4985. default: true
  4986. }
  4987. ]
  4988. ))
  4989. characterMakers.push(() => makeCharacter(
  4990. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4991. {
  4992. side: {
  4993. height: math.unit(6, "feet"),
  4994. weight: math.unit(150, "lbs"),
  4995. name: "Side",
  4996. image: {
  4997. source: "./media/characters/ramona/side.svg"
  4998. }
  4999. },
  5000. },
  5001. [
  5002. {
  5003. name: "Normal",
  5004. height: math.unit(5.3, "meters"),
  5005. default: true
  5006. },
  5007. {
  5008. name: "Macro",
  5009. height: math.unit(20, "stories")
  5010. },
  5011. {
  5012. name: "Macro+",
  5013. height: math.unit(50, "stories")
  5014. },
  5015. ]
  5016. ))
  5017. characterMakers.push(() => makeCharacter(
  5018. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5019. {
  5020. standing: {
  5021. height: math.unit(5.75, "feet"),
  5022. weight: math.unit(160, "lbs"),
  5023. name: "Standing",
  5024. image: {
  5025. source: "./media/characters/deerpuff/standing.svg",
  5026. extra: 682 / 624
  5027. }
  5028. },
  5029. sitting: {
  5030. height: math.unit(5.75 / 1.79, "feet"),
  5031. weight: math.unit(160, "lbs"),
  5032. name: "Sitting",
  5033. image: {
  5034. source: "./media/characters/deerpuff/sitting.svg",
  5035. bottom: 44 / 400,
  5036. extra: 1
  5037. }
  5038. },
  5039. taurLaying: {
  5040. height: math.unit(6, "feet"),
  5041. weight: math.unit(400, "lbs"),
  5042. name: "Taur (Laying)",
  5043. image: {
  5044. source: "./media/characters/deerpuff/taur-laying.svg"
  5045. }
  5046. },
  5047. },
  5048. [
  5049. {
  5050. name: "Puffball",
  5051. height: math.unit(6, "inches")
  5052. },
  5053. {
  5054. name: "Normalpuff",
  5055. height: math.unit(5.75, "feet")
  5056. },
  5057. {
  5058. name: "Macropuff",
  5059. height: math.unit(1500, "feet"),
  5060. default: true
  5061. },
  5062. {
  5063. name: "Megapuff",
  5064. height: math.unit(500, "miles")
  5065. },
  5066. {
  5067. name: "Gigapuff",
  5068. height: math.unit(250000, "miles")
  5069. },
  5070. {
  5071. name: "Omegapuff",
  5072. height: math.unit(1000, "lightyears")
  5073. },
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5078. {
  5079. stomping: {
  5080. height: math.unit(6, "feet"),
  5081. weight: math.unit(170, "lbs"),
  5082. name: "Stomping",
  5083. image: {
  5084. source: "./media/characters/vivian/stomping.svg"
  5085. }
  5086. },
  5087. sitting: {
  5088. height: math.unit(6 / 1.75, "feet"),
  5089. weight: math.unit(170, "lbs"),
  5090. name: "Sitting",
  5091. image: {
  5092. source: "./media/characters/vivian/sitting.svg",
  5093. bottom: 1 / 6.4,
  5094. extra: 1,
  5095. }
  5096. },
  5097. },
  5098. [
  5099. {
  5100. name: "Normal",
  5101. height: math.unit(7, "feet"),
  5102. default: true
  5103. },
  5104. {
  5105. name: "Macro",
  5106. height: math.unit(10, "stories")
  5107. },
  5108. {
  5109. name: "Macro+",
  5110. height: math.unit(30, "stories")
  5111. },
  5112. {
  5113. name: "Megamacro",
  5114. height: math.unit(10, "miles")
  5115. },
  5116. {
  5117. name: "Megamacro+",
  5118. height: math.unit(2750000, "meters")
  5119. },
  5120. ]
  5121. ))
  5122. characterMakers.push(() => makeCharacter(
  5123. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5124. {
  5125. front: {
  5126. height: math.unit(6, "feet"),
  5127. weight: math.unit(160, "lbs"),
  5128. name: "Front",
  5129. image: {
  5130. source: "./media/characters/prince/front.svg",
  5131. extra: 3400 / 3000
  5132. }
  5133. },
  5134. jumping: {
  5135. height: math.unit(6, "feet"),
  5136. weight: math.unit(160, "lbs"),
  5137. name: "Jumping",
  5138. image: {
  5139. source: "./media/characters/prince/jump.svg",
  5140. extra: 2555 / 2134
  5141. }
  5142. },
  5143. },
  5144. [
  5145. {
  5146. name: "Normal",
  5147. height: math.unit(7.75, "feet"),
  5148. default: true
  5149. },
  5150. {
  5151. name: "Not cute",
  5152. height: math.unit(17, "feet")
  5153. },
  5154. {
  5155. name: "I said NOT",
  5156. height: math.unit(91, "feet")
  5157. },
  5158. {
  5159. name: "Please stop",
  5160. height: math.unit(560, "feet")
  5161. },
  5162. {
  5163. name: "What have you done",
  5164. height: math.unit(2200, "feet")
  5165. },
  5166. {
  5167. name: "Deer God",
  5168. height: math.unit(3.6, "miles")
  5169. },
  5170. ]
  5171. ))
  5172. characterMakers.push(() => makeCharacter(
  5173. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5174. {
  5175. standing: {
  5176. height: math.unit(6, "feet"),
  5177. weight: math.unit(300, "lbs"),
  5178. name: "Standing",
  5179. image: {
  5180. source: "./media/characters/psymon/standing.svg",
  5181. extra: 1888 / 1810,
  5182. bottom: 0.05
  5183. }
  5184. },
  5185. slithering: {
  5186. height: math.unit(6, "feet"),
  5187. weight: math.unit(300, "lbs"),
  5188. name: "Slithering",
  5189. image: {
  5190. source: "./media/characters/psymon/slithering.svg",
  5191. extra: 1330 / 1224
  5192. }
  5193. },
  5194. slitheringAlt: {
  5195. height: math.unit(6, "feet"),
  5196. weight: math.unit(300, "lbs"),
  5197. name: "Slithering (Alt)",
  5198. image: {
  5199. source: "./media/characters/psymon/slithering-alt.svg",
  5200. extra: 1330 / 1224
  5201. }
  5202. },
  5203. },
  5204. [
  5205. {
  5206. name: "Normal",
  5207. height: math.unit(11.25, "feet"),
  5208. default: true
  5209. },
  5210. {
  5211. name: "Large",
  5212. height: math.unit(27, "feet")
  5213. },
  5214. {
  5215. name: "Giant",
  5216. height: math.unit(87, "feet")
  5217. },
  5218. {
  5219. name: "Macro",
  5220. height: math.unit(365, "feet")
  5221. },
  5222. {
  5223. name: "Megamacro",
  5224. height: math.unit(3, "miles")
  5225. },
  5226. {
  5227. name: "World Serpent",
  5228. height: math.unit(8000, "miles")
  5229. },
  5230. ]
  5231. ))
  5232. characterMakers.push(() => makeCharacter(
  5233. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5234. {
  5235. front: {
  5236. height: math.unit(6, "feet"),
  5237. weight: math.unit(180, "lbs"),
  5238. name: "Front",
  5239. image: {
  5240. source: "./media/characters/daimos/front.svg",
  5241. extra: 4160 / 3897,
  5242. bottom: 0.021
  5243. }
  5244. }
  5245. },
  5246. [
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(8, "feet"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Big Dog",
  5254. height: math.unit(22, "feet")
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(127, "feet")
  5259. },
  5260. {
  5261. name: "Megamacro",
  5262. height: math.unit(3600, "feet")
  5263. },
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5268. {
  5269. side: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(180, "lbs"),
  5272. name: "Side",
  5273. image: {
  5274. source: "./media/characters/blake/side.svg",
  5275. extra: 1212 / 1120,
  5276. bottom: 0.05
  5277. }
  5278. },
  5279. crouched: {
  5280. height: math.unit(6 * 0.57, "feet"),
  5281. weight: math.unit(180, "lbs"),
  5282. name: "Crouched",
  5283. image: {
  5284. source: "./media/characters/blake/crouched.svg",
  5285. extra: 840 / 587,
  5286. bottom: 0.04
  5287. }
  5288. },
  5289. bent: {
  5290. height: math.unit(6 * 0.75, "feet"),
  5291. weight: math.unit(180, "lbs"),
  5292. name: "Bent",
  5293. image: {
  5294. source: "./media/characters/blake/bent.svg",
  5295. extra: 592 / 544,
  5296. bottom: 0.035
  5297. }
  5298. },
  5299. },
  5300. [
  5301. {
  5302. name: "Normal",
  5303. height: math.unit(8 + 1 / 6, "feet"),
  5304. default: true
  5305. },
  5306. {
  5307. name: "Big Backside",
  5308. height: math.unit(37, "feet")
  5309. },
  5310. {
  5311. name: "Subway Shredder",
  5312. height: math.unit(72, "feet")
  5313. },
  5314. {
  5315. name: "City Carver",
  5316. height: math.unit(1675, "feet")
  5317. },
  5318. {
  5319. name: "Tectonic Tweaker",
  5320. height: math.unit(2300, "miles")
  5321. },
  5322. ]
  5323. ))
  5324. characterMakers.push(() => makeCharacter(
  5325. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5326. {
  5327. front: {
  5328. height: math.unit(6, "feet"),
  5329. weight: math.unit(180, "lbs"),
  5330. name: "Front",
  5331. image: {
  5332. source: "./media/characters/guisetto/front.svg",
  5333. extra: 856 / 817,
  5334. bottom: 0.06
  5335. }
  5336. },
  5337. airborne: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(180, "lbs"),
  5340. name: "Airborne",
  5341. image: {
  5342. source: "./media/characters/guisetto/airborne.svg",
  5343. extra: 584 / 525
  5344. }
  5345. },
  5346. },
  5347. [
  5348. {
  5349. name: "Normal",
  5350. height: math.unit(10 + 11 / 12, "feet"),
  5351. default: true
  5352. },
  5353. {
  5354. name: "Large",
  5355. height: math.unit(35, "feet")
  5356. },
  5357. {
  5358. name: "Macro",
  5359. height: math.unit(475, "feet")
  5360. },
  5361. ]
  5362. ))
  5363. characterMakers.push(() => makeCharacter(
  5364. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5365. {
  5366. front: {
  5367. height: math.unit(6, "feet"),
  5368. weight: math.unit(180, "lbs"),
  5369. name: "Front",
  5370. image: {
  5371. source: "./media/characters/luxor/front.svg",
  5372. extra: 2940 / 2152
  5373. }
  5374. },
  5375. back: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(180, "lbs"),
  5378. name: "Back",
  5379. image: {
  5380. source: "./media/characters/luxor/back.svg",
  5381. extra: 1083 / 960
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Normal",
  5388. height: math.unit(5 + 5 / 6, "feet"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Lamp",
  5393. height: math.unit(50, "feet")
  5394. },
  5395. {
  5396. name: "Lämp",
  5397. height: math.unit(300, "feet")
  5398. },
  5399. {
  5400. name: "The sun is a lamp",
  5401. height: math.unit(250000, "miles")
  5402. },
  5403. ]
  5404. ))
  5405. characterMakers.push(() => makeCharacter(
  5406. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5407. {
  5408. front: {
  5409. height: math.unit(6, "feet"),
  5410. weight: math.unit(50, "lbs"),
  5411. name: "Front",
  5412. image: {
  5413. source: "./media/characters/huoyan/front.svg"
  5414. }
  5415. },
  5416. side: {
  5417. height: math.unit(6, "feet"),
  5418. weight: math.unit(180, "lbs"),
  5419. name: "Side",
  5420. image: {
  5421. source: "./media/characters/huoyan/side.svg"
  5422. }
  5423. },
  5424. },
  5425. [
  5426. {
  5427. name: "Chef",
  5428. height: math.unit(9, "feet")
  5429. },
  5430. {
  5431. name: "Normal",
  5432. height: math.unit(65, "feet"),
  5433. default: true
  5434. },
  5435. {
  5436. name: "Macro",
  5437. height: math.unit(780, "feet")
  5438. },
  5439. {
  5440. name: "Flaming Mountain",
  5441. height: math.unit(4.8, "miles")
  5442. },
  5443. {
  5444. name: "Celestial",
  5445. height: math.unit(765000, "miles")
  5446. },
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5451. {
  5452. front: {
  5453. height: math.unit(5 + 3 / 4, "feet"),
  5454. weight: math.unit(120, "lbs"),
  5455. name: "Front",
  5456. image: {
  5457. source: "./media/characters/tails/front.svg"
  5458. }
  5459. }
  5460. },
  5461. [
  5462. {
  5463. name: "Normal",
  5464. height: math.unit(5 + 3 / 4, "feet"),
  5465. default: true
  5466. }
  5467. ]
  5468. ))
  5469. characterMakers.push(() => makeCharacter(
  5470. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5471. {
  5472. front: {
  5473. height: math.unit(4, "feet"),
  5474. weight: math.unit(50, "lbs"),
  5475. name: "Front",
  5476. image: {
  5477. source: "./media/characters/rainy/front.svg"
  5478. }
  5479. }
  5480. },
  5481. [
  5482. {
  5483. name: "Macro",
  5484. height: math.unit(800, "feet"),
  5485. default: true
  5486. }
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5491. {
  5492. front: {
  5493. height: math.unit(6, "feet"),
  5494. weight: math.unit(150, "lbs"),
  5495. name: "Front",
  5496. image: {
  5497. source: "./media/characters/rainier/front.svg"
  5498. }
  5499. }
  5500. },
  5501. [
  5502. {
  5503. name: "Micro",
  5504. height: math.unit(2, "mm"),
  5505. default: true
  5506. }
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5511. {
  5512. front: {
  5513. height: math.unit(8 + 4/12, "feet"),
  5514. name: "Front",
  5515. image: {
  5516. source: "./media/characters/andy-renard/front.svg",
  5517. extra: 1839/1726,
  5518. bottom: 134/1973
  5519. }
  5520. },
  5521. back: {
  5522. height: math.unit(8 + 4/12, "feet"),
  5523. name: "Back",
  5524. image: {
  5525. source: "./media/characters/andy-renard/back.svg",
  5526. extra: 1838/1710,
  5527. bottom: 105/1943
  5528. }
  5529. },
  5530. },
  5531. [
  5532. {
  5533. name: "Tall",
  5534. height: math.unit(8 + 4/12, "feet")
  5535. },
  5536. {
  5537. name: "Mini Macro",
  5538. height: math.unit(15, "feet"),
  5539. default: true
  5540. },
  5541. {
  5542. name: "Macro",
  5543. height: math.unit(100, "feet")
  5544. },
  5545. {
  5546. name: "Mega Macro",
  5547. height: math.unit(1000, "feet")
  5548. },
  5549. {
  5550. name: "Giga Macro",
  5551. height: math.unit(10, "miles")
  5552. },
  5553. {
  5554. name: "God Macro",
  5555. height: math.unit(1, "multiverse")
  5556. },
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5561. {
  5562. front: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(210, "lbs"),
  5565. name: "Front",
  5566. image: {
  5567. source: "./media/characters/cimmaron/front-sfw.svg",
  5568. extra: 701 / 676,
  5569. bottom: 0.046
  5570. }
  5571. },
  5572. back: {
  5573. height: math.unit(6, "feet"),
  5574. weight: math.unit(210, "lbs"),
  5575. name: "Back",
  5576. image: {
  5577. source: "./media/characters/cimmaron/back-sfw.svg",
  5578. extra: 701 / 676,
  5579. bottom: 0.046
  5580. }
  5581. },
  5582. frontNsfw: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(210, "lbs"),
  5585. name: "Front (NSFW)",
  5586. image: {
  5587. source: "./media/characters/cimmaron/front-nsfw.svg",
  5588. extra: 701 / 676,
  5589. bottom: 0.046
  5590. }
  5591. },
  5592. backNsfw: {
  5593. height: math.unit(6, "feet"),
  5594. weight: math.unit(210, "lbs"),
  5595. name: "Back (NSFW)",
  5596. image: {
  5597. source: "./media/characters/cimmaron/back-nsfw.svg",
  5598. extra: 701 / 676,
  5599. bottom: 0.046
  5600. }
  5601. },
  5602. dick: {
  5603. height: math.unit(1.714, "feet"),
  5604. name: "Dick",
  5605. image: {
  5606. source: "./media/characters/cimmaron/dick.svg"
  5607. }
  5608. },
  5609. },
  5610. [
  5611. {
  5612. name: "Normal",
  5613. height: math.unit(6, "feet"),
  5614. default: true
  5615. },
  5616. {
  5617. name: "Macro Mayor",
  5618. height: math.unit(350, "meters")
  5619. },
  5620. ]
  5621. ))
  5622. characterMakers.push(() => makeCharacter(
  5623. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5624. {
  5625. front: {
  5626. height: math.unit(6, "feet"),
  5627. weight: math.unit(200, "lbs"),
  5628. name: "Front",
  5629. image: {
  5630. source: "./media/characters/akari/front.svg",
  5631. extra: 962 / 901,
  5632. bottom: 0.04
  5633. }
  5634. }
  5635. },
  5636. [
  5637. {
  5638. name: "Micro",
  5639. height: math.unit(5, "inches"),
  5640. default: true
  5641. },
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(7, "feet")
  5645. },
  5646. ]
  5647. ))
  5648. characterMakers.push(() => makeCharacter(
  5649. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5650. {
  5651. front: {
  5652. height: math.unit(6, "feet"),
  5653. weight: math.unit(140, "lbs"),
  5654. name: "Front",
  5655. image: {
  5656. source: "./media/characters/cynosura/front.svg",
  5657. extra: 896 / 847
  5658. }
  5659. },
  5660. back: {
  5661. height: math.unit(6, "feet"),
  5662. weight: math.unit(140, "lbs"),
  5663. name: "Back",
  5664. image: {
  5665. source: "./media/characters/cynosura/back.svg",
  5666. extra: 1365 / 1250
  5667. }
  5668. },
  5669. },
  5670. [
  5671. {
  5672. name: "Micro",
  5673. height: math.unit(4, "inches")
  5674. },
  5675. {
  5676. name: "Normal",
  5677. height: math.unit(5.75, "feet"),
  5678. default: true
  5679. },
  5680. {
  5681. name: "Tall",
  5682. height: math.unit(10, "feet")
  5683. },
  5684. {
  5685. name: "Big",
  5686. height: math.unit(20, "feet")
  5687. },
  5688. {
  5689. name: "Macro",
  5690. height: math.unit(50, "feet")
  5691. },
  5692. ]
  5693. ))
  5694. characterMakers.push(() => makeCharacter(
  5695. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5696. {
  5697. front: {
  5698. height: math.unit(13 + 2/12, "feet"),
  5699. weight: math.unit(800, "kg"),
  5700. name: "Front",
  5701. image: {
  5702. source: "./media/characters/gin/front.svg",
  5703. extra: 1312/1191,
  5704. bottom: 45/1357
  5705. }
  5706. },
  5707. mouth: {
  5708. height: math.unit(2.39 * 1.8, "feet"),
  5709. name: "Mouth",
  5710. image: {
  5711. source: "./media/characters/gin/mouth.svg"
  5712. }
  5713. },
  5714. hand: {
  5715. height: math.unit(1.57 * 2.19, "feet"),
  5716. name: "Hand",
  5717. image: {
  5718. source: "./media/characters/gin/hand.svg"
  5719. }
  5720. },
  5721. foot: {
  5722. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5723. name: "Foot",
  5724. image: {
  5725. source: "./media/characters/gin/foot.svg"
  5726. }
  5727. },
  5728. sole: {
  5729. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5730. name: "Sole",
  5731. image: {
  5732. source: "./media/characters/gin/sole.svg"
  5733. }
  5734. },
  5735. },
  5736. [
  5737. {
  5738. name: "Very Small",
  5739. height: math.unit(13 + 2 / 12, "feet")
  5740. },
  5741. {
  5742. name: "Micro",
  5743. height: math.unit(600, "miles")
  5744. },
  5745. {
  5746. name: "Regular",
  5747. height: math.unit(20, "earths"),
  5748. default: true
  5749. },
  5750. {
  5751. name: "Macro",
  5752. height: math.unit(2.2, "solarradii")
  5753. },
  5754. {
  5755. name: "Teramacro",
  5756. height: math.unit(1.2, "galaxies")
  5757. },
  5758. {
  5759. name: "Omegamacro",
  5760. height: math.unit(200, "universes")
  5761. },
  5762. ]
  5763. ))
  5764. characterMakers.push(() => makeCharacter(
  5765. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5766. {
  5767. front: {
  5768. height: math.unit(6 + 1 / 6, "feet"),
  5769. weight: math.unit(178, "lbs"),
  5770. name: "Front",
  5771. image: {
  5772. source: "./media/characters/guy/front.svg"
  5773. }
  5774. }
  5775. },
  5776. [
  5777. {
  5778. name: "Normal",
  5779. height: math.unit(6 + 1 / 6, "feet"),
  5780. default: true
  5781. },
  5782. {
  5783. name: "Large",
  5784. height: math.unit(25 + 7 / 12, "feet")
  5785. },
  5786. {
  5787. name: "Macro",
  5788. height: math.unit(60 + 9 / 12, "feet")
  5789. },
  5790. {
  5791. name: "Macro+",
  5792. height: math.unit(246, "feet")
  5793. },
  5794. {
  5795. name: "Macro++",
  5796. height: math.unit(878, "feet")
  5797. }
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5802. {
  5803. front: {
  5804. height: math.unit(9, "feet"),
  5805. weight: math.unit(800, "lbs"),
  5806. name: "Front",
  5807. image: {
  5808. source: "./media/characters/tiberius/front.svg",
  5809. extra: 2295 / 2071
  5810. }
  5811. },
  5812. back: {
  5813. height: math.unit(9, "feet"),
  5814. weight: math.unit(800, "lbs"),
  5815. name: "Back",
  5816. image: {
  5817. source: "./media/characters/tiberius/back.svg",
  5818. extra: 2373 / 2160
  5819. }
  5820. },
  5821. },
  5822. [
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(9, "feet"),
  5826. default: true
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5832. {
  5833. front: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(600, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/surgo/front.svg",
  5839. extra: 3591 / 2227
  5840. }
  5841. },
  5842. back: {
  5843. height: math.unit(6, "feet"),
  5844. weight: math.unit(600, "lbs"),
  5845. name: "Back",
  5846. image: {
  5847. source: "./media/characters/surgo/back.svg",
  5848. extra: 3557 / 2228
  5849. }
  5850. },
  5851. laying: {
  5852. height: math.unit(6 * 0.85, "feet"),
  5853. weight: math.unit(600, "lbs"),
  5854. name: "Laying",
  5855. image: {
  5856. source: "./media/characters/surgo/laying.svg"
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Normal",
  5863. height: math.unit(6, "feet"),
  5864. default: true
  5865. }
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5870. {
  5871. side: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(150, "lbs"),
  5874. name: "Side",
  5875. image: {
  5876. source: "./media/characters/cibus/side.svg",
  5877. extra: 800 / 400
  5878. }
  5879. },
  5880. },
  5881. [
  5882. {
  5883. name: "Normal",
  5884. height: math.unit(6, "feet"),
  5885. default: true
  5886. }
  5887. ]
  5888. ))
  5889. characterMakers.push(() => makeCharacter(
  5890. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5891. {
  5892. front: {
  5893. height: math.unit(6, "feet"),
  5894. weight: math.unit(240, "lbs"),
  5895. name: "Front",
  5896. image: {
  5897. source: "./media/characters/nibbles/front.svg"
  5898. }
  5899. },
  5900. side: {
  5901. height: math.unit(6, "feet"),
  5902. weight: math.unit(240, "lbs"),
  5903. name: "Side",
  5904. image: {
  5905. source: "./media/characters/nibbles/side.svg"
  5906. }
  5907. },
  5908. },
  5909. [
  5910. {
  5911. name: "Normal",
  5912. height: math.unit(9, "feet"),
  5913. default: true
  5914. }
  5915. ]
  5916. ))
  5917. characterMakers.push(() => makeCharacter(
  5918. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5919. {
  5920. side: {
  5921. height: math.unit(5 + 1 / 6, "feet"),
  5922. weight: math.unit(130, "lbs"),
  5923. name: "Side",
  5924. image: {
  5925. source: "./media/characters/rikky/side.svg",
  5926. extra: 851 / 801
  5927. }
  5928. },
  5929. },
  5930. [
  5931. {
  5932. name: "Normal",
  5933. height: math.unit(5 + 1 / 6, "feet")
  5934. },
  5935. {
  5936. name: "Macro",
  5937. height: math.unit(152, "feet"),
  5938. default: true
  5939. },
  5940. {
  5941. name: "Megamacro",
  5942. height: math.unit(7, "miles")
  5943. }
  5944. ]
  5945. ))
  5946. characterMakers.push(() => makeCharacter(
  5947. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5948. {
  5949. side: {
  5950. height: math.unit(370, "cm"),
  5951. weight: math.unit(350, "lbs"),
  5952. name: "Side",
  5953. image: {
  5954. source: "./media/characters/malfressa/side.svg"
  5955. }
  5956. },
  5957. walking: {
  5958. height: math.unit(370, "cm"),
  5959. weight: math.unit(350, "lbs"),
  5960. name: "Walking",
  5961. image: {
  5962. source: "./media/characters/malfressa/walking.svg"
  5963. }
  5964. },
  5965. feral: {
  5966. height: math.unit(2500, "cm"),
  5967. weight: math.unit(100000, "lbs"),
  5968. name: "Feral",
  5969. image: {
  5970. source: "./media/characters/malfressa/feral.svg",
  5971. extra: 2108 / 837,
  5972. bottom: 0.02
  5973. }
  5974. },
  5975. },
  5976. [
  5977. {
  5978. name: "Normal",
  5979. height: math.unit(370, "cm")
  5980. },
  5981. {
  5982. name: "Macro",
  5983. height: math.unit(300, "meters"),
  5984. default: true
  5985. }
  5986. ]
  5987. ))
  5988. characterMakers.push(() => makeCharacter(
  5989. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5990. {
  5991. front: {
  5992. height: math.unit(6, "feet"),
  5993. weight: math.unit(60, "kg"),
  5994. name: "Front",
  5995. image: {
  5996. source: "./media/characters/jaro/front.svg"
  5997. }
  5998. },
  5999. back: {
  6000. height: math.unit(6, "feet"),
  6001. weight: math.unit(60, "kg"),
  6002. name: "Back",
  6003. image: {
  6004. source: "./media/characters/jaro/back.svg"
  6005. }
  6006. },
  6007. },
  6008. [
  6009. {
  6010. name: "Micro",
  6011. height: math.unit(7, "inches")
  6012. },
  6013. {
  6014. name: "Normal",
  6015. height: math.unit(5.5, "feet"),
  6016. default: true
  6017. },
  6018. {
  6019. name: "Minimacro",
  6020. height: math.unit(20, "feet")
  6021. },
  6022. {
  6023. name: "Macro",
  6024. height: math.unit(200, "meters")
  6025. }
  6026. ]
  6027. ))
  6028. characterMakers.push(() => makeCharacter(
  6029. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6030. {
  6031. front: {
  6032. height: math.unit(6, "feet"),
  6033. weight: math.unit(195, "lb"),
  6034. name: "Front",
  6035. image: {
  6036. source: "./media/characters/rogue/front.svg"
  6037. }
  6038. },
  6039. },
  6040. [
  6041. {
  6042. name: "Macro",
  6043. height: math.unit(90, "feet"),
  6044. default: true
  6045. },
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6050. {
  6051. front: {
  6052. height: math.unit(5 + 8 / 12, "feet"),
  6053. weight: math.unit(140, "lb"),
  6054. name: "Front",
  6055. image: {
  6056. source: "./media/characters/piper/front.svg",
  6057. extra: 3948/3655,
  6058. bottom: 0/3948
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Micro",
  6065. height: math.unit(2, "inches")
  6066. },
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(5 + 8 / 12, "feet")
  6070. },
  6071. {
  6072. name: "Macro",
  6073. height: math.unit(250, "feet"),
  6074. default: true
  6075. },
  6076. {
  6077. name: "Megamacro",
  6078. height: math.unit(7, "miles")
  6079. },
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(220, "lb"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/gemini/front.svg"
  6091. }
  6092. },
  6093. back: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(220, "lb"),
  6096. name: "Back",
  6097. image: {
  6098. source: "./media/characters/gemini/back.svg"
  6099. }
  6100. },
  6101. kneeling: {
  6102. height: math.unit(6 / 1.5, "feet"),
  6103. weight: math.unit(220, "lb"),
  6104. name: "Kneeling",
  6105. image: {
  6106. source: "./media/characters/gemini/kneeling.svg",
  6107. bottom: 0.02
  6108. }
  6109. },
  6110. },
  6111. [
  6112. {
  6113. name: "Macro",
  6114. height: math.unit(300, "meters"),
  6115. default: true
  6116. },
  6117. {
  6118. name: "Megamacro",
  6119. height: math.unit(6900, "meters")
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6125. {
  6126. anthro: {
  6127. height: math.unit(2.35, "meters"),
  6128. weight: math.unit(73, "kg"),
  6129. name: "Anthro",
  6130. image: {
  6131. source: "./media/characters/alicia/anthro.svg",
  6132. extra: 2571 / 2385,
  6133. bottom: 75 / 2648
  6134. }
  6135. },
  6136. paw: {
  6137. height: math.unit(1.32, "feet"),
  6138. name: "Paw",
  6139. image: {
  6140. source: "./media/characters/alicia/paw.svg"
  6141. }
  6142. },
  6143. feral: {
  6144. height: math.unit(1.69, "meters"),
  6145. weight: math.unit(73, "kg"),
  6146. name: "Feral",
  6147. image: {
  6148. source: "./media/characters/alicia/feral.svg",
  6149. extra: 2123 / 1715,
  6150. bottom: 222 / 2349
  6151. }
  6152. },
  6153. },
  6154. [
  6155. {
  6156. name: "Normal",
  6157. height: math.unit(2.35, "meters")
  6158. },
  6159. {
  6160. name: "Macro",
  6161. height: math.unit(60, "meters"),
  6162. default: true
  6163. },
  6164. {
  6165. name: "Megamacro",
  6166. height: math.unit(10000, "kilometers")
  6167. },
  6168. ]
  6169. ))
  6170. characterMakers.push(() => makeCharacter(
  6171. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6172. {
  6173. front: {
  6174. height: math.unit(7, "feet"),
  6175. weight: math.unit(250, "lbs"),
  6176. name: "Front",
  6177. image: {
  6178. source: "./media/characters/archy/front.svg"
  6179. }
  6180. }
  6181. },
  6182. [
  6183. {
  6184. name: "Micro",
  6185. height: math.unit(1, "inch")
  6186. },
  6187. {
  6188. name: "Shorty",
  6189. height: math.unit(5, "feet")
  6190. },
  6191. {
  6192. name: "Normal",
  6193. height: math.unit(7, "feet")
  6194. },
  6195. {
  6196. name: "Macro",
  6197. height: math.unit(600, "meters"),
  6198. default: true
  6199. },
  6200. {
  6201. name: "Megamacro",
  6202. height: math.unit(1, "mile")
  6203. },
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6208. {
  6209. front: {
  6210. height: math.unit(1.65, "meters"),
  6211. weight: math.unit(74, "kg"),
  6212. name: "Front",
  6213. image: {
  6214. source: "./media/characters/berri/front.svg",
  6215. extra: 857 / 837,
  6216. bottom: 18 / 877
  6217. }
  6218. },
  6219. bum: {
  6220. height: math.unit(1.46, "feet"),
  6221. name: "Bum",
  6222. image: {
  6223. source: "./media/characters/berri/bum.svg"
  6224. }
  6225. },
  6226. mouth: {
  6227. height: math.unit(0.44, "feet"),
  6228. name: "Mouth",
  6229. image: {
  6230. source: "./media/characters/berri/mouth.svg"
  6231. }
  6232. },
  6233. paw: {
  6234. height: math.unit(0.826, "feet"),
  6235. name: "Paw",
  6236. image: {
  6237. source: "./media/characters/berri/paw.svg"
  6238. }
  6239. },
  6240. },
  6241. [
  6242. {
  6243. name: "Normal",
  6244. height: math.unit(1.65, "meters")
  6245. },
  6246. {
  6247. name: "Macro",
  6248. height: math.unit(60, "m"),
  6249. default: true
  6250. },
  6251. {
  6252. name: "Megamacro",
  6253. height: math.unit(9.213, "km")
  6254. },
  6255. {
  6256. name: "Planet Eater",
  6257. height: math.unit(489, "megameters")
  6258. },
  6259. {
  6260. name: "Teramacro",
  6261. height: math.unit(2471635000000, "meters")
  6262. },
  6263. {
  6264. name: "Examacro",
  6265. height: math.unit(8.0624e+26, "meters")
  6266. }
  6267. ]
  6268. ))
  6269. characterMakers.push(() => makeCharacter(
  6270. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6271. {
  6272. front: {
  6273. height: math.unit(1.72, "meters"),
  6274. weight: math.unit(68, "kg"),
  6275. name: "Front",
  6276. image: {
  6277. source: "./media/characters/lexi/front.svg"
  6278. }
  6279. }
  6280. },
  6281. [
  6282. {
  6283. name: "Very Smol",
  6284. height: math.unit(10, "mm")
  6285. },
  6286. {
  6287. name: "Micro",
  6288. height: math.unit(6.8, "cm"),
  6289. default: true
  6290. },
  6291. {
  6292. name: "Normal",
  6293. height: math.unit(1.72, "m")
  6294. }
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6299. {
  6300. front: {
  6301. height: math.unit(1.69, "meters"),
  6302. weight: math.unit(68, "kg"),
  6303. name: "Front",
  6304. image: {
  6305. source: "./media/characters/martin/front.svg",
  6306. extra: 596 / 581
  6307. }
  6308. }
  6309. },
  6310. [
  6311. {
  6312. name: "Micro",
  6313. height: math.unit(6.85, "cm"),
  6314. default: true
  6315. },
  6316. {
  6317. name: "Normal",
  6318. height: math.unit(1.69, "m")
  6319. }
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(1.69, "meters"),
  6327. weight: math.unit(68, "kg"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/juno/front.svg"
  6331. }
  6332. }
  6333. },
  6334. [
  6335. {
  6336. name: "Micro",
  6337. height: math.unit(7, "cm")
  6338. },
  6339. {
  6340. name: "Normal",
  6341. height: math.unit(1.89, "m")
  6342. },
  6343. {
  6344. name: "Macro",
  6345. height: math.unit(353, "meters"),
  6346. default: true
  6347. }
  6348. ]
  6349. ))
  6350. characterMakers.push(() => makeCharacter(
  6351. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6352. {
  6353. front: {
  6354. height: math.unit(1.93, "meters"),
  6355. weight: math.unit(83, "kg"),
  6356. name: "Front",
  6357. image: {
  6358. source: "./media/characters/samantha/front.svg"
  6359. }
  6360. },
  6361. frontClothed: {
  6362. height: math.unit(1.93, "meters"),
  6363. weight: math.unit(83, "kg"),
  6364. name: "Front (Clothed)",
  6365. image: {
  6366. source: "./media/characters/samantha/front-clothed.svg"
  6367. }
  6368. },
  6369. back: {
  6370. height: math.unit(1.93, "meters"),
  6371. weight: math.unit(83, "kg"),
  6372. name: "Back",
  6373. image: {
  6374. source: "./media/characters/samantha/back.svg"
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(1.93, "m")
  6382. },
  6383. {
  6384. name: "Macro",
  6385. height: math.unit(74, "meters"),
  6386. default: true
  6387. },
  6388. {
  6389. name: "Macro+",
  6390. height: math.unit(223, "meters"),
  6391. },
  6392. {
  6393. name: "Megamacro",
  6394. height: math.unit(8381, "meters"),
  6395. },
  6396. {
  6397. name: "Megamacro+",
  6398. height: math.unit(12000, "kilometers")
  6399. },
  6400. ]
  6401. ))
  6402. characterMakers.push(() => makeCharacter(
  6403. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6404. {
  6405. front: {
  6406. height: math.unit(1.92, "meters"),
  6407. weight: math.unit(80, "kg"),
  6408. name: "Front",
  6409. image: {
  6410. source: "./media/characters/dr-clay/front.svg"
  6411. }
  6412. },
  6413. frontClothed: {
  6414. height: math.unit(1.92, "meters"),
  6415. weight: math.unit(80, "kg"),
  6416. name: "Front (Clothed)",
  6417. image: {
  6418. source: "./media/characters/dr-clay/front-clothed.svg"
  6419. }
  6420. }
  6421. },
  6422. [
  6423. {
  6424. name: "Normal",
  6425. height: math.unit(1.92, "m")
  6426. },
  6427. {
  6428. name: "Macro",
  6429. height: math.unit(214, "meters"),
  6430. default: true
  6431. },
  6432. {
  6433. name: "Macro+",
  6434. height: math.unit(12.237, "meters"),
  6435. },
  6436. {
  6437. name: "Megamacro",
  6438. height: math.unit(557, "megameters"),
  6439. },
  6440. {
  6441. name: "Unimaginable",
  6442. height: math.unit(120e9, "lightyears")
  6443. },
  6444. ]
  6445. ))
  6446. characterMakers.push(() => makeCharacter(
  6447. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6448. {
  6449. front: {
  6450. height: math.unit(2, "meters"),
  6451. weight: math.unit(80, "kg"),
  6452. name: "Front",
  6453. image: {
  6454. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6455. }
  6456. }
  6457. },
  6458. [
  6459. {
  6460. name: "Teramacro",
  6461. height: math.unit(500000, "lightyears"),
  6462. default: true
  6463. },
  6464. ]
  6465. ))
  6466. characterMakers.push(() => makeCharacter(
  6467. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6468. {
  6469. front: {
  6470. height: math.unit(2, "meters"),
  6471. weight: math.unit(150, "kg"),
  6472. name: "Front",
  6473. image: {
  6474. source: "./media/characters/vemus/front.svg",
  6475. extra: 1074/936,
  6476. bottom: 23/1097
  6477. }
  6478. }
  6479. },
  6480. [
  6481. {
  6482. name: "Normal",
  6483. height: math.unit(3.75, "meters"),
  6484. default: true
  6485. },
  6486. {
  6487. name: "Big",
  6488. height: math.unit(8, "meters")
  6489. },
  6490. {
  6491. name: "Macro",
  6492. height: math.unit(100, "meters")
  6493. },
  6494. {
  6495. name: "Macro+",
  6496. height: math.unit(1500, "meters")
  6497. },
  6498. {
  6499. name: "Stellar",
  6500. height: math.unit(14e8, "meters")
  6501. },
  6502. ]
  6503. ))
  6504. characterMakers.push(() => makeCharacter(
  6505. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6506. {
  6507. front: {
  6508. height: math.unit(2, "meters"),
  6509. weight: math.unit(70, "kg"),
  6510. name: "Front",
  6511. image: {
  6512. source: "./media/characters/beherit/front.svg",
  6513. extra: 1408 / 1242
  6514. }
  6515. }
  6516. },
  6517. [
  6518. {
  6519. name: "Normal",
  6520. height: math.unit(6, "feet")
  6521. },
  6522. {
  6523. name: "Lorg",
  6524. height: math.unit(25, "feet"),
  6525. default: true
  6526. },
  6527. {
  6528. name: "Lorger",
  6529. height: math.unit(75, "feet")
  6530. },
  6531. {
  6532. name: "Macro",
  6533. height: math.unit(200, "meters")
  6534. },
  6535. ]
  6536. ))
  6537. characterMakers.push(() => makeCharacter(
  6538. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6539. {
  6540. front: {
  6541. height: math.unit(2, "meters"),
  6542. weight: math.unit(150, "kg"),
  6543. name: "Front",
  6544. image: {
  6545. source: "./media/characters/everett/front.svg",
  6546. extra: 2038 / 1737,
  6547. bottom: 0.03
  6548. }
  6549. },
  6550. paw: {
  6551. height: math.unit(2 / 3.6, "meters"),
  6552. name: "Paw",
  6553. image: {
  6554. source: "./media/characters/everett/paw.svg"
  6555. }
  6556. },
  6557. },
  6558. [
  6559. {
  6560. name: "Normal",
  6561. height: math.unit(15, "feet"),
  6562. default: true
  6563. },
  6564. {
  6565. name: "Lorg",
  6566. height: math.unit(70, "feet"),
  6567. default: true
  6568. },
  6569. {
  6570. name: "Lorger",
  6571. height: math.unit(250, "feet")
  6572. },
  6573. {
  6574. name: "Macro",
  6575. height: math.unit(500, "meters")
  6576. },
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6581. {
  6582. front: {
  6583. height: math.unit(2, "meters"),
  6584. weight: math.unit(86, "kg"),
  6585. name: "Front",
  6586. image: {
  6587. source: "./media/characters/rose/front.svg",
  6588. extra: 1785/1636,
  6589. bottom: 30/1815
  6590. }
  6591. },
  6592. frontSporty: {
  6593. height: math.unit(2, "meters"),
  6594. weight: math.unit(86, "kg"),
  6595. name: "Front (Sporty)",
  6596. image: {
  6597. source: "./media/characters/rose/front-sporty.svg",
  6598. extra: 350/335,
  6599. bottom: 10/360
  6600. }
  6601. },
  6602. frontAlt: {
  6603. height: math.unit(1.6, "meters"),
  6604. weight: math.unit(86, "kg"),
  6605. name: "Front (Alt)",
  6606. image: {
  6607. source: "./media/characters/rose/front-alt.svg",
  6608. extra: 299/283,
  6609. bottom: 3/302
  6610. }
  6611. },
  6612. plush: {
  6613. height: math.unit(2, "meters"),
  6614. weight: math.unit(86/3, "kg"),
  6615. name: "Plush",
  6616. image: {
  6617. source: "./media/characters/rose/plush.svg",
  6618. extra: 361/337,
  6619. bottom: 11/372
  6620. }
  6621. },
  6622. },
  6623. [
  6624. {
  6625. name: "True Micro",
  6626. height: math.unit(9, "cm")
  6627. },
  6628. {
  6629. name: "Micro",
  6630. height: math.unit(16, "cm")
  6631. },
  6632. {
  6633. name: "Normal",
  6634. height: math.unit(1.85, "meters"),
  6635. default: true
  6636. },
  6637. {
  6638. name: "Mini-Macro",
  6639. height: math.unit(5, "meters")
  6640. },
  6641. {
  6642. name: "Macro",
  6643. height: math.unit(15, "meters")
  6644. },
  6645. {
  6646. name: "True Macro",
  6647. height: math.unit(40, "meters")
  6648. },
  6649. {
  6650. name: "City Scale",
  6651. height: math.unit(1, "km")
  6652. },
  6653. ]
  6654. ))
  6655. characterMakers.push(() => makeCharacter(
  6656. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6657. {
  6658. front: {
  6659. height: math.unit(2, "meters"),
  6660. weight: math.unit(350, "lbs"),
  6661. name: "Front",
  6662. image: {
  6663. source: "./media/characters/regal/front.svg"
  6664. }
  6665. },
  6666. back: {
  6667. height: math.unit(2, "meters"),
  6668. weight: math.unit(350, "lbs"),
  6669. name: "Back",
  6670. image: {
  6671. source: "./media/characters/regal/back.svg"
  6672. }
  6673. },
  6674. },
  6675. [
  6676. {
  6677. name: "Macro",
  6678. height: math.unit(350, "feet"),
  6679. default: true
  6680. }
  6681. ]
  6682. ))
  6683. characterMakers.push(() => makeCharacter(
  6684. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6685. {
  6686. front: {
  6687. height: math.unit(4 + 11 / 12, "feet"),
  6688. weight: math.unit(100, "lbs"),
  6689. name: "Front",
  6690. image: {
  6691. source: "./media/characters/opal/front.svg"
  6692. }
  6693. },
  6694. frontAlt: {
  6695. height: math.unit(4 + 11 / 12, "feet"),
  6696. weight: math.unit(100, "lbs"),
  6697. name: "Front (Alt)",
  6698. image: {
  6699. source: "./media/characters/opal/front-alt.svg"
  6700. }
  6701. },
  6702. },
  6703. [
  6704. {
  6705. name: "Small",
  6706. height: math.unit(4 + 11 / 12, "feet")
  6707. },
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(20, "feet"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Macro",
  6715. height: math.unit(120, "feet")
  6716. },
  6717. {
  6718. name: "Megamacro",
  6719. height: math.unit(80, "miles")
  6720. },
  6721. {
  6722. name: "True Size",
  6723. height: math.unit(100000, "lightyears")
  6724. },
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(6, "feet"),
  6732. weight: math.unit(200, "lbs"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/vector-wuff/front.svg"
  6736. }
  6737. }
  6738. },
  6739. [
  6740. {
  6741. name: "Normal",
  6742. height: math.unit(2.8, "meters")
  6743. },
  6744. {
  6745. name: "Macro",
  6746. height: math.unit(450, "meters"),
  6747. default: true
  6748. },
  6749. {
  6750. name: "Megamacro",
  6751. height: math.unit(15, "kilometers")
  6752. }
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(256, "lbs"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/dannik/front.svg"
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Macro",
  6770. height: math.unit(69.57, "meters"),
  6771. default: true
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(120, "lbs"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/azura-saharah/front.svg"
  6784. }
  6785. },
  6786. back: {
  6787. height: math.unit(6, "feet"),
  6788. weight: math.unit(120, "lbs"),
  6789. name: "Back",
  6790. image: {
  6791. source: "./media/characters/azura-saharah/back.svg"
  6792. }
  6793. },
  6794. },
  6795. [
  6796. {
  6797. name: "Macro",
  6798. height: math.unit(100, "feet"),
  6799. default: true
  6800. },
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6805. {
  6806. side: {
  6807. height: math.unit(5 + 4 / 12, "feet"),
  6808. weight: math.unit(163, "lbs"),
  6809. name: "Side",
  6810. image: {
  6811. source: "./media/characters/kennedy/side.svg"
  6812. }
  6813. }
  6814. },
  6815. [
  6816. {
  6817. name: "Standard Doggo",
  6818. height: math.unit(5 + 4 / 12, "feet")
  6819. },
  6820. {
  6821. name: "Big Doggo",
  6822. height: math.unit(25 + 3 / 12, "feet"),
  6823. default: true
  6824. },
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(6, "feet"),
  6832. weight: math.unit(90, "lbs"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/odi-lunar/front.svg"
  6836. }
  6837. }
  6838. },
  6839. [
  6840. {
  6841. name: "Micro",
  6842. height: math.unit(3, "inches"),
  6843. default: true
  6844. },
  6845. {
  6846. name: "Normal",
  6847. height: math.unit(5.5, "feet")
  6848. }
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6853. {
  6854. back: {
  6855. height: math.unit(6, "feet"),
  6856. weight: math.unit(220, "lbs"),
  6857. name: "Back",
  6858. image: {
  6859. source: "./media/characters/mandake/back.svg"
  6860. }
  6861. }
  6862. },
  6863. [
  6864. {
  6865. name: "Normal",
  6866. height: math.unit(7, "feet"),
  6867. default: true
  6868. },
  6869. {
  6870. name: "Macro",
  6871. height: math.unit(78, "feet")
  6872. },
  6873. {
  6874. name: "Macro+",
  6875. height: math.unit(300, "meters")
  6876. },
  6877. {
  6878. name: "Macro++",
  6879. height: math.unit(2400, "feet")
  6880. },
  6881. {
  6882. name: "Megamacro",
  6883. height: math.unit(5167, "meters")
  6884. },
  6885. {
  6886. name: "Gigamacro",
  6887. height: math.unit(41769, "miles")
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(120, "lbs"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/yozey/front.svg"
  6900. }
  6901. },
  6902. frontAlt: {
  6903. height: math.unit(6, "feet"),
  6904. weight: math.unit(120, "lbs"),
  6905. name: "Front (Alt)",
  6906. image: {
  6907. source: "./media/characters/yozey/front-alt.svg"
  6908. }
  6909. },
  6910. side: {
  6911. height: math.unit(6, "feet"),
  6912. weight: math.unit(120, "lbs"),
  6913. name: "Side",
  6914. image: {
  6915. source: "./media/characters/yozey/side.svg"
  6916. }
  6917. },
  6918. },
  6919. [
  6920. {
  6921. name: "Micro",
  6922. height: math.unit(3, "inches"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Normal",
  6927. height: math.unit(6, "feet")
  6928. }
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6933. {
  6934. front: {
  6935. height: math.unit(6, "feet"),
  6936. weight: math.unit(103, "lbs"),
  6937. name: "Front",
  6938. image: {
  6939. source: "./media/characters/valeska-voss/front.svg"
  6940. }
  6941. }
  6942. },
  6943. [
  6944. {
  6945. name: "Mini-Sized Sub",
  6946. height: math.unit(3.1, "inches")
  6947. },
  6948. {
  6949. name: "Mid-Sized Sub",
  6950. height: math.unit(6.2, "inches")
  6951. },
  6952. {
  6953. name: "Full-Sized Sub",
  6954. height: math.unit(9.3, "inches")
  6955. },
  6956. {
  6957. name: "Normal",
  6958. height: math.unit(5 + 2 / 12, "foot"),
  6959. default: true
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6965. {
  6966. front: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(160, "lbs"),
  6969. name: "Front",
  6970. image: {
  6971. source: "./media/characters/gene-zeta/front.svg",
  6972. extra: 3006 / 2826,
  6973. bottom: 182 / 3188
  6974. }
  6975. }
  6976. },
  6977. [
  6978. {
  6979. name: "Micro",
  6980. height: math.unit(6, "inches")
  6981. },
  6982. {
  6983. name: "Normal",
  6984. height: math.unit(5 + 11 / 12, "foot"),
  6985. default: true
  6986. },
  6987. {
  6988. name: "Macro",
  6989. height: math.unit(140, "feet")
  6990. },
  6991. {
  6992. name: "Supercharged",
  6993. height: math.unit(2500, "feet")
  6994. },
  6995. ]
  6996. ))
  6997. characterMakers.push(() => makeCharacter(
  6998. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6999. {
  7000. front: {
  7001. height: math.unit(6, "feet"),
  7002. weight: math.unit(350, "lbs"),
  7003. name: "Front",
  7004. image: {
  7005. source: "./media/characters/razinox/front.svg",
  7006. extra: 1686 / 1548,
  7007. bottom: 28.2 / 1868
  7008. }
  7009. },
  7010. back: {
  7011. height: math.unit(6, "feet"),
  7012. weight: math.unit(350, "lbs"),
  7013. name: "Back",
  7014. image: {
  7015. source: "./media/characters/razinox/back.svg",
  7016. extra: 1660 / 1590,
  7017. bottom: 15 / 1665
  7018. }
  7019. },
  7020. },
  7021. [
  7022. {
  7023. name: "Normal",
  7024. height: math.unit(10 + 8 / 12, "foot")
  7025. },
  7026. {
  7027. name: "Minimacro",
  7028. height: math.unit(15, "foot")
  7029. },
  7030. {
  7031. name: "Macro",
  7032. height: math.unit(60, "foot"),
  7033. default: true
  7034. },
  7035. {
  7036. name: "Megamacro",
  7037. height: math.unit(5, "miles")
  7038. },
  7039. {
  7040. name: "Gigamacro",
  7041. height: math.unit(6000, "miles")
  7042. },
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7047. {
  7048. front: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(150, "lbs"),
  7051. name: "Front",
  7052. image: {
  7053. source: "./media/characters/cobalt/front.svg"
  7054. }
  7055. }
  7056. },
  7057. [
  7058. {
  7059. name: "Normal",
  7060. height: math.unit(8 + 1 / 12, "foot")
  7061. },
  7062. {
  7063. name: "Macro",
  7064. height: math.unit(111, "foot"),
  7065. default: true
  7066. },
  7067. {
  7068. name: "Supracosmic",
  7069. height: math.unit(1e42, "feet")
  7070. },
  7071. ]
  7072. ))
  7073. characterMakers.push(() => makeCharacter(
  7074. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7075. {
  7076. front: {
  7077. height: math.unit(6, "feet"),
  7078. weight: math.unit(140, "lbs"),
  7079. name: "Front",
  7080. image: {
  7081. source: "./media/characters/amanda/front.svg"
  7082. }
  7083. }
  7084. },
  7085. [
  7086. {
  7087. name: "Micro",
  7088. height: math.unit(5, "inches"),
  7089. default: true
  7090. },
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7095. {
  7096. front: {
  7097. height: math.unit(2.75, "meters"),
  7098. weight: math.unit(1200, "lb"),
  7099. name: "Front",
  7100. image: {
  7101. source: "./media/characters/teal/front.svg",
  7102. extra: 2463 / 2320,
  7103. bottom: 166 / 2629
  7104. }
  7105. },
  7106. back: {
  7107. height: math.unit(2.75, "meters"),
  7108. weight: math.unit(1200, "lb"),
  7109. name: "Back",
  7110. image: {
  7111. source: "./media/characters/teal/back.svg",
  7112. extra: 2580 / 2489,
  7113. bottom: 151 / 2731
  7114. }
  7115. },
  7116. sitting: {
  7117. height: math.unit(1.9, "meters"),
  7118. weight: math.unit(1200, "lb"),
  7119. name: "Sitting",
  7120. image: {
  7121. source: "./media/characters/teal/sitting.svg",
  7122. extra: 623 / 590,
  7123. bottom: 121 / 744
  7124. }
  7125. },
  7126. standing: {
  7127. height: math.unit(2.75, "meters"),
  7128. weight: math.unit(1200, "lb"),
  7129. name: "Standing",
  7130. image: {
  7131. source: "./media/characters/teal/standing.svg",
  7132. extra: 923 / 893,
  7133. bottom: 60 / 983
  7134. }
  7135. },
  7136. stretching: {
  7137. height: math.unit(3.65, "meters"),
  7138. weight: math.unit(1200, "lb"),
  7139. name: "Stretching",
  7140. image: {
  7141. source: "./media/characters/teal/stretching.svg",
  7142. extra: 1276 / 1244,
  7143. bottom: 0 / 1276
  7144. }
  7145. },
  7146. legged: {
  7147. height: math.unit(1.3, "meters"),
  7148. weight: math.unit(100, "lb"),
  7149. name: "Legged",
  7150. image: {
  7151. source: "./media/characters/teal/legged.svg",
  7152. extra: 462 / 437,
  7153. bottom: 24 / 486
  7154. }
  7155. },
  7156. naga: {
  7157. height: math.unit(5.4, "meters"),
  7158. weight: math.unit(4000, "lb"),
  7159. name: "Naga",
  7160. image: {
  7161. source: "./media/characters/teal/naga.svg",
  7162. extra: 1902 / 1858,
  7163. bottom: 0 / 1902
  7164. }
  7165. },
  7166. hand: {
  7167. height: math.unit(0.52, "meters"),
  7168. name: "Hand",
  7169. image: {
  7170. source: "./media/characters/teal/hand.svg"
  7171. }
  7172. },
  7173. maw: {
  7174. height: math.unit(0.43, "meters"),
  7175. name: "Maw",
  7176. image: {
  7177. source: "./media/characters/teal/maw.svg"
  7178. }
  7179. },
  7180. slit: {
  7181. height: math.unit(0.25, "meters"),
  7182. name: "Slit",
  7183. image: {
  7184. source: "./media/characters/teal/slit.svg"
  7185. }
  7186. },
  7187. },
  7188. [
  7189. {
  7190. name: "Normal",
  7191. height: math.unit(2.75, "meters"),
  7192. default: true
  7193. },
  7194. {
  7195. name: "Macro",
  7196. height: math.unit(300, "feet")
  7197. },
  7198. {
  7199. name: "Macro+",
  7200. height: math.unit(2000, "feet")
  7201. },
  7202. ]
  7203. ))
  7204. characterMakers.push(() => makeCharacter(
  7205. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7206. {
  7207. frontCat: {
  7208. height: math.unit(6, "feet"),
  7209. weight: math.unit(180, "lbs"),
  7210. name: "Front (Cat)",
  7211. image: {
  7212. source: "./media/characters/ravin-amulet/front-cat.svg"
  7213. }
  7214. },
  7215. frontCatAlt: {
  7216. height: math.unit(6, "feet"),
  7217. weight: math.unit(180, "lbs"),
  7218. name: "Front (Alt, Cat)",
  7219. image: {
  7220. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7221. }
  7222. },
  7223. frontWerewolf: {
  7224. height: math.unit(6 * 1.2, "feet"),
  7225. weight: math.unit(225, "lbs"),
  7226. name: "Front (Werewolf)",
  7227. image: {
  7228. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7229. }
  7230. },
  7231. backWerewolf: {
  7232. height: math.unit(6 * 1.2, "feet"),
  7233. weight: math.unit(225, "lbs"),
  7234. name: "Back (Werewolf)",
  7235. image: {
  7236. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7237. }
  7238. },
  7239. },
  7240. [
  7241. {
  7242. name: "Nano",
  7243. height: math.unit(1, "micrometer")
  7244. },
  7245. {
  7246. name: "Micro",
  7247. height: math.unit(1, "inch")
  7248. },
  7249. {
  7250. name: "Normal",
  7251. height: math.unit(6, "feet"),
  7252. default: true
  7253. },
  7254. {
  7255. name: "Macro",
  7256. height: math.unit(60, "feet")
  7257. }
  7258. ]
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7262. {
  7263. front: {
  7264. height: math.unit(6, "feet"),
  7265. weight: math.unit(165, "lbs"),
  7266. name: "Front",
  7267. image: {
  7268. source: "./media/characters/fluoresce/front.svg"
  7269. }
  7270. }
  7271. },
  7272. [
  7273. {
  7274. name: "Micro",
  7275. height: math.unit(6, "cm")
  7276. },
  7277. {
  7278. name: "Normal",
  7279. height: math.unit(5 + 7 / 12, "feet"),
  7280. default: true
  7281. },
  7282. {
  7283. name: "Macro",
  7284. height: math.unit(56, "feet")
  7285. },
  7286. {
  7287. name: "Megamacro",
  7288. height: math.unit(1.9, "miles")
  7289. },
  7290. ]
  7291. ))
  7292. characterMakers.push(() => makeCharacter(
  7293. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7294. {
  7295. front: {
  7296. height: math.unit(9 + 6 / 12, "feet"),
  7297. weight: math.unit(523, "lbs"),
  7298. name: "Side",
  7299. image: {
  7300. source: "./media/characters/aurora/side.svg"
  7301. }
  7302. }
  7303. },
  7304. [
  7305. {
  7306. name: "Normal",
  7307. height: math.unit(9 + 6 / 12, "feet")
  7308. },
  7309. {
  7310. name: "Macro",
  7311. height: math.unit(96, "feet"),
  7312. default: true
  7313. },
  7314. {
  7315. name: "Macro+",
  7316. height: math.unit(243, "feet")
  7317. },
  7318. ]
  7319. ))
  7320. characterMakers.push(() => makeCharacter(
  7321. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7322. {
  7323. front: {
  7324. height: math.unit(194, "cm"),
  7325. weight: math.unit(90, "kg"),
  7326. name: "Front",
  7327. image: {
  7328. source: "./media/characters/ranek/front.svg"
  7329. }
  7330. },
  7331. side: {
  7332. height: math.unit(194, "cm"),
  7333. weight: math.unit(90, "kg"),
  7334. name: "Side",
  7335. image: {
  7336. source: "./media/characters/ranek/side.svg"
  7337. }
  7338. },
  7339. back: {
  7340. height: math.unit(194, "cm"),
  7341. weight: math.unit(90, "kg"),
  7342. name: "Back",
  7343. image: {
  7344. source: "./media/characters/ranek/back.svg"
  7345. }
  7346. },
  7347. feral: {
  7348. height: math.unit(30, "cm"),
  7349. weight: math.unit(1.6, "lbs"),
  7350. name: "Feral",
  7351. image: {
  7352. source: "./media/characters/ranek/feral.svg"
  7353. }
  7354. },
  7355. },
  7356. [
  7357. {
  7358. name: "Normal",
  7359. height: math.unit(194, "cm"),
  7360. default: true
  7361. },
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(100, "meters")
  7365. },
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(5 + 6 / 12, "feet"),
  7373. weight: math.unit(153, "lbs"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/andrew-cooper/front.svg"
  7377. }
  7378. },
  7379. },
  7380. [
  7381. {
  7382. name: "Nano",
  7383. height: math.unit(1, "mm")
  7384. },
  7385. {
  7386. name: "Micro",
  7387. height: math.unit(2, "inches")
  7388. },
  7389. {
  7390. name: "Normal",
  7391. height: math.unit(5 + 6 / 12, "feet"),
  7392. default: true
  7393. }
  7394. ]
  7395. ))
  7396. characterMakers.push(() => makeCharacter(
  7397. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7398. {
  7399. front: {
  7400. height: math.unit(6, "feet"),
  7401. weight: math.unit(180, "lbs"),
  7402. name: "Front",
  7403. image: {
  7404. source: "./media/characters/akane-sato/front.svg",
  7405. extra: 1219 / 1140
  7406. }
  7407. },
  7408. back: {
  7409. height: math.unit(6, "feet"),
  7410. weight: math.unit(180, "lbs"),
  7411. name: "Back",
  7412. image: {
  7413. source: "./media/characters/akane-sato/back.svg",
  7414. extra: 1219 / 1170
  7415. }
  7416. },
  7417. },
  7418. [
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(2.5, "meters")
  7422. },
  7423. {
  7424. name: "Macro",
  7425. height: math.unit(250, "meters"),
  7426. default: true
  7427. },
  7428. {
  7429. name: "Megamacro",
  7430. height: math.unit(25, "km")
  7431. },
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7436. {
  7437. front: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(65, "kg"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/rook/front.svg",
  7443. extra: 960 / 950
  7444. }
  7445. }
  7446. },
  7447. [
  7448. {
  7449. name: "Normal",
  7450. height: math.unit(8.8, "feet")
  7451. },
  7452. {
  7453. name: "Macro",
  7454. height: math.unit(88, "feet"),
  7455. default: true
  7456. },
  7457. {
  7458. name: "Megamacro",
  7459. height: math.unit(8, "miles")
  7460. },
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7465. {
  7466. front: {
  7467. height: math.unit(12 + 2 / 12, "feet"),
  7468. weight: math.unit(808, "lbs"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/prodigy/front.svg"
  7472. }
  7473. }
  7474. },
  7475. [
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(12 + 2 / 12, "feet"),
  7479. default: true
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(143, "feet")
  7484. },
  7485. {
  7486. name: "Macro+",
  7487. height: math.unit(400, "feet")
  7488. },
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7493. {
  7494. front: {
  7495. height: math.unit(6, "feet"),
  7496. weight: math.unit(225, "lbs"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/daniel/front.svg"
  7500. }
  7501. },
  7502. leaning: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(225, "lbs"),
  7505. name: "Leaning",
  7506. image: {
  7507. source: "./media/characters/daniel/leaning.svg"
  7508. }
  7509. },
  7510. },
  7511. [
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(1000, "feet"),
  7515. default: true
  7516. },
  7517. ]
  7518. ))
  7519. characterMakers.push(() => makeCharacter(
  7520. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7521. {
  7522. front: {
  7523. height: math.unit(6, "feet"),
  7524. weight: math.unit(88, "lbs"),
  7525. name: "Front",
  7526. image: {
  7527. source: "./media/characters/chiros/front.svg",
  7528. extra: 306 / 226
  7529. }
  7530. },
  7531. side: {
  7532. height: math.unit(6, "feet"),
  7533. weight: math.unit(88, "lbs"),
  7534. name: "Side",
  7535. image: {
  7536. source: "./media/characters/chiros/side.svg",
  7537. extra: 306 / 226
  7538. }
  7539. },
  7540. },
  7541. [
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(6, "cm"),
  7545. default: true
  7546. },
  7547. ]
  7548. ))
  7549. characterMakers.push(() => makeCharacter(
  7550. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7551. {
  7552. front: {
  7553. height: math.unit(6, "feet"),
  7554. weight: math.unit(100, "lbs"),
  7555. name: "Front",
  7556. image: {
  7557. source: "./media/characters/selka/front.svg",
  7558. extra: 947 / 887
  7559. }
  7560. }
  7561. },
  7562. [
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(5, "cm"),
  7566. default: true
  7567. },
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7572. {
  7573. front: {
  7574. height: math.unit(8 + 3 / 12, "feet"),
  7575. weight: math.unit(424, "lbs"),
  7576. name: "Front",
  7577. image: {
  7578. source: "./media/characters/verin/front.svg",
  7579. extra: 1845 / 1550
  7580. }
  7581. },
  7582. frontArmored: {
  7583. height: math.unit(8 + 3 / 12, "feet"),
  7584. weight: math.unit(424, "lbs"),
  7585. name: "Front (Armored)",
  7586. image: {
  7587. source: "./media/characters/verin/front-armor.svg",
  7588. extra: 1845 / 1550,
  7589. bottom: 0.01
  7590. }
  7591. },
  7592. back: {
  7593. height: math.unit(8 + 3 / 12, "feet"),
  7594. weight: math.unit(424, "lbs"),
  7595. name: "Back",
  7596. image: {
  7597. source: "./media/characters/verin/back.svg",
  7598. bottom: 0.1,
  7599. extra: 1
  7600. }
  7601. },
  7602. foot: {
  7603. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7604. name: "Foot",
  7605. image: {
  7606. source: "./media/characters/verin/foot.svg"
  7607. }
  7608. },
  7609. },
  7610. [
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(8 + 3 / 12, "feet")
  7614. },
  7615. {
  7616. name: "Minimacro",
  7617. height: math.unit(21, "feet"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Macro",
  7622. height: math.unit(626, "feet")
  7623. },
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7628. {
  7629. front: {
  7630. height: math.unit(2.718, "meters"),
  7631. weight: math.unit(150, "lbs"),
  7632. name: "Front",
  7633. image: {
  7634. source: "./media/characters/sovrim-terraquian/front.svg"
  7635. }
  7636. },
  7637. back: {
  7638. height: math.unit(2.718, "meters"),
  7639. weight: math.unit(150, "lbs"),
  7640. name: "Back",
  7641. image: {
  7642. source: "./media/characters/sovrim-terraquian/back.svg"
  7643. }
  7644. }
  7645. },
  7646. [
  7647. {
  7648. name: "Micro",
  7649. height: math.unit(2, "inches")
  7650. },
  7651. {
  7652. name: "Small",
  7653. height: math.unit(1, "meter")
  7654. },
  7655. {
  7656. name: "Normal",
  7657. height: math.unit(Math.E, "meters"),
  7658. default: true
  7659. },
  7660. {
  7661. name: "Macro",
  7662. height: math.unit(20, "meters")
  7663. },
  7664. {
  7665. name: "Macro+",
  7666. height: math.unit(400, "meters")
  7667. },
  7668. ]
  7669. ))
  7670. characterMakers.push(() => makeCharacter(
  7671. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7672. {
  7673. front: {
  7674. height: math.unit(7, "feet"),
  7675. weight: math.unit(489, "lbs"),
  7676. name: "Front",
  7677. image: {
  7678. source: "./media/characters/reece-silvermane/front.svg",
  7679. bottom: 0.02,
  7680. extra: 1
  7681. }
  7682. },
  7683. },
  7684. [
  7685. {
  7686. name: "Macro",
  7687. height: math.unit(1.5, "miles"),
  7688. default: true
  7689. },
  7690. ]
  7691. ))
  7692. characterMakers.push(() => makeCharacter(
  7693. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7694. {
  7695. front: {
  7696. height: math.unit(6, "feet"),
  7697. weight: math.unit(78, "kg"),
  7698. name: "Front",
  7699. image: {
  7700. source: "./media/characters/kane/front.svg",
  7701. extra: 978 / 899
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(2.1, "m"),
  7709. },
  7710. {
  7711. name: "Macro",
  7712. height: math.unit(1, "km"),
  7713. default: true
  7714. },
  7715. ]
  7716. ))
  7717. characterMakers.push(() => makeCharacter(
  7718. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7719. {
  7720. front: {
  7721. height: math.unit(6, "feet"),
  7722. weight: math.unit(200, "kg"),
  7723. name: "Front",
  7724. image: {
  7725. source: "./media/characters/tegon/front.svg",
  7726. bottom: 0.01,
  7727. extra: 1
  7728. }
  7729. },
  7730. },
  7731. [
  7732. {
  7733. name: "Micro",
  7734. height: math.unit(1, "inch")
  7735. },
  7736. {
  7737. name: "Normal",
  7738. height: math.unit(6 + 3 / 12, "feet"),
  7739. default: true
  7740. },
  7741. {
  7742. name: "Macro",
  7743. height: math.unit(300, "feet")
  7744. },
  7745. {
  7746. name: "Megamacro",
  7747. height: math.unit(69, "miles")
  7748. },
  7749. ]
  7750. ))
  7751. characterMakers.push(() => makeCharacter(
  7752. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7753. {
  7754. side: {
  7755. height: math.unit(6, "feet"),
  7756. weight: math.unit(2304, "lbs"),
  7757. name: "Side",
  7758. image: {
  7759. source: "./media/characters/arcturax/side.svg",
  7760. extra: 790 / 376,
  7761. bottom: 0.01
  7762. }
  7763. },
  7764. },
  7765. [
  7766. {
  7767. name: "Micro",
  7768. height: math.unit(2, "inch")
  7769. },
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(6, "feet")
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(39, "feet"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Megamacro",
  7781. height: math.unit(7, "miles")
  7782. },
  7783. ]
  7784. ))
  7785. characterMakers.push(() => makeCharacter(
  7786. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7787. {
  7788. front: {
  7789. height: math.unit(6, "feet"),
  7790. weight: math.unit(50, "lbs"),
  7791. name: "Front",
  7792. image: {
  7793. source: "./media/characters/sentri/front.svg",
  7794. extra: 1750 / 1570,
  7795. bottom: 0.025
  7796. }
  7797. },
  7798. frontAlt: {
  7799. height: math.unit(6, "feet"),
  7800. weight: math.unit(50, "lbs"),
  7801. name: "Front (Alt)",
  7802. image: {
  7803. source: "./media/characters/sentri/front-alt.svg",
  7804. extra: 1750 / 1570,
  7805. bottom: 0.025
  7806. }
  7807. },
  7808. },
  7809. [
  7810. {
  7811. name: "Normal",
  7812. height: math.unit(15, "feet"),
  7813. default: true
  7814. },
  7815. {
  7816. name: "Macro",
  7817. height: math.unit(2500, "feet")
  7818. }
  7819. ]
  7820. ))
  7821. characterMakers.push(() => makeCharacter(
  7822. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7823. {
  7824. front: {
  7825. height: math.unit(5 + 8 / 12, "feet"),
  7826. weight: math.unit(130, "lbs"),
  7827. name: "Front",
  7828. image: {
  7829. source: "./media/characters/corvin/front.svg",
  7830. extra: 1803 / 1629
  7831. }
  7832. },
  7833. frontShirt: {
  7834. height: math.unit(5 + 8 / 12, "feet"),
  7835. weight: math.unit(130, "lbs"),
  7836. name: "Front (Shirt)",
  7837. image: {
  7838. source: "./media/characters/corvin/front-shirt.svg",
  7839. extra: 1803 / 1629
  7840. }
  7841. },
  7842. frontPoncho: {
  7843. height: math.unit(5 + 8 / 12, "feet"),
  7844. weight: math.unit(130, "lbs"),
  7845. name: "Front (Poncho)",
  7846. image: {
  7847. source: "./media/characters/corvin/front-poncho.svg",
  7848. extra: 1803 / 1629
  7849. }
  7850. },
  7851. side: {
  7852. height: math.unit(5 + 8 / 12, "feet"),
  7853. weight: math.unit(130, "lbs"),
  7854. name: "Side",
  7855. image: {
  7856. source: "./media/characters/corvin/side.svg",
  7857. extra: 1012 / 945
  7858. }
  7859. },
  7860. back: {
  7861. height: math.unit(5 + 8 / 12, "feet"),
  7862. weight: math.unit(130, "lbs"),
  7863. name: "Back",
  7864. image: {
  7865. source: "./media/characters/corvin/back.svg",
  7866. extra: 1803 / 1629
  7867. }
  7868. },
  7869. },
  7870. [
  7871. {
  7872. name: "Micro",
  7873. height: math.unit(3, "inches")
  7874. },
  7875. {
  7876. name: "Normal",
  7877. height: math.unit(5 + 8 / 12, "feet")
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(300, "feet"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Megamacro",
  7886. height: math.unit(500, "miles")
  7887. }
  7888. ]
  7889. ))
  7890. characterMakers.push(() => makeCharacter(
  7891. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7892. {
  7893. front: {
  7894. height: math.unit(6, "feet"),
  7895. weight: math.unit(135, "lbs"),
  7896. name: "Front",
  7897. image: {
  7898. source: "./media/characters/q/front.svg",
  7899. extra: 854 / 752,
  7900. bottom: 0.005
  7901. }
  7902. },
  7903. back: {
  7904. height: math.unit(6, "feet"),
  7905. weight: math.unit(130, "lbs"),
  7906. name: "Back",
  7907. image: {
  7908. source: "./media/characters/q/back.svg",
  7909. extra: 854 / 752
  7910. }
  7911. },
  7912. },
  7913. [
  7914. {
  7915. name: "Macro",
  7916. height: math.unit(90, "feet"),
  7917. default: true
  7918. },
  7919. {
  7920. name: "Extra Macro",
  7921. height: math.unit(300, "feet"),
  7922. },
  7923. {
  7924. name: "BIG WALF",
  7925. height: math.unit(750, "feet"),
  7926. },
  7927. ]
  7928. ))
  7929. characterMakers.push(() => makeCharacter(
  7930. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7931. {
  7932. front: {
  7933. height: math.unit(6, "feet"),
  7934. weight: math.unit(150, "lbs"),
  7935. name: "Front",
  7936. image: {
  7937. source: "./media/characters/carley/front.svg",
  7938. extra: 3927 / 3540,
  7939. bottom: 29.2 / 735
  7940. }
  7941. }
  7942. },
  7943. [
  7944. {
  7945. name: "Normal",
  7946. height: math.unit(6 + 3 / 12, "feet")
  7947. },
  7948. {
  7949. name: "Macro",
  7950. height: math.unit(185, "feet"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Megamacro",
  7955. height: math.unit(8, "miles"),
  7956. },
  7957. ]
  7958. ))
  7959. characterMakers.push(() => makeCharacter(
  7960. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7961. {
  7962. front: {
  7963. height: math.unit(3, "feet"),
  7964. weight: math.unit(28, "lbs"),
  7965. name: "Front",
  7966. image: {
  7967. source: "./media/characters/citrine/front.svg"
  7968. }
  7969. }
  7970. },
  7971. [
  7972. {
  7973. name: "Normal",
  7974. height: math.unit(3, "feet"),
  7975. default: true
  7976. }
  7977. ]
  7978. ))
  7979. characterMakers.push(() => makeCharacter(
  7980. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7981. {
  7982. front: {
  7983. height: math.unit(14, "feet"),
  7984. weight: math.unit(1450, "kg"),
  7985. capacity: math.unit(15, "people"),
  7986. name: "Front",
  7987. image: {
  7988. source: "./media/characters/aura-starwind/front.svg",
  7989. extra: 1455 / 1335
  7990. }
  7991. },
  7992. side: {
  7993. height: math.unit(14, "feet"),
  7994. weight: math.unit(1450, "kg"),
  7995. capacity: math.unit(15, "people"),
  7996. name: "Side",
  7997. image: {
  7998. source: "./media/characters/aura-starwind/side.svg",
  7999. extra: 1654 / 1497
  8000. }
  8001. },
  8002. taur: {
  8003. height: math.unit(18, "feet"),
  8004. weight: math.unit(5500, "kg"),
  8005. capacity: math.unit(50, "people"),
  8006. name: "Taur",
  8007. image: {
  8008. source: "./media/characters/aura-starwind/taur.svg",
  8009. extra: 1760 / 1650
  8010. }
  8011. },
  8012. feral: {
  8013. height: math.unit(46, "feet"),
  8014. weight: math.unit(25000, "kg"),
  8015. capacity: math.unit(120, "people"),
  8016. name: "Feral",
  8017. image: {
  8018. source: "./media/characters/aura-starwind/feral.svg"
  8019. }
  8020. },
  8021. },
  8022. [
  8023. {
  8024. name: "Normal",
  8025. height: math.unit(14, "feet"),
  8026. default: true
  8027. },
  8028. {
  8029. name: "Macro",
  8030. height: math.unit(50, "meters")
  8031. },
  8032. {
  8033. name: "Megamacro",
  8034. height: math.unit(5000, "meters")
  8035. },
  8036. {
  8037. name: "Gigamacro",
  8038. height: math.unit(100000, "kilometers")
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(2 + 7 / 12, "feet"),
  8047. weight: math.unit(32, "lbs"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/rivet/front.svg",
  8051. extra: 1716 / 1658,
  8052. bottom: 0.03
  8053. }
  8054. },
  8055. foot: {
  8056. height: math.unit(0.551, "feet"),
  8057. name: "Rivet's Foot",
  8058. image: {
  8059. source: "./media/characters/rivet/foot.svg"
  8060. },
  8061. rename: true
  8062. }
  8063. },
  8064. [
  8065. {
  8066. name: "Micro",
  8067. height: math.unit(1.5, "inches"),
  8068. },
  8069. {
  8070. name: "Normal",
  8071. height: math.unit(2 + 7 / 12, "feet"),
  8072. default: true
  8073. },
  8074. {
  8075. name: "Macro",
  8076. height: math.unit(85, "feet")
  8077. },
  8078. {
  8079. name: "Megamacro",
  8080. height: math.unit(2.2, "km")
  8081. }
  8082. ]
  8083. ))
  8084. characterMakers.push(() => makeCharacter(
  8085. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8086. {
  8087. front: {
  8088. height: math.unit(5 + 9 / 12, "feet"),
  8089. weight: math.unit(150, "lbs"),
  8090. name: "Front",
  8091. image: {
  8092. source: "./media/characters/coffee/front.svg",
  8093. extra: 3666 / 3032,
  8094. bottom: 0.04
  8095. }
  8096. },
  8097. foot: {
  8098. height: math.unit(1.29, "feet"),
  8099. name: "Foot",
  8100. image: {
  8101. source: "./media/characters/coffee/foot.svg"
  8102. }
  8103. },
  8104. },
  8105. [
  8106. {
  8107. name: "Micro",
  8108. height: math.unit(2, "inches"),
  8109. },
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(5 + 9 / 12, "feet"),
  8113. default: true
  8114. },
  8115. {
  8116. name: "Macro",
  8117. height: math.unit(800, "feet")
  8118. },
  8119. {
  8120. name: "Megamacro",
  8121. height: math.unit(25, "miles")
  8122. }
  8123. ]
  8124. ))
  8125. characterMakers.push(() => makeCharacter(
  8126. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8127. {
  8128. front: {
  8129. height: math.unit(6, "feet"),
  8130. weight: math.unit(200, "lbs"),
  8131. name: "Front",
  8132. image: {
  8133. source: "./media/characters/chari-gal/front.svg",
  8134. extra: 1568 / 1385,
  8135. bottom: 0.047
  8136. }
  8137. },
  8138. gigantamax: {
  8139. height: math.unit(6 * 16, "feet"),
  8140. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8141. name: "Gigantamax",
  8142. image: {
  8143. source: "./media/characters/chari-gal/gigantamax.svg",
  8144. extra: 1124 / 888,
  8145. bottom: 0.03
  8146. }
  8147. },
  8148. },
  8149. [
  8150. {
  8151. name: "Normal",
  8152. height: math.unit(5 + 7 / 12, "feet")
  8153. },
  8154. {
  8155. name: "Macro",
  8156. height: math.unit(200, "feet"),
  8157. default: true
  8158. }
  8159. ]
  8160. ))
  8161. characterMakers.push(() => makeCharacter(
  8162. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8163. {
  8164. front: {
  8165. height: math.unit(6, "feet"),
  8166. weight: math.unit(150, "lbs"),
  8167. name: "Front",
  8168. image: {
  8169. source: "./media/characters/nova/front.svg",
  8170. extra: 5000 / 4722,
  8171. bottom: 0.02
  8172. }
  8173. }
  8174. },
  8175. [
  8176. {
  8177. name: "Micro-",
  8178. height: math.unit(0.8, "inches")
  8179. },
  8180. {
  8181. name: "Micro",
  8182. height: math.unit(2, "inches"),
  8183. default: true
  8184. },
  8185. ]
  8186. ))
  8187. characterMakers.push(() => makeCharacter(
  8188. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8189. {
  8190. front: {
  8191. height: math.unit(3 + 1 / 12, "feet"),
  8192. weight: math.unit(21.7, "lbs"),
  8193. name: "Front",
  8194. image: {
  8195. source: "./media/characters/argent/front.svg",
  8196. extra: 1471 / 1331,
  8197. bottom: 100.8 / 1575.5
  8198. }
  8199. }
  8200. },
  8201. [
  8202. {
  8203. name: "Micro",
  8204. height: math.unit(2, "inches")
  8205. },
  8206. {
  8207. name: "Normal",
  8208. height: math.unit(3 + 1 / 12, "feet"),
  8209. default: true
  8210. },
  8211. {
  8212. name: "Macro",
  8213. height: math.unit(120, "feet")
  8214. },
  8215. ]
  8216. ))
  8217. characterMakers.push(() => makeCharacter(
  8218. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8219. {
  8220. lamp: {
  8221. height: math.unit(7 * 1559 / 989, "feet"),
  8222. name: "Magic Lamp",
  8223. image: {
  8224. source: "./media/characters/mira-al-cul/lamp.svg",
  8225. extra: 1617 / 1559
  8226. }
  8227. },
  8228. front: {
  8229. height: math.unit(7, "feet"),
  8230. name: "Front",
  8231. image: {
  8232. source: "./media/characters/mira-al-cul/front.svg",
  8233. extra: 1044 / 990
  8234. }
  8235. },
  8236. },
  8237. [
  8238. {
  8239. name: "Heavily Restricted",
  8240. height: math.unit(7 * 1559 / 989, "feet")
  8241. },
  8242. {
  8243. name: "Freshly Freed",
  8244. height: math.unit(50 * 1559 / 989, "feet")
  8245. },
  8246. {
  8247. name: "World Encompassing",
  8248. height: math.unit(10000 * 1559 / 989, "miles")
  8249. },
  8250. {
  8251. name: "Galactic",
  8252. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8253. },
  8254. {
  8255. name: "Palmed Universe",
  8256. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8257. default: true
  8258. },
  8259. {
  8260. name: "Multiversal Matriarch",
  8261. height: math.unit(8.87e10, "yottameters")
  8262. },
  8263. {
  8264. name: "Void Mother",
  8265. height: math.unit(3.14e110, "yottaparsecs")
  8266. },
  8267. {
  8268. name: "Toying with Transcendence",
  8269. height: math.unit(1e307, "meters")
  8270. },
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8275. {
  8276. front: {
  8277. height: math.unit(17 + 1 / 12, "feet"),
  8278. weight: math.unit(476.2 * 5, "lbs"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/kuro-shi-uchū/front.svg",
  8282. extra: 2329 / 1835,
  8283. bottom: 0.02
  8284. }
  8285. },
  8286. },
  8287. [
  8288. {
  8289. name: "Micro",
  8290. height: math.unit(2, "inches")
  8291. },
  8292. {
  8293. name: "Normal",
  8294. height: math.unit(12, "meters")
  8295. },
  8296. {
  8297. name: "Planetary",
  8298. height: math.unit(0.00929, "AU"),
  8299. default: true
  8300. },
  8301. {
  8302. name: "Universal",
  8303. height: math.unit(20, "gigaparsecs")
  8304. },
  8305. ]
  8306. ))
  8307. characterMakers.push(() => makeCharacter(
  8308. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8309. {
  8310. front: {
  8311. height: math.unit(5 + 2 / 12, "feet"),
  8312. weight: math.unit(120, "lbs"),
  8313. name: "Front",
  8314. image: {
  8315. source: "./media/characters/katherine/front.svg",
  8316. extra: 2075 / 1969
  8317. }
  8318. },
  8319. dress: {
  8320. height: math.unit(5 + 2 / 12, "feet"),
  8321. weight: math.unit(120, "lbs"),
  8322. name: "Dress",
  8323. image: {
  8324. source: "./media/characters/katherine/dress.svg",
  8325. extra: 2258 / 2064
  8326. }
  8327. },
  8328. },
  8329. [
  8330. {
  8331. name: "Micro",
  8332. height: math.unit(1, "inches"),
  8333. default: true
  8334. },
  8335. {
  8336. name: "Normal",
  8337. height: math.unit(5 + 2 / 12, "feet")
  8338. },
  8339. {
  8340. name: "Macro",
  8341. height: math.unit(100, "meters")
  8342. },
  8343. {
  8344. name: "Megamacro",
  8345. height: math.unit(80, "miles")
  8346. },
  8347. ]
  8348. ))
  8349. characterMakers.push(() => makeCharacter(
  8350. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8351. {
  8352. front: {
  8353. height: math.unit(7 + 8 / 12, "feet"),
  8354. weight: math.unit(250, "lbs"),
  8355. name: "Front",
  8356. image: {
  8357. source: "./media/characters/yevis/front.svg",
  8358. extra: 1938 / 1755
  8359. }
  8360. }
  8361. },
  8362. [
  8363. {
  8364. name: "Mortal",
  8365. height: math.unit(7 + 8 / 12, "feet")
  8366. },
  8367. {
  8368. name: "Battle",
  8369. height: math.unit(25 + 11 / 12, "feet")
  8370. },
  8371. {
  8372. name: "Wrath",
  8373. height: math.unit(1654 + 11 / 12, "feet")
  8374. },
  8375. {
  8376. name: "Planet Destroyer",
  8377. height: math.unit(12000, "miles")
  8378. },
  8379. {
  8380. name: "Galaxy Conqueror",
  8381. height: math.unit(1.45, "zettameters"),
  8382. default: true
  8383. },
  8384. {
  8385. name: "Universal War",
  8386. height: math.unit(184, "gigaparsecs")
  8387. },
  8388. {
  8389. name: "Eternity War",
  8390. height: math.unit(1.98e55, "yottaparsecs")
  8391. },
  8392. ]
  8393. ))
  8394. characterMakers.push(() => makeCharacter(
  8395. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8396. {
  8397. front: {
  8398. height: math.unit(5 + 8 / 12, "feet"),
  8399. weight: math.unit(63, "kg"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/xavier/front.svg",
  8403. extra: 944 / 883
  8404. }
  8405. },
  8406. frontStretch: {
  8407. height: math.unit(5 + 8 / 12, "feet"),
  8408. weight: math.unit(63, "kg"),
  8409. name: "Stretching",
  8410. image: {
  8411. source: "./media/characters/xavier/front-stretch.svg",
  8412. extra: 962 / 820
  8413. }
  8414. },
  8415. },
  8416. [
  8417. {
  8418. name: "Normal",
  8419. height: math.unit(5 + 8 / 12, "feet")
  8420. },
  8421. {
  8422. name: "Macro",
  8423. height: math.unit(100, "meters"),
  8424. default: true
  8425. },
  8426. {
  8427. name: "McLargeHuge",
  8428. height: math.unit(10, "miles")
  8429. },
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(5 + 5 / 12, "feet"),
  8437. weight: math.unit(150, "lb"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/joshii/front.svg",
  8441. extra: 765 / 653,
  8442. bottom: 51 / 816
  8443. }
  8444. },
  8445. foot: {
  8446. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8447. name: "Foot",
  8448. image: {
  8449. source: "./media/characters/joshii/foot.svg"
  8450. }
  8451. },
  8452. },
  8453. [
  8454. {
  8455. name: "Micro",
  8456. height: math.unit(2, "inches"),
  8457. default: true
  8458. },
  8459. {
  8460. name: "Normal",
  8461. height: math.unit(5 + 5 / 12, "feet")
  8462. },
  8463. {
  8464. name: "Macro",
  8465. height: math.unit(785, "feet")
  8466. },
  8467. {
  8468. name: "Megamacro",
  8469. height: math.unit(24.5, "miles")
  8470. },
  8471. ]
  8472. ))
  8473. characterMakers.push(() => makeCharacter(
  8474. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8475. {
  8476. front: {
  8477. height: math.unit(6, "feet"),
  8478. weight: math.unit(150, "lb"),
  8479. name: "Front",
  8480. image: {
  8481. source: "./media/characters/goddess-elizabeth/front.svg",
  8482. extra: 1800 / 1525,
  8483. bottom: 0.005
  8484. }
  8485. },
  8486. foot: {
  8487. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8488. name: "Foot",
  8489. image: {
  8490. source: "./media/characters/goddess-elizabeth/foot.svg"
  8491. }
  8492. },
  8493. mouth: {
  8494. height: math.unit(6, "feet"),
  8495. name: "Mouth",
  8496. image: {
  8497. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8498. }
  8499. },
  8500. },
  8501. [
  8502. {
  8503. name: "Micro",
  8504. height: math.unit(12, "feet")
  8505. },
  8506. {
  8507. name: "Normal",
  8508. height: math.unit(80, "miles"),
  8509. default: true
  8510. },
  8511. {
  8512. name: "Macro",
  8513. height: math.unit(15000, "parsecs")
  8514. },
  8515. ]
  8516. ))
  8517. characterMakers.push(() => makeCharacter(
  8518. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8519. {
  8520. front: {
  8521. height: math.unit(5 + 9 / 12, "feet"),
  8522. weight: math.unit(144, "lb"),
  8523. name: "Front",
  8524. image: {
  8525. source: "./media/characters/kara/front.svg"
  8526. }
  8527. },
  8528. feet: {
  8529. height: math.unit(6 / 6.765, "feet"),
  8530. name: "Kara's Feet",
  8531. rename: true,
  8532. image: {
  8533. source: "./media/characters/kara/feet.svg"
  8534. }
  8535. },
  8536. },
  8537. [
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(5 + 9 / 12, "feet")
  8541. },
  8542. {
  8543. name: "Macro",
  8544. height: math.unit(174, "feet"),
  8545. default: true
  8546. },
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8551. {
  8552. front: {
  8553. height: math.unit(18, "feet"),
  8554. weight: math.unit(4050, "lb"),
  8555. name: "Front",
  8556. image: {
  8557. source: "./media/characters/tyrone/front.svg",
  8558. extra: 2405 / 2270,
  8559. bottom: 182 / 2587
  8560. }
  8561. },
  8562. },
  8563. [
  8564. {
  8565. name: "Normal",
  8566. height: math.unit(18, "feet"),
  8567. default: true
  8568. },
  8569. {
  8570. name: "Macro",
  8571. height: math.unit(300, "feet")
  8572. },
  8573. {
  8574. name: "Megamacro",
  8575. height: math.unit(15, "km")
  8576. },
  8577. {
  8578. name: "Gigamacro",
  8579. height: math.unit(500, "km")
  8580. },
  8581. {
  8582. name: "Teramacro",
  8583. height: math.unit(0.5, "gigameters")
  8584. },
  8585. {
  8586. name: "Omnimacro",
  8587. height: math.unit(1e252, "yottauniverse")
  8588. },
  8589. ]
  8590. ))
  8591. characterMakers.push(() => makeCharacter(
  8592. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8593. {
  8594. front: {
  8595. height: math.unit(7 + 8 / 12, "feet"),
  8596. weight: math.unit(120, "lb"),
  8597. name: "Front",
  8598. image: {
  8599. source: "./media/characters/danny/front.svg",
  8600. extra: 1490 / 1350
  8601. }
  8602. },
  8603. back: {
  8604. height: math.unit(7 + 8 / 12, "feet"),
  8605. weight: math.unit(120, "lb"),
  8606. name: "Back",
  8607. image: {
  8608. source: "./media/characters/danny/back.svg",
  8609. extra: 1490 / 1350
  8610. }
  8611. },
  8612. },
  8613. [
  8614. {
  8615. name: "Normal",
  8616. height: math.unit(7 + 8 / 12, "feet"),
  8617. default: true
  8618. },
  8619. ]
  8620. ))
  8621. characterMakers.push(() => makeCharacter(
  8622. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8623. {
  8624. front: {
  8625. height: math.unit(3.5, "inches"),
  8626. weight: math.unit(19, "grams"),
  8627. name: "Front",
  8628. image: {
  8629. source: "./media/characters/mallow/front.svg",
  8630. extra: 471 / 431
  8631. }
  8632. },
  8633. back: {
  8634. height: math.unit(3.5, "inches"),
  8635. weight: math.unit(19, "grams"),
  8636. name: "Back",
  8637. image: {
  8638. source: "./media/characters/mallow/back.svg",
  8639. extra: 471 / 431
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Normal",
  8646. height: math.unit(3.5, "inches"),
  8647. default: true
  8648. },
  8649. ]
  8650. ))
  8651. characterMakers.push(() => makeCharacter(
  8652. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8653. {
  8654. front: {
  8655. height: math.unit(9, "feet"),
  8656. weight: math.unit(230, "kg"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/starry-aqua/front.svg"
  8660. }
  8661. },
  8662. back: {
  8663. height: math.unit(9, "feet"),
  8664. weight: math.unit(230, "kg"),
  8665. name: "Back",
  8666. image: {
  8667. source: "./media/characters/starry-aqua/back.svg"
  8668. }
  8669. },
  8670. hand: {
  8671. height: math.unit(9 * 0.1168, "feet"),
  8672. name: "Hand",
  8673. image: {
  8674. source: "./media/characters/starry-aqua/hand.svg"
  8675. }
  8676. },
  8677. foot: {
  8678. height: math.unit(9 * 0.18, "feet"),
  8679. name: "Foot",
  8680. image: {
  8681. source: "./media/characters/starry-aqua/foot.svg"
  8682. }
  8683. }
  8684. },
  8685. [
  8686. {
  8687. name: "Micro",
  8688. height: math.unit(3, "inches")
  8689. },
  8690. {
  8691. name: "Normal",
  8692. height: math.unit(9, "feet")
  8693. },
  8694. {
  8695. name: "Macro",
  8696. height: math.unit(300, "feet"),
  8697. default: true
  8698. },
  8699. {
  8700. name: "Megamacro",
  8701. height: math.unit(3200, "feet")
  8702. }
  8703. ]
  8704. ))
  8705. characterMakers.push(() => makeCharacter(
  8706. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8707. {
  8708. front: {
  8709. height: math.unit(6, "feet"),
  8710. weight: math.unit(230, "lb"),
  8711. name: "Front",
  8712. image: {
  8713. source: "./media/characters/luka/front.svg",
  8714. extra: 1,
  8715. bottom: 0.025
  8716. }
  8717. },
  8718. },
  8719. [
  8720. {
  8721. name: "Normal",
  8722. height: math.unit(12 + 8 / 12, "feet"),
  8723. default: true
  8724. },
  8725. {
  8726. name: "Minimacro",
  8727. height: math.unit(20, "feet")
  8728. },
  8729. {
  8730. name: "Macro",
  8731. height: math.unit(250, "feet")
  8732. },
  8733. {
  8734. name: "Megamacro",
  8735. height: math.unit(5, "miles")
  8736. },
  8737. {
  8738. name: "Gigamacro",
  8739. height: math.unit(8000, "miles")
  8740. },
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8745. {
  8746. front: {
  8747. height: math.unit(6, "feet"),
  8748. weight: math.unit(150, "lb"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/natalie-nightring/front.svg",
  8752. extra: 1,
  8753. bottom: 0.06
  8754. }
  8755. },
  8756. },
  8757. [
  8758. {
  8759. name: "Uh Oh",
  8760. height: math.unit(0.1, "mm")
  8761. },
  8762. {
  8763. name: "Small",
  8764. height: math.unit(3, "inches")
  8765. },
  8766. {
  8767. name: "Human Scale",
  8768. height: math.unit(6, "feet")
  8769. },
  8770. {
  8771. name: "Librarian",
  8772. height: math.unit(50, "feet"),
  8773. default: true
  8774. },
  8775. {
  8776. name: "Immense",
  8777. height: math.unit(200, "miles")
  8778. },
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(180, "lbs"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/danni-rosie/front.svg",
  8790. extra: 1260 / 1128,
  8791. bottom: 0.022
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Micro",
  8798. height: math.unit(2, "inches"),
  8799. default: true
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(5 + 9 / 12, "feet"),
  8808. weight: math.unit(220, "lb"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/samantha-kruse/front.svg",
  8812. extra: (985 / 935),
  8813. bottom: 0.03
  8814. }
  8815. },
  8816. frontUndressed: {
  8817. height: math.unit(5 + 9 / 12, "feet"),
  8818. weight: math.unit(220, "lb"),
  8819. name: "Front (Undressed)",
  8820. image: {
  8821. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8822. extra: (973 / 923),
  8823. bottom: 0.025
  8824. }
  8825. },
  8826. fat: {
  8827. height: math.unit(5 + 9 / 12, "feet"),
  8828. weight: math.unit(900, "lb"),
  8829. name: "Front (Fat)",
  8830. image: {
  8831. source: "./media/characters/samantha-kruse/fat.svg",
  8832. extra: 2688 / 2561
  8833. }
  8834. },
  8835. },
  8836. [
  8837. {
  8838. name: "Normal",
  8839. height: math.unit(5 + 9 / 12, "feet"),
  8840. default: true
  8841. }
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8846. {
  8847. back: {
  8848. height: math.unit(5 + 4 / 12, "feet"),
  8849. weight: math.unit(4963, "lb"),
  8850. name: "Back",
  8851. image: {
  8852. source: "./media/characters/amelia-rosie/back.svg",
  8853. extra: 1113 / 963,
  8854. bottom: 0.01
  8855. }
  8856. },
  8857. },
  8858. [
  8859. {
  8860. name: "Level 0",
  8861. height: math.unit(5 + 4 / 12, "feet")
  8862. },
  8863. {
  8864. name: "Level 1",
  8865. height: math.unit(164597, "feet"),
  8866. default: true
  8867. },
  8868. {
  8869. name: "Level 2",
  8870. height: math.unit(956243, "miles")
  8871. },
  8872. {
  8873. name: "Level 3",
  8874. height: math.unit(29421709423, "miles")
  8875. },
  8876. {
  8877. name: "Level 4",
  8878. height: math.unit(154, "lightyears")
  8879. },
  8880. {
  8881. name: "Level 5",
  8882. height: math.unit(4738272, "lightyears")
  8883. },
  8884. {
  8885. name: "Level 6",
  8886. height: math.unit(145787152896, "lightyears")
  8887. },
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8892. {
  8893. front: {
  8894. height: math.unit(5 + 11 / 12, "feet"),
  8895. weight: math.unit(65, "kg"),
  8896. name: "Front",
  8897. image: {
  8898. source: "./media/characters/rook-kitara/front.svg",
  8899. extra: 1347 / 1274,
  8900. bottom: 0.005
  8901. }
  8902. },
  8903. },
  8904. [
  8905. {
  8906. name: "Totally Unfair",
  8907. height: math.unit(1.8, "mm")
  8908. },
  8909. {
  8910. name: "Lap Rookie",
  8911. height: math.unit(1.4, "feet")
  8912. },
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(5 + 11 / 12, "feet"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "How Did This Happen",
  8920. height: math.unit(80, "miles")
  8921. }
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8926. {
  8927. front: {
  8928. height: math.unit(7, "feet"),
  8929. weight: math.unit(300, "lb"),
  8930. name: "Front",
  8931. image: {
  8932. source: "./media/characters/pisces/front.svg",
  8933. extra: 2255 / 2115,
  8934. bottom: 0.03
  8935. }
  8936. },
  8937. back: {
  8938. height: math.unit(7, "feet"),
  8939. weight: math.unit(300, "lb"),
  8940. name: "Back",
  8941. image: {
  8942. source: "./media/characters/pisces/back.svg",
  8943. extra: 2146 / 2055,
  8944. bottom: 0.04
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Normal",
  8951. height: math.unit(7, "feet"),
  8952. default: true
  8953. },
  8954. {
  8955. name: "Swimming Pool",
  8956. height: math.unit(12.2, "meters")
  8957. },
  8958. {
  8959. name: "Olympic Swimming Pool",
  8960. height: math.unit(56.3, "meters")
  8961. },
  8962. {
  8963. name: "Lake Superior",
  8964. height: math.unit(93900, "meters")
  8965. },
  8966. {
  8967. name: "Mediterranean Sea",
  8968. height: math.unit(644457, "meters")
  8969. },
  8970. {
  8971. name: "World's Oceans",
  8972. height: math.unit(4567491, "meters")
  8973. },
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8978. {
  8979. front: {
  8980. height: math.unit(2.3, "meters"),
  8981. weight: math.unit(120, "kg"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/zelas/front.svg"
  8985. }
  8986. },
  8987. side: {
  8988. height: math.unit(2.3, "meters"),
  8989. weight: math.unit(120, "kg"),
  8990. name: "Side",
  8991. image: {
  8992. source: "./media/characters/zelas/side.svg"
  8993. }
  8994. },
  8995. back: {
  8996. height: math.unit(2.3, "meters"),
  8997. weight: math.unit(120, "kg"),
  8998. name: "Back",
  8999. image: {
  9000. source: "./media/characters/zelas/back.svg"
  9001. }
  9002. },
  9003. foot: {
  9004. height: math.unit(1.116, "feet"),
  9005. name: "Foot",
  9006. image: {
  9007. source: "./media/characters/zelas/foot.svg"
  9008. }
  9009. },
  9010. },
  9011. [
  9012. {
  9013. name: "Normal",
  9014. height: math.unit(2.3, "meters")
  9015. },
  9016. {
  9017. name: "Macro",
  9018. height: math.unit(30, "meters"),
  9019. default: true
  9020. },
  9021. ]
  9022. ))
  9023. characterMakers.push(() => makeCharacter(
  9024. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9025. {
  9026. front: {
  9027. height: math.unit(1, "inch"),
  9028. weight: math.unit(0.21, "grams"),
  9029. name: "Front",
  9030. image: {
  9031. source: "./media/characters/talbot/front.svg",
  9032. extra: 594 / 544
  9033. }
  9034. },
  9035. },
  9036. [
  9037. {
  9038. name: "Micro",
  9039. height: math.unit(1, "inch"),
  9040. default: true
  9041. },
  9042. ]
  9043. ))
  9044. characterMakers.push(() => makeCharacter(
  9045. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9046. {
  9047. front: {
  9048. height: math.unit(3 + 3 / 12, "feet"),
  9049. weight: math.unit(51.8, "lb"),
  9050. name: "Front",
  9051. image: {
  9052. source: "./media/characters/fliss/front.svg",
  9053. extra: 840 / 640
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Teeny Tiny",
  9060. height: math.unit(1, "mm")
  9061. },
  9062. {
  9063. name: "Small",
  9064. height: math.unit(1, "inch"),
  9065. default: true
  9066. },
  9067. {
  9068. name: "Standard Sylveon",
  9069. height: math.unit(3 + 3 / 12, "feet")
  9070. },
  9071. {
  9072. name: "Large Nuisance",
  9073. height: math.unit(33, "feet")
  9074. },
  9075. {
  9076. name: "City Filler",
  9077. height: math.unit(3000, "feet")
  9078. },
  9079. {
  9080. name: "New Horizon",
  9081. height: math.unit(6000, "miles")
  9082. },
  9083. ]
  9084. ))
  9085. characterMakers.push(() => makeCharacter(
  9086. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9087. {
  9088. front: {
  9089. height: math.unit(5, "cm"),
  9090. weight: math.unit(1.94, "g"),
  9091. name: "Front",
  9092. image: {
  9093. source: "./media/characters/fleta/front.svg",
  9094. extra: 835 / 803
  9095. }
  9096. },
  9097. back: {
  9098. height: math.unit(5, "cm"),
  9099. weight: math.unit(1.94, "g"),
  9100. name: "Back",
  9101. image: {
  9102. source: "./media/characters/fleta/back.svg",
  9103. extra: 835 / 803
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Micro",
  9110. height: math.unit(5, "cm"),
  9111. default: true
  9112. },
  9113. ]
  9114. ))
  9115. characterMakers.push(() => makeCharacter(
  9116. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9117. {
  9118. front: {
  9119. height: math.unit(6, "feet"),
  9120. weight: math.unit(225, "lb"),
  9121. name: "Front",
  9122. image: {
  9123. source: "./media/characters/dominic/front.svg",
  9124. extra: 1770 / 1620,
  9125. bottom: 0.025
  9126. }
  9127. },
  9128. back: {
  9129. height: math.unit(6, "feet"),
  9130. weight: math.unit(225, "lb"),
  9131. name: "Back",
  9132. image: {
  9133. source: "./media/characters/dominic/back.svg",
  9134. extra: 1745 / 1620,
  9135. bottom: 0.065
  9136. }
  9137. },
  9138. },
  9139. [
  9140. {
  9141. name: "Nano",
  9142. height: math.unit(0.1, "mm")
  9143. },
  9144. {
  9145. name: "Micro-",
  9146. height: math.unit(1, "mm")
  9147. },
  9148. {
  9149. name: "Micro",
  9150. height: math.unit(4, "inches")
  9151. },
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(6 + 4 / 12, "feet"),
  9155. default: true
  9156. },
  9157. {
  9158. name: "Macro",
  9159. height: math.unit(115, "feet")
  9160. },
  9161. {
  9162. name: "Macro+",
  9163. height: math.unit(955, "feet")
  9164. },
  9165. {
  9166. name: "Megamacro",
  9167. height: math.unit(8990, "feet")
  9168. },
  9169. {
  9170. name: "Gigmacro",
  9171. height: math.unit(9310, "miles")
  9172. },
  9173. {
  9174. name: "Teramacro",
  9175. height: math.unit(1567005010, "miles")
  9176. },
  9177. {
  9178. name: "Examacro",
  9179. height: math.unit(1425, "parsecs")
  9180. },
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9185. {
  9186. front: {
  9187. height: math.unit(400, "feet"),
  9188. weight: math.unit(44444444, "lb"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/major-colonel/front.svg"
  9192. }
  9193. },
  9194. back: {
  9195. height: math.unit(400, "feet"),
  9196. weight: math.unit(44444444, "lb"),
  9197. name: "Back",
  9198. image: {
  9199. source: "./media/characters/major-colonel/back.svg"
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Macro",
  9206. height: math.unit(400, "feet"),
  9207. default: true
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9213. {
  9214. catFront: {
  9215. height: math.unit(6, "feet"),
  9216. weight: math.unit(120, "lb"),
  9217. name: "Front (Cat Side)",
  9218. image: {
  9219. source: "./media/characters/axel-lycan/cat-front.svg",
  9220. extra: 430 / 402,
  9221. bottom: 43 / 472.35
  9222. }
  9223. },
  9224. catBack: {
  9225. height: math.unit(6, "feet"),
  9226. weight: math.unit(120, "lb"),
  9227. name: "Back (Cat Side)",
  9228. image: {
  9229. source: "./media/characters/axel-lycan/cat-back.svg",
  9230. extra: 447 / 419,
  9231. bottom: 23.3 / 469
  9232. }
  9233. },
  9234. wolfFront: {
  9235. height: math.unit(6, "feet"),
  9236. weight: math.unit(120, "lb"),
  9237. name: "Front (Wolf Side)",
  9238. image: {
  9239. source: "./media/characters/axel-lycan/wolf-front.svg",
  9240. extra: 485 / 456,
  9241. bottom: 19 / 504
  9242. }
  9243. },
  9244. wolfBack: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(120, "lb"),
  9247. name: "Back (Wolf Side)",
  9248. image: {
  9249. source: "./media/characters/axel-lycan/wolf-back.svg",
  9250. extra: 475 / 438,
  9251. bottom: 39.2 / 514
  9252. }
  9253. },
  9254. },
  9255. [
  9256. {
  9257. name: "Macro",
  9258. height: math.unit(1, "km"),
  9259. default: true
  9260. },
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9265. {
  9266. front: {
  9267. height: math.unit(5 + 9 / 12, "feet"),
  9268. weight: math.unit(175, "lb"),
  9269. name: "Front",
  9270. image: {
  9271. source: "./media/characters/vanrel-hyena/front.svg",
  9272. extra: 1086 / 1010,
  9273. bottom: 0.04
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Normal",
  9280. height: math.unit(5 + 9 / 12, "feet"),
  9281. default: true
  9282. },
  9283. ]
  9284. ))
  9285. characterMakers.push(() => makeCharacter(
  9286. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9287. {
  9288. front: {
  9289. height: math.unit(6, "feet"),
  9290. weight: math.unit(103, "lb"),
  9291. name: "Front",
  9292. image: {
  9293. source: "./media/characters/abbott-absol/front.svg",
  9294. extra: 2010 / 1842
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Megamicro",
  9301. height: math.unit(0.1, "mm")
  9302. },
  9303. {
  9304. name: "Micro",
  9305. height: math.unit(1, "inch")
  9306. },
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(6, "feet"),
  9310. default: true
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9316. {
  9317. front: {
  9318. height: math.unit(6, "feet"),
  9319. weight: math.unit(264, "lb"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/hector/front.svg",
  9323. extra: 2280 / 2130,
  9324. bottom: 0.07
  9325. }
  9326. },
  9327. },
  9328. [
  9329. {
  9330. name: "Normal",
  9331. height: math.unit(12.25, "foot"),
  9332. default: true
  9333. },
  9334. {
  9335. name: "Macro",
  9336. height: math.unit(160, "feet")
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9342. {
  9343. front: {
  9344. height: math.unit(6, "feet"),
  9345. weight: math.unit(150, "lb"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/sal/front.svg",
  9349. extra: 1846 / 1699,
  9350. bottom: 0.04
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Megamacro",
  9357. height: math.unit(10, "miles"),
  9358. default: true
  9359. },
  9360. ]
  9361. ))
  9362. characterMakers.push(() => makeCharacter(
  9363. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9364. {
  9365. front: {
  9366. height: math.unit(3, "meters"),
  9367. weight: math.unit(450, "kg"),
  9368. name: "front",
  9369. image: {
  9370. source: "./media/characters/ranger/front.svg",
  9371. extra: 2401 / 2243,
  9372. bottom: 0.05
  9373. }
  9374. },
  9375. },
  9376. [
  9377. {
  9378. name: "Normal",
  9379. height: math.unit(3, "meters"),
  9380. default: true
  9381. },
  9382. ]
  9383. ))
  9384. characterMakers.push(() => makeCharacter(
  9385. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9386. {
  9387. front: {
  9388. height: math.unit(14, "feet"),
  9389. weight: math.unit(800, "kg"),
  9390. name: "Front",
  9391. image: {
  9392. source: "./media/characters/theresa/front.svg",
  9393. extra: 3575 / 3346,
  9394. bottom: 0.03
  9395. }
  9396. },
  9397. },
  9398. [
  9399. {
  9400. name: "Normal",
  9401. height: math.unit(14, "feet"),
  9402. default: true
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9408. {
  9409. front: {
  9410. height: math.unit(6, "feet"),
  9411. weight: math.unit(3, "kg"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/ine/front.svg",
  9415. extra: 678 / 539,
  9416. bottom: 0.023
  9417. }
  9418. },
  9419. },
  9420. [
  9421. {
  9422. name: "Normal",
  9423. height: math.unit(2.265, "feet"),
  9424. default: true
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9430. {
  9431. front: {
  9432. height: math.unit(5, "feet"),
  9433. weight: math.unit(30, "kg"),
  9434. name: "Front",
  9435. image: {
  9436. source: "./media/characters/vial/front.svg",
  9437. extra: 1365 / 1277,
  9438. bottom: 0.04
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(5, "feet"),
  9446. default: true
  9447. },
  9448. ]
  9449. ))
  9450. characterMakers.push(() => makeCharacter(
  9451. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9452. {
  9453. side: {
  9454. height: math.unit(3.4, "meters"),
  9455. weight: math.unit(1000, "lb"),
  9456. name: "Side",
  9457. image: {
  9458. source: "./media/characters/rovoska/side.svg",
  9459. extra: 4403 / 1515
  9460. }
  9461. },
  9462. },
  9463. [
  9464. {
  9465. name: "Normal",
  9466. height: math.unit(3.4, "meters"),
  9467. default: true
  9468. },
  9469. ]
  9470. ))
  9471. characterMakers.push(() => makeCharacter(
  9472. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9473. {
  9474. front: {
  9475. height: math.unit(8, "feet"),
  9476. weight: math.unit(315, "lb"),
  9477. name: "Front",
  9478. image: {
  9479. source: "./media/characters/gunner-rotthbauer/front.svg"
  9480. }
  9481. },
  9482. back: {
  9483. height: math.unit(8, "feet"),
  9484. weight: math.unit(315, "lb"),
  9485. name: "Back",
  9486. image: {
  9487. source: "./media/characters/gunner-rotthbauer/back.svg"
  9488. }
  9489. },
  9490. },
  9491. [
  9492. {
  9493. name: "Micro",
  9494. height: math.unit(3.5, "inches")
  9495. },
  9496. {
  9497. name: "Normal",
  9498. height: math.unit(8, "feet"),
  9499. default: true
  9500. },
  9501. {
  9502. name: "Macro",
  9503. height: math.unit(250, "feet")
  9504. },
  9505. {
  9506. name: "Megamacro",
  9507. height: math.unit(1, "AU")
  9508. },
  9509. ]
  9510. ))
  9511. characterMakers.push(() => makeCharacter(
  9512. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9513. {
  9514. front: {
  9515. height: math.unit(5 + 5 / 12, "feet"),
  9516. weight: math.unit(140, "lb"),
  9517. name: "Front",
  9518. image: {
  9519. source: "./media/characters/allatia/front.svg",
  9520. extra: 1227 / 1180,
  9521. bottom: 0.027
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Normal",
  9528. height: math.unit(5 + 5 / 12, "feet")
  9529. },
  9530. {
  9531. name: "Macro",
  9532. height: math.unit(250, "feet"),
  9533. default: true
  9534. },
  9535. {
  9536. name: "Megamacro",
  9537. height: math.unit(8, "miles")
  9538. }
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9543. {
  9544. front: {
  9545. height: math.unit(6, "feet"),
  9546. weight: math.unit(120, "lb"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/tene/front.svg",
  9550. extra: 1728 / 1578,
  9551. bottom: 0.022
  9552. }
  9553. },
  9554. stomping: {
  9555. height: math.unit(2.025, "meters"),
  9556. weight: math.unit(120, "lb"),
  9557. name: "Stomping",
  9558. image: {
  9559. source: "./media/characters/tene/stomping.svg",
  9560. extra: 938 / 873,
  9561. bottom: 0.01
  9562. }
  9563. },
  9564. sitting: {
  9565. height: math.unit(1, "meter"),
  9566. weight: math.unit(120, "lb"),
  9567. name: "Sitting",
  9568. image: {
  9569. source: "./media/characters/tene/sitting.svg",
  9570. extra: 437 / 415,
  9571. bottom: 0.1
  9572. }
  9573. },
  9574. feral: {
  9575. height: math.unit(3.9, "feet"),
  9576. weight: math.unit(250, "lb"),
  9577. name: "Feral",
  9578. image: {
  9579. source: "./media/characters/tene/feral.svg",
  9580. extra: 717 / 458,
  9581. bottom: 0.179
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Normal",
  9588. height: math.unit(6, "feet")
  9589. },
  9590. {
  9591. name: "Macro",
  9592. height: math.unit(300, "feet"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Megamacro",
  9597. height: math.unit(5, "miles")
  9598. },
  9599. ]
  9600. ))
  9601. characterMakers.push(() => makeCharacter(
  9602. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9603. {
  9604. side: {
  9605. height: math.unit(6, "feet"),
  9606. name: "Side",
  9607. image: {
  9608. source: "./media/characters/evander/side.svg",
  9609. extra: 877 / 477
  9610. }
  9611. },
  9612. },
  9613. [
  9614. {
  9615. name: "Normal",
  9616. height: math.unit(0.83, "meters"),
  9617. default: true
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9623. {
  9624. front: {
  9625. height: math.unit(12, "feet"),
  9626. weight: math.unit(1000, "lb"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9630. extra: 1762 / 1611
  9631. }
  9632. },
  9633. back: {
  9634. height: math.unit(12, "feet"),
  9635. weight: math.unit(1000, "lb"),
  9636. name: "Back",
  9637. image: {
  9638. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9639. extra: 1762 / 1611
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(12, "feet"),
  9647. default: true
  9648. },
  9649. {
  9650. name: "Kaiju",
  9651. height: math.unit(150, "feet")
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9657. {
  9658. front: {
  9659. height: math.unit(6, "feet"),
  9660. weight: math.unit(150, "lb"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/zero-alurus/front.svg"
  9664. }
  9665. },
  9666. back: {
  9667. height: math.unit(6, "feet"),
  9668. weight: math.unit(150, "lb"),
  9669. name: "Back",
  9670. image: {
  9671. source: "./media/characters/zero-alurus/back.svg"
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Normal",
  9678. height: math.unit(5 + 10 / 12, "feet")
  9679. },
  9680. {
  9681. name: "Macro",
  9682. height: math.unit(60, "feet"),
  9683. default: true
  9684. },
  9685. {
  9686. name: "Macro+",
  9687. height: math.unit(450, "feet")
  9688. },
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9693. {
  9694. front: {
  9695. height: math.unit(6, "feet"),
  9696. weight: math.unit(200, "lb"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/mega-shi/front.svg",
  9700. extra: 1279 / 1250,
  9701. bottom: 0.02
  9702. }
  9703. },
  9704. back: {
  9705. height: math.unit(6, "feet"),
  9706. weight: math.unit(200, "lb"),
  9707. name: "Back",
  9708. image: {
  9709. source: "./media/characters/mega-shi/back.svg",
  9710. extra: 1279 / 1250,
  9711. bottom: 0.02
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Micro",
  9718. height: math.unit(16 + 6 / 12, "feet")
  9719. },
  9720. {
  9721. name: "Third Dimension",
  9722. height: math.unit(40, "meters")
  9723. },
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(660, "feet"),
  9727. default: true
  9728. },
  9729. {
  9730. name: "Megamacro",
  9731. height: math.unit(10, "miles")
  9732. },
  9733. {
  9734. name: "Planetary Launch",
  9735. height: math.unit(500, "miles")
  9736. },
  9737. {
  9738. name: "Interstellar",
  9739. height: math.unit(1e9, "miles")
  9740. },
  9741. {
  9742. name: "Leaving the Universe",
  9743. height: math.unit(1, "gigaparsec")
  9744. },
  9745. {
  9746. name: "Travelling Universes",
  9747. height: math.unit(30e15, "parsecs")
  9748. },
  9749. ]
  9750. ))
  9751. characterMakers.push(() => makeCharacter(
  9752. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9753. {
  9754. front: {
  9755. height: math.unit(6, "feet"),
  9756. weight: math.unit(150, "lb"),
  9757. name: "Front",
  9758. image: {
  9759. source: "./media/characters/odyssey/front.svg",
  9760. extra: 1782 / 1582,
  9761. bottom: 0.01
  9762. }
  9763. },
  9764. side: {
  9765. height: math.unit(5.7, "feet"),
  9766. weight: math.unit(140, "lb"),
  9767. name: "Side",
  9768. image: {
  9769. source: "./media/characters/odyssey/side.svg",
  9770. extra: 6462 / 5700
  9771. }
  9772. },
  9773. },
  9774. [
  9775. {
  9776. name: "Normal",
  9777. height: math.unit(5 + 4 / 12, "feet")
  9778. },
  9779. {
  9780. name: "Macro",
  9781. height: math.unit(1, "km")
  9782. },
  9783. {
  9784. name: "Megamacro",
  9785. height: math.unit(3000, "km")
  9786. },
  9787. {
  9788. name: "Gigamacro",
  9789. height: math.unit(1, "AU"),
  9790. default: true
  9791. },
  9792. {
  9793. name: "Omniversal",
  9794. height: math.unit(100e14, "lightyears")
  9795. },
  9796. ]
  9797. ))
  9798. characterMakers.push(() => makeCharacter(
  9799. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9800. {
  9801. front: {
  9802. height: math.unit(6, "feet"),
  9803. weight: math.unit(300, "lb"),
  9804. name: "Front",
  9805. image: {
  9806. source: "./media/characters/mekuto/front.svg",
  9807. extra: 921 / 832,
  9808. bottom: 0.03
  9809. }
  9810. },
  9811. hand: {
  9812. height: math.unit(6 / 10.24, "feet"),
  9813. name: "Hand",
  9814. image: {
  9815. source: "./media/characters/mekuto/hand.svg"
  9816. }
  9817. },
  9818. foot: {
  9819. height: math.unit(6 / 5.05, "feet"),
  9820. name: "Foot",
  9821. image: {
  9822. source: "./media/characters/mekuto/foot.svg"
  9823. }
  9824. },
  9825. },
  9826. [
  9827. {
  9828. name: "Minimicro",
  9829. height: math.unit(0.2, "inches")
  9830. },
  9831. {
  9832. name: "Micro",
  9833. height: math.unit(1.5, "inches")
  9834. },
  9835. {
  9836. name: "Normal",
  9837. height: math.unit(5 + 11 / 12, "feet"),
  9838. default: true
  9839. },
  9840. {
  9841. name: "Minimacro",
  9842. height: math.unit(17 + 9 / 12, "feet")
  9843. },
  9844. {
  9845. name: "Macro",
  9846. height: math.unit(177.5, "feet")
  9847. },
  9848. {
  9849. name: "Megamacro",
  9850. height: math.unit(152, "miles")
  9851. },
  9852. ]
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9856. {
  9857. front: {
  9858. height: math.unit(6.5, "inches"),
  9859. weight: math.unit(13, "oz"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/dafydd-tomos/front.svg",
  9863. extra: 2990 / 2603,
  9864. bottom: 0.03
  9865. }
  9866. },
  9867. },
  9868. [
  9869. {
  9870. name: "Micro",
  9871. height: math.unit(6.5, "inches"),
  9872. default: true
  9873. },
  9874. ]
  9875. ))
  9876. characterMakers.push(() => makeCharacter(
  9877. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9878. {
  9879. front: {
  9880. height: math.unit(6, "feet"),
  9881. weight: math.unit(150, "lb"),
  9882. name: "Front",
  9883. image: {
  9884. source: "./media/characters/splinter/front.svg",
  9885. extra: 2990 / 2882,
  9886. bottom: 0.04
  9887. }
  9888. },
  9889. back: {
  9890. height: math.unit(6, "feet"),
  9891. weight: math.unit(150, "lb"),
  9892. name: "Back",
  9893. image: {
  9894. source: "./media/characters/splinter/back.svg",
  9895. extra: 2990 / 2882,
  9896. bottom: 0.04
  9897. }
  9898. },
  9899. },
  9900. [
  9901. {
  9902. name: "Normal",
  9903. height: math.unit(6, "feet")
  9904. },
  9905. {
  9906. name: "Macro",
  9907. height: math.unit(230, "meters"),
  9908. default: true
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9914. {
  9915. front: {
  9916. height: math.unit(4 + 10 / 12, "feet"),
  9917. weight: math.unit(480, "lb"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/snow-gabumon/front.svg",
  9921. extra: 1140 / 963,
  9922. bottom: 0.058
  9923. }
  9924. },
  9925. back: {
  9926. height: math.unit(4 + 10 / 12, "feet"),
  9927. weight: math.unit(480, "lb"),
  9928. name: "Back",
  9929. image: {
  9930. source: "./media/characters/snow-gabumon/back.svg",
  9931. extra: 1115 / 962,
  9932. bottom: 0.041
  9933. }
  9934. },
  9935. frontUndresed: {
  9936. height: math.unit(4 + 10 / 12, "feet"),
  9937. weight: math.unit(480, "lb"),
  9938. name: "Front (Undressed)",
  9939. image: {
  9940. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9941. extra: 1061 / 960,
  9942. bottom: 0.045
  9943. }
  9944. },
  9945. },
  9946. [
  9947. {
  9948. name: "Micro",
  9949. height: math.unit(1, "inch")
  9950. },
  9951. {
  9952. name: "Normal",
  9953. height: math.unit(4 + 10 / 12, "feet"),
  9954. default: true
  9955. },
  9956. {
  9957. name: "Macro",
  9958. height: math.unit(200, "feet")
  9959. },
  9960. {
  9961. name: "Megamacro",
  9962. height: math.unit(120, "miles")
  9963. },
  9964. {
  9965. name: "Gigamacro",
  9966. height: math.unit(9800, "miles")
  9967. },
  9968. ]
  9969. ))
  9970. characterMakers.push(() => makeCharacter(
  9971. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9972. {
  9973. front: {
  9974. height: math.unit(1.7, "meters"),
  9975. weight: math.unit(140, "lb"),
  9976. name: "Front",
  9977. image: {
  9978. source: "./media/characters/moody/front.svg",
  9979. extra: 3226 / 3007,
  9980. bottom: 0.087
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Micro",
  9987. height: math.unit(1, "mm")
  9988. },
  9989. {
  9990. name: "Normal",
  9991. height: math.unit(1.7, "meters"),
  9992. default: true
  9993. },
  9994. {
  9995. name: "Macro",
  9996. height: math.unit(80, "meters")
  9997. },
  9998. {
  9999. name: "Macro+",
  10000. height: math.unit(500, "meters")
  10001. },
  10002. ]
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10006. {
  10007. front: {
  10008. height: math.unit(6, "feet"),
  10009. weight: math.unit(150, "lb"),
  10010. name: "Front",
  10011. image: {
  10012. source: "./media/characters/zyas/front.svg",
  10013. extra: 1180 / 1120,
  10014. bottom: 0.045
  10015. }
  10016. },
  10017. },
  10018. [
  10019. {
  10020. name: "Normal",
  10021. height: math.unit(10, "feet"),
  10022. default: true
  10023. },
  10024. {
  10025. name: "Macro",
  10026. height: math.unit(500, "feet")
  10027. },
  10028. {
  10029. name: "Megamacro",
  10030. height: math.unit(5, "miles")
  10031. },
  10032. {
  10033. name: "Teramacro",
  10034. height: math.unit(150000, "miles")
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10040. {
  10041. front: {
  10042. height: math.unit(6, "feet"),
  10043. weight: math.unit(150, "lb"),
  10044. name: "Front",
  10045. image: {
  10046. source: "./media/characters/cuon/front.svg",
  10047. extra: 1390 / 1320,
  10048. bottom: 0.008
  10049. }
  10050. },
  10051. },
  10052. [
  10053. {
  10054. name: "Micro",
  10055. height: math.unit(3, "inches")
  10056. },
  10057. {
  10058. name: "Normal",
  10059. height: math.unit(18 + 9 / 12, "feet"),
  10060. default: true
  10061. },
  10062. {
  10063. name: "Macro",
  10064. height: math.unit(360, "feet")
  10065. },
  10066. {
  10067. name: "Megamacro",
  10068. height: math.unit(360, "miles")
  10069. },
  10070. ]
  10071. ))
  10072. characterMakers.push(() => makeCharacter(
  10073. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10074. {
  10075. front: {
  10076. height: math.unit(2.4, "meters"),
  10077. weight: math.unit(70, "kg"),
  10078. name: "Front",
  10079. image: {
  10080. source: "./media/characters/nyanuxk/front.svg",
  10081. extra: 1172 / 1084,
  10082. bottom: 0.065
  10083. }
  10084. },
  10085. side: {
  10086. height: math.unit(2.4, "meters"),
  10087. weight: math.unit(70, "kg"),
  10088. name: "Side",
  10089. image: {
  10090. source: "./media/characters/nyanuxk/side.svg",
  10091. extra: 1190 / 1132,
  10092. bottom: 0.007
  10093. }
  10094. },
  10095. back: {
  10096. height: math.unit(2.4, "meters"),
  10097. weight: math.unit(70, "kg"),
  10098. name: "Back",
  10099. image: {
  10100. source: "./media/characters/nyanuxk/back.svg",
  10101. extra: 1200 / 1141,
  10102. bottom: 0.015
  10103. }
  10104. },
  10105. foot: {
  10106. height: math.unit(0.52, "meters"),
  10107. name: "Foot",
  10108. image: {
  10109. source: "./media/characters/nyanuxk/foot.svg"
  10110. }
  10111. },
  10112. },
  10113. [
  10114. {
  10115. name: "Micro",
  10116. height: math.unit(2, "cm")
  10117. },
  10118. {
  10119. name: "Normal",
  10120. height: math.unit(2.4, "meters"),
  10121. default: true
  10122. },
  10123. {
  10124. name: "Smaller Macro",
  10125. height: math.unit(120, "meters")
  10126. },
  10127. {
  10128. name: "Bigger Macro",
  10129. height: math.unit(1.2, "km")
  10130. },
  10131. {
  10132. name: "Megamacro",
  10133. height: math.unit(15, "kilometers")
  10134. },
  10135. {
  10136. name: "Gigamacro",
  10137. height: math.unit(2000, "km")
  10138. },
  10139. {
  10140. name: "Teramacro",
  10141. height: math.unit(500000, "km")
  10142. },
  10143. ]
  10144. ))
  10145. characterMakers.push(() => makeCharacter(
  10146. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10147. {
  10148. side: {
  10149. height: math.unit(6, "feet"),
  10150. name: "Side",
  10151. image: {
  10152. source: "./media/characters/ailbhe/side.svg",
  10153. extra: 757 / 464,
  10154. bottom: 0.041
  10155. }
  10156. },
  10157. },
  10158. [
  10159. {
  10160. name: "Normal",
  10161. height: math.unit(1.07, "meters"),
  10162. default: true
  10163. },
  10164. ]
  10165. ))
  10166. characterMakers.push(() => makeCharacter(
  10167. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10168. {
  10169. front: {
  10170. height: math.unit(6, "feet"),
  10171. weight: math.unit(120, "kg"),
  10172. name: "Front",
  10173. image: {
  10174. source: "./media/characters/zevulfius/front.svg",
  10175. extra: 965 / 903
  10176. }
  10177. },
  10178. side: {
  10179. height: math.unit(6, "feet"),
  10180. weight: math.unit(120, "kg"),
  10181. name: "Side",
  10182. image: {
  10183. source: "./media/characters/zevulfius/side.svg",
  10184. extra: 939 / 900
  10185. }
  10186. },
  10187. back: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(120, "kg"),
  10190. name: "Back",
  10191. image: {
  10192. source: "./media/characters/zevulfius/back.svg",
  10193. extra: 918 / 854,
  10194. bottom: 0.005
  10195. }
  10196. },
  10197. foot: {
  10198. height: math.unit(6 / 3.72, "feet"),
  10199. name: "Foot",
  10200. image: {
  10201. source: "./media/characters/zevulfius/foot.svg"
  10202. }
  10203. },
  10204. },
  10205. [
  10206. {
  10207. name: "Macro",
  10208. height: math.unit(750, "meters")
  10209. },
  10210. {
  10211. name: "Megamacro",
  10212. height: math.unit(20, "km"),
  10213. default: true
  10214. },
  10215. {
  10216. name: "Gigamacro",
  10217. height: math.unit(2000, "km")
  10218. },
  10219. {
  10220. name: "Teramacro",
  10221. height: math.unit(250000, "km")
  10222. },
  10223. ]
  10224. ))
  10225. characterMakers.push(() => makeCharacter(
  10226. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10227. {
  10228. front: {
  10229. height: math.unit(100, "feet"),
  10230. weight: math.unit(350, "kg"),
  10231. name: "Front",
  10232. image: {
  10233. source: "./media/characters/rikes/front.svg",
  10234. extra: 1565 / 1483,
  10235. bottom: 0.017
  10236. }
  10237. },
  10238. },
  10239. [
  10240. {
  10241. name: "Macro",
  10242. height: math.unit(100, "feet"),
  10243. default: true
  10244. },
  10245. ]
  10246. ))
  10247. characterMakers.push(() => makeCharacter(
  10248. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10249. {
  10250. anthro: {
  10251. height: math.unit(8, "feet"),
  10252. weight: math.unit(120, "kg"),
  10253. name: "Anthro",
  10254. image: {
  10255. source: "./media/characters/adam-silver-mane/anthro.svg",
  10256. extra: 5743 / 5339,
  10257. bottom: 0.07
  10258. }
  10259. },
  10260. taur: {
  10261. height: math.unit(16, "feet"),
  10262. weight: math.unit(1500, "kg"),
  10263. name: "Taur",
  10264. image: {
  10265. source: "./media/characters/adam-silver-mane/taur.svg",
  10266. extra: 1713 / 1571,
  10267. bottom: 0.01
  10268. }
  10269. },
  10270. },
  10271. [
  10272. {
  10273. name: "Normal",
  10274. height: math.unit(8, "feet")
  10275. },
  10276. {
  10277. name: "Minimacro",
  10278. height: math.unit(80, "feet")
  10279. },
  10280. {
  10281. name: "Macro",
  10282. height: math.unit(800, "feet"),
  10283. default: true
  10284. },
  10285. {
  10286. name: "Megamacro",
  10287. height: math.unit(8000, "feet")
  10288. },
  10289. {
  10290. name: "Gigamacro",
  10291. height: math.unit(800, "miles")
  10292. },
  10293. {
  10294. name: "Teramacro",
  10295. height: math.unit(80000, "miles")
  10296. },
  10297. {
  10298. name: "Celestial",
  10299. height: math.unit(8e6, "miles")
  10300. },
  10301. {
  10302. name: "Star Dragon",
  10303. height: math.unit(800000, "parsecs")
  10304. },
  10305. {
  10306. name: "Godly",
  10307. height: math.unit(800, "teraparsecs")
  10308. },
  10309. ]
  10310. ))
  10311. characterMakers.push(() => makeCharacter(
  10312. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10313. {
  10314. front: {
  10315. height: math.unit(6, "feet"),
  10316. weight: math.unit(150, "lb"),
  10317. name: "Front",
  10318. image: {
  10319. source: "./media/characters/ky'owin/front.svg",
  10320. extra: 3888 / 3068,
  10321. bottom: 0.015
  10322. }
  10323. },
  10324. },
  10325. [
  10326. {
  10327. name: "Normal",
  10328. height: math.unit(6 + 8 / 12, "feet")
  10329. },
  10330. {
  10331. name: "Large",
  10332. height: math.unit(68, "feet")
  10333. },
  10334. {
  10335. name: "Macro",
  10336. height: math.unit(132, "feet")
  10337. },
  10338. {
  10339. name: "Macro+",
  10340. height: math.unit(340, "feet")
  10341. },
  10342. {
  10343. name: "Macro++",
  10344. height: math.unit(680, "feet"),
  10345. default: true
  10346. },
  10347. {
  10348. name: "Megamacro",
  10349. height: math.unit(1, "mile")
  10350. },
  10351. {
  10352. name: "Megamacro+",
  10353. height: math.unit(10, "miles")
  10354. },
  10355. ]
  10356. ))
  10357. characterMakers.push(() => makeCharacter(
  10358. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10359. {
  10360. front: {
  10361. height: math.unit(4, "feet"),
  10362. weight: math.unit(50, "lb"),
  10363. name: "Front",
  10364. image: {
  10365. source: "./media/characters/mal/front.svg",
  10366. extra: 785 / 724,
  10367. bottom: 0.07
  10368. }
  10369. },
  10370. },
  10371. [
  10372. {
  10373. name: "Micro",
  10374. height: math.unit(4, "inches")
  10375. },
  10376. {
  10377. name: "Normal",
  10378. height: math.unit(4, "feet"),
  10379. default: true
  10380. },
  10381. {
  10382. name: "Macro",
  10383. height: math.unit(200, "feet")
  10384. },
  10385. ]
  10386. ))
  10387. characterMakers.push(() => makeCharacter(
  10388. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10389. {
  10390. front: {
  10391. height: math.unit(6, "feet"),
  10392. weight: math.unit(150, "lb"),
  10393. name: "Front",
  10394. image: {
  10395. source: "./media/characters/jordan-deware/front.svg",
  10396. extra: 1191 / 1012
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Nano",
  10403. height: math.unit(0.01, "mm")
  10404. },
  10405. {
  10406. name: "Minimicro",
  10407. height: math.unit(1, "mm")
  10408. },
  10409. {
  10410. name: "Micro",
  10411. height: math.unit(0.5, "inches")
  10412. },
  10413. {
  10414. name: "Normal",
  10415. height: math.unit(4, "feet"),
  10416. default: true
  10417. },
  10418. {
  10419. name: "Minimacro",
  10420. height: math.unit(40, "meters")
  10421. },
  10422. {
  10423. name: "Small Macro",
  10424. height: math.unit(400, "meters")
  10425. },
  10426. {
  10427. name: "Macro",
  10428. height: math.unit(4, "miles")
  10429. },
  10430. {
  10431. name: "Megamacro",
  10432. height: math.unit(40, "miles")
  10433. },
  10434. {
  10435. name: "Megamacro+",
  10436. height: math.unit(400, "miles")
  10437. },
  10438. {
  10439. name: "Gigamacro",
  10440. height: math.unit(400000, "miles")
  10441. },
  10442. ]
  10443. ))
  10444. characterMakers.push(() => makeCharacter(
  10445. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10446. {
  10447. side: {
  10448. height: math.unit(6, "feet"),
  10449. weight: math.unit(150, "lb"),
  10450. name: "Side",
  10451. image: {
  10452. source: "./media/characters/kimiko/side.svg",
  10453. extra: 600 / 358
  10454. }
  10455. },
  10456. },
  10457. [
  10458. {
  10459. name: "Normal",
  10460. height: math.unit(15, "feet"),
  10461. default: true
  10462. },
  10463. {
  10464. name: "Macro",
  10465. height: math.unit(220, "feet")
  10466. },
  10467. {
  10468. name: "Macro+",
  10469. height: math.unit(1450, "feet")
  10470. },
  10471. {
  10472. name: "Megamacro",
  10473. height: math.unit(11500, "feet")
  10474. },
  10475. {
  10476. name: "Gigamacro",
  10477. height: math.unit(9500, "miles")
  10478. },
  10479. {
  10480. name: "Teramacro",
  10481. height: math.unit(2208005005, "miles")
  10482. },
  10483. {
  10484. name: "Examacro",
  10485. height: math.unit(2750, "parsecs")
  10486. },
  10487. {
  10488. name: "Zettamacro",
  10489. height: math.unit(101500, "parsecs")
  10490. },
  10491. ]
  10492. ))
  10493. characterMakers.push(() => makeCharacter(
  10494. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10495. {
  10496. front: {
  10497. height: math.unit(6, "feet"),
  10498. weight: math.unit(70, "kg"),
  10499. name: "Front",
  10500. image: {
  10501. source: "./media/characters/andrew-sleepy/front.svg"
  10502. }
  10503. },
  10504. side: {
  10505. height: math.unit(6, "feet"),
  10506. weight: math.unit(70, "kg"),
  10507. name: "Side",
  10508. image: {
  10509. source: "./media/characters/andrew-sleepy/side.svg"
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Micro",
  10516. height: math.unit(1, "mm"),
  10517. default: true
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10523. {
  10524. front: {
  10525. height: math.unit(6, "feet"),
  10526. weight: math.unit(150, "lb"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/judio/front.svg",
  10530. extra: 1258 / 1110
  10531. }
  10532. },
  10533. },
  10534. [
  10535. {
  10536. name: "Normal",
  10537. height: math.unit(5 + 6 / 12, "feet")
  10538. },
  10539. {
  10540. name: "Macro",
  10541. height: math.unit(1000, "feet"),
  10542. default: true
  10543. },
  10544. {
  10545. name: "Megamacro",
  10546. height: math.unit(10, "miles")
  10547. },
  10548. ]
  10549. ))
  10550. characterMakers.push(() => makeCharacter(
  10551. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10552. {
  10553. front: {
  10554. height: math.unit(6, "feet"),
  10555. weight: math.unit(68, "kg"),
  10556. name: "Front",
  10557. image: {
  10558. source: "./media/characters/nomaxice/front.svg",
  10559. extra: 1498 / 1073,
  10560. bottom: 0.075
  10561. }
  10562. },
  10563. foot: {
  10564. height: math.unit(1.1, "feet"),
  10565. name: "Foot",
  10566. image: {
  10567. source: "./media/characters/nomaxice/foot.svg"
  10568. }
  10569. },
  10570. },
  10571. [
  10572. {
  10573. name: "Micro",
  10574. height: math.unit(8, "cm")
  10575. },
  10576. {
  10577. name: "Norm",
  10578. height: math.unit(1.82, "m")
  10579. },
  10580. {
  10581. name: "Norm+",
  10582. height: math.unit(8.8, "feet")
  10583. },
  10584. {
  10585. name: "Big",
  10586. height: math.unit(8, "meters"),
  10587. default: true
  10588. },
  10589. {
  10590. name: "Macro",
  10591. height: math.unit(18, "meters")
  10592. },
  10593. {
  10594. name: "Macro+",
  10595. height: math.unit(88, "meters")
  10596. },
  10597. ]
  10598. ))
  10599. characterMakers.push(() => makeCharacter(
  10600. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10601. {
  10602. front: {
  10603. height: math.unit(12, "feet"),
  10604. weight: math.unit(1.5, "tons"),
  10605. name: "Front",
  10606. image: {
  10607. source: "./media/characters/dydros/front.svg",
  10608. extra: 863 / 800,
  10609. bottom: 0.015
  10610. }
  10611. },
  10612. back: {
  10613. height: math.unit(12, "feet"),
  10614. weight: math.unit(1.5, "tons"),
  10615. name: "Back",
  10616. image: {
  10617. source: "./media/characters/dydros/back.svg",
  10618. extra: 900 / 843,
  10619. bottom: 0.005
  10620. }
  10621. },
  10622. },
  10623. [
  10624. {
  10625. name: "Normal",
  10626. height: math.unit(12, "feet"),
  10627. default: true
  10628. },
  10629. ]
  10630. ))
  10631. characterMakers.push(() => makeCharacter(
  10632. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10633. {
  10634. front: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(100, "kg"),
  10637. name: "Front",
  10638. image: {
  10639. source: "./media/characters/riggi/front.svg",
  10640. extra: 5787 / 5303
  10641. }
  10642. },
  10643. hyper: {
  10644. height: math.unit(6 * 5 / 3, "feet"),
  10645. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10646. name: "Hyper",
  10647. image: {
  10648. source: "./media/characters/riggi/hyper.svg",
  10649. extra: 3595 / 3485
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Small Macro",
  10656. height: math.unit(50, "feet")
  10657. },
  10658. {
  10659. name: "Default",
  10660. height: math.unit(200, "feet"),
  10661. default: true
  10662. },
  10663. {
  10664. name: "Loom",
  10665. height: math.unit(10000, "feet")
  10666. },
  10667. {
  10668. name: "Cruising Altitude",
  10669. height: math.unit(30000, "feet")
  10670. },
  10671. {
  10672. name: "Megamacro",
  10673. height: math.unit(100, "miles")
  10674. },
  10675. {
  10676. name: "Continent Sized",
  10677. height: math.unit(2800, "miles")
  10678. },
  10679. {
  10680. name: "Earth Sized",
  10681. height: math.unit(8000, "miles")
  10682. },
  10683. ]
  10684. ))
  10685. characterMakers.push(() => makeCharacter(
  10686. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10687. {
  10688. front: {
  10689. height: math.unit(6, "feet"),
  10690. weight: math.unit(250, "lb"),
  10691. name: "Front",
  10692. image: {
  10693. source: "./media/characters/alexi/front.svg",
  10694. extra: 3483 / 3291,
  10695. bottom: 0.04
  10696. }
  10697. },
  10698. back: {
  10699. height: math.unit(6, "feet"),
  10700. weight: math.unit(250, "lb"),
  10701. name: "Back",
  10702. image: {
  10703. source: "./media/characters/alexi/back.svg",
  10704. extra: 3533 / 3356,
  10705. bottom: 0.021
  10706. }
  10707. },
  10708. frontTransforming: {
  10709. height: math.unit(8.58, "feet"),
  10710. weight: math.unit(1300, "lb"),
  10711. name: "Transforming",
  10712. image: {
  10713. source: "./media/characters/alexi/front-transforming.svg",
  10714. extra: 437 / 409,
  10715. bottom: 19 / 458.66
  10716. }
  10717. },
  10718. frontTransformed: {
  10719. height: math.unit(12.5, "feet"),
  10720. weight: math.unit(4000, "lb"),
  10721. name: "Transformed",
  10722. image: {
  10723. source: "./media/characters/alexi/front-transformed.svg",
  10724. extra: 639 / 614,
  10725. bottom: 30.55 / 671
  10726. }
  10727. },
  10728. },
  10729. [
  10730. {
  10731. name: "Normal",
  10732. height: math.unit(14, "feet"),
  10733. default: true
  10734. },
  10735. {
  10736. name: "Minimacro",
  10737. height: math.unit(30, "meters")
  10738. },
  10739. {
  10740. name: "Macro",
  10741. height: math.unit(500, "meters")
  10742. },
  10743. {
  10744. name: "Megamacro",
  10745. height: math.unit(9000, "km")
  10746. },
  10747. {
  10748. name: "Teramacro",
  10749. height: math.unit(384000, "km")
  10750. },
  10751. ]
  10752. ))
  10753. characterMakers.push(() => makeCharacter(
  10754. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10755. {
  10756. front: {
  10757. height: math.unit(6, "feet"),
  10758. weight: math.unit(150, "lb"),
  10759. name: "Front",
  10760. image: {
  10761. source: "./media/characters/kayroo/front.svg",
  10762. extra: 1153 / 1038,
  10763. bottom: 0.06
  10764. }
  10765. },
  10766. foot: {
  10767. height: math.unit(6, "feet"),
  10768. weight: math.unit(150, "lb"),
  10769. name: "Foot",
  10770. image: {
  10771. source: "./media/characters/kayroo/foot.svg"
  10772. }
  10773. },
  10774. },
  10775. [
  10776. {
  10777. name: "Normal",
  10778. height: math.unit(8, "feet"),
  10779. default: true
  10780. },
  10781. {
  10782. name: "Minimacro",
  10783. height: math.unit(250, "feet")
  10784. },
  10785. {
  10786. name: "Macro",
  10787. height: math.unit(2800, "feet")
  10788. },
  10789. {
  10790. name: "Megamacro",
  10791. height: math.unit(5200, "feet")
  10792. },
  10793. {
  10794. name: "Gigamacro",
  10795. height: math.unit(27000, "feet")
  10796. },
  10797. {
  10798. name: "Omega",
  10799. height: math.unit(45000, "feet")
  10800. },
  10801. ]
  10802. ))
  10803. characterMakers.push(() => makeCharacter(
  10804. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10805. {
  10806. front: {
  10807. height: math.unit(18, "feet"),
  10808. weight: math.unit(5800, "lb"),
  10809. name: "Front",
  10810. image: {
  10811. source: "./media/characters/rhys/front.svg",
  10812. extra: 3386 / 3090,
  10813. bottom: 0.07
  10814. }
  10815. },
  10816. },
  10817. [
  10818. {
  10819. name: "Normal",
  10820. height: math.unit(18, "feet"),
  10821. default: true
  10822. },
  10823. {
  10824. name: "Working Size",
  10825. height: math.unit(200, "feet")
  10826. },
  10827. {
  10828. name: "Demolition Size",
  10829. height: math.unit(2000, "feet")
  10830. },
  10831. {
  10832. name: "Maximum Licensed Size",
  10833. height: math.unit(5, "miles")
  10834. },
  10835. {
  10836. name: "Maximum Observed Size",
  10837. height: math.unit(10, "yottameters")
  10838. },
  10839. ]
  10840. ))
  10841. characterMakers.push(() => makeCharacter(
  10842. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10843. {
  10844. front: {
  10845. height: math.unit(6, "feet"),
  10846. weight: math.unit(250, "lb"),
  10847. name: "Front",
  10848. image: {
  10849. source: "./media/characters/toto/front.svg",
  10850. extra: 527 / 479,
  10851. bottom: 0.05
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Micro",
  10858. height: math.unit(3, "feet")
  10859. },
  10860. {
  10861. name: "Normal",
  10862. height: math.unit(10, "feet")
  10863. },
  10864. {
  10865. name: "Macro",
  10866. height: math.unit(150, "feet"),
  10867. default: true
  10868. },
  10869. {
  10870. name: "Megamacro",
  10871. height: math.unit(1200, "feet")
  10872. },
  10873. ]
  10874. ))
  10875. characterMakers.push(() => makeCharacter(
  10876. { name: "King", species: ["lion"], tags: ["anthro"] },
  10877. {
  10878. back: {
  10879. height: math.unit(6, "feet"),
  10880. weight: math.unit(150, "lb"),
  10881. name: "Back",
  10882. image: {
  10883. source: "./media/characters/king/back.svg"
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Micro",
  10890. height: math.unit(2, "inches")
  10891. },
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(8, "feet")
  10895. },
  10896. {
  10897. name: "Macro",
  10898. height: math.unit(200, "feet"),
  10899. default: true
  10900. },
  10901. {
  10902. name: "Megamacro",
  10903. height: math.unit(50, "miles")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10909. {
  10910. anthro: {
  10911. height: math.unit(6 + 5 / 12, "feet"),
  10912. weight: math.unit(280, "lb"),
  10913. name: "Anthro",
  10914. image: {
  10915. source: "./media/characters/cordite/anthro.svg",
  10916. extra: 1986 / 1905,
  10917. bottom: 0.025
  10918. }
  10919. },
  10920. feral: {
  10921. height: math.unit(2, "feet"),
  10922. weight: math.unit(90, "lb"),
  10923. name: "Feral",
  10924. image: {
  10925. source: "./media/characters/cordite/feral.svg",
  10926. extra: 1260 / 755,
  10927. bottom: 0.05
  10928. }
  10929. },
  10930. },
  10931. [
  10932. {
  10933. name: "Normal",
  10934. height: math.unit(6 + 5 / 12, "feet"),
  10935. default: true
  10936. },
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10941. {
  10942. front: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(150, "lb"),
  10945. name: "Front",
  10946. image: {
  10947. source: "./media/characters/pianostrong/front.svg",
  10948. extra: 6577 / 6254,
  10949. bottom: 0.02
  10950. }
  10951. },
  10952. side: {
  10953. height: math.unit(6, "feet"),
  10954. weight: math.unit(150, "lb"),
  10955. name: "Side",
  10956. image: {
  10957. source: "./media/characters/pianostrong/side.svg",
  10958. extra: 6106 / 5730
  10959. }
  10960. },
  10961. back: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(150, "lb"),
  10964. name: "Back",
  10965. image: {
  10966. source: "./media/characters/pianostrong/back.svg",
  10967. extra: 6085 / 5733,
  10968. bottom: 0.01
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Macro",
  10975. height: math.unit(100, "feet")
  10976. },
  10977. {
  10978. name: "Macro+",
  10979. height: math.unit(300, "feet"),
  10980. default: true
  10981. },
  10982. {
  10983. name: "Macro++",
  10984. height: math.unit(1000, "feet")
  10985. },
  10986. ]
  10987. ))
  10988. characterMakers.push(() => makeCharacter(
  10989. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10990. {
  10991. front: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(150, "lb"),
  10994. name: "Front",
  10995. image: {
  10996. source: "./media/characters/kona/front.svg",
  10997. extra: 2960 / 2629,
  10998. bottom: 0.005
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Normal",
  11005. height: math.unit(11 + 8 / 12, "feet")
  11006. },
  11007. {
  11008. name: "Macro",
  11009. height: math.unit(850, "feet"),
  11010. default: true
  11011. },
  11012. {
  11013. name: "Macro+",
  11014. height: math.unit(1.5, "km"),
  11015. default: true
  11016. },
  11017. {
  11018. name: "Megamacro",
  11019. height: math.unit(80, "miles")
  11020. },
  11021. {
  11022. name: "Gigamacro",
  11023. height: math.unit(3500, "miles")
  11024. },
  11025. ]
  11026. ))
  11027. characterMakers.push(() => makeCharacter(
  11028. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11029. {
  11030. side: {
  11031. height: math.unit(1.9, "meters"),
  11032. weight: math.unit(326, "kg"),
  11033. name: "Side",
  11034. image: {
  11035. source: "./media/characters/levi/side.svg",
  11036. extra: 1704 / 1334,
  11037. bottom: 0.02
  11038. }
  11039. },
  11040. },
  11041. [
  11042. {
  11043. name: "Normal",
  11044. height: math.unit(1.9, "meters"),
  11045. default: true
  11046. },
  11047. {
  11048. name: "Macro",
  11049. height: math.unit(20, "meters")
  11050. },
  11051. {
  11052. name: "Macro+",
  11053. height: math.unit(200, "meters")
  11054. },
  11055. {
  11056. name: "Megamacro",
  11057. height: math.unit(2, "km")
  11058. },
  11059. {
  11060. name: "Megamacro+",
  11061. height: math.unit(20, "km")
  11062. },
  11063. {
  11064. name: "Gigamacro",
  11065. height: math.unit(2500, "km")
  11066. },
  11067. {
  11068. name: "Gigamacro+",
  11069. height: math.unit(120000, "km")
  11070. },
  11071. {
  11072. name: "Teramacro",
  11073. height: math.unit(7.77e6, "km")
  11074. },
  11075. ]
  11076. ))
  11077. characterMakers.push(() => makeCharacter(
  11078. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11079. {
  11080. front: {
  11081. height: math.unit(6 + 4 / 12, "feet"),
  11082. weight: math.unit(188, "lb"),
  11083. name: "Front",
  11084. image: {
  11085. source: "./media/characters/bmc/front.svg",
  11086. extra: 1067 / 1022,
  11087. bottom: 0.047
  11088. }
  11089. },
  11090. },
  11091. [
  11092. {
  11093. name: "Human-sized",
  11094. height: math.unit(6 + 4 / 12, "feet")
  11095. },
  11096. {
  11097. name: "Small",
  11098. height: math.unit(250, "feet")
  11099. },
  11100. {
  11101. name: "Normal",
  11102. height: math.unit(1250, "feet"),
  11103. default: true
  11104. },
  11105. {
  11106. name: "Good Day",
  11107. height: math.unit(88, "miles")
  11108. },
  11109. {
  11110. name: "Largest Measured Size",
  11111. height: math.unit(11.2e6, "lightyears")
  11112. },
  11113. ]
  11114. ))
  11115. characterMakers.push(() => makeCharacter(
  11116. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11117. {
  11118. front: {
  11119. height: math.unit(20, "feet"),
  11120. weight: math.unit(2016, "kg"),
  11121. name: "Front",
  11122. image: {
  11123. source: "./media/characters/sven-the-kaiju/front.svg",
  11124. extra: 1277/1250,
  11125. bottom: 35/1312
  11126. }
  11127. },
  11128. mouth: {
  11129. height: math.unit(1.85, "feet"),
  11130. name: "Mouth",
  11131. image: {
  11132. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11133. }
  11134. },
  11135. },
  11136. [
  11137. {
  11138. name: "Fairy",
  11139. height: math.unit(6, "inches")
  11140. },
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(20, "feet"),
  11144. default: true
  11145. },
  11146. {
  11147. name: "Rampage",
  11148. height: math.unit(200, "feet")
  11149. },
  11150. {
  11151. name: "Archfey Forest Guardian",
  11152. height: math.unit(1, "mile")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11158. {
  11159. front: {
  11160. height: math.unit(4, "meters"),
  11161. weight: math.unit(2, "tons"),
  11162. name: "Front",
  11163. image: {
  11164. source: "./media/characters/marik/front.svg",
  11165. extra: 1057 / 1003,
  11166. bottom: 0.08
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(4, "meters"),
  11174. default: true
  11175. },
  11176. {
  11177. name: "Macro",
  11178. height: math.unit(20, "meters")
  11179. },
  11180. {
  11181. name: "Megamacro",
  11182. height: math.unit(50, "km")
  11183. },
  11184. {
  11185. name: "Gigamacro",
  11186. height: math.unit(100, "km")
  11187. },
  11188. {
  11189. name: "Alpha Macro",
  11190. height: math.unit(7.88e7, "yottameters")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(6, "feet"),
  11199. weight: math.unit(110, "lb"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/mel/front.svg",
  11203. extra: 736 / 617,
  11204. bottom: 0.017
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Pico",
  11211. height: math.unit(3, "pm")
  11212. },
  11213. {
  11214. name: "Nano",
  11215. height: math.unit(3, "nm")
  11216. },
  11217. {
  11218. name: "Micro",
  11219. height: math.unit(0.3, "mm"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Micro+",
  11224. height: math.unit(3, "mm")
  11225. },
  11226. {
  11227. name: "Normal",
  11228. height: math.unit(5 + 10.5 / 12, "feet")
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11234. {
  11235. kaiju: {
  11236. height: math.unit(1.75, "meters"),
  11237. weight: math.unit(55, "kg"),
  11238. name: "Kaiju",
  11239. image: {
  11240. source: "./media/characters/lykonous/kaiju.svg",
  11241. extra: 1055 / 946,
  11242. bottom: 0.135
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(2.5, "meters"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Kaiju Dragon",
  11254. height: math.unit(60, "meters")
  11255. },
  11256. {
  11257. name: "Mega Kaiju",
  11258. height: math.unit(120, "km")
  11259. },
  11260. {
  11261. name: "Giga Kaiju",
  11262. height: math.unit(200, "megameters")
  11263. },
  11264. {
  11265. name: "Terra Kaiju",
  11266. height: math.unit(400, "gigameters")
  11267. },
  11268. {
  11269. name: "Kaiju Dragon God",
  11270. height: math.unit(13000, "exaparsecs")
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(150, "lb"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/blü/front.svg",
  11283. extra: 1883 / 1564,
  11284. bottom: 0.031
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Normal",
  11291. height: math.unit(13, "feet"),
  11292. default: true
  11293. },
  11294. {
  11295. name: "Big Boi",
  11296. height: math.unit(150, "meters")
  11297. },
  11298. {
  11299. name: "Mini Stomper",
  11300. height: math.unit(300, "meters")
  11301. },
  11302. {
  11303. name: "Macro",
  11304. height: math.unit(1000, "meters")
  11305. },
  11306. {
  11307. name: "Megamacro",
  11308. height: math.unit(11000, "meters")
  11309. },
  11310. {
  11311. name: "Gigamacro",
  11312. height: math.unit(11000, "km")
  11313. },
  11314. {
  11315. name: "Teramacro",
  11316. height: math.unit(420000, "km")
  11317. },
  11318. {
  11319. name: "Examacro",
  11320. height: math.unit(120, "parsecs")
  11321. },
  11322. {
  11323. name: "God Tho",
  11324. height: math.unit(98000000000, "parsecs")
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11330. {
  11331. taurFront: {
  11332. height: math.unit(6, "feet"),
  11333. weight: math.unit(200, "lb"),
  11334. name: "Taur (Front)",
  11335. image: {
  11336. source: "./media/characters/scales/taur-front.svg",
  11337. extra: 1,
  11338. bottom: 0.05
  11339. }
  11340. },
  11341. taurBack: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(200, "lb"),
  11344. name: "Taur (Back)",
  11345. image: {
  11346. source: "./media/characters/scales/taur-back.svg",
  11347. extra: 1,
  11348. bottom: 0.08
  11349. }
  11350. },
  11351. anthro: {
  11352. height: math.unit(6 * 7 / 12, "feet"),
  11353. weight: math.unit(100, "lb"),
  11354. name: "Anthro",
  11355. image: {
  11356. source: "./media/characters/scales/anthro.svg",
  11357. extra: 1,
  11358. bottom: 0.06
  11359. }
  11360. },
  11361. },
  11362. [
  11363. {
  11364. name: "Normal",
  11365. height: math.unit(12, "feet"),
  11366. default: true
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11372. {
  11373. front: {
  11374. height: math.unit(6, "feet"),
  11375. weight: math.unit(150, "lb"),
  11376. name: "Front",
  11377. image: {
  11378. source: "./media/characters/koragos/front.svg",
  11379. extra: 841 / 794,
  11380. bottom: 0.035
  11381. }
  11382. },
  11383. back: {
  11384. height: math.unit(6, "feet"),
  11385. weight: math.unit(150, "lb"),
  11386. name: "Back",
  11387. image: {
  11388. source: "./media/characters/koragos/back.svg",
  11389. extra: 841 / 810,
  11390. bottom: 0.022
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Normal",
  11397. height: math.unit(6 + 11 / 12, "feet"),
  11398. default: true
  11399. },
  11400. {
  11401. name: "Macro",
  11402. height: math.unit(490, "feet")
  11403. },
  11404. {
  11405. name: "Megamacro",
  11406. height: math.unit(10, "miles")
  11407. },
  11408. {
  11409. name: "Gigamacro",
  11410. height: math.unit(50, "miles")
  11411. },
  11412. ]
  11413. ))
  11414. characterMakers.push(() => makeCharacter(
  11415. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11416. {
  11417. front: {
  11418. height: math.unit(6, "feet"),
  11419. weight: math.unit(250, "lb"),
  11420. name: "Front",
  11421. image: {
  11422. source: "./media/characters/xylrem/front.svg",
  11423. extra: 3323 / 3050,
  11424. bottom: 0.065
  11425. }
  11426. },
  11427. },
  11428. [
  11429. {
  11430. name: "Micro",
  11431. height: math.unit(4, "feet")
  11432. },
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(16, "feet"),
  11436. default: true
  11437. },
  11438. {
  11439. name: "Macro",
  11440. height: math.unit(2720, "feet")
  11441. },
  11442. {
  11443. name: "Megamacro",
  11444. height: math.unit(25000, "miles")
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11450. {
  11451. front: {
  11452. height: math.unit(8, "feet"),
  11453. weight: math.unit(250, "kg"),
  11454. name: "Front",
  11455. image: {
  11456. source: "./media/characters/ikideru/front.svg",
  11457. extra: 930 / 870,
  11458. bottom: 0.087
  11459. }
  11460. },
  11461. back: {
  11462. height: math.unit(8, "feet"),
  11463. weight: math.unit(250, "kg"),
  11464. name: "Back",
  11465. image: {
  11466. source: "./media/characters/ikideru/back.svg",
  11467. extra: 919 / 852,
  11468. bottom: 0.055
  11469. }
  11470. },
  11471. },
  11472. [
  11473. {
  11474. name: "Rare",
  11475. height: math.unit(8, "feet"),
  11476. default: true
  11477. },
  11478. {
  11479. name: "Playful Loom",
  11480. height: math.unit(80, "feet")
  11481. },
  11482. {
  11483. name: "City Leaner",
  11484. height: math.unit(230, "feet")
  11485. },
  11486. {
  11487. name: "Megamacro",
  11488. height: math.unit(2500, "feet")
  11489. },
  11490. {
  11491. name: "Gigamacro",
  11492. height: math.unit(26400, "feet")
  11493. },
  11494. {
  11495. name: "Tectonic Shifter",
  11496. height: math.unit(1.7, "megameters")
  11497. },
  11498. {
  11499. name: "Planet Carer",
  11500. height: math.unit(21, "megameters")
  11501. },
  11502. {
  11503. name: "God",
  11504. height: math.unit(11157.22, "parsecs")
  11505. },
  11506. ]
  11507. ))
  11508. characterMakers.push(() => makeCharacter(
  11509. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11510. {
  11511. front: {
  11512. height: math.unit(6, "feet"),
  11513. weight: math.unit(120, "lb"),
  11514. name: "Front",
  11515. image: {
  11516. source: "./media/characters/neo/front.svg"
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Micro",
  11523. height: math.unit(2, "inches"),
  11524. default: true
  11525. },
  11526. {
  11527. name: "Human Size",
  11528. height: math.unit(5 + 8 / 12, "feet")
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11534. {
  11535. front: {
  11536. height: math.unit(13 + 10 / 12, "feet"),
  11537. weight: math.unit(5320, "lb"),
  11538. name: "Front",
  11539. image: {
  11540. source: "./media/characters/chauncey-chantz/front.svg",
  11541. extra: 1587 / 1435,
  11542. bottom: 0.02
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Normal",
  11549. height: math.unit(13 + 10 / 12, "feet"),
  11550. default: true
  11551. },
  11552. {
  11553. name: "Macro",
  11554. height: math.unit(45, "feet")
  11555. },
  11556. {
  11557. name: "Megamacro",
  11558. height: math.unit(250, "miles")
  11559. },
  11560. {
  11561. name: "Planetary",
  11562. height: math.unit(10000, "miles")
  11563. },
  11564. {
  11565. name: "Galactic",
  11566. height: math.unit(40000, "parsecs")
  11567. },
  11568. {
  11569. name: "Universal",
  11570. height: math.unit(1, "yottameter")
  11571. },
  11572. ]
  11573. ))
  11574. characterMakers.push(() => makeCharacter(
  11575. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11576. {
  11577. front: {
  11578. height: math.unit(6, "feet"),
  11579. weight: math.unit(150, "lb"),
  11580. name: "Front",
  11581. image: {
  11582. source: "./media/characters/epifox/front.svg",
  11583. extra: 1,
  11584. bottom: 0.075
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Micro",
  11591. height: math.unit(6, "inches")
  11592. },
  11593. {
  11594. name: "Normal",
  11595. height: math.unit(12, "feet"),
  11596. default: true
  11597. },
  11598. {
  11599. name: "Macro",
  11600. height: math.unit(3810, "feet")
  11601. },
  11602. {
  11603. name: "Megamacro",
  11604. height: math.unit(500, "miles")
  11605. },
  11606. ]
  11607. ))
  11608. characterMakers.push(() => makeCharacter(
  11609. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11610. {
  11611. front: {
  11612. height: math.unit(1.8796, "m"),
  11613. weight: math.unit(230, "lb"),
  11614. name: "Front",
  11615. image: {
  11616. source: "./media/characters/colin-t/front.svg",
  11617. extra: 1272 / 1193,
  11618. bottom: 0.07
  11619. }
  11620. },
  11621. },
  11622. [
  11623. {
  11624. name: "Micro",
  11625. height: math.unit(0.571, "meters")
  11626. },
  11627. {
  11628. name: "Normal",
  11629. height: math.unit(1.8796, "meters"),
  11630. default: true
  11631. },
  11632. {
  11633. name: "Tall",
  11634. height: math.unit(4, "meters")
  11635. },
  11636. {
  11637. name: "Macro",
  11638. height: math.unit(67.241, "meters")
  11639. },
  11640. {
  11641. name: "Megamacro",
  11642. height: math.unit(371.856, "meters")
  11643. },
  11644. {
  11645. name: "Planetary",
  11646. height: math.unit(12631.5689, "km")
  11647. },
  11648. ]
  11649. ))
  11650. characterMakers.push(() => makeCharacter(
  11651. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11652. {
  11653. front: {
  11654. height: math.unit(1.85, "meters"),
  11655. weight: math.unit(80, "kg"),
  11656. name: "Front",
  11657. image: {
  11658. source: "./media/characters/matvei/front.svg",
  11659. extra: 614 / 594,
  11660. bottom: 0.01
  11661. }
  11662. },
  11663. },
  11664. [
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(1.85, "meters"),
  11668. default: true
  11669. },
  11670. ]
  11671. ))
  11672. characterMakers.push(() => makeCharacter(
  11673. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11674. {
  11675. front: {
  11676. height: math.unit(5 + 9 / 12, "feet"),
  11677. weight: math.unit(70, "lb"),
  11678. name: "Front",
  11679. image: {
  11680. source: "./media/characters/quincy/front.svg",
  11681. extra: 3041 / 2751
  11682. }
  11683. },
  11684. back: {
  11685. height: math.unit(5 + 9 / 12, "feet"),
  11686. weight: math.unit(70, "lb"),
  11687. name: "Back",
  11688. image: {
  11689. source: "./media/characters/quincy/back.svg",
  11690. extra: 3041 / 2751
  11691. }
  11692. },
  11693. flying: {
  11694. height: math.unit(5 + 4 / 12, "feet"),
  11695. weight: math.unit(70, "lb"),
  11696. name: "Flying",
  11697. image: {
  11698. source: "./media/characters/quincy/flying.svg",
  11699. extra: 1044 / 930
  11700. }
  11701. },
  11702. },
  11703. [
  11704. {
  11705. name: "Micro",
  11706. height: math.unit(3, "cm")
  11707. },
  11708. {
  11709. name: "Normal",
  11710. height: math.unit(5 + 9 / 12, "feet")
  11711. },
  11712. {
  11713. name: "Macro",
  11714. height: math.unit(200, "meters"),
  11715. default: true
  11716. },
  11717. {
  11718. name: "Megamacro",
  11719. height: math.unit(1000, "meters")
  11720. },
  11721. ]
  11722. ))
  11723. characterMakers.push(() => makeCharacter(
  11724. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11725. {
  11726. front: {
  11727. height: math.unit(4 + 7 / 12, "feet"),
  11728. weight: math.unit(50, "lb"),
  11729. name: "Front",
  11730. image: {
  11731. source: "./media/characters/vanrel/front.svg",
  11732. extra: 1,
  11733. bottom: 0.02
  11734. }
  11735. },
  11736. frontAlt: {
  11737. height: math.unit(4 + 7 / 12, "feet"),
  11738. weight: math.unit(50, "lb"),
  11739. name: "Front-alt",
  11740. image: {
  11741. source: "./media/characters/vanrel/front-alt.svg",
  11742. extra: 1,
  11743. bottom: 15 / 1511
  11744. }
  11745. },
  11746. elemental: {
  11747. height: math.unit(3, "feet"),
  11748. weight: math.unit(50, "lb"),
  11749. name: "Elemental",
  11750. image: {
  11751. source: "./media/characters/vanrel/elemental.svg",
  11752. extra: 192.3 / 162.8,
  11753. bottom: 1.79 / 194.17
  11754. }
  11755. },
  11756. side: {
  11757. height: math.unit(4 + 7 / 12, "feet"),
  11758. weight: math.unit(50, "lb"),
  11759. name: "Side",
  11760. image: {
  11761. source: "./media/characters/vanrel/side.svg",
  11762. extra: 1,
  11763. bottom: 0.025
  11764. }
  11765. },
  11766. tome: {
  11767. height: math.unit(1.35, "feet"),
  11768. weight: math.unit(10, "lb"),
  11769. name: "Vanrel's Tome",
  11770. rename: true,
  11771. image: {
  11772. source: "./media/characters/vanrel/tome.svg"
  11773. }
  11774. },
  11775. beans: {
  11776. height: math.unit(0.89, "feet"),
  11777. name: "Beans",
  11778. image: {
  11779. source: "./media/characters/vanrel/beans.svg"
  11780. }
  11781. },
  11782. },
  11783. [
  11784. {
  11785. name: "Normal",
  11786. height: math.unit(4 + 7 / 12, "feet"),
  11787. default: true
  11788. },
  11789. ]
  11790. ))
  11791. characterMakers.push(() => makeCharacter(
  11792. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11793. {
  11794. front: {
  11795. height: math.unit(7 + 5 / 12, "feet"),
  11796. weight: math.unit(150, "lb"),
  11797. name: "Front",
  11798. image: {
  11799. source: "./media/characters/kuiper-vanrel/front.svg",
  11800. extra: 1118 / 1068,
  11801. bottom: 0.09
  11802. }
  11803. },
  11804. foot: {
  11805. height: math.unit(0.55, "meters"),
  11806. name: "Foot",
  11807. image: {
  11808. source: "./media/characters/kuiper-vanrel/foot.svg",
  11809. }
  11810. },
  11811. battle: {
  11812. height: math.unit(6.824, "feet"),
  11813. weight: math.unit(150, "lb"),
  11814. name: "Battle",
  11815. image: {
  11816. source: "./media/characters/kuiper-vanrel/battle.svg",
  11817. extra: 1466 / 1327,
  11818. bottom: 29 / 1492.5
  11819. }
  11820. },
  11821. battleAlt: {
  11822. height: math.unit(6.824, "feet"),
  11823. weight: math.unit(150, "lb"),
  11824. name: "Battle (Alt)",
  11825. image: {
  11826. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11827. extra: 2081 / 1965,
  11828. bottom: 40 / 2121
  11829. }
  11830. },
  11831. },
  11832. [
  11833. {
  11834. name: "Normal",
  11835. height: math.unit(7 + 5 / 12, "feet"),
  11836. default: true
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11842. {
  11843. front: {
  11844. height: math.unit(8 + 5 / 12, "feet"),
  11845. weight: math.unit(150, "lb"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/keset-vanrel/front.svg",
  11849. extra: 1150 / 1084,
  11850. bottom: 0.05
  11851. }
  11852. },
  11853. hand: {
  11854. height: math.unit(0.6, "meters"),
  11855. name: "Hand",
  11856. image: {
  11857. source: "./media/characters/keset-vanrel/hand.svg"
  11858. }
  11859. },
  11860. foot: {
  11861. height: math.unit(0.94978, "meters"),
  11862. name: "Foot",
  11863. image: {
  11864. source: "./media/characters/keset-vanrel/foot.svg"
  11865. }
  11866. },
  11867. battle: {
  11868. height: math.unit(7.408, "feet"),
  11869. weight: math.unit(150, "lb"),
  11870. name: "Battle",
  11871. image: {
  11872. source: "./media/characters/keset-vanrel/battle.svg",
  11873. extra: 1890 / 1386,
  11874. bottom: 73.28 / 1970
  11875. }
  11876. },
  11877. },
  11878. [
  11879. {
  11880. name: "Normal",
  11881. height: math.unit(8 + 5 / 12, "feet"),
  11882. default: true
  11883. },
  11884. ]
  11885. ))
  11886. characterMakers.push(() => makeCharacter(
  11887. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11888. {
  11889. front: {
  11890. height: math.unit(6, "feet"),
  11891. weight: math.unit(150, "lb"),
  11892. name: "Front",
  11893. image: {
  11894. source: "./media/characters/neos/front.svg",
  11895. extra: 1696 / 992,
  11896. bottom: 0.14
  11897. }
  11898. },
  11899. },
  11900. [
  11901. {
  11902. name: "Normal",
  11903. height: math.unit(54, "cm"),
  11904. default: true
  11905. },
  11906. {
  11907. name: "Macro",
  11908. height: math.unit(100, "m")
  11909. },
  11910. {
  11911. name: "Megamacro",
  11912. height: math.unit(10, "km")
  11913. },
  11914. {
  11915. name: "Megamacro+",
  11916. height: math.unit(100, "km")
  11917. },
  11918. {
  11919. name: "Gigamacro",
  11920. height: math.unit(100, "Mm")
  11921. },
  11922. {
  11923. name: "Teramacro",
  11924. height: math.unit(100, "Gm")
  11925. },
  11926. {
  11927. name: "Examacro",
  11928. height: math.unit(100, "Em")
  11929. },
  11930. {
  11931. name: "Godly",
  11932. height: math.unit(10000, "Ym")
  11933. },
  11934. {
  11935. name: "Beyond Godly",
  11936. height: math.unit(25, "multiverses")
  11937. },
  11938. ]
  11939. ))
  11940. characterMakers.push(() => makeCharacter(
  11941. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11942. {
  11943. feminine: {
  11944. height: math.unit(5, "feet"),
  11945. weight: math.unit(100, "lb"),
  11946. name: "Feminine",
  11947. image: {
  11948. source: "./media/characters/sammy-mouse/feminine.svg",
  11949. extra: 2526 / 2425,
  11950. bottom: 0.123
  11951. }
  11952. },
  11953. masculine: {
  11954. height: math.unit(5, "feet"),
  11955. weight: math.unit(100, "lb"),
  11956. name: "Masculine",
  11957. image: {
  11958. source: "./media/characters/sammy-mouse/masculine.svg",
  11959. extra: 2526 / 2425,
  11960. bottom: 0.123
  11961. }
  11962. },
  11963. },
  11964. [
  11965. {
  11966. name: "Micro",
  11967. height: math.unit(5, "inches")
  11968. },
  11969. {
  11970. name: "Normal",
  11971. height: math.unit(5, "feet"),
  11972. default: true
  11973. },
  11974. {
  11975. name: "Macro",
  11976. height: math.unit(60, "feet")
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(4, "feet"),
  11985. weight: math.unit(50, "lb"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/kole/front.svg",
  11989. extra: 1423 / 1303,
  11990. bottom: 0.025
  11991. }
  11992. },
  11993. back: {
  11994. height: math.unit(4, "feet"),
  11995. weight: math.unit(50, "lb"),
  11996. name: "Back",
  11997. image: {
  11998. source: "./media/characters/kole/back.svg",
  11999. extra: 1426 / 1280,
  12000. bottom: 0.02
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Normal",
  12007. height: math.unit(4, "feet"),
  12008. default: true
  12009. },
  12010. ]
  12011. ))
  12012. characterMakers.push(() => makeCharacter(
  12013. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12014. {
  12015. front: {
  12016. height: math.unit(2 + 6 / 12, "feet"),
  12017. weight: math.unit(20, "lb"),
  12018. name: "Front",
  12019. image: {
  12020. source: "./media/characters/rufran/front.svg",
  12021. extra: 2041 / 1839,
  12022. bottom: 0.055
  12023. }
  12024. },
  12025. back: {
  12026. height: math.unit(2 + 6 / 12, "feet"),
  12027. weight: math.unit(20, "lb"),
  12028. name: "Back",
  12029. image: {
  12030. source: "./media/characters/rufran/back.svg",
  12031. extra: 2054 / 1839,
  12032. bottom: 0.01
  12033. }
  12034. },
  12035. hand: {
  12036. height: math.unit(0.2166, "meters"),
  12037. name: "Hand",
  12038. image: {
  12039. source: "./media/characters/rufran/hand.svg"
  12040. }
  12041. },
  12042. foot: {
  12043. height: math.unit(0.185, "meters"),
  12044. name: "Foot",
  12045. image: {
  12046. source: "./media/characters/rufran/foot.svg"
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Micro",
  12053. height: math.unit(1, "inch")
  12054. },
  12055. {
  12056. name: "Normal",
  12057. height: math.unit(2 + 6 / 12, "feet"),
  12058. default: true
  12059. },
  12060. {
  12061. name: "Big",
  12062. height: math.unit(60, "feet")
  12063. },
  12064. {
  12065. name: "Macro",
  12066. height: math.unit(325, "feet")
  12067. },
  12068. ]
  12069. ))
  12070. characterMakers.push(() => makeCharacter(
  12071. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12072. {
  12073. front: {
  12074. height: math.unit(0.3, "meters"),
  12075. weight: math.unit(3.5, "kg"),
  12076. name: "Front",
  12077. image: {
  12078. source: "./media/characters/chip/front.svg",
  12079. extra: 748 / 674
  12080. }
  12081. },
  12082. },
  12083. [
  12084. {
  12085. name: "Micro",
  12086. height: math.unit(1, "inch"),
  12087. default: true
  12088. },
  12089. ]
  12090. ))
  12091. characterMakers.push(() => makeCharacter(
  12092. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12093. {
  12094. side: {
  12095. height: math.unit(2.3, "meters"),
  12096. weight: math.unit(3500, "lb"),
  12097. name: "Side",
  12098. image: {
  12099. source: "./media/characters/torvid/side.svg",
  12100. extra: 1972 / 722,
  12101. bottom: 0.035
  12102. }
  12103. },
  12104. },
  12105. [
  12106. {
  12107. name: "Normal",
  12108. height: math.unit(2.3, "meters"),
  12109. default: true
  12110. },
  12111. ]
  12112. ))
  12113. characterMakers.push(() => makeCharacter(
  12114. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12115. {
  12116. front: {
  12117. height: math.unit(2, "meters"),
  12118. weight: math.unit(150.5, "kg"),
  12119. name: "Front",
  12120. image: {
  12121. source: "./media/characters/susan/front.svg",
  12122. extra: 693 / 635,
  12123. bottom: 0.05
  12124. }
  12125. },
  12126. },
  12127. [
  12128. {
  12129. name: "Megamacro",
  12130. height: math.unit(505, "miles"),
  12131. default: true
  12132. },
  12133. ]
  12134. ))
  12135. characterMakers.push(() => makeCharacter(
  12136. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12137. {
  12138. front: {
  12139. height: math.unit(6, "feet"),
  12140. weight: math.unit(150, "lb"),
  12141. name: "Front",
  12142. image: {
  12143. source: "./media/characters/raindrops/front.svg",
  12144. extra: 2655 / 2461,
  12145. bottom: 49 / 2705
  12146. }
  12147. },
  12148. back: {
  12149. height: math.unit(6, "feet"),
  12150. weight: math.unit(150, "lb"),
  12151. name: "Back",
  12152. image: {
  12153. source: "./media/characters/raindrops/back.svg",
  12154. extra: 2574 / 2400,
  12155. bottom: 65 / 2634
  12156. }
  12157. },
  12158. },
  12159. [
  12160. {
  12161. name: "Micro",
  12162. height: math.unit(6, "inches")
  12163. },
  12164. {
  12165. name: "Normal",
  12166. height: math.unit(6 + 2 / 12, "feet")
  12167. },
  12168. {
  12169. name: "Macro",
  12170. height: math.unit(131, "feet"),
  12171. default: true
  12172. },
  12173. {
  12174. name: "Megamacro",
  12175. height: math.unit(15, "miles")
  12176. },
  12177. {
  12178. name: "Gigamacro",
  12179. height: math.unit(4000, "miles")
  12180. },
  12181. {
  12182. name: "Teramacro",
  12183. height: math.unit(315000, "miles")
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12189. {
  12190. front: {
  12191. height: math.unit(2.794, "meters"),
  12192. weight: math.unit(325, "kg"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/tezwa/front.svg",
  12196. extra: 2083 / 1906,
  12197. bottom: 0.031
  12198. }
  12199. },
  12200. foot: {
  12201. height: math.unit(0.687, "meters"),
  12202. name: "Foot",
  12203. image: {
  12204. source: "./media/characters/tezwa/foot.svg"
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(9 + 2 / 12, "feet"),
  12212. default: true
  12213. },
  12214. ]
  12215. ))
  12216. characterMakers.push(() => makeCharacter(
  12217. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12218. {
  12219. front: {
  12220. height: math.unit(58, "feet"),
  12221. weight: math.unit(89000, "lb"),
  12222. name: "Front",
  12223. image: {
  12224. source: "./media/characters/typhus/front.svg",
  12225. extra: 816 / 800,
  12226. bottom: 0.065
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(58, "feet"),
  12234. default: true
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(12, "feet"),
  12243. weight: math.unit(6, "tonnes"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/lyra-von-wulf/front.svg",
  12247. extra: 1,
  12248. bottom: 0.10
  12249. }
  12250. },
  12251. frontMecha: {
  12252. height: math.unit(12, "feet"),
  12253. weight: math.unit(12, "tonnes"),
  12254. name: "Front (Mecha)",
  12255. image: {
  12256. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12257. extra: 1,
  12258. bottom: 0.042
  12259. }
  12260. },
  12261. maw: {
  12262. height: math.unit(2.2, "feet"),
  12263. name: "Maw",
  12264. image: {
  12265. source: "./media/characters/lyra-von-wulf/maw.svg"
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Normal",
  12272. height: math.unit(12, "feet"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Classic",
  12277. height: math.unit(50, "feet")
  12278. },
  12279. {
  12280. name: "Macro",
  12281. height: math.unit(500, "feet")
  12282. },
  12283. {
  12284. name: "Megamacro",
  12285. height: math.unit(1, "mile")
  12286. },
  12287. {
  12288. name: "Gigamacro",
  12289. height: math.unit(400, "miles")
  12290. },
  12291. {
  12292. name: "Teramacro",
  12293. height: math.unit(22000, "miles")
  12294. },
  12295. {
  12296. name: "Solarmacro",
  12297. height: math.unit(8600000, "miles")
  12298. },
  12299. {
  12300. name: "Galactic",
  12301. height: math.unit(1057000, "lightyears")
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12307. {
  12308. front: {
  12309. height: math.unit(6 + 10 / 12, "feet"),
  12310. weight: math.unit(150, "lb"),
  12311. name: "Front",
  12312. image: {
  12313. source: "./media/characters/dixon/front.svg",
  12314. extra: 3361 / 3209,
  12315. bottom: 0.01
  12316. }
  12317. },
  12318. },
  12319. [
  12320. {
  12321. name: "Normal",
  12322. height: math.unit(6 + 10 / 12, "feet"),
  12323. default: true
  12324. },
  12325. {
  12326. name: "Big",
  12327. height: math.unit(12, "meters")
  12328. },
  12329. {
  12330. name: "Macro",
  12331. height: math.unit(500, "meters")
  12332. },
  12333. {
  12334. name: "Megamacro",
  12335. height: math.unit(2, "km")
  12336. },
  12337. ]
  12338. ))
  12339. characterMakers.push(() => makeCharacter(
  12340. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12341. {
  12342. front: {
  12343. height: math.unit(185, "cm"),
  12344. weight: math.unit(68, "kg"),
  12345. name: "Front",
  12346. image: {
  12347. source: "./media/characters/kauko/front.svg",
  12348. extra: 1455 / 1421,
  12349. bottom: 0.03
  12350. }
  12351. },
  12352. back: {
  12353. height: math.unit(185, "cm"),
  12354. weight: math.unit(68, "kg"),
  12355. name: "Back",
  12356. image: {
  12357. source: "./media/characters/kauko/back.svg",
  12358. extra: 1455 / 1421,
  12359. bottom: 0.004
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Normal",
  12366. height: math.unit(185, "cm"),
  12367. default: true
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12373. {
  12374. front: {
  12375. height: math.unit(6, "feet"),
  12376. weight: math.unit(150, "kg"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/varg/front.svg",
  12380. extra: 1108 / 1018,
  12381. bottom: 0.0375
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Normal",
  12388. height: math.unit(5, "meters")
  12389. },
  12390. {
  12391. name: "Macro",
  12392. height: math.unit(200, "meters")
  12393. },
  12394. {
  12395. name: "Megamacro",
  12396. height: math.unit(20, "kilometers")
  12397. },
  12398. {
  12399. name: "True Size",
  12400. height: math.unit(211, "km"),
  12401. default: true
  12402. },
  12403. {
  12404. name: "Gigamacro",
  12405. height: math.unit(1000, "km")
  12406. },
  12407. {
  12408. name: "Gigamacro+",
  12409. height: math.unit(8000, "km")
  12410. },
  12411. {
  12412. name: "Teramacro",
  12413. height: math.unit(1000000, "km")
  12414. },
  12415. ]
  12416. ))
  12417. characterMakers.push(() => makeCharacter(
  12418. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12419. {
  12420. front: {
  12421. height: math.unit(7 + 7 / 12, "feet"),
  12422. weight: math.unit(267, "lb"),
  12423. name: "Front",
  12424. image: {
  12425. source: "./media/characters/dayza/front.svg",
  12426. extra: 1262 / 1200,
  12427. bottom: 0.035
  12428. }
  12429. },
  12430. side: {
  12431. height: math.unit(7 + 7 / 12, "feet"),
  12432. weight: math.unit(267, "lb"),
  12433. name: "Side",
  12434. image: {
  12435. source: "./media/characters/dayza/side.svg",
  12436. extra: 1295 / 1245,
  12437. bottom: 0.05
  12438. }
  12439. },
  12440. back: {
  12441. height: math.unit(7 + 7 / 12, "feet"),
  12442. weight: math.unit(267, "lb"),
  12443. name: "Back",
  12444. image: {
  12445. source: "./media/characters/dayza/back.svg",
  12446. extra: 1241 / 1170
  12447. }
  12448. },
  12449. },
  12450. [
  12451. {
  12452. name: "Normal",
  12453. height: math.unit(7 + 7 / 12, "feet"),
  12454. default: true
  12455. },
  12456. {
  12457. name: "Macro",
  12458. height: math.unit(155, "feet")
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12464. {
  12465. front: {
  12466. height: math.unit(6 + 5 / 12, "feet"),
  12467. weight: math.unit(160, "lb"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/xanthos/front.svg",
  12471. extra: 1,
  12472. bottom: 0.04
  12473. }
  12474. },
  12475. back: {
  12476. height: math.unit(6 + 5 / 12, "feet"),
  12477. weight: math.unit(160, "lb"),
  12478. name: "Back",
  12479. image: {
  12480. source: "./media/characters/xanthos/back.svg",
  12481. extra: 1,
  12482. bottom: 0.03
  12483. }
  12484. },
  12485. hand: {
  12486. height: math.unit(0.928, "feet"),
  12487. name: "Hand",
  12488. image: {
  12489. source: "./media/characters/xanthos/hand.svg"
  12490. }
  12491. },
  12492. foot: {
  12493. height: math.unit(1.286, "feet"),
  12494. name: "Foot",
  12495. image: {
  12496. source: "./media/characters/xanthos/foot.svg"
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Normal",
  12503. height: math.unit(6 + 5 / 12, "feet"),
  12504. default: true
  12505. },
  12506. {
  12507. name: "Normal+",
  12508. height: math.unit(6, "meters")
  12509. },
  12510. {
  12511. name: "Macro",
  12512. height: math.unit(40, "feet")
  12513. },
  12514. {
  12515. name: "Macro+",
  12516. height: math.unit(200, "meters")
  12517. },
  12518. {
  12519. name: "Megamacro",
  12520. height: math.unit(20, "km")
  12521. },
  12522. {
  12523. name: "Megamacro+",
  12524. height: math.unit(100, "km")
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12530. {
  12531. front: {
  12532. height: math.unit(6 + 3 / 12, "feet"),
  12533. weight: math.unit(215, "lb"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/grynn/front.svg",
  12537. extra: 4627 / 4209,
  12538. bottom: 0.047
  12539. }
  12540. },
  12541. },
  12542. [
  12543. {
  12544. name: "Micro",
  12545. height: math.unit(6, "inches")
  12546. },
  12547. {
  12548. name: "Normal",
  12549. height: math.unit(6 + 3 / 12, "feet"),
  12550. default: true
  12551. },
  12552. {
  12553. name: "Big",
  12554. height: math.unit(104, "feet")
  12555. },
  12556. {
  12557. name: "Macro",
  12558. height: math.unit(944, "feet")
  12559. },
  12560. {
  12561. name: "Macro+",
  12562. height: math.unit(9480, "feet")
  12563. },
  12564. {
  12565. name: "Megamacro",
  12566. height: math.unit(78752, "feet")
  12567. },
  12568. {
  12569. name: "Megamacro+",
  12570. height: math.unit(630128, "feet")
  12571. },
  12572. {
  12573. name: "Megamacro++",
  12574. height: math.unit(3150695, "feet")
  12575. },
  12576. ]
  12577. ))
  12578. characterMakers.push(() => makeCharacter(
  12579. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12580. {
  12581. front: {
  12582. height: math.unit(7 + 5 / 12, "feet"),
  12583. weight: math.unit(450, "lb"),
  12584. name: "Front",
  12585. image: {
  12586. source: "./media/characters/mocha-aura/front.svg",
  12587. extra: 1907 / 1817,
  12588. bottom: 0.04
  12589. }
  12590. },
  12591. back: {
  12592. height: math.unit(7 + 5 / 12, "feet"),
  12593. weight: math.unit(450, "lb"),
  12594. name: "Back",
  12595. image: {
  12596. source: "./media/characters/mocha-aura/back.svg",
  12597. extra: 1900 / 1825,
  12598. bottom: 0.045
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Nano",
  12605. height: math.unit(1, "nm")
  12606. },
  12607. {
  12608. name: "Megamicro",
  12609. height: math.unit(1, "mm")
  12610. },
  12611. {
  12612. name: "Micro",
  12613. height: math.unit(3, "inches")
  12614. },
  12615. {
  12616. name: "Normal",
  12617. height: math.unit(7 + 5 / 12, "feet"),
  12618. default: true
  12619. },
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(30, "feet")
  12623. },
  12624. {
  12625. name: "Megamacro",
  12626. height: math.unit(3500, "feet")
  12627. },
  12628. {
  12629. name: "Teramacro",
  12630. height: math.unit(500000, "miles")
  12631. },
  12632. {
  12633. name: "Petamacro",
  12634. height: math.unit(50000000000000000, "parsecs")
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(6, "feet"),
  12643. weight: math.unit(150, "lb"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/ilisha-devya/front.svg",
  12647. extra: 1,
  12648. bottom: 0.175
  12649. }
  12650. },
  12651. back: {
  12652. height: math.unit(6, "feet"),
  12653. weight: math.unit(150, "lb"),
  12654. name: "Back",
  12655. image: {
  12656. source: "./media/characters/ilisha-devya/back.svg",
  12657. extra: 1,
  12658. bottom: 0.015
  12659. }
  12660. },
  12661. },
  12662. [
  12663. {
  12664. name: "Macro",
  12665. height: math.unit(500, "feet"),
  12666. default: true
  12667. },
  12668. {
  12669. name: "Megamacro",
  12670. height: math.unit(10, "miles")
  12671. },
  12672. {
  12673. name: "Gigamacro",
  12674. height: math.unit(100000, "miles")
  12675. },
  12676. {
  12677. name: "Examacro",
  12678. height: math.unit(1e9, "lightyears")
  12679. },
  12680. {
  12681. name: "Omniversal",
  12682. height: math.unit(1e33, "lightyears")
  12683. },
  12684. {
  12685. name: "Beyond Infinite",
  12686. height: math.unit(1e100, "lightyears")
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12692. {
  12693. Side: {
  12694. height: math.unit(6, "feet"),
  12695. weight: math.unit(150, "lb"),
  12696. name: "Side",
  12697. image: {
  12698. source: "./media/characters/mira/side.svg",
  12699. extra: 900 / 799,
  12700. bottom: 0.02
  12701. }
  12702. },
  12703. },
  12704. [
  12705. {
  12706. name: "Human Size",
  12707. height: math.unit(6, "feet")
  12708. },
  12709. {
  12710. name: "Macro",
  12711. height: math.unit(100, "feet"),
  12712. default: true
  12713. },
  12714. {
  12715. name: "Megamacro",
  12716. height: math.unit(10, "miles")
  12717. },
  12718. {
  12719. name: "Gigamacro",
  12720. height: math.unit(25000, "miles")
  12721. },
  12722. {
  12723. name: "Teramacro",
  12724. height: math.unit(300, "AU")
  12725. },
  12726. {
  12727. name: "Full Size",
  12728. height: math.unit(4.5e10, "lightyears")
  12729. },
  12730. ]
  12731. ))
  12732. characterMakers.push(() => makeCharacter(
  12733. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12734. {
  12735. front: {
  12736. height: math.unit(6, "feet"),
  12737. weight: math.unit(150, "lb"),
  12738. name: "Front",
  12739. image: {
  12740. source: "./media/characters/holly/front.svg",
  12741. extra: 639 / 606
  12742. }
  12743. },
  12744. back: {
  12745. height: math.unit(6, "feet"),
  12746. weight: math.unit(150, "lb"),
  12747. name: "Back",
  12748. image: {
  12749. source: "./media/characters/holly/back.svg",
  12750. extra: 623 / 598
  12751. }
  12752. },
  12753. frontWorking: {
  12754. height: math.unit(6, "feet"),
  12755. weight: math.unit(150, "lb"),
  12756. name: "Front (Working)",
  12757. image: {
  12758. source: "./media/characters/holly/front-working.svg",
  12759. extra: 607 / 577,
  12760. bottom: 0.048
  12761. }
  12762. },
  12763. },
  12764. [
  12765. {
  12766. name: "Normal",
  12767. height: math.unit(12 + 3 / 12, "feet"),
  12768. default: true
  12769. },
  12770. ]
  12771. ))
  12772. characterMakers.push(() => makeCharacter(
  12773. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12774. {
  12775. front: {
  12776. height: math.unit(6, "feet"),
  12777. weight: math.unit(150, "lb"),
  12778. name: "Front",
  12779. image: {
  12780. source: "./media/characters/porter/front.svg",
  12781. extra: 1,
  12782. bottom: 0.01
  12783. }
  12784. },
  12785. frontRobes: {
  12786. height: math.unit(6, "feet"),
  12787. weight: math.unit(150, "lb"),
  12788. name: "Front (Robes)",
  12789. image: {
  12790. source: "./media/characters/porter/front-robes.svg",
  12791. extra: 1.01,
  12792. bottom: 0.01
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Normal",
  12799. height: math.unit(11 + 9 / 12, "feet"),
  12800. default: true
  12801. },
  12802. ]
  12803. ))
  12804. characterMakers.push(() => makeCharacter(
  12805. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12806. {
  12807. legendary: {
  12808. height: math.unit(6, "feet"),
  12809. weight: math.unit(150, "lb"),
  12810. name: "Legendary",
  12811. image: {
  12812. source: "./media/characters/lucy/legendary.svg",
  12813. extra: 1355 / 1100,
  12814. bottom: 0.045
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Legendary",
  12821. height: math.unit(86882 * 2, "miles"),
  12822. default: true
  12823. },
  12824. ]
  12825. ))
  12826. characterMakers.push(() => makeCharacter(
  12827. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12828. {
  12829. front: {
  12830. height: math.unit(6, "feet"),
  12831. weight: math.unit(150, "lb"),
  12832. name: "Front",
  12833. image: {
  12834. source: "./media/characters/drusilla/front.svg",
  12835. extra: 678 / 635,
  12836. bottom: 0.03
  12837. }
  12838. },
  12839. back: {
  12840. height: math.unit(6, "feet"),
  12841. weight: math.unit(150, "lb"),
  12842. name: "Back",
  12843. image: {
  12844. source: "./media/characters/drusilla/back.svg",
  12845. extra: 678 / 635,
  12846. bottom: 0.005
  12847. }
  12848. },
  12849. },
  12850. [
  12851. {
  12852. name: "Macro",
  12853. height: math.unit(100, "feet")
  12854. },
  12855. {
  12856. name: "Canon Height",
  12857. height: math.unit(2000, "feet"),
  12858. default: true
  12859. },
  12860. ]
  12861. ))
  12862. characterMakers.push(() => makeCharacter(
  12863. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12864. {
  12865. front: {
  12866. height: math.unit(6, "feet"),
  12867. weight: math.unit(180, "lb"),
  12868. name: "Front",
  12869. image: {
  12870. source: "./media/characters/renard-thatch/front.svg",
  12871. extra: 2411 / 2275,
  12872. bottom: 0.01
  12873. }
  12874. },
  12875. frontPosing: {
  12876. height: math.unit(6, "feet"),
  12877. weight: math.unit(180, "lb"),
  12878. name: "Front (Posing)",
  12879. image: {
  12880. source: "./media/characters/renard-thatch/front-posing.svg",
  12881. extra: 2381 / 2261,
  12882. bottom: 0.01
  12883. }
  12884. },
  12885. back: {
  12886. height: math.unit(6, "feet"),
  12887. weight: math.unit(180, "lb"),
  12888. name: "Back",
  12889. image: {
  12890. source: "./media/characters/renard-thatch/back.svg",
  12891. extra: 2428 / 2288
  12892. }
  12893. },
  12894. },
  12895. [
  12896. {
  12897. name: "Micro",
  12898. height: math.unit(3, "inches")
  12899. },
  12900. {
  12901. name: "Default",
  12902. height: math.unit(6, "feet"),
  12903. default: true
  12904. },
  12905. {
  12906. name: "Macro",
  12907. height: math.unit(75, "feet")
  12908. },
  12909. ]
  12910. ))
  12911. characterMakers.push(() => makeCharacter(
  12912. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12913. {
  12914. front: {
  12915. height: math.unit(1450, "feet"),
  12916. weight: math.unit(1.21e6, "tons"),
  12917. name: "Front",
  12918. image: {
  12919. source: "./media/characters/sekvra/front.svg",
  12920. extra: 1,
  12921. bottom: 0.03
  12922. }
  12923. },
  12924. frontClothed: {
  12925. height: math.unit(1450, "feet"),
  12926. weight: math.unit(1.21e6, "tons"),
  12927. name: "Front (Clothed)",
  12928. image: {
  12929. source: "./media/characters/sekvra/front-clothed.svg",
  12930. extra: 1,
  12931. bottom: 0.03
  12932. }
  12933. },
  12934. side: {
  12935. height: math.unit(1450, "feet"),
  12936. weight: math.unit(1.21e6, "tons"),
  12937. name: "Side",
  12938. image: {
  12939. source: "./media/characters/sekvra/side.svg",
  12940. extra: 1,
  12941. bottom: 0.025
  12942. }
  12943. },
  12944. back: {
  12945. height: math.unit(1450, "feet"),
  12946. weight: math.unit(1.21e6, "tons"),
  12947. name: "Back",
  12948. image: {
  12949. source: "./media/characters/sekvra/back.svg",
  12950. extra: 1,
  12951. bottom: 0.005
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Macro",
  12958. height: math.unit(1450, "feet"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Megamacro",
  12963. height: math.unit(15000, "feet")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12969. {
  12970. front: {
  12971. height: math.unit(6, "feet"),
  12972. weight: math.unit(150, "lb"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/carmine/front.svg",
  12976. extra: 1,
  12977. bottom: 0.035
  12978. }
  12979. },
  12980. frontArmor: {
  12981. height: math.unit(6, "feet"),
  12982. weight: math.unit(150, "lb"),
  12983. name: "Front (Armor)",
  12984. image: {
  12985. source: "./media/characters/carmine/front-armor.svg",
  12986. extra: 1,
  12987. bottom: 0.035
  12988. }
  12989. },
  12990. },
  12991. [
  12992. {
  12993. name: "Large",
  12994. height: math.unit(1, "mile")
  12995. },
  12996. {
  12997. name: "Huge",
  12998. height: math.unit(40, "miles"),
  12999. default: true
  13000. },
  13001. {
  13002. name: "Colossal",
  13003. height: math.unit(2500, "miles")
  13004. },
  13005. ]
  13006. ))
  13007. characterMakers.push(() => makeCharacter(
  13008. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13009. {
  13010. front: {
  13011. height: math.unit(6, "feet"),
  13012. weight: math.unit(150, "lb"),
  13013. name: "Front",
  13014. image: {
  13015. source: "./media/characters/elyssia/front.svg",
  13016. extra: 2201 / 2035,
  13017. bottom: 0.05
  13018. }
  13019. },
  13020. frontClothed: {
  13021. height: math.unit(6, "feet"),
  13022. weight: math.unit(150, "lb"),
  13023. name: "Front (Clothed)",
  13024. image: {
  13025. source: "./media/characters/elyssia/front-clothed.svg",
  13026. extra: 2201 / 2035,
  13027. bottom: 0.05
  13028. }
  13029. },
  13030. back: {
  13031. height: math.unit(6, "feet"),
  13032. weight: math.unit(150, "lb"),
  13033. name: "Back",
  13034. image: {
  13035. source: "./media/characters/elyssia/back.svg",
  13036. extra: 2201 / 2035,
  13037. bottom: 0.013
  13038. }
  13039. },
  13040. },
  13041. [
  13042. {
  13043. name: "Smaller",
  13044. height: math.unit(150, "feet")
  13045. },
  13046. {
  13047. name: "Standard",
  13048. height: math.unit(1400, "feet"),
  13049. default: true
  13050. },
  13051. {
  13052. name: "Distracted",
  13053. height: math.unit(15000, "feet")
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13059. {
  13060. front: {
  13061. height: math.unit(7 + 4 / 12, "feet"),
  13062. weight: math.unit(500, "lb"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/geno-maxwell/front.svg",
  13066. extra: 2207 / 2040,
  13067. bottom: 0.015
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Micro",
  13074. height: math.unit(3, "inches")
  13075. },
  13076. {
  13077. name: "Normal",
  13078. height: math.unit(7 + 4 / 12, "feet"),
  13079. default: true
  13080. },
  13081. {
  13082. name: "Macro",
  13083. height: math.unit(220, "feet")
  13084. },
  13085. {
  13086. name: "Megamacro",
  13087. height: math.unit(11, "miles")
  13088. },
  13089. ]
  13090. ))
  13091. characterMakers.push(() => makeCharacter(
  13092. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13093. {
  13094. front: {
  13095. height: math.unit(7 + 4 / 12, "feet"),
  13096. weight: math.unit(500, "lb"),
  13097. name: "Front",
  13098. image: {
  13099. source: "./media/characters/regena-maxwell/front.svg",
  13100. extra: 3115 / 2770,
  13101. bottom: 0.02
  13102. }
  13103. },
  13104. },
  13105. [
  13106. {
  13107. name: "Normal",
  13108. height: math.unit(7 + 4 / 12, "feet"),
  13109. default: true
  13110. },
  13111. {
  13112. name: "Macro",
  13113. height: math.unit(220, "feet")
  13114. },
  13115. {
  13116. name: "Megamacro",
  13117. height: math.unit(11, "miles")
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13123. {
  13124. front: {
  13125. height: math.unit(6, "feet"),
  13126. weight: math.unit(150, "lb"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13130. extra: 860 / 690,
  13131. bottom: 0.03
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Normal",
  13138. height: math.unit(1.7, "meters"),
  13139. default: true
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13145. {
  13146. front: {
  13147. height: math.unit(6, "feet"),
  13148. weight: math.unit(150, "lb"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/quilly/front.svg",
  13152. extra: 890 / 776
  13153. }
  13154. },
  13155. },
  13156. [
  13157. {
  13158. name: "Gigamacro",
  13159. height: math.unit(404090, "miles"),
  13160. default: true
  13161. },
  13162. ]
  13163. ))
  13164. characterMakers.push(() => makeCharacter(
  13165. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13166. {
  13167. front: {
  13168. height: math.unit(7 + 8 / 12, "feet"),
  13169. weight: math.unit(350, "lb"),
  13170. name: "Front",
  13171. image: {
  13172. source: "./media/characters/tempest/front.svg",
  13173. extra: 1175 / 1086,
  13174. bottom: 0.02
  13175. }
  13176. },
  13177. },
  13178. [
  13179. {
  13180. name: "Normal",
  13181. height: math.unit(7 + 8 / 12, "feet"),
  13182. default: true
  13183. },
  13184. ]
  13185. ))
  13186. characterMakers.push(() => makeCharacter(
  13187. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13188. {
  13189. side: {
  13190. height: math.unit(4 + 5 / 12, "feet"),
  13191. weight: math.unit(80, "lb"),
  13192. name: "Side",
  13193. image: {
  13194. source: "./media/characters/rodger/side.svg",
  13195. extra: 1235 / 1118
  13196. }
  13197. },
  13198. },
  13199. [
  13200. {
  13201. name: "Micro",
  13202. height: math.unit(1, "inch")
  13203. },
  13204. {
  13205. name: "Normal",
  13206. height: math.unit(4 + 5 / 12, "feet"),
  13207. default: true
  13208. },
  13209. {
  13210. name: "Macro",
  13211. height: math.unit(120, "feet")
  13212. },
  13213. ]
  13214. ))
  13215. characterMakers.push(() => makeCharacter(
  13216. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13217. {
  13218. front: {
  13219. height: math.unit(6, "feet"),
  13220. weight: math.unit(150, "lb"),
  13221. name: "Front",
  13222. image: {
  13223. source: "./media/characters/danyel/front.svg",
  13224. extra: 1185 / 1123,
  13225. bottom: 0.05
  13226. }
  13227. },
  13228. },
  13229. [
  13230. {
  13231. name: "Shrunken",
  13232. height: math.unit(0.5, "mm")
  13233. },
  13234. {
  13235. name: "Micro",
  13236. height: math.unit(1, "mm"),
  13237. default: true
  13238. },
  13239. {
  13240. name: "Upsized",
  13241. height: math.unit(5 + 5 / 12, "feet")
  13242. },
  13243. ]
  13244. ))
  13245. characterMakers.push(() => makeCharacter(
  13246. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13247. {
  13248. front: {
  13249. height: math.unit(5 + 6 / 12, "feet"),
  13250. weight: math.unit(200, "lb"),
  13251. name: "Front",
  13252. image: {
  13253. source: "./media/characters/vivian-bijoux/front.svg",
  13254. extra: 1,
  13255. bottom: 0.072
  13256. }
  13257. },
  13258. },
  13259. [
  13260. {
  13261. name: "Normal",
  13262. height: math.unit(5 + 6 / 12, "feet"),
  13263. default: true
  13264. },
  13265. {
  13266. name: "Bad Dream",
  13267. height: math.unit(500, "feet")
  13268. },
  13269. {
  13270. name: "Nightmare",
  13271. height: math.unit(500, "miles")
  13272. },
  13273. ]
  13274. ))
  13275. characterMakers.push(() => makeCharacter(
  13276. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13277. {
  13278. front: {
  13279. height: math.unit(6 + 1 / 12, "feet"),
  13280. weight: math.unit(260, "lb"),
  13281. name: "Front",
  13282. image: {
  13283. source: "./media/characters/zeta/front.svg",
  13284. extra: 1968 / 1889,
  13285. bottom: 0.06
  13286. }
  13287. },
  13288. back: {
  13289. height: math.unit(6 + 1 / 12, "feet"),
  13290. weight: math.unit(260, "lb"),
  13291. name: "Back",
  13292. image: {
  13293. source: "./media/characters/zeta/back.svg",
  13294. extra: 1944 / 1858,
  13295. bottom: 0.03
  13296. }
  13297. },
  13298. hand: {
  13299. height: math.unit(1.112, "feet"),
  13300. name: "Hand",
  13301. image: {
  13302. source: "./media/characters/zeta/hand.svg"
  13303. }
  13304. },
  13305. foot: {
  13306. height: math.unit(1.48, "feet"),
  13307. name: "Foot",
  13308. image: {
  13309. source: "./media/characters/zeta/foot.svg"
  13310. }
  13311. },
  13312. },
  13313. [
  13314. {
  13315. name: "Micro",
  13316. height: math.unit(6, "inches")
  13317. },
  13318. {
  13319. name: "Normal",
  13320. height: math.unit(6 + 1 / 12, "feet"),
  13321. default: true
  13322. },
  13323. {
  13324. name: "Macro",
  13325. height: math.unit(20, "feet")
  13326. },
  13327. ]
  13328. ))
  13329. characterMakers.push(() => makeCharacter(
  13330. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13331. {
  13332. front: {
  13333. height: math.unit(6, "feet"),
  13334. weight: math.unit(150, "lb"),
  13335. name: "Front",
  13336. image: {
  13337. source: "./media/characters/jamie-larsen/front.svg",
  13338. extra: 962 / 933,
  13339. bottom: 0.02
  13340. }
  13341. },
  13342. back: {
  13343. height: math.unit(6, "feet"),
  13344. weight: math.unit(150, "lb"),
  13345. name: "Back",
  13346. image: {
  13347. source: "./media/characters/jamie-larsen/back.svg",
  13348. extra: 997 / 946
  13349. }
  13350. },
  13351. },
  13352. [
  13353. {
  13354. name: "Macro",
  13355. height: math.unit(28 + 7 / 12, "feet"),
  13356. default: true
  13357. },
  13358. {
  13359. name: "Macro+",
  13360. height: math.unit(180, "feet")
  13361. },
  13362. {
  13363. name: "Megamacro",
  13364. height: math.unit(10, "miles")
  13365. },
  13366. {
  13367. name: "Gigamacro",
  13368. height: math.unit(200000, "miles")
  13369. },
  13370. ]
  13371. ))
  13372. characterMakers.push(() => makeCharacter(
  13373. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13374. {
  13375. front: {
  13376. height: math.unit(6, "feet"),
  13377. weight: math.unit(120, "lb"),
  13378. name: "Front",
  13379. image: {
  13380. source: "./media/characters/vance/front.svg",
  13381. extra: 1980 / 1890,
  13382. bottom: 0.09
  13383. }
  13384. },
  13385. back: {
  13386. height: math.unit(6, "feet"),
  13387. weight: math.unit(120, "lb"),
  13388. name: "Back",
  13389. image: {
  13390. source: "./media/characters/vance/back.svg",
  13391. extra: 2081 / 1994,
  13392. bottom: 0.014
  13393. }
  13394. },
  13395. hand: {
  13396. height: math.unit(0.88, "feet"),
  13397. name: "Hand",
  13398. image: {
  13399. source: "./media/characters/vance/hand.svg"
  13400. }
  13401. },
  13402. foot: {
  13403. height: math.unit(0.64, "feet"),
  13404. name: "Foot",
  13405. image: {
  13406. source: "./media/characters/vance/foot.svg"
  13407. }
  13408. },
  13409. },
  13410. [
  13411. {
  13412. name: "Small",
  13413. height: math.unit(90, "feet"),
  13414. default: true
  13415. },
  13416. {
  13417. name: "Macro",
  13418. height: math.unit(100, "meters")
  13419. },
  13420. {
  13421. name: "Megamacro",
  13422. height: math.unit(15, "miles")
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(6, "feet"),
  13431. weight: math.unit(180, "lb"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/xochitl/front.svg",
  13435. extra: 2297 / 2261,
  13436. bottom: 0.065
  13437. }
  13438. },
  13439. back: {
  13440. height: math.unit(6, "feet"),
  13441. weight: math.unit(180, "lb"),
  13442. name: "Back",
  13443. image: {
  13444. source: "./media/characters/xochitl/back.svg",
  13445. extra: 2386 / 2354,
  13446. bottom: 0.01
  13447. }
  13448. },
  13449. foot: {
  13450. height: math.unit(6 / 5 * 1.15, "feet"),
  13451. weight: math.unit(150, "lb"),
  13452. name: "Foot",
  13453. image: {
  13454. source: "./media/characters/xochitl/foot.svg"
  13455. }
  13456. },
  13457. },
  13458. [
  13459. {
  13460. name: "Macro",
  13461. height: math.unit(80, "feet")
  13462. },
  13463. {
  13464. name: "Macro+",
  13465. height: math.unit(400, "feet"),
  13466. default: true
  13467. },
  13468. {
  13469. name: "Gigamacro",
  13470. height: math.unit(80000, "miles")
  13471. },
  13472. {
  13473. name: "Gigamacro+",
  13474. height: math.unit(400000, "miles")
  13475. },
  13476. {
  13477. name: "Teramacro",
  13478. height: math.unit(300, "AU")
  13479. },
  13480. ]
  13481. ))
  13482. characterMakers.push(() => makeCharacter(
  13483. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13484. {
  13485. front: {
  13486. height: math.unit(6, "feet"),
  13487. weight: math.unit(150, "lb"),
  13488. name: "Front",
  13489. image: {
  13490. source: "./media/characters/vincent/front.svg",
  13491. extra: 1130 / 1080,
  13492. bottom: 0.055
  13493. }
  13494. },
  13495. beak: {
  13496. height: math.unit(6 * 0.1, "feet"),
  13497. name: "Beak",
  13498. image: {
  13499. source: "./media/characters/vincent/beak.svg"
  13500. }
  13501. },
  13502. hand: {
  13503. height: math.unit(6 * 0.85, "feet"),
  13504. weight: math.unit(150, "lb"),
  13505. name: "Hand",
  13506. image: {
  13507. source: "./media/characters/vincent/hand.svg"
  13508. }
  13509. },
  13510. foot: {
  13511. height: math.unit(6 * 0.19, "feet"),
  13512. weight: math.unit(150, "lb"),
  13513. name: "Foot",
  13514. image: {
  13515. source: "./media/characters/vincent/foot.svg"
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Base",
  13522. height: math.unit(6 + 5 / 12, "feet"),
  13523. default: true
  13524. },
  13525. {
  13526. name: "Macro",
  13527. height: math.unit(300, "feet")
  13528. },
  13529. {
  13530. name: "Megamacro",
  13531. height: math.unit(2, "miles")
  13532. },
  13533. {
  13534. name: "Gigamacro",
  13535. height: math.unit(1000, "miles")
  13536. },
  13537. ]
  13538. ))
  13539. characterMakers.push(() => makeCharacter(
  13540. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13541. {
  13542. front: {
  13543. height: math.unit(2, "meters"),
  13544. weight: math.unit(500, "kg"),
  13545. name: "Front",
  13546. image: {
  13547. source: "./media/characters/coatl/front.svg",
  13548. extra: 3948 / 3500,
  13549. bottom: 0.082
  13550. }
  13551. },
  13552. },
  13553. [
  13554. {
  13555. name: "Normal",
  13556. height: math.unit(4, "meters")
  13557. },
  13558. {
  13559. name: "Macro",
  13560. height: math.unit(100, "meters"),
  13561. default: true
  13562. },
  13563. {
  13564. name: "Macro+",
  13565. height: math.unit(300, "meters")
  13566. },
  13567. {
  13568. name: "Megamacro",
  13569. height: math.unit(3, "gigameters")
  13570. },
  13571. {
  13572. name: "Megamacro+",
  13573. height: math.unit(300, "terameters")
  13574. },
  13575. {
  13576. name: "Megamacro++",
  13577. height: math.unit(3, "lightyears")
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13583. {
  13584. front: {
  13585. height: math.unit(6, "feet"),
  13586. weight: math.unit(50, "kg"),
  13587. name: "front",
  13588. image: {
  13589. source: "./media/characters/shiroryu/front.svg",
  13590. extra: 1990 / 1935
  13591. }
  13592. },
  13593. },
  13594. [
  13595. {
  13596. name: "Mortal Mingling",
  13597. height: math.unit(3, "meters")
  13598. },
  13599. {
  13600. name: "Kaiju-ish",
  13601. height: math.unit(250, "meters")
  13602. },
  13603. {
  13604. name: "Somewhat Godly",
  13605. height: math.unit(400, "km"),
  13606. default: true
  13607. },
  13608. {
  13609. name: "Planetary",
  13610. height: math.unit(300, "megameters")
  13611. },
  13612. {
  13613. name: "Galaxy-dwarfing",
  13614. height: math.unit(450, "kiloparsecs")
  13615. },
  13616. {
  13617. name: "Universe Eater",
  13618. height: math.unit(150, "gigaparsecs")
  13619. },
  13620. {
  13621. name: "Almost Immeasurable",
  13622. height: math.unit(1.3e266, "yottaparsecs")
  13623. },
  13624. ]
  13625. ))
  13626. characterMakers.push(() => makeCharacter(
  13627. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13628. {
  13629. front: {
  13630. height: math.unit(6, "feet"),
  13631. weight: math.unit(150, "lb"),
  13632. name: "Front",
  13633. image: {
  13634. source: "./media/characters/umeko/front.svg",
  13635. extra: 1,
  13636. bottom: 0.019
  13637. }
  13638. },
  13639. frontArmored: {
  13640. height: math.unit(6, "feet"),
  13641. weight: math.unit(150, "lb"),
  13642. name: "Front (Armored)",
  13643. image: {
  13644. source: "./media/characters/umeko/front-armored.svg",
  13645. extra: 1,
  13646. bottom: 0.021
  13647. }
  13648. },
  13649. },
  13650. [
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(220, "feet"),
  13654. default: true
  13655. },
  13656. {
  13657. name: "Guardian Dragon",
  13658. height: math.unit(50, "miles")
  13659. },
  13660. {
  13661. name: "Cosmic",
  13662. height: math.unit(800000, "miles")
  13663. },
  13664. ]
  13665. ))
  13666. characterMakers.push(() => makeCharacter(
  13667. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13668. {
  13669. front: {
  13670. height: math.unit(6, "feet"),
  13671. weight: math.unit(150, "lb"),
  13672. name: "Front",
  13673. image: {
  13674. source: "./media/characters/cassidy/front.svg",
  13675. extra: 1,
  13676. bottom: 0.043
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Canon Height",
  13683. height: math.unit(120, "feet"),
  13684. default: true
  13685. },
  13686. {
  13687. name: "Macro+",
  13688. height: math.unit(400, "feet")
  13689. },
  13690. {
  13691. name: "Macro++",
  13692. height: math.unit(4000, "feet")
  13693. },
  13694. {
  13695. name: "Megamacro",
  13696. height: math.unit(3, "miles")
  13697. },
  13698. ]
  13699. ))
  13700. characterMakers.push(() => makeCharacter(
  13701. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13702. {
  13703. front: {
  13704. height: math.unit(6, "feet"),
  13705. weight: math.unit(150, "lb"),
  13706. name: "Front",
  13707. image: {
  13708. source: "./media/characters/isaac/front.svg",
  13709. extra: 896 / 815,
  13710. bottom: 0.11
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Human Size",
  13717. height: math.unit(8, "feet"),
  13718. default: true
  13719. },
  13720. {
  13721. name: "Macro",
  13722. height: math.unit(400, "feet")
  13723. },
  13724. {
  13725. name: "Megamacro",
  13726. height: math.unit(50, "miles")
  13727. },
  13728. {
  13729. name: "Canon Height",
  13730. height: math.unit(200, "AU")
  13731. },
  13732. ]
  13733. ))
  13734. characterMakers.push(() => makeCharacter(
  13735. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13736. {
  13737. front: {
  13738. height: math.unit(6, "feet"),
  13739. weight: math.unit(72, "kg"),
  13740. name: "Front",
  13741. image: {
  13742. source: "./media/characters/sleekit/front.svg",
  13743. extra: 4693 / 4487,
  13744. bottom: 0.012
  13745. }
  13746. },
  13747. },
  13748. [
  13749. {
  13750. name: "Minimum Height",
  13751. height: math.unit(10, "meters")
  13752. },
  13753. {
  13754. name: "Smaller",
  13755. height: math.unit(25, "meters")
  13756. },
  13757. {
  13758. name: "Larger",
  13759. height: math.unit(38, "meters"),
  13760. default: true
  13761. },
  13762. {
  13763. name: "Maximum height",
  13764. height: math.unit(100, "meters")
  13765. },
  13766. ]
  13767. ))
  13768. characterMakers.push(() => makeCharacter(
  13769. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13770. {
  13771. front: {
  13772. height: math.unit(6, "feet"),
  13773. weight: math.unit(150, "lb"),
  13774. name: "Front",
  13775. image: {
  13776. source: "./media/characters/nillia/front.svg",
  13777. extra: 2195 / 2037,
  13778. bottom: 0.005
  13779. }
  13780. },
  13781. back: {
  13782. height: math.unit(6, "feet"),
  13783. weight: math.unit(150, "lb"),
  13784. name: "Back",
  13785. image: {
  13786. source: "./media/characters/nillia/back.svg",
  13787. extra: 2195 / 2037,
  13788. bottom: 0.005
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Canon Height",
  13795. height: math.unit(489, "feet"),
  13796. default: true
  13797. }
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13802. {
  13803. front: {
  13804. height: math.unit(6, "feet"),
  13805. weight: math.unit(150, "lb"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/mesmyriza/front.svg",
  13809. extra: 2067 / 1784,
  13810. bottom: 0.035
  13811. }
  13812. },
  13813. foot: {
  13814. height: math.unit(6 / (250 / 35), "feet"),
  13815. name: "Foot",
  13816. image: {
  13817. source: "./media/characters/mesmyriza/foot.svg"
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Macro",
  13824. height: math.unit(457, "meters"),
  13825. default: true
  13826. },
  13827. {
  13828. name: "Megamacro",
  13829. height: math.unit(8, "megameters")
  13830. },
  13831. ]
  13832. ))
  13833. characterMakers.push(() => makeCharacter(
  13834. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13835. {
  13836. front: {
  13837. height: math.unit(6, "feet"),
  13838. weight: math.unit(250, "lb"),
  13839. name: "Front",
  13840. image: {
  13841. source: "./media/characters/saudade/front.svg",
  13842. extra: 1172 / 1139,
  13843. bottom: 0.035
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "Micro",
  13850. height: math.unit(3, "inches")
  13851. },
  13852. {
  13853. name: "Normal",
  13854. height: math.unit(6, "feet"),
  13855. default: true
  13856. },
  13857. {
  13858. name: "Macro",
  13859. height: math.unit(50, "feet")
  13860. },
  13861. {
  13862. name: "Megamacro",
  13863. height: math.unit(2800, "feet")
  13864. },
  13865. ]
  13866. ))
  13867. characterMakers.push(() => makeCharacter(
  13868. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13869. {
  13870. front: {
  13871. height: math.unit(5 + 4 / 12, "feet"),
  13872. weight: math.unit(100, "lb"),
  13873. name: "Front",
  13874. image: {
  13875. source: "./media/characters/keireer/front.svg",
  13876. extra: 716 / 666,
  13877. bottom: 0.05
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Normal",
  13884. height: math.unit(5 + 4 / 12, "feet"),
  13885. default: true
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(90, "kg"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/mirja/front.svg",
  13898. extra: 1789 / 1683,
  13899. bottom: 0.05
  13900. }
  13901. },
  13902. frontDressed: {
  13903. height: math.unit(6, "feet"),
  13904. weight: math.unit(90, "lb"),
  13905. name: "Front (Dressed)",
  13906. image: {
  13907. source: "./media/characters/mirja/front-dressed.svg",
  13908. extra: 1789 / 1683,
  13909. bottom: 0.05
  13910. }
  13911. },
  13912. back: {
  13913. height: math.unit(6, "feet"),
  13914. weight: math.unit(90, "lb"),
  13915. name: "Back",
  13916. image: {
  13917. source: "./media/characters/mirja/back.svg",
  13918. extra: 953 / 917,
  13919. bottom: 0.017
  13920. }
  13921. },
  13922. },
  13923. [
  13924. {
  13925. name: "\"Incognito\"",
  13926. height: math.unit(3, "meters")
  13927. },
  13928. {
  13929. name: "Strolling Size",
  13930. height: math.unit(15, "km")
  13931. },
  13932. {
  13933. name: "Larger Strolling Size",
  13934. height: math.unit(400, "km")
  13935. },
  13936. {
  13937. name: "Preferred Size",
  13938. height: math.unit(5000, "km")
  13939. },
  13940. {
  13941. name: "True Size",
  13942. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13943. default: true
  13944. },
  13945. ]
  13946. ))
  13947. characterMakers.push(() => makeCharacter(
  13948. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13949. {
  13950. front: {
  13951. height: math.unit(15, "feet"),
  13952. weight: math.unit(880, "kg"),
  13953. name: "Front",
  13954. image: {
  13955. source: "./media/characters/nightraver/front.svg",
  13956. extra: 2444 / 2160,
  13957. bottom: 0.027
  13958. }
  13959. },
  13960. back: {
  13961. height: math.unit(15, "feet"),
  13962. weight: math.unit(880, "kg"),
  13963. name: "Back",
  13964. image: {
  13965. source: "./media/characters/nightraver/back.svg",
  13966. extra: 2309 / 2180,
  13967. bottom: 0.005
  13968. }
  13969. },
  13970. sole: {
  13971. height: math.unit(2.878, "feet"),
  13972. name: "Sole",
  13973. image: {
  13974. source: "./media/characters/nightraver/sole.svg"
  13975. }
  13976. },
  13977. foot: {
  13978. height: math.unit(2.285, "feet"),
  13979. name: "Foot",
  13980. image: {
  13981. source: "./media/characters/nightraver/foot.svg"
  13982. }
  13983. },
  13984. maw: {
  13985. height: math.unit(2.67, "feet"),
  13986. name: "Maw",
  13987. image: {
  13988. source: "./media/characters/nightraver/maw.svg"
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Micro",
  13995. height: math.unit(1, "cm")
  13996. },
  13997. {
  13998. name: "Normal",
  13999. height: math.unit(15, "feet"),
  14000. default: true
  14001. },
  14002. {
  14003. name: "Macro",
  14004. height: math.unit(300, "feet")
  14005. },
  14006. {
  14007. name: "Megamacro",
  14008. height: math.unit(300, "miles")
  14009. },
  14010. {
  14011. name: "Gigamacro",
  14012. height: math.unit(10000, "miles")
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14018. {
  14019. side: {
  14020. height: math.unit(2, "inches"),
  14021. weight: math.unit(5, "grams"),
  14022. name: "Side",
  14023. image: {
  14024. source: "./media/characters/arc/side.svg"
  14025. }
  14026. },
  14027. },
  14028. [
  14029. {
  14030. name: "Micro",
  14031. height: math.unit(2, "inches"),
  14032. default: true
  14033. },
  14034. ]
  14035. ))
  14036. characterMakers.push(() => makeCharacter(
  14037. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14038. {
  14039. front: {
  14040. height: math.unit(1.1938, "meters"),
  14041. weight: math.unit(54, "kg"),
  14042. name: "Front",
  14043. image: {
  14044. source: "./media/characters/nebula-shahar/front.svg",
  14045. extra: 1642 / 1436,
  14046. bottom: 0.06
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Megamicro",
  14053. height: math.unit(0.3, "mm")
  14054. },
  14055. {
  14056. name: "Micro",
  14057. height: math.unit(3, "cm")
  14058. },
  14059. {
  14060. name: "Normal",
  14061. height: math.unit(138, "cm"),
  14062. default: true
  14063. },
  14064. {
  14065. name: "Macro",
  14066. height: math.unit(30, "m")
  14067. },
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(5.24, "feet"),
  14075. weight: math.unit(150, "lb"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/shayla/front.svg",
  14079. extra: 1512 / 1414,
  14080. bottom: 0.01
  14081. }
  14082. },
  14083. back: {
  14084. height: math.unit(5.24, "feet"),
  14085. weight: math.unit(150, "lb"),
  14086. name: "Back",
  14087. image: {
  14088. source: "./media/characters/shayla/back.svg",
  14089. extra: 1512 / 1414
  14090. }
  14091. },
  14092. hand: {
  14093. height: math.unit(0.7781496062992126, "feet"),
  14094. name: "Hand",
  14095. image: {
  14096. source: "./media/characters/shayla/hand.svg"
  14097. }
  14098. },
  14099. foot: {
  14100. height: math.unit(1.4206036745406823, "feet"),
  14101. name: "Foot",
  14102. image: {
  14103. source: "./media/characters/shayla/foot.svg"
  14104. }
  14105. },
  14106. },
  14107. [
  14108. {
  14109. name: "Micro",
  14110. height: math.unit(0.32, "feet")
  14111. },
  14112. {
  14113. name: "Normal",
  14114. height: math.unit(5.24, "feet"),
  14115. default: true
  14116. },
  14117. {
  14118. name: "Macro",
  14119. height: math.unit(492.12, "feet")
  14120. },
  14121. {
  14122. name: "Megamacro",
  14123. height: math.unit(186.41, "miles")
  14124. },
  14125. ]
  14126. ))
  14127. characterMakers.push(() => makeCharacter(
  14128. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14129. {
  14130. front: {
  14131. height: math.unit(2.2, "m"),
  14132. weight: math.unit(120, "kg"),
  14133. name: "Front",
  14134. image: {
  14135. source: "./media/characters/pia-jr/front.svg",
  14136. extra: 1000 / 970,
  14137. bottom: 0.035
  14138. }
  14139. },
  14140. hand: {
  14141. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14142. name: "Hand",
  14143. image: {
  14144. source: "./media/characters/pia-jr/hand.svg"
  14145. }
  14146. },
  14147. paw: {
  14148. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14149. name: "Paw",
  14150. image: {
  14151. source: "./media/characters/pia-jr/paw.svg"
  14152. }
  14153. },
  14154. },
  14155. [
  14156. {
  14157. name: "Micro",
  14158. height: math.unit(1.2, "cm")
  14159. },
  14160. {
  14161. name: "Normal",
  14162. height: math.unit(2.2, "m"),
  14163. default: true
  14164. },
  14165. {
  14166. name: "Macro",
  14167. height: math.unit(180, "m")
  14168. },
  14169. {
  14170. name: "Megamacro",
  14171. height: math.unit(420, "km")
  14172. },
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14177. {
  14178. front: {
  14179. height: math.unit(2, "m"),
  14180. weight: math.unit(115, "kg"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/pia-sr/front.svg",
  14184. extra: 760 / 730,
  14185. bottom: 0.015
  14186. }
  14187. },
  14188. back: {
  14189. height: math.unit(2, "m"),
  14190. weight: math.unit(115, "kg"),
  14191. name: "Back",
  14192. image: {
  14193. source: "./media/characters/pia-sr/back.svg",
  14194. extra: 760 / 730,
  14195. bottom: 0.01
  14196. }
  14197. },
  14198. hand: {
  14199. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14200. name: "Hand",
  14201. image: {
  14202. source: "./media/characters/pia-sr/hand.svg"
  14203. }
  14204. },
  14205. foot: {
  14206. height: math.unit(1.83, "feet"),
  14207. name: "Foot",
  14208. image: {
  14209. source: "./media/characters/pia-sr/foot.svg"
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Micro",
  14216. height: math.unit(88, "mm")
  14217. },
  14218. {
  14219. name: "Normal",
  14220. height: math.unit(2, "m"),
  14221. default: true
  14222. },
  14223. {
  14224. name: "Macro",
  14225. height: math.unit(200, "m")
  14226. },
  14227. {
  14228. name: "Megamacro",
  14229. height: math.unit(420, "km")
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14235. {
  14236. front: {
  14237. height: math.unit(8 + 2 / 12, "feet"),
  14238. weight: math.unit(300, "lb"),
  14239. name: "Front",
  14240. image: {
  14241. source: "./media/characters/kibibyte/front.svg",
  14242. extra: 2221 / 2098,
  14243. bottom: 0.04
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Normal",
  14250. height: math.unit(8 + 2 / 12, "feet"),
  14251. default: true
  14252. },
  14253. {
  14254. name: "Socialable Macro",
  14255. height: math.unit(50, "feet")
  14256. },
  14257. {
  14258. name: "Macro",
  14259. height: math.unit(300, "feet")
  14260. },
  14261. {
  14262. name: "Megamacro",
  14263. height: math.unit(500, "miles")
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14269. {
  14270. front: {
  14271. height: math.unit(6, "feet"),
  14272. weight: math.unit(150, "lb"),
  14273. name: "Front",
  14274. image: {
  14275. source: "./media/characters/felix/front.svg",
  14276. extra: 762 / 722,
  14277. bottom: 0.02
  14278. }
  14279. },
  14280. frontClothed: {
  14281. height: math.unit(6, "feet"),
  14282. weight: math.unit(150, "lb"),
  14283. name: "Front (Clothed)",
  14284. image: {
  14285. source: "./media/characters/felix/front-clothed.svg",
  14286. extra: 762 / 722,
  14287. bottom: 0.02
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Normal",
  14294. height: math.unit(6 + 8 / 12, "feet"),
  14295. default: true
  14296. },
  14297. {
  14298. name: "Macro",
  14299. height: math.unit(2600, "feet")
  14300. },
  14301. {
  14302. name: "Megamacro",
  14303. height: math.unit(450, "miles")
  14304. },
  14305. ]
  14306. ))
  14307. characterMakers.push(() => makeCharacter(
  14308. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14309. {
  14310. front: {
  14311. height: math.unit(6 + 1 / 12, "feet"),
  14312. weight: math.unit(250, "lb"),
  14313. name: "Front",
  14314. image: {
  14315. source: "./media/characters/tobo/front.svg",
  14316. extra: 608 / 586,
  14317. bottom: 0.023
  14318. }
  14319. },
  14320. back: {
  14321. height: math.unit(6 + 1 / 12, "feet"),
  14322. weight: math.unit(250, "lb"),
  14323. name: "Back",
  14324. image: {
  14325. source: "./media/characters/tobo/back.svg",
  14326. extra: 608 / 586
  14327. }
  14328. },
  14329. },
  14330. [
  14331. {
  14332. name: "Nano",
  14333. height: math.unit(2, "nm")
  14334. },
  14335. {
  14336. name: "Megamicro",
  14337. height: math.unit(0.1, "mm")
  14338. },
  14339. {
  14340. name: "Micro",
  14341. height: math.unit(1, "inch"),
  14342. default: true
  14343. },
  14344. {
  14345. name: "Human-sized",
  14346. height: math.unit(6 + 1 / 12, "feet")
  14347. },
  14348. {
  14349. name: "Macro",
  14350. height: math.unit(250, "feet")
  14351. },
  14352. {
  14353. name: "Megamacro",
  14354. height: math.unit(75, "miles")
  14355. },
  14356. {
  14357. name: "Texas-sized",
  14358. height: math.unit(750, "miles")
  14359. },
  14360. {
  14361. name: "Teramacro",
  14362. height: math.unit(50000, "miles")
  14363. },
  14364. ]
  14365. ))
  14366. characterMakers.push(() => makeCharacter(
  14367. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14368. {
  14369. front: {
  14370. height: math.unit(6, "feet"),
  14371. weight: math.unit(269, "lb"),
  14372. name: "Front",
  14373. image: {
  14374. source: "./media/characters/danny-kapowsky/front.svg",
  14375. extra: 766 / 736,
  14376. bottom: 0.044
  14377. }
  14378. },
  14379. back: {
  14380. height: math.unit(6, "feet"),
  14381. weight: math.unit(269, "lb"),
  14382. name: "Back",
  14383. image: {
  14384. source: "./media/characters/danny-kapowsky/back.svg",
  14385. extra: 797 / 760,
  14386. bottom: 0.025
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Macro",
  14393. height: math.unit(150, "feet"),
  14394. default: true
  14395. },
  14396. {
  14397. name: "Macro+",
  14398. height: math.unit(200, "feet")
  14399. },
  14400. {
  14401. name: "Macro++",
  14402. height: math.unit(300, "feet")
  14403. },
  14404. {
  14405. name: "Macro+++",
  14406. height: math.unit(400, "feet")
  14407. },
  14408. ]
  14409. ))
  14410. characterMakers.push(() => makeCharacter(
  14411. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14412. {
  14413. side: {
  14414. height: math.unit(6, "feet"),
  14415. weight: math.unit(170, "lb"),
  14416. name: "Side",
  14417. image: {
  14418. source: "./media/characters/finn/side.svg",
  14419. extra: 1953 / 1807,
  14420. bottom: 0.057
  14421. }
  14422. },
  14423. },
  14424. [
  14425. {
  14426. name: "Megamacro",
  14427. height: math.unit(14445, "feet"),
  14428. default: true
  14429. },
  14430. ]
  14431. ))
  14432. characterMakers.push(() => makeCharacter(
  14433. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14434. {
  14435. front: {
  14436. height: math.unit(5 + 6 / 12, "feet"),
  14437. weight: math.unit(125, "lb"),
  14438. name: "Front",
  14439. image: {
  14440. source: "./media/characters/roy/front.svg",
  14441. extra: 1,
  14442. bottom: 0.11
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Micro",
  14449. height: math.unit(3, "inches"),
  14450. default: true
  14451. },
  14452. {
  14453. name: "Normal",
  14454. height: math.unit(5 + 6 / 12, "feet")
  14455. },
  14456. {
  14457. name: "Lesser Macro",
  14458. height: math.unit(60, "feet")
  14459. },
  14460. {
  14461. name: "Greater Macro",
  14462. height: math.unit(120, "feet")
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14468. {
  14469. front: {
  14470. height: math.unit(6, "feet"),
  14471. weight: math.unit(100, "lb"),
  14472. name: "Front",
  14473. image: {
  14474. source: "./media/characters/aevsivs/front.svg",
  14475. extra: 1,
  14476. bottom: 0.03
  14477. }
  14478. },
  14479. back: {
  14480. height: math.unit(6, "feet"),
  14481. weight: math.unit(100, "lb"),
  14482. name: "Back",
  14483. image: {
  14484. source: "./media/characters/aevsivs/back.svg"
  14485. }
  14486. },
  14487. },
  14488. [
  14489. {
  14490. name: "Micro",
  14491. height: math.unit(2, "inches"),
  14492. default: true
  14493. },
  14494. {
  14495. name: "Normal",
  14496. height: math.unit(5, "feet")
  14497. },
  14498. ]
  14499. ))
  14500. characterMakers.push(() => makeCharacter(
  14501. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14502. {
  14503. front: {
  14504. height: math.unit(5 + 7 / 12, "feet"),
  14505. weight: math.unit(159, "lb"),
  14506. name: "Front",
  14507. image: {
  14508. source: "./media/characters/hildegard/front.svg",
  14509. extra: 289 / 269,
  14510. bottom: 7.63 / 297.8
  14511. }
  14512. },
  14513. back: {
  14514. height: math.unit(5 + 7 / 12, "feet"),
  14515. weight: math.unit(159, "lb"),
  14516. name: "Back",
  14517. image: {
  14518. source: "./media/characters/hildegard/back.svg",
  14519. extra: 280 / 260,
  14520. bottom: 2.3 / 282
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Normal",
  14527. height: math.unit(5 + 7 / 12, "feet"),
  14528. default: true
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14534. {
  14535. bernard: {
  14536. height: math.unit(2 + 7 / 12, "feet"),
  14537. weight: math.unit(66, "lb"),
  14538. name: "Bernard",
  14539. rename: true,
  14540. image: {
  14541. source: "./media/characters/bernard-wilder/bernard.svg",
  14542. extra: 192 / 128,
  14543. bottom: 0.05
  14544. }
  14545. },
  14546. wilder: {
  14547. height: math.unit(5 + 8 / 12, "feet"),
  14548. weight: math.unit(143, "lb"),
  14549. name: "Wilder",
  14550. rename: true,
  14551. image: {
  14552. source: "./media/characters/bernard-wilder/wilder.svg",
  14553. extra: 361 / 312,
  14554. bottom: 0.02
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Normal",
  14561. height: math.unit(2 + 7 / 12, "feet"),
  14562. default: true
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14568. {
  14569. anthro: {
  14570. height: math.unit(6 + 1 / 12, "feet"),
  14571. weight: math.unit(155, "lb"),
  14572. name: "Anthro",
  14573. image: {
  14574. source: "./media/characters/hearth/anthro.svg",
  14575. extra: 260 / 250,
  14576. bottom: 0.02
  14577. }
  14578. },
  14579. feral: {
  14580. height: math.unit(3.78, "feet"),
  14581. weight: math.unit(35, "kg"),
  14582. name: "Feral",
  14583. image: {
  14584. source: "./media/characters/hearth/feral.svg",
  14585. extra: 153 / 135,
  14586. bottom: 0.03
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Normal",
  14593. height: math.unit(6 + 1 / 12, "feet"),
  14594. default: true
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14600. {
  14601. front: {
  14602. height: math.unit(6, "feet"),
  14603. weight: math.unit(182, "lb"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/ingrid/front.svg",
  14607. extra: 294 / 268,
  14608. bottom: 0.027
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Normal",
  14615. height: math.unit(6, "feet"),
  14616. default: true
  14617. },
  14618. ]
  14619. ))
  14620. characterMakers.push(() => makeCharacter(
  14621. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14622. {
  14623. eevee: {
  14624. height: math.unit(2 + 10 / 12, "feet"),
  14625. weight: math.unit(86, "lb"),
  14626. name: "Malgam",
  14627. image: {
  14628. source: "./media/characters/malgam/eevee.svg",
  14629. extra: 218 / 180,
  14630. bottom: 0.2
  14631. }
  14632. },
  14633. sylveon: {
  14634. height: math.unit(4, "feet"),
  14635. weight: math.unit(101, "lb"),
  14636. name: "Future Malgam",
  14637. rename: true,
  14638. image: {
  14639. source: "./media/characters/malgam/sylveon.svg",
  14640. extra: 371 / 325,
  14641. bottom: 0.015
  14642. }
  14643. },
  14644. gigantamax: {
  14645. height: math.unit(50, "feet"),
  14646. name: "Gigantamax Malgam",
  14647. rename: true,
  14648. image: {
  14649. source: "./media/characters/malgam/gigantamax.svg"
  14650. }
  14651. },
  14652. },
  14653. [
  14654. {
  14655. name: "Normal",
  14656. height: math.unit(2 + 10 / 12, "feet"),
  14657. default: true
  14658. },
  14659. ]
  14660. ))
  14661. characterMakers.push(() => makeCharacter(
  14662. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14663. {
  14664. front: {
  14665. height: math.unit(5 + 11 / 12, "feet"),
  14666. weight: math.unit(188, "lb"),
  14667. name: "Front",
  14668. image: {
  14669. source: "./media/characters/fleur/front.svg",
  14670. extra: 309 / 283,
  14671. bottom: 0.007
  14672. }
  14673. },
  14674. },
  14675. [
  14676. {
  14677. name: "Normal",
  14678. height: math.unit(5 + 11 / 12, "feet"),
  14679. default: true
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(5 + 4 / 12, "feet"),
  14688. weight: math.unit(122, "lb"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/jude/front.svg",
  14692. extra: 288 / 273,
  14693. bottom: 0.03
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Normal",
  14700. height: math.unit(5 + 4 / 12, "feet"),
  14701. default: true
  14702. },
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14707. {
  14708. front: {
  14709. height: math.unit(5 + 11 / 12, "feet"),
  14710. weight: math.unit(190, "lb"),
  14711. name: "Front",
  14712. image: {
  14713. source: "./media/characters/seara/front.svg",
  14714. extra: 1,
  14715. bottom: 0.05
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Normal",
  14722. height: math.unit(5 + 11 / 12, "feet"),
  14723. default: true
  14724. },
  14725. ]
  14726. ))
  14727. characterMakers.push(() => makeCharacter(
  14728. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14729. {
  14730. front: {
  14731. height: math.unit(16 + 5 / 12, "feet"),
  14732. weight: math.unit(524, "lb"),
  14733. name: "Front",
  14734. image: {
  14735. source: "./media/characters/caspian/front.svg",
  14736. extra: 1,
  14737. bottom: 0.04
  14738. }
  14739. },
  14740. },
  14741. [
  14742. {
  14743. name: "Normal",
  14744. height: math.unit(16 + 5 / 12, "feet"),
  14745. default: true
  14746. },
  14747. ]
  14748. ))
  14749. characterMakers.push(() => makeCharacter(
  14750. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14751. {
  14752. front: {
  14753. height: math.unit(5 + 7 / 12, "feet"),
  14754. weight: math.unit(170, "lb"),
  14755. name: "Front",
  14756. image: {
  14757. source: "./media/characters/mika/front.svg",
  14758. extra: 1,
  14759. bottom: 0.016
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Normal",
  14766. height: math.unit(5 + 7 / 12, "feet"),
  14767. default: true
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14773. {
  14774. front: {
  14775. height: math.unit(6 + 2 / 12, "feet"),
  14776. weight: math.unit(268, "lb"),
  14777. name: "Front",
  14778. image: {
  14779. source: "./media/characters/sol/front.svg",
  14780. extra: 247 / 231,
  14781. bottom: 0.05
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Normal",
  14788. height: math.unit(6 + 2 / 12, "feet"),
  14789. default: true
  14790. },
  14791. ]
  14792. ))
  14793. characterMakers.push(() => makeCharacter(
  14794. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14795. {
  14796. buizel: {
  14797. height: math.unit(2 + 5 / 12, "feet"),
  14798. weight: math.unit(87, "lb"),
  14799. name: "Buizel",
  14800. image: {
  14801. source: "./media/characters/umiko/buizel.svg",
  14802. extra: 172 / 157,
  14803. bottom: 0.01
  14804. }
  14805. },
  14806. floatzel: {
  14807. height: math.unit(5 + 9 / 12, "feet"),
  14808. weight: math.unit(250, "lb"),
  14809. name: "Floatzel",
  14810. image: {
  14811. source: "./media/characters/umiko/floatzel.svg",
  14812. extra: 262 / 248
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Normal",
  14819. height: math.unit(2 + 5 / 12, "feet"),
  14820. default: true
  14821. },
  14822. ]
  14823. ))
  14824. characterMakers.push(() => makeCharacter(
  14825. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14826. {
  14827. front: {
  14828. height: math.unit(6 + 2 / 12, "feet"),
  14829. weight: math.unit(146, "lb"),
  14830. name: "Front",
  14831. image: {
  14832. source: "./media/characters/iliac/front.svg",
  14833. extra: 389 / 365,
  14834. bottom: 0.035
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Normal",
  14841. height: math.unit(6 + 2 / 12, "feet"),
  14842. default: true
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14848. {
  14849. front: {
  14850. height: math.unit(6, "feet"),
  14851. weight: math.unit(170, "lb"),
  14852. name: "Front",
  14853. image: {
  14854. source: "./media/characters/topaz/front.svg",
  14855. extra: 317 / 303,
  14856. bottom: 0.055
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Normal",
  14863. height: math.unit(6, "feet"),
  14864. default: true
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(5 + 11 / 12, "feet"),
  14873. weight: math.unit(144, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/gabriel/front.svg",
  14877. extra: 285 / 262,
  14878. bottom: 0.004
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Normal",
  14885. height: math.unit(5 + 11 / 12, "feet"),
  14886. default: true
  14887. },
  14888. ]
  14889. ))
  14890. characterMakers.push(() => makeCharacter(
  14891. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14892. {
  14893. side: {
  14894. height: math.unit(6 + 5 / 12, "feet"),
  14895. weight: math.unit(300, "lb"),
  14896. name: "Side",
  14897. image: {
  14898. source: "./media/characters/tempest-suicune/side.svg",
  14899. extra: 195 / 154,
  14900. bottom: 0.04
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Normal",
  14907. height: math.unit(6 + 5 / 12, "feet"),
  14908. default: true
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(7 + 2 / 12, "feet"),
  14917. weight: math.unit(322, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/vulcan/front.svg",
  14921. extra: 154 / 147,
  14922. bottom: 0.04
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Normal",
  14929. height: math.unit(7 + 2 / 12, "feet"),
  14930. default: true
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(5 + 10 / 12, "feet"),
  14939. weight: math.unit(264, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/gault/front.svg",
  14943. extra: 161 / 140,
  14944. bottom: 0.028
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Normal",
  14951. height: math.unit(5 + 10 / 12, "feet"),
  14952. default: true
  14953. },
  14954. ]
  14955. ))
  14956. characterMakers.push(() => makeCharacter(
  14957. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14958. {
  14959. front: {
  14960. height: math.unit(6, "feet"),
  14961. weight: math.unit(150, "lb"),
  14962. name: "Front",
  14963. image: {
  14964. source: "./media/characters/shard/front.svg",
  14965. extra: 273 / 238,
  14966. bottom: 0.02
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Normal",
  14973. height: math.unit(3 + 6 / 12, "feet"),
  14974. default: true
  14975. },
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14980. {
  14981. front: {
  14982. height: math.unit(5 + 11 / 12, "feet"),
  14983. weight: math.unit(146, "lb"),
  14984. name: "Front",
  14985. image: {
  14986. source: "./media/characters/ashe/front.svg",
  14987. extra: 400 / 373,
  14988. bottom: 0.01
  14989. }
  14990. },
  14991. },
  14992. [
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(5 + 11 / 12, "feet"),
  14996. default: true
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15002. {
  15003. front: {
  15004. height: math.unit(5 + 5 / 12, "feet"),
  15005. weight: math.unit(135, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/beatrix/front.svg",
  15009. extra: 392 / 379,
  15010. bottom: 0.01
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Normal",
  15017. height: math.unit(6, "feet"),
  15018. default: true
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(150, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/ignatius/front.svg",
  15031. extra: 245 / 222,
  15032. bottom: 0.01
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Normal",
  15039. height: math.unit(5 + 5 / 12, "feet"),
  15040. default: true
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15046. {
  15047. front: {
  15048. height: math.unit(6 + 2 / 12, "feet"),
  15049. weight: math.unit(138, "lb"),
  15050. name: "Front",
  15051. image: {
  15052. source: "./media/characters/mei-li/front.svg",
  15053. extra: 237 / 229,
  15054. bottom: 0.03
  15055. }
  15056. },
  15057. },
  15058. [
  15059. {
  15060. name: "Normal",
  15061. height: math.unit(6 + 2 / 12, "feet"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15068. {
  15069. front: {
  15070. height: math.unit(2 + 4 / 12, "feet"),
  15071. weight: math.unit(62, "lb"),
  15072. name: "Front",
  15073. image: {
  15074. source: "./media/characters/puru/front.svg",
  15075. extra: 206 / 149,
  15076. bottom: 0.06
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(2 + 4 / 12, "feet"),
  15084. default: true
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15090. {
  15091. anthro: {
  15092. height: math.unit(5 + 8/12, "feet"),
  15093. weight: math.unit(200, "lb"),
  15094. energyNeed: math.unit(2000, "kcal"),
  15095. name: "Anthro",
  15096. image: {
  15097. source: "./media/characters/kee/anthro.svg",
  15098. extra: 3251/3184,
  15099. bottom: 250/3501
  15100. }
  15101. },
  15102. taur: {
  15103. height: math.unit(11, "feet"),
  15104. weight: math.unit(500, "lb"),
  15105. energyNeed: math.unit(5000, "kcal"),
  15106. name: "Taur",
  15107. image: {
  15108. source: "./media/characters/kee/taur.svg",
  15109. extra: 1362/1320,
  15110. bottom: 83/1445
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(5 + 8/12, "feet"),
  15118. default: true
  15119. },
  15120. {
  15121. name: "Macro",
  15122. height: math.unit(35, "feet")
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15128. {
  15129. anthro: {
  15130. height: math.unit(7, "feet"),
  15131. weight: math.unit(190, "lb"),
  15132. name: "Anthro",
  15133. image: {
  15134. source: "./media/characters/cobalt-dracha/anthro.svg",
  15135. extra: 231 / 225,
  15136. bottom: 0.04
  15137. }
  15138. },
  15139. feral: {
  15140. height: math.unit(9 + 7 / 12, "feet"),
  15141. weight: math.unit(294, "lb"),
  15142. name: "Feral",
  15143. image: {
  15144. source: "./media/characters/cobalt-dracha/feral.svg",
  15145. extra: 692 / 633,
  15146. bottom: 0.05
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(7, "feet"),
  15154. default: true
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15160. {
  15161. fallen: {
  15162. height: math.unit(11 + 8 / 12, "feet"),
  15163. weight: math.unit(485, "lb"),
  15164. name: "Java (Fallen)",
  15165. rename: true,
  15166. image: {
  15167. source: "./media/characters/java/fallen.svg",
  15168. extra: 226 / 208,
  15169. bottom: 0.005
  15170. }
  15171. },
  15172. godkin: {
  15173. height: math.unit(10 + 6 / 12, "feet"),
  15174. weight: math.unit(328, "lb"),
  15175. name: "Java (Godkin)",
  15176. rename: true,
  15177. image: {
  15178. source: "./media/characters/java/godkin.svg",
  15179. extra: 270 / 262,
  15180. bottom: 0.02
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(11 + 8 / 12, "feet"),
  15188. default: true
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15194. {
  15195. front: {
  15196. height: math.unit(7 + 8 / 12, "feet"),
  15197. weight: math.unit(320, "lb"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/skoll/front.svg",
  15201. extra: 232 / 220,
  15202. bottom: 0.02
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(7 + 8 / 12, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15216. {
  15217. front: {
  15218. height: math.unit(5 + 9 / 12, "feet"),
  15219. weight: math.unit(170, "lb"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/purna/front.svg",
  15223. extra: 239 / 229,
  15224. bottom: 0.01
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Normal",
  15231. height: math.unit(5 + 9 / 12, "feet"),
  15232. default: true
  15233. },
  15234. ]
  15235. ))
  15236. characterMakers.push(() => makeCharacter(
  15237. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15238. {
  15239. front: {
  15240. height: math.unit(5 + 9 / 12, "feet"),
  15241. weight: math.unit(142, "lb"),
  15242. name: "Front",
  15243. image: {
  15244. source: "./media/characters/kuva/front.svg",
  15245. extra: 281 / 271,
  15246. bottom: 0.006
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Normal",
  15253. height: math.unit(5 + 9 / 12, "feet"),
  15254. default: true
  15255. },
  15256. ]
  15257. ))
  15258. characterMakers.push(() => makeCharacter(
  15259. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15260. {
  15261. anthro: {
  15262. height: math.unit(9 + 2 / 12, "feet"),
  15263. weight: math.unit(270, "lb"),
  15264. name: "Anthro",
  15265. image: {
  15266. source: "./media/characters/embra/anthro.svg",
  15267. extra: 200 / 187,
  15268. bottom: 0.02
  15269. }
  15270. },
  15271. feral: {
  15272. height: math.unit(18 + 8 / 12, "feet"),
  15273. weight: math.unit(576, "lb"),
  15274. name: "Feral",
  15275. image: {
  15276. source: "./media/characters/embra/feral.svg",
  15277. extra: 152 / 137,
  15278. bottom: 0.037
  15279. }
  15280. },
  15281. },
  15282. [
  15283. {
  15284. name: "Normal",
  15285. height: math.unit(9 + 2 / 12, "feet"),
  15286. default: true
  15287. },
  15288. ]
  15289. ))
  15290. characterMakers.push(() => makeCharacter(
  15291. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15292. {
  15293. anthro: {
  15294. height: math.unit(10 + 9 / 12, "feet"),
  15295. weight: math.unit(224, "lb"),
  15296. name: "Anthro",
  15297. image: {
  15298. source: "./media/characters/grottos/anthro.svg",
  15299. extra: 350 / 332,
  15300. bottom: 0.045
  15301. }
  15302. },
  15303. feral: {
  15304. height: math.unit(20 + 7 / 12, "feet"),
  15305. weight: math.unit(629, "lb"),
  15306. name: "Feral",
  15307. image: {
  15308. source: "./media/characters/grottos/feral.svg",
  15309. extra: 207 / 190,
  15310. bottom: 0.05
  15311. }
  15312. },
  15313. },
  15314. [
  15315. {
  15316. name: "Normal",
  15317. height: math.unit(10 + 9 / 12, "feet"),
  15318. default: true
  15319. },
  15320. ]
  15321. ))
  15322. characterMakers.push(() => makeCharacter(
  15323. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15324. {
  15325. anthro: {
  15326. height: math.unit(9 + 6 / 12, "feet"),
  15327. weight: math.unit(298, "lb"),
  15328. name: "Anthro",
  15329. image: {
  15330. source: "./media/characters/frifna/anthro.svg",
  15331. extra: 282 / 269,
  15332. bottom: 0.015
  15333. }
  15334. },
  15335. feral: {
  15336. height: math.unit(16 + 2 / 12, "feet"),
  15337. weight: math.unit(624, "lb"),
  15338. name: "Feral",
  15339. image: {
  15340. source: "./media/characters/frifna/feral.svg"
  15341. }
  15342. },
  15343. },
  15344. [
  15345. {
  15346. name: "Normal",
  15347. height: math.unit(9 + 6 / 12, "feet"),
  15348. default: true
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15354. {
  15355. front: {
  15356. height: math.unit(6 + 2 / 12, "feet"),
  15357. weight: math.unit(168, "lb"),
  15358. name: "Front",
  15359. image: {
  15360. source: "./media/characters/elise/front.svg",
  15361. extra: 276 / 271
  15362. }
  15363. },
  15364. },
  15365. [
  15366. {
  15367. name: "Normal",
  15368. height: math.unit(6 + 2 / 12, "feet"),
  15369. default: true
  15370. },
  15371. ]
  15372. ))
  15373. characterMakers.push(() => makeCharacter(
  15374. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15375. {
  15376. front: {
  15377. height: math.unit(5 + 10 / 12, "feet"),
  15378. weight: math.unit(210, "lb"),
  15379. name: "Front",
  15380. image: {
  15381. source: "./media/characters/glade/front.svg",
  15382. extra: 258 / 247,
  15383. bottom: 0.008
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Normal",
  15390. height: math.unit(5 + 10 / 12, "feet"),
  15391. default: true
  15392. },
  15393. ]
  15394. ))
  15395. characterMakers.push(() => makeCharacter(
  15396. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15397. {
  15398. front: {
  15399. height: math.unit(5 + 10 / 12, "feet"),
  15400. weight: math.unit(129, "lb"),
  15401. name: "Front",
  15402. image: {
  15403. source: "./media/characters/rina/front.svg",
  15404. extra: 266 / 255,
  15405. bottom: 0.005
  15406. }
  15407. },
  15408. },
  15409. [
  15410. {
  15411. name: "Normal",
  15412. height: math.unit(5 + 10 / 12, "feet"),
  15413. default: true
  15414. },
  15415. ]
  15416. ))
  15417. characterMakers.push(() => makeCharacter(
  15418. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15419. {
  15420. front: {
  15421. height: math.unit(6 + 1 / 12, "feet"),
  15422. weight: math.unit(192, "lb"),
  15423. name: "Front",
  15424. image: {
  15425. source: "./media/characters/veronica/front.svg",
  15426. extra: 319 / 309,
  15427. bottom: 0.005
  15428. }
  15429. },
  15430. },
  15431. [
  15432. {
  15433. name: "Normal",
  15434. height: math.unit(6 + 1 / 12, "feet"),
  15435. default: true
  15436. },
  15437. ]
  15438. ))
  15439. characterMakers.push(() => makeCharacter(
  15440. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15441. {
  15442. front: {
  15443. height: math.unit(9 + 3 / 12, "feet"),
  15444. weight: math.unit(1100, "lb"),
  15445. name: "Front",
  15446. image: {
  15447. source: "./media/characters/braxton/front.svg",
  15448. extra: 1057 / 984,
  15449. bottom: 0.05
  15450. }
  15451. },
  15452. },
  15453. [
  15454. {
  15455. name: "Normal",
  15456. height: math.unit(9 + 3 / 12, "feet")
  15457. },
  15458. {
  15459. name: "Giant",
  15460. height: math.unit(300, "feet"),
  15461. default: true
  15462. },
  15463. {
  15464. name: "Macro",
  15465. height: math.unit(700, "feet")
  15466. },
  15467. {
  15468. name: "Megamacro",
  15469. height: math.unit(6000, "feet")
  15470. },
  15471. ]
  15472. ))
  15473. characterMakers.push(() => makeCharacter(
  15474. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15475. {
  15476. front: {
  15477. height: math.unit(6 + 7 / 12, "feet"),
  15478. weight: math.unit(150, "lb"),
  15479. name: "Front",
  15480. image: {
  15481. source: "./media/characters/blue-feyonics/front.svg",
  15482. extra: 1403 / 1306,
  15483. bottom: 0.047
  15484. }
  15485. },
  15486. },
  15487. [
  15488. {
  15489. name: "Normal",
  15490. height: math.unit(6 + 7 / 12, "feet"),
  15491. default: true
  15492. },
  15493. ]
  15494. ))
  15495. characterMakers.push(() => makeCharacter(
  15496. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15497. {
  15498. front: {
  15499. height: math.unit(1.8, "meters"),
  15500. weight: math.unit(60, "kg"),
  15501. name: "Front",
  15502. image: {
  15503. source: "./media/characters/maxwell/front.svg",
  15504. extra: 2060 / 1873
  15505. }
  15506. },
  15507. },
  15508. [
  15509. {
  15510. name: "Micro",
  15511. height: math.unit(1, "mm")
  15512. },
  15513. {
  15514. name: "Normal",
  15515. height: math.unit(1.8, "meter"),
  15516. default: true
  15517. },
  15518. {
  15519. name: "Macro",
  15520. height: math.unit(30, "meters")
  15521. },
  15522. {
  15523. name: "Megamacro",
  15524. height: math.unit(10, "km")
  15525. },
  15526. ]
  15527. ))
  15528. characterMakers.push(() => makeCharacter(
  15529. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15530. {
  15531. front: {
  15532. height: math.unit(6, "feet"),
  15533. weight: math.unit(150, "lb"),
  15534. name: "Front",
  15535. image: {
  15536. source: "./media/characters/jack/front.svg",
  15537. extra: 1754 / 1640,
  15538. bottom: 0.01
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Normal",
  15545. height: math.unit(80000, "feet"),
  15546. default: true
  15547. },
  15548. {
  15549. name: "Max size",
  15550. height: math.unit(10, "lightyears")
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15556. {
  15557. upright: {
  15558. height: math.unit(7, "feet"),
  15559. weight: math.unit(170, "lb"),
  15560. name: "Upright",
  15561. image: {
  15562. source: "./media/characters/cafat/upright.svg",
  15563. bottom: 0.01
  15564. }
  15565. },
  15566. uprightFull: {
  15567. height: math.unit(7, "feet"),
  15568. weight: math.unit(170, "lb"),
  15569. name: "Upright (Full)",
  15570. image: {
  15571. source: "./media/characters/cafat/upright-full.svg",
  15572. bottom: 0.01
  15573. }
  15574. },
  15575. side: {
  15576. height: math.unit(5, "feet"),
  15577. weight: math.unit(150, "lb"),
  15578. name: "Side",
  15579. image: {
  15580. source: "./media/characters/cafat/side.svg"
  15581. }
  15582. },
  15583. },
  15584. [
  15585. {
  15586. name: "Small",
  15587. height: math.unit(7, "feet"),
  15588. default: true
  15589. },
  15590. {
  15591. name: "Large",
  15592. height: math.unit(15.5, "feet")
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15598. {
  15599. front: {
  15600. height: math.unit(6, "feet"),
  15601. weight: math.unit(150, "lb"),
  15602. name: "Front",
  15603. image: {
  15604. source: "./media/characters/verin-raharra/front.svg",
  15605. extra: 5019 / 4835,
  15606. bottom: 0.023
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(7 + 5 / 12, "feet"),
  15614. default: true
  15615. },
  15616. {
  15617. name: "Upsized",
  15618. height: math.unit(20, "feet")
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(7, "feet"),
  15627. weight: math.unit(230, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/nakata/front.svg",
  15631. extra: 1.005,
  15632. bottom: 0.01
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(7, "feet"),
  15640. default: true
  15641. },
  15642. {
  15643. name: "Big",
  15644. height: math.unit(14, "feet")
  15645. },
  15646. {
  15647. name: "Macro",
  15648. height: math.unit(400, "feet")
  15649. },
  15650. ]
  15651. ))
  15652. characterMakers.push(() => makeCharacter(
  15653. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15654. {
  15655. front: {
  15656. height: math.unit(4.91, "feet"),
  15657. weight: math.unit(100, "lb"),
  15658. name: "Front",
  15659. image: {
  15660. source: "./media/characters/lily/front.svg",
  15661. extra: 1585 / 1415,
  15662. bottom: 0.02
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Normal",
  15669. height: math.unit(4.91, "feet"),
  15670. default: true
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15676. {
  15677. laying: {
  15678. height: math.unit(4 + 4 / 12, "feet"),
  15679. weight: math.unit(600, "lb"),
  15680. name: "Laying",
  15681. image: {
  15682. source: "./media/characters/sheila/laying.svg",
  15683. extra: 1333 / 1265,
  15684. bottom: 0.16
  15685. }
  15686. },
  15687. },
  15688. [
  15689. {
  15690. name: "Normal",
  15691. height: math.unit(4 + 4 / 12, "feet"),
  15692. default: true
  15693. },
  15694. ]
  15695. ))
  15696. characterMakers.push(() => makeCharacter(
  15697. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15698. {
  15699. front: {
  15700. height: math.unit(6, "feet"),
  15701. weight: math.unit(190, "lb"),
  15702. name: "Front",
  15703. image: {
  15704. source: "./media/characters/sax/front.svg",
  15705. extra: 1187 / 973,
  15706. bottom: 0.042
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Micro",
  15713. height: math.unit(4, "inches"),
  15714. default: true
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15720. {
  15721. front: {
  15722. height: math.unit(6, "feet"),
  15723. weight: math.unit(150, "lb"),
  15724. name: "Front",
  15725. image: {
  15726. source: "./media/characters/pandora/front.svg",
  15727. extra: 2720 / 2556,
  15728. bottom: 0.015
  15729. }
  15730. },
  15731. back: {
  15732. height: math.unit(6, "feet"),
  15733. weight: math.unit(150, "lb"),
  15734. name: "Back",
  15735. image: {
  15736. source: "./media/characters/pandora/back.svg",
  15737. extra: 2720 / 2556,
  15738. bottom: 0.01
  15739. }
  15740. },
  15741. beans: {
  15742. height: math.unit(6 / 8, "feet"),
  15743. name: "Beans",
  15744. image: {
  15745. source: "./media/characters/pandora/beans.svg"
  15746. }
  15747. },
  15748. skirt: {
  15749. height: math.unit(6, "feet"),
  15750. weight: math.unit(150, "lb"),
  15751. name: "Skirt",
  15752. image: {
  15753. source: "./media/characters/pandora/skirt.svg",
  15754. extra: 1622 / 1525,
  15755. bottom: 0.015
  15756. }
  15757. },
  15758. hoodie: {
  15759. height: math.unit(6, "feet"),
  15760. weight: math.unit(150, "lb"),
  15761. name: "Hoodie",
  15762. image: {
  15763. source: "./media/characters/pandora/hoodie.svg",
  15764. extra: 1622 / 1525,
  15765. bottom: 0.015
  15766. }
  15767. },
  15768. casual: {
  15769. height: math.unit(6, "feet"),
  15770. weight: math.unit(150, "lb"),
  15771. name: "Casual",
  15772. image: {
  15773. source: "./media/characters/pandora/casual.svg",
  15774. extra: 1622 / 1525,
  15775. bottom: 0.015
  15776. }
  15777. },
  15778. },
  15779. [
  15780. {
  15781. name: "Normal",
  15782. height: math.unit(6, "feet")
  15783. },
  15784. {
  15785. name: "Big Steppy",
  15786. height: math.unit(1, "km"),
  15787. default: true
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15793. {
  15794. side: {
  15795. height: math.unit(10, "feet"),
  15796. weight: math.unit(800, "kg"),
  15797. name: "Side",
  15798. image: {
  15799. source: "./media/characters/venio-darcony/side.svg",
  15800. extra: 1373 / 1003,
  15801. bottom: 0.037
  15802. }
  15803. },
  15804. front: {
  15805. height: math.unit(19, "feet"),
  15806. weight: math.unit(800, "kg"),
  15807. name: "Front",
  15808. image: {
  15809. source: "./media/characters/venio-darcony/front.svg"
  15810. }
  15811. },
  15812. back: {
  15813. height: math.unit(19, "feet"),
  15814. weight: math.unit(800, "kg"),
  15815. name: "Back",
  15816. image: {
  15817. source: "./media/characters/venio-darcony/back.svg"
  15818. }
  15819. },
  15820. sideNsfw: {
  15821. height: math.unit(10, "feet"),
  15822. weight: math.unit(800, "kg"),
  15823. name: "Side (NSFW)",
  15824. image: {
  15825. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15826. extra: 1373 / 1003,
  15827. bottom: 0.037
  15828. }
  15829. },
  15830. frontNsfw: {
  15831. height: math.unit(19, "feet"),
  15832. weight: math.unit(800, "kg"),
  15833. name: "Front (NSFW)",
  15834. image: {
  15835. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15836. }
  15837. },
  15838. backNsfw: {
  15839. height: math.unit(19, "feet"),
  15840. weight: math.unit(800, "kg"),
  15841. name: "Back (NSFW)",
  15842. image: {
  15843. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15844. }
  15845. },
  15846. sideArmored: {
  15847. height: math.unit(10, "feet"),
  15848. weight: math.unit(800, "kg"),
  15849. name: "Side (Armored)",
  15850. image: {
  15851. source: "./media/characters/venio-darcony/side-armored.svg",
  15852. extra: 1373 / 1003,
  15853. bottom: 0.037
  15854. }
  15855. },
  15856. frontArmored: {
  15857. height: math.unit(19, "feet"),
  15858. weight: math.unit(900, "kg"),
  15859. name: "Front (Armored)",
  15860. image: {
  15861. source: "./media/characters/venio-darcony/front-armored.svg"
  15862. }
  15863. },
  15864. backArmored: {
  15865. height: math.unit(19, "feet"),
  15866. weight: math.unit(900, "kg"),
  15867. name: "Back (Armored)",
  15868. image: {
  15869. source: "./media/characters/venio-darcony/back-armored.svg"
  15870. }
  15871. },
  15872. sword: {
  15873. height: math.unit(10, "feet"),
  15874. weight: math.unit(50, "lb"),
  15875. name: "Sword",
  15876. image: {
  15877. source: "./media/characters/venio-darcony/sword.svg"
  15878. }
  15879. },
  15880. },
  15881. [
  15882. {
  15883. name: "Normal",
  15884. height: math.unit(10, "feet")
  15885. },
  15886. {
  15887. name: "Macro",
  15888. height: math.unit(130, "feet"),
  15889. default: true
  15890. },
  15891. {
  15892. name: "Macro+",
  15893. height: math.unit(240, "feet")
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15899. {
  15900. front: {
  15901. height: math.unit(6, "feet"),
  15902. weight: math.unit(150, "lb"),
  15903. name: "Front",
  15904. image: {
  15905. source: "./media/characters/veski/front.svg",
  15906. extra: 1299 / 1225,
  15907. bottom: 0.04
  15908. }
  15909. },
  15910. back: {
  15911. height: math.unit(6, "feet"),
  15912. weight: math.unit(150, "lb"),
  15913. name: "Back",
  15914. image: {
  15915. source: "./media/characters/veski/back.svg",
  15916. extra: 1299 / 1225,
  15917. bottom: 0.008
  15918. }
  15919. },
  15920. maw: {
  15921. height: math.unit(1.5 * 1.21, "feet"),
  15922. name: "Maw",
  15923. image: {
  15924. source: "./media/characters/veski/maw.svg"
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Macro",
  15931. height: math.unit(2, "km"),
  15932. default: true
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(5 + 7 / 12, "feet"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/isabelle/front.svg",
  15944. extra: 2130 / 1976,
  15945. bottom: 0.05
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Supermicro",
  15952. height: math.unit(10, "micrometers")
  15953. },
  15954. {
  15955. name: "Micro",
  15956. height: math.unit(1, "inch")
  15957. },
  15958. {
  15959. name: "Tiny",
  15960. height: math.unit(5, "inches")
  15961. },
  15962. {
  15963. name: "Standard",
  15964. height: math.unit(5 + 7 / 12, "inches")
  15965. },
  15966. {
  15967. name: "Macro",
  15968. height: math.unit(80, "meters"),
  15969. default: true
  15970. },
  15971. {
  15972. name: "Megamacro",
  15973. height: math.unit(250, "meters")
  15974. },
  15975. {
  15976. name: "Gigamacro",
  15977. height: math.unit(5, "km")
  15978. },
  15979. {
  15980. name: "Cosmic",
  15981. height: math.unit(2.5e6, "miles")
  15982. },
  15983. ]
  15984. ))
  15985. characterMakers.push(() => makeCharacter(
  15986. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15987. {
  15988. front: {
  15989. height: math.unit(6, "feet"),
  15990. weight: math.unit(150, "lb"),
  15991. name: "Front",
  15992. image: {
  15993. source: "./media/characters/hanzo/front.svg",
  15994. extra: 374 / 344,
  15995. bottom: 0.02
  15996. }
  15997. },
  15998. },
  15999. [
  16000. {
  16001. name: "Normal",
  16002. height: math.unit(8, "feet"),
  16003. default: true
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16009. {
  16010. front: {
  16011. height: math.unit(7, "feet"),
  16012. weight: math.unit(130, "lb"),
  16013. name: "Front",
  16014. image: {
  16015. source: "./media/characters/anna/front.svg",
  16016. extra: 169 / 145,
  16017. bottom: 0.06
  16018. }
  16019. },
  16020. full: {
  16021. height: math.unit(4.96, "feet"),
  16022. weight: math.unit(220, "lb"),
  16023. name: "Full",
  16024. image: {
  16025. source: "./media/characters/anna/full.svg",
  16026. extra: 138 / 114,
  16027. bottom: 0.15
  16028. }
  16029. },
  16030. tongue: {
  16031. height: math.unit(2.53, "feet"),
  16032. name: "Tongue",
  16033. image: {
  16034. source: "./media/characters/anna/tongue.svg"
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(7, "feet"),
  16042. default: true
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(7, "feet"),
  16051. weight: math.unit(150, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/ian-corvid/front.svg",
  16055. extra: 150 / 142,
  16056. bottom: 0.02
  16057. }
  16058. },
  16059. back: {
  16060. height: math.unit(7, "feet"),
  16061. weight: math.unit(150, "lb"),
  16062. name: "Back",
  16063. image: {
  16064. source: "./media/characters/ian-corvid/back.svg",
  16065. extra: 150 / 143,
  16066. bottom: 0.01
  16067. }
  16068. },
  16069. stomping: {
  16070. height: math.unit(7, "feet"),
  16071. weight: math.unit(150, "lb"),
  16072. name: "Stomping",
  16073. image: {
  16074. source: "./media/characters/ian-corvid/stomping.svg",
  16075. extra: 76 / 72
  16076. }
  16077. },
  16078. sitting: {
  16079. height: math.unit(7 / 1.8, "feet"),
  16080. weight: math.unit(150, "lb"),
  16081. name: "Sitting",
  16082. image: {
  16083. source: "./media/characters/ian-corvid/sitting.svg",
  16084. extra: 1400 / 1269,
  16085. bottom: 0.15
  16086. }
  16087. },
  16088. },
  16089. [
  16090. {
  16091. name: "Tiny Microw",
  16092. height: math.unit(1, "inch")
  16093. },
  16094. {
  16095. name: "Microw",
  16096. height: math.unit(6, "inches")
  16097. },
  16098. {
  16099. name: "Crow",
  16100. height: math.unit(7 + 1 / 12, "feet"),
  16101. default: true
  16102. },
  16103. {
  16104. name: "Macrow",
  16105. height: math.unit(176, "feet")
  16106. },
  16107. ]
  16108. ))
  16109. characterMakers.push(() => makeCharacter(
  16110. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16111. {
  16112. front: {
  16113. height: math.unit(5 + 7 / 12, "feet"),
  16114. weight: math.unit(147, "lb"),
  16115. name: "Front",
  16116. image: {
  16117. source: "./media/characters/natalie-kellon/front.svg",
  16118. extra: 1214 / 1141,
  16119. bottom: 0.02
  16120. }
  16121. },
  16122. },
  16123. [
  16124. {
  16125. name: "Micro",
  16126. height: math.unit(1 / 16, "inch")
  16127. },
  16128. {
  16129. name: "Tiny",
  16130. height: math.unit(4, "inches")
  16131. },
  16132. {
  16133. name: "Normal",
  16134. height: math.unit(5 + 7 / 12, "feet"),
  16135. default: true
  16136. },
  16137. {
  16138. name: "Amazon",
  16139. height: math.unit(12, "feet")
  16140. },
  16141. {
  16142. name: "Giantess",
  16143. height: math.unit(160, "meters")
  16144. },
  16145. {
  16146. name: "Titaness",
  16147. height: math.unit(800, "meters")
  16148. },
  16149. ]
  16150. ))
  16151. characterMakers.push(() => makeCharacter(
  16152. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16153. {
  16154. front: {
  16155. height: math.unit(6, "feet"),
  16156. weight: math.unit(150, "lb"),
  16157. name: "Front",
  16158. image: {
  16159. source: "./media/characters/alluria/front.svg",
  16160. extra: 806 / 738,
  16161. bottom: 0.01
  16162. }
  16163. },
  16164. side: {
  16165. height: math.unit(6, "feet"),
  16166. weight: math.unit(150, "lb"),
  16167. name: "Side",
  16168. image: {
  16169. source: "./media/characters/alluria/side.svg",
  16170. extra: 800 / 750,
  16171. }
  16172. },
  16173. back: {
  16174. height: math.unit(6, "feet"),
  16175. weight: math.unit(150, "lb"),
  16176. name: "Back",
  16177. image: {
  16178. source: "./media/characters/alluria/back.svg",
  16179. extra: 806 / 738,
  16180. }
  16181. },
  16182. frontMaid: {
  16183. height: math.unit(6, "feet"),
  16184. weight: math.unit(150, "lb"),
  16185. name: "Front (Maid)",
  16186. image: {
  16187. source: "./media/characters/alluria/front-maid.svg",
  16188. extra: 806 / 738,
  16189. bottom: 0.01
  16190. }
  16191. },
  16192. sideMaid: {
  16193. height: math.unit(6, "feet"),
  16194. weight: math.unit(150, "lb"),
  16195. name: "Side (Maid)",
  16196. image: {
  16197. source: "./media/characters/alluria/side-maid.svg",
  16198. extra: 800 / 750,
  16199. bottom: 0.005
  16200. }
  16201. },
  16202. backMaid: {
  16203. height: math.unit(6, "feet"),
  16204. weight: math.unit(150, "lb"),
  16205. name: "Back (Maid)",
  16206. image: {
  16207. source: "./media/characters/alluria/back-maid.svg",
  16208. extra: 806 / 738,
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Micro",
  16215. height: math.unit(6, "inches"),
  16216. default: true
  16217. },
  16218. ]
  16219. ))
  16220. characterMakers.push(() => makeCharacter(
  16221. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16222. {
  16223. front: {
  16224. height: math.unit(6, "feet"),
  16225. weight: math.unit(150, "lb"),
  16226. name: "Front",
  16227. image: {
  16228. source: "./media/characters/kyle/front.svg",
  16229. extra: 1069 / 962,
  16230. bottom: 77.228 / 1727.45
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Macro",
  16237. height: math.unit(150, "feet"),
  16238. default: true
  16239. },
  16240. ]
  16241. ))
  16242. characterMakers.push(() => makeCharacter(
  16243. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16244. {
  16245. front: {
  16246. height: math.unit(6, "feet"),
  16247. weight: math.unit(300, "lb"),
  16248. name: "Front",
  16249. image: {
  16250. source: "./media/characters/duncan/front.svg",
  16251. extra: 1650 / 1482,
  16252. bottom: 0.05
  16253. }
  16254. },
  16255. },
  16256. [
  16257. {
  16258. name: "Macro",
  16259. height: math.unit(100, "feet"),
  16260. default: true
  16261. },
  16262. ]
  16263. ))
  16264. characterMakers.push(() => makeCharacter(
  16265. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16266. {
  16267. front: {
  16268. height: math.unit(5 + 4 / 12, "feet"),
  16269. weight: math.unit(220, "lb"),
  16270. name: "Front",
  16271. image: {
  16272. source: "./media/characters/memory/front.svg",
  16273. extra: 3641 / 3545,
  16274. bottom: 0.03
  16275. }
  16276. },
  16277. back: {
  16278. height: math.unit(5 + 4 / 12, "feet"),
  16279. weight: math.unit(220, "lb"),
  16280. name: "Back",
  16281. image: {
  16282. source: "./media/characters/memory/back.svg",
  16283. extra: 3641 / 3545,
  16284. bottom: 0.025
  16285. }
  16286. },
  16287. frontSkirt: {
  16288. height: math.unit(5 + 4 / 12, "feet"),
  16289. weight: math.unit(220, "lb"),
  16290. name: "Front (Skirt)",
  16291. image: {
  16292. source: "./media/characters/memory/front-skirt.svg",
  16293. extra: 3641 / 3545,
  16294. bottom: 0.03
  16295. }
  16296. },
  16297. frontDress: {
  16298. height: math.unit(5 + 4 / 12, "feet"),
  16299. weight: math.unit(220, "lb"),
  16300. name: "Front (Dress)",
  16301. image: {
  16302. source: "./media/characters/memory/front-dress.svg",
  16303. extra: 3641 / 3545,
  16304. bottom: 0.03
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Micro",
  16311. height: math.unit(6, "inches"),
  16312. default: true
  16313. },
  16314. {
  16315. name: "Normal",
  16316. height: math.unit(5 + 4 / 12, "feet")
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16322. {
  16323. front: {
  16324. height: math.unit(4 + 11 / 12, "feet"),
  16325. weight: math.unit(100, "lb"),
  16326. name: "Front",
  16327. image: {
  16328. source: "./media/characters/luno/front.svg",
  16329. extra: 1535 / 1487,
  16330. bottom: 0.03
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Micro",
  16337. height: math.unit(3, "inches")
  16338. },
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(4 + 11 / 12, "feet"),
  16342. default: true
  16343. },
  16344. {
  16345. name: "Macro",
  16346. height: math.unit(300, "feet")
  16347. },
  16348. {
  16349. name: "Megamacro",
  16350. height: math.unit(700, "miles")
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(6 + 2 / 12, "feet"),
  16359. weight: math.unit(170, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/jamesy/front.svg",
  16363. extra: 440 / 382,
  16364. bottom: 0.005
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Micro",
  16371. height: math.unit(3, "inches")
  16372. },
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(6 + 2 / 12, "feet"),
  16376. default: true
  16377. },
  16378. {
  16379. name: "Macro",
  16380. height: math.unit(300, "feet")
  16381. },
  16382. {
  16383. name: "Megamacro",
  16384. height: math.unit(700, "miles")
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16390. {
  16391. front: {
  16392. height: math.unit(6, "feet"),
  16393. weight: math.unit(160, "lb"),
  16394. name: "Front",
  16395. image: {
  16396. source: "./media/characters/mark/front.svg",
  16397. extra: 3300 / 3100,
  16398. bottom: 136.42 / 3440.47
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Macro",
  16405. height: math.unit(120, "meters")
  16406. },
  16407. {
  16408. name: "Bigger Macro",
  16409. height: math.unit(350, "meters")
  16410. },
  16411. {
  16412. name: "Megamacro",
  16413. height: math.unit(8, "km"),
  16414. default: true
  16415. },
  16416. {
  16417. name: "Continental",
  16418. height: math.unit(4550, "km")
  16419. },
  16420. {
  16421. name: "Planetary",
  16422. height: math.unit(65000, "km")
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16428. {
  16429. front: {
  16430. height: math.unit(6, "feet"),
  16431. weight: math.unit(400, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/mac/front.svg",
  16435. extra: 1048 / 987.7,
  16436. bottom: 60 / 1107.6,
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Macro",
  16443. height: math.unit(500, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(5 + 2 / 12, "feet"),
  16453. weight: math.unit(190, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/bari/front.svg",
  16457. extra: 3156 / 2880,
  16458. bottom: 0.03
  16459. }
  16460. },
  16461. back: {
  16462. height: math.unit(5 + 2 / 12, "feet"),
  16463. weight: math.unit(190, "lb"),
  16464. name: "Back",
  16465. image: {
  16466. source: "./media/characters/bari/back.svg",
  16467. extra: 3260 / 2834,
  16468. bottom: 0.025
  16469. }
  16470. },
  16471. frontPlush: {
  16472. height: math.unit(5 + 2 / 12, "feet"),
  16473. weight: math.unit(190, "lb"),
  16474. name: "Front (Plush)",
  16475. image: {
  16476. source: "./media/characters/bari/front-plush.svg",
  16477. extra: 1112 / 1061,
  16478. bottom: 0.002
  16479. }
  16480. },
  16481. },
  16482. [
  16483. {
  16484. name: "Micro",
  16485. height: math.unit(3, "inches")
  16486. },
  16487. {
  16488. name: "Normal",
  16489. height: math.unit(5 + 2 / 12, "feet"),
  16490. default: true
  16491. },
  16492. {
  16493. name: "Macro",
  16494. height: math.unit(20, "feet")
  16495. },
  16496. ]
  16497. ))
  16498. characterMakers.push(() => makeCharacter(
  16499. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16500. {
  16501. front: {
  16502. height: math.unit(6 + 1 / 12, "feet"),
  16503. weight: math.unit(275, "lb"),
  16504. name: "Front",
  16505. image: {
  16506. source: "./media/characters/hunter-misha-raven/front.svg"
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Mortal",
  16513. height: math.unit(6 + 1 / 12, "feet")
  16514. },
  16515. {
  16516. name: "Divine",
  16517. height: math.unit(1.12134e34, "parsecs"),
  16518. default: true
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16524. {
  16525. front: {
  16526. height: math.unit(6 + 3 / 12, "feet"),
  16527. weight: math.unit(220, "lb"),
  16528. name: "Front",
  16529. image: {
  16530. source: "./media/characters/max-calore/front.svg",
  16531. extra: 1700 / 1648,
  16532. bottom: 0.01
  16533. }
  16534. },
  16535. back: {
  16536. height: math.unit(6 + 3 / 12, "feet"),
  16537. weight: math.unit(220, "lb"),
  16538. name: "Back",
  16539. image: {
  16540. source: "./media/characters/max-calore/back.svg",
  16541. extra: 1700 / 1648,
  16542. bottom: 0.01
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(6 + 3 / 12, "feet"),
  16550. default: true
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16556. {
  16557. side: {
  16558. height: math.unit(2 + 8 / 12, "feet"),
  16559. weight: math.unit(99, "lb"),
  16560. name: "Side",
  16561. image: {
  16562. source: "./media/characters/aspen/side.svg",
  16563. extra: 152 / 138,
  16564. bottom: 0.032
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(2 + 8 / 12, "feet"),
  16572. default: true
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16578. {
  16579. side: {
  16580. height: math.unit(3 + 2 / 12, "feet"),
  16581. weight: math.unit(224, "lb"),
  16582. name: "Side",
  16583. image: {
  16584. source: "./media/characters/sheila-feral-wolf/side.svg",
  16585. extra: 179 / 166,
  16586. bottom: 0.03
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(3 + 2 / 12, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16600. {
  16601. side: {
  16602. height: math.unit(1 + 9 / 12, "feet"),
  16603. weight: math.unit(38, "lb"),
  16604. name: "Side",
  16605. image: {
  16606. source: "./media/characters/michelle/side.svg",
  16607. extra: 147 / 136.7,
  16608. bottom: 0.03
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Normal",
  16615. height: math.unit(1 + 9 / 12, "feet"),
  16616. default: true
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16622. {
  16623. front: {
  16624. height: math.unit(1 + 1 / 12, "feet"),
  16625. weight: math.unit(18, "lb"),
  16626. name: "Front",
  16627. image: {
  16628. source: "./media/characters/nino/front.svg"
  16629. }
  16630. },
  16631. },
  16632. [
  16633. {
  16634. name: "Normal",
  16635. height: math.unit(1 + 1 / 12, "feet"),
  16636. default: true
  16637. },
  16638. ]
  16639. ))
  16640. characterMakers.push(() => makeCharacter(
  16641. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16642. {
  16643. front: {
  16644. height: math.unit(1, "feet"),
  16645. weight: math.unit(16, "lb"),
  16646. name: "Front",
  16647. image: {
  16648. source: "./media/characters/viola/front.svg"
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(1, "feet"),
  16656. default: true
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(6 + 5 / 12, "feet"),
  16665. weight: math.unit(580, "lb"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/atlas/front.svg",
  16669. extra: 298.5 / 290,
  16670. bottom: 0.015
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Normal",
  16677. height: math.unit(6 + 5 / 12, "feet"),
  16678. default: true
  16679. },
  16680. ]
  16681. ))
  16682. characterMakers.push(() => makeCharacter(
  16683. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16684. {
  16685. side: {
  16686. height: math.unit(1 + 10 / 12, "feet"),
  16687. weight: math.unit(25, "lb"),
  16688. name: "Side",
  16689. image: {
  16690. source: "./media/characters/davy/side.svg",
  16691. extra: 200 / 170,
  16692. bottom: 0.01
  16693. }
  16694. },
  16695. },
  16696. [
  16697. {
  16698. name: "Normal",
  16699. height: math.unit(1 + 10 / 12, "feet"),
  16700. default: true
  16701. },
  16702. ]
  16703. ))
  16704. characterMakers.push(() => makeCharacter(
  16705. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16706. {
  16707. side: {
  16708. height: math.unit(4 + 8 / 12, "feet"),
  16709. weight: math.unit(166, "lb"),
  16710. name: "Side",
  16711. image: {
  16712. source: "./media/characters/fiona/side.svg",
  16713. extra: 232 / 220,
  16714. bottom: 0.03
  16715. }
  16716. },
  16717. },
  16718. [
  16719. {
  16720. name: "Normal",
  16721. height: math.unit(4 + 8 / 12, "feet"),
  16722. default: true
  16723. },
  16724. ]
  16725. ))
  16726. characterMakers.push(() => makeCharacter(
  16727. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16728. {
  16729. front: {
  16730. height: math.unit(2, "feet"),
  16731. weight: math.unit(62, "lb"),
  16732. name: "Front",
  16733. image: {
  16734. source: "./media/characters/lyla/front.svg",
  16735. bottom: 0.1
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(2, "feet"),
  16743. default: true
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16749. {
  16750. side: {
  16751. height: math.unit(1.8, "feet"),
  16752. weight: math.unit(44, "lb"),
  16753. name: "Side",
  16754. image: {
  16755. source: "./media/characters/perseus/side.svg",
  16756. bottom: 0.21
  16757. }
  16758. },
  16759. },
  16760. [
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(1.8, "feet"),
  16764. default: true
  16765. },
  16766. ]
  16767. ))
  16768. characterMakers.push(() => makeCharacter(
  16769. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16770. {
  16771. side: {
  16772. height: math.unit(4 + 2 / 12, "feet"),
  16773. weight: math.unit(20, "lb"),
  16774. name: "Side",
  16775. image: {
  16776. source: "./media/characters/remus/side.svg"
  16777. }
  16778. },
  16779. },
  16780. [
  16781. {
  16782. name: "Normal",
  16783. height: math.unit(4 + 2 / 12, "feet"),
  16784. default: true
  16785. },
  16786. ]
  16787. ))
  16788. characterMakers.push(() => makeCharacter(
  16789. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16790. {
  16791. front: {
  16792. height: math.unit(4 + 11 / 12, "feet"),
  16793. weight: math.unit(114, "lb"),
  16794. name: "Front",
  16795. image: {
  16796. source: "./media/characters/raf/front.svg",
  16797. bottom: 20.5 / 1863
  16798. }
  16799. },
  16800. side: {
  16801. height: math.unit(4 + 11 / 12, "feet"),
  16802. weight: math.unit(114, "lb"),
  16803. name: "Side",
  16804. image: {
  16805. source: "./media/characters/raf/side.svg",
  16806. bottom: 22 / 1822
  16807. }
  16808. },
  16809. },
  16810. [
  16811. {
  16812. name: "Micro",
  16813. height: math.unit(2, "inches")
  16814. },
  16815. {
  16816. name: "Normal",
  16817. height: math.unit(4 + 11 / 12, "feet"),
  16818. default: true
  16819. },
  16820. {
  16821. name: "Macro",
  16822. height: math.unit(70, "feet")
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16828. {
  16829. front: {
  16830. height: math.unit(1.5, "meters"),
  16831. weight: math.unit(68, "kg"),
  16832. name: "Front",
  16833. image: {
  16834. source: "./media/characters/liam-einarr/front.svg",
  16835. extra: 2822 / 2666
  16836. }
  16837. },
  16838. back: {
  16839. height: math.unit(1.5, "meters"),
  16840. weight: math.unit(68, "kg"),
  16841. name: "Back",
  16842. image: {
  16843. source: "./media/characters/liam-einarr/back.svg",
  16844. extra: 2822 / 2666,
  16845. bottom: 0.015
  16846. }
  16847. },
  16848. },
  16849. [
  16850. {
  16851. name: "Normal",
  16852. height: math.unit(1.5, "meters"),
  16853. default: true
  16854. },
  16855. {
  16856. name: "Macro",
  16857. height: math.unit(150, "meters")
  16858. },
  16859. {
  16860. name: "Megamacro",
  16861. height: math.unit(35, "km")
  16862. },
  16863. ]
  16864. ))
  16865. characterMakers.push(() => makeCharacter(
  16866. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16867. {
  16868. front: {
  16869. height: math.unit(6, "feet"),
  16870. weight: math.unit(75, "kg"),
  16871. name: "Front",
  16872. image: {
  16873. source: "./media/characters/linda/front.svg",
  16874. extra: 930 / 874,
  16875. bottom: 0.004
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Normal",
  16882. height: math.unit(6, "feet"),
  16883. default: true
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16889. {
  16890. front: {
  16891. height: math.unit(6 + 8 / 12, "feet"),
  16892. weight: math.unit(220, "lb"),
  16893. name: "Front",
  16894. image: {
  16895. source: "./media/characters/caylex/front.svg",
  16896. extra: 821 / 772,
  16897. bottom: 0.07
  16898. }
  16899. },
  16900. back: {
  16901. height: math.unit(6 + 8 / 12, "feet"),
  16902. weight: math.unit(220, "lb"),
  16903. name: "Back",
  16904. image: {
  16905. source: "./media/characters/caylex/back.svg",
  16906. extra: 821 / 772,
  16907. bottom: 0.022
  16908. }
  16909. },
  16910. hand: {
  16911. height: math.unit(1.25, "feet"),
  16912. name: "Hand",
  16913. image: {
  16914. source: "./media/characters/caylex/hand.svg"
  16915. }
  16916. },
  16917. foot: {
  16918. height: math.unit(1.6, "feet"),
  16919. name: "Foot",
  16920. image: {
  16921. source: "./media/characters/caylex/foot.svg"
  16922. }
  16923. },
  16924. armored: {
  16925. height: math.unit(6 + 8 / 12, "feet"),
  16926. weight: math.unit(250, "lb"),
  16927. name: "Armored",
  16928. image: {
  16929. source: "./media/characters/caylex/armored.svg",
  16930. extra: 1420 / 1310,
  16931. bottom: 0.045
  16932. }
  16933. },
  16934. },
  16935. [
  16936. {
  16937. name: "Normal",
  16938. height: math.unit(6 + 8 / 12, "feet"),
  16939. default: true
  16940. },
  16941. {
  16942. name: "Normal+",
  16943. height: math.unit(12, "feet")
  16944. },
  16945. ]
  16946. ))
  16947. characterMakers.push(() => makeCharacter(
  16948. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16949. {
  16950. front: {
  16951. height: math.unit(7 + 6 / 12, "feet"),
  16952. weight: math.unit(288, "lb"),
  16953. name: "Front",
  16954. image: {
  16955. source: "./media/characters/alana/front.svg",
  16956. extra: 679 / 653,
  16957. bottom: 22.5 / 701
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(7 + 6 / 12, "feet")
  16965. },
  16966. {
  16967. name: "Large",
  16968. height: math.unit(50, "feet")
  16969. },
  16970. {
  16971. name: "Macro",
  16972. height: math.unit(100, "feet"),
  16973. default: true
  16974. },
  16975. {
  16976. name: "Macro+",
  16977. height: math.unit(200, "feet")
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16983. {
  16984. front: {
  16985. height: math.unit(6 + 1 / 12, "feet"),
  16986. weight: math.unit(210, "lb"),
  16987. name: "Front",
  16988. image: {
  16989. source: "./media/characters/hasani/front.svg",
  16990. extra: 244 / 232,
  16991. bottom: 0.01
  16992. }
  16993. },
  16994. back: {
  16995. height: math.unit(6 + 1 / 12, "feet"),
  16996. weight: math.unit(210, "lb"),
  16997. name: "Back",
  16998. image: {
  16999. source: "./media/characters/hasani/back.svg",
  17000. extra: 244 / 232,
  17001. bottom: 0.01
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(6 + 1 / 12, "feet")
  17009. },
  17010. {
  17011. name: "Macro",
  17012. height: math.unit(175, "feet"),
  17013. default: true
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(1.82, "meters"),
  17022. weight: math.unit(140, "lb"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/nita/front.svg",
  17026. extra: 2473 / 2363,
  17027. bottom: 0.01
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Normal",
  17034. height: math.unit(1.82, "m")
  17035. },
  17036. {
  17037. name: "Macro",
  17038. height: math.unit(300, "m")
  17039. },
  17040. {
  17041. name: "Mistake Canon",
  17042. height: math.unit(0.5, "miles"),
  17043. default: true
  17044. },
  17045. {
  17046. name: "Big Mistake",
  17047. height: math.unit(13, "miles")
  17048. },
  17049. {
  17050. name: "Playing God",
  17051. height: math.unit(2450, "miles")
  17052. },
  17053. ]
  17054. ))
  17055. characterMakers.push(() => makeCharacter(
  17056. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17057. {
  17058. front: {
  17059. height: math.unit(4, "feet"),
  17060. weight: math.unit(120, "lb"),
  17061. name: "Front",
  17062. image: {
  17063. source: "./media/characters/shiriko/front.svg",
  17064. extra: 195 / 188
  17065. }
  17066. },
  17067. },
  17068. [
  17069. {
  17070. name: "Normal",
  17071. height: math.unit(4, "feet"),
  17072. default: true
  17073. },
  17074. ]
  17075. ))
  17076. characterMakers.push(() => makeCharacter(
  17077. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17078. {
  17079. front: {
  17080. height: math.unit(6, "feet"),
  17081. name: "front",
  17082. image: {
  17083. source: "./media/characters/deja/front.svg",
  17084. extra: 926 / 840,
  17085. bottom: 0.07
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Planck Length",
  17092. height: math.unit(1.6e-35, "meters")
  17093. },
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(30.48, "meters"),
  17097. default: true
  17098. },
  17099. {
  17100. name: "Universal",
  17101. height: math.unit(8.8e26, "meters")
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17107. {
  17108. side: {
  17109. height: math.unit(8, "feet"),
  17110. weight: math.unit(6300, "lb"),
  17111. name: "Side",
  17112. image: {
  17113. source: "./media/characters/anima/side.svg",
  17114. bottom: 0.035
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Normal",
  17121. height: math.unit(8, "feet"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(8, "feet"),
  17131. weight: math.unit(350, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/bianca/front.svg",
  17135. extra: 234 / 225,
  17136. bottom: 0.03
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(8, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(6, "feet"),
  17153. weight: math.unit(150, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/adinia/front.svg",
  17157. extra: 1845 / 1672,
  17158. bottom: 0.02
  17159. }
  17160. },
  17161. back: {
  17162. height: math.unit(6, "feet"),
  17163. weight: math.unit(150, "lb"),
  17164. name: "Back",
  17165. image: {
  17166. source: "./media/characters/adinia/back.svg",
  17167. extra: 1845 / 1672,
  17168. bottom: 0.002
  17169. }
  17170. },
  17171. },
  17172. [
  17173. {
  17174. name: "Normal",
  17175. height: math.unit(11 + 5 / 12, "feet"),
  17176. default: true
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17182. {
  17183. front: {
  17184. height: math.unit(3, "meters"),
  17185. weight: math.unit(200, "kg"),
  17186. name: "Front",
  17187. image: {
  17188. source: "./media/characters/lykasa/front.svg",
  17189. extra: 1076 / 976,
  17190. bottom: 0.06
  17191. }
  17192. },
  17193. },
  17194. [
  17195. {
  17196. name: "Normal",
  17197. height: math.unit(3, "meters")
  17198. },
  17199. {
  17200. name: "Kaiju",
  17201. height: math.unit(120, "meters"),
  17202. default: true
  17203. },
  17204. {
  17205. name: "Mega Kaiju",
  17206. height: math.unit(240, "km")
  17207. },
  17208. {
  17209. name: "Giga Kaiju",
  17210. height: math.unit(400, "megameters")
  17211. },
  17212. {
  17213. name: "Tera Kaiju",
  17214. height: math.unit(800, "gigameters")
  17215. },
  17216. {
  17217. name: "Kaiju Dragon Goddess",
  17218. height: math.unit(26, "zettaparsecs")
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17224. {
  17225. side: {
  17226. height: math.unit(283 / 124 * 6, "feet"),
  17227. weight: math.unit(35000, "lb"),
  17228. name: "Side",
  17229. image: {
  17230. source: "./media/characters/malfaren/side.svg",
  17231. extra: 2500 / 1010,
  17232. bottom: 0.01
  17233. }
  17234. },
  17235. front: {
  17236. height: math.unit(22.36, "feet"),
  17237. weight: math.unit(35000, "lb"),
  17238. name: "Front",
  17239. image: {
  17240. source: "./media/characters/malfaren/front.svg",
  17241. extra: 1631 / 1476,
  17242. bottom: 0.01
  17243. }
  17244. },
  17245. maw: {
  17246. height: math.unit(6.9, "feet"),
  17247. name: "Maw",
  17248. image: {
  17249. source: "./media/characters/malfaren/maw.svg"
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Big",
  17256. height: math.unit(283 / 162 * 6, "feet"),
  17257. },
  17258. {
  17259. name: "Bigger",
  17260. height: math.unit(283 / 124 * 6, "feet")
  17261. },
  17262. {
  17263. name: "Massive",
  17264. height: math.unit(283 / 92 * 6, "feet"),
  17265. default: true
  17266. },
  17267. {
  17268. name: "👀💦",
  17269. height: math.unit(283 / 73 * 6, "feet"),
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17275. {
  17276. front: {
  17277. height: math.unit(1.7, "m"),
  17278. weight: math.unit(70, "kg"),
  17279. name: "Front",
  17280. image: {
  17281. source: "./media/characters/kernel/front.svg",
  17282. extra: 222 / 210,
  17283. bottom: 0.007
  17284. }
  17285. },
  17286. },
  17287. [
  17288. {
  17289. name: "Nano",
  17290. height: math.unit(17, "micrometers")
  17291. },
  17292. {
  17293. name: "Micro",
  17294. height: math.unit(1.7, "mm")
  17295. },
  17296. {
  17297. name: "Small",
  17298. height: math.unit(1.7, "cm")
  17299. },
  17300. {
  17301. name: "Normal",
  17302. height: math.unit(1.7, "m"),
  17303. default: true
  17304. },
  17305. ]
  17306. ))
  17307. characterMakers.push(() => makeCharacter(
  17308. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17309. {
  17310. front: {
  17311. height: math.unit(1.75, "meters"),
  17312. weight: math.unit(65, "kg"),
  17313. name: "Front",
  17314. image: {
  17315. source: "./media/characters/jayne-folest/front.svg",
  17316. extra: 2115 / 2007,
  17317. bottom: 0.02
  17318. }
  17319. },
  17320. back: {
  17321. height: math.unit(1.75, "meters"),
  17322. weight: math.unit(65, "kg"),
  17323. name: "Back",
  17324. image: {
  17325. source: "./media/characters/jayne-folest/back.svg",
  17326. extra: 2115 / 2007,
  17327. bottom: 0.005
  17328. }
  17329. },
  17330. frontClothed: {
  17331. height: math.unit(1.75, "meters"),
  17332. weight: math.unit(65, "kg"),
  17333. name: "Front (Clothed)",
  17334. image: {
  17335. source: "./media/characters/jayne-folest/front-clothed.svg",
  17336. extra: 2115 / 2007,
  17337. bottom: 0.035
  17338. }
  17339. },
  17340. hand: {
  17341. height: math.unit(1 / 1.260, "feet"),
  17342. name: "Hand",
  17343. image: {
  17344. source: "./media/characters/jayne-folest/hand.svg"
  17345. }
  17346. },
  17347. foot: {
  17348. height: math.unit(1 / 0.918, "feet"),
  17349. name: "Foot",
  17350. image: {
  17351. source: "./media/characters/jayne-folest/foot.svg"
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Micro",
  17358. height: math.unit(4, "cm")
  17359. },
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(1.75, "meters")
  17363. },
  17364. {
  17365. name: "Macro",
  17366. height: math.unit(47.5, "meters"),
  17367. default: true
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17373. {
  17374. front: {
  17375. height: math.unit(180, "cm"),
  17376. weight: math.unit(70, "kg"),
  17377. name: "Front",
  17378. image: {
  17379. source: "./media/characters/algier/front.svg",
  17380. extra: 596 / 572,
  17381. bottom: 0.04
  17382. }
  17383. },
  17384. back: {
  17385. height: math.unit(180, "cm"),
  17386. weight: math.unit(70, "kg"),
  17387. name: "Back",
  17388. image: {
  17389. source: "./media/characters/algier/back.svg",
  17390. extra: 596 / 572,
  17391. bottom: 0.025
  17392. }
  17393. },
  17394. frontdressed: {
  17395. height: math.unit(180, "cm"),
  17396. weight: math.unit(150, "kg"),
  17397. name: "Front-dressed",
  17398. image: {
  17399. source: "./media/characters/algier/front-dressed.svg",
  17400. extra: 596 / 572,
  17401. bottom: 0.038
  17402. }
  17403. },
  17404. },
  17405. [
  17406. {
  17407. name: "Micro",
  17408. height: math.unit(5, "cm")
  17409. },
  17410. {
  17411. name: "Normal",
  17412. height: math.unit(180, "cm"),
  17413. default: true
  17414. },
  17415. {
  17416. name: "Macro",
  17417. height: math.unit(64, "m")
  17418. },
  17419. ]
  17420. ))
  17421. characterMakers.push(() => makeCharacter(
  17422. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17423. {
  17424. upright: {
  17425. height: math.unit(7, "feet"),
  17426. weight: math.unit(300, "lb"),
  17427. name: "Upright",
  17428. image: {
  17429. source: "./media/characters/pretzel/upright.svg",
  17430. extra: 534 / 522,
  17431. bottom: 0.065
  17432. }
  17433. },
  17434. sprawling: {
  17435. height: math.unit(3.75, "feet"),
  17436. weight: math.unit(300, "lb"),
  17437. name: "Sprawling",
  17438. image: {
  17439. source: "./media/characters/pretzel/sprawling.svg",
  17440. extra: 314 / 281,
  17441. bottom: 0.1
  17442. }
  17443. },
  17444. tongue: {
  17445. height: math.unit(2, "feet"),
  17446. name: "Tongue",
  17447. image: {
  17448. source: "./media/characters/pretzel/tongue.svg"
  17449. }
  17450. },
  17451. },
  17452. [
  17453. {
  17454. name: "Normal",
  17455. height: math.unit(7, "feet"),
  17456. default: true
  17457. },
  17458. {
  17459. name: "Oversized",
  17460. height: math.unit(15, "feet")
  17461. },
  17462. {
  17463. name: "Huge",
  17464. height: math.unit(30, "feet")
  17465. },
  17466. {
  17467. name: "Macro",
  17468. height: math.unit(250, "feet")
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17474. {
  17475. sideFront: {
  17476. height: math.unit(5 + 2 / 12, "feet"),
  17477. weight: math.unit(120, "lb"),
  17478. name: "Front Side",
  17479. image: {
  17480. source: "./media/characters/roxi/side-front.svg",
  17481. extra: 2924 / 2717,
  17482. bottom: 0.08
  17483. }
  17484. },
  17485. sideBack: {
  17486. height: math.unit(5 + 2 / 12, "feet"),
  17487. weight: math.unit(120, "lb"),
  17488. name: "Back Side",
  17489. image: {
  17490. source: "./media/characters/roxi/side-back.svg",
  17491. extra: 2904 / 2693,
  17492. bottom: 0.06
  17493. }
  17494. },
  17495. front: {
  17496. height: math.unit(5 + 2 / 12, "feet"),
  17497. weight: math.unit(120, "lb"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/roxi/front.svg",
  17501. extra: 2028 / 1907,
  17502. bottom: 0.01
  17503. }
  17504. },
  17505. frontAlt: {
  17506. height: math.unit(5 + 2 / 12, "feet"),
  17507. weight: math.unit(120, "lb"),
  17508. name: "Front (Alt)",
  17509. image: {
  17510. source: "./media/characters/roxi/front-alt.svg",
  17511. extra: 1828 / 1798,
  17512. bottom: 0.01
  17513. }
  17514. },
  17515. sitting: {
  17516. height: math.unit(2.8, "feet"),
  17517. weight: math.unit(120, "lb"),
  17518. name: "Sitting",
  17519. image: {
  17520. source: "./media/characters/roxi/sitting.svg",
  17521. extra: 2660 / 2462,
  17522. bottom: 0.1
  17523. }
  17524. },
  17525. },
  17526. [
  17527. {
  17528. name: "Normal",
  17529. height: math.unit(5 + 2 / 12, "feet"),
  17530. default: true
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17536. {
  17537. side: {
  17538. height: math.unit(55, "feet"),
  17539. weight: math.unit(153, "tons"),
  17540. name: "Side",
  17541. image: {
  17542. source: "./media/characters/shadow/side.svg",
  17543. extra: 701 / 628,
  17544. bottom: 0.02
  17545. }
  17546. },
  17547. flying: {
  17548. height: math.unit(145, "feet"),
  17549. weight: math.unit(153, "tons"),
  17550. name: "Flying",
  17551. image: {
  17552. source: "./media/characters/shadow/flying.svg"
  17553. }
  17554. },
  17555. },
  17556. [
  17557. {
  17558. name: "Normal",
  17559. height: math.unit(55, "feet"),
  17560. default: true
  17561. },
  17562. ]
  17563. ))
  17564. characterMakers.push(() => makeCharacter(
  17565. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17566. {
  17567. front: {
  17568. height: math.unit(6, "feet"),
  17569. weight: math.unit(200, "lb"),
  17570. name: "Front",
  17571. image: {
  17572. source: "./media/characters/marcie/front.svg",
  17573. extra: 960 / 876,
  17574. bottom: 58 / 1017.87
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Macro",
  17581. height: math.unit(1, "mile"),
  17582. default: true
  17583. },
  17584. ]
  17585. ))
  17586. characterMakers.push(() => makeCharacter(
  17587. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17588. {
  17589. front: {
  17590. height: math.unit(7, "feet"),
  17591. weight: math.unit(200, "lb"),
  17592. name: "Front",
  17593. image: {
  17594. source: "./media/characters/kachina/front.svg",
  17595. extra: 1290.68 / 1119,
  17596. bottom: 36.5 / 1327.18
  17597. }
  17598. },
  17599. },
  17600. [
  17601. {
  17602. name: "Normal",
  17603. height: math.unit(7, "feet"),
  17604. default: true
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17610. {
  17611. looking: {
  17612. height: math.unit(2, "meters"),
  17613. weight: math.unit(300, "kg"),
  17614. name: "Looking",
  17615. image: {
  17616. source: "./media/characters/kash/looking.svg",
  17617. extra: 474 / 344,
  17618. bottom: 0.03
  17619. }
  17620. },
  17621. side: {
  17622. height: math.unit(2, "meters"),
  17623. weight: math.unit(300, "kg"),
  17624. name: "Side",
  17625. image: {
  17626. source: "./media/characters/kash/side.svg",
  17627. extra: 302 / 251,
  17628. bottom: 0.03
  17629. }
  17630. },
  17631. front: {
  17632. height: math.unit(2, "meters"),
  17633. weight: math.unit(300, "kg"),
  17634. name: "Front",
  17635. image: {
  17636. source: "./media/characters/kash/front.svg",
  17637. extra: 495 / 360,
  17638. bottom: 0.015
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Normal",
  17645. height: math.unit(2, "meters"),
  17646. default: true
  17647. },
  17648. {
  17649. name: "Big",
  17650. height: math.unit(3, "meters")
  17651. },
  17652. {
  17653. name: "Large",
  17654. height: math.unit(5, "meters")
  17655. },
  17656. ]
  17657. ))
  17658. characterMakers.push(() => makeCharacter(
  17659. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17660. {
  17661. feeding: {
  17662. height: math.unit(6.7, "feet"),
  17663. weight: math.unit(350, "lb"),
  17664. name: "Feeding",
  17665. image: {
  17666. source: "./media/characters/lalim/feeding.svg",
  17667. }
  17668. },
  17669. },
  17670. [
  17671. {
  17672. name: "Normal",
  17673. height: math.unit(6.7, "feet"),
  17674. default: true
  17675. },
  17676. ]
  17677. ))
  17678. characterMakers.push(() => makeCharacter(
  17679. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17680. {
  17681. front: {
  17682. height: math.unit(9.5, "feet"),
  17683. weight: math.unit(600, "lb"),
  17684. name: "Front",
  17685. image: {
  17686. source: "./media/characters/de'vout/front.svg",
  17687. extra: 1443 / 1328,
  17688. bottom: 0.025
  17689. }
  17690. },
  17691. back: {
  17692. height: math.unit(9.5, "feet"),
  17693. weight: math.unit(600, "lb"),
  17694. name: "Back",
  17695. image: {
  17696. source: "./media/characters/de'vout/back.svg",
  17697. extra: 1443 / 1328
  17698. }
  17699. },
  17700. frontDressed: {
  17701. height: math.unit(9.5, "feet"),
  17702. weight: math.unit(600, "lb"),
  17703. name: "Front (Dressed",
  17704. image: {
  17705. source: "./media/characters/de'vout/front-dressed.svg",
  17706. extra: 1443 / 1328,
  17707. bottom: 0.025
  17708. }
  17709. },
  17710. backDressed: {
  17711. height: math.unit(9.5, "feet"),
  17712. weight: math.unit(600, "lb"),
  17713. name: "Back (Dressed",
  17714. image: {
  17715. source: "./media/characters/de'vout/back-dressed.svg",
  17716. extra: 1443 / 1328
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(9.5, "feet"),
  17724. default: true
  17725. },
  17726. ]
  17727. ))
  17728. characterMakers.push(() => makeCharacter(
  17729. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17730. {
  17731. front: {
  17732. height: math.unit(8, "feet"),
  17733. weight: math.unit(225, "lb"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/talana/front.svg",
  17737. extra: 1410 / 1300,
  17738. bottom: 0.015
  17739. }
  17740. },
  17741. frontDressed: {
  17742. height: math.unit(8, "feet"),
  17743. weight: math.unit(225, "lb"),
  17744. name: "Front (Dressed",
  17745. image: {
  17746. source: "./media/characters/talana/front-dressed.svg",
  17747. extra: 1410 / 1300,
  17748. bottom: 0.015
  17749. }
  17750. },
  17751. },
  17752. [
  17753. {
  17754. name: "Normal",
  17755. height: math.unit(8, "feet"),
  17756. default: true
  17757. },
  17758. ]
  17759. ))
  17760. characterMakers.push(() => makeCharacter(
  17761. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17762. {
  17763. side: {
  17764. height: math.unit(7.2, "feet"),
  17765. weight: math.unit(150, "lb"),
  17766. name: "Side",
  17767. image: {
  17768. source: "./media/characters/xeauvok/side.svg",
  17769. extra: 1975 / 1523,
  17770. bottom: 0.07
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Normal",
  17777. height: math.unit(7.2, "feet"),
  17778. default: true
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17784. {
  17785. side: {
  17786. height: math.unit(10, "feet"),
  17787. weight: math.unit(900, "kg"),
  17788. name: "Side",
  17789. image: {
  17790. source: "./media/characters/zara/side.svg",
  17791. extra: 504 / 498
  17792. }
  17793. },
  17794. },
  17795. [
  17796. {
  17797. name: "Normal",
  17798. height: math.unit(10, "feet"),
  17799. default: true
  17800. },
  17801. ]
  17802. ))
  17803. characterMakers.push(() => makeCharacter(
  17804. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17805. {
  17806. side: {
  17807. height: math.unit(6, "feet"),
  17808. weight: math.unit(150, "lb"),
  17809. name: "Side",
  17810. image: {
  17811. source: "./media/characters/richard-dragon/side.svg",
  17812. extra: 845 / 340,
  17813. bottom: 0.017
  17814. }
  17815. },
  17816. maw: {
  17817. height: math.unit(2.97, "feet"),
  17818. name: "Maw",
  17819. image: {
  17820. source: "./media/characters/richard-dragon/maw.svg"
  17821. }
  17822. },
  17823. },
  17824. [
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17829. {
  17830. front: {
  17831. height: math.unit(4, "feet"),
  17832. weight: math.unit(100, "lb"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/richard-smeargle/front.svg",
  17836. extra: 2952 / 2820,
  17837. bottom: 0.028
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(4, "feet"),
  17845. default: true
  17846. },
  17847. {
  17848. name: "Dynamax",
  17849. height: math.unit(20, "meters")
  17850. },
  17851. ]
  17852. ))
  17853. characterMakers.push(() => makeCharacter(
  17854. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17855. {
  17856. front: {
  17857. height: math.unit(6, "feet"),
  17858. weight: math.unit(110, "lb"),
  17859. name: "Front",
  17860. image: {
  17861. source: "./media/characters/klay/front.svg",
  17862. extra: 962 / 883,
  17863. bottom: 0.04
  17864. }
  17865. },
  17866. back: {
  17867. height: math.unit(6, "feet"),
  17868. weight: math.unit(110, "lb"),
  17869. name: "Back",
  17870. image: {
  17871. source: "./media/characters/klay/back.svg",
  17872. extra: 962 / 883
  17873. }
  17874. },
  17875. beans: {
  17876. height: math.unit(1.15, "feet"),
  17877. name: "Beans",
  17878. image: {
  17879. source: "./media/characters/klay/beans.svg"
  17880. }
  17881. },
  17882. },
  17883. [
  17884. {
  17885. name: "Micro",
  17886. height: math.unit(6, "inches")
  17887. },
  17888. {
  17889. name: "Mini",
  17890. height: math.unit(3, "feet")
  17891. },
  17892. {
  17893. name: "Normal",
  17894. height: math.unit(6, "feet"),
  17895. default: true
  17896. },
  17897. {
  17898. name: "Big",
  17899. height: math.unit(25, "feet")
  17900. },
  17901. {
  17902. name: "Macro",
  17903. height: math.unit(100, "feet")
  17904. },
  17905. {
  17906. name: "Megamacro",
  17907. height: math.unit(400, "feet")
  17908. },
  17909. ]
  17910. ))
  17911. characterMakers.push(() => makeCharacter(
  17912. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17913. {
  17914. front: {
  17915. height: math.unit(6, "feet"),
  17916. weight: math.unit(160, "lb"),
  17917. name: "Front",
  17918. image: {
  17919. source: "./media/characters/marcus/front.svg",
  17920. extra: 734 / 676,
  17921. bottom: 0.03
  17922. }
  17923. },
  17924. },
  17925. [
  17926. {
  17927. name: "Little",
  17928. height: math.unit(6, "feet")
  17929. },
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(110, "feet"),
  17933. default: true
  17934. },
  17935. {
  17936. name: "Macro",
  17937. height: math.unit(250, "feet")
  17938. },
  17939. {
  17940. name: "Megamacro",
  17941. height: math.unit(1000, "feet")
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17947. {
  17948. front: {
  17949. height: math.unit(7, "feet"),
  17950. weight: math.unit(275, "lb"),
  17951. name: "Front",
  17952. image: {
  17953. source: "./media/characters/claude-delroute/front.svg",
  17954. extra: 230 / 214,
  17955. bottom: 0.007
  17956. }
  17957. },
  17958. side: {
  17959. height: math.unit(7, "feet"),
  17960. weight: math.unit(275, "lb"),
  17961. name: "Side",
  17962. image: {
  17963. source: "./media/characters/claude-delroute/side.svg",
  17964. extra: 222 / 214,
  17965. bottom: 0.01
  17966. }
  17967. },
  17968. back: {
  17969. height: math.unit(7, "feet"),
  17970. weight: math.unit(275, "lb"),
  17971. name: "Back",
  17972. image: {
  17973. source: "./media/characters/claude-delroute/back.svg",
  17974. extra: 230 / 214,
  17975. bottom: 0.015
  17976. }
  17977. },
  17978. maw: {
  17979. height: math.unit(0.6407, "meters"),
  17980. name: "Maw",
  17981. image: {
  17982. source: "./media/characters/claude-delroute/maw.svg"
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Normal",
  17989. height: math.unit(7, "feet"),
  17990. default: true
  17991. },
  17992. {
  17993. name: "Lorge",
  17994. height: math.unit(20, "feet")
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18000. {
  18001. front: {
  18002. height: math.unit(8 + 4 / 12, "feet"),
  18003. weight: math.unit(600, "lb"),
  18004. name: "Front",
  18005. image: {
  18006. source: "./media/characters/dragonien/front.svg",
  18007. extra: 100 / 94,
  18008. bottom: 3.3 / 103.3445
  18009. }
  18010. },
  18011. back: {
  18012. height: math.unit(8 + 4 / 12, "feet"),
  18013. weight: math.unit(600, "lb"),
  18014. name: "Back",
  18015. image: {
  18016. source: "./media/characters/dragonien/back.svg",
  18017. extra: 776 / 746,
  18018. bottom: 6.4 / 782.0616
  18019. }
  18020. },
  18021. foot: {
  18022. height: math.unit(1.54, "feet"),
  18023. name: "Foot",
  18024. image: {
  18025. source: "./media/characters/dragonien/foot.svg",
  18026. }
  18027. },
  18028. },
  18029. [
  18030. {
  18031. name: "Normal",
  18032. height: math.unit(8 + 4 / 12, "feet"),
  18033. default: true
  18034. },
  18035. {
  18036. name: "Macro",
  18037. height: math.unit(200, "feet")
  18038. },
  18039. {
  18040. name: "Megamacro",
  18041. height: math.unit(1, "mile")
  18042. },
  18043. {
  18044. name: "Gigamacro",
  18045. height: math.unit(1000, "miles")
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18051. {
  18052. front: {
  18053. height: math.unit(5 + 2 / 12, "feet"),
  18054. weight: math.unit(110, "lb"),
  18055. name: "Front",
  18056. image: {
  18057. source: "./media/characters/desta/front.svg",
  18058. extra: 767 / 726,
  18059. bottom: 11.7 / 779
  18060. }
  18061. },
  18062. back: {
  18063. height: math.unit(5 + 2 / 12, "feet"),
  18064. weight: math.unit(110, "lb"),
  18065. name: "Back",
  18066. image: {
  18067. source: "./media/characters/desta/back.svg",
  18068. extra: 777 / 728,
  18069. bottom: 6 / 784
  18070. }
  18071. },
  18072. frontAlt: {
  18073. height: math.unit(5 + 2 / 12, "feet"),
  18074. weight: math.unit(110, "lb"),
  18075. name: "Front",
  18076. image: {
  18077. source: "./media/characters/desta/front-alt.svg",
  18078. extra: 1482 / 1417
  18079. }
  18080. },
  18081. side: {
  18082. height: math.unit(5 + 2 / 12, "feet"),
  18083. weight: math.unit(110, "lb"),
  18084. name: "Side",
  18085. image: {
  18086. source: "./media/characters/desta/side.svg",
  18087. extra: 2579 / 2491,
  18088. bottom: 0.053
  18089. }
  18090. },
  18091. },
  18092. [
  18093. {
  18094. name: "Micro",
  18095. height: math.unit(6, "inches")
  18096. },
  18097. {
  18098. name: "Normal",
  18099. height: math.unit(5 + 2 / 12, "feet"),
  18100. default: true
  18101. },
  18102. {
  18103. name: "Macro",
  18104. height: math.unit(62, "feet")
  18105. },
  18106. {
  18107. name: "Megamacro",
  18108. height: math.unit(1800, "feet")
  18109. },
  18110. ]
  18111. ))
  18112. characterMakers.push(() => makeCharacter(
  18113. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18114. {
  18115. front: {
  18116. height: math.unit(10, "feet"),
  18117. weight: math.unit(700, "lb"),
  18118. name: "Front",
  18119. image: {
  18120. source: "./media/characters/storm-alystar/front.svg",
  18121. extra: 2112 / 1898,
  18122. bottom: 0.034
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Micro",
  18129. height: math.unit(3.5, "inches")
  18130. },
  18131. {
  18132. name: "Normal",
  18133. height: math.unit(10, "feet"),
  18134. default: true
  18135. },
  18136. {
  18137. name: "Macro",
  18138. height: math.unit(400, "feet")
  18139. },
  18140. {
  18141. name: "Deific",
  18142. height: math.unit(60, "miles")
  18143. },
  18144. ]
  18145. ))
  18146. characterMakers.push(() => makeCharacter(
  18147. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18148. {
  18149. front: {
  18150. height: math.unit(2.35, "meters"),
  18151. weight: math.unit(119, "kg"),
  18152. name: "Front",
  18153. image: {
  18154. source: "./media/characters/ilia/front.svg",
  18155. extra: 1285 / 1255,
  18156. bottom: 0.06
  18157. }
  18158. },
  18159. },
  18160. [
  18161. {
  18162. name: "Normal",
  18163. height: math.unit(2.35, "meters")
  18164. },
  18165. {
  18166. name: "Macro",
  18167. height: math.unit(140, "meters"),
  18168. default: true
  18169. },
  18170. {
  18171. name: "Megamacro",
  18172. height: math.unit(100, "miles")
  18173. },
  18174. ]
  18175. ))
  18176. characterMakers.push(() => makeCharacter(
  18177. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18178. {
  18179. front: {
  18180. height: math.unit(6 + 5 / 12, "feet"),
  18181. weight: math.unit(190, "lb"),
  18182. name: "Front",
  18183. image: {
  18184. source: "./media/characters/kingdead/front.svg",
  18185. extra: 1228 / 1177
  18186. }
  18187. },
  18188. },
  18189. [
  18190. {
  18191. name: "Micro",
  18192. height: math.unit(7, "inches")
  18193. },
  18194. {
  18195. name: "Normal",
  18196. height: math.unit(6 + 5 / 12, "feet")
  18197. },
  18198. {
  18199. name: "Macro",
  18200. height: math.unit(150, "feet"),
  18201. default: true
  18202. },
  18203. {
  18204. name: "Megamacro",
  18205. height: math.unit(200, "miles")
  18206. },
  18207. ]
  18208. ))
  18209. characterMakers.push(() => makeCharacter(
  18210. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18211. {
  18212. front: {
  18213. height: math.unit(8, "feet"),
  18214. weight: math.unit(600, "lb"),
  18215. name: "Front",
  18216. image: {
  18217. source: "./media/characters/kyrehx/front.svg",
  18218. extra: 1195 / 1095,
  18219. bottom: 0.034
  18220. }
  18221. },
  18222. },
  18223. [
  18224. {
  18225. name: "Micro",
  18226. height: math.unit(2, "inches")
  18227. },
  18228. {
  18229. name: "Normal",
  18230. height: math.unit(8, "feet"),
  18231. default: true
  18232. },
  18233. {
  18234. name: "Macro",
  18235. height: math.unit(255, "feet")
  18236. },
  18237. ]
  18238. ))
  18239. characterMakers.push(() => makeCharacter(
  18240. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18241. {
  18242. front: {
  18243. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18244. weight: math.unit(184, "lb"),
  18245. name: "Front",
  18246. image: {
  18247. source: "./media/characters/xang/front.svg",
  18248. extra: 845 / 755
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18256. default: true
  18257. },
  18258. {
  18259. name: "Macro",
  18260. height: math.unit(0.935 * 146, "feet")
  18261. },
  18262. {
  18263. name: "Megamacro",
  18264. height: math.unit(0.935 * 3, "miles")
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18270. {
  18271. frontDressed: {
  18272. height: math.unit(5 + 7 / 12, "feet"),
  18273. weight: math.unit(140, "lb"),
  18274. name: "Front (Dressed)",
  18275. image: {
  18276. source: "./media/characters/doc-weardno/front-dressed.svg",
  18277. extra: 263 / 234
  18278. }
  18279. },
  18280. backDressed: {
  18281. height: math.unit(5 + 7 / 12, "feet"),
  18282. weight: math.unit(140, "lb"),
  18283. name: "Back (Dressed)",
  18284. image: {
  18285. source: "./media/characters/doc-weardno/back-dressed.svg",
  18286. extra: 266 / 238
  18287. }
  18288. },
  18289. front: {
  18290. height: math.unit(5 + 7 / 12, "feet"),
  18291. weight: math.unit(140, "lb"),
  18292. name: "Front",
  18293. image: {
  18294. source: "./media/characters/doc-weardno/front.svg",
  18295. extra: 254 / 233
  18296. }
  18297. },
  18298. },
  18299. [
  18300. {
  18301. name: "Micro",
  18302. height: math.unit(3, "inches")
  18303. },
  18304. {
  18305. name: "Normal",
  18306. height: math.unit(5 + 7 / 12, "feet"),
  18307. default: true
  18308. },
  18309. {
  18310. name: "Macro",
  18311. height: math.unit(25, "feet")
  18312. },
  18313. {
  18314. name: "Megamacro",
  18315. height: math.unit(2, "miles")
  18316. },
  18317. ]
  18318. ))
  18319. characterMakers.push(() => makeCharacter(
  18320. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18321. {
  18322. front: {
  18323. height: math.unit(6 + 2 / 12, "feet"),
  18324. weight: math.unit(153, "lb"),
  18325. name: "Front",
  18326. image: {
  18327. source: "./media/characters/seth-whilst/front.svg",
  18328. bottom: 0.07
  18329. }
  18330. },
  18331. },
  18332. [
  18333. {
  18334. name: "Micro",
  18335. height: math.unit(5, "inches")
  18336. },
  18337. {
  18338. name: "Normal",
  18339. height: math.unit(6 + 2 / 12, "feet"),
  18340. default: true
  18341. },
  18342. ]
  18343. ))
  18344. characterMakers.push(() => makeCharacter(
  18345. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18346. {
  18347. front: {
  18348. height: math.unit(3, "inches"),
  18349. weight: math.unit(8, "grams"),
  18350. name: "Front",
  18351. image: {
  18352. source: "./media/characters/pocket-jabari/front.svg",
  18353. extra: 1024 / 974,
  18354. bottom: 0.039
  18355. }
  18356. },
  18357. },
  18358. [
  18359. {
  18360. name: "Minimicro",
  18361. height: math.unit(8, "mm")
  18362. },
  18363. {
  18364. name: "Micro",
  18365. height: math.unit(3, "inches"),
  18366. default: true
  18367. },
  18368. {
  18369. name: "Normal",
  18370. height: math.unit(3, "feet")
  18371. },
  18372. ]
  18373. ))
  18374. characterMakers.push(() => makeCharacter(
  18375. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18376. {
  18377. front: {
  18378. height: math.unit(15, "feet"),
  18379. weight: math.unit(3280, "lb"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/sapphy/front.svg",
  18383. extra: 671 / 577,
  18384. bottom: 0.085
  18385. }
  18386. },
  18387. back: {
  18388. height: math.unit(15, "feet"),
  18389. weight: math.unit(3280, "lb"),
  18390. name: "Back",
  18391. image: {
  18392. source: "./media/characters/sapphy/back.svg",
  18393. extra: 631 / 607,
  18394. bottom: 0.045
  18395. }
  18396. },
  18397. },
  18398. [
  18399. {
  18400. name: "Normal",
  18401. height: math.unit(15, "feet")
  18402. },
  18403. {
  18404. name: "Casual Macro",
  18405. height: math.unit(120, "feet")
  18406. },
  18407. {
  18408. name: "Macro",
  18409. height: math.unit(2150, "feet"),
  18410. default: true
  18411. },
  18412. {
  18413. name: "Megamacro",
  18414. height: math.unit(8, "miles")
  18415. },
  18416. {
  18417. name: "Galaxy Mom",
  18418. height: math.unit(6, "megalightyears")
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18424. {
  18425. front: {
  18426. height: math.unit(6, "feet"),
  18427. weight: math.unit(170, "lb"),
  18428. name: "Front",
  18429. image: {
  18430. source: "./media/characters/kiro/front.svg",
  18431. extra: 1064 / 1012,
  18432. bottom: 0.052
  18433. }
  18434. },
  18435. },
  18436. [
  18437. {
  18438. name: "Micro",
  18439. height: math.unit(6, "inches")
  18440. },
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(6, "feet"),
  18444. default: true
  18445. },
  18446. {
  18447. name: "Macro",
  18448. height: math.unit(72, "feet")
  18449. },
  18450. ]
  18451. ))
  18452. characterMakers.push(() => makeCharacter(
  18453. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18454. {
  18455. front: {
  18456. height: math.unit(5 + 9 / 12, "feet"),
  18457. weight: math.unit(175, "lb"),
  18458. name: "Front",
  18459. image: {
  18460. source: "./media/characters/irishfox/front.svg",
  18461. extra: 1912 / 1680,
  18462. bottom: 0.02
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Nano",
  18469. height: math.unit(1, "mm")
  18470. },
  18471. {
  18472. name: "Micro",
  18473. height: math.unit(2, "inches")
  18474. },
  18475. {
  18476. name: "Normal",
  18477. height: math.unit(5 + 9 / 12, "feet"),
  18478. default: true
  18479. },
  18480. {
  18481. name: "Macro",
  18482. height: math.unit(45, "feet")
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18488. {
  18489. front: {
  18490. height: math.unit(6 + 1 / 12, "feet"),
  18491. weight: math.unit(75, "lb"),
  18492. name: "Front",
  18493. image: {
  18494. source: "./media/characters/aronai-sieyes/front.svg",
  18495. extra: 1556 / 1480,
  18496. bottom: 0.015
  18497. }
  18498. },
  18499. side: {
  18500. height: math.unit(6 + 1 / 12, "feet"),
  18501. weight: math.unit(75, "lb"),
  18502. name: "Side",
  18503. image: {
  18504. source: "./media/characters/aronai-sieyes/side.svg",
  18505. extra: 1433 / 1390,
  18506. bottom: 0.0393
  18507. }
  18508. },
  18509. back: {
  18510. height: math.unit(6 + 1 / 12, "feet"),
  18511. weight: math.unit(75, "lb"),
  18512. name: "Back",
  18513. image: {
  18514. source: "./media/characters/aronai-sieyes/back.svg",
  18515. extra: 1544 / 1494,
  18516. bottom: 0.02
  18517. }
  18518. },
  18519. frontClothed: {
  18520. height: math.unit(6 + 1 / 12, "feet"),
  18521. weight: math.unit(75, "lb"),
  18522. name: "Front (Clothed)",
  18523. image: {
  18524. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18525. extra: 1582 / 1527
  18526. }
  18527. },
  18528. feral: {
  18529. height: math.unit(18, "feet"),
  18530. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18531. name: "Feral",
  18532. image: {
  18533. source: "./media/characters/aronai-sieyes/feral.svg",
  18534. extra: 1530 / 1240,
  18535. bottom: 0.035
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Micro",
  18542. height: math.unit(2, "inches")
  18543. },
  18544. {
  18545. name: "Normal",
  18546. height: math.unit(6 + 1 / 12, "feet"),
  18547. default: true
  18548. }
  18549. ]
  18550. ))
  18551. characterMakers.push(() => makeCharacter(
  18552. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18553. {
  18554. front: {
  18555. height: math.unit(12, "feet"),
  18556. weight: math.unit(410, "kg"),
  18557. name: "Front",
  18558. image: {
  18559. source: "./media/characters/xuna/front.svg",
  18560. extra: 2184 / 1980
  18561. }
  18562. },
  18563. side: {
  18564. height: math.unit(12, "feet"),
  18565. weight: math.unit(410, "kg"),
  18566. name: "Side",
  18567. image: {
  18568. source: "./media/characters/xuna/side.svg",
  18569. extra: 2184 / 1980
  18570. }
  18571. },
  18572. back: {
  18573. height: math.unit(12, "feet"),
  18574. weight: math.unit(410, "kg"),
  18575. name: "Back",
  18576. image: {
  18577. source: "./media/characters/xuna/back.svg",
  18578. extra: 2184 / 1980
  18579. }
  18580. },
  18581. },
  18582. [
  18583. {
  18584. name: "Nano glow",
  18585. height: math.unit(10, "nm")
  18586. },
  18587. {
  18588. name: "Micro floof",
  18589. height: math.unit(0.3, "m")
  18590. },
  18591. {
  18592. name: "Huggable softy boi",
  18593. height: math.unit(3.6576, "m"),
  18594. default: true
  18595. },
  18596. {
  18597. name: "Admirable floof",
  18598. height: math.unit(80, "meters")
  18599. },
  18600. {
  18601. name: "Gentle macro",
  18602. height: math.unit(300, "meters")
  18603. },
  18604. {
  18605. name: "Very careful floof",
  18606. height: math.unit(3200, "meters")
  18607. },
  18608. {
  18609. name: "The mega floof",
  18610. height: math.unit(36000, "meters")
  18611. },
  18612. {
  18613. name: "Giga-fur-Wicker",
  18614. height: math.unit(4800000, "meters")
  18615. },
  18616. {
  18617. name: "Licky world",
  18618. height: math.unit(20000000, "meters")
  18619. },
  18620. {
  18621. name: "Floofy cyan sun",
  18622. height: math.unit(1500000000, "meters")
  18623. },
  18624. {
  18625. name: "Milky Wicker",
  18626. height: math.unit(1000000000000000000000, "meters")
  18627. },
  18628. {
  18629. name: "The observing Wicker",
  18630. height: math.unit(999999999999999999999999999, "meters")
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18636. {
  18637. front: {
  18638. height: math.unit(5 + 9 / 12, "feet"),
  18639. weight: math.unit(150, "lb"),
  18640. name: "Front",
  18641. image: {
  18642. source: "./media/characters/arokha-sieyes/front.svg",
  18643. extra: 1425 / 1284,
  18644. bottom: 0.05
  18645. }
  18646. },
  18647. },
  18648. [
  18649. {
  18650. name: "Normal",
  18651. height: math.unit(5 + 9 / 12, "feet")
  18652. },
  18653. {
  18654. name: "Macro",
  18655. height: math.unit(30, "meters"),
  18656. default: true
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(6, "feet"),
  18665. weight: math.unit(180, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/arokh-sieyes/front.svg",
  18669. extra: 1830 / 1769,
  18670. bottom: 0.01
  18671. }
  18672. },
  18673. },
  18674. [
  18675. {
  18676. name: "Normal",
  18677. height: math.unit(6, "feet")
  18678. },
  18679. {
  18680. name: "Macro",
  18681. height: math.unit(30, "meters"),
  18682. default: true
  18683. },
  18684. ]
  18685. ))
  18686. characterMakers.push(() => makeCharacter(
  18687. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18688. {
  18689. side: {
  18690. height: math.unit(13 + 1 / 12, "feet"),
  18691. weight: math.unit(8.5, "tonnes"),
  18692. name: "Side",
  18693. image: {
  18694. source: "./media/characters/goldeneye/side.svg",
  18695. extra: 1182 / 778,
  18696. bottom: 0.067
  18697. }
  18698. },
  18699. paw: {
  18700. height: math.unit(3.4, "feet"),
  18701. name: "Paw",
  18702. image: {
  18703. source: "./media/characters/goldeneye/paw.svg"
  18704. }
  18705. },
  18706. },
  18707. [
  18708. {
  18709. name: "Normal",
  18710. height: math.unit(13 + 1 / 12, "feet"),
  18711. default: true
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18717. {
  18718. front: {
  18719. height: math.unit(6 + 1 / 12, "feet"),
  18720. weight: math.unit(210, "lb"),
  18721. name: "Front",
  18722. image: {
  18723. source: "./media/characters/leonardo-lycheborne/front.svg",
  18724. extra: 390 / 365,
  18725. bottom: 0.032
  18726. }
  18727. },
  18728. side: {
  18729. height: math.unit(6 + 1 / 12, "feet"),
  18730. weight: math.unit(210, "lb"),
  18731. name: "Side",
  18732. image: {
  18733. source: "./media/characters/leonardo-lycheborne/side.svg",
  18734. extra: 390 / 365,
  18735. bottom: 0.005
  18736. }
  18737. },
  18738. back: {
  18739. height: math.unit(6 + 1 / 12, "feet"),
  18740. weight: math.unit(210, "lb"),
  18741. name: "Back",
  18742. image: {
  18743. source: "./media/characters/leonardo-lycheborne/back.svg",
  18744. extra: 392 / 366,
  18745. bottom: 0.01
  18746. }
  18747. },
  18748. hand: {
  18749. height: math.unit(1.08, "feet"),
  18750. name: "Hand",
  18751. image: {
  18752. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18753. }
  18754. },
  18755. foot: {
  18756. height: math.unit(1.32, "feet"),
  18757. name: "Foot",
  18758. image: {
  18759. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18760. }
  18761. },
  18762. were: {
  18763. height: math.unit(20, "feet"),
  18764. weight: math.unit(7800, "lb"),
  18765. name: "Were",
  18766. image: {
  18767. source: "./media/characters/leonardo-lycheborne/were.svg",
  18768. extra: 308 / 294,
  18769. bottom: 0.048
  18770. }
  18771. },
  18772. feral: {
  18773. height: math.unit(7.5, "feet"),
  18774. weight: math.unit(600, "lb"),
  18775. name: "Feral",
  18776. image: {
  18777. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18778. extra: 210 / 186,
  18779. bottom: 0.108
  18780. }
  18781. },
  18782. taur: {
  18783. height: math.unit(11, "feet"),
  18784. weight: math.unit(3300, "lb"),
  18785. name: "Taur",
  18786. image: {
  18787. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18788. extra: 320 / 303,
  18789. bottom: 0.025
  18790. }
  18791. },
  18792. barghest: {
  18793. height: math.unit(11, "feet"),
  18794. weight: math.unit(1300, "lb"),
  18795. name: "Barghest",
  18796. image: {
  18797. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18798. extra: 323 / 302,
  18799. bottom: 0.027
  18800. }
  18801. },
  18802. dick: {
  18803. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18804. name: "Dick",
  18805. image: {
  18806. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18807. }
  18808. },
  18809. dickWere: {
  18810. height: math.unit((20) / 3.8, "feet"),
  18811. name: "Dick (Were)",
  18812. image: {
  18813. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18814. }
  18815. },
  18816. },
  18817. [
  18818. {
  18819. name: "Normal",
  18820. height: math.unit(6 + 1 / 12, "feet"),
  18821. default: true
  18822. },
  18823. ]
  18824. ))
  18825. characterMakers.push(() => makeCharacter(
  18826. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18827. {
  18828. front: {
  18829. height: math.unit(10, "feet"),
  18830. weight: math.unit(350, "lb"),
  18831. name: "Front",
  18832. image: {
  18833. source: "./media/characters/jet/front.svg",
  18834. extra: 2050 / 1980,
  18835. bottom: 0.013
  18836. }
  18837. },
  18838. back: {
  18839. height: math.unit(10, "feet"),
  18840. weight: math.unit(350, "lb"),
  18841. name: "Back",
  18842. image: {
  18843. source: "./media/characters/jet/back.svg",
  18844. extra: 2050 / 1980,
  18845. bottom: 0.013
  18846. }
  18847. },
  18848. },
  18849. [
  18850. {
  18851. name: "Micro",
  18852. height: math.unit(6, "inches")
  18853. },
  18854. {
  18855. name: "Normal",
  18856. height: math.unit(10, "feet"),
  18857. default: true
  18858. },
  18859. {
  18860. name: "Macro",
  18861. height: math.unit(100, "feet")
  18862. },
  18863. ]
  18864. ))
  18865. characterMakers.push(() => makeCharacter(
  18866. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18867. {
  18868. front: {
  18869. height: math.unit(15, "feet"),
  18870. weight: math.unit(2800, "lb"),
  18871. name: "Front",
  18872. image: {
  18873. source: "./media/characters/tanarath/front.svg",
  18874. extra: 2392 / 2220,
  18875. bottom: 0.03
  18876. }
  18877. },
  18878. back: {
  18879. height: math.unit(15, "feet"),
  18880. weight: math.unit(2800, "lb"),
  18881. name: "Back",
  18882. image: {
  18883. source: "./media/characters/tanarath/back.svg",
  18884. extra: 2392 / 2220,
  18885. bottom: 0.03
  18886. }
  18887. },
  18888. },
  18889. [
  18890. {
  18891. name: "Normal",
  18892. height: math.unit(15, "feet"),
  18893. default: true
  18894. },
  18895. ]
  18896. ))
  18897. characterMakers.push(() => makeCharacter(
  18898. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18899. {
  18900. front: {
  18901. height: math.unit(7 + 1 / 12, "feet"),
  18902. weight: math.unit(175, "lb"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/patty-cattybatty/front.svg",
  18906. extra: 908 / 874,
  18907. bottom: 0.025
  18908. }
  18909. },
  18910. },
  18911. [
  18912. {
  18913. name: "Micro",
  18914. height: math.unit(1, "inch")
  18915. },
  18916. {
  18917. name: "Normal",
  18918. height: math.unit(7 + 1 / 12, "feet")
  18919. },
  18920. {
  18921. name: "Mini Macro",
  18922. height: math.unit(155, "feet")
  18923. },
  18924. {
  18925. name: "Macro",
  18926. height: math.unit(1077, "feet")
  18927. },
  18928. {
  18929. name: "Mega Macro",
  18930. height: math.unit(47650, "feet"),
  18931. default: true
  18932. },
  18933. {
  18934. name: "Giga Macro",
  18935. height: math.unit(440, "miles")
  18936. },
  18937. {
  18938. name: "Tera Macro",
  18939. height: math.unit(8700, "miles")
  18940. },
  18941. {
  18942. name: "Planetary Macro",
  18943. height: math.unit(32700, "miles")
  18944. },
  18945. {
  18946. name: "Solar Macro",
  18947. height: math.unit(550000, "miles")
  18948. },
  18949. {
  18950. name: "Celestial Macro",
  18951. height: math.unit(2.5, "AU")
  18952. },
  18953. ]
  18954. ))
  18955. characterMakers.push(() => makeCharacter(
  18956. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18957. {
  18958. front: {
  18959. height: math.unit(4 + 5 / 12, "feet"),
  18960. weight: math.unit(90, "lb"),
  18961. name: "Front",
  18962. image: {
  18963. source: "./media/characters/cappu/front.svg",
  18964. extra: 1247 / 1152,
  18965. bottom: 0.012
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Normal",
  18972. height: math.unit(4 + 5 / 12, "feet"),
  18973. default: true
  18974. },
  18975. ]
  18976. ))
  18977. characterMakers.push(() => makeCharacter(
  18978. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18979. {
  18980. frontDressed: {
  18981. height: math.unit(70, "cm"),
  18982. weight: math.unit(6, "kg"),
  18983. name: "Front (Dressed)",
  18984. image: {
  18985. source: "./media/characters/sebi/front-dressed.svg",
  18986. extra: 713.5 / 686.5,
  18987. bottom: 0.003
  18988. }
  18989. },
  18990. front: {
  18991. height: math.unit(70, "cm"),
  18992. weight: math.unit(5, "kg"),
  18993. name: "Front",
  18994. image: {
  18995. source: "./media/characters/sebi/front.svg",
  18996. extra: 713.5 / 686.5,
  18997. bottom: 0.003
  18998. }
  18999. }
  19000. },
  19001. [
  19002. {
  19003. name: "Normal",
  19004. height: math.unit(70, "cm"),
  19005. default: true
  19006. },
  19007. {
  19008. name: "Macro",
  19009. height: math.unit(8, "meters")
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19015. {
  19016. front: {
  19017. height: math.unit(6, "feet"),
  19018. weight: math.unit(150, "lb"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/typhek/front.svg",
  19022. extra: 1948 / 1929,
  19023. bottom: 0.025
  19024. }
  19025. },
  19026. side: {
  19027. height: math.unit(6, "feet"),
  19028. weight: math.unit(150, "lb"),
  19029. name: "Side",
  19030. image: {
  19031. source: "./media/characters/typhek/side.svg",
  19032. extra: 2034 / 2010,
  19033. bottom: 0.003
  19034. }
  19035. },
  19036. back: {
  19037. height: math.unit(6, "feet"),
  19038. weight: math.unit(150, "lb"),
  19039. name: "Back",
  19040. image: {
  19041. source: "./media/characters/typhek/back.svg",
  19042. extra: 2005 / 1978,
  19043. bottom: 0.004
  19044. }
  19045. },
  19046. palm: {
  19047. height: math.unit(1.2, "feet"),
  19048. name: "Palm",
  19049. image: {
  19050. source: "./media/characters/typhek/palm.svg"
  19051. }
  19052. },
  19053. fist: {
  19054. height: math.unit(1.1, "feet"),
  19055. name: "Fist",
  19056. image: {
  19057. source: "./media/characters/typhek/fist.svg"
  19058. }
  19059. },
  19060. foot: {
  19061. height: math.unit(1.57, "feet"),
  19062. name: "Foot",
  19063. image: {
  19064. source: "./media/characters/typhek/foot.svg"
  19065. }
  19066. },
  19067. sole: {
  19068. height: math.unit(2.05, "feet"),
  19069. name: "Sole",
  19070. image: {
  19071. source: "./media/characters/typhek/sole.svg"
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Macro",
  19078. height: math.unit(40, "stories"),
  19079. default: true
  19080. },
  19081. {
  19082. name: "Megamacro",
  19083. height: math.unit(1, "mile")
  19084. },
  19085. {
  19086. name: "Gigamacro",
  19087. height: math.unit(4000, "solarradii")
  19088. },
  19089. {
  19090. name: "Universal",
  19091. height: math.unit(1.1, "universes")
  19092. }
  19093. ]
  19094. ))
  19095. characterMakers.push(() => makeCharacter(
  19096. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19097. {
  19098. side: {
  19099. height: math.unit(5 + 7 / 12, "feet"),
  19100. weight: math.unit(150, "lb"),
  19101. name: "Side",
  19102. image: {
  19103. source: "./media/characters/kassy/side.svg",
  19104. extra: 1280 / 1225,
  19105. bottom: 0.002
  19106. }
  19107. },
  19108. front: {
  19109. height: math.unit(5 + 7 / 12, "feet"),
  19110. weight: math.unit(150, "lb"),
  19111. name: "Front",
  19112. image: {
  19113. source: "./media/characters/kassy/front.svg",
  19114. extra: 1280 / 1225,
  19115. bottom: 0.025
  19116. }
  19117. },
  19118. back: {
  19119. height: math.unit(5 + 7 / 12, "feet"),
  19120. weight: math.unit(150, "lb"),
  19121. name: "Back",
  19122. image: {
  19123. source: "./media/characters/kassy/back.svg",
  19124. extra: 1280 / 1225,
  19125. bottom: 0.002
  19126. }
  19127. },
  19128. foot: {
  19129. height: math.unit(1.266, "feet"),
  19130. name: "Foot",
  19131. image: {
  19132. source: "./media/characters/kassy/foot.svg"
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(5 + 7 / 12, "feet")
  19140. },
  19141. {
  19142. name: "Macro",
  19143. height: math.unit(137, "feet"),
  19144. default: true
  19145. },
  19146. {
  19147. name: "Megamacro",
  19148. height: math.unit(1, "mile")
  19149. },
  19150. ]
  19151. ))
  19152. characterMakers.push(() => makeCharacter(
  19153. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19154. {
  19155. front: {
  19156. height: math.unit(6 + 1 / 12, "feet"),
  19157. weight: math.unit(200, "lb"),
  19158. name: "Front",
  19159. image: {
  19160. source: "./media/characters/neil/front.svg",
  19161. extra: 1326 / 1250,
  19162. bottom: 0.023
  19163. }
  19164. },
  19165. },
  19166. [
  19167. {
  19168. name: "Normal",
  19169. height: math.unit(6 + 1 / 12, "feet"),
  19170. default: true
  19171. },
  19172. {
  19173. name: "Macro",
  19174. height: math.unit(200, "feet")
  19175. },
  19176. ]
  19177. ))
  19178. characterMakers.push(() => makeCharacter(
  19179. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19180. {
  19181. front: {
  19182. height: math.unit(5 + 9 / 12, "feet"),
  19183. weight: math.unit(190, "lb"),
  19184. name: "Front",
  19185. image: {
  19186. source: "./media/characters/atticus/front.svg",
  19187. extra: 2934 / 2785,
  19188. bottom: 0.025
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(5 + 9 / 12, "feet"),
  19196. default: true
  19197. },
  19198. {
  19199. name: "Macro",
  19200. height: math.unit(180, "feet")
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19206. {
  19207. side: {
  19208. height: math.unit(9, "feet"),
  19209. weight: math.unit(650, "lb"),
  19210. name: "Side",
  19211. image: {
  19212. source: "./media/characters/milo/side.svg",
  19213. extra: 2644 / 2310,
  19214. bottom: 0.032
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(9, "feet"),
  19222. default: true
  19223. },
  19224. {
  19225. name: "Macro",
  19226. height: math.unit(300, "feet")
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19232. {
  19233. side: {
  19234. height: math.unit(8, "meters"),
  19235. weight: math.unit(90000, "kg"),
  19236. name: "Side",
  19237. image: {
  19238. source: "./media/characters/ijzer/side.svg",
  19239. extra: 2756 / 1600,
  19240. bottom: 0.01
  19241. }
  19242. },
  19243. },
  19244. [
  19245. {
  19246. name: "Small",
  19247. height: math.unit(3, "meters")
  19248. },
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(8, "meters"),
  19252. default: true
  19253. },
  19254. {
  19255. name: "Normal+",
  19256. height: math.unit(10, "meters")
  19257. },
  19258. {
  19259. name: "Bigger",
  19260. height: math.unit(24, "meters")
  19261. },
  19262. {
  19263. name: "Huge",
  19264. height: math.unit(80, "meters")
  19265. },
  19266. ]
  19267. ))
  19268. characterMakers.push(() => makeCharacter(
  19269. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19270. {
  19271. front: {
  19272. height: math.unit(6 + 2 / 12, "feet"),
  19273. weight: math.unit(153, "lb"),
  19274. name: "Front",
  19275. image: {
  19276. source: "./media/characters/luca-cervicum/front.svg",
  19277. extra: 370 / 327,
  19278. bottom: 0.015
  19279. }
  19280. },
  19281. back: {
  19282. height: math.unit(6 + 2 / 12, "feet"),
  19283. weight: math.unit(153, "lb"),
  19284. name: "Back",
  19285. image: {
  19286. source: "./media/characters/luca-cervicum/back.svg",
  19287. extra: 367 / 333,
  19288. bottom: 0.005
  19289. }
  19290. },
  19291. frontGear: {
  19292. height: math.unit(6 + 2 / 12, "feet"),
  19293. weight: math.unit(173, "lb"),
  19294. name: "Front (Gear)",
  19295. image: {
  19296. source: "./media/characters/luca-cervicum/front-gear.svg",
  19297. extra: 377 / 333,
  19298. bottom: 0.006
  19299. }
  19300. },
  19301. },
  19302. [
  19303. {
  19304. name: "Normal",
  19305. height: math.unit(6 + 2 / 12, "feet"),
  19306. default: true
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19312. {
  19313. front: {
  19314. height: math.unit(6 + 1 / 12, "feet"),
  19315. weight: math.unit(304, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/oliver/front.svg",
  19319. extra: 157 / 143,
  19320. bottom: 0.08
  19321. }
  19322. },
  19323. },
  19324. [
  19325. {
  19326. name: "Normal",
  19327. height: math.unit(6 + 1 / 12, "feet"),
  19328. default: true
  19329. },
  19330. ]
  19331. ))
  19332. characterMakers.push(() => makeCharacter(
  19333. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19334. {
  19335. front: {
  19336. height: math.unit(5 + 7 / 12, "feet"),
  19337. weight: math.unit(140, "lb"),
  19338. name: "Front",
  19339. image: {
  19340. source: "./media/characters/shane/front.svg",
  19341. extra: 304 / 289,
  19342. bottom: 0.005
  19343. }
  19344. },
  19345. },
  19346. [
  19347. {
  19348. name: "Normal",
  19349. height: math.unit(5 + 7 / 12, "feet"),
  19350. default: true
  19351. },
  19352. ]
  19353. ))
  19354. characterMakers.push(() => makeCharacter(
  19355. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19356. {
  19357. front: {
  19358. height: math.unit(5 + 9 / 12, "feet"),
  19359. weight: math.unit(178, "lb"),
  19360. name: "Front",
  19361. image: {
  19362. source: "./media/characters/shin/front.svg",
  19363. extra: 159 / 151,
  19364. bottom: 0.015
  19365. }
  19366. },
  19367. },
  19368. [
  19369. {
  19370. name: "Normal",
  19371. height: math.unit(5 + 9 / 12, "feet"),
  19372. default: true
  19373. },
  19374. ]
  19375. ))
  19376. characterMakers.push(() => makeCharacter(
  19377. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19378. {
  19379. front: {
  19380. height: math.unit(5 + 10 / 12, "feet"),
  19381. weight: math.unit(168, "lb"),
  19382. name: "Front",
  19383. image: {
  19384. source: "./media/characters/xerxes/front.svg",
  19385. extra: 282 / 260,
  19386. bottom: 0.045
  19387. }
  19388. },
  19389. },
  19390. [
  19391. {
  19392. name: "Normal",
  19393. height: math.unit(5 + 10 / 12, "feet"),
  19394. default: true
  19395. },
  19396. ]
  19397. ))
  19398. characterMakers.push(() => makeCharacter(
  19399. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19400. {
  19401. front: {
  19402. height: math.unit(6 + 7 / 12, "feet"),
  19403. weight: math.unit(208, "lb"),
  19404. name: "Front",
  19405. image: {
  19406. source: "./media/characters/chaska/front.svg",
  19407. extra: 332 / 319,
  19408. bottom: 0.015
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(6 + 7 / 12, "feet"),
  19416. default: true
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19422. {
  19423. front: {
  19424. height: math.unit(5 + 8 / 12, "feet"),
  19425. weight: math.unit(208, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/enuk/front.svg",
  19429. extra: 437 / 406,
  19430. bottom: 0.02
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Normal",
  19437. height: math.unit(5 + 8 / 12, "feet"),
  19438. default: true
  19439. },
  19440. ]
  19441. ))
  19442. characterMakers.push(() => makeCharacter(
  19443. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19444. {
  19445. front: {
  19446. height: math.unit(5 + 10 / 12, "feet"),
  19447. weight: math.unit(252, "lb"),
  19448. name: "Front",
  19449. image: {
  19450. source: "./media/characters/bruun/front.svg",
  19451. extra: 197 / 187,
  19452. bottom: 0.012
  19453. }
  19454. },
  19455. },
  19456. [
  19457. {
  19458. name: "Normal",
  19459. height: math.unit(5 + 10 / 12, "feet"),
  19460. default: true
  19461. },
  19462. ]
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19466. {
  19467. front: {
  19468. height: math.unit(6 + 10 / 12, "feet"),
  19469. weight: math.unit(255, "lb"),
  19470. name: "Front",
  19471. image: {
  19472. source: "./media/characters/alexeev/front.svg",
  19473. extra: 213 / 200,
  19474. bottom: 0.05
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Normal",
  19481. height: math.unit(6 + 10 / 12, "feet"),
  19482. default: true
  19483. },
  19484. ]
  19485. ))
  19486. characterMakers.push(() => makeCharacter(
  19487. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19488. {
  19489. front: {
  19490. height: math.unit(2 + 8 / 12, "feet"),
  19491. weight: math.unit(22, "lb"),
  19492. name: "Front",
  19493. image: {
  19494. source: "./media/characters/evelyn/front.svg",
  19495. extra: 208 / 180
  19496. }
  19497. },
  19498. },
  19499. [
  19500. {
  19501. name: "Normal",
  19502. height: math.unit(2 + 8 / 12, "feet"),
  19503. default: true
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19509. {
  19510. front: {
  19511. height: math.unit(5 + 9 / 12, "feet"),
  19512. weight: math.unit(139, "lb"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/inca/front.svg",
  19516. extra: 294 / 291,
  19517. bottom: 0.03
  19518. }
  19519. },
  19520. },
  19521. [
  19522. {
  19523. name: "Normal",
  19524. height: math.unit(5 + 9 / 12, "feet"),
  19525. default: true
  19526. },
  19527. ]
  19528. ))
  19529. characterMakers.push(() => makeCharacter(
  19530. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19531. {
  19532. front: {
  19533. height: math.unit(5 + 1 / 12, "feet"),
  19534. weight: math.unit(84, "lb"),
  19535. name: "Front",
  19536. image: {
  19537. source: "./media/characters/magdalene/front.svg",
  19538. extra: 293 / 273
  19539. }
  19540. },
  19541. },
  19542. [
  19543. {
  19544. name: "Normal",
  19545. height: math.unit(5 + 1 / 12, "feet"),
  19546. default: true
  19547. },
  19548. ]
  19549. ))
  19550. characterMakers.push(() => makeCharacter(
  19551. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19552. {
  19553. front: {
  19554. height: math.unit(6 + 3 / 12, "feet"),
  19555. weight: math.unit(185, "lb"),
  19556. name: "Front",
  19557. image: {
  19558. source: "./media/characters/mera/front.svg",
  19559. extra: 291 / 277,
  19560. bottom: 0.03
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(6 + 3 / 12, "feet"),
  19568. default: true
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19574. {
  19575. front: {
  19576. height: math.unit(6 + 7 / 12, "feet"),
  19577. weight: math.unit(160, "lb"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/ceres/front.svg",
  19581. extra: 1023 / 950,
  19582. bottom: 0.027
  19583. }
  19584. },
  19585. back: {
  19586. height: math.unit(6 + 7 / 12, "feet"),
  19587. weight: math.unit(160, "lb"),
  19588. name: "Back",
  19589. image: {
  19590. source: "./media/characters/ceres/back.svg",
  19591. extra: 1023 / 950
  19592. }
  19593. },
  19594. },
  19595. [
  19596. {
  19597. name: "Normal",
  19598. height: math.unit(6 + 7 / 12, "feet"),
  19599. default: true
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19605. {
  19606. front: {
  19607. height: math.unit(5 + 10 / 12, "feet"),
  19608. weight: math.unit(150, "lb"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/kris/front.svg",
  19612. extra: 885 / 803,
  19613. bottom: 0.03
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(5 + 10 / 12, "feet"),
  19621. default: true
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19627. {
  19628. front: {
  19629. height: math.unit(7, "feet"),
  19630. weight: math.unit(120, "kg"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/taluthus/front.svg",
  19634. extra: 903 / 833,
  19635. bottom: 0.015
  19636. }
  19637. },
  19638. },
  19639. [
  19640. {
  19641. name: "Normal",
  19642. height: math.unit(7, "feet"),
  19643. default: true
  19644. },
  19645. {
  19646. name: "Macro",
  19647. height: math.unit(300, "feet")
  19648. },
  19649. ]
  19650. ))
  19651. characterMakers.push(() => makeCharacter(
  19652. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19653. {
  19654. front: {
  19655. height: math.unit(5 + 9 / 12, "feet"),
  19656. weight: math.unit(145, "lb"),
  19657. name: "Front",
  19658. image: {
  19659. source: "./media/characters/dawn/front.svg",
  19660. extra: 2094 / 2016,
  19661. bottom: 0.025
  19662. }
  19663. },
  19664. back: {
  19665. height: math.unit(5 + 9 / 12, "feet"),
  19666. weight: math.unit(160, "lb"),
  19667. name: "Back",
  19668. image: {
  19669. source: "./media/characters/dawn/back.svg",
  19670. extra: 2112 / 2080,
  19671. bottom: 0.005
  19672. }
  19673. },
  19674. },
  19675. [
  19676. {
  19677. name: "Normal",
  19678. height: math.unit(6 + 7 / 12, "feet"),
  19679. default: true
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19685. {
  19686. anthro: {
  19687. height: math.unit(8 + 3 / 12, "feet"),
  19688. weight: math.unit(450, "lb"),
  19689. name: "Anthro",
  19690. image: {
  19691. source: "./media/characters/arador/anthro.svg",
  19692. extra: 1835 / 1718,
  19693. bottom: 0.025
  19694. }
  19695. },
  19696. feral: {
  19697. height: math.unit(4, "feet"),
  19698. weight: math.unit(200, "lb"),
  19699. name: "Feral",
  19700. image: {
  19701. source: "./media/characters/arador/feral.svg",
  19702. extra: 1683 / 1514,
  19703. bottom: 0.07
  19704. }
  19705. },
  19706. },
  19707. [
  19708. {
  19709. name: "Normal",
  19710. height: math.unit(8 + 3 / 12, "feet")
  19711. },
  19712. {
  19713. name: "Macro",
  19714. height: math.unit(82.5, "feet"),
  19715. default: true
  19716. },
  19717. ]
  19718. ))
  19719. characterMakers.push(() => makeCharacter(
  19720. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19721. {
  19722. front: {
  19723. height: math.unit(5 + 10 / 12, "feet"),
  19724. weight: math.unit(125, "lb"),
  19725. name: "Front",
  19726. image: {
  19727. source: "./media/characters/dharsi/front.svg",
  19728. extra: 716 / 630,
  19729. bottom: 0.035
  19730. }
  19731. },
  19732. },
  19733. [
  19734. {
  19735. name: "Nano",
  19736. height: math.unit(100, "nm")
  19737. },
  19738. {
  19739. name: "Micro",
  19740. height: math.unit(2, "inches")
  19741. },
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(5 + 10 / 12, "feet"),
  19745. default: true
  19746. },
  19747. {
  19748. name: "Macro",
  19749. height: math.unit(1000, "feet")
  19750. },
  19751. {
  19752. name: "Megamacro",
  19753. height: math.unit(10, "miles")
  19754. },
  19755. {
  19756. name: "Gigamacro",
  19757. height: math.unit(3000, "miles")
  19758. },
  19759. {
  19760. name: "Teramacro",
  19761. height: math.unit(500000, "miles")
  19762. },
  19763. {
  19764. name: "Teramacro+",
  19765. height: math.unit(30, "galaxies")
  19766. },
  19767. ]
  19768. ))
  19769. characterMakers.push(() => makeCharacter(
  19770. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19771. {
  19772. front: {
  19773. height: math.unit(6, "feet"),
  19774. weight: math.unit(150, "lb"),
  19775. name: "Front",
  19776. image: {
  19777. source: "./media/characters/deathy/front.svg",
  19778. extra: 1552 / 1463,
  19779. bottom: 0.025
  19780. }
  19781. },
  19782. side: {
  19783. height: math.unit(6, "feet"),
  19784. weight: math.unit(150, "lb"),
  19785. name: "Side",
  19786. image: {
  19787. source: "./media/characters/deathy/side.svg",
  19788. extra: 1604 / 1455,
  19789. bottom: 0.025
  19790. }
  19791. },
  19792. back: {
  19793. height: math.unit(6, "feet"),
  19794. weight: math.unit(150, "lb"),
  19795. name: "Back",
  19796. image: {
  19797. source: "./media/characters/deathy/back.svg",
  19798. extra: 1580 / 1463,
  19799. bottom: 0.005
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Micro",
  19806. height: math.unit(5, "millimeters")
  19807. },
  19808. {
  19809. name: "Normal",
  19810. height: math.unit(6 + 5 / 12, "feet"),
  19811. default: true
  19812. },
  19813. ]
  19814. ))
  19815. characterMakers.push(() => makeCharacter(
  19816. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19817. {
  19818. front: {
  19819. height: math.unit(16, "feet"),
  19820. weight: math.unit(4000, "lb"),
  19821. name: "Front",
  19822. image: {
  19823. source: "./media/characters/juniper/front.svg",
  19824. bottom: 0.04
  19825. }
  19826. },
  19827. },
  19828. [
  19829. {
  19830. name: "Normal",
  19831. height: math.unit(16, "feet"),
  19832. default: true
  19833. },
  19834. ]
  19835. ))
  19836. characterMakers.push(() => makeCharacter(
  19837. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19838. {
  19839. front: {
  19840. height: math.unit(6, "feet"),
  19841. weight: math.unit(150, "lb"),
  19842. name: "Front",
  19843. image: {
  19844. source: "./media/characters/hipster/front.svg",
  19845. extra: 1312 / 1209,
  19846. bottom: 0.025
  19847. }
  19848. },
  19849. back: {
  19850. height: math.unit(6, "feet"),
  19851. weight: math.unit(150, "lb"),
  19852. name: "Back",
  19853. image: {
  19854. source: "./media/characters/hipster/back.svg",
  19855. extra: 1281 / 1196,
  19856. bottom: 0.01
  19857. }
  19858. },
  19859. },
  19860. [
  19861. {
  19862. name: "Micro",
  19863. height: math.unit(1, "mm")
  19864. },
  19865. {
  19866. name: "Normal",
  19867. height: math.unit(4, "inches"),
  19868. default: true
  19869. },
  19870. {
  19871. name: "Macro",
  19872. height: math.unit(500, "feet")
  19873. },
  19874. {
  19875. name: "Megamacro",
  19876. height: math.unit(1000, "miles")
  19877. },
  19878. ]
  19879. ))
  19880. characterMakers.push(() => makeCharacter(
  19881. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19882. {
  19883. front: {
  19884. height: math.unit(6, "feet"),
  19885. weight: math.unit(150, "lb"),
  19886. name: "Front",
  19887. image: {
  19888. source: "./media/characters/tendirmuldr/front.svg",
  19889. extra: 1878 / 1772,
  19890. bottom: 0.015
  19891. }
  19892. },
  19893. },
  19894. [
  19895. {
  19896. name: "Megamacro",
  19897. height: math.unit(1500, "miles"),
  19898. default: true
  19899. },
  19900. ]
  19901. ))
  19902. characterMakers.push(() => makeCharacter(
  19903. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19904. {
  19905. front: {
  19906. height: math.unit(14, "feet"),
  19907. weight: math.unit(12000, "lb"),
  19908. name: "Front",
  19909. image: {
  19910. source: "./media/characters/mort/front.svg",
  19911. extra: 365 / 318,
  19912. bottom: 0.01
  19913. }
  19914. },
  19915. side: {
  19916. height: math.unit(14, "feet"),
  19917. weight: math.unit(12000, "lb"),
  19918. name: "Side",
  19919. image: {
  19920. source: "./media/characters/mort/side.svg",
  19921. extra: 365 / 318,
  19922. bottom: 0.052
  19923. },
  19924. default: true
  19925. },
  19926. back: {
  19927. height: math.unit(14, "feet"),
  19928. weight: math.unit(12000, "lb"),
  19929. name: "Back",
  19930. image: {
  19931. source: "./media/characters/mort/back.svg",
  19932. extra: 371 / 332,
  19933. bottom: 0.18
  19934. }
  19935. },
  19936. },
  19937. [
  19938. {
  19939. name: "Normal",
  19940. height: math.unit(14, "feet"),
  19941. default: true
  19942. },
  19943. ]
  19944. ))
  19945. characterMakers.push(() => makeCharacter(
  19946. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19947. {
  19948. front: {
  19949. height: math.unit(8, "feet"),
  19950. weight: math.unit(1, "ton"),
  19951. name: "Front",
  19952. image: {
  19953. source: "./media/characters/lycoa/front.svg",
  19954. extra: 1875 / 1789,
  19955. bottom: 0.022
  19956. }
  19957. },
  19958. back: {
  19959. height: math.unit(8, "feet"),
  19960. weight: math.unit(1, "ton"),
  19961. name: "Back",
  19962. image: {
  19963. source: "./media/characters/lycoa/back.svg",
  19964. extra: 1835 / 1781,
  19965. bottom: 0.03
  19966. }
  19967. },
  19968. head: {
  19969. height: math.unit(2.1, "feet"),
  19970. name: "Head",
  19971. image: {
  19972. source: "./media/characters/lycoa/head.svg"
  19973. }
  19974. },
  19975. tailmaw: {
  19976. height: math.unit(1.9, "feet"),
  19977. name: "Tailmaw",
  19978. image: {
  19979. source: "./media/characters/lycoa/tailmaw.svg"
  19980. }
  19981. },
  19982. tentacles: {
  19983. height: math.unit(2.1, "feet"),
  19984. name: "Tentacles",
  19985. image: {
  19986. source: "./media/characters/lycoa/tentacles.svg"
  19987. }
  19988. },
  19989. dick: {
  19990. height: math.unit(1.73, "feet"),
  19991. name: "Dick",
  19992. image: {
  19993. source: "./media/characters/lycoa/dick.svg"
  19994. }
  19995. },
  19996. },
  19997. [
  19998. {
  19999. name: "Normal",
  20000. height: math.unit(8, "feet"),
  20001. default: true
  20002. },
  20003. {
  20004. name: "Macro",
  20005. height: math.unit(30, "feet")
  20006. },
  20007. ]
  20008. ))
  20009. characterMakers.push(() => makeCharacter(
  20010. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20011. {
  20012. front: {
  20013. height: math.unit(4 + 2 / 12, "feet"),
  20014. weight: math.unit(70, "lb"),
  20015. name: "Front",
  20016. image: {
  20017. source: "./media/characters/naldara/front.svg",
  20018. extra: 841 / 720,
  20019. bottom: 0.04
  20020. }
  20021. },
  20022. naga: {
  20023. height: math.unit(23, "feet"),
  20024. weight: math.unit(15000, "kg"),
  20025. name: "Naga",
  20026. image: {
  20027. source: "./media/characters/naldara/naga.svg",
  20028. extra: 3290 / 2959,
  20029. bottom: 124 / 3432
  20030. }
  20031. },
  20032. },
  20033. [
  20034. {
  20035. name: "Normal",
  20036. height: math.unit(4 + 2 / 12, "feet"),
  20037. default: true
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20043. {
  20044. front: {
  20045. height: math.unit(13 + 7 / 12, "feet"),
  20046. weight: math.unit(1500, "lb"),
  20047. name: "Front",
  20048. image: {
  20049. source: "./media/characters/briar/front.svg",
  20050. extra: 626 / 596,
  20051. bottom: 0.08
  20052. }
  20053. },
  20054. },
  20055. [
  20056. {
  20057. name: "Normal",
  20058. height: math.unit(13 + 7 / 12, "feet"),
  20059. default: true
  20060. },
  20061. ]
  20062. ))
  20063. characterMakers.push(() => makeCharacter(
  20064. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20065. {
  20066. side: {
  20067. height: math.unit(10, "feet"),
  20068. weight: math.unit(500, "lb"),
  20069. name: "Side",
  20070. image: {
  20071. source: "./media/characters/vanguard/side.svg",
  20072. extra: 502 / 425,
  20073. bottom: 0.087
  20074. }
  20075. },
  20076. },
  20077. [
  20078. {
  20079. name: "Normal",
  20080. height: math.unit(10, "feet"),
  20081. default: true
  20082. },
  20083. ]
  20084. ))
  20085. characterMakers.push(() => makeCharacter(
  20086. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20087. {
  20088. front: {
  20089. height: math.unit(7.5, "feet"),
  20090. weight: math.unit(2, "lb"),
  20091. name: "Front",
  20092. image: {
  20093. source: "./media/characters/artemis/front.svg",
  20094. extra: 1192 / 1075,
  20095. bottom: 0.07
  20096. }
  20097. },
  20098. frontNsfw: {
  20099. height: math.unit(7.5, "feet"),
  20100. weight: math.unit(2, "lb"),
  20101. name: "Front (NSFW)",
  20102. image: {
  20103. source: "./media/characters/artemis/front-nsfw.svg",
  20104. extra: 1192 / 1075,
  20105. bottom: 0.07
  20106. }
  20107. },
  20108. frontNsfwer: {
  20109. height: math.unit(7.5, "feet"),
  20110. weight: math.unit(2, "lb"),
  20111. name: "Front (NSFW-er)",
  20112. image: {
  20113. source: "./media/characters/artemis/front-nsfwer.svg",
  20114. extra: 1192 / 1075,
  20115. bottom: 0.07
  20116. }
  20117. },
  20118. side: {
  20119. height: math.unit(7.5, "feet"),
  20120. weight: math.unit(2, "lb"),
  20121. name: "Side",
  20122. image: {
  20123. source: "./media/characters/artemis/side.svg",
  20124. extra: 1192 / 1075,
  20125. bottom: 0.07
  20126. }
  20127. },
  20128. sideNsfw: {
  20129. height: math.unit(7.5, "feet"),
  20130. weight: math.unit(2, "lb"),
  20131. name: "Side (NSFW)",
  20132. image: {
  20133. source: "./media/characters/artemis/side-nsfw.svg",
  20134. extra: 1192 / 1075,
  20135. bottom: 0.07
  20136. }
  20137. },
  20138. sideNsfwer: {
  20139. height: math.unit(7.5, "feet"),
  20140. weight: math.unit(2, "lb"),
  20141. name: "Side (NSFW-er)",
  20142. image: {
  20143. source: "./media/characters/artemis/side-nsfwer.svg",
  20144. extra: 1192 / 1075,
  20145. bottom: 0.07
  20146. }
  20147. },
  20148. maw: {
  20149. height: math.unit(1.1, "feet"),
  20150. name: "Maw",
  20151. image: {
  20152. source: "./media/characters/artemis/maw.svg"
  20153. }
  20154. },
  20155. stomach: {
  20156. height: math.unit(0.95, "feet"),
  20157. name: "Stomach",
  20158. image: {
  20159. source: "./media/characters/artemis/stomach.svg"
  20160. }
  20161. },
  20162. dickCanine: {
  20163. height: math.unit(1, "feet"),
  20164. name: "Dick (Canine)",
  20165. image: {
  20166. source: "./media/characters/artemis/dick-canine.svg"
  20167. }
  20168. },
  20169. dickEquine: {
  20170. height: math.unit(0.85, "feet"),
  20171. name: "Dick (Equine)",
  20172. image: {
  20173. source: "./media/characters/artemis/dick-equine.svg"
  20174. }
  20175. },
  20176. dickExotic: {
  20177. height: math.unit(0.85, "feet"),
  20178. name: "Dick (Exotic)",
  20179. image: {
  20180. source: "./media/characters/artemis/dick-exotic.svg"
  20181. }
  20182. },
  20183. },
  20184. [
  20185. {
  20186. name: "Normal",
  20187. height: math.unit(7.5, "feet"),
  20188. default: true
  20189. },
  20190. {
  20191. name: "Enlarged",
  20192. height: math.unit(12, "feet")
  20193. },
  20194. ]
  20195. ))
  20196. characterMakers.push(() => makeCharacter(
  20197. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20198. {
  20199. front: {
  20200. height: math.unit(5 + 3 / 12, "feet"),
  20201. weight: math.unit(160, "lb"),
  20202. name: "Front",
  20203. image: {
  20204. source: "./media/characters/kira/front.svg",
  20205. extra: 906 / 786,
  20206. bottom: 0.01
  20207. }
  20208. },
  20209. back: {
  20210. height: math.unit(5 + 3 / 12, "feet"),
  20211. weight: math.unit(160, "lb"),
  20212. name: "Back",
  20213. image: {
  20214. source: "./media/characters/kira/back.svg",
  20215. extra: 882 / 757,
  20216. bottom: 0.005
  20217. }
  20218. },
  20219. frontDressed: {
  20220. height: math.unit(5 + 3 / 12, "feet"),
  20221. weight: math.unit(160, "lb"),
  20222. name: "Front (Dressed)",
  20223. image: {
  20224. source: "./media/characters/kira/front-dressed.svg",
  20225. extra: 906 / 786,
  20226. bottom: 0.01
  20227. }
  20228. },
  20229. beans: {
  20230. height: math.unit(0.92, "feet"),
  20231. name: "Beans",
  20232. image: {
  20233. source: "./media/characters/kira/beans.svg"
  20234. }
  20235. },
  20236. },
  20237. [
  20238. {
  20239. name: "Normal",
  20240. height: math.unit(5 + 3 / 12, "feet"),
  20241. default: true
  20242. },
  20243. ]
  20244. ))
  20245. characterMakers.push(() => makeCharacter(
  20246. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20247. {
  20248. front: {
  20249. height: math.unit(5 + 4 / 12, "feet"),
  20250. weight: math.unit(145, "lb"),
  20251. name: "Front",
  20252. image: {
  20253. source: "./media/characters/scramble/front.svg",
  20254. extra: 763 / 727,
  20255. bottom: 0.05
  20256. }
  20257. },
  20258. back: {
  20259. height: math.unit(5 + 4 / 12, "feet"),
  20260. weight: math.unit(145, "lb"),
  20261. name: "Back",
  20262. image: {
  20263. source: "./media/characters/scramble/back.svg",
  20264. extra: 826 / 737,
  20265. bottom: 0.002
  20266. }
  20267. },
  20268. },
  20269. [
  20270. {
  20271. name: "Normal",
  20272. height: math.unit(5 + 4 / 12, "feet"),
  20273. default: true
  20274. },
  20275. ]
  20276. ))
  20277. characterMakers.push(() => makeCharacter(
  20278. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20279. {
  20280. side: {
  20281. height: math.unit(6 + 2 / 12, "feet"),
  20282. weight: math.unit(190, "lb"),
  20283. name: "Side",
  20284. image: {
  20285. source: "./media/characters/biscuit/side.svg",
  20286. extra: 858 / 791,
  20287. bottom: 0.044
  20288. }
  20289. },
  20290. },
  20291. [
  20292. {
  20293. name: "Normal",
  20294. height: math.unit(6 + 2 / 12, "feet"),
  20295. default: true
  20296. },
  20297. ]
  20298. ))
  20299. characterMakers.push(() => makeCharacter(
  20300. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20301. {
  20302. front: {
  20303. height: math.unit(5 + 2 / 12, "feet"),
  20304. weight: math.unit(120, "lb"),
  20305. name: "Front",
  20306. image: {
  20307. source: "./media/characters/poffin/front.svg",
  20308. extra: 786 / 680,
  20309. bottom: 0.005
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Normal",
  20316. height: math.unit(5 + 2 / 12, "feet"),
  20317. default: true
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(6 + 3 / 12, "feet"),
  20326. weight: math.unit(519, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/dhari/front.svg",
  20330. extra: 1048 / 946,
  20331. bottom: 0.015
  20332. }
  20333. },
  20334. back: {
  20335. height: math.unit(6 + 3 / 12, "feet"),
  20336. weight: math.unit(519, "lb"),
  20337. name: "Back",
  20338. image: {
  20339. source: "./media/characters/dhari/back.svg",
  20340. extra: 1048 / 931,
  20341. bottom: 0.005
  20342. }
  20343. },
  20344. frontDressed: {
  20345. height: math.unit(6 + 3 / 12, "feet"),
  20346. weight: math.unit(519, "lb"),
  20347. name: "Front (Dressed)",
  20348. image: {
  20349. source: "./media/characters/dhari/front-dressed.svg",
  20350. extra: 1713 / 1546,
  20351. bottom: 0.02
  20352. }
  20353. },
  20354. backDressed: {
  20355. height: math.unit(6 + 3 / 12, "feet"),
  20356. weight: math.unit(519, "lb"),
  20357. name: "Back (Dressed)",
  20358. image: {
  20359. source: "./media/characters/dhari/back-dressed.svg",
  20360. extra: 1699 / 1537,
  20361. bottom: 0.01
  20362. }
  20363. },
  20364. maw: {
  20365. height: math.unit(0.95, "feet"),
  20366. name: "Maw",
  20367. image: {
  20368. source: "./media/characters/dhari/maw.svg"
  20369. }
  20370. },
  20371. wereFront: {
  20372. height: math.unit(12 + 8 / 12, "feet"),
  20373. weight: math.unit(4000, "lb"),
  20374. name: "Front (Were)",
  20375. image: {
  20376. source: "./media/characters/dhari/were-front.svg",
  20377. extra: 1065 / 969,
  20378. bottom: 0.015
  20379. }
  20380. },
  20381. wereBack: {
  20382. height: math.unit(12 + 8 / 12, "feet"),
  20383. weight: math.unit(4000, "lb"),
  20384. name: "Back (Were)",
  20385. image: {
  20386. source: "./media/characters/dhari/were-back.svg",
  20387. extra: 1065 / 969,
  20388. bottom: 0.012
  20389. }
  20390. },
  20391. wereMaw: {
  20392. height: math.unit(0.625, "meters"),
  20393. name: "Maw (Were)",
  20394. image: {
  20395. source: "./media/characters/dhari/were-maw.svg"
  20396. }
  20397. },
  20398. },
  20399. [
  20400. {
  20401. name: "Normal",
  20402. height: math.unit(6 + 3 / 12, "feet"),
  20403. default: true
  20404. },
  20405. ]
  20406. ))
  20407. characterMakers.push(() => makeCharacter(
  20408. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20409. {
  20410. anthro: {
  20411. height: math.unit(5 + 7 / 12, "feet"),
  20412. weight: math.unit(175, "lb"),
  20413. name: "Anthro",
  20414. image: {
  20415. source: "./media/characters/rena-dyne/anthro.svg",
  20416. extra: 1849 / 1785,
  20417. bottom: 0.005
  20418. }
  20419. },
  20420. taur: {
  20421. height: math.unit(15 + 6 / 12, "feet"),
  20422. weight: math.unit(8000, "lb"),
  20423. name: "Taur",
  20424. image: {
  20425. source: "./media/characters/rena-dyne/taur.svg",
  20426. extra: 2315 / 2234,
  20427. bottom: 0.033
  20428. }
  20429. },
  20430. },
  20431. [
  20432. {
  20433. name: "Normal",
  20434. height: math.unit(5 + 7 / 12, "feet"),
  20435. default: true
  20436. },
  20437. ]
  20438. ))
  20439. characterMakers.push(() => makeCharacter(
  20440. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20441. {
  20442. front: {
  20443. height: math.unit(8, "feet"),
  20444. weight: math.unit(600, "lb"),
  20445. name: "Front",
  20446. image: {
  20447. source: "./media/characters/weremeep/front.svg",
  20448. extra: 967 / 862,
  20449. bottom: 0.01
  20450. }
  20451. },
  20452. },
  20453. [
  20454. {
  20455. name: "Normal",
  20456. height: math.unit(8, "feet"),
  20457. default: true
  20458. },
  20459. {
  20460. name: "Lorg",
  20461. height: math.unit(12, "feet")
  20462. },
  20463. {
  20464. name: "Oh Lawd She Comin'",
  20465. height: math.unit(20, "feet")
  20466. },
  20467. ]
  20468. ))
  20469. characterMakers.push(() => makeCharacter(
  20470. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20471. {
  20472. front: {
  20473. height: math.unit(4, "feet"),
  20474. weight: math.unit(90, "lb"),
  20475. name: "Front",
  20476. image: {
  20477. source: "./media/characters/reza/front.svg",
  20478. extra: 1183 / 1111,
  20479. bottom: 0.017
  20480. }
  20481. },
  20482. back: {
  20483. height: math.unit(4, "feet"),
  20484. weight: math.unit(90, "lb"),
  20485. name: "Back",
  20486. image: {
  20487. source: "./media/characters/reza/back.svg",
  20488. extra: 1183 / 1111,
  20489. bottom: 0.01
  20490. }
  20491. },
  20492. drake: {
  20493. height: math.unit(30, "feet"),
  20494. weight: math.unit(246960, "lb"),
  20495. name: "Drake",
  20496. image: {
  20497. source: "./media/characters/reza/drake.svg",
  20498. extra: 2350 / 2024,
  20499. bottom: 60.7 / 2403
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(4, "feet"),
  20507. default: true
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20513. {
  20514. side: {
  20515. height: math.unit(15, "feet"),
  20516. weight: math.unit(14, "tons"),
  20517. name: "Side",
  20518. image: {
  20519. source: "./media/characters/athea/side.svg",
  20520. extra: 960 / 540,
  20521. bottom: 0.003
  20522. }
  20523. },
  20524. sitting: {
  20525. height: math.unit(6 * 2.85, "feet"),
  20526. weight: math.unit(14, "tons"),
  20527. name: "Sitting",
  20528. image: {
  20529. source: "./media/characters/athea/sitting.svg",
  20530. extra: 621 / 581,
  20531. bottom: 0.075
  20532. }
  20533. },
  20534. maw: {
  20535. height: math.unit(7.59498031496063, "feet"),
  20536. name: "Maw",
  20537. image: {
  20538. source: "./media/characters/athea/maw.svg"
  20539. }
  20540. },
  20541. },
  20542. [
  20543. {
  20544. name: "Lap Cat",
  20545. height: math.unit(2.5, "feet")
  20546. },
  20547. {
  20548. name: "Minimacro",
  20549. height: math.unit(15, "feet"),
  20550. default: true
  20551. },
  20552. {
  20553. name: "Macro",
  20554. height: math.unit(120, "feet")
  20555. },
  20556. {
  20557. name: "Macro+",
  20558. height: math.unit(640, "feet")
  20559. },
  20560. {
  20561. name: "Colossus",
  20562. height: math.unit(2.2, "miles")
  20563. },
  20564. ]
  20565. ))
  20566. characterMakers.push(() => makeCharacter(
  20567. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20568. {
  20569. front: {
  20570. height: math.unit(8 + 8 / 12, "feet"),
  20571. weight: math.unit(130, "kg"),
  20572. name: "Front",
  20573. image: {
  20574. source: "./media/characters/seroko/front.svg",
  20575. extra: 1385 / 1280,
  20576. bottom: 0.025
  20577. }
  20578. },
  20579. back: {
  20580. height: math.unit(8 + 8 / 12, "feet"),
  20581. weight: math.unit(130, "kg"),
  20582. name: "Back",
  20583. image: {
  20584. source: "./media/characters/seroko/back.svg",
  20585. extra: 1369 / 1238,
  20586. bottom: 0.018
  20587. }
  20588. },
  20589. frontDressed: {
  20590. height: math.unit(8 + 8 / 12, "feet"),
  20591. weight: math.unit(130, "kg"),
  20592. name: "Front (Dressed)",
  20593. image: {
  20594. source: "./media/characters/seroko/front-dressed.svg",
  20595. extra: 1366 / 1275,
  20596. bottom: 0.03
  20597. }
  20598. },
  20599. },
  20600. [
  20601. {
  20602. name: "Normal",
  20603. height: math.unit(8 + 8 / 12, "feet"),
  20604. default: true
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20610. {
  20611. front: {
  20612. height: math.unit(5.5, "feet"),
  20613. weight: math.unit(160, "lb"),
  20614. name: "Front",
  20615. image: {
  20616. source: "./media/characters/quatzi/front.svg",
  20617. extra: 2346 / 2242,
  20618. bottom: 0.015
  20619. }
  20620. },
  20621. },
  20622. [
  20623. {
  20624. name: "Normal",
  20625. height: math.unit(5.5, "feet"),
  20626. default: true
  20627. },
  20628. {
  20629. name: "Big",
  20630. height: math.unit(7.7, "feet")
  20631. },
  20632. ]
  20633. ))
  20634. characterMakers.push(() => makeCharacter(
  20635. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20636. {
  20637. front: {
  20638. height: math.unit(5 + 11 / 12, "feet"),
  20639. weight: math.unit(180, "lb"),
  20640. name: "Front",
  20641. image: {
  20642. source: "./media/characters/sen/front.svg",
  20643. extra: 1321 / 1254,
  20644. bottom: 0.015
  20645. }
  20646. },
  20647. side: {
  20648. height: math.unit(5 + 11 / 12, "feet"),
  20649. weight: math.unit(180, "lb"),
  20650. name: "Side",
  20651. image: {
  20652. source: "./media/characters/sen/side.svg",
  20653. extra: 1321 / 1254,
  20654. bottom: 0.007
  20655. }
  20656. },
  20657. back: {
  20658. height: math.unit(5 + 11 / 12, "feet"),
  20659. weight: math.unit(180, "lb"),
  20660. name: "Back",
  20661. image: {
  20662. source: "./media/characters/sen/back.svg",
  20663. extra: 1321 / 1254
  20664. }
  20665. },
  20666. },
  20667. [
  20668. {
  20669. name: "Normal",
  20670. height: math.unit(5 + 11 / 12, "feet"),
  20671. default: true
  20672. },
  20673. ]
  20674. ))
  20675. characterMakers.push(() => makeCharacter(
  20676. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20677. {
  20678. front: {
  20679. height: math.unit(166.6, "cm"),
  20680. weight: math.unit(66.6, "kg"),
  20681. name: "Front",
  20682. image: {
  20683. source: "./media/characters/fruity/front.svg",
  20684. extra: 1510 / 1386,
  20685. bottom: 0.04
  20686. }
  20687. },
  20688. back: {
  20689. height: math.unit(166.6, "cm"),
  20690. weight: math.unit(66.6, "lb"),
  20691. name: "Back",
  20692. image: {
  20693. source: "./media/characters/fruity/back.svg",
  20694. extra: 1563 / 1435,
  20695. bottom: 0.005
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(166.6, "cm"),
  20703. default: true
  20704. },
  20705. {
  20706. name: "Demonic",
  20707. height: math.unit(166.6, "feet")
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20713. {
  20714. side: {
  20715. height: math.unit(10, "feet"),
  20716. weight: math.unit(500, "lb"),
  20717. name: "Side",
  20718. image: {
  20719. source: "./media/characters/zost/side.svg",
  20720. extra: 966 / 880,
  20721. bottom: 0.075
  20722. }
  20723. },
  20724. mawFront: {
  20725. height: math.unit(1.08, "meters"),
  20726. name: "Maw (Front)",
  20727. image: {
  20728. source: "./media/characters/zost/maw-front.svg"
  20729. }
  20730. },
  20731. mawSide: {
  20732. height: math.unit(2.66, "feet"),
  20733. name: "Maw (Side)",
  20734. image: {
  20735. source: "./media/characters/zost/maw-side.svg"
  20736. }
  20737. },
  20738. },
  20739. [
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(10, "feet"),
  20743. default: true
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(5 + 4 / 12, "feet"),
  20752. weight: math.unit(120, "lb"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/luci/front.svg",
  20756. extra: 1985 / 1884,
  20757. bottom: 0.04
  20758. }
  20759. },
  20760. back: {
  20761. height: math.unit(5 + 4 / 12, "feet"),
  20762. weight: math.unit(120, "lb"),
  20763. name: "Back",
  20764. image: {
  20765. source: "./media/characters/luci/back.svg",
  20766. extra: 1892 / 1791,
  20767. bottom: 0.002
  20768. }
  20769. },
  20770. },
  20771. [
  20772. {
  20773. name: "Normal",
  20774. height: math.unit(5 + 4 / 12, "feet"),
  20775. default: true
  20776. },
  20777. ]
  20778. ))
  20779. characterMakers.push(() => makeCharacter(
  20780. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20781. {
  20782. front: {
  20783. height: math.unit(1500, "feet"),
  20784. weight: math.unit(3.8e6, "tons"),
  20785. name: "Front",
  20786. image: {
  20787. source: "./media/characters/2th/front.svg",
  20788. extra: 3489 / 3350,
  20789. bottom: 0.1
  20790. }
  20791. },
  20792. foot: {
  20793. height: math.unit(461, "feet"),
  20794. name: "Foot",
  20795. image: {
  20796. source: "./media/characters/2th/foot.svg"
  20797. }
  20798. },
  20799. },
  20800. [
  20801. {
  20802. name: "\"Micro\"",
  20803. height: math.unit(15 + 7 / 12, "feet")
  20804. },
  20805. {
  20806. name: "Normal",
  20807. height: math.unit(1500, "feet"),
  20808. default: true
  20809. },
  20810. {
  20811. name: "Macro",
  20812. height: math.unit(5000, "feet")
  20813. },
  20814. {
  20815. name: "Megamacro",
  20816. height: math.unit(15, "miles")
  20817. },
  20818. {
  20819. name: "Gigamacro",
  20820. height: math.unit(4000, "miles")
  20821. },
  20822. {
  20823. name: "Galactic",
  20824. height: math.unit(50, "AU")
  20825. },
  20826. ]
  20827. ))
  20828. characterMakers.push(() => makeCharacter(
  20829. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20830. {
  20831. front: {
  20832. height: math.unit(5 + 6 / 12, "feet"),
  20833. weight: math.unit(220, "lb"),
  20834. name: "Front",
  20835. image: {
  20836. source: "./media/characters/amethyst/front.svg",
  20837. extra: 2078 / 2040,
  20838. bottom: 0.045
  20839. }
  20840. },
  20841. back: {
  20842. height: math.unit(5 + 6 / 12, "feet"),
  20843. weight: math.unit(220, "lb"),
  20844. name: "Back",
  20845. image: {
  20846. source: "./media/characters/amethyst/back.svg",
  20847. extra: 2021 / 1989,
  20848. bottom: 0.02
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(5 + 6 / 12, "feet"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20862. {
  20863. front: {
  20864. height: math.unit(4 + 11 / 12, "feet"),
  20865. weight: math.unit(120, "lb"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/yumi-akiyama/front.svg",
  20869. extra: 1327 / 1235,
  20870. bottom: 0.02
  20871. }
  20872. },
  20873. back: {
  20874. height: math.unit(4 + 11 / 12, "feet"),
  20875. weight: math.unit(120, "lb"),
  20876. name: "Back",
  20877. image: {
  20878. source: "./media/characters/yumi-akiyama/back.svg",
  20879. extra: 1287 / 1245,
  20880. bottom: 0.002
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Galactic",
  20887. height: math.unit(50, "galaxies"),
  20888. default: true
  20889. },
  20890. {
  20891. name: "Universal",
  20892. height: math.unit(100, "universes")
  20893. },
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20898. {
  20899. front: {
  20900. height: math.unit(8, "feet"),
  20901. weight: math.unit(500, "lb"),
  20902. name: "Front",
  20903. image: {
  20904. source: "./media/characters/rifter-yrmori/front.svg",
  20905. extra: 1180 / 1125,
  20906. bottom: 0.02
  20907. }
  20908. },
  20909. back: {
  20910. height: math.unit(8, "feet"),
  20911. weight: math.unit(500, "lb"),
  20912. name: "Back",
  20913. image: {
  20914. source: "./media/characters/rifter-yrmori/back.svg",
  20915. extra: 1190 / 1145,
  20916. bottom: 0.001
  20917. }
  20918. },
  20919. wings: {
  20920. height: math.unit(7.75, "feet"),
  20921. weight: math.unit(500, "lb"),
  20922. name: "Wings",
  20923. image: {
  20924. source: "./media/characters/rifter-yrmori/wings.svg",
  20925. extra: 1357 / 1285
  20926. }
  20927. },
  20928. maw: {
  20929. height: math.unit(0.8, "feet"),
  20930. name: "Maw",
  20931. image: {
  20932. source: "./media/characters/rifter-yrmori/maw.svg"
  20933. }
  20934. },
  20935. mawfront: {
  20936. height: math.unit(1.45, "feet"),
  20937. name: "Maw (Front)",
  20938. image: {
  20939. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20940. }
  20941. },
  20942. },
  20943. [
  20944. {
  20945. name: "Normal",
  20946. height: math.unit(8, "feet"),
  20947. default: true
  20948. },
  20949. {
  20950. name: "Macro",
  20951. height: math.unit(42, "meters")
  20952. },
  20953. ]
  20954. ))
  20955. characterMakers.push(() => makeCharacter(
  20956. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20957. {
  20958. were: {
  20959. height: math.unit(25 + 6 / 12, "feet"),
  20960. weight: math.unit(10000, "lb"),
  20961. name: "Were",
  20962. image: {
  20963. source: "./media/characters/tahajin/were.svg",
  20964. extra: 801 / 770,
  20965. bottom: 0.042
  20966. }
  20967. },
  20968. aquatic: {
  20969. height: math.unit(6 + 4 / 12, "feet"),
  20970. weight: math.unit(160, "lb"),
  20971. name: "Aquatic",
  20972. image: {
  20973. source: "./media/characters/tahajin/aquatic.svg",
  20974. extra: 572 / 542,
  20975. bottom: 0.04
  20976. }
  20977. },
  20978. chow: {
  20979. height: math.unit(8 + 11 / 12, "feet"),
  20980. weight: math.unit(450, "lb"),
  20981. name: "Chow",
  20982. image: {
  20983. source: "./media/characters/tahajin/chow.svg",
  20984. extra: 660 / 640,
  20985. bottom: 0.015
  20986. }
  20987. },
  20988. demiNaga: {
  20989. height: math.unit(6 + 8 / 12, "feet"),
  20990. weight: math.unit(300, "lb"),
  20991. name: "Demi Naga",
  20992. image: {
  20993. source: "./media/characters/tahajin/demi-naga.svg",
  20994. extra: 643 / 615,
  20995. bottom: 0.1
  20996. }
  20997. },
  20998. data: {
  20999. height: math.unit(5, "inches"),
  21000. weight: math.unit(0.1, "lb"),
  21001. name: "Data",
  21002. image: {
  21003. source: "./media/characters/tahajin/data.svg"
  21004. }
  21005. },
  21006. fluu: {
  21007. height: math.unit(5 + 7 / 12, "feet"),
  21008. weight: math.unit(140, "lb"),
  21009. name: "Fluu",
  21010. image: {
  21011. source: "./media/characters/tahajin/fluu.svg",
  21012. extra: 628 / 592,
  21013. bottom: 0.02
  21014. }
  21015. },
  21016. starWarrior: {
  21017. height: math.unit(4 + 5 / 12, "feet"),
  21018. weight: math.unit(50, "lb"),
  21019. name: "Star Warrior",
  21020. image: {
  21021. source: "./media/characters/tahajin/star-warrior.svg"
  21022. }
  21023. },
  21024. },
  21025. [
  21026. {
  21027. name: "Normal",
  21028. height: math.unit(25 + 6 / 12, "feet"),
  21029. default: true
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21035. {
  21036. front: {
  21037. height: math.unit(8, "feet"),
  21038. weight: math.unit(350, "lb"),
  21039. name: "Front",
  21040. image: {
  21041. source: "./media/characters/gabira/front.svg",
  21042. extra: 608 / 580,
  21043. bottom: 0.03
  21044. }
  21045. },
  21046. back: {
  21047. height: math.unit(8, "feet"),
  21048. weight: math.unit(350, "lb"),
  21049. name: "Back",
  21050. image: {
  21051. source: "./media/characters/gabira/back.svg",
  21052. extra: 608 / 580,
  21053. bottom: 0.03
  21054. }
  21055. },
  21056. },
  21057. [
  21058. {
  21059. name: "Normal",
  21060. height: math.unit(8, "feet"),
  21061. default: true
  21062. },
  21063. ]
  21064. ))
  21065. characterMakers.push(() => makeCharacter(
  21066. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21067. {
  21068. front: {
  21069. height: math.unit(5 + 3 / 12, "feet"),
  21070. weight: math.unit(137, "lb"),
  21071. name: "Front",
  21072. image: {
  21073. source: "./media/characters/sasha-katraine/front.svg",
  21074. bottom: 0.045
  21075. }
  21076. },
  21077. },
  21078. [
  21079. {
  21080. name: "Micro",
  21081. height: math.unit(5, "inches")
  21082. },
  21083. {
  21084. name: "Normal",
  21085. height: math.unit(5 + 3 / 12, "feet"),
  21086. default: true
  21087. },
  21088. ]
  21089. ))
  21090. characterMakers.push(() => makeCharacter(
  21091. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21092. {
  21093. side: {
  21094. height: math.unit(4, "inches"),
  21095. weight: math.unit(200, "grams"),
  21096. name: "Side",
  21097. image: {
  21098. source: "./media/characters/der/side.svg",
  21099. extra: 719 / 400,
  21100. bottom: 30.6 / 749.9187
  21101. }
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Micro",
  21107. height: math.unit(4, "inches"),
  21108. default: true
  21109. },
  21110. ]
  21111. ))
  21112. characterMakers.push(() => makeCharacter(
  21113. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21114. {
  21115. side: {
  21116. height: math.unit(30, "meters"),
  21117. weight: math.unit(700, "tonnes"),
  21118. name: "Side",
  21119. image: {
  21120. source: "./media/characters/fixerdragon/side.svg",
  21121. extra: (1293.0514 - 116.03) / 1106.86,
  21122. bottom: 116.03 / 1293.0514
  21123. }
  21124. },
  21125. },
  21126. [
  21127. {
  21128. name: "Planck",
  21129. height: math.unit(1.6e-35, "meters")
  21130. },
  21131. {
  21132. name: "Micro",
  21133. height: math.unit(0.4, "meters")
  21134. },
  21135. {
  21136. name: "Normal",
  21137. height: math.unit(30, "meters"),
  21138. default: true
  21139. },
  21140. {
  21141. name: "Megamacro",
  21142. height: math.unit(1.2, "megameters")
  21143. },
  21144. {
  21145. name: "Teramacro",
  21146. height: math.unit(130, "terameters")
  21147. },
  21148. {
  21149. name: "Yottamacro",
  21150. height: math.unit(6200, "yottameters")
  21151. },
  21152. ]
  21153. ));
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21156. {
  21157. front: {
  21158. height: math.unit(8, "feet"),
  21159. weight: math.unit(250, "lb"),
  21160. name: "Front",
  21161. image: {
  21162. source: "./media/characters/kite/front.svg",
  21163. extra: 2796 / 2659,
  21164. bottom: 0.002
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Normal",
  21171. height: math.unit(8, "feet"),
  21172. default: true
  21173. },
  21174. {
  21175. name: "Macro",
  21176. height: math.unit(360, "feet")
  21177. },
  21178. {
  21179. name: "Megamacro",
  21180. height: math.unit(1500, "feet")
  21181. },
  21182. ]
  21183. ))
  21184. characterMakers.push(() => makeCharacter(
  21185. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21186. {
  21187. front: {
  21188. height: math.unit(5 + 10 / 12, "feet"),
  21189. weight: math.unit(150, "lb"),
  21190. name: "Front",
  21191. image: {
  21192. source: "./media/characters/poojawa-vynar/front.svg",
  21193. extra: (1506.1547 - 55) / 1356.6,
  21194. bottom: 55 / 1506.1547
  21195. }
  21196. },
  21197. frontTailless: {
  21198. height: math.unit(5 + 10 / 12, "feet"),
  21199. weight: math.unit(150, "lb"),
  21200. name: "Front (Tailless)",
  21201. image: {
  21202. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21203. extra: (1506.1547 - 55) / 1356.6,
  21204. bottom: 55 / 1506.1547
  21205. }
  21206. },
  21207. },
  21208. [
  21209. {
  21210. name: "Normal",
  21211. height: math.unit(5 + 10 / 12, "feet"),
  21212. default: true
  21213. },
  21214. ]
  21215. ))
  21216. characterMakers.push(() => makeCharacter(
  21217. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21218. {
  21219. front: {
  21220. height: math.unit(293, "meters"),
  21221. weight: math.unit(70400, "tons"),
  21222. name: "Front",
  21223. image: {
  21224. source: "./media/characters/violette/front.svg",
  21225. extra: 1227 / 1180,
  21226. bottom: 0.005
  21227. }
  21228. },
  21229. back: {
  21230. height: math.unit(293, "meters"),
  21231. weight: math.unit(70400, "tons"),
  21232. name: "Back",
  21233. image: {
  21234. source: "./media/characters/violette/back.svg",
  21235. extra: 1227 / 1180,
  21236. bottom: 0.005
  21237. }
  21238. },
  21239. },
  21240. [
  21241. {
  21242. name: "Macro",
  21243. height: math.unit(293, "meters"),
  21244. default: true
  21245. },
  21246. ]
  21247. ))
  21248. characterMakers.push(() => makeCharacter(
  21249. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21250. {
  21251. front: {
  21252. height: math.unit(1050, "feet"),
  21253. weight: math.unit(200000, "tons"),
  21254. name: "Front",
  21255. image: {
  21256. source: "./media/characters/alessandra/front.svg",
  21257. extra: 960 / 912,
  21258. bottom: 0.06
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Macro",
  21265. height: math.unit(1050, "feet")
  21266. },
  21267. {
  21268. name: "Macro+",
  21269. height: math.unit(900, "meters"),
  21270. default: true
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21276. {
  21277. front: {
  21278. height: math.unit(5, "feet"),
  21279. weight: math.unit(187, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/person/front.svg",
  21283. extra: 3087 / 2945,
  21284. bottom: 91 / 3181
  21285. }
  21286. },
  21287. },
  21288. [
  21289. {
  21290. name: "Micro",
  21291. height: math.unit(3, "inches")
  21292. },
  21293. {
  21294. name: "Normal",
  21295. height: math.unit(5, "feet"),
  21296. default: true
  21297. },
  21298. {
  21299. name: "Macro",
  21300. height: math.unit(90, "feet")
  21301. },
  21302. {
  21303. name: "Max Size",
  21304. height: math.unit(280, "feet")
  21305. },
  21306. ]
  21307. ))
  21308. characterMakers.push(() => makeCharacter(
  21309. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21310. {
  21311. front: {
  21312. height: math.unit(4.5, "meters"),
  21313. weight: math.unit(3200, "lb"),
  21314. name: "Front",
  21315. image: {
  21316. source: "./media/characters/ty/front.svg",
  21317. extra: 1038 / 960,
  21318. bottom: 31.156 / 1068
  21319. }
  21320. },
  21321. back: {
  21322. height: math.unit(4.5, "meters"),
  21323. weight: math.unit(3200, "lb"),
  21324. name: "Back",
  21325. image: {
  21326. source: "./media/characters/ty/back.svg",
  21327. extra: 1044 / 966,
  21328. bottom: 7.48 / 1049
  21329. }
  21330. },
  21331. },
  21332. [
  21333. {
  21334. name: "Normal",
  21335. height: math.unit(4.5, "meters"),
  21336. default: true
  21337. },
  21338. ]
  21339. ))
  21340. characterMakers.push(() => makeCharacter(
  21341. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21342. {
  21343. front: {
  21344. height: math.unit(5 + 4 / 12, "feet"),
  21345. weight: math.unit(115, "lb"),
  21346. name: "Front",
  21347. image: {
  21348. source: "./media/characters/rocky/front.svg",
  21349. extra: 1012 / 975,
  21350. bottom: 54 / 1066
  21351. }
  21352. },
  21353. },
  21354. [
  21355. {
  21356. name: "Normal",
  21357. height: math.unit(5 + 4 / 12, "feet"),
  21358. default: true
  21359. },
  21360. ]
  21361. ))
  21362. characterMakers.push(() => makeCharacter(
  21363. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21364. {
  21365. upright: {
  21366. height: math.unit(6, "meters"),
  21367. weight: math.unit(4000, "kg"),
  21368. name: "Upright",
  21369. image: {
  21370. source: "./media/characters/ruin/upright.svg",
  21371. extra: 668 / 661,
  21372. bottom: 42 / 799.8396
  21373. }
  21374. },
  21375. },
  21376. [
  21377. {
  21378. name: "Normal",
  21379. height: math.unit(6, "meters"),
  21380. default: true
  21381. },
  21382. ]
  21383. ))
  21384. characterMakers.push(() => makeCharacter(
  21385. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21386. {
  21387. front: {
  21388. height: math.unit(5, "feet"),
  21389. weight: math.unit(106, "lb"),
  21390. name: "Front",
  21391. image: {
  21392. source: "./media/characters/robin/front.svg",
  21393. extra: 862 / 799,
  21394. bottom: 42.4 / 914.8856
  21395. }
  21396. },
  21397. },
  21398. [
  21399. {
  21400. name: "Normal",
  21401. height: math.unit(5, "feet"),
  21402. default: true
  21403. },
  21404. ]
  21405. ))
  21406. characterMakers.push(() => makeCharacter(
  21407. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21408. {
  21409. side: {
  21410. height: math.unit(3, "feet"),
  21411. weight: math.unit(225, "lb"),
  21412. name: "Side",
  21413. image: {
  21414. source: "./media/characters/saian/side.svg",
  21415. extra: 566 / 356,
  21416. bottom: 79.7 / 643
  21417. }
  21418. },
  21419. maw: {
  21420. height: math.unit(2.85, "feet"),
  21421. name: "Maw",
  21422. image: {
  21423. source: "./media/characters/saian/maw.svg"
  21424. }
  21425. },
  21426. },
  21427. [
  21428. {
  21429. name: "Normal",
  21430. height: math.unit(3, "feet"),
  21431. default: true
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21437. {
  21438. side: {
  21439. height: math.unit(8, "feet"),
  21440. weight: math.unit(300, "lb"),
  21441. name: "Side",
  21442. image: {
  21443. source: "./media/characters/equus-silvermane/side.svg",
  21444. extra: 2176 / 2050,
  21445. bottom: 65.7 / 2245
  21446. }
  21447. },
  21448. front: {
  21449. height: math.unit(8, "feet"),
  21450. weight: math.unit(300, "lb"),
  21451. name: "Front",
  21452. image: {
  21453. source: "./media/characters/equus-silvermane/front.svg",
  21454. extra: 4633 / 4400,
  21455. bottom: 71.3 / 4706.915
  21456. }
  21457. },
  21458. sideStepping: {
  21459. height: math.unit(8, "feet"),
  21460. weight: math.unit(300, "lb"),
  21461. name: "Side (Stepping)",
  21462. image: {
  21463. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21464. extra: 1968 / 1860,
  21465. bottom: 16.4 / 1989
  21466. }
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Normal",
  21472. height: math.unit(8, "feet")
  21473. },
  21474. {
  21475. name: "Minimacro",
  21476. height: math.unit(75, "feet"),
  21477. default: true
  21478. },
  21479. {
  21480. name: "Macro",
  21481. height: math.unit(150, "feet")
  21482. },
  21483. {
  21484. name: "Macro+",
  21485. height: math.unit(1000, "feet")
  21486. },
  21487. {
  21488. name: "Megamacro",
  21489. height: math.unit(1, "mile")
  21490. },
  21491. ]
  21492. ))
  21493. characterMakers.push(() => makeCharacter(
  21494. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21495. {
  21496. side: {
  21497. height: math.unit(20, "feet"),
  21498. weight: math.unit(30000, "kg"),
  21499. name: "Side",
  21500. image: {
  21501. source: "./media/characters/windar/side.svg",
  21502. extra: 1491 / 1248,
  21503. bottom: 82.56 / 1568
  21504. }
  21505. },
  21506. },
  21507. [
  21508. {
  21509. name: "Normal",
  21510. height: math.unit(20, "feet"),
  21511. default: true
  21512. },
  21513. ]
  21514. ))
  21515. characterMakers.push(() => makeCharacter(
  21516. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21517. {
  21518. side: {
  21519. height: math.unit(15.66, "feet"),
  21520. weight: math.unit(150, "lb"),
  21521. name: "Side",
  21522. image: {
  21523. source: "./media/characters/melody/side.svg",
  21524. extra: 1097 / 944,
  21525. bottom: 11.8 / 1109
  21526. }
  21527. },
  21528. sideOutfit: {
  21529. height: math.unit(15.66, "feet"),
  21530. weight: math.unit(150, "lb"),
  21531. name: "Side (Outfit)",
  21532. image: {
  21533. source: "./media/characters/melody/side-outfit.svg",
  21534. extra: 1097 / 944,
  21535. bottom: 11.8 / 1109
  21536. }
  21537. },
  21538. },
  21539. [
  21540. {
  21541. name: "Normal",
  21542. height: math.unit(15.66, "feet"),
  21543. default: true
  21544. },
  21545. ]
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21549. {
  21550. front: {
  21551. height: math.unit(8, "feet"),
  21552. weight: math.unit(325, "lb"),
  21553. name: "Front",
  21554. image: {
  21555. source: "./media/characters/windera/front.svg",
  21556. extra: 3180 / 2845,
  21557. bottom: 178 / 3365
  21558. }
  21559. },
  21560. },
  21561. [
  21562. {
  21563. name: "Normal",
  21564. height: math.unit(8, "feet"),
  21565. default: true
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21571. {
  21572. front: {
  21573. height: math.unit(28.75, "feet"),
  21574. weight: math.unit(2000, "kg"),
  21575. name: "Front",
  21576. image: {
  21577. source: "./media/characters/sonear/front.svg",
  21578. extra: 1041.1 / 964.9,
  21579. bottom: 53.7 / 1096.6
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Normal",
  21586. height: math.unit(28.75, "feet"),
  21587. default: true
  21588. },
  21589. ]
  21590. ))
  21591. characterMakers.push(() => makeCharacter(
  21592. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21593. {
  21594. side: {
  21595. height: math.unit(25.5, "feet"),
  21596. weight: math.unit(23000, "kg"),
  21597. name: "Side",
  21598. image: {
  21599. source: "./media/characters/kanara/side.svg"
  21600. }
  21601. },
  21602. },
  21603. [
  21604. {
  21605. name: "Normal",
  21606. height: math.unit(25.5, "feet"),
  21607. default: true
  21608. },
  21609. ]
  21610. ))
  21611. characterMakers.push(() => makeCharacter(
  21612. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21613. {
  21614. side: {
  21615. height: math.unit(10, "feet"),
  21616. weight: math.unit(1000, "kg"),
  21617. name: "Side",
  21618. image: {
  21619. source: "./media/characters/ereus/side.svg",
  21620. extra: 1157 / 959,
  21621. bottom: 153 / 1312.5
  21622. }
  21623. },
  21624. },
  21625. [
  21626. {
  21627. name: "Normal",
  21628. height: math.unit(10, "feet"),
  21629. default: true
  21630. },
  21631. ]
  21632. ))
  21633. characterMakers.push(() => makeCharacter(
  21634. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21635. {
  21636. side: {
  21637. height: math.unit(4.5, "feet"),
  21638. weight: math.unit(500, "lb"),
  21639. name: "Side",
  21640. image: {
  21641. source: "./media/characters/e-ter/side.svg",
  21642. extra: 1550 / 1248,
  21643. bottom: 146 / 1694
  21644. }
  21645. },
  21646. },
  21647. [
  21648. {
  21649. name: "Normal",
  21650. height: math.unit(4.5, "feet"),
  21651. default: true
  21652. },
  21653. ]
  21654. ))
  21655. characterMakers.push(() => makeCharacter(
  21656. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21657. {
  21658. side: {
  21659. height: math.unit(9.7, "feet"),
  21660. weight: math.unit(4000, "kg"),
  21661. name: "Side",
  21662. image: {
  21663. source: "./media/characters/yamie/side.svg"
  21664. }
  21665. },
  21666. },
  21667. [
  21668. {
  21669. name: "Normal",
  21670. height: math.unit(9.7, "feet"),
  21671. default: true
  21672. },
  21673. ]
  21674. ))
  21675. characterMakers.push(() => makeCharacter(
  21676. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21677. {
  21678. front: {
  21679. height: math.unit(50, "feet"),
  21680. weight: math.unit(50000, "kg"),
  21681. name: "Front",
  21682. image: {
  21683. source: "./media/characters/anders/front.svg",
  21684. extra: 570 / 539,
  21685. bottom: 14.7 / 586.7
  21686. }
  21687. },
  21688. },
  21689. [
  21690. {
  21691. name: "Large",
  21692. height: math.unit(50, "feet")
  21693. },
  21694. {
  21695. name: "Macro",
  21696. height: math.unit(2000, "feet"),
  21697. default: true
  21698. },
  21699. {
  21700. name: "Megamacro",
  21701. height: math.unit(12, "miles")
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(7 + 2 / 12, "feet"),
  21710. weight: math.unit(300, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/reban/front.svg",
  21714. extra: 516 / 487,
  21715. bottom: 42.82 / 558.356
  21716. }
  21717. },
  21718. dick: {
  21719. height: math.unit(7 / 5, "feet"),
  21720. name: "Dick",
  21721. image: {
  21722. source: "./media/characters/reban/dick.svg"
  21723. }
  21724. },
  21725. },
  21726. [
  21727. {
  21728. name: "Natural Height",
  21729. height: math.unit(7 + 2 / 12, "feet")
  21730. },
  21731. {
  21732. name: "Macro",
  21733. height: math.unit(500, "feet"),
  21734. default: true
  21735. },
  21736. {
  21737. name: "Canon Height",
  21738. height: math.unit(50, "AU")
  21739. },
  21740. ]
  21741. ))
  21742. characterMakers.push(() => makeCharacter(
  21743. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21744. {
  21745. front: {
  21746. height: math.unit(6, "feet"),
  21747. weight: math.unit(150, "lb"),
  21748. name: "Front",
  21749. image: {
  21750. source: "./media/characters/terrance-keayes/front.svg",
  21751. extra: 1.005,
  21752. bottom: 151 / 1615
  21753. }
  21754. },
  21755. side: {
  21756. height: math.unit(6, "feet"),
  21757. weight: math.unit(150, "lb"),
  21758. name: "Side",
  21759. image: {
  21760. source: "./media/characters/terrance-keayes/side.svg",
  21761. extra: 1.005,
  21762. bottom: 129.4 / 1544
  21763. }
  21764. },
  21765. back: {
  21766. height: math.unit(6, "feet"),
  21767. weight: math.unit(150, "lb"),
  21768. name: "Back",
  21769. image: {
  21770. source: "./media/characters/terrance-keayes/back.svg",
  21771. extra: 1.005,
  21772. bottom: 58.4 / 1557.3
  21773. }
  21774. },
  21775. dick: {
  21776. height: math.unit(6 * 0.208, "feet"),
  21777. name: "Dick",
  21778. image: {
  21779. source: "./media/characters/terrance-keayes/dick.svg"
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Canon Height",
  21786. height: math.unit(35, "miles"),
  21787. default: true
  21788. },
  21789. ]
  21790. ))
  21791. characterMakers.push(() => makeCharacter(
  21792. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21793. {
  21794. front: {
  21795. height: math.unit(6, "feet"),
  21796. weight: math.unit(150, "lb"),
  21797. name: "Front",
  21798. image: {
  21799. source: "./media/characters/ofelia/front.svg",
  21800. extra: 546 / 541,
  21801. bottom: 39 / 583
  21802. }
  21803. },
  21804. back: {
  21805. height: math.unit(6, "feet"),
  21806. weight: math.unit(150, "lb"),
  21807. name: "Back",
  21808. image: {
  21809. source: "./media/characters/ofelia/back.svg",
  21810. extra: 564 / 559.5,
  21811. bottom: 8.69 / 573.02
  21812. }
  21813. },
  21814. maw: {
  21815. height: math.unit(1, "feet"),
  21816. name: "Maw",
  21817. image: {
  21818. source: "./media/characters/ofelia/maw.svg"
  21819. }
  21820. },
  21821. foot: {
  21822. height: math.unit(1.949, "feet"),
  21823. name: "Foot",
  21824. image: {
  21825. source: "./media/characters/ofelia/foot.svg"
  21826. }
  21827. },
  21828. },
  21829. [
  21830. {
  21831. name: "Canon Height",
  21832. height: math.unit(2000, "miles"),
  21833. default: true
  21834. },
  21835. ]
  21836. ))
  21837. characterMakers.push(() => makeCharacter(
  21838. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21839. {
  21840. front: {
  21841. height: math.unit(6, "feet"),
  21842. weight: math.unit(150, "lb"),
  21843. name: "Front",
  21844. image: {
  21845. source: "./media/characters/samuel/front.svg",
  21846. extra: 265 / 258,
  21847. bottom: 2 / 266.1566
  21848. }
  21849. },
  21850. },
  21851. [
  21852. {
  21853. name: "Macro",
  21854. height: math.unit(100, "feet"),
  21855. default: true
  21856. },
  21857. {
  21858. name: "Full Size",
  21859. height: math.unit(1000, "miles")
  21860. },
  21861. ]
  21862. ))
  21863. characterMakers.push(() => makeCharacter(
  21864. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21865. {
  21866. front: {
  21867. height: math.unit(6, "feet"),
  21868. weight: math.unit(300, "lb"),
  21869. name: "Front",
  21870. image: {
  21871. source: "./media/characters/beishir-kiel/front.svg",
  21872. extra: 569 / 547,
  21873. bottom: 41.9 / 609
  21874. }
  21875. },
  21876. maw: {
  21877. height: math.unit(6 * 0.202, "feet"),
  21878. name: "Maw",
  21879. image: {
  21880. source: "./media/characters/beishir-kiel/maw.svg"
  21881. }
  21882. },
  21883. },
  21884. [
  21885. {
  21886. name: "Macro",
  21887. height: math.unit(300, "feet"),
  21888. default: true
  21889. },
  21890. ]
  21891. ))
  21892. characterMakers.push(() => makeCharacter(
  21893. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21894. {
  21895. front: {
  21896. height: math.unit(5 + 8 / 12, "feet"),
  21897. weight: math.unit(120, "lb"),
  21898. name: "Front",
  21899. image: {
  21900. source: "./media/characters/logan-grey/front.svg",
  21901. extra: 2539 / 2393,
  21902. bottom: 97.6 / 2636.37
  21903. }
  21904. },
  21905. frontAlt: {
  21906. height: math.unit(5 + 8 / 12, "feet"),
  21907. weight: math.unit(120, "lb"),
  21908. name: "Front (Alt)",
  21909. image: {
  21910. source: "./media/characters/logan-grey/front-alt.svg",
  21911. extra: 958 / 893,
  21912. bottom: 15 / 970.768
  21913. }
  21914. },
  21915. back: {
  21916. height: math.unit(5 + 8 / 12, "feet"),
  21917. weight: math.unit(120, "lb"),
  21918. name: "Back",
  21919. image: {
  21920. source: "./media/characters/logan-grey/back.svg",
  21921. extra: 958 / 893,
  21922. bottom: 2.1881 / 970.9788
  21923. }
  21924. },
  21925. dick: {
  21926. height: math.unit(1.437, "feet"),
  21927. name: "Dick",
  21928. image: {
  21929. source: "./media/characters/logan-grey/dick.svg"
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Normal",
  21936. height: math.unit(5 + 8 / 12, "feet")
  21937. },
  21938. {
  21939. name: "The 500 Foot Femboy",
  21940. height: math.unit(500, "feet"),
  21941. default: true
  21942. },
  21943. {
  21944. name: "Megmacro",
  21945. height: math.unit(20, "miles")
  21946. },
  21947. ]
  21948. ))
  21949. characterMakers.push(() => makeCharacter(
  21950. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21951. {
  21952. front: {
  21953. height: math.unit(8 + 2 / 12, "feet"),
  21954. weight: math.unit(275, "lb"),
  21955. name: "Front",
  21956. image: {
  21957. source: "./media/characters/draganta/front.svg",
  21958. extra: 1177 / 1135,
  21959. bottom: 33.46 / 1212.1
  21960. }
  21961. },
  21962. },
  21963. [
  21964. {
  21965. name: "Normal",
  21966. height: math.unit(8 + 6 / 12, "feet"),
  21967. default: true
  21968. },
  21969. {
  21970. name: "Macro",
  21971. height: math.unit(150, "feet")
  21972. },
  21973. {
  21974. name: "Megamacro",
  21975. height: math.unit(1000, "miles")
  21976. },
  21977. ]
  21978. ))
  21979. characterMakers.push(() => makeCharacter(
  21980. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21981. {
  21982. front: {
  21983. height: math.unit(1.72, "m"),
  21984. weight: math.unit(80, "lb"),
  21985. name: "Front",
  21986. image: {
  21987. source: "./media/characters/voski/front.svg",
  21988. extra: 2076.22 / 2022.4,
  21989. bottom: 102.7 / 2177.3866
  21990. }
  21991. },
  21992. frontNsfw: {
  21993. height: math.unit(1.72, "m"),
  21994. weight: math.unit(80, "lb"),
  21995. name: "Front (NSFW)",
  21996. image: {
  21997. source: "./media/characters/voski/front-nsfw.svg",
  21998. extra: 2076.22 / 2022.4,
  21999. bottom: 102.7 / 2177.3866
  22000. }
  22001. },
  22002. back: {
  22003. height: math.unit(1.72, "m"),
  22004. weight: math.unit(80, "lb"),
  22005. name: "Back",
  22006. image: {
  22007. source: "./media/characters/voski/back.svg",
  22008. extra: 2104 / 2051,
  22009. bottom: 10.45 / 2113.63
  22010. }
  22011. },
  22012. },
  22013. [
  22014. {
  22015. name: "Normal",
  22016. height: math.unit(1.72, "m")
  22017. },
  22018. {
  22019. name: "Macro",
  22020. height: math.unit(55, "m"),
  22021. default: true
  22022. },
  22023. {
  22024. name: "Macro+",
  22025. height: math.unit(300, "m")
  22026. },
  22027. {
  22028. name: "Macro++",
  22029. height: math.unit(700, "m")
  22030. },
  22031. {
  22032. name: "Macro+++",
  22033. height: math.unit(4500, "m")
  22034. },
  22035. {
  22036. name: "Macro++++",
  22037. height: math.unit(45, "km")
  22038. },
  22039. {
  22040. name: "Macro+++++",
  22041. height: math.unit(1220, "km")
  22042. },
  22043. ]
  22044. ))
  22045. characterMakers.push(() => makeCharacter(
  22046. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22047. {
  22048. front: {
  22049. height: math.unit(2.3, "m"),
  22050. weight: math.unit(304, "kg"),
  22051. name: "Front",
  22052. image: {
  22053. source: "./media/characters/icowom-lee/front.svg",
  22054. extra: 985 / 955,
  22055. bottom: 25.4 / 1012
  22056. }
  22057. },
  22058. fronttentacles: {
  22059. height: math.unit(2.3, "m"),
  22060. weight: math.unit(304, "kg"),
  22061. name: "Front-tentacles",
  22062. image: {
  22063. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22064. extra: 985 / 955,
  22065. bottom: 25.4 / 1012
  22066. }
  22067. },
  22068. back: {
  22069. height: math.unit(2.3, "m"),
  22070. weight: math.unit(304, "kg"),
  22071. name: "Back",
  22072. image: {
  22073. source: "./media/characters/icowom-lee/back.svg",
  22074. extra: 975 / 954,
  22075. bottom: 9.5 / 985
  22076. }
  22077. },
  22078. backtentacles: {
  22079. height: math.unit(2.3, "m"),
  22080. weight: math.unit(304, "kg"),
  22081. name: "Back-tentacles",
  22082. image: {
  22083. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22084. extra: 975 / 954,
  22085. bottom: 9.5 / 985
  22086. }
  22087. },
  22088. frontDressed: {
  22089. height: math.unit(2.3, "m"),
  22090. weight: math.unit(304, "kg"),
  22091. name: "Front (Dressed)",
  22092. image: {
  22093. source: "./media/characters/icowom-lee/front-dressed.svg",
  22094. extra: 3076 / 2933,
  22095. bottom: 51.4 / 3125.1889
  22096. }
  22097. },
  22098. rump: {
  22099. height: math.unit(0.776, "meters"),
  22100. name: "Rump",
  22101. image: {
  22102. source: "./media/characters/icowom-lee/rump.svg"
  22103. }
  22104. },
  22105. genitals: {
  22106. height: math.unit(0.78, "meters"),
  22107. name: "Genitals",
  22108. image: {
  22109. source: "./media/characters/icowom-lee/genitals.svg"
  22110. }
  22111. },
  22112. },
  22113. [
  22114. {
  22115. name: "Normal",
  22116. height: math.unit(2.3, "meters"),
  22117. default: true
  22118. },
  22119. {
  22120. name: "Macro",
  22121. height: math.unit(94, "meters"),
  22122. default: true
  22123. },
  22124. ]
  22125. ))
  22126. characterMakers.push(() => makeCharacter(
  22127. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22128. {
  22129. front: {
  22130. height: math.unit(22, "meters"),
  22131. weight: math.unit(21000, "kg"),
  22132. name: "Front",
  22133. image: {
  22134. source: "./media/characters/shock-diamond/front.svg",
  22135. extra: 2204 / 2053,
  22136. bottom: 65 / 2239.47
  22137. }
  22138. },
  22139. frontNude: {
  22140. height: math.unit(22, "meters"),
  22141. weight: math.unit(21000, "kg"),
  22142. name: "Front (Nude)",
  22143. image: {
  22144. source: "./media/characters/shock-diamond/front-nude.svg",
  22145. extra: 2514 / 2285,
  22146. bottom: 13 / 2527.56
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Normal",
  22153. height: math.unit(3, "meters")
  22154. },
  22155. {
  22156. name: "Macro",
  22157. height: math.unit(22, "meters"),
  22158. default: true
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22164. {
  22165. front: {
  22166. height: math.unit(5 + 4 / 12, "feet"),
  22167. weight: math.unit(120, "lb"),
  22168. name: "Front",
  22169. image: {
  22170. source: "./media/characters/rory/front.svg",
  22171. extra: 589 / 556,
  22172. bottom: 45.7 / 635.76
  22173. }
  22174. },
  22175. frontNude: {
  22176. height: math.unit(5 + 4 / 12, "feet"),
  22177. weight: math.unit(120, "lb"),
  22178. name: "Front (Nude)",
  22179. image: {
  22180. source: "./media/characters/rory/front-nude.svg",
  22181. extra: 589 / 556,
  22182. bottom: 45.7 / 635.76
  22183. }
  22184. },
  22185. side: {
  22186. height: math.unit(5 + 4 / 12, "feet"),
  22187. weight: math.unit(120, "lb"),
  22188. name: "Side",
  22189. image: {
  22190. source: "./media/characters/rory/side.svg",
  22191. extra: 597 / 564,
  22192. bottom: 55 / 653
  22193. }
  22194. },
  22195. back: {
  22196. height: math.unit(5 + 4 / 12, "feet"),
  22197. weight: math.unit(120, "lb"),
  22198. name: "Back",
  22199. image: {
  22200. source: "./media/characters/rory/back.svg",
  22201. extra: 620 / 585,
  22202. bottom: 8.86 / 630.43
  22203. }
  22204. },
  22205. dick: {
  22206. height: math.unit(0.86, "feet"),
  22207. name: "Dick",
  22208. image: {
  22209. source: "./media/characters/rory/dick.svg"
  22210. }
  22211. },
  22212. },
  22213. [
  22214. {
  22215. name: "Normal",
  22216. height: math.unit(5 + 4 / 12, "feet"),
  22217. default: true
  22218. },
  22219. {
  22220. name: "Macro",
  22221. height: math.unit(100, "feet")
  22222. },
  22223. {
  22224. name: "Macro+",
  22225. height: math.unit(140, "feet")
  22226. },
  22227. {
  22228. name: "Macro++",
  22229. height: math.unit(300, "feet")
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22235. {
  22236. front: {
  22237. height: math.unit(5 + 9 / 12, "feet"),
  22238. weight: math.unit(190, "lb"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/sprisk/front.svg",
  22242. extra: 1225 / 1180,
  22243. bottom: 42.7 / 1266.4
  22244. }
  22245. },
  22246. frontNsfw: {
  22247. height: math.unit(5 + 9 / 12, "feet"),
  22248. weight: math.unit(190, "lb"),
  22249. name: "Front (NSFW)",
  22250. image: {
  22251. source: "./media/characters/sprisk/front-nsfw.svg",
  22252. extra: 1225 / 1180,
  22253. bottom: 42.7 / 1266.4
  22254. }
  22255. },
  22256. back: {
  22257. height: math.unit(5 + 9 / 12, "feet"),
  22258. weight: math.unit(190, "lb"),
  22259. name: "Back",
  22260. image: {
  22261. source: "./media/characters/sprisk/back.svg",
  22262. extra: 1247 / 1200,
  22263. bottom: 5.6 / 1253.04
  22264. }
  22265. },
  22266. },
  22267. [
  22268. {
  22269. name: "Tiny",
  22270. height: math.unit(2, "inches")
  22271. },
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(5 + 9 / 12, "feet"),
  22275. default: true
  22276. },
  22277. {
  22278. name: "Mini Macro",
  22279. height: math.unit(18, "feet")
  22280. },
  22281. {
  22282. name: "Macro",
  22283. height: math.unit(100, "feet")
  22284. },
  22285. {
  22286. name: "MACRO",
  22287. height: math.unit(50, "miles")
  22288. },
  22289. {
  22290. name: "M A C R O",
  22291. height: math.unit(300, "miles")
  22292. },
  22293. ]
  22294. ))
  22295. characterMakers.push(() => makeCharacter(
  22296. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22297. {
  22298. side: {
  22299. height: math.unit(15.6, "meters"),
  22300. weight: math.unit(700000, "kg"),
  22301. name: "Side",
  22302. image: {
  22303. source: "./media/characters/bunsen/side.svg",
  22304. extra: 1644 / 358
  22305. }
  22306. },
  22307. foot: {
  22308. height: math.unit(1.611 * 1644 / 358, "meter"),
  22309. name: "Foot",
  22310. image: {
  22311. source: "./media/characters/bunsen/foot.svg"
  22312. }
  22313. },
  22314. },
  22315. [
  22316. {
  22317. name: "Small",
  22318. height: math.unit(10, "feet")
  22319. },
  22320. {
  22321. name: "Normal",
  22322. height: math.unit(15.6, "meters"),
  22323. default: true
  22324. },
  22325. ]
  22326. ))
  22327. characterMakers.push(() => makeCharacter(
  22328. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22329. {
  22330. front: {
  22331. height: math.unit(4 + 11 / 12, "feet"),
  22332. weight: math.unit(140, "lb"),
  22333. name: "Front",
  22334. image: {
  22335. source: "./media/characters/sesh/front.svg",
  22336. extra: 3420 / 3231,
  22337. bottom: 72 / 3949.5
  22338. }
  22339. },
  22340. },
  22341. [
  22342. {
  22343. name: "Normal",
  22344. height: math.unit(4 + 11 / 12, "feet")
  22345. },
  22346. {
  22347. name: "Grown",
  22348. height: math.unit(15, "feet"),
  22349. default: true
  22350. },
  22351. {
  22352. name: "Macro",
  22353. height: math.unit(1500, "feet")
  22354. },
  22355. {
  22356. name: "Megamacro",
  22357. height: math.unit(30, "miles")
  22358. },
  22359. {
  22360. name: "Continental",
  22361. height: math.unit(3000, "miles")
  22362. },
  22363. {
  22364. name: "Gravity Mass",
  22365. height: math.unit(300000, "miles")
  22366. },
  22367. {
  22368. name: "Planet Buster",
  22369. height: math.unit(30000000, "miles")
  22370. },
  22371. {
  22372. name: "Big",
  22373. height: math.unit(3000000000, "miles")
  22374. },
  22375. ]
  22376. ))
  22377. characterMakers.push(() => makeCharacter(
  22378. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22379. {
  22380. front: {
  22381. height: math.unit(9, "feet"),
  22382. weight: math.unit(350, "lb"),
  22383. name: "Front",
  22384. image: {
  22385. source: "./media/characters/pepper/front.svg",
  22386. extra: 1448 / 1312,
  22387. bottom: 9.4 / 1457.88
  22388. }
  22389. },
  22390. back: {
  22391. height: math.unit(9, "feet"),
  22392. weight: math.unit(350, "lb"),
  22393. name: "Back",
  22394. image: {
  22395. source: "./media/characters/pepper/back.svg",
  22396. extra: 1423 / 1300,
  22397. bottom: 4.6 / 1429
  22398. }
  22399. },
  22400. maw: {
  22401. height: math.unit(0.932, "feet"),
  22402. name: "Maw",
  22403. image: {
  22404. source: "./media/characters/pepper/maw.svg"
  22405. }
  22406. },
  22407. },
  22408. [
  22409. {
  22410. name: "Normal",
  22411. height: math.unit(9, "feet"),
  22412. default: true
  22413. },
  22414. ]
  22415. ))
  22416. characterMakers.push(() => makeCharacter(
  22417. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22418. {
  22419. front: {
  22420. height: math.unit(6, "feet"),
  22421. weight: math.unit(150, "lb"),
  22422. name: "Front",
  22423. image: {
  22424. source: "./media/characters/maelstrom/front.svg",
  22425. extra: 2100 / 1883,
  22426. bottom: 94 / 2196.7
  22427. }
  22428. },
  22429. },
  22430. [
  22431. {
  22432. name: "Less Kaiju",
  22433. height: math.unit(200, "feet")
  22434. },
  22435. {
  22436. name: "Kaiju",
  22437. height: math.unit(400, "feet"),
  22438. default: true
  22439. },
  22440. {
  22441. name: "Kaiju-er",
  22442. height: math.unit(600, "feet")
  22443. },
  22444. ]
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22448. {
  22449. front: {
  22450. height: math.unit(6 + 5 / 12, "feet"),
  22451. weight: math.unit(180, "lb"),
  22452. name: "Front",
  22453. image: {
  22454. source: "./media/characters/lexir/front.svg",
  22455. extra: 180 / 172,
  22456. bottom: 12 / 192
  22457. }
  22458. },
  22459. back: {
  22460. height: math.unit(6 + 5 / 12, "feet"),
  22461. weight: math.unit(180, "lb"),
  22462. name: "Back",
  22463. image: {
  22464. source: "./media/characters/lexir/back.svg",
  22465. extra: 183.84 / 175.5,
  22466. bottom: 3.1 / 187
  22467. }
  22468. },
  22469. },
  22470. [
  22471. {
  22472. name: "Very Smal",
  22473. height: math.unit(1, "nm")
  22474. },
  22475. {
  22476. name: "Normal",
  22477. height: math.unit(6 + 5 / 12, "feet"),
  22478. default: true
  22479. },
  22480. {
  22481. name: "Macro",
  22482. height: math.unit(1, "mile")
  22483. },
  22484. {
  22485. name: "Megamacro",
  22486. height: math.unit(50, "miles")
  22487. },
  22488. ]
  22489. ))
  22490. characterMakers.push(() => makeCharacter(
  22491. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22492. {
  22493. front: {
  22494. height: math.unit(1.5, "meters"),
  22495. weight: math.unit(100, "lb"),
  22496. name: "Front",
  22497. image: {
  22498. source: "./media/characters/maksio/front.svg",
  22499. extra: 1549 / 1531,
  22500. bottom: 123.7 / 1674.5429
  22501. }
  22502. },
  22503. back: {
  22504. height: math.unit(1.5, "meters"),
  22505. weight: math.unit(100, "lb"),
  22506. name: "Back",
  22507. image: {
  22508. source: "./media/characters/maksio/back.svg",
  22509. extra: 1541 / 1509,
  22510. bottom: 97 / 1639
  22511. }
  22512. },
  22513. hand: {
  22514. height: math.unit(0.621, "feet"),
  22515. name: "Hand",
  22516. image: {
  22517. source: "./media/characters/maksio/hand.svg"
  22518. }
  22519. },
  22520. foot: {
  22521. height: math.unit(1.611, "feet"),
  22522. name: "Foot",
  22523. image: {
  22524. source: "./media/characters/maksio/foot.svg"
  22525. }
  22526. },
  22527. },
  22528. [
  22529. {
  22530. name: "Shrunken",
  22531. height: math.unit(10, "cm")
  22532. },
  22533. {
  22534. name: "Normal",
  22535. height: math.unit(150, "cm"),
  22536. default: true
  22537. },
  22538. ]
  22539. ))
  22540. characterMakers.push(() => makeCharacter(
  22541. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22542. {
  22543. front: {
  22544. height: math.unit(100, "feet"),
  22545. name: "Front",
  22546. image: {
  22547. source: "./media/characters/erza-bear/front.svg",
  22548. extra: 2449 / 2390,
  22549. bottom: 46 / 2494
  22550. }
  22551. },
  22552. back: {
  22553. height: math.unit(100, "feet"),
  22554. name: "Back",
  22555. image: {
  22556. source: "./media/characters/erza-bear/back.svg",
  22557. extra: 2489 / 2430,
  22558. bottom: 85.4 / 2480
  22559. }
  22560. },
  22561. tail: {
  22562. height: math.unit(42, "feet"),
  22563. name: "Tail",
  22564. image: {
  22565. source: "./media/characters/erza-bear/tail.svg"
  22566. }
  22567. },
  22568. tongue: {
  22569. height: math.unit(8, "feet"),
  22570. name: "Tongue",
  22571. image: {
  22572. source: "./media/characters/erza-bear/tongue.svg"
  22573. }
  22574. },
  22575. dick: {
  22576. height: math.unit(10.5, "feet"),
  22577. name: "Dick",
  22578. image: {
  22579. source: "./media/characters/erza-bear/dick.svg"
  22580. }
  22581. },
  22582. dickVertical: {
  22583. height: math.unit(16.9, "feet"),
  22584. name: "Dick (Vertical)",
  22585. image: {
  22586. source: "./media/characters/erza-bear/dick-vertical.svg"
  22587. }
  22588. },
  22589. },
  22590. [
  22591. {
  22592. name: "Macro",
  22593. height: math.unit(100, "feet"),
  22594. default: true
  22595. },
  22596. ]
  22597. ))
  22598. characterMakers.push(() => makeCharacter(
  22599. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22600. {
  22601. front: {
  22602. height: math.unit(172, "cm"),
  22603. weight: math.unit(73, "kg"),
  22604. name: "Front",
  22605. image: {
  22606. source: "./media/characters/violet-flor/front.svg",
  22607. extra: 1530 / 1442,
  22608. bottom: 61.9 / 1588.8
  22609. }
  22610. },
  22611. back: {
  22612. height: math.unit(180, "cm"),
  22613. weight: math.unit(73, "kg"),
  22614. name: "Back",
  22615. image: {
  22616. source: "./media/characters/violet-flor/back.svg",
  22617. extra: 1692 / 1630,
  22618. bottom: 20 / 1712
  22619. }
  22620. },
  22621. },
  22622. [
  22623. {
  22624. name: "Normal",
  22625. height: math.unit(172, "cm"),
  22626. default: true
  22627. },
  22628. ]
  22629. ))
  22630. characterMakers.push(() => makeCharacter(
  22631. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22632. {
  22633. front: {
  22634. height: math.unit(6, "feet"),
  22635. weight: math.unit(220, "lb"),
  22636. name: "Front",
  22637. image: {
  22638. source: "./media/characters/lynn-rhea/front.svg",
  22639. extra: 310 / 273
  22640. }
  22641. },
  22642. back: {
  22643. height: math.unit(6, "feet"),
  22644. weight: math.unit(220, "lb"),
  22645. name: "Back",
  22646. image: {
  22647. source: "./media/characters/lynn-rhea/back.svg",
  22648. extra: 310 / 273
  22649. }
  22650. },
  22651. dicks: {
  22652. height: math.unit(0.9, "feet"),
  22653. name: "Dicks",
  22654. image: {
  22655. source: "./media/characters/lynn-rhea/dicks.svg"
  22656. }
  22657. },
  22658. slit: {
  22659. height: math.unit(0.4, "feet"),
  22660. name: "Slit",
  22661. image: {
  22662. source: "./media/characters/lynn-rhea/slit.svg"
  22663. }
  22664. },
  22665. },
  22666. [
  22667. {
  22668. name: "Micro",
  22669. height: math.unit(1, "inch")
  22670. },
  22671. {
  22672. name: "Macro",
  22673. height: math.unit(60, "feet"),
  22674. default: true
  22675. },
  22676. {
  22677. name: "Megamacro",
  22678. height: math.unit(2, "miles")
  22679. },
  22680. {
  22681. name: "Gigamacro",
  22682. height: math.unit(3, "earths")
  22683. },
  22684. {
  22685. name: "Galactic",
  22686. height: math.unit(0.8, "galaxies")
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22692. {
  22693. front: {
  22694. height: math.unit(1600, "feet"),
  22695. weight: math.unit(85758785169, "kg"),
  22696. name: "Front",
  22697. image: {
  22698. source: "./media/characters/valathos/front.svg",
  22699. extra: 1451 / 1339
  22700. }
  22701. },
  22702. },
  22703. [
  22704. {
  22705. name: "Macro",
  22706. height: math.unit(1600, "feet"),
  22707. default: true
  22708. },
  22709. ]
  22710. ))
  22711. characterMakers.push(() => makeCharacter(
  22712. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22713. {
  22714. front: {
  22715. height: math.unit(7 + 5 / 12, "feet"),
  22716. weight: math.unit(300, "lb"),
  22717. name: "Front",
  22718. image: {
  22719. source: "./media/characters/azula/front.svg",
  22720. extra: 3208 / 2880,
  22721. bottom: 80.2 / 3277
  22722. }
  22723. },
  22724. back: {
  22725. height: math.unit(7 + 5 / 12, "feet"),
  22726. weight: math.unit(300, "lb"),
  22727. name: "Back",
  22728. image: {
  22729. source: "./media/characters/azula/back.svg",
  22730. extra: 3169 / 2822,
  22731. bottom: 150.6 / 3321
  22732. }
  22733. },
  22734. },
  22735. [
  22736. {
  22737. name: "Normal",
  22738. height: math.unit(7 + 5 / 12, "feet"),
  22739. default: true
  22740. },
  22741. {
  22742. name: "Big",
  22743. height: math.unit(20, "feet")
  22744. },
  22745. ]
  22746. ))
  22747. characterMakers.push(() => makeCharacter(
  22748. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22749. {
  22750. front: {
  22751. height: math.unit(5 + 1 / 12, "feet"),
  22752. weight: math.unit(110, "lb"),
  22753. name: "Front",
  22754. image: {
  22755. source: "./media/characters/rupert/front.svg",
  22756. extra: 1549 / 1495,
  22757. bottom: 54.2 / 1604.4
  22758. }
  22759. },
  22760. },
  22761. [
  22762. {
  22763. name: "Normal",
  22764. height: math.unit(5 + 1 / 12, "feet"),
  22765. default: true
  22766. },
  22767. ]
  22768. ))
  22769. characterMakers.push(() => makeCharacter(
  22770. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22771. {
  22772. front: {
  22773. height: math.unit(8 + 4 / 12, "feet"),
  22774. weight: math.unit(350, "lb"),
  22775. name: "Front",
  22776. image: {
  22777. source: "./media/characters/sheera-castellar/front.svg",
  22778. extra: 1957 / 1894,
  22779. bottom: 26.97 / 1975.017
  22780. }
  22781. },
  22782. side: {
  22783. height: math.unit(8 + 4 / 12, "feet"),
  22784. weight: math.unit(350, "lb"),
  22785. name: "Side",
  22786. image: {
  22787. source: "./media/characters/sheera-castellar/side.svg",
  22788. extra: 1957 / 1894
  22789. }
  22790. },
  22791. back: {
  22792. height: math.unit(8 + 4 / 12, "feet"),
  22793. weight: math.unit(350, "lb"),
  22794. name: "Back",
  22795. image: {
  22796. source: "./media/characters/sheera-castellar/back.svg",
  22797. extra: 1957 / 1894
  22798. }
  22799. },
  22800. angled: {
  22801. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22802. weight: math.unit(350, "lb"),
  22803. name: "Angled",
  22804. image: {
  22805. source: "./media/characters/sheera-castellar/angled.svg",
  22806. extra: 1807 / 1707,
  22807. bottom: 68 / 1875
  22808. }
  22809. },
  22810. genitals: {
  22811. height: math.unit(2.2, "feet"),
  22812. name: "Genitals",
  22813. image: {
  22814. source: "./media/characters/sheera-castellar/genitals.svg"
  22815. }
  22816. },
  22817. taur: {
  22818. height: math.unit(10 + 6/12, "feet"),
  22819. name: "Taur",
  22820. image: {
  22821. source: "./media/characters/sheera-castellar/taur.svg",
  22822. extra: 2017/1909,
  22823. bottom: 185/2202
  22824. }
  22825. },
  22826. },
  22827. [
  22828. {
  22829. name: "Normal",
  22830. height: math.unit(8 + 4 / 12, "feet")
  22831. },
  22832. {
  22833. name: "Macro",
  22834. height: math.unit(150, "feet"),
  22835. default: true
  22836. },
  22837. {
  22838. name: "Macro+",
  22839. height: math.unit(800, "feet")
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22845. {
  22846. front: {
  22847. height: math.unit(6, "feet"),
  22848. weight: math.unit(150, "lb"),
  22849. name: "Front",
  22850. image: {
  22851. source: "./media/characters/jaipur/front.svg",
  22852. extra: 3860 / 3731,
  22853. bottom: 287 / 4140
  22854. }
  22855. },
  22856. back: {
  22857. height: math.unit(6, "feet"),
  22858. weight: math.unit(150, "lb"),
  22859. name: "Back",
  22860. image: {
  22861. source: "./media/characters/jaipur/back.svg",
  22862. extra: 4060 / 3930,
  22863. bottom: 151 / 4200
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Normal",
  22870. height: math.unit(1.85, "meters"),
  22871. default: true
  22872. },
  22873. {
  22874. name: "Macro",
  22875. height: math.unit(150, "meters")
  22876. },
  22877. {
  22878. name: "Macro+",
  22879. height: math.unit(0.5, "miles")
  22880. },
  22881. {
  22882. name: "Macro++",
  22883. height: math.unit(2.5, "miles")
  22884. },
  22885. {
  22886. name: "Macro+++",
  22887. height: math.unit(12, "miles")
  22888. },
  22889. {
  22890. name: "Macro++++",
  22891. height: math.unit(120, "miles")
  22892. },
  22893. {
  22894. name: "Macro+++++",
  22895. height: math.unit(1200, "miles")
  22896. },
  22897. ]
  22898. ))
  22899. characterMakers.push(() => makeCharacter(
  22900. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22901. {
  22902. front: {
  22903. height: math.unit(6, "feet"),
  22904. weight: math.unit(150, "lb"),
  22905. name: "Front",
  22906. image: {
  22907. source: "./media/characters/sheila-wolf/front.svg",
  22908. extra: 1931 / 1808,
  22909. bottom: 29.5 / 1960
  22910. }
  22911. },
  22912. dick: {
  22913. height: math.unit(1.464, "feet"),
  22914. name: "Dick",
  22915. image: {
  22916. source: "./media/characters/sheila-wolf/dick.svg"
  22917. }
  22918. },
  22919. muzzle: {
  22920. height: math.unit(0.513, "feet"),
  22921. name: "Muzzle",
  22922. image: {
  22923. source: "./media/characters/sheila-wolf/muzzle.svg"
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Macro",
  22930. height: math.unit(70, "feet"),
  22931. default: true
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22937. {
  22938. front: {
  22939. height: math.unit(32, "meters"),
  22940. weight: math.unit(300000, "kg"),
  22941. name: "Front",
  22942. image: {
  22943. source: "./media/characters/almor/front.svg",
  22944. extra: 1408 / 1322,
  22945. bottom: 94.6 / 1506.5
  22946. }
  22947. },
  22948. },
  22949. [
  22950. {
  22951. name: "Macro",
  22952. height: math.unit(32, "meters"),
  22953. default: true
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22959. {
  22960. front: {
  22961. height: math.unit(7, "feet"),
  22962. weight: math.unit(200, "lb"),
  22963. name: "Front",
  22964. image: {
  22965. source: "./media/characters/silver/front.svg",
  22966. extra: 472.1 / 450.5,
  22967. bottom: 26.5 / 499.424
  22968. }
  22969. },
  22970. },
  22971. [
  22972. {
  22973. name: "Normal",
  22974. height: math.unit(7, "feet"),
  22975. default: true
  22976. },
  22977. {
  22978. name: "Macro",
  22979. height: math.unit(800, "feet")
  22980. },
  22981. {
  22982. name: "Megamacro",
  22983. height: math.unit(250, "miles")
  22984. },
  22985. ]
  22986. ))
  22987. characterMakers.push(() => makeCharacter(
  22988. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22989. {
  22990. front: {
  22991. height: math.unit(6, "feet"),
  22992. weight: math.unit(150, "lb"),
  22993. name: "Front",
  22994. image: {
  22995. source: "./media/characters/pliskin/front.svg",
  22996. extra: 1469 / 1359,
  22997. bottom: 70 / 1540
  22998. }
  22999. },
  23000. },
  23001. [
  23002. {
  23003. name: "Micro",
  23004. height: math.unit(3, "inches")
  23005. },
  23006. {
  23007. name: "Normal",
  23008. height: math.unit(5 + 11 / 12, "feet"),
  23009. default: true
  23010. },
  23011. {
  23012. name: "Macro",
  23013. height: math.unit(120, "feet")
  23014. },
  23015. ]
  23016. ))
  23017. characterMakers.push(() => makeCharacter(
  23018. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23019. {
  23020. front: {
  23021. height: math.unit(6, "feet"),
  23022. weight: math.unit(150, "lb"),
  23023. name: "Front",
  23024. image: {
  23025. source: "./media/characters/sammy/front.svg",
  23026. extra: 1193 / 1089,
  23027. bottom: 30.5 / 1226
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Macro",
  23034. height: math.unit(1700, "feet"),
  23035. default: true
  23036. },
  23037. {
  23038. name: "Examacro",
  23039. height: math.unit(2.5e9, "lightyears")
  23040. },
  23041. ]
  23042. ))
  23043. characterMakers.push(() => makeCharacter(
  23044. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23045. {
  23046. front: {
  23047. height: math.unit(21, "meters"),
  23048. weight: math.unit(12, "tonnes"),
  23049. name: "Front",
  23050. image: {
  23051. source: "./media/characters/kuru/front.svg",
  23052. extra: 4301 / 3785,
  23053. bottom: 371.3 / 4691
  23054. }
  23055. },
  23056. },
  23057. [
  23058. {
  23059. name: "Macro",
  23060. height: math.unit(21, "meters"),
  23061. default: true
  23062. },
  23063. ]
  23064. ))
  23065. characterMakers.push(() => makeCharacter(
  23066. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23067. {
  23068. front: {
  23069. height: math.unit(23, "meters"),
  23070. weight: math.unit(12.2, "tonnes"),
  23071. name: "Front",
  23072. image: {
  23073. source: "./media/characters/rakka/front.svg",
  23074. extra: 4670 / 4169,
  23075. bottom: 301 / 4968.7
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Macro",
  23082. height: math.unit(23, "meters"),
  23083. default: true
  23084. },
  23085. ]
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23089. {
  23090. front: {
  23091. height: math.unit(6, "feet"),
  23092. weight: math.unit(150, "lb"),
  23093. name: "Front",
  23094. image: {
  23095. source: "./media/characters/rhys-feline/front.svg",
  23096. extra: 2488 / 2308,
  23097. bottom: 35.67 / 2519.19
  23098. }
  23099. },
  23100. },
  23101. [
  23102. {
  23103. name: "Really Small",
  23104. height: math.unit(1, "nm")
  23105. },
  23106. {
  23107. name: "Micro",
  23108. height: math.unit(4, "inches")
  23109. },
  23110. {
  23111. name: "Normal",
  23112. height: math.unit(4 + 10 / 12, "feet"),
  23113. default: true
  23114. },
  23115. {
  23116. name: "Macro",
  23117. height: math.unit(100, "feet")
  23118. },
  23119. {
  23120. name: "Megamacto",
  23121. height: math.unit(50, "miles")
  23122. },
  23123. ]
  23124. ))
  23125. characterMakers.push(() => makeCharacter(
  23126. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23127. {
  23128. side: {
  23129. height: math.unit(30, "feet"),
  23130. weight: math.unit(35000, "kg"),
  23131. name: "Side",
  23132. image: {
  23133. source: "./media/characters/alydar/side.svg",
  23134. extra: 234 / 222,
  23135. bottom: 6.5 / 241
  23136. }
  23137. },
  23138. front: {
  23139. height: math.unit(30, "feet"),
  23140. weight: math.unit(35000, "kg"),
  23141. name: "Front",
  23142. image: {
  23143. source: "./media/characters/alydar/front.svg",
  23144. extra: 223.37 / 210.2,
  23145. bottom: 22.3 / 246.76
  23146. }
  23147. },
  23148. top: {
  23149. height: math.unit(64.54, "feet"),
  23150. weight: math.unit(35000, "kg"),
  23151. name: "Top",
  23152. image: {
  23153. source: "./media/characters/alydar/top.svg"
  23154. }
  23155. },
  23156. anthro: {
  23157. height: math.unit(30, "feet"),
  23158. weight: math.unit(9000, "kg"),
  23159. name: "Anthro",
  23160. image: {
  23161. source: "./media/characters/alydar/anthro.svg",
  23162. extra: 432 / 421,
  23163. bottom: 7.18 / 440
  23164. }
  23165. },
  23166. maw: {
  23167. height: math.unit(11.693, "feet"),
  23168. name: "Maw",
  23169. image: {
  23170. source: "./media/characters/alydar/maw.svg"
  23171. }
  23172. },
  23173. head: {
  23174. height: math.unit(11.693, "feet"),
  23175. name: "Head",
  23176. image: {
  23177. source: "./media/characters/alydar/head.svg"
  23178. }
  23179. },
  23180. headAlt: {
  23181. height: math.unit(12.861, "feet"),
  23182. name: "Head (Alt)",
  23183. image: {
  23184. source: "./media/characters/alydar/head-alt.svg"
  23185. }
  23186. },
  23187. wing: {
  23188. height: math.unit(20.712, "feet"),
  23189. name: "Wing",
  23190. image: {
  23191. source: "./media/characters/alydar/wing.svg"
  23192. }
  23193. },
  23194. wingFeather: {
  23195. height: math.unit(9.662, "feet"),
  23196. name: "Wing Feather",
  23197. image: {
  23198. source: "./media/characters/alydar/wing-feather.svg"
  23199. }
  23200. },
  23201. countourFeather: {
  23202. height: math.unit(4.154, "feet"),
  23203. name: "Contour Feather",
  23204. image: {
  23205. source: "./media/characters/alydar/contour-feather.svg"
  23206. }
  23207. },
  23208. },
  23209. [
  23210. {
  23211. name: "Diplomatic",
  23212. height: math.unit(13, "feet"),
  23213. default: true
  23214. },
  23215. {
  23216. name: "Small",
  23217. height: math.unit(30, "feet")
  23218. },
  23219. {
  23220. name: "Normal",
  23221. height: math.unit(95, "feet"),
  23222. default: true
  23223. },
  23224. {
  23225. name: "Large",
  23226. height: math.unit(285, "feet")
  23227. },
  23228. {
  23229. name: "Incomprehensible",
  23230. height: math.unit(450, "megameters")
  23231. },
  23232. ]
  23233. ))
  23234. characterMakers.push(() => makeCharacter(
  23235. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23236. {
  23237. side: {
  23238. height: math.unit(11, "feet"),
  23239. weight: math.unit(1750, "kg"),
  23240. name: "Side",
  23241. image: {
  23242. source: "./media/characters/selicia/side.svg",
  23243. extra: 440 / 396,
  23244. bottom: 24.8 / 465.979
  23245. }
  23246. },
  23247. maw: {
  23248. height: math.unit(4.665, "feet"),
  23249. name: "Maw",
  23250. image: {
  23251. source: "./media/characters/selicia/maw.svg"
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Normal",
  23258. height: math.unit(11, "feet"),
  23259. default: true
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23265. {
  23266. side: {
  23267. height: math.unit(2 + 6 / 12, "feet"),
  23268. weight: math.unit(30, "lb"),
  23269. name: "Side",
  23270. image: {
  23271. source: "./media/characters/layla/side.svg",
  23272. extra: 244 / 188,
  23273. bottom: 18.2 / 262.1
  23274. }
  23275. },
  23276. back: {
  23277. height: math.unit(2 + 6 / 12, "feet"),
  23278. weight: math.unit(30, "lb"),
  23279. name: "Back",
  23280. image: {
  23281. source: "./media/characters/layla/back.svg",
  23282. extra: 308 / 241.5,
  23283. bottom: 8.9 / 316.8
  23284. }
  23285. },
  23286. cumming: {
  23287. height: math.unit(2 + 6 / 12, "feet"),
  23288. weight: math.unit(30, "lb"),
  23289. name: "Cumming",
  23290. image: {
  23291. source: "./media/characters/layla/cumming.svg",
  23292. extra: 342 / 279,
  23293. bottom: 595 / 938
  23294. }
  23295. },
  23296. dickFlaccid: {
  23297. height: math.unit(2.595, "feet"),
  23298. name: "Flaccid Genitals",
  23299. image: {
  23300. source: "./media/characters/layla/dick-flaccid.svg"
  23301. }
  23302. },
  23303. dickErect: {
  23304. height: math.unit(2.359, "feet"),
  23305. name: "Erect Genitals",
  23306. image: {
  23307. source: "./media/characters/layla/dick-erect.svg"
  23308. }
  23309. },
  23310. dragon: {
  23311. height: math.unit(40, "feet"),
  23312. name: "Dragon",
  23313. image: {
  23314. source: "./media/characters/layla/dragon.svg",
  23315. extra: 610/535,
  23316. bottom: 367/977
  23317. }
  23318. },
  23319. taur: {
  23320. height: math.unit(30, "feet"),
  23321. name: "Taur",
  23322. image: {
  23323. source: "./media/characters/layla/taur.svg",
  23324. extra: 1268/1199,
  23325. bottom: 112/1380
  23326. }
  23327. },
  23328. },
  23329. [
  23330. {
  23331. name: "Micro",
  23332. height: math.unit(1, "inch")
  23333. },
  23334. {
  23335. name: "Small",
  23336. height: math.unit(1, "foot")
  23337. },
  23338. {
  23339. name: "Normal",
  23340. height: math.unit(2 + 6 / 12, "feet"),
  23341. default: true
  23342. },
  23343. {
  23344. name: "Macro",
  23345. height: math.unit(200, "feet")
  23346. },
  23347. {
  23348. name: "Megamacro",
  23349. height: math.unit(1000, "miles")
  23350. },
  23351. {
  23352. name: "Planetary",
  23353. height: math.unit(8000, "miles")
  23354. },
  23355. {
  23356. name: "True Layla",
  23357. height: math.unit(200000 * 7, "multiverses")
  23358. },
  23359. ]
  23360. ))
  23361. characterMakers.push(() => makeCharacter(
  23362. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23363. {
  23364. back: {
  23365. height: math.unit(10.5, "feet"),
  23366. weight: math.unit(800, "lb"),
  23367. name: "Back",
  23368. image: {
  23369. source: "./media/characters/knox/back.svg",
  23370. extra: 1486 / 1089,
  23371. bottom: 107 / 1601.4
  23372. }
  23373. },
  23374. side: {
  23375. height: math.unit(10.5, "feet"),
  23376. weight: math.unit(800, "lb"),
  23377. name: "Side",
  23378. image: {
  23379. source: "./media/characters/knox/side.svg",
  23380. extra: 244 / 218,
  23381. bottom: 14 / 260
  23382. }
  23383. },
  23384. },
  23385. [
  23386. {
  23387. name: "Compact",
  23388. height: math.unit(10.5, "feet"),
  23389. default: true
  23390. },
  23391. {
  23392. name: "Dynamax",
  23393. height: math.unit(210, "feet")
  23394. },
  23395. {
  23396. name: "Full Macro",
  23397. height: math.unit(850, "feet")
  23398. },
  23399. ]
  23400. ))
  23401. characterMakers.push(() => makeCharacter(
  23402. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23403. {
  23404. front: {
  23405. height: math.unit(6, "feet"),
  23406. weight: math.unit(152, "lb"),
  23407. name: "Front",
  23408. image: {
  23409. source: "./media/characters/shin-pikachu/front.svg",
  23410. extra: 1854/1602,
  23411. bottom: 166/2020
  23412. }
  23413. },
  23414. hand: {
  23415. height: math.unit(1.055, "feet"),
  23416. name: "Hand",
  23417. image: {
  23418. source: "./media/characters/shin-pikachu/hand.svg"
  23419. }
  23420. },
  23421. foot: {
  23422. height: math.unit(1.1, "feet"),
  23423. name: "Foot",
  23424. image: {
  23425. source: "./media/characters/shin-pikachu/foot.svg"
  23426. }
  23427. },
  23428. collar: {
  23429. height: math.unit(0.386, "feet"),
  23430. name: "Collar",
  23431. image: {
  23432. source: "./media/characters/shin-pikachu/collar.svg"
  23433. }
  23434. },
  23435. },
  23436. [
  23437. {
  23438. name: "Smallest",
  23439. height: math.unit(0.5, "inches")
  23440. },
  23441. {
  23442. name: "Micro",
  23443. height: math.unit(6, "inches")
  23444. },
  23445. {
  23446. name: "Normal",
  23447. height: math.unit(6, "feet"),
  23448. default: true
  23449. },
  23450. {
  23451. name: "Macro",
  23452. height: math.unit(150, "feet")
  23453. },
  23454. ]
  23455. ))
  23456. characterMakers.push(() => makeCharacter(
  23457. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23458. {
  23459. front: {
  23460. height: math.unit(28, "feet"),
  23461. weight: math.unit(10500, "lb"),
  23462. name: "Front",
  23463. image: {
  23464. source: "./media/characters/kayda/front.svg",
  23465. extra: 1536 / 1428,
  23466. bottom: 68.7 / 1603
  23467. }
  23468. },
  23469. back: {
  23470. height: math.unit(28, "feet"),
  23471. weight: math.unit(10500, "lb"),
  23472. name: "Back",
  23473. image: {
  23474. source: "./media/characters/kayda/back.svg",
  23475. extra: 1557 / 1464,
  23476. bottom: 39.5 / 1597.49
  23477. }
  23478. },
  23479. dick: {
  23480. height: math.unit(3.858, "feet"),
  23481. name: "Dick",
  23482. image: {
  23483. source: "./media/characters/kayda/dick.svg"
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "Macro",
  23490. height: math.unit(28, "feet"),
  23491. default: true
  23492. },
  23493. ]
  23494. ))
  23495. characterMakers.push(() => makeCharacter(
  23496. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23497. {
  23498. front: {
  23499. height: math.unit(10 + 11 / 12, "feet"),
  23500. weight: math.unit(1400, "lb"),
  23501. name: "Front",
  23502. image: {
  23503. source: "./media/characters/brian/front.svg",
  23504. extra: 737 / 692,
  23505. bottom: 55.4 / 785
  23506. }
  23507. },
  23508. },
  23509. [
  23510. {
  23511. name: "Normal",
  23512. height: math.unit(10 + 11 / 12, "feet"),
  23513. default: true
  23514. },
  23515. ]
  23516. ))
  23517. characterMakers.push(() => makeCharacter(
  23518. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23519. {
  23520. front: {
  23521. height: math.unit(5 + 8 / 12, "feet"),
  23522. weight: math.unit(140, "lb"),
  23523. name: "Front",
  23524. image: {
  23525. source: "./media/characters/khemri/front.svg",
  23526. extra: 4780 / 4059,
  23527. bottom: 80.1 / 4859.25
  23528. }
  23529. },
  23530. },
  23531. [
  23532. {
  23533. name: "Micro",
  23534. height: math.unit(6, "inches")
  23535. },
  23536. {
  23537. name: "Normal",
  23538. height: math.unit(5 + 8 / 12, "feet"),
  23539. default: true
  23540. },
  23541. ]
  23542. ))
  23543. characterMakers.push(() => makeCharacter(
  23544. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23545. {
  23546. front: {
  23547. height: math.unit(13, "feet"),
  23548. weight: math.unit(1700, "lb"),
  23549. name: "Front",
  23550. image: {
  23551. source: "./media/characters/felix-braveheart/front.svg",
  23552. extra: 1222 / 1157,
  23553. bottom: 53.2 / 1280
  23554. }
  23555. },
  23556. back: {
  23557. height: math.unit(13, "feet"),
  23558. weight: math.unit(1700, "lb"),
  23559. name: "Back",
  23560. image: {
  23561. source: "./media/characters/felix-braveheart/back.svg",
  23562. extra: 1277 / 1203,
  23563. bottom: 50.2 / 1327
  23564. }
  23565. },
  23566. feral: {
  23567. height: math.unit(6, "feet"),
  23568. weight: math.unit(400, "lb"),
  23569. name: "Feral",
  23570. image: {
  23571. source: "./media/characters/felix-braveheart/feral.svg",
  23572. extra: 682 / 625,
  23573. bottom: 6.9 / 688
  23574. }
  23575. },
  23576. },
  23577. [
  23578. {
  23579. name: "Normal",
  23580. height: math.unit(13, "feet"),
  23581. default: true
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23587. {
  23588. side: {
  23589. height: math.unit(5 + 11 / 12, "feet"),
  23590. weight: math.unit(1400, "lb"),
  23591. name: "Side",
  23592. image: {
  23593. source: "./media/characters/shadow-blade/side.svg",
  23594. extra: 1726 / 1267,
  23595. bottom: 58.4 / 1785
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Normal",
  23602. height: math.unit(5 + 11 / 12, "feet"),
  23603. default: true
  23604. },
  23605. ]
  23606. ))
  23607. characterMakers.push(() => makeCharacter(
  23608. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23609. {
  23610. front: {
  23611. height: math.unit(1 + 6 / 12, "feet"),
  23612. weight: math.unit(25, "lb"),
  23613. name: "Front",
  23614. image: {
  23615. source: "./media/characters/karla-halldor/front.svg",
  23616. extra: 1459 / 1383,
  23617. bottom: 12 / 1472
  23618. }
  23619. },
  23620. },
  23621. [
  23622. {
  23623. name: "Normal",
  23624. height: math.unit(1 + 6 / 12, "feet"),
  23625. default: true
  23626. },
  23627. ]
  23628. ))
  23629. characterMakers.push(() => makeCharacter(
  23630. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23631. {
  23632. front: {
  23633. height: math.unit(6 + 2 / 12, "feet"),
  23634. weight: math.unit(160, "lb"),
  23635. name: "Front",
  23636. image: {
  23637. source: "./media/characters/ariam/front.svg",
  23638. extra: 714 / 617,
  23639. bottom: 23.4 / 737,
  23640. }
  23641. },
  23642. squatting: {
  23643. height: math.unit(4.1, "feet"),
  23644. weight: math.unit(160, "lb"),
  23645. name: "Squatting",
  23646. image: {
  23647. source: "./media/characters/ariam/squatting.svg",
  23648. extra: 2617 / 2112,
  23649. bottom: 61.2 / 2681,
  23650. }
  23651. },
  23652. },
  23653. [
  23654. {
  23655. name: "Normal",
  23656. height: math.unit(6 + 2 / 12, "feet"),
  23657. default: true
  23658. },
  23659. {
  23660. name: "Normal+",
  23661. height: math.unit(4, "meters")
  23662. },
  23663. {
  23664. name: "Macro",
  23665. height: math.unit(50, "meters")
  23666. },
  23667. {
  23668. name: "Macro+",
  23669. height: math.unit(100, "meters")
  23670. },
  23671. {
  23672. name: "Megamacro",
  23673. height: math.unit(20, "km")
  23674. },
  23675. ]
  23676. ))
  23677. characterMakers.push(() => makeCharacter(
  23678. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23679. {
  23680. front: {
  23681. height: math.unit(1.67, "meters"),
  23682. weight: math.unit(140, "lb"),
  23683. name: "Front",
  23684. image: {
  23685. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23686. extra: 438 / 410,
  23687. bottom: 0.75 / 439
  23688. }
  23689. },
  23690. },
  23691. [
  23692. {
  23693. name: "Shrunken",
  23694. height: math.unit(7.6, "cm")
  23695. },
  23696. {
  23697. name: "Human Scale",
  23698. height: math.unit(1.67, "meters")
  23699. },
  23700. {
  23701. name: "Wolxi Scale",
  23702. height: math.unit(36.7, "meters"),
  23703. default: true
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23709. {
  23710. front: {
  23711. height: math.unit(1.73, "meters"),
  23712. weight: math.unit(240, "lb"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/izue-two-mothers/front.svg",
  23716. extra: 469 / 437,
  23717. bottom: 1.24 / 470.6
  23718. }
  23719. },
  23720. },
  23721. [
  23722. {
  23723. name: "Shrunken",
  23724. height: math.unit(7.86, "cm")
  23725. },
  23726. {
  23727. name: "Human Scale",
  23728. height: math.unit(1.73, "meters")
  23729. },
  23730. {
  23731. name: "Wolxi Scale",
  23732. height: math.unit(38, "meters"),
  23733. default: true
  23734. },
  23735. ]
  23736. ))
  23737. characterMakers.push(() => makeCharacter(
  23738. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23739. {
  23740. front: {
  23741. height: math.unit(1.55, "meters"),
  23742. weight: math.unit(120, "lb"),
  23743. name: "Front",
  23744. image: {
  23745. source: "./media/characters/teeku-love-shack/front.svg",
  23746. extra: 387 / 362,
  23747. bottom: 1.51 / 388
  23748. }
  23749. },
  23750. },
  23751. [
  23752. {
  23753. name: "Shrunken",
  23754. height: math.unit(7, "cm")
  23755. },
  23756. {
  23757. name: "Human Scale",
  23758. height: math.unit(1.55, "meters")
  23759. },
  23760. {
  23761. name: "Wolxi Scale",
  23762. height: math.unit(34.1, "meters"),
  23763. default: true
  23764. },
  23765. ]
  23766. ))
  23767. characterMakers.push(() => makeCharacter(
  23768. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23769. {
  23770. front: {
  23771. height: math.unit(1.83, "meters"),
  23772. weight: math.unit(135, "lb"),
  23773. name: "Front",
  23774. image: {
  23775. source: "./media/characters/dejma-the-red/front.svg",
  23776. extra: 480 / 458,
  23777. bottom: 1.8 / 482
  23778. }
  23779. },
  23780. },
  23781. [
  23782. {
  23783. name: "Shrunken",
  23784. height: math.unit(8.3, "cm")
  23785. },
  23786. {
  23787. name: "Human Scale",
  23788. height: math.unit(1.83, "meters")
  23789. },
  23790. {
  23791. name: "Wolxi Scale",
  23792. height: math.unit(40, "meters"),
  23793. default: true
  23794. },
  23795. ]
  23796. ))
  23797. characterMakers.push(() => makeCharacter(
  23798. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23799. {
  23800. front: {
  23801. height: math.unit(1.78, "meters"),
  23802. weight: math.unit(65, "kg"),
  23803. name: "Front",
  23804. image: {
  23805. source: "./media/characters/aki/front.svg",
  23806. extra: 452 / 415
  23807. }
  23808. },
  23809. frontNsfw: {
  23810. height: math.unit(1.78, "meters"),
  23811. weight: math.unit(65, "kg"),
  23812. name: "Front (NSFW)",
  23813. image: {
  23814. source: "./media/characters/aki/front-nsfw.svg",
  23815. extra: 452 / 415
  23816. }
  23817. },
  23818. back: {
  23819. height: math.unit(1.78, "meters"),
  23820. weight: math.unit(65, "kg"),
  23821. name: "Back",
  23822. image: {
  23823. source: "./media/characters/aki/back.svg",
  23824. extra: 452 / 415
  23825. }
  23826. },
  23827. rump: {
  23828. height: math.unit(2.05, "feet"),
  23829. name: "Rump",
  23830. image: {
  23831. source: "./media/characters/aki/rump.svg"
  23832. }
  23833. },
  23834. dick: {
  23835. height: math.unit(0.95, "feet"),
  23836. name: "Dick",
  23837. image: {
  23838. source: "./media/characters/aki/dick.svg"
  23839. }
  23840. },
  23841. },
  23842. [
  23843. {
  23844. name: "Micro",
  23845. height: math.unit(15, "cm")
  23846. },
  23847. {
  23848. name: "Normal",
  23849. height: math.unit(178, "cm"),
  23850. default: true
  23851. },
  23852. {
  23853. name: "Macro",
  23854. height: math.unit(214, "m")
  23855. },
  23856. {
  23857. name: "Macro+",
  23858. height: math.unit(534, "m")
  23859. },
  23860. ]
  23861. ))
  23862. characterMakers.push(() => makeCharacter(
  23863. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23864. {
  23865. front: {
  23866. height: math.unit(5 + 5 / 12, "feet"),
  23867. weight: math.unit(120, "lb"),
  23868. name: "Front",
  23869. image: {
  23870. source: "./media/characters/ari/front.svg",
  23871. extra: 714.5 / 682,
  23872. bottom: 8 / 722.5
  23873. }
  23874. },
  23875. },
  23876. [
  23877. {
  23878. name: "Normal",
  23879. height: math.unit(5 + 5 / 12, "feet")
  23880. },
  23881. {
  23882. name: "Macro",
  23883. height: math.unit(100, "feet"),
  23884. default: true
  23885. },
  23886. {
  23887. name: "Megamacro",
  23888. height: math.unit(100, "miles")
  23889. },
  23890. {
  23891. name: "Gigamacro",
  23892. height: math.unit(80000, "miles")
  23893. },
  23894. ]
  23895. ))
  23896. characterMakers.push(() => makeCharacter(
  23897. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23898. {
  23899. side: {
  23900. height: math.unit(9, "feet"),
  23901. weight: math.unit(400, "kg"),
  23902. name: "Side",
  23903. image: {
  23904. source: "./media/characters/bolt/side.svg",
  23905. extra: 1126 / 896,
  23906. bottom: 60 / 1187.3,
  23907. }
  23908. },
  23909. },
  23910. [
  23911. {
  23912. name: "Micro",
  23913. height: math.unit(5, "inches")
  23914. },
  23915. {
  23916. name: "Normal",
  23917. height: math.unit(9, "feet"),
  23918. default: true
  23919. },
  23920. {
  23921. name: "Macro",
  23922. height: math.unit(700, "feet")
  23923. },
  23924. {
  23925. name: "Max Size",
  23926. height: math.unit(1.52e22, "yottameters")
  23927. },
  23928. ]
  23929. ))
  23930. characterMakers.push(() => makeCharacter(
  23931. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23932. {
  23933. front: {
  23934. height: math.unit(4.53, "meters"),
  23935. weight: math.unit(3, "tons"),
  23936. name: "Front",
  23937. image: {
  23938. source: "./media/characters/draekon-sylviar/front.svg",
  23939. extra: 1228 / 1068,
  23940. bottom: 41 / 1270
  23941. }
  23942. },
  23943. tail: {
  23944. height: math.unit(1.772, "meter"),
  23945. name: "Tail",
  23946. image: {
  23947. source: "./media/characters/draekon-sylviar/tail.svg"
  23948. }
  23949. },
  23950. head: {
  23951. height: math.unit(1.331, "meter"),
  23952. name: "Head",
  23953. image: {
  23954. source: "./media/characters/draekon-sylviar/head.svg"
  23955. }
  23956. },
  23957. hand: {
  23958. height: math.unit(0.564, "meter"),
  23959. name: "Hand",
  23960. image: {
  23961. source: "./media/characters/draekon-sylviar/hand.svg"
  23962. }
  23963. },
  23964. foot: {
  23965. height: math.unit(0.621, "meter"),
  23966. name: "Foot",
  23967. image: {
  23968. source: "./media/characters/draekon-sylviar/foot.svg",
  23969. bottom: 32 / 324
  23970. }
  23971. },
  23972. dick: {
  23973. height: math.unit(61, "cm"),
  23974. name: "Dick",
  23975. image: {
  23976. source: "./media/characters/draekon-sylviar/dick.svg"
  23977. }
  23978. },
  23979. dickseparated: {
  23980. height: math.unit(61, "cm"),
  23981. name: "Dick-separated",
  23982. image: {
  23983. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23984. }
  23985. },
  23986. },
  23987. [
  23988. {
  23989. name: "Small",
  23990. height: math.unit(4.53 / 2, "meters"),
  23991. default: true
  23992. },
  23993. {
  23994. name: "Normal",
  23995. height: math.unit(4.53, "meters"),
  23996. default: true
  23997. },
  23998. {
  23999. name: "Large",
  24000. height: math.unit(4.53 * 2, "meters"),
  24001. },
  24002. ]
  24003. ))
  24004. characterMakers.push(() => makeCharacter(
  24005. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24006. {
  24007. front: {
  24008. height: math.unit(6 + 2 / 12, "feet"),
  24009. weight: math.unit(180, "lb"),
  24010. name: "Front",
  24011. image: {
  24012. source: "./media/characters/brawler/front.svg",
  24013. extra: 3301 / 3027,
  24014. bottom: 138 / 3439
  24015. }
  24016. },
  24017. },
  24018. [
  24019. {
  24020. name: "Normal",
  24021. height: math.unit(6 + 2 / 12, "feet"),
  24022. default: true
  24023. },
  24024. ]
  24025. ))
  24026. characterMakers.push(() => makeCharacter(
  24027. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24028. {
  24029. front: {
  24030. height: math.unit(11, "feet"),
  24031. weight: math.unit(1000, "lb"),
  24032. name: "Front",
  24033. image: {
  24034. source: "./media/characters/alex/front.svg",
  24035. bottom: 44.5 / 620
  24036. }
  24037. },
  24038. },
  24039. [
  24040. {
  24041. name: "Micro",
  24042. height: math.unit(5, "inches")
  24043. },
  24044. {
  24045. name: "Normal",
  24046. height: math.unit(11, "feet"),
  24047. default: true
  24048. },
  24049. {
  24050. name: "Macro",
  24051. height: math.unit(9.5e9, "feet")
  24052. },
  24053. {
  24054. name: "Max Size",
  24055. height: math.unit(1.4e283, "yottameters")
  24056. },
  24057. ]
  24058. ))
  24059. characterMakers.push(() => makeCharacter(
  24060. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24061. {
  24062. female: {
  24063. height: math.unit(29.9, "m"),
  24064. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24065. name: "Female",
  24066. image: {
  24067. source: "./media/characters/zenari/female.svg",
  24068. extra: 3281.6 / 3217,
  24069. bottom: 72.2 / 3353
  24070. }
  24071. },
  24072. male: {
  24073. height: math.unit(27.7, "m"),
  24074. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24075. name: "Male",
  24076. image: {
  24077. source: "./media/characters/zenari/male.svg",
  24078. extra: 3008 / 2991,
  24079. bottom: 54.6 / 3069
  24080. }
  24081. },
  24082. },
  24083. [
  24084. {
  24085. name: "Macro",
  24086. height: math.unit(29.7, "meters"),
  24087. default: true
  24088. },
  24089. ]
  24090. ))
  24091. characterMakers.push(() => makeCharacter(
  24092. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24093. {
  24094. female: {
  24095. height: math.unit(23.8, "m"),
  24096. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24097. name: "Female",
  24098. image: {
  24099. source: "./media/characters/mactarian/female.svg",
  24100. extra: 2662 / 2569,
  24101. bottom: 73 / 2736
  24102. }
  24103. },
  24104. male: {
  24105. height: math.unit(23.8, "m"),
  24106. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24107. name: "Male",
  24108. image: {
  24109. source: "./media/characters/mactarian/male.svg",
  24110. extra: 2673 / 2600,
  24111. bottom: 76 / 2750
  24112. }
  24113. },
  24114. },
  24115. [
  24116. {
  24117. name: "Macro",
  24118. height: math.unit(23.8, "meters"),
  24119. default: true
  24120. },
  24121. ]
  24122. ))
  24123. characterMakers.push(() => makeCharacter(
  24124. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24125. {
  24126. female: {
  24127. height: math.unit(19.3, "m"),
  24128. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24129. name: "Female",
  24130. image: {
  24131. source: "./media/characters/umok/female.svg",
  24132. extra: 2186 / 2078,
  24133. bottom: 87 / 2277
  24134. }
  24135. },
  24136. male: {
  24137. height: math.unit(19.5, "m"),
  24138. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24139. name: "Male",
  24140. image: {
  24141. source: "./media/characters/umok/male.svg",
  24142. extra: 2233 / 2140,
  24143. bottom: 24.4 / 2258
  24144. }
  24145. },
  24146. },
  24147. [
  24148. {
  24149. name: "Macro",
  24150. height: math.unit(19.3, "meters"),
  24151. default: true
  24152. },
  24153. ]
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24157. {
  24158. female: {
  24159. height: math.unit(26.15, "m"),
  24160. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24161. name: "Female",
  24162. image: {
  24163. source: "./media/characters/joraxian/female.svg",
  24164. extra: 2912 / 2824,
  24165. bottom: 36 / 2956
  24166. }
  24167. },
  24168. male: {
  24169. height: math.unit(25.4, "m"),
  24170. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24171. name: "Male",
  24172. image: {
  24173. source: "./media/characters/joraxian/male.svg",
  24174. extra: 2877 / 2721,
  24175. bottom: 82 / 2967
  24176. }
  24177. },
  24178. },
  24179. [
  24180. {
  24181. name: "Macro",
  24182. height: math.unit(26.15, "meters"),
  24183. default: true
  24184. },
  24185. ]
  24186. ))
  24187. characterMakers.push(() => makeCharacter(
  24188. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24189. {
  24190. female: {
  24191. height: math.unit(21.6, "m"),
  24192. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24193. name: "Female",
  24194. image: {
  24195. source: "./media/characters/sthara/female.svg",
  24196. extra: 2516 / 2347,
  24197. bottom: 21.5 / 2537
  24198. }
  24199. },
  24200. male: {
  24201. height: math.unit(24, "m"),
  24202. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24203. name: "Male",
  24204. image: {
  24205. source: "./media/characters/sthara/male.svg",
  24206. extra: 2732 / 2607,
  24207. bottom: 23 / 2732
  24208. }
  24209. },
  24210. },
  24211. [
  24212. {
  24213. name: "Macro",
  24214. height: math.unit(21.6, "meters"),
  24215. default: true
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24221. {
  24222. front: {
  24223. height: math.unit(6 + 4 / 12, "feet"),
  24224. weight: math.unit(175, "lb"),
  24225. name: "Front",
  24226. image: {
  24227. source: "./media/characters/luka-bryzant/front.svg",
  24228. extra: 311 / 289,
  24229. bottom: 4 / 315
  24230. }
  24231. },
  24232. back: {
  24233. height: math.unit(6 + 4 / 12, "feet"),
  24234. weight: math.unit(175, "lb"),
  24235. name: "Back",
  24236. image: {
  24237. source: "./media/characters/luka-bryzant/back.svg",
  24238. extra: 311 / 289,
  24239. bottom: 3.8 / 313.7
  24240. }
  24241. },
  24242. },
  24243. [
  24244. {
  24245. name: "Micro",
  24246. height: math.unit(10, "inches")
  24247. },
  24248. {
  24249. name: "Normal",
  24250. height: math.unit(6 + 4 / 12, "feet"),
  24251. default: true
  24252. },
  24253. {
  24254. name: "Large",
  24255. height: math.unit(12, "feet")
  24256. },
  24257. ]
  24258. ))
  24259. characterMakers.push(() => makeCharacter(
  24260. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24261. {
  24262. front: {
  24263. height: math.unit(5 + 7 / 12, "feet"),
  24264. weight: math.unit(185, "lb"),
  24265. name: "Front",
  24266. image: {
  24267. source: "./media/characters/aman-aquila/front.svg",
  24268. extra: 1013 / 976,
  24269. bottom: 45.6 / 1057
  24270. }
  24271. },
  24272. side: {
  24273. height: math.unit(5 + 7 / 12, "feet"),
  24274. weight: math.unit(185, "lb"),
  24275. name: "Side",
  24276. image: {
  24277. source: "./media/characters/aman-aquila/side.svg",
  24278. extra: 1054 / 1011,
  24279. bottom: 15 / 1070
  24280. }
  24281. },
  24282. back: {
  24283. height: math.unit(5 + 7 / 12, "feet"),
  24284. weight: math.unit(185, "lb"),
  24285. name: "Back",
  24286. image: {
  24287. source: "./media/characters/aman-aquila/back.svg",
  24288. extra: 1026 / 970,
  24289. bottom: 12 / 1039
  24290. }
  24291. },
  24292. head: {
  24293. height: math.unit(1.211, "feet"),
  24294. name: "Head",
  24295. image: {
  24296. source: "./media/characters/aman-aquila/head.svg",
  24297. }
  24298. },
  24299. },
  24300. [
  24301. {
  24302. name: "Minimicro",
  24303. height: math.unit(0.057, "inches")
  24304. },
  24305. {
  24306. name: "Micro",
  24307. height: math.unit(7, "inches")
  24308. },
  24309. {
  24310. name: "Mini",
  24311. height: math.unit(3 + 7 / 12, "feet")
  24312. },
  24313. {
  24314. name: "Normal",
  24315. height: math.unit(5 + 7 / 12, "feet"),
  24316. default: true
  24317. },
  24318. {
  24319. name: "Macro",
  24320. height: math.unit(157 + 7 / 12, "feet")
  24321. },
  24322. {
  24323. name: "Megamacro",
  24324. height: math.unit(1557 + 7 / 12, "feet")
  24325. },
  24326. {
  24327. name: "Gigamacro",
  24328. height: math.unit(15557 + 7 / 12, "feet")
  24329. },
  24330. ]
  24331. ))
  24332. characterMakers.push(() => makeCharacter(
  24333. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24334. {
  24335. front: {
  24336. height: math.unit(3 + 2 / 12, "inches"),
  24337. weight: math.unit(0.3, "ounces"),
  24338. name: "Front",
  24339. image: {
  24340. source: "./media/characters/hiphae/front.svg",
  24341. extra: 1931 / 1683,
  24342. bottom: 24 / 1955
  24343. }
  24344. },
  24345. },
  24346. [
  24347. {
  24348. name: "Normal",
  24349. height: math.unit(3 + 1 / 2, "inches"),
  24350. default: true
  24351. },
  24352. ]
  24353. ))
  24354. characterMakers.push(() => makeCharacter(
  24355. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24356. {
  24357. front: {
  24358. height: math.unit(5 + 10 / 12, "feet"),
  24359. weight: math.unit(165, "lb"),
  24360. name: "Front",
  24361. image: {
  24362. source: "./media/characters/nicky/front.svg",
  24363. extra: 3144 / 2886,
  24364. bottom: 45.6 / 3192
  24365. }
  24366. },
  24367. back: {
  24368. height: math.unit(5 + 10 / 12, "feet"),
  24369. weight: math.unit(165, "lb"),
  24370. name: "Back",
  24371. image: {
  24372. source: "./media/characters/nicky/back.svg",
  24373. extra: 3055 / 2804,
  24374. bottom: 28.4 / 3087
  24375. }
  24376. },
  24377. frontclothed: {
  24378. height: math.unit(5 + 10 / 12, "feet"),
  24379. weight: math.unit(165, "lb"),
  24380. name: "Front-clothed",
  24381. image: {
  24382. source: "./media/characters/nicky/front-clothed.svg",
  24383. extra: 3184.9 / 2926.9,
  24384. bottom: 86.5 / 3239.9
  24385. }
  24386. },
  24387. foot: {
  24388. height: math.unit(1.16, "feet"),
  24389. name: "Foot",
  24390. image: {
  24391. source: "./media/characters/nicky/foot.svg"
  24392. }
  24393. },
  24394. feet: {
  24395. height: math.unit(1.34, "feet"),
  24396. name: "Feet",
  24397. image: {
  24398. source: "./media/characters/nicky/feet.svg"
  24399. }
  24400. },
  24401. maw: {
  24402. height: math.unit(0.9, "feet"),
  24403. name: "Maw",
  24404. image: {
  24405. source: "./media/characters/nicky/maw.svg"
  24406. }
  24407. },
  24408. },
  24409. [
  24410. {
  24411. name: "Normal",
  24412. height: math.unit(5 + 10 / 12, "feet"),
  24413. default: true
  24414. },
  24415. {
  24416. name: "Macro",
  24417. height: math.unit(60, "feet")
  24418. },
  24419. {
  24420. name: "Megamacro",
  24421. height: math.unit(1, "mile")
  24422. },
  24423. ]
  24424. ))
  24425. characterMakers.push(() => makeCharacter(
  24426. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24427. {
  24428. side: {
  24429. height: math.unit(10, "feet"),
  24430. weight: math.unit(600, "lb"),
  24431. name: "Side",
  24432. image: {
  24433. source: "./media/characters/blair/side.svg",
  24434. bottom: 16.6 / 475,
  24435. extra: 458 / 431
  24436. }
  24437. },
  24438. },
  24439. [
  24440. {
  24441. name: "Micro",
  24442. height: math.unit(8, "inches")
  24443. },
  24444. {
  24445. name: "Normal",
  24446. height: math.unit(10, "feet"),
  24447. default: true
  24448. },
  24449. {
  24450. name: "Macro",
  24451. height: math.unit(180, "feet")
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24457. {
  24458. front: {
  24459. height: math.unit(5 + 4 / 12, "feet"),
  24460. weight: math.unit(125, "lb"),
  24461. name: "Front",
  24462. image: {
  24463. source: "./media/characters/fisher/front.svg",
  24464. extra: 444 / 390,
  24465. bottom: 2 / 444.8
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Micro",
  24472. height: math.unit(4, "inches")
  24473. },
  24474. {
  24475. name: "Normal",
  24476. height: math.unit(5 + 4 / 12, "feet"),
  24477. default: true
  24478. },
  24479. {
  24480. name: "Macro",
  24481. height: math.unit(100, "feet")
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24487. {
  24488. front: {
  24489. height: math.unit(6.71, "feet"),
  24490. weight: math.unit(200, "lb"),
  24491. capacity: math.unit(1000000, "people"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/gliss/front.svg",
  24495. extra: 2347 / 2231,
  24496. bottom: 113 / 2462
  24497. }
  24498. },
  24499. hammerspaceSize: {
  24500. height: math.unit(6.71 * 717, "feet"),
  24501. weight: math.unit(200, "lb"),
  24502. capacity: math.unit(1000000, "people"),
  24503. name: "Hammerspace Size",
  24504. image: {
  24505. source: "./media/characters/gliss/front.svg",
  24506. extra: 2347 / 2231,
  24507. bottom: 113 / 2462
  24508. }
  24509. },
  24510. },
  24511. [
  24512. {
  24513. name: "Normal",
  24514. height: math.unit(6.71, "feet"),
  24515. default: true
  24516. },
  24517. ]
  24518. ))
  24519. characterMakers.push(() => makeCharacter(
  24520. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24521. {
  24522. side: {
  24523. height: math.unit(1.44, "m"),
  24524. weight: math.unit(80, "kg"),
  24525. name: "Side",
  24526. image: {
  24527. source: "./media/characters/dune-anderson/side.svg",
  24528. bottom: 49 / 1426
  24529. }
  24530. },
  24531. },
  24532. [
  24533. {
  24534. name: "Wolf-sized",
  24535. height: math.unit(1.44, "meters")
  24536. },
  24537. {
  24538. name: "Normal",
  24539. height: math.unit(5.05, "meters"),
  24540. default: true
  24541. },
  24542. {
  24543. name: "Big",
  24544. height: math.unit(14.4, "meters")
  24545. },
  24546. {
  24547. name: "Huge",
  24548. height: math.unit(144, "meters")
  24549. },
  24550. ]
  24551. ))
  24552. characterMakers.push(() => makeCharacter(
  24553. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24554. {
  24555. front: {
  24556. height: math.unit(7, "feet"),
  24557. weight: math.unit(425, "lb"),
  24558. name: "Front",
  24559. image: {
  24560. source: "./media/characters/hind/front.svg",
  24561. extra: 2091 / 1860,
  24562. bottom: 129 / 2220
  24563. }
  24564. },
  24565. back: {
  24566. height: math.unit(7, "feet"),
  24567. weight: math.unit(425, "lb"),
  24568. name: "Back",
  24569. image: {
  24570. source: "./media/characters/hind/back.svg",
  24571. extra: 2091 / 1860,
  24572. bottom: 24.6 / 2309
  24573. }
  24574. },
  24575. tail: {
  24576. height: math.unit(2.8, "feet"),
  24577. name: "Tail",
  24578. image: {
  24579. source: "./media/characters/hind/tail.svg"
  24580. }
  24581. },
  24582. head: {
  24583. height: math.unit(2.55, "feet"),
  24584. name: "Head",
  24585. image: {
  24586. source: "./media/characters/hind/head.svg"
  24587. }
  24588. },
  24589. },
  24590. [
  24591. {
  24592. name: "XS",
  24593. height: math.unit(0.7, "feet")
  24594. },
  24595. {
  24596. name: "Normal",
  24597. height: math.unit(7, "feet"),
  24598. default: true
  24599. },
  24600. {
  24601. name: "XL",
  24602. height: math.unit(70, "feet")
  24603. },
  24604. ]
  24605. ))
  24606. characterMakers.push(() => makeCharacter(
  24607. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24608. {
  24609. front: {
  24610. height: math.unit(6, "feet"),
  24611. weight: math.unit(150, "lb"),
  24612. name: "Front",
  24613. image: {
  24614. source: "./media/characters/dylan-skaven/front.svg",
  24615. extra: 2318 / 2063,
  24616. bottom: 93.4 / 2410
  24617. }
  24618. },
  24619. },
  24620. [
  24621. {
  24622. name: "Nano",
  24623. height: math.unit(1, "mm")
  24624. },
  24625. {
  24626. name: "Micro",
  24627. height: math.unit(1, "cm")
  24628. },
  24629. {
  24630. name: "Normal",
  24631. height: math.unit(2.1, "meters"),
  24632. default: true
  24633. },
  24634. ]
  24635. ))
  24636. characterMakers.push(() => makeCharacter(
  24637. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24638. {
  24639. front: {
  24640. height: math.unit(7 + 5 / 12, "feet"),
  24641. weight: math.unit(357, "lb"),
  24642. name: "Front",
  24643. image: {
  24644. source: "./media/characters/solex-draconov/front.svg",
  24645. extra: 1993 / 1865,
  24646. bottom: 117 / 2111
  24647. }
  24648. },
  24649. },
  24650. [
  24651. {
  24652. name: "Natural Height",
  24653. height: math.unit(7 + 5 / 12, "feet"),
  24654. default: true
  24655. },
  24656. {
  24657. name: "Macro",
  24658. height: math.unit(350, "feet")
  24659. },
  24660. {
  24661. name: "Macro+",
  24662. height: math.unit(1000, "feet")
  24663. },
  24664. {
  24665. name: "Megamacro",
  24666. height: math.unit(20, "km")
  24667. },
  24668. {
  24669. name: "Megamacro+",
  24670. height: math.unit(1000, "km")
  24671. },
  24672. {
  24673. name: "Gigamacro",
  24674. height: math.unit(2.5, "Gm")
  24675. },
  24676. {
  24677. name: "Teramacro",
  24678. height: math.unit(15, "Tm")
  24679. },
  24680. {
  24681. name: "Galactic",
  24682. height: math.unit(30, "Zm")
  24683. },
  24684. {
  24685. name: "Universal",
  24686. height: math.unit(21000, "Ym")
  24687. },
  24688. {
  24689. name: "Omniversal",
  24690. height: math.unit(9.861e50, "Ym")
  24691. },
  24692. {
  24693. name: "Existential",
  24694. height: math.unit(1e300, "meters")
  24695. },
  24696. ]
  24697. ))
  24698. characterMakers.push(() => makeCharacter(
  24699. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24700. {
  24701. side: {
  24702. height: math.unit(25, "feet"),
  24703. weight: math.unit(90000, "lb"),
  24704. name: "Side",
  24705. image: {
  24706. source: "./media/characters/mandarax/side.svg",
  24707. extra: 614 / 332,
  24708. bottom: 55 / 630
  24709. }
  24710. },
  24711. head: {
  24712. height: math.unit(11.4, "feet"),
  24713. name: "Head",
  24714. image: {
  24715. source: "./media/characters/mandarax/head.svg"
  24716. }
  24717. },
  24718. belly: {
  24719. height: math.unit(33, "feet"),
  24720. name: "Belly",
  24721. capacity: math.unit(500, "people"),
  24722. image: {
  24723. source: "./media/characters/mandarax/belly.svg"
  24724. }
  24725. },
  24726. dick: {
  24727. height: math.unit(8.46, "feet"),
  24728. name: "Dick",
  24729. image: {
  24730. source: "./media/characters/mandarax/dick.svg"
  24731. }
  24732. },
  24733. top: {
  24734. height: math.unit(28, "meters"),
  24735. name: "Top",
  24736. image: {
  24737. source: "./media/characters/mandarax/top.svg"
  24738. }
  24739. },
  24740. },
  24741. [
  24742. {
  24743. name: "Normal",
  24744. height: math.unit(25, "feet"),
  24745. default: true
  24746. },
  24747. ]
  24748. ))
  24749. characterMakers.push(() => makeCharacter(
  24750. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24751. {
  24752. front: {
  24753. height: math.unit(5, "feet"),
  24754. weight: math.unit(90, "lb"),
  24755. name: "Front",
  24756. image: {
  24757. source: "./media/characters/pixil/front.svg",
  24758. extra: 2000 / 1618,
  24759. bottom: 12.3 / 2011
  24760. }
  24761. },
  24762. },
  24763. [
  24764. {
  24765. name: "Normal",
  24766. height: math.unit(5, "feet"),
  24767. default: true
  24768. },
  24769. {
  24770. name: "Megamacro",
  24771. height: math.unit(10, "miles"),
  24772. },
  24773. ]
  24774. ))
  24775. characterMakers.push(() => makeCharacter(
  24776. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24777. {
  24778. front: {
  24779. height: math.unit(7 + 2 / 12, "feet"),
  24780. weight: math.unit(200, "lb"),
  24781. name: "Front",
  24782. image: {
  24783. source: "./media/characters/angel/front.svg",
  24784. extra: 1830 / 1737,
  24785. bottom: 22.6 / 1854,
  24786. }
  24787. },
  24788. },
  24789. [
  24790. {
  24791. name: "Normal",
  24792. height: math.unit(7 + 2 / 12, "feet"),
  24793. default: true
  24794. },
  24795. {
  24796. name: "Macro",
  24797. height: math.unit(1000, "feet")
  24798. },
  24799. {
  24800. name: "Megamacro",
  24801. height: math.unit(2, "miles")
  24802. },
  24803. {
  24804. name: "Gigamacro",
  24805. height: math.unit(20, "earths")
  24806. },
  24807. ]
  24808. ))
  24809. characterMakers.push(() => makeCharacter(
  24810. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24811. {
  24812. front: {
  24813. height: math.unit(5, "feet"),
  24814. weight: math.unit(180, "lb"),
  24815. name: "Front",
  24816. image: {
  24817. source: "./media/characters/mekana/front.svg",
  24818. extra: 1671 / 1605,
  24819. bottom: 3.5 / 1691
  24820. }
  24821. },
  24822. side: {
  24823. height: math.unit(5, "feet"),
  24824. weight: math.unit(180, "lb"),
  24825. name: "Side",
  24826. image: {
  24827. source: "./media/characters/mekana/side.svg",
  24828. extra: 1671 / 1605,
  24829. bottom: 3.5 / 1691
  24830. }
  24831. },
  24832. back: {
  24833. height: math.unit(5, "feet"),
  24834. weight: math.unit(180, "lb"),
  24835. name: "Back",
  24836. image: {
  24837. source: "./media/characters/mekana/back.svg",
  24838. extra: 1671 / 1605,
  24839. bottom: 3.5 / 1691
  24840. }
  24841. },
  24842. },
  24843. [
  24844. {
  24845. name: "Normal",
  24846. height: math.unit(5, "feet"),
  24847. default: true
  24848. },
  24849. ]
  24850. ))
  24851. characterMakers.push(() => makeCharacter(
  24852. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24853. {
  24854. front: {
  24855. height: math.unit(4 + 6 / 12, "feet"),
  24856. weight: math.unit(80, "lb"),
  24857. name: "Front",
  24858. image: {
  24859. source: "./media/characters/pixie/front.svg",
  24860. extra: 1924 / 1825,
  24861. bottom: 22.4 / 1946
  24862. }
  24863. },
  24864. },
  24865. [
  24866. {
  24867. name: "Normal",
  24868. height: math.unit(4 + 6 / 12, "feet"),
  24869. default: true
  24870. },
  24871. {
  24872. name: "Macro",
  24873. height: math.unit(40, "feet")
  24874. },
  24875. ]
  24876. ))
  24877. characterMakers.push(() => makeCharacter(
  24878. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24879. {
  24880. front: {
  24881. height: math.unit(2.1, "meters"),
  24882. weight: math.unit(200, "lb"),
  24883. name: "Front",
  24884. image: {
  24885. source: "./media/characters/the-lascivious/front.svg",
  24886. extra: 1 / 0.893,
  24887. bottom: 3.5 / 573.7
  24888. }
  24889. },
  24890. },
  24891. [
  24892. {
  24893. name: "Human Scale",
  24894. height: math.unit(2.1, "meters")
  24895. },
  24896. {
  24897. name: "Wolxi Scale",
  24898. height: math.unit(46.2, "m"),
  24899. default: true
  24900. },
  24901. {
  24902. name: "Boinker of Buildings",
  24903. height: math.unit(10, "km")
  24904. },
  24905. {
  24906. name: "Shagger of Skyscrapers",
  24907. height: math.unit(40, "km")
  24908. },
  24909. {
  24910. name: "Banger of Boroughs",
  24911. height: math.unit(4000, "km")
  24912. },
  24913. {
  24914. name: "Screwer of States",
  24915. height: math.unit(100000, "km")
  24916. },
  24917. {
  24918. name: "Pounder of Planets",
  24919. height: math.unit(2000000, "km")
  24920. },
  24921. ]
  24922. ))
  24923. characterMakers.push(() => makeCharacter(
  24924. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24925. {
  24926. front: {
  24927. height: math.unit(6, "feet"),
  24928. weight: math.unit(150, "lb"),
  24929. name: "Front",
  24930. image: {
  24931. source: "./media/characters/aj/front.svg",
  24932. extra: 2039 / 1562,
  24933. bottom: 40 / 2079
  24934. }
  24935. },
  24936. },
  24937. [
  24938. {
  24939. name: "Normal",
  24940. height: math.unit(11 + 6 / 12, "feet"),
  24941. default: true
  24942. },
  24943. {
  24944. name: "Megamacro",
  24945. height: math.unit(60, "megameters")
  24946. },
  24947. ]
  24948. ))
  24949. characterMakers.push(() => makeCharacter(
  24950. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24951. {
  24952. side: {
  24953. height: math.unit(31 + 8 / 12, "feet"),
  24954. weight: math.unit(75000, "kg"),
  24955. name: "Side",
  24956. image: {
  24957. source: "./media/characters/koros/side.svg",
  24958. extra: 1442 / 1297,
  24959. bottom: 122.7 / 1562
  24960. }
  24961. },
  24962. dicksKingsCrown: {
  24963. height: math.unit(6, "feet"),
  24964. name: "Dicks (King's Crown)",
  24965. image: {
  24966. source: "./media/characters/koros/dicks-kings-crown.svg"
  24967. }
  24968. },
  24969. dicksTailSet: {
  24970. height: math.unit(3, "feet"),
  24971. name: "Dicks (Tail Set)",
  24972. image: {
  24973. source: "./media/characters/koros/dicks-tail-set.svg"
  24974. }
  24975. },
  24976. dickCumming: {
  24977. height: math.unit(7.98, "feet"),
  24978. name: "Dick (Cumming)",
  24979. image: {
  24980. source: "./media/characters/koros/dick-cumming.svg"
  24981. }
  24982. },
  24983. dicksBack: {
  24984. height: math.unit(5.9, "feet"),
  24985. name: "Dicks (Back)",
  24986. image: {
  24987. source: "./media/characters/koros/dicks-back.svg"
  24988. }
  24989. },
  24990. dicksFront: {
  24991. height: math.unit(3.72, "feet"),
  24992. name: "Dicks (Front)",
  24993. image: {
  24994. source: "./media/characters/koros/dicks-front.svg"
  24995. }
  24996. },
  24997. dicksPeeking: {
  24998. height: math.unit(3.0, "feet"),
  24999. name: "Dicks (Peeking)",
  25000. image: {
  25001. source: "./media/characters/koros/dicks-peeking.svg"
  25002. }
  25003. },
  25004. eye: {
  25005. height: math.unit(1.7, "feet"),
  25006. name: "Eye",
  25007. image: {
  25008. source: "./media/characters/koros/eye.svg"
  25009. }
  25010. },
  25011. headFront: {
  25012. height: math.unit(11.69, "feet"),
  25013. name: "Head (Front)",
  25014. image: {
  25015. source: "./media/characters/koros/head-front.svg"
  25016. }
  25017. },
  25018. headSide: {
  25019. height: math.unit(14, "feet"),
  25020. name: "Head (Side)",
  25021. image: {
  25022. source: "./media/characters/koros/head-side.svg"
  25023. }
  25024. },
  25025. leg: {
  25026. height: math.unit(17, "feet"),
  25027. name: "Leg",
  25028. image: {
  25029. source: "./media/characters/koros/leg.svg"
  25030. }
  25031. },
  25032. mawSide: {
  25033. height: math.unit(12.8, "feet"),
  25034. name: "Maw (Side)",
  25035. image: {
  25036. source: "./media/characters/koros/maw-side.svg"
  25037. }
  25038. },
  25039. mawSpitting: {
  25040. height: math.unit(17, "feet"),
  25041. name: "Maw (Spitting)",
  25042. image: {
  25043. source: "./media/characters/koros/maw-spitting.svg"
  25044. }
  25045. },
  25046. slit: {
  25047. height: math.unit(2.8, "feet"),
  25048. name: "Slit",
  25049. image: {
  25050. source: "./media/characters/koros/slit.svg"
  25051. }
  25052. },
  25053. stomach: {
  25054. height: math.unit(6.8, "feet"),
  25055. capacity: math.unit(20, "people"),
  25056. name: "Stomach",
  25057. image: {
  25058. source: "./media/characters/koros/stomach.svg"
  25059. }
  25060. },
  25061. wingspanBottom: {
  25062. height: math.unit(114, "feet"),
  25063. name: "Wingspan (Bottom)",
  25064. image: {
  25065. source: "./media/characters/koros/wingspan-bottom.svg"
  25066. }
  25067. },
  25068. wingspanTop: {
  25069. height: math.unit(104, "feet"),
  25070. name: "Wingspan (Top)",
  25071. image: {
  25072. source: "./media/characters/koros/wingspan-top.svg"
  25073. }
  25074. },
  25075. },
  25076. [
  25077. {
  25078. name: "Normal",
  25079. height: math.unit(31 + 8 / 12, "feet"),
  25080. default: true
  25081. },
  25082. ]
  25083. ))
  25084. characterMakers.push(() => makeCharacter(
  25085. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25086. {
  25087. front: {
  25088. height: math.unit(18 + 5 / 12, "feet"),
  25089. weight: math.unit(3750, "kg"),
  25090. name: "Front",
  25091. image: {
  25092. source: "./media/characters/vexx/front.svg",
  25093. extra: 426 / 396,
  25094. bottom: 31.5 / 458
  25095. }
  25096. },
  25097. maw: {
  25098. height: math.unit(6, "feet"),
  25099. name: "Maw",
  25100. image: {
  25101. source: "./media/characters/vexx/maw.svg"
  25102. }
  25103. },
  25104. },
  25105. [
  25106. {
  25107. name: "Normal",
  25108. height: math.unit(18 + 5 / 12, "feet"),
  25109. default: true
  25110. },
  25111. ]
  25112. ))
  25113. characterMakers.push(() => makeCharacter(
  25114. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25115. {
  25116. front: {
  25117. height: math.unit(17 + 6 / 12, "feet"),
  25118. weight: math.unit(150, "lb"),
  25119. name: "Front",
  25120. image: {
  25121. source: "./media/characters/baadra/front.svg",
  25122. extra: 3137 / 2890,
  25123. bottom: 168.4 / 3305
  25124. }
  25125. },
  25126. back: {
  25127. height: math.unit(17 + 6 / 12, "feet"),
  25128. weight: math.unit(150, "lb"),
  25129. name: "Back",
  25130. image: {
  25131. source: "./media/characters/baadra/back.svg",
  25132. extra: 3142 / 2890,
  25133. bottom: 220 / 3371
  25134. }
  25135. },
  25136. head: {
  25137. height: math.unit(5.45, "feet"),
  25138. name: "Head",
  25139. image: {
  25140. source: "./media/characters/baadra/head.svg"
  25141. }
  25142. },
  25143. headAngry: {
  25144. height: math.unit(4.95, "feet"),
  25145. name: "Head (Angry)",
  25146. image: {
  25147. source: "./media/characters/baadra/head-angry.svg"
  25148. }
  25149. },
  25150. headOpen: {
  25151. height: math.unit(6, "feet"),
  25152. name: "Head (Open)",
  25153. image: {
  25154. source: "./media/characters/baadra/head-open.svg"
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Normal",
  25161. height: math.unit(17 + 6 / 12, "feet"),
  25162. default: true
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25168. {
  25169. front: {
  25170. height: math.unit(7 + 3 / 12, "feet"),
  25171. weight: math.unit(180, "lb"),
  25172. name: "Front",
  25173. image: {
  25174. source: "./media/characters/juri/front.svg",
  25175. extra: 1401 / 1237,
  25176. bottom: 18.5 / 1418
  25177. }
  25178. },
  25179. side: {
  25180. height: math.unit(7 + 3 / 12, "feet"),
  25181. weight: math.unit(180, "lb"),
  25182. name: "Side",
  25183. image: {
  25184. source: "./media/characters/juri/side.svg",
  25185. extra: 1424 / 1242,
  25186. bottom: 18.5 / 1447
  25187. }
  25188. },
  25189. sitting: {
  25190. height: math.unit(6, "feet"),
  25191. weight: math.unit(180, "lb"),
  25192. name: "Sitting",
  25193. image: {
  25194. source: "./media/characters/juri/sitting.svg",
  25195. extra: 1270 / 1143,
  25196. bottom: 100 / 1343
  25197. }
  25198. },
  25199. back: {
  25200. height: math.unit(7 + 3 / 12, "feet"),
  25201. weight: math.unit(180, "lb"),
  25202. name: "Back",
  25203. image: {
  25204. source: "./media/characters/juri/back.svg",
  25205. extra: 1377 / 1240,
  25206. bottom: 23.7 / 1405
  25207. }
  25208. },
  25209. maw: {
  25210. height: math.unit(2.8, "feet"),
  25211. name: "Maw",
  25212. image: {
  25213. source: "./media/characters/juri/maw.svg"
  25214. }
  25215. },
  25216. stomach: {
  25217. height: math.unit(0.89, "feet"),
  25218. capacity: math.unit(4, "liters"),
  25219. name: "Stomach",
  25220. image: {
  25221. source: "./media/characters/juri/stomach.svg"
  25222. }
  25223. },
  25224. },
  25225. [
  25226. {
  25227. name: "Normal",
  25228. height: math.unit(7 + 3 / 12, "feet"),
  25229. default: true
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25235. {
  25236. fox: {
  25237. height: math.unit(5 + 6 / 12, "feet"),
  25238. weight: math.unit(140, "lb"),
  25239. name: "Fox",
  25240. image: {
  25241. source: "./media/characters/maxene-sita/fox.svg",
  25242. extra: 146 / 138,
  25243. bottom: 2.1 / 148.19
  25244. }
  25245. },
  25246. foxLaying: {
  25247. height: math.unit(1.70, "feet"),
  25248. weight: math.unit(140, "lb"),
  25249. name: "Fox (Laying)",
  25250. image: {
  25251. source: "./media/characters/maxene-sita/fox-laying.svg",
  25252. extra: 910 / 572,
  25253. bottom: 71 / 981
  25254. }
  25255. },
  25256. kitsune: {
  25257. height: math.unit(10, "feet"),
  25258. weight: math.unit(800, "lb"),
  25259. name: "Kitsune",
  25260. image: {
  25261. source: "./media/characters/maxene-sita/kitsune.svg",
  25262. extra: 185 / 176,
  25263. bottom: 4.7 / 189.9
  25264. }
  25265. },
  25266. hellhound: {
  25267. height: math.unit(10, "feet"),
  25268. weight: math.unit(700, "lb"),
  25269. name: "Hellhound",
  25270. image: {
  25271. source: "./media/characters/maxene-sita/hellhound.svg",
  25272. extra: 1600 / 1545,
  25273. bottom: 81 / 1681
  25274. }
  25275. },
  25276. },
  25277. [
  25278. {
  25279. name: "Normal",
  25280. height: math.unit(5 + 6 / 12, "feet"),
  25281. default: true
  25282. },
  25283. ]
  25284. ))
  25285. characterMakers.push(() => makeCharacter(
  25286. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25287. {
  25288. front: {
  25289. height: math.unit(3 + 4 / 12, "feet"),
  25290. weight: math.unit(70, "lb"),
  25291. name: "Front",
  25292. image: {
  25293. source: "./media/characters/maia/front.svg",
  25294. extra: 227 / 219.5,
  25295. bottom: 40 / 267
  25296. }
  25297. },
  25298. back: {
  25299. height: math.unit(3 + 4 / 12, "feet"),
  25300. weight: math.unit(70, "lb"),
  25301. name: "Back",
  25302. image: {
  25303. source: "./media/characters/maia/back.svg",
  25304. extra: 237 / 225
  25305. }
  25306. },
  25307. },
  25308. [
  25309. {
  25310. name: "Normal",
  25311. height: math.unit(3 + 4 / 12, "feet"),
  25312. default: true
  25313. },
  25314. ]
  25315. ))
  25316. characterMakers.push(() => makeCharacter(
  25317. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25318. {
  25319. front: {
  25320. height: math.unit(5 + 10 / 12, "feet"),
  25321. weight: math.unit(197, "lb"),
  25322. name: "Front",
  25323. image: {
  25324. source: "./media/characters/jabaro/front.svg",
  25325. extra: 225 / 216,
  25326. bottom: 5.06 / 230
  25327. }
  25328. },
  25329. back: {
  25330. height: math.unit(5 + 10 / 12, "feet"),
  25331. weight: math.unit(197, "lb"),
  25332. name: "Back",
  25333. image: {
  25334. source: "./media/characters/jabaro/back.svg",
  25335. extra: 225 / 219,
  25336. bottom: 1.9 / 227
  25337. }
  25338. },
  25339. },
  25340. [
  25341. {
  25342. name: "Normal",
  25343. height: math.unit(5 + 10 / 12, "feet"),
  25344. default: true
  25345. },
  25346. ]
  25347. ))
  25348. characterMakers.push(() => makeCharacter(
  25349. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25350. {
  25351. front: {
  25352. height: math.unit(5 + 8 / 12, "feet"),
  25353. weight: math.unit(139, "lb"),
  25354. name: "Front",
  25355. image: {
  25356. source: "./media/characters/risa/front.svg",
  25357. extra: 270 / 260,
  25358. bottom: 11.2 / 282
  25359. }
  25360. },
  25361. back: {
  25362. height: math.unit(5 + 8 / 12, "feet"),
  25363. weight: math.unit(139, "lb"),
  25364. name: "Back",
  25365. image: {
  25366. source: "./media/characters/risa/back.svg",
  25367. extra: 264 / 255,
  25368. bottom: 4 / 268
  25369. }
  25370. },
  25371. },
  25372. [
  25373. {
  25374. name: "Normal",
  25375. height: math.unit(5 + 8 / 12, "feet"),
  25376. default: true
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25382. {
  25383. front: {
  25384. height: math.unit(2 + 11 / 12, "feet"),
  25385. weight: math.unit(30, "lb"),
  25386. name: "Front",
  25387. image: {
  25388. source: "./media/characters/weatley/front.svg",
  25389. bottom: 10.7 / 414,
  25390. extra: 403.5 / 362
  25391. }
  25392. },
  25393. back: {
  25394. height: math.unit(2 + 11 / 12, "feet"),
  25395. weight: math.unit(30, "lb"),
  25396. name: "Back",
  25397. image: {
  25398. source: "./media/characters/weatley/back.svg",
  25399. bottom: 10.7 / 414,
  25400. extra: 403.5 / 362
  25401. }
  25402. },
  25403. },
  25404. [
  25405. {
  25406. name: "Normal",
  25407. height: math.unit(2 + 11 / 12, "feet"),
  25408. default: true
  25409. },
  25410. ]
  25411. ))
  25412. characterMakers.push(() => makeCharacter(
  25413. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25414. {
  25415. front: {
  25416. height: math.unit(5 + 2 / 12, "feet"),
  25417. weight: math.unit(50, "kg"),
  25418. name: "Front",
  25419. image: {
  25420. source: "./media/characters/mercury-crescent/front.svg",
  25421. extra: 1088 / 1033,
  25422. bottom: 18.9 / 1109
  25423. }
  25424. },
  25425. },
  25426. [
  25427. {
  25428. name: "Normal",
  25429. height: math.unit(5 + 2 / 12, "feet"),
  25430. default: true
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25436. {
  25437. front: {
  25438. height: math.unit(2, "feet"),
  25439. weight: math.unit(15, "kg"),
  25440. name: "Front",
  25441. image: {
  25442. source: "./media/characters/diamond-jones/front.svg",
  25443. extra: 727/723,
  25444. bottom: 46/773
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Normal",
  25451. height: math.unit(2, "feet"),
  25452. default: true
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25458. {
  25459. front: {
  25460. height: math.unit(3, "feet"),
  25461. weight: math.unit(30, "kg"),
  25462. name: "Front",
  25463. image: {
  25464. source: "./media/characters/sweet-bit/front.svg",
  25465. extra: 675 / 567,
  25466. bottom: 27.7 / 703
  25467. }
  25468. },
  25469. },
  25470. [
  25471. {
  25472. name: "Normal",
  25473. height: math.unit(3, "feet"),
  25474. default: true
  25475. },
  25476. ]
  25477. ))
  25478. characterMakers.push(() => makeCharacter(
  25479. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25480. {
  25481. side: {
  25482. height: math.unit(9.178, "feet"),
  25483. weight: math.unit(500, "lb"),
  25484. name: "Side",
  25485. image: {
  25486. source: "./media/characters/umbrazen/side.svg",
  25487. extra: 1730 / 1473,
  25488. bottom: 34.6 / 1765
  25489. }
  25490. },
  25491. },
  25492. [
  25493. {
  25494. name: "Normal",
  25495. height: math.unit(9.178, "feet"),
  25496. default: true
  25497. },
  25498. ]
  25499. ))
  25500. characterMakers.push(() => makeCharacter(
  25501. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25502. {
  25503. front: {
  25504. height: math.unit(10, "feet"),
  25505. weight: math.unit(750, "lb"),
  25506. name: "Front",
  25507. image: {
  25508. source: "./media/characters/arlist/front.svg",
  25509. extra: 961 / 778,
  25510. bottom: 6.2 / 986
  25511. }
  25512. },
  25513. },
  25514. [
  25515. {
  25516. name: "Normal",
  25517. height: math.unit(10, "feet"),
  25518. default: true
  25519. },
  25520. ]
  25521. ))
  25522. characterMakers.push(() => makeCharacter(
  25523. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25524. {
  25525. front: {
  25526. height: math.unit(5 + 1 / 12, "feet"),
  25527. weight: math.unit(110, "lb"),
  25528. name: "Front",
  25529. image: {
  25530. source: "./media/characters/aradel/front.svg",
  25531. extra: 324 / 303,
  25532. bottom: 3.6 / 329.4
  25533. }
  25534. },
  25535. },
  25536. [
  25537. {
  25538. name: "Normal",
  25539. height: math.unit(5 + 1 / 12, "feet"),
  25540. default: true
  25541. },
  25542. ]
  25543. ))
  25544. characterMakers.push(() => makeCharacter(
  25545. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25546. {
  25547. front: {
  25548. height: math.unit(3 + 8 / 12, "feet"),
  25549. weight: math.unit(50, "lb"),
  25550. name: "Front",
  25551. image: {
  25552. source: "./media/characters/serryn/front.svg",
  25553. extra: 1792 / 1656,
  25554. bottom: 43.5 / 1840
  25555. }
  25556. },
  25557. },
  25558. [
  25559. {
  25560. name: "Normal",
  25561. height: math.unit(3 + 8 / 12, "feet"),
  25562. default: true
  25563. },
  25564. ]
  25565. ))
  25566. characterMakers.push(() => makeCharacter(
  25567. { name: "Xavier Thyme" },
  25568. {
  25569. front: {
  25570. height: math.unit(7 + 10 / 12, "feet"),
  25571. weight: math.unit(255, "lb"),
  25572. name: "Front",
  25573. image: {
  25574. source: "./media/characters/xavier-thyme/front.svg",
  25575. extra: 3733 / 3642,
  25576. bottom: 131 / 3869
  25577. }
  25578. },
  25579. frontRaven: {
  25580. height: math.unit(7 + 10 / 12, "feet"),
  25581. weight: math.unit(255, "lb"),
  25582. name: "Front (Raven)",
  25583. image: {
  25584. source: "./media/characters/xavier-thyme/front-raven.svg",
  25585. extra: 4385 / 3642,
  25586. bottom: 131 / 4517
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Normal",
  25593. height: math.unit(7 + 10 / 12, "feet"),
  25594. default: true
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25600. {
  25601. front: {
  25602. height: math.unit(1.6, "m"),
  25603. weight: math.unit(50, "kg"),
  25604. name: "Front",
  25605. image: {
  25606. source: "./media/characters/kiki/front.svg",
  25607. extra: 4682 / 3610,
  25608. bottom: 115 / 4777
  25609. }
  25610. },
  25611. },
  25612. [
  25613. {
  25614. name: "Normal",
  25615. height: math.unit(1.6, "meters"),
  25616. default: true
  25617. },
  25618. ]
  25619. ))
  25620. characterMakers.push(() => makeCharacter(
  25621. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25622. {
  25623. front: {
  25624. height: math.unit(50, "m"),
  25625. weight: math.unit(500, "tonnes"),
  25626. name: "Front",
  25627. image: {
  25628. source: "./media/characters/ryoko/front.svg",
  25629. extra: 4632 / 3926,
  25630. bottom: 193 / 4823
  25631. }
  25632. },
  25633. },
  25634. [
  25635. {
  25636. name: "Normal",
  25637. height: math.unit(50, "meters"),
  25638. default: true
  25639. },
  25640. ]
  25641. ))
  25642. characterMakers.push(() => makeCharacter(
  25643. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25644. {
  25645. front: {
  25646. height: math.unit(30, "m"),
  25647. weight: math.unit(22, "tonnes"),
  25648. name: "Front",
  25649. image: {
  25650. source: "./media/characters/elio/front.svg",
  25651. extra: 4582 / 3720,
  25652. bottom: 236 / 4828
  25653. }
  25654. },
  25655. },
  25656. [
  25657. {
  25658. name: "Normal",
  25659. height: math.unit(30, "meters"),
  25660. default: true
  25661. },
  25662. ]
  25663. ))
  25664. characterMakers.push(() => makeCharacter(
  25665. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25666. {
  25667. front: {
  25668. height: math.unit(6 + 3 / 12, "feet"),
  25669. weight: math.unit(120, "lb"),
  25670. name: "Front",
  25671. image: {
  25672. source: "./media/characters/azura/front.svg",
  25673. extra: 1149 / 1135,
  25674. bottom: 45 / 1194
  25675. }
  25676. },
  25677. frontClothed: {
  25678. height: math.unit(6 + 3 / 12, "feet"),
  25679. weight: math.unit(120, "lb"),
  25680. name: "Front (Clothed)",
  25681. image: {
  25682. source: "./media/characters/azura/front-clothed.svg",
  25683. extra: 1149 / 1135,
  25684. bottom: 45 / 1194
  25685. }
  25686. },
  25687. },
  25688. [
  25689. {
  25690. name: "Normal",
  25691. height: math.unit(6 + 3 / 12, "feet"),
  25692. default: true
  25693. },
  25694. {
  25695. name: "Macro",
  25696. height: math.unit(20 + 6 / 12, "feet")
  25697. },
  25698. {
  25699. name: "Megamacro",
  25700. height: math.unit(12, "miles")
  25701. },
  25702. {
  25703. name: "Gigamacro",
  25704. height: math.unit(10000, "miles")
  25705. },
  25706. {
  25707. name: "Teramacro",
  25708. height: math.unit(900000, "miles")
  25709. },
  25710. ]
  25711. ))
  25712. characterMakers.push(() => makeCharacter(
  25713. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25714. {
  25715. front: {
  25716. height: math.unit(12, "feet"),
  25717. weight: math.unit(1, "ton"),
  25718. capacity: math.unit(660000, "gallons"),
  25719. name: "Front",
  25720. image: {
  25721. source: "./media/characters/zeus/front.svg",
  25722. extra: 5005 / 4717,
  25723. bottom: 363 / 5388
  25724. }
  25725. },
  25726. },
  25727. [
  25728. {
  25729. name: "Normal",
  25730. height: math.unit(12, "feet")
  25731. },
  25732. {
  25733. name: "Preferred Size",
  25734. height: math.unit(0.5, "miles"),
  25735. default: true
  25736. },
  25737. {
  25738. name: "Giga Horse",
  25739. height: math.unit(300, "miles")
  25740. },
  25741. {
  25742. name: "Riding Planets",
  25743. height: math.unit(30, "megameters")
  25744. },
  25745. {
  25746. name: "Cosmic Giant",
  25747. height: math.unit(3, "zettameters")
  25748. },
  25749. {
  25750. name: "Breeding God",
  25751. height: math.unit(9.92e22, "yottameters")
  25752. },
  25753. ]
  25754. ))
  25755. characterMakers.push(() => makeCharacter(
  25756. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25757. {
  25758. side: {
  25759. height: math.unit(9, "feet"),
  25760. weight: math.unit(1500, "kg"),
  25761. name: "Side",
  25762. image: {
  25763. source: "./media/characters/fang/side.svg",
  25764. extra: 924 / 866,
  25765. bottom: 47.5 / 972.3
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Normal",
  25772. height: math.unit(9, "feet"),
  25773. default: true
  25774. },
  25775. {
  25776. name: "Macro",
  25777. height: math.unit(75 + 6 / 12, "feet")
  25778. },
  25779. {
  25780. name: "Teramacro",
  25781. height: math.unit(50000, "miles")
  25782. },
  25783. ]
  25784. ))
  25785. characterMakers.push(() => makeCharacter(
  25786. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25787. {
  25788. front: {
  25789. height: math.unit(10, "feet"),
  25790. weight: math.unit(2, "tons"),
  25791. name: "Front",
  25792. image: {
  25793. source: "./media/characters/rekhit/front.svg",
  25794. extra: 2796 / 2590,
  25795. bottom: 225 / 3022
  25796. }
  25797. },
  25798. },
  25799. [
  25800. {
  25801. name: "Normal",
  25802. height: math.unit(10, "feet"),
  25803. default: true
  25804. },
  25805. {
  25806. name: "Macro",
  25807. height: math.unit(500, "feet")
  25808. },
  25809. ]
  25810. ))
  25811. characterMakers.push(() => makeCharacter(
  25812. { name: "Dahlia Verrick" },
  25813. {
  25814. front: {
  25815. height: math.unit(7 + 6.451 / 12, "feet"),
  25816. weight: math.unit(310, "lb"),
  25817. name: "Front",
  25818. image: {
  25819. source: "./media/characters/dahlia-verrick/front.svg",
  25820. extra: 1488 / 1365,
  25821. bottom: 6.2 / 1495
  25822. }
  25823. },
  25824. back: {
  25825. height: math.unit(7 + 6.451 / 12, "feet"),
  25826. weight: math.unit(310, "lb"),
  25827. name: "Back",
  25828. image: {
  25829. source: "./media/characters/dahlia-verrick/back.svg",
  25830. extra: 1472 / 1351,
  25831. bottom: 5.28 / 1477
  25832. }
  25833. },
  25834. frontBusiness: {
  25835. height: math.unit(7 + 6.451 / 12, "feet"),
  25836. weight: math.unit(200, "lb"),
  25837. name: "Front (Business)",
  25838. image: {
  25839. source: "./media/characters/dahlia-verrick/front-business.svg",
  25840. extra: 1478 / 1381,
  25841. bottom: 5.5 / 1484
  25842. }
  25843. },
  25844. frontCasual: {
  25845. height: math.unit(7 + 6.451 / 12, "feet"),
  25846. weight: math.unit(200, "lb"),
  25847. name: "Front (Casual)",
  25848. image: {
  25849. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25850. extra: 1478 / 1381,
  25851. bottom: 5.5 / 1484
  25852. }
  25853. },
  25854. },
  25855. [
  25856. {
  25857. name: "Travel-Sized",
  25858. height: math.unit(7.45, "inches")
  25859. },
  25860. {
  25861. name: "Normal",
  25862. height: math.unit(7 + 6.451 / 12, "feet"),
  25863. default: true
  25864. },
  25865. {
  25866. name: "Hitting the Town",
  25867. height: math.unit(37 + 8 / 12, "feet")
  25868. },
  25869. {
  25870. name: "Stomp in the Suburbs",
  25871. height: math.unit(964 + 9.728 / 12, "feet")
  25872. },
  25873. {
  25874. name: "Sit on the City",
  25875. height: math.unit(61747 + 10.592 / 12, "feet")
  25876. },
  25877. {
  25878. name: "Glomp the Globe",
  25879. height: math.unit(252919327 + 4.832 / 12, "feet")
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25885. {
  25886. front: {
  25887. height: math.unit(6 + 4 / 12, "feet"),
  25888. weight: math.unit(320, "lb"),
  25889. name: "Front",
  25890. image: {
  25891. source: "./media/characters/balina-mahigan/front.svg",
  25892. extra: 447 / 428,
  25893. bottom: 18 / 466
  25894. }
  25895. },
  25896. back: {
  25897. height: math.unit(6 + 4 / 12, "feet"),
  25898. weight: math.unit(320, "lb"),
  25899. name: "Back",
  25900. image: {
  25901. source: "./media/characters/balina-mahigan/back.svg",
  25902. extra: 445 / 428,
  25903. bottom: 4.07 / 448
  25904. }
  25905. },
  25906. arm: {
  25907. height: math.unit(1.88, "feet"),
  25908. name: "Arm",
  25909. image: {
  25910. source: "./media/characters/balina-mahigan/arm.svg"
  25911. }
  25912. },
  25913. backPort: {
  25914. height: math.unit(0.685, "feet"),
  25915. name: "Back Port",
  25916. image: {
  25917. source: "./media/characters/balina-mahigan/back-port.svg"
  25918. }
  25919. },
  25920. hoofpaw: {
  25921. height: math.unit(1.41, "feet"),
  25922. name: "Hoofpaw",
  25923. image: {
  25924. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25925. }
  25926. },
  25927. leftHandBack: {
  25928. height: math.unit(0.938, "feet"),
  25929. name: "Left Hand (Back)",
  25930. image: {
  25931. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25932. }
  25933. },
  25934. leftHandFront: {
  25935. height: math.unit(0.938, "feet"),
  25936. name: "Left Hand (Front)",
  25937. image: {
  25938. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25939. }
  25940. },
  25941. rightHandBack: {
  25942. height: math.unit(0.95, "feet"),
  25943. name: "Right Hand (Back)",
  25944. image: {
  25945. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25946. }
  25947. },
  25948. rightHandFront: {
  25949. height: math.unit(0.95, "feet"),
  25950. name: "Right Hand (Front)",
  25951. image: {
  25952. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25953. }
  25954. },
  25955. },
  25956. [
  25957. {
  25958. name: "Normal",
  25959. height: math.unit(6 + 4 / 12, "feet"),
  25960. default: true
  25961. },
  25962. ]
  25963. ))
  25964. characterMakers.push(() => makeCharacter(
  25965. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25966. {
  25967. front: {
  25968. height: math.unit(6, "feet"),
  25969. weight: math.unit(320, "lb"),
  25970. name: "Front",
  25971. image: {
  25972. source: "./media/characters/balina-mejeri/front.svg",
  25973. extra: 517 / 488,
  25974. bottom: 44.2 / 561
  25975. }
  25976. },
  25977. },
  25978. [
  25979. {
  25980. name: "Normal",
  25981. height: math.unit(6 + 4 / 12, "feet")
  25982. },
  25983. {
  25984. name: "Business",
  25985. height: math.unit(155, "feet"),
  25986. default: true
  25987. },
  25988. ]
  25989. ))
  25990. characterMakers.push(() => makeCharacter(
  25991. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25992. {
  25993. kneeling: {
  25994. height: math.unit(6 + 4 / 12, "feet"),
  25995. weight: math.unit(300 * 20, "lb"),
  25996. name: "Kneeling",
  25997. image: {
  25998. source: "./media/characters/balbarian/kneeling.svg",
  25999. extra: 922 / 862,
  26000. bottom: 42.4 / 965
  26001. }
  26002. },
  26003. },
  26004. [
  26005. {
  26006. name: "Normal",
  26007. height: math.unit(6 + 4 / 12, "feet")
  26008. },
  26009. {
  26010. name: "Treasured",
  26011. height: math.unit(18 + 9 / 12, "feet"),
  26012. default: true
  26013. },
  26014. {
  26015. name: "Macro",
  26016. height: math.unit(900, "feet")
  26017. },
  26018. ]
  26019. ))
  26020. characterMakers.push(() => makeCharacter(
  26021. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26022. {
  26023. front: {
  26024. height: math.unit(6 + 4 / 12, "feet"),
  26025. weight: math.unit(325, "lb"),
  26026. name: "Front",
  26027. image: {
  26028. source: "./media/characters/balina-amarini/front.svg",
  26029. extra: 415 / 403,
  26030. bottom: 19 / 433.4
  26031. }
  26032. },
  26033. back: {
  26034. height: math.unit(6 + 4 / 12, "feet"),
  26035. weight: math.unit(325, "lb"),
  26036. name: "Back",
  26037. image: {
  26038. source: "./media/characters/balina-amarini/back.svg",
  26039. extra: 415 / 403,
  26040. bottom: 13.5 / 432
  26041. }
  26042. },
  26043. overdrive: {
  26044. height: math.unit(6 + 4 / 12, "feet"),
  26045. weight: math.unit(400, "lb"),
  26046. name: "Overdrive",
  26047. image: {
  26048. source: "./media/characters/balina-amarini/overdrive.svg",
  26049. extra: 269 / 259,
  26050. bottom: 12 / 282
  26051. }
  26052. },
  26053. },
  26054. [
  26055. {
  26056. name: "Boom",
  26057. height: math.unit(9 + 10 / 12, "feet"),
  26058. default: true
  26059. },
  26060. {
  26061. name: "Macro",
  26062. height: math.unit(280, "feet")
  26063. },
  26064. ]
  26065. ))
  26066. characterMakers.push(() => makeCharacter(
  26067. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26068. {
  26069. goddess: {
  26070. height: math.unit(600, "feet"),
  26071. weight: math.unit(2000000, "tons"),
  26072. name: "Goddess",
  26073. image: {
  26074. source: "./media/characters/lady-kubwa/goddess.svg",
  26075. extra: 1240.5 / 1223,
  26076. bottom: 22 / 1263
  26077. }
  26078. },
  26079. goddesser: {
  26080. height: math.unit(900, "feet"),
  26081. weight: math.unit(20000000, "lb"),
  26082. name: "Goddess-er",
  26083. image: {
  26084. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26085. extra: 899 / 888,
  26086. bottom: 12.6 / 912
  26087. }
  26088. },
  26089. },
  26090. [
  26091. {
  26092. name: "Macro",
  26093. height: math.unit(600, "feet"),
  26094. default: true
  26095. },
  26096. {
  26097. name: "Megamacro",
  26098. height: math.unit(250, "miles")
  26099. },
  26100. ]
  26101. ))
  26102. characterMakers.push(() => makeCharacter(
  26103. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26104. {
  26105. front: {
  26106. height: math.unit(7 + 7 / 12, "feet"),
  26107. weight: math.unit(250, "lb"),
  26108. name: "Front",
  26109. image: {
  26110. source: "./media/characters/tala-grovehorn/front.svg",
  26111. extra: 2636 / 2525,
  26112. bottom: 147 / 2781
  26113. }
  26114. },
  26115. back: {
  26116. height: math.unit(7 + 7 / 12, "feet"),
  26117. weight: math.unit(250, "lb"),
  26118. name: "Back",
  26119. image: {
  26120. source: "./media/characters/tala-grovehorn/back.svg",
  26121. extra: 2635 / 2539,
  26122. bottom: 100 / 2732.8
  26123. }
  26124. },
  26125. mouth: {
  26126. height: math.unit(1.15, "feet"),
  26127. name: "Mouth",
  26128. image: {
  26129. source: "./media/characters/tala-grovehorn/mouth.svg"
  26130. }
  26131. },
  26132. dick: {
  26133. height: math.unit(2.36, "feet"),
  26134. name: "Dick",
  26135. image: {
  26136. source: "./media/characters/tala-grovehorn/dick.svg"
  26137. }
  26138. },
  26139. slit: {
  26140. height: math.unit(0.61, "feet"),
  26141. name: "Slit",
  26142. image: {
  26143. source: "./media/characters/tala-grovehorn/slit.svg"
  26144. }
  26145. },
  26146. },
  26147. [
  26148. ]
  26149. ))
  26150. characterMakers.push(() => makeCharacter(
  26151. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26152. {
  26153. front: {
  26154. height: math.unit(7 + 7 / 12, "feet"),
  26155. weight: math.unit(225, "lb"),
  26156. name: "Front",
  26157. image: {
  26158. source: "./media/characters/epona/front.svg",
  26159. extra: 2445 / 2290,
  26160. bottom: 251 / 2696
  26161. }
  26162. },
  26163. back: {
  26164. height: math.unit(7 + 7 / 12, "feet"),
  26165. weight: math.unit(225, "lb"),
  26166. name: "Back",
  26167. image: {
  26168. source: "./media/characters/epona/back.svg",
  26169. extra: 2546 / 2408,
  26170. bottom: 44 / 2589
  26171. }
  26172. },
  26173. genitals: {
  26174. height: math.unit(1.5, "feet"),
  26175. name: "Genitals",
  26176. image: {
  26177. source: "./media/characters/epona/genitals.svg"
  26178. }
  26179. },
  26180. },
  26181. [
  26182. {
  26183. name: "Normal",
  26184. height: math.unit(7 + 7 / 12, "feet"),
  26185. default: true
  26186. },
  26187. ]
  26188. ))
  26189. characterMakers.push(() => makeCharacter(
  26190. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26191. {
  26192. front: {
  26193. height: math.unit(7, "feet"),
  26194. weight: math.unit(518, "lb"),
  26195. name: "Front",
  26196. image: {
  26197. source: "./media/characters/avia-bloodbourn/front.svg",
  26198. extra: 1466 / 1350,
  26199. bottom: 65 / 1527
  26200. }
  26201. },
  26202. },
  26203. [
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26208. {
  26209. front: {
  26210. height: math.unit(9.35, "feet"),
  26211. weight: math.unit(600, "lb"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/amera/front.svg",
  26215. extra: 891 / 818,
  26216. bottom: 30 / 922.7
  26217. }
  26218. },
  26219. back: {
  26220. height: math.unit(9.35, "feet"),
  26221. weight: math.unit(600, "lb"),
  26222. name: "Back",
  26223. image: {
  26224. source: "./media/characters/amera/back.svg",
  26225. extra: 876 / 824,
  26226. bottom: 6.8 / 884
  26227. }
  26228. },
  26229. dick: {
  26230. height: math.unit(2.14, "feet"),
  26231. name: "Dick",
  26232. image: {
  26233. source: "./media/characters/amera/dick.svg"
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Normal",
  26240. height: math.unit(9.35, "feet"),
  26241. default: true
  26242. },
  26243. ]
  26244. ))
  26245. characterMakers.push(() => makeCharacter(
  26246. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26247. {
  26248. kneeling: {
  26249. height: math.unit(3 + 4 / 12, "feet"),
  26250. weight: math.unit(90, "lb"),
  26251. name: "Kneeling",
  26252. image: {
  26253. source: "./media/characters/rosewen/kneeling.svg",
  26254. extra: 1835 / 1571,
  26255. bottom: 27.7 / 1862
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Normal",
  26262. height: math.unit(3 + 4 / 12, "feet"),
  26263. default: true
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26269. {
  26270. front: {
  26271. height: math.unit(5 + 10 / 12, "feet"),
  26272. weight: math.unit(200, "lb"),
  26273. name: "Front",
  26274. image: {
  26275. source: "./media/characters/sabah/front.svg",
  26276. extra: 849 / 763,
  26277. bottom: 33.9 / 881
  26278. }
  26279. },
  26280. },
  26281. [
  26282. {
  26283. name: "Normal",
  26284. height: math.unit(5 + 10 / 12, "feet"),
  26285. default: true
  26286. },
  26287. ]
  26288. ))
  26289. characterMakers.push(() => makeCharacter(
  26290. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26291. {
  26292. front: {
  26293. height: math.unit(3 + 5 / 12, "feet"),
  26294. weight: math.unit(40, "kg"),
  26295. name: "Front",
  26296. image: {
  26297. source: "./media/characters/purple-flame/front.svg",
  26298. extra: 1577 / 1412,
  26299. bottom: 97 / 1694
  26300. }
  26301. },
  26302. frontDressed: {
  26303. height: math.unit(3 + 5 / 12, "feet"),
  26304. weight: math.unit(40, "kg"),
  26305. name: "Front (Dressed)",
  26306. image: {
  26307. source: "./media/characters/purple-flame/front-dressed.svg",
  26308. extra: 1577 / 1412,
  26309. bottom: 97 / 1694
  26310. }
  26311. },
  26312. headphones: {
  26313. height: math.unit(0.85, "feet"),
  26314. name: "Headphones",
  26315. image: {
  26316. source: "./media/characters/purple-flame/headphones.svg"
  26317. }
  26318. },
  26319. },
  26320. [
  26321. {
  26322. name: "Really Small",
  26323. height: math.unit(5, "cm")
  26324. },
  26325. {
  26326. name: "Micro",
  26327. height: math.unit(1 + 5 / 12, "feet")
  26328. },
  26329. {
  26330. name: "Normal",
  26331. height: math.unit(3 + 5 / 12, "feet"),
  26332. default: true
  26333. },
  26334. {
  26335. name: "Minimacro",
  26336. height: math.unit(125, "feet")
  26337. },
  26338. {
  26339. name: "Macro",
  26340. height: math.unit(0.5, "miles")
  26341. },
  26342. {
  26343. name: "Megamacro",
  26344. height: math.unit(50, "miles")
  26345. },
  26346. {
  26347. name: "Gigantic",
  26348. height: math.unit(750, "miles")
  26349. },
  26350. {
  26351. name: "Planetary",
  26352. height: math.unit(15000, "miles")
  26353. },
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26358. {
  26359. front: {
  26360. height: math.unit(14, "feet"),
  26361. weight: math.unit(959, "lb"),
  26362. name: "Front",
  26363. image: {
  26364. source: "./media/characters/arsenal/front.svg",
  26365. extra: 2357 / 2157,
  26366. bottom: 93 / 2458
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(14, "feet"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(6, "feet"),
  26383. weight: math.unit(150, "lb"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/adira/front.svg",
  26387. extra: 1078 / 1029,
  26388. bottom: 87 / 1166
  26389. }
  26390. },
  26391. },
  26392. [
  26393. {
  26394. name: "Micro",
  26395. height: math.unit(4, "inches"),
  26396. default: true
  26397. },
  26398. {
  26399. name: "Macro",
  26400. height: math.unit(50, "feet")
  26401. },
  26402. ]
  26403. ))
  26404. characterMakers.push(() => makeCharacter(
  26405. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26406. {
  26407. front: {
  26408. height: math.unit(16, "feet"),
  26409. weight: math.unit(1000, "lb"),
  26410. name: "Front",
  26411. image: {
  26412. source: "./media/characters/grim/front.svg",
  26413. extra: 622 / 614,
  26414. bottom: 18.1 / 642
  26415. }
  26416. },
  26417. back: {
  26418. height: math.unit(16, "feet"),
  26419. weight: math.unit(1000, "lb"),
  26420. name: "Back",
  26421. image: {
  26422. source: "./media/characters/grim/back.svg",
  26423. extra: 610.6 / 602,
  26424. bottom: 40.8 / 652
  26425. }
  26426. },
  26427. hunched: {
  26428. height: math.unit(9.75, "feet"),
  26429. weight: math.unit(1000, "lb"),
  26430. name: "Hunched",
  26431. image: {
  26432. source: "./media/characters/grim/hunched.svg",
  26433. extra: 304 / 297,
  26434. bottom: 35.4 / 394
  26435. }
  26436. },
  26437. },
  26438. [
  26439. {
  26440. name: "Normal",
  26441. height: math.unit(16, "feet"),
  26442. default: true
  26443. },
  26444. ]
  26445. ))
  26446. characterMakers.push(() => makeCharacter(
  26447. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26448. {
  26449. front: {
  26450. height: math.unit(2.3, "meters"),
  26451. weight: math.unit(300, "lb"),
  26452. name: "Front",
  26453. image: {
  26454. source: "./media/characters/sinja/front-sfw.svg",
  26455. extra: 1393 / 1294,
  26456. bottom: 70 / 1463
  26457. }
  26458. },
  26459. frontNsfw: {
  26460. height: math.unit(2.3, "meters"),
  26461. weight: math.unit(300, "lb"),
  26462. name: "Front (NSFW)",
  26463. image: {
  26464. source: "./media/characters/sinja/front-nsfw.svg",
  26465. extra: 1393 / 1294,
  26466. bottom: 70 / 1463
  26467. }
  26468. },
  26469. back: {
  26470. height: math.unit(2.3, "meters"),
  26471. weight: math.unit(300, "lb"),
  26472. name: "Back",
  26473. image: {
  26474. source: "./media/characters/sinja/back.svg",
  26475. extra: 1393 / 1294,
  26476. bottom: 70 / 1463
  26477. }
  26478. },
  26479. head: {
  26480. height: math.unit(1.771, "feet"),
  26481. name: "Head",
  26482. image: {
  26483. source: "./media/characters/sinja/head.svg"
  26484. }
  26485. },
  26486. slit: {
  26487. height: math.unit(0.8, "feet"),
  26488. name: "Slit",
  26489. image: {
  26490. source: "./media/characters/sinja/slit.svg"
  26491. }
  26492. },
  26493. },
  26494. [
  26495. {
  26496. name: "Normal",
  26497. height: math.unit(2.3, "meters")
  26498. },
  26499. {
  26500. name: "Macro",
  26501. height: math.unit(91, "meters"),
  26502. default: true
  26503. },
  26504. {
  26505. name: "Megamacro",
  26506. height: math.unit(91440, "meters")
  26507. },
  26508. {
  26509. name: "Gigamacro",
  26510. height: math.unit(60960000, "meters")
  26511. },
  26512. {
  26513. name: "Teramacro",
  26514. height: math.unit(9144000000, "meters")
  26515. },
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26520. {
  26521. front: {
  26522. height: math.unit(1.7, "meters"),
  26523. weight: math.unit(130, "lb"),
  26524. name: "Front",
  26525. image: {
  26526. source: "./media/characters/kyu/front.svg",
  26527. extra: 415 / 395,
  26528. bottom: 5 / 420
  26529. }
  26530. },
  26531. head: {
  26532. height: math.unit(1.75, "feet"),
  26533. name: "Head",
  26534. image: {
  26535. source: "./media/characters/kyu/head.svg"
  26536. }
  26537. },
  26538. foot: {
  26539. height: math.unit(0.81, "feet"),
  26540. name: "Foot",
  26541. image: {
  26542. source: "./media/characters/kyu/foot.svg"
  26543. }
  26544. },
  26545. },
  26546. [
  26547. {
  26548. name: "Normal",
  26549. height: math.unit(1.7, "meters")
  26550. },
  26551. {
  26552. name: "Macro",
  26553. height: math.unit(131, "feet"),
  26554. default: true
  26555. },
  26556. {
  26557. name: "Megamacro",
  26558. height: math.unit(91440, "meters")
  26559. },
  26560. {
  26561. name: "Gigamacro",
  26562. height: math.unit(60960000, "meters")
  26563. },
  26564. {
  26565. name: "Teramacro",
  26566. height: math.unit(9144000000, "meters")
  26567. },
  26568. ]
  26569. ))
  26570. characterMakers.push(() => makeCharacter(
  26571. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26572. {
  26573. front: {
  26574. height: math.unit(7 + 1 / 12, "feet"),
  26575. weight: math.unit(250, "lb"),
  26576. name: "Front",
  26577. image: {
  26578. source: "./media/characters/joey/front.svg",
  26579. extra: 1791 / 1537,
  26580. bottom: 28 / 1816
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Micro",
  26587. height: math.unit(3, "inches")
  26588. },
  26589. {
  26590. name: "Normal",
  26591. height: math.unit(7 + 1 / 12, "feet"),
  26592. default: true
  26593. },
  26594. ]
  26595. ))
  26596. characterMakers.push(() => makeCharacter(
  26597. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26598. {
  26599. front: {
  26600. height: math.unit(165, "cm"),
  26601. weight: math.unit(140, "lb"),
  26602. name: "Front",
  26603. image: {
  26604. source: "./media/characters/sam-evans/front.svg",
  26605. extra: 3417 / 3230,
  26606. bottom: 41.3 / 3417
  26607. }
  26608. },
  26609. frontSixTails: {
  26610. height: math.unit(165, "cm"),
  26611. weight: math.unit(140, "lb"),
  26612. name: "Front-six-tails",
  26613. image: {
  26614. source: "./media/characters/sam-evans/front-six-tails.svg",
  26615. extra: 3417 / 3230,
  26616. bottom: 41.3 / 3417
  26617. }
  26618. },
  26619. back: {
  26620. height: math.unit(165, "cm"),
  26621. weight: math.unit(140, "lb"),
  26622. name: "Back",
  26623. image: {
  26624. source: "./media/characters/sam-evans/back.svg",
  26625. extra: 3227 / 3032,
  26626. bottom: 6.8 / 3234
  26627. }
  26628. },
  26629. face: {
  26630. height: math.unit(0.68, "feet"),
  26631. name: "Face",
  26632. image: {
  26633. source: "./media/characters/sam-evans/face.svg"
  26634. }
  26635. },
  26636. },
  26637. [
  26638. {
  26639. name: "Normal",
  26640. height: math.unit(165, "cm"),
  26641. default: true
  26642. },
  26643. {
  26644. name: "Macro",
  26645. height: math.unit(100, "meters")
  26646. },
  26647. {
  26648. name: "Macro+",
  26649. height: math.unit(800, "meters")
  26650. },
  26651. {
  26652. name: "Macro++",
  26653. height: math.unit(3, "km")
  26654. },
  26655. {
  26656. name: "Macro+++",
  26657. height: math.unit(30, "km")
  26658. },
  26659. ]
  26660. ))
  26661. characterMakers.push(() => makeCharacter(
  26662. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26663. {
  26664. front: {
  26665. height: math.unit(10, "feet"),
  26666. weight: math.unit(750, "lb"),
  26667. name: "Front",
  26668. image: {
  26669. source: "./media/characters/juliet-a/front.svg",
  26670. extra: 1766 / 1720,
  26671. bottom: 43 / 1809
  26672. }
  26673. },
  26674. back: {
  26675. height: math.unit(10, "feet"),
  26676. weight: math.unit(750, "lb"),
  26677. name: "Back",
  26678. image: {
  26679. source: "./media/characters/juliet-a/back.svg",
  26680. extra: 1781 / 1734,
  26681. bottom: 35 / 1810,
  26682. }
  26683. },
  26684. },
  26685. [
  26686. {
  26687. name: "Normal",
  26688. height: math.unit(10, "feet"),
  26689. default: true
  26690. },
  26691. {
  26692. name: "Dragon Form",
  26693. height: math.unit(250, "feet")
  26694. },
  26695. {
  26696. name: "Macro",
  26697. height: math.unit(1000, "feet")
  26698. },
  26699. {
  26700. name: "Megamacro",
  26701. height: math.unit(10000, "feet")
  26702. }
  26703. ]
  26704. ))
  26705. characterMakers.push(() => makeCharacter(
  26706. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26707. {
  26708. regular: {
  26709. height: math.unit(7 + 3 / 12, "feet"),
  26710. weight: math.unit(260, "lb"),
  26711. name: "Regular",
  26712. image: {
  26713. source: "./media/characters/wild/regular.svg",
  26714. extra: 97.45 / 92,
  26715. bottom: 6.8 / 104.3
  26716. }
  26717. },
  26718. biggums: {
  26719. height: math.unit(8 + 6 / 12, "feet"),
  26720. weight: math.unit(425, "lb"),
  26721. name: "Biggums",
  26722. image: {
  26723. source: "./media/characters/wild/biggums.svg",
  26724. extra: 97.45 / 92,
  26725. bottom: 7.5 / 132.34
  26726. }
  26727. },
  26728. mawRegular: {
  26729. height: math.unit(1.24, "feet"),
  26730. name: "Maw (Regular)",
  26731. image: {
  26732. source: "./media/characters/wild/maw.svg"
  26733. }
  26734. },
  26735. mawBiggums: {
  26736. height: math.unit(1.47, "feet"),
  26737. name: "Maw (Biggums)",
  26738. image: {
  26739. source: "./media/characters/wild/maw.svg"
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(7 + 3 / 12, "feet"),
  26747. default: true
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26753. {
  26754. front: {
  26755. height: math.unit(2.5, "meters"),
  26756. weight: math.unit(200, "kg"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/vidar/front.svg",
  26760. extra: 2994 / 2795,
  26761. bottom: 56 / 3061
  26762. }
  26763. },
  26764. back: {
  26765. height: math.unit(2.5, "meters"),
  26766. weight: math.unit(200, "kg"),
  26767. name: "Back",
  26768. image: {
  26769. source: "./media/characters/vidar/back.svg",
  26770. extra: 3131 / 2928,
  26771. bottom: 13.5 / 3141.5
  26772. }
  26773. },
  26774. feral: {
  26775. height: math.unit(2.5, "meters"),
  26776. weight: math.unit(2000, "kg"),
  26777. name: "Feral",
  26778. image: {
  26779. source: "./media/characters/vidar/feral.svg",
  26780. extra: 2790 / 1765,
  26781. bottom: 6 / 2796
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Normal",
  26788. height: math.unit(2.5, "meters"),
  26789. default: true
  26790. },
  26791. {
  26792. name: "Macro",
  26793. height: math.unit(100, "meters")
  26794. },
  26795. ]
  26796. ))
  26797. characterMakers.push(() => makeCharacter(
  26798. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26799. {
  26800. front: {
  26801. height: math.unit(5 + 9 / 12, "feet"),
  26802. weight: math.unit(120, "lb"),
  26803. name: "Front",
  26804. image: {
  26805. source: "./media/characters/ash/front.svg",
  26806. extra: 2189 / 1961,
  26807. bottom: 5.2 / 2194
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Normal",
  26814. height: math.unit(5 + 9 / 12, "feet"),
  26815. default: true
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26821. {
  26822. front: {
  26823. height: math.unit(9, "feet"),
  26824. weight: math.unit(10000, "lb"),
  26825. name: "Front",
  26826. image: {
  26827. source: "./media/characters/gygabite/front.svg",
  26828. bottom: 31.7 / 537.8,
  26829. extra: 505 / 370
  26830. }
  26831. },
  26832. },
  26833. [
  26834. {
  26835. name: "Normal",
  26836. height: math.unit(9, "feet"),
  26837. default: true
  26838. },
  26839. ]
  26840. ))
  26841. characterMakers.push(() => makeCharacter(
  26842. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26843. {
  26844. front: {
  26845. height: math.unit(12, "feet"),
  26846. weight: math.unit(35000, "lb"),
  26847. name: "Front",
  26848. image: {
  26849. source: "./media/characters/p0tat0/front.svg",
  26850. extra: 1065 / 921,
  26851. bottom: 55.7 / 1121.25
  26852. }
  26853. },
  26854. },
  26855. [
  26856. {
  26857. name: "Normal",
  26858. height: math.unit(12, "feet"),
  26859. default: true
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26865. {
  26866. side: {
  26867. height: math.unit(6.5, "feet"),
  26868. weight: math.unit(800, "lb"),
  26869. name: "Side",
  26870. image: {
  26871. source: "./media/characters/dusk/side.svg",
  26872. extra: 615 / 373,
  26873. bottom: 53 / 664
  26874. }
  26875. },
  26876. sitting: {
  26877. height: math.unit(7, "feet"),
  26878. weight: math.unit(800, "lb"),
  26879. name: "Sitting",
  26880. image: {
  26881. source: "./media/characters/dusk/sitting.svg",
  26882. extra: 753 / 425,
  26883. bottom: 33 / 774
  26884. }
  26885. },
  26886. head: {
  26887. height: math.unit(6.1, "feet"),
  26888. name: "Head",
  26889. image: {
  26890. source: "./media/characters/dusk/head.svg"
  26891. }
  26892. },
  26893. },
  26894. [
  26895. {
  26896. name: "Normal",
  26897. height: math.unit(7, "feet"),
  26898. default: true
  26899. },
  26900. ]
  26901. ))
  26902. characterMakers.push(() => makeCharacter(
  26903. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26904. {
  26905. front: {
  26906. height: math.unit(15, "feet"),
  26907. weight: math.unit(7000, "lb"),
  26908. name: "Front",
  26909. image: {
  26910. source: "./media/characters/jay-direwolf/front.svg",
  26911. extra: 1810 / 1732,
  26912. bottom: 66 / 1892
  26913. }
  26914. },
  26915. },
  26916. [
  26917. {
  26918. name: "Normal",
  26919. height: math.unit(15, "feet"),
  26920. default: true
  26921. },
  26922. ]
  26923. ))
  26924. characterMakers.push(() => makeCharacter(
  26925. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26926. {
  26927. front: {
  26928. height: math.unit(4 + 9 / 12, "feet"),
  26929. weight: math.unit(130, "lb"),
  26930. name: "Front",
  26931. image: {
  26932. source: "./media/characters/anchovie/front.svg",
  26933. extra: 382 / 350,
  26934. bottom: 25 / 409
  26935. }
  26936. },
  26937. back: {
  26938. height: math.unit(4 + 9 / 12, "feet"),
  26939. weight: math.unit(130, "lb"),
  26940. name: "Back",
  26941. image: {
  26942. source: "./media/characters/anchovie/back.svg",
  26943. extra: 385 / 352,
  26944. bottom: 16.6 / 402
  26945. }
  26946. },
  26947. frontDressed: {
  26948. height: math.unit(4 + 9 / 12, "feet"),
  26949. weight: math.unit(130, "lb"),
  26950. name: "Front (Dressed)",
  26951. image: {
  26952. source: "./media/characters/anchovie/front-dressed.svg",
  26953. extra: 382 / 350,
  26954. bottom: 25 / 409
  26955. }
  26956. },
  26957. backDressed: {
  26958. height: math.unit(4 + 9 / 12, "feet"),
  26959. weight: math.unit(130, "lb"),
  26960. name: "Back (Dressed)",
  26961. image: {
  26962. source: "./media/characters/anchovie/back-dressed.svg",
  26963. extra: 385 / 352,
  26964. bottom: 16.6 / 402
  26965. }
  26966. },
  26967. },
  26968. [
  26969. {
  26970. name: "Micro",
  26971. height: math.unit(6.4, "inches")
  26972. },
  26973. {
  26974. name: "Normal",
  26975. height: math.unit(4 + 9 / 12, "feet"),
  26976. default: true
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26982. {
  26983. front: {
  26984. height: math.unit(2, "meters"),
  26985. weight: math.unit(180, "lb"),
  26986. name: "Front",
  26987. image: {
  26988. source: "./media/characters/acidrenamon/front.svg",
  26989. extra: 987 / 890,
  26990. bottom: 22.8 / 1009
  26991. }
  26992. },
  26993. back: {
  26994. height: math.unit(2, "meters"),
  26995. weight: math.unit(180, "lb"),
  26996. name: "Back",
  26997. image: {
  26998. source: "./media/characters/acidrenamon/back.svg",
  26999. extra: 983 / 891,
  27000. bottom: 8.4 / 992
  27001. }
  27002. },
  27003. head: {
  27004. height: math.unit(1.92, "feet"),
  27005. name: "Head",
  27006. image: {
  27007. source: "./media/characters/acidrenamon/head.svg"
  27008. }
  27009. },
  27010. rump: {
  27011. height: math.unit(1.72, "feet"),
  27012. name: "Rump",
  27013. image: {
  27014. source: "./media/characters/acidrenamon/rump.svg"
  27015. }
  27016. },
  27017. tail: {
  27018. height: math.unit(4.2, "feet"),
  27019. name: "Tail",
  27020. image: {
  27021. source: "./media/characters/acidrenamon/tail.svg"
  27022. }
  27023. },
  27024. },
  27025. [
  27026. {
  27027. name: "Normal",
  27028. height: math.unit(2, "meters"),
  27029. default: true
  27030. },
  27031. {
  27032. name: "Minimacro",
  27033. height: math.unit(7, "meters")
  27034. },
  27035. {
  27036. name: "Macro",
  27037. height: math.unit(200, "meters")
  27038. },
  27039. {
  27040. name: "Gigamacro",
  27041. height: math.unit(0.2, "earths")
  27042. },
  27043. ]
  27044. ))
  27045. characterMakers.push(() => makeCharacter(
  27046. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27047. {
  27048. front: {
  27049. height: math.unit(6, "feet"),
  27050. weight: math.unit(150, "lb"),
  27051. name: "Front",
  27052. image: {
  27053. source: "./media/characters/kenzie-lee/front.svg",
  27054. extra: 1525 / 1465,
  27055. bottom: 45 / 1570
  27056. }
  27057. },
  27058. side: {
  27059. height: math.unit(6, "feet"),
  27060. weight: math.unit(150, "lb"),
  27061. name: "Side",
  27062. image: {
  27063. source: "./media/characters/kenzie-lee/side.svg",
  27064. extra: 5505 / 5383,
  27065. bottom: 60 / 5573
  27066. }
  27067. },
  27068. paw: {
  27069. height: math.unit(0.57, "feet"),
  27070. name: "Paw",
  27071. image: {
  27072. source: "./media/characters/kenzie-lee/paw.svg"
  27073. }
  27074. },
  27075. },
  27076. [
  27077. {
  27078. name: "Normal",
  27079. height: math.unit(152, "feet"),
  27080. default: true
  27081. },
  27082. {
  27083. name: "Megamacro",
  27084. height: math.unit(7, "miles")
  27085. },
  27086. {
  27087. name: "Gigamacro",
  27088. height: math.unit(8000, "miles")
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27094. {
  27095. side: {
  27096. height: math.unit(6, "feet"),
  27097. weight: math.unit(150, "lb"),
  27098. name: "Side",
  27099. image: {
  27100. source: "./media/characters/withers/side.svg",
  27101. extra: 1830 / 1728,
  27102. bottom: 96 / 1927
  27103. }
  27104. },
  27105. front: {
  27106. height: math.unit(6, "feet"),
  27107. weight: math.unit(150, "lb"),
  27108. name: "Front",
  27109. image: {
  27110. source: "./media/characters/withers/front.svg",
  27111. extra: 1514 / 1438,
  27112. bottom: 118 / 1632
  27113. }
  27114. },
  27115. },
  27116. [
  27117. {
  27118. name: "Macro",
  27119. height: math.unit(168, "feet"),
  27120. default: true
  27121. },
  27122. {
  27123. name: "Megamacro",
  27124. height: math.unit(15, "miles")
  27125. }
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27130. {
  27131. front: {
  27132. height: math.unit(6 + 7 / 12, "feet"),
  27133. weight: math.unit(250, "lb"),
  27134. name: "Front",
  27135. image: {
  27136. source: "./media/characters/nemoskii/front.svg",
  27137. extra: 2270 / 1734,
  27138. bottom: 86 / 2354
  27139. }
  27140. },
  27141. back: {
  27142. height: math.unit(6 + 7 / 12, "feet"),
  27143. weight: math.unit(250, "lb"),
  27144. name: "Back",
  27145. image: {
  27146. source: "./media/characters/nemoskii/back.svg",
  27147. extra: 1845 / 1788,
  27148. bottom: 10.5 / 1852
  27149. }
  27150. },
  27151. head: {
  27152. height: math.unit(1.31, "feet"),
  27153. name: "Head",
  27154. image: {
  27155. source: "./media/characters/nemoskii/head.svg"
  27156. }
  27157. },
  27158. },
  27159. [
  27160. {
  27161. name: "Micro",
  27162. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27163. },
  27164. {
  27165. name: "Normal",
  27166. height: math.unit(6 + 7 / 12, "feet"),
  27167. default: true
  27168. },
  27169. {
  27170. name: "Macro",
  27171. height: math.unit((6 + 7 / 12) * 150, "feet")
  27172. },
  27173. {
  27174. name: "Macro+",
  27175. height: math.unit((6 + 7 / 12) * 500, "feet")
  27176. },
  27177. {
  27178. name: "Megamacro",
  27179. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27180. },
  27181. ]
  27182. ))
  27183. characterMakers.push(() => makeCharacter(
  27184. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27185. {
  27186. front: {
  27187. height: math.unit(1, "mile"),
  27188. weight: math.unit(265261.9, "lb"),
  27189. name: "Front",
  27190. image: {
  27191. source: "./media/characters/shui/front.svg",
  27192. extra: 1633 / 1564,
  27193. bottom: 91.5 / 1726
  27194. }
  27195. },
  27196. },
  27197. [
  27198. {
  27199. name: "Macro",
  27200. height: math.unit(1, "mile"),
  27201. default: true
  27202. },
  27203. ]
  27204. ))
  27205. characterMakers.push(() => makeCharacter(
  27206. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27207. {
  27208. front: {
  27209. height: math.unit(12 + 6 / 12, "feet"),
  27210. weight: math.unit(1342, "lb"),
  27211. name: "Front",
  27212. image: {
  27213. source: "./media/characters/arokh-takakura/front.svg",
  27214. extra: 1089 / 1043,
  27215. bottom: 77.4 / 1176.7
  27216. }
  27217. },
  27218. back: {
  27219. height: math.unit(12 + 6 / 12, "feet"),
  27220. weight: math.unit(1342, "lb"),
  27221. name: "Back",
  27222. image: {
  27223. source: "./media/characters/arokh-takakura/back.svg",
  27224. extra: 1046 / 1019,
  27225. bottom: 102 / 1150
  27226. }
  27227. },
  27228. },
  27229. [
  27230. {
  27231. name: "Big",
  27232. height: math.unit(12 + 6 / 12, "feet"),
  27233. default: true
  27234. },
  27235. ]
  27236. ))
  27237. characterMakers.push(() => makeCharacter(
  27238. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27239. {
  27240. front: {
  27241. height: math.unit(5 + 6 / 12, "feet"),
  27242. weight: math.unit(150, "lb"),
  27243. name: "Front",
  27244. image: {
  27245. source: "./media/characters/theo/front.svg",
  27246. extra: 1184 / 1131,
  27247. bottom: 7.4 / 1191
  27248. }
  27249. },
  27250. },
  27251. [
  27252. {
  27253. name: "Micro",
  27254. height: math.unit(5, "inches")
  27255. },
  27256. {
  27257. name: "Normal",
  27258. height: math.unit(5 + 6 / 12, "feet"),
  27259. default: true
  27260. },
  27261. ]
  27262. ))
  27263. characterMakers.push(() => makeCharacter(
  27264. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27265. {
  27266. front: {
  27267. height: math.unit(5 + 9 / 12, "feet"),
  27268. weight: math.unit(130, "lb"),
  27269. name: "Front",
  27270. image: {
  27271. source: "./media/characters/cecelia-swift/front.svg",
  27272. extra: 502 / 484,
  27273. bottom: 23 / 523
  27274. }
  27275. },
  27276. back: {
  27277. height: math.unit(5 + 9 / 12, "feet"),
  27278. weight: math.unit(130, "lb"),
  27279. name: "Back",
  27280. image: {
  27281. source: "./media/characters/cecelia-swift/back.svg",
  27282. extra: 499 / 485,
  27283. bottom: 12 / 511
  27284. }
  27285. },
  27286. head: {
  27287. height: math.unit(0.90, "feet"),
  27288. name: "Head",
  27289. image: {
  27290. source: "./media/characters/cecelia-swift/head.svg"
  27291. }
  27292. },
  27293. rump: {
  27294. height: math.unit(1.75, "feet"),
  27295. name: "Rump",
  27296. image: {
  27297. source: "./media/characters/cecelia-swift/rump.svg"
  27298. }
  27299. },
  27300. },
  27301. [
  27302. {
  27303. name: "Normal",
  27304. height: math.unit(5 + 9 / 12, "feet"),
  27305. default: true
  27306. },
  27307. {
  27308. name: "Big",
  27309. height: math.unit(50, "feet")
  27310. },
  27311. {
  27312. name: "Macro",
  27313. height: math.unit(100, "feet")
  27314. },
  27315. {
  27316. name: "Macro+",
  27317. height: math.unit(500, "feet")
  27318. },
  27319. {
  27320. name: "Macro++",
  27321. height: math.unit(1000, "feet")
  27322. },
  27323. ]
  27324. ))
  27325. characterMakers.push(() => makeCharacter(
  27326. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27327. {
  27328. front: {
  27329. height: math.unit(6, "feet"),
  27330. weight: math.unit(150, "lb"),
  27331. name: "Front",
  27332. image: {
  27333. source: "./media/characters/kaunan/front.svg",
  27334. extra: 2890 / 2523,
  27335. bottom: 49 / 2939
  27336. }
  27337. },
  27338. },
  27339. [
  27340. {
  27341. name: "Macro",
  27342. height: math.unit(150, "feet"),
  27343. default: true
  27344. },
  27345. ]
  27346. ))
  27347. characterMakers.push(() => makeCharacter(
  27348. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27349. {
  27350. front: {
  27351. height: math.unit(175, "cm"),
  27352. weight: math.unit(60, "kg"),
  27353. name: "Front",
  27354. image: {
  27355. source: "./media/characters/fei/front.svg",
  27356. extra: 1873/1723,
  27357. bottom: 53/1926
  27358. }
  27359. },
  27360. },
  27361. [
  27362. {
  27363. name: "Mortal",
  27364. height: math.unit(175, "cm")
  27365. },
  27366. {
  27367. name: "Normal",
  27368. height: math.unit(3500, "m"),
  27369. default: true
  27370. },
  27371. {
  27372. name: "Stroll",
  27373. height: math.unit(17.5, "km")
  27374. },
  27375. {
  27376. name: "Showoff",
  27377. height: math.unit(175, "km")
  27378. },
  27379. ]
  27380. ))
  27381. characterMakers.push(() => makeCharacter(
  27382. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27383. {
  27384. front: {
  27385. height: math.unit(7, "feet"),
  27386. weight: math.unit(1000, "kg"),
  27387. name: "Front",
  27388. image: {
  27389. source: "./media/characters/edrax/front.svg",
  27390. extra: 2838 / 2550,
  27391. bottom: 130 / 2968
  27392. }
  27393. },
  27394. },
  27395. [
  27396. {
  27397. name: "Small",
  27398. height: math.unit(7, "feet")
  27399. },
  27400. {
  27401. name: "Normal",
  27402. height: math.unit(1500, "meters")
  27403. },
  27404. {
  27405. name: "Mega",
  27406. height: math.unit(12000000, "km"),
  27407. default: true
  27408. },
  27409. {
  27410. name: "Megamacro",
  27411. height: math.unit(10600000, "lightyears")
  27412. },
  27413. {
  27414. name: "Hypermacro",
  27415. height: math.unit(256, "yottameters")
  27416. },
  27417. ]
  27418. ))
  27419. characterMakers.push(() => makeCharacter(
  27420. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27421. {
  27422. front: {
  27423. height: math.unit(10, "feet"),
  27424. weight: math.unit(750, "lb"),
  27425. name: "Front",
  27426. image: {
  27427. source: "./media/characters/clove/front.svg",
  27428. extra: 2031 / 1860,
  27429. bottom: 47.8 / 2080
  27430. }
  27431. },
  27432. back: {
  27433. height: math.unit(10, "feet"),
  27434. weight: math.unit(750, "lb"),
  27435. name: "Back",
  27436. image: {
  27437. source: "./media/characters/clove/back.svg",
  27438. extra: 2025 / 1859,
  27439. bottom: 46 / 2071
  27440. }
  27441. },
  27442. },
  27443. [
  27444. {
  27445. name: "Normal",
  27446. height: math.unit(10, "feet"),
  27447. default: true
  27448. },
  27449. ]
  27450. ))
  27451. characterMakers.push(() => makeCharacter(
  27452. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27453. {
  27454. front: {
  27455. height: math.unit(4, "feet"),
  27456. weight: math.unit(50, "lb"),
  27457. name: "Front",
  27458. image: {
  27459. source: "./media/characters/alex-rabbit/front.svg",
  27460. extra: 507 / 458,
  27461. bottom: 18.5 / 527
  27462. }
  27463. },
  27464. back: {
  27465. height: math.unit(4, "feet"),
  27466. weight: math.unit(50, "lb"),
  27467. name: "Back",
  27468. image: {
  27469. source: "./media/characters/alex-rabbit/back.svg",
  27470. extra: 502 / 460,
  27471. bottom: 18.9 / 521
  27472. }
  27473. },
  27474. },
  27475. [
  27476. {
  27477. name: "Normal",
  27478. height: math.unit(4, "feet"),
  27479. default: true
  27480. },
  27481. ]
  27482. ))
  27483. characterMakers.push(() => makeCharacter(
  27484. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27485. {
  27486. front: {
  27487. height: math.unit(1 + 3 / 12, "feet"),
  27488. weight: math.unit(80, "lb"),
  27489. name: "Front",
  27490. image: {
  27491. source: "./media/characters/zander-rose/front.svg",
  27492. extra: 916 / 797,
  27493. bottom: 17 / 933
  27494. }
  27495. },
  27496. back: {
  27497. height: math.unit(1 + 3 / 12, "feet"),
  27498. weight: math.unit(80, "lb"),
  27499. name: "Back",
  27500. image: {
  27501. source: "./media/characters/zander-rose/back.svg",
  27502. extra: 903 / 779,
  27503. bottom: 31 / 934
  27504. }
  27505. },
  27506. },
  27507. [
  27508. {
  27509. name: "Normal",
  27510. height: math.unit(1 + 3 / 12, "feet"),
  27511. default: true
  27512. },
  27513. ]
  27514. ))
  27515. characterMakers.push(() => makeCharacter(
  27516. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27517. {
  27518. anthro: {
  27519. height: math.unit(6, "feet"),
  27520. weight: math.unit(150, "lb"),
  27521. name: "Anthro",
  27522. image: {
  27523. source: "./media/characters/razz/anthro.svg",
  27524. extra: 1437 / 1343,
  27525. bottom: 48 / 1485
  27526. }
  27527. },
  27528. feral: {
  27529. height: math.unit(6, "feet"),
  27530. weight: math.unit(150, "lb"),
  27531. name: "Feral",
  27532. image: {
  27533. source: "./media/characters/razz/feral.svg",
  27534. extra: 2569 / 1385,
  27535. bottom: 95 / 2664
  27536. }
  27537. },
  27538. },
  27539. [
  27540. {
  27541. name: "Normal",
  27542. height: math.unit(6, "feet"),
  27543. default: true
  27544. },
  27545. ]
  27546. ))
  27547. characterMakers.push(() => makeCharacter(
  27548. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27549. {
  27550. front: {
  27551. height: math.unit(9 + 4 / 12, "feet"),
  27552. weight: math.unit(500, "lb"),
  27553. name: "Front",
  27554. image: {
  27555. source: "./media/characters/morrigan/front.svg",
  27556. extra: 2707 / 2579,
  27557. bottom: 156 / 2863
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Normal",
  27564. height: math.unit(9 + 4 / 12, "feet"),
  27565. default: true
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27571. {
  27572. front: {
  27573. height: math.unit(5, "stories"),
  27574. weight: math.unit(4000, "lb"),
  27575. name: "Front",
  27576. image: {
  27577. source: "./media/characters/jenene/front.svg",
  27578. extra: 1780 / 1710,
  27579. bottom: 57 / 1837
  27580. }
  27581. },
  27582. },
  27583. [
  27584. {
  27585. name: "Normal",
  27586. height: math.unit(5, "stories"),
  27587. default: true
  27588. },
  27589. ]
  27590. ))
  27591. characterMakers.push(() => makeCharacter(
  27592. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27593. {
  27594. front: {
  27595. height: math.unit(6, "feet"),
  27596. weight: math.unit(150, "lb"),
  27597. name: "Front",
  27598. image: {
  27599. source: "./media/characters/vix-archaser/front.svg",
  27600. extra: 2767 / 2562,
  27601. bottom: 36 / 2803
  27602. }
  27603. },
  27604. },
  27605. [
  27606. {
  27607. name: "Micro",
  27608. height: math.unit(1, "foot")
  27609. },
  27610. {
  27611. name: "Normal",
  27612. height: math.unit(6 + 5 / 12, "feet")
  27613. },
  27614. {
  27615. name: "Minimacro",
  27616. height: math.unit(500, "feet")
  27617. },
  27618. {
  27619. name: "Macro",
  27620. height: math.unit(4, "miles")
  27621. },
  27622. {
  27623. name: "Megamacro",
  27624. height: math.unit(250, "miles"),
  27625. default: true
  27626. },
  27627. {
  27628. name: "Gigamacro",
  27629. height: math.unit(1, "universe")
  27630. },
  27631. {
  27632. name: "Endgame",
  27633. height: math.unit(100, "multiverses")
  27634. }
  27635. ]
  27636. ))
  27637. characterMakers.push(() => makeCharacter(
  27638. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27639. {
  27640. taurSfw: {
  27641. height: math.unit(10, "meters"),
  27642. weight: math.unit(17500, "kg"),
  27643. name: "Taur",
  27644. image: {
  27645. source: "./media/characters/faey/taur-sfw.svg",
  27646. extra: 1200 / 968,
  27647. bottom: 41 / 1241
  27648. }
  27649. },
  27650. chestmaw: {
  27651. height: math.unit(2.01, "meters"),
  27652. name: "Chestmaw",
  27653. image: {
  27654. source: "./media/characters/faey/chestmaw.svg"
  27655. }
  27656. },
  27657. foot: {
  27658. height: math.unit(2.43, "meters"),
  27659. name: "Foot",
  27660. image: {
  27661. source: "./media/characters/faey/foot.svg"
  27662. }
  27663. },
  27664. jaws: {
  27665. height: math.unit(1.66, "meters"),
  27666. name: "Jaws",
  27667. image: {
  27668. source: "./media/characters/faey/jaws.svg"
  27669. }
  27670. },
  27671. tongues: {
  27672. height: math.unit(2.01, "meters"),
  27673. name: "Tongues",
  27674. image: {
  27675. source: "./media/characters/faey/tongues.svg"
  27676. }
  27677. },
  27678. },
  27679. [
  27680. {
  27681. name: "Small",
  27682. height: math.unit(10, "meters"),
  27683. default: true
  27684. },
  27685. {
  27686. name: "Big",
  27687. height: math.unit(500000, "km")
  27688. },
  27689. ]
  27690. ))
  27691. characterMakers.push(() => makeCharacter(
  27692. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27693. {
  27694. front: {
  27695. height: math.unit(7, "feet"),
  27696. weight: math.unit(275, "lb"),
  27697. name: "Front",
  27698. image: {
  27699. source: "./media/characters/roku/front.svg",
  27700. extra: 903 / 878,
  27701. bottom: 37 / 940
  27702. }
  27703. },
  27704. },
  27705. [
  27706. {
  27707. name: "Normal",
  27708. height: math.unit(7, "feet"),
  27709. default: true
  27710. },
  27711. {
  27712. name: "Macro",
  27713. height: math.unit(500, "feet")
  27714. },
  27715. {
  27716. name: "Megamacro",
  27717. height: math.unit(200, "miles")
  27718. },
  27719. ]
  27720. ))
  27721. characterMakers.push(() => makeCharacter(
  27722. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27723. {
  27724. front: {
  27725. height: math.unit(6 + 2 / 12, "feet"),
  27726. weight: math.unit(150, "lb"),
  27727. name: "Front",
  27728. image: {
  27729. source: "./media/characters/lira/front.svg",
  27730. extra: 1727 / 1605,
  27731. bottom: 26 / 1753
  27732. }
  27733. },
  27734. back: {
  27735. height: math.unit(6 + 2 / 12, "feet"),
  27736. weight: math.unit(150, "lb"),
  27737. name: "Back",
  27738. image: {
  27739. source: "./media/characters/lira/back.svg",
  27740. extra: 1713/1621,
  27741. bottom: 20/1733
  27742. }
  27743. },
  27744. hand: {
  27745. height: math.unit(0.75, "feet"),
  27746. name: "Hand",
  27747. image: {
  27748. source: "./media/characters/lira/hand.svg"
  27749. }
  27750. },
  27751. maw: {
  27752. height: math.unit(0.65, "feet"),
  27753. name: "Maw",
  27754. image: {
  27755. source: "./media/characters/lira/maw.svg"
  27756. }
  27757. },
  27758. pawDigi: {
  27759. height: math.unit(1.6, "feet"),
  27760. name: "Paw Digi",
  27761. image: {
  27762. source: "./media/characters/lira/paw-digi.svg"
  27763. }
  27764. },
  27765. pawPlanti: {
  27766. height: math.unit(1.4, "feet"),
  27767. name: "Paw Planti",
  27768. image: {
  27769. source: "./media/characters/lira/paw-planti.svg"
  27770. }
  27771. },
  27772. },
  27773. [
  27774. {
  27775. name: "Normal",
  27776. height: math.unit(6 + 2 / 12, "feet"),
  27777. default: true
  27778. },
  27779. {
  27780. name: "Macro",
  27781. height: math.unit(100, "feet")
  27782. },
  27783. {
  27784. name: "Macro²",
  27785. height: math.unit(1600, "feet")
  27786. },
  27787. {
  27788. name: "Planetary",
  27789. height: math.unit(20, "earths")
  27790. },
  27791. ]
  27792. ))
  27793. characterMakers.push(() => makeCharacter(
  27794. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27795. {
  27796. front: {
  27797. height: math.unit(6, "feet"),
  27798. weight: math.unit(150, "lb"),
  27799. name: "Front",
  27800. image: {
  27801. source: "./media/characters/hadjet/front.svg",
  27802. extra: 1480 / 1346,
  27803. bottom: 26 / 1506
  27804. }
  27805. },
  27806. frontNsfw: {
  27807. height: math.unit(6, "feet"),
  27808. weight: math.unit(150, "lb"),
  27809. name: "Front (NSFW)",
  27810. image: {
  27811. source: "./media/characters/hadjet/front-nsfw.svg",
  27812. extra: 1440 / 1358,
  27813. bottom: 52 / 1492
  27814. }
  27815. },
  27816. },
  27817. [
  27818. {
  27819. name: "Macro",
  27820. height: math.unit(10, "stories"),
  27821. default: true
  27822. },
  27823. {
  27824. name: "Megamacro",
  27825. height: math.unit(1.5, "miles")
  27826. },
  27827. {
  27828. name: "Megamacro+",
  27829. height: math.unit(5, "miles")
  27830. },
  27831. ]
  27832. ))
  27833. characterMakers.push(() => makeCharacter(
  27834. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27835. {
  27836. side: {
  27837. height: math.unit(106, "feet"),
  27838. weight: math.unit(500, "tonnes"),
  27839. name: "Side",
  27840. image: {
  27841. source: "./media/characters/kodran/side.svg",
  27842. extra: 553 / 480,
  27843. bottom: 33 / 586
  27844. }
  27845. },
  27846. front: {
  27847. height: math.unit(132, "feet"),
  27848. weight: math.unit(500, "tonnes"),
  27849. name: "Front",
  27850. image: {
  27851. source: "./media/characters/kodran/front.svg",
  27852. extra: 667 / 643,
  27853. bottom: 42 / 709
  27854. }
  27855. },
  27856. flying: {
  27857. height: math.unit(350, "feet"),
  27858. weight: math.unit(500, "tonnes"),
  27859. name: "Flying",
  27860. image: {
  27861. source: "./media/characters/kodran/flying.svg"
  27862. }
  27863. },
  27864. foot: {
  27865. height: math.unit(33, "feet"),
  27866. name: "Foot",
  27867. image: {
  27868. source: "./media/characters/kodran/foot.svg"
  27869. }
  27870. },
  27871. footFront: {
  27872. height: math.unit(19, "feet"),
  27873. name: "Foot (Front)",
  27874. image: {
  27875. source: "./media/characters/kodran/foot-front.svg",
  27876. extra: 261 / 261,
  27877. bottom: 91 / 352
  27878. }
  27879. },
  27880. headFront: {
  27881. height: math.unit(53, "feet"),
  27882. name: "Head (Front)",
  27883. image: {
  27884. source: "./media/characters/kodran/head-front.svg"
  27885. }
  27886. },
  27887. headSide: {
  27888. height: math.unit(65, "feet"),
  27889. name: "Head (Side)",
  27890. image: {
  27891. source: "./media/characters/kodran/head-side.svg"
  27892. }
  27893. },
  27894. throat: {
  27895. height: math.unit(79, "feet"),
  27896. name: "Throat",
  27897. image: {
  27898. source: "./media/characters/kodran/throat.svg"
  27899. }
  27900. },
  27901. },
  27902. [
  27903. {
  27904. name: "Large",
  27905. height: math.unit(106, "feet"),
  27906. default: true
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27912. {
  27913. side: {
  27914. height: math.unit(11, "feet"),
  27915. weight: math.unit(150, "lb"),
  27916. name: "Side",
  27917. image: {
  27918. source: "./media/characters/pyxaron/side.svg",
  27919. extra: 305 / 195,
  27920. bottom: 17 / 322
  27921. }
  27922. },
  27923. },
  27924. [
  27925. {
  27926. name: "Normal",
  27927. height: math.unit(11, "feet"),
  27928. default: true
  27929. },
  27930. ]
  27931. ))
  27932. characterMakers.push(() => makeCharacter(
  27933. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27934. {
  27935. front: {
  27936. height: math.unit(6, "feet"),
  27937. weight: math.unit(150, "lb"),
  27938. name: "Front",
  27939. image: {
  27940. source: "./media/characters/meep/front.svg",
  27941. extra: 88 / 80,
  27942. bottom: 6 / 94
  27943. }
  27944. },
  27945. },
  27946. [
  27947. {
  27948. name: "Fun Sized",
  27949. height: math.unit(2, "inches"),
  27950. default: true
  27951. },
  27952. {
  27953. name: "Friend Sized",
  27954. height: math.unit(8, "inches")
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27960. {
  27961. front: {
  27962. height: math.unit(15, "feet"),
  27963. weight: math.unit(2500, "lb"),
  27964. name: "Front",
  27965. image: {
  27966. source: "./media/characters/holly-rabbit/front.svg",
  27967. extra: 1433 / 1233,
  27968. bottom: 125 / 1558
  27969. }
  27970. },
  27971. dick: {
  27972. height: math.unit(4.6, "feet"),
  27973. name: "Dick",
  27974. image: {
  27975. source: "./media/characters/holly-rabbit/dick.svg"
  27976. }
  27977. },
  27978. },
  27979. [
  27980. {
  27981. name: "Normal",
  27982. height: math.unit(15, "feet"),
  27983. default: true
  27984. },
  27985. {
  27986. name: "Macro",
  27987. height: math.unit(250, "feet")
  27988. },
  27989. {
  27990. name: "Macro+",
  27991. height: math.unit(2500, "feet")
  27992. },
  27993. ]
  27994. ))
  27995. characterMakers.push(() => makeCharacter(
  27996. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27997. {
  27998. front: {
  27999. height: math.unit(3.02, "meters"),
  28000. weight: math.unit(500, "kg"),
  28001. name: "Front",
  28002. image: {
  28003. source: "./media/characters/drena/front.svg",
  28004. extra: 282 / 243,
  28005. bottom: 8 / 290
  28006. }
  28007. },
  28008. side: {
  28009. height: math.unit(3.02, "meters"),
  28010. weight: math.unit(500, "kg"),
  28011. name: "Side",
  28012. image: {
  28013. source: "./media/characters/drena/side.svg",
  28014. extra: 280 / 245,
  28015. bottom: 10 / 290
  28016. }
  28017. },
  28018. back: {
  28019. height: math.unit(3.02, "meters"),
  28020. weight: math.unit(500, "kg"),
  28021. name: "Back",
  28022. image: {
  28023. source: "./media/characters/drena/back.svg",
  28024. extra: 278 / 243,
  28025. bottom: 2 / 280
  28026. }
  28027. },
  28028. foot: {
  28029. height: math.unit(0.75, "meters"),
  28030. name: "Foot",
  28031. image: {
  28032. source: "./media/characters/drena/foot.svg"
  28033. }
  28034. },
  28035. maw: {
  28036. height: math.unit(0.82, "meters"),
  28037. name: "Maw",
  28038. image: {
  28039. source: "./media/characters/drena/maw.svg"
  28040. }
  28041. },
  28042. rump: {
  28043. height: math.unit(0.93, "meters"),
  28044. name: "Rump",
  28045. image: {
  28046. source: "./media/characters/drena/rump.svg"
  28047. }
  28048. },
  28049. },
  28050. [
  28051. {
  28052. name: "Normal",
  28053. height: math.unit(3.02, "meters"),
  28054. default: true
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28060. {
  28061. front: {
  28062. height: math.unit(6 + 4 / 12, "feet"),
  28063. weight: math.unit(250, "lb"),
  28064. name: "Front",
  28065. image: {
  28066. source: "./media/characters/remmyzilla/front.svg",
  28067. extra: 4033 / 3588,
  28068. bottom: 123 / 4156
  28069. }
  28070. },
  28071. back: {
  28072. height: math.unit(6 + 4 / 12, "feet"),
  28073. weight: math.unit(250, "lb"),
  28074. name: "Back",
  28075. image: {
  28076. source: "./media/characters/remmyzilla/back.svg",
  28077. extra: 2687 / 2555,
  28078. bottom: 48 / 2735
  28079. }
  28080. },
  28081. frontFancy: {
  28082. height: math.unit(6 + 4 / 12, "feet"),
  28083. weight: math.unit(250, "lb"),
  28084. name: "Front (Fancy)",
  28085. image: {
  28086. source: "./media/characters/remmyzilla/front-fancy.svg",
  28087. extra: 4119 / 3419,
  28088. bottom: 237 / 4356
  28089. }
  28090. },
  28091. paw: {
  28092. height: math.unit(1.73, "feet"),
  28093. name: "Paw",
  28094. image: {
  28095. source: "./media/characters/remmyzilla/paw.svg"
  28096. }
  28097. },
  28098. maw: {
  28099. height: math.unit(1.73, "feet"),
  28100. name: "Maw",
  28101. image: {
  28102. source: "./media/characters/remmyzilla/maw.svg"
  28103. }
  28104. },
  28105. },
  28106. [
  28107. {
  28108. name: "Normal",
  28109. height: math.unit(6 + 4 / 12, "feet")
  28110. },
  28111. {
  28112. name: "Minimacro",
  28113. height: math.unit(12 + 8 / 12, "feet")
  28114. },
  28115. {
  28116. name: "Normal",
  28117. height: math.unit(640, "feet"),
  28118. default: true
  28119. },
  28120. {
  28121. name: "Megamacro",
  28122. height: math.unit(6400, "feet")
  28123. },
  28124. {
  28125. name: "Gigamacro",
  28126. height: math.unit(64000, "miles")
  28127. },
  28128. ]
  28129. ))
  28130. characterMakers.push(() => makeCharacter(
  28131. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28132. {
  28133. front: {
  28134. height: math.unit(2.5, "meters"),
  28135. weight: math.unit(300, "lb"),
  28136. name: "Front",
  28137. image: {
  28138. source: "./media/characters/lawrence/front.svg",
  28139. extra: 357 / 335,
  28140. bottom: 30 / 387
  28141. }
  28142. },
  28143. back: {
  28144. height: math.unit(2.5, "meters"),
  28145. weight: math.unit(300, "lb"),
  28146. name: "Back",
  28147. image: {
  28148. source: "./media/characters/lawrence/back.svg",
  28149. extra: 357 / 338,
  28150. bottom: 16 / 373
  28151. }
  28152. },
  28153. head: {
  28154. height: math.unit(0.9, "meter"),
  28155. name: "Head",
  28156. image: {
  28157. source: "./media/characters/lawrence/head.svg"
  28158. }
  28159. },
  28160. maw: {
  28161. height: math.unit(0.7, "meter"),
  28162. name: "Maw",
  28163. image: {
  28164. source: "./media/characters/lawrence/maw.svg"
  28165. }
  28166. },
  28167. footBottom: {
  28168. height: math.unit(0.5, "meter"),
  28169. name: "Foot (Bottom)",
  28170. image: {
  28171. source: "./media/characters/lawrence/foot-bottom.svg"
  28172. }
  28173. },
  28174. footTop: {
  28175. height: math.unit(0.5, "meter"),
  28176. name: "Foot (Top)",
  28177. image: {
  28178. source: "./media/characters/lawrence/foot-top.svg"
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(2.5, "meters"),
  28186. default: true
  28187. },
  28188. {
  28189. name: "Macro",
  28190. height: math.unit(95, "meters")
  28191. },
  28192. {
  28193. name: "Megamacro",
  28194. height: math.unit(150, "km")
  28195. },
  28196. ]
  28197. ))
  28198. characterMakers.push(() => makeCharacter(
  28199. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28200. {
  28201. front: {
  28202. height: math.unit(4.2, "meters"),
  28203. name: "Front",
  28204. image: {
  28205. source: "./media/characters/sydney/front.svg",
  28206. extra: 1323 / 1277,
  28207. bottom: 111 / 1434
  28208. }
  28209. },
  28210. },
  28211. [
  28212. {
  28213. name: "Normal",
  28214. height: math.unit(4.2, "meters"),
  28215. default: true
  28216. },
  28217. ]
  28218. ))
  28219. characterMakers.push(() => makeCharacter(
  28220. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28221. {
  28222. back: {
  28223. height: math.unit(201, "feet"),
  28224. name: "Back",
  28225. image: {
  28226. source: "./media/characters/jessica/back.svg",
  28227. extra: 273 / 259,
  28228. bottom: 7 / 280
  28229. }
  28230. },
  28231. },
  28232. [
  28233. {
  28234. name: "Normal",
  28235. height: math.unit(201, "feet"),
  28236. default: true
  28237. },
  28238. {
  28239. name: "Megamacro",
  28240. height: math.unit(8, "miles")
  28241. },
  28242. ]
  28243. ))
  28244. characterMakers.push(() => makeCharacter(
  28245. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28246. {
  28247. side: {
  28248. height: math.unit(320, "cm"),
  28249. name: "Side",
  28250. image: {
  28251. source: "./media/characters/victoria/side.svg",
  28252. extra: 778 / 346,
  28253. bottom: 56 / 834
  28254. }
  28255. },
  28256. maw: {
  28257. height: math.unit(5.9, "feet"),
  28258. name: "Maw",
  28259. image: {
  28260. source: "./media/characters/victoria/maw.svg"
  28261. }
  28262. },
  28263. },
  28264. [
  28265. {
  28266. name: "Normal",
  28267. height: math.unit(320, "cm"),
  28268. default: true
  28269. },
  28270. ]
  28271. ))
  28272. characterMakers.push(() => makeCharacter(
  28273. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28274. {
  28275. front: {
  28276. height: math.unit(5 + 6 / 12, "feet"),
  28277. name: "Front",
  28278. image: {
  28279. source: "./media/characters/cat/front.svg",
  28280. extra: 1374 / 1257,
  28281. bottom: 59 / 1433
  28282. }
  28283. },
  28284. back: {
  28285. height: math.unit(5 + 6 / 12, "feet"),
  28286. name: "Back",
  28287. image: {
  28288. source: "./media/characters/cat/back.svg",
  28289. extra: 1337 / 1226,
  28290. bottom: 34 / 1371
  28291. }
  28292. },
  28293. taur: {
  28294. height: math.unit(7, "feet"),
  28295. name: "Taur",
  28296. image: {
  28297. source: "./media/characters/cat/taur.svg",
  28298. extra: 1345 / 1231,
  28299. bottom: 66 / 1411
  28300. }
  28301. },
  28302. lucario: {
  28303. height: math.unit(4, "feet"),
  28304. name: "Lucario",
  28305. image: {
  28306. source: "./media/characters/cat/lucario.svg",
  28307. extra: 1470 / 1318,
  28308. bottom: 65 / 1535
  28309. }
  28310. },
  28311. megaLucario: {
  28312. height: math.unit(4, "feet"),
  28313. name: "Mega Lucario",
  28314. image: {
  28315. source: "./media/characters/cat/mega-lucario.svg",
  28316. extra: 1515 / 1319,
  28317. bottom: 63 / 1578
  28318. }
  28319. },
  28320. nickit: {
  28321. height: math.unit(2, "feet"),
  28322. name: "Nickit",
  28323. image: {
  28324. source: "./media/characters/cat/nickit.svg",
  28325. extra: 1980 / 1585,
  28326. bottom: 102 / 2082
  28327. }
  28328. },
  28329. lopunnyFront: {
  28330. height: math.unit(5, "feet"),
  28331. name: "Lopunny (Front)",
  28332. image: {
  28333. source: "./media/characters/cat/lopunny-front.svg",
  28334. extra: 1782 / 1469,
  28335. bottom: 38 / 1820
  28336. }
  28337. },
  28338. lopunnyBack: {
  28339. height: math.unit(5, "feet"),
  28340. name: "Lopunny (Back)",
  28341. image: {
  28342. source: "./media/characters/cat/lopunny-back.svg",
  28343. extra: 1660 / 1490,
  28344. bottom: 25 / 1685
  28345. }
  28346. },
  28347. },
  28348. [
  28349. {
  28350. name: "Really small",
  28351. height: math.unit(1, "nm")
  28352. },
  28353. {
  28354. name: "Micro",
  28355. height: math.unit(5, "inches")
  28356. },
  28357. {
  28358. name: "Normal",
  28359. height: math.unit(5 + 6 / 12, "feet"),
  28360. default: true
  28361. },
  28362. {
  28363. name: "Macro",
  28364. height: math.unit(50, "feet")
  28365. },
  28366. {
  28367. name: "Macro+",
  28368. height: math.unit(150, "feet")
  28369. },
  28370. {
  28371. name: "Megamacro",
  28372. height: math.unit(100, "miles")
  28373. },
  28374. ]
  28375. ))
  28376. characterMakers.push(() => makeCharacter(
  28377. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28378. {
  28379. front: {
  28380. height: math.unit(63.4, "meters"),
  28381. weight: math.unit(3.28349e+6, "kilograms"),
  28382. name: "Front",
  28383. image: {
  28384. source: "./media/characters/kirina-violet/front.svg",
  28385. extra: 2812 / 2725,
  28386. bottom: 0 / 2812
  28387. }
  28388. },
  28389. back: {
  28390. height: math.unit(63.4, "meters"),
  28391. weight: math.unit(3.28349e+6, "kilograms"),
  28392. name: "Back",
  28393. image: {
  28394. source: "./media/characters/kirina-violet/back.svg",
  28395. extra: 2812 / 2725,
  28396. bottom: 0 / 2812
  28397. }
  28398. },
  28399. mouth: {
  28400. height: math.unit(4.35, "meters"),
  28401. name: "Mouth",
  28402. image: {
  28403. source: "./media/characters/kirina-violet/mouth.svg"
  28404. }
  28405. },
  28406. paw: {
  28407. height: math.unit(5.6, "meters"),
  28408. name: "Paw",
  28409. image: {
  28410. source: "./media/characters/kirina-violet/paw.svg"
  28411. }
  28412. },
  28413. tail: {
  28414. height: math.unit(18, "meters"),
  28415. name: "Tail",
  28416. image: {
  28417. source: "./media/characters/kirina-violet/tail.svg"
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Macro",
  28424. height: math.unit(63.4, "meters"),
  28425. default: true
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28431. {
  28432. front: {
  28433. height: math.unit(75, "feet"),
  28434. name: "Front",
  28435. image: {
  28436. source: "./media/characters/cat-gigachu/front.svg",
  28437. extra: 1239/1027,
  28438. bottom: 32/1271
  28439. }
  28440. },
  28441. back: {
  28442. height: math.unit(75, "feet"),
  28443. name: "Back",
  28444. image: {
  28445. source: "./media/characters/cat-gigachu/back.svg",
  28446. extra: 1229/1030,
  28447. bottom: 9/1238
  28448. }
  28449. },
  28450. },
  28451. [
  28452. {
  28453. name: "Dynamax",
  28454. height: math.unit(75, "feet"),
  28455. default: true
  28456. },
  28457. ]
  28458. ))
  28459. characterMakers.push(() => makeCharacter(
  28460. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28461. {
  28462. front: {
  28463. height: math.unit(6, "feet"),
  28464. weight: math.unit(150, "lb"),
  28465. name: "Front",
  28466. image: {
  28467. source: "./media/characters/sfaiyan/front.svg",
  28468. extra: 999 / 978,
  28469. bottom: 5 / 1004
  28470. }
  28471. },
  28472. },
  28473. [
  28474. {
  28475. name: "Normal",
  28476. height: math.unit(1.82, "meters")
  28477. },
  28478. {
  28479. name: "Giant",
  28480. height: math.unit(2.27, "km"),
  28481. default: true
  28482. },
  28483. ]
  28484. ))
  28485. characterMakers.push(() => makeCharacter(
  28486. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28487. {
  28488. front: {
  28489. height: math.unit(179, "cm"),
  28490. weight: math.unit(100, "kg"),
  28491. name: "Front",
  28492. image: {
  28493. source: "./media/characters/raunehkeli/front.svg",
  28494. extra: 1934 / 1926,
  28495. bottom: 0 / 1934
  28496. }
  28497. },
  28498. },
  28499. [
  28500. {
  28501. name: "Normal",
  28502. height: math.unit(179, "cm")
  28503. },
  28504. {
  28505. name: "Maximum",
  28506. height: math.unit(575, "meters"),
  28507. default: true
  28508. },
  28509. ]
  28510. ))
  28511. characterMakers.push(() => makeCharacter(
  28512. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28513. {
  28514. front: {
  28515. height: math.unit(6, "feet"),
  28516. weight: math.unit(150, "lb"),
  28517. name: "Front",
  28518. image: {
  28519. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28520. extra: 2625 / 2518,
  28521. bottom: 60 / 2685
  28522. }
  28523. },
  28524. },
  28525. [
  28526. {
  28527. name: "Normal",
  28528. height: math.unit(6 + 2 / 12, "feet")
  28529. },
  28530. {
  28531. name: "Macro",
  28532. height: math.unit(1180, "feet"),
  28533. default: true
  28534. },
  28535. ]
  28536. ))
  28537. characterMakers.push(() => makeCharacter(
  28538. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28539. {
  28540. front: {
  28541. height: math.unit(5 + 6 / 12, "feet"),
  28542. weight: math.unit(108, "lb"),
  28543. name: "Front",
  28544. image: {
  28545. source: "./media/characters/lilith-zott/front.svg",
  28546. extra: 2510 / 2238,
  28547. bottom: 100 / 2610
  28548. }
  28549. },
  28550. frontDressed: {
  28551. height: math.unit(5 + 6 / 12, "feet"),
  28552. weight: math.unit(108, "lb"),
  28553. name: "Front (Dressed)",
  28554. image: {
  28555. source: "./media/characters/lilith-zott/front-dressed.svg",
  28556. extra: 2510 / 2238,
  28557. bottom: 100 / 2610
  28558. }
  28559. },
  28560. },
  28561. [
  28562. {
  28563. name: "Normal",
  28564. height: math.unit(5 + 6 / 12, "feet")
  28565. },
  28566. {
  28567. name: "Macro",
  28568. height: math.unit(1030, "feet"),
  28569. default: true
  28570. },
  28571. ]
  28572. ))
  28573. characterMakers.push(() => makeCharacter(
  28574. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28575. {
  28576. front: {
  28577. height: math.unit(6, "feet"),
  28578. weight: math.unit(150, "lb"),
  28579. name: "Front",
  28580. image: {
  28581. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28582. extra: 2567 / 2435,
  28583. bottom: 39 / 2606
  28584. }
  28585. },
  28586. frontSuper: {
  28587. height: math.unit(6, "feet"),
  28588. name: "Front (Super)",
  28589. image: {
  28590. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28591. extra: 2567 / 2435,
  28592. bottom: 39 / 2606
  28593. }
  28594. },
  28595. },
  28596. [
  28597. {
  28598. name: "Normal",
  28599. height: math.unit(5 + 10 / 12, "feet")
  28600. },
  28601. {
  28602. name: "Macro",
  28603. height: math.unit(1100, "feet"),
  28604. default: true
  28605. },
  28606. ]
  28607. ))
  28608. characterMakers.push(() => makeCharacter(
  28609. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28610. {
  28611. front: {
  28612. height: math.unit(100, "miles"),
  28613. name: "Front",
  28614. image: {
  28615. source: "./media/characters/sona/front.svg",
  28616. extra: 2433 / 2201,
  28617. bottom: 53 / 2486
  28618. }
  28619. },
  28620. foot: {
  28621. height: math.unit(16.1, "miles"),
  28622. name: "Foot",
  28623. image: {
  28624. source: "./media/characters/sona/foot.svg"
  28625. }
  28626. },
  28627. },
  28628. [
  28629. {
  28630. name: "Macro",
  28631. height: math.unit(100, "miles"),
  28632. default: true
  28633. },
  28634. ]
  28635. ))
  28636. characterMakers.push(() => makeCharacter(
  28637. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28638. {
  28639. front: {
  28640. height: math.unit(6, "feet"),
  28641. weight: math.unit(150, "lb"),
  28642. name: "Front",
  28643. image: {
  28644. source: "./media/characters/bailey/front.svg",
  28645. extra: 1778 / 1724,
  28646. bottom: 30 / 1808
  28647. }
  28648. },
  28649. },
  28650. [
  28651. {
  28652. name: "Micro",
  28653. height: math.unit(4, "inches")
  28654. },
  28655. {
  28656. name: "Normal",
  28657. height: math.unit(5 + 5 / 12, "feet"),
  28658. default: true
  28659. },
  28660. {
  28661. name: "Macro",
  28662. height: math.unit(250, "feet")
  28663. },
  28664. {
  28665. name: "Megamacro",
  28666. height: math.unit(100, "miles")
  28667. },
  28668. ]
  28669. ))
  28670. characterMakers.push(() => makeCharacter(
  28671. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28672. {
  28673. front: {
  28674. height: math.unit(5 + 2 / 12, "feet"),
  28675. weight: math.unit(120, "lb"),
  28676. name: "Front",
  28677. image: {
  28678. source: "./media/characters/snaps/front.svg",
  28679. extra: 2370 / 2177,
  28680. bottom: 48 / 2418
  28681. }
  28682. },
  28683. back: {
  28684. height: math.unit(5 + 2 / 12, "feet"),
  28685. weight: math.unit(120, "lb"),
  28686. name: "Back",
  28687. image: {
  28688. source: "./media/characters/snaps/back.svg",
  28689. extra: 2408 / 2258,
  28690. bottom: 15 / 2423
  28691. }
  28692. },
  28693. },
  28694. [
  28695. {
  28696. name: "Micro",
  28697. height: math.unit(9, "inches")
  28698. },
  28699. {
  28700. name: "Normal",
  28701. height: math.unit(5 + 2 / 12, "feet"),
  28702. default: true
  28703. },
  28704. {
  28705. name: "Mini Macro",
  28706. height: math.unit(10, "feet")
  28707. },
  28708. ]
  28709. ))
  28710. characterMakers.push(() => makeCharacter(
  28711. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28712. {
  28713. front: {
  28714. height: math.unit(1.8, "meters"),
  28715. weight: math.unit(85, "kg"),
  28716. name: "Front",
  28717. image: {
  28718. source: "./media/characters/azteck/front.svg",
  28719. extra: 2815 / 2625,
  28720. bottom: 89 / 2904
  28721. }
  28722. },
  28723. back: {
  28724. height: math.unit(1.8, "meters"),
  28725. weight: math.unit(85, "kg"),
  28726. name: "Back",
  28727. image: {
  28728. source: "./media/characters/azteck/back.svg",
  28729. extra: 2856 / 2648,
  28730. bottom: 85 / 2941
  28731. }
  28732. },
  28733. frontDressed: {
  28734. height: math.unit(1.8, "meters"),
  28735. weight: math.unit(85, "kg"),
  28736. name: "Front (Dressed)",
  28737. image: {
  28738. source: "./media/characters/azteck/front-dressed.svg",
  28739. extra: 2147 / 2003,
  28740. bottom: 68 / 2215
  28741. }
  28742. },
  28743. head: {
  28744. height: math.unit(0.47, "meters"),
  28745. weight: math.unit(85, "kg"),
  28746. name: "Head",
  28747. image: {
  28748. source: "./media/characters/azteck/head.svg"
  28749. }
  28750. },
  28751. },
  28752. [
  28753. {
  28754. name: "Bite sized",
  28755. height: math.unit(16, "cm")
  28756. },
  28757. {
  28758. name: "Normal",
  28759. height: math.unit(1.8, "meters"),
  28760. default: true
  28761. },
  28762. ]
  28763. ))
  28764. characterMakers.push(() => makeCharacter(
  28765. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28766. {
  28767. front: {
  28768. height: math.unit(6, "feet"),
  28769. weight: math.unit(150, "lb"),
  28770. name: "Front",
  28771. image: {
  28772. source: "./media/characters/pidge/front.svg",
  28773. extra: 620 / 588,
  28774. bottom: 9 / 629
  28775. }
  28776. },
  28777. back: {
  28778. height: math.unit(6, "feet"),
  28779. weight: math.unit(150, "lb"),
  28780. name: "Back",
  28781. image: {
  28782. source: "./media/characters/pidge/back.svg",
  28783. extra: 620 / 588,
  28784. bottom: 9 / 629
  28785. }
  28786. },
  28787. },
  28788. [
  28789. {
  28790. name: "Macro",
  28791. height: math.unit(1, "mile"),
  28792. default: true
  28793. },
  28794. ]
  28795. ))
  28796. characterMakers.push(() => makeCharacter(
  28797. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28798. {
  28799. front: {
  28800. height: math.unit(6, "feet"),
  28801. weight: math.unit(150, "lb"),
  28802. name: "Front",
  28803. image: {
  28804. source: "./media/characters/en/front.svg",
  28805. extra: 1697 / 1563,
  28806. bottom: 103 / 1800
  28807. }
  28808. },
  28809. back: {
  28810. height: math.unit(6, "feet"),
  28811. weight: math.unit(150, "lb"),
  28812. name: "Back",
  28813. image: {
  28814. source: "./media/characters/en/back.svg",
  28815. extra: 1700 / 1570,
  28816. bottom: 51 / 1751
  28817. }
  28818. },
  28819. frontDressed: {
  28820. height: math.unit(6, "feet"),
  28821. weight: math.unit(150, "lb"),
  28822. name: "Front (Dressed)",
  28823. image: {
  28824. source: "./media/characters/en/front-dressed.svg",
  28825. extra: 1697 / 1563,
  28826. bottom: 103 / 1800
  28827. }
  28828. },
  28829. backDressed: {
  28830. height: math.unit(6, "feet"),
  28831. weight: math.unit(150, "lb"),
  28832. name: "Back (Dressed)",
  28833. image: {
  28834. source: "./media/characters/en/back-dressed.svg",
  28835. extra: 1700 / 1570,
  28836. bottom: 51 / 1751
  28837. }
  28838. },
  28839. },
  28840. [
  28841. {
  28842. name: "Macro",
  28843. height: math.unit(210, "feet"),
  28844. default: true
  28845. },
  28846. ]
  28847. ))
  28848. characterMakers.push(() => makeCharacter(
  28849. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28850. {
  28851. front: {
  28852. height: math.unit(6, "feet"),
  28853. weight: math.unit(150, "lb"),
  28854. name: "Front",
  28855. image: {
  28856. source: "./media/characters/haze-orris/front.svg",
  28857. extra: 3975 / 3525,
  28858. bottom: 137 / 4112
  28859. }
  28860. },
  28861. },
  28862. [
  28863. {
  28864. name: "Micro",
  28865. height: math.unit(150, "mm"),
  28866. default: true
  28867. },
  28868. ]
  28869. ))
  28870. characterMakers.push(() => makeCharacter(
  28871. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28872. {
  28873. front: {
  28874. height: math.unit(6, "feet"),
  28875. weight: math.unit(150, "lb"),
  28876. name: "Front",
  28877. image: {
  28878. source: "./media/characters/casselene-yaro/front.svg",
  28879. extra: 4721 / 4541,
  28880. bottom: 82 / 4803
  28881. }
  28882. },
  28883. back: {
  28884. height: math.unit(6, "feet"),
  28885. weight: math.unit(150, "lb"),
  28886. name: "Back",
  28887. image: {
  28888. source: "./media/characters/casselene-yaro/back.svg",
  28889. extra: 4569 / 4377,
  28890. bottom: 69 / 4638
  28891. }
  28892. },
  28893. frontDressed: {
  28894. height: math.unit(6, "feet"),
  28895. weight: math.unit(150, "lb"),
  28896. name: "Front-dressed",
  28897. image: {
  28898. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28899. extra: 4721 / 4541,
  28900. bottom: 82 / 4803
  28901. }
  28902. },
  28903. },
  28904. [
  28905. {
  28906. name: "Macro",
  28907. height: math.unit(190, "feet"),
  28908. default: true
  28909. },
  28910. ]
  28911. ))
  28912. characterMakers.push(() => makeCharacter(
  28913. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28914. {
  28915. front: {
  28916. height: math.unit(6, "feet"),
  28917. weight: math.unit(150, "lb"),
  28918. name: "Front",
  28919. image: {
  28920. source: "./media/characters/myra-rue-delore/front.svg",
  28921. extra: 1340 / 1308,
  28922. bottom: 67 / 1407
  28923. }
  28924. },
  28925. back: {
  28926. height: math.unit(6, "feet"),
  28927. weight: math.unit(150, "lb"),
  28928. name: "Back",
  28929. image: {
  28930. source: "./media/characters/myra-rue-delore/back.svg",
  28931. extra: 1341 / 1310,
  28932. bottom: 40 / 1381
  28933. }
  28934. },
  28935. frontDressed: {
  28936. height: math.unit(6, "feet"),
  28937. weight: math.unit(150, "lb"),
  28938. name: "Front (Dressed)",
  28939. image: {
  28940. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28941. extra: 1340 / 1308,
  28942. bottom: 67 / 1407
  28943. }
  28944. },
  28945. },
  28946. [
  28947. {
  28948. name: "Macro",
  28949. height: math.unit(150, "feet"),
  28950. default: true
  28951. },
  28952. ]
  28953. ))
  28954. characterMakers.push(() => makeCharacter(
  28955. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28956. {
  28957. front: {
  28958. height: math.unit(10, "feet"),
  28959. weight: math.unit(15015, "lb"),
  28960. name: "Front",
  28961. image: {
  28962. source: "./media/characters/fem!plat/front.svg",
  28963. extra: 2799 / 2604,
  28964. bottom: 149 / 2948
  28965. }
  28966. },
  28967. },
  28968. [
  28969. {
  28970. name: "Normal",
  28971. height: math.unit(10, "feet"),
  28972. default: true
  28973. },
  28974. {
  28975. name: "Macro",
  28976. height: math.unit(100, "feet")
  28977. },
  28978. {
  28979. name: "Megamacro",
  28980. height: math.unit(1000, "feet")
  28981. },
  28982. ]
  28983. ))
  28984. characterMakers.push(() => makeCharacter(
  28985. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28986. {
  28987. front: {
  28988. height: math.unit(15 + 5 / 12, "feet"),
  28989. weight: math.unit(4600, "lb"),
  28990. name: "Front",
  28991. image: {
  28992. source: "./media/characters/neapolitan-ananassa/front.svg",
  28993. extra: 2903 / 2736,
  28994. bottom: 0 / 2903
  28995. }
  28996. },
  28997. side: {
  28998. height: math.unit(15 + 5 / 12, "feet"),
  28999. weight: math.unit(4600, "lb"),
  29000. name: "Side",
  29001. image: {
  29002. source: "./media/characters/neapolitan-ananassa/side.svg",
  29003. extra: 2925 / 2719,
  29004. bottom: 0 / 2925
  29005. }
  29006. },
  29007. back: {
  29008. height: math.unit(15 + 5 / 12, "feet"),
  29009. weight: math.unit(4600, "lb"),
  29010. name: "Back",
  29011. image: {
  29012. source: "./media/characters/neapolitan-ananassa/back.svg",
  29013. extra: 2903 / 2736,
  29014. bottom: 0 / 2903
  29015. }
  29016. },
  29017. },
  29018. [
  29019. {
  29020. name: "Normal",
  29021. height: math.unit(15 + 5 / 12, "feet"),
  29022. default: true
  29023. },
  29024. {
  29025. name: "Post-Millenium",
  29026. height: math.unit(35 + 5 / 12, "feet")
  29027. },
  29028. {
  29029. name: "Post-Era",
  29030. height: math.unit(450 + 5 / 12, "feet")
  29031. },
  29032. ]
  29033. ))
  29034. characterMakers.push(() => makeCharacter(
  29035. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29036. {
  29037. front: {
  29038. height: math.unit(300, "meters"),
  29039. weight: math.unit(125000, "tonnes"),
  29040. name: "Front",
  29041. image: {
  29042. source: "./media/characters/pazuzu/front.svg",
  29043. extra: 877 / 794,
  29044. bottom: 47 / 924
  29045. }
  29046. },
  29047. },
  29048. [
  29049. {
  29050. name: "Macro",
  29051. height: math.unit(300, "meters"),
  29052. default: true
  29053. },
  29054. ]
  29055. ))
  29056. characterMakers.push(() => makeCharacter(
  29057. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29058. {
  29059. side: {
  29060. height: math.unit(10 + 7 / 12, "feet"),
  29061. weight: math.unit(2.5, "tons"),
  29062. name: "Side",
  29063. image: {
  29064. source: "./media/characters/aasha/side.svg",
  29065. extra: 1345 / 1245,
  29066. bottom: 111 / 1456
  29067. }
  29068. },
  29069. back: {
  29070. height: math.unit(10 + 7 / 12, "feet"),
  29071. weight: math.unit(2.5, "tons"),
  29072. name: "Back",
  29073. image: {
  29074. source: "./media/characters/aasha/back.svg",
  29075. extra: 1133 / 1057,
  29076. bottom: 257 / 1390
  29077. }
  29078. },
  29079. },
  29080. [
  29081. {
  29082. name: "Normal",
  29083. height: math.unit(10 + 7 / 12, "feet"),
  29084. default: true
  29085. },
  29086. ]
  29087. ))
  29088. characterMakers.push(() => makeCharacter(
  29089. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29090. {
  29091. front: {
  29092. height: math.unit(6 + 3 / 12, "feet"),
  29093. name: "Front",
  29094. image: {
  29095. source: "./media/characters/nevan/front.svg",
  29096. extra: 704 / 704,
  29097. bottom: 28 / 732
  29098. }
  29099. },
  29100. back: {
  29101. height: math.unit(6 + 3 / 12, "feet"),
  29102. name: "Back",
  29103. image: {
  29104. source: "./media/characters/nevan/back.svg",
  29105. extra: 714 / 714,
  29106. bottom: 21 / 735
  29107. }
  29108. },
  29109. frontFlaccid: {
  29110. height: math.unit(6 + 3 / 12, "feet"),
  29111. name: "Front (Flaccid)",
  29112. image: {
  29113. source: "./media/characters/nevan/front-flaccid.svg",
  29114. extra: 704 / 704,
  29115. bottom: 28 / 732
  29116. }
  29117. },
  29118. frontErect: {
  29119. height: math.unit(6 + 3 / 12, "feet"),
  29120. name: "Front (Erect)",
  29121. image: {
  29122. source: "./media/characters/nevan/front-erect.svg",
  29123. extra: 704 / 704,
  29124. bottom: 28 / 732
  29125. }
  29126. },
  29127. backFlaccid: {
  29128. height: math.unit(6 + 3 / 12, "feet"),
  29129. name: "Back (Flaccid)",
  29130. image: {
  29131. source: "./media/characters/nevan/back-flaccid.svg",
  29132. extra: 714 / 714,
  29133. bottom: 21 / 735
  29134. }
  29135. },
  29136. },
  29137. [
  29138. {
  29139. name: "Normal",
  29140. height: math.unit(6 + 3 / 12, "feet"),
  29141. default: true
  29142. },
  29143. ]
  29144. ))
  29145. characterMakers.push(() => makeCharacter(
  29146. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29147. {
  29148. front: {
  29149. height: math.unit(4, "feet"),
  29150. name: "Front",
  29151. image: {
  29152. source: "./media/characters/arhan/front.svg",
  29153. extra: 3368 / 3133,
  29154. bottom: 0 / 3368
  29155. }
  29156. },
  29157. side: {
  29158. height: math.unit(4, "feet"),
  29159. name: "Side",
  29160. image: {
  29161. source: "./media/characters/arhan/side.svg",
  29162. extra: 3347 / 3105,
  29163. bottom: 0 / 3347
  29164. }
  29165. },
  29166. tongue: {
  29167. height: math.unit(1.42, "feet"),
  29168. name: "Tongue",
  29169. image: {
  29170. source: "./media/characters/arhan/tongue.svg"
  29171. }
  29172. },
  29173. head: {
  29174. height: math.unit(0.85, "feet"),
  29175. name: "Head",
  29176. image: {
  29177. source: "./media/characters/arhan/head.svg"
  29178. }
  29179. },
  29180. },
  29181. [
  29182. {
  29183. name: "Normal",
  29184. height: math.unit(4, "feet"),
  29185. default: true
  29186. },
  29187. ]
  29188. ))
  29189. characterMakers.push(() => makeCharacter(
  29190. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29191. {
  29192. front: {
  29193. height: math.unit(5 + 7.5 / 12, "feet"),
  29194. weight: math.unit(120, "lb"),
  29195. name: "Front",
  29196. image: {
  29197. source: "./media/characters/digi-duncan/front.svg",
  29198. extra: 330 / 326,
  29199. bottom: 16 / 346
  29200. }
  29201. },
  29202. side: {
  29203. height: math.unit(5 + 7.5 / 12, "feet"),
  29204. weight: math.unit(120, "lb"),
  29205. name: "Side",
  29206. image: {
  29207. source: "./media/characters/digi-duncan/side.svg",
  29208. extra: 341 / 337,
  29209. bottom: 1 / 342
  29210. }
  29211. },
  29212. back: {
  29213. height: math.unit(5 + 7.5 / 12, "feet"),
  29214. weight: math.unit(120, "lb"),
  29215. name: "Back",
  29216. image: {
  29217. source: "./media/characters/digi-duncan/back.svg",
  29218. extra: 330 / 326,
  29219. bottom: 12 / 342
  29220. }
  29221. },
  29222. },
  29223. [
  29224. {
  29225. name: "Speck",
  29226. height: math.unit(0.25, "mm")
  29227. },
  29228. {
  29229. name: "Micro",
  29230. height: math.unit(5, "mm")
  29231. },
  29232. {
  29233. name: "Tiny",
  29234. height: math.unit(0.5, "inches"),
  29235. default: true
  29236. },
  29237. {
  29238. name: "Human",
  29239. height: math.unit(5 + 7.5 / 12, "feet")
  29240. },
  29241. {
  29242. name: "Minigiant",
  29243. height: math.unit(8 + 5.25, "feet")
  29244. },
  29245. {
  29246. name: "Giant",
  29247. height: math.unit(2000, "feet")
  29248. },
  29249. {
  29250. name: "Mega",
  29251. height: math.unit(371.1, "miles")
  29252. },
  29253. ]
  29254. ))
  29255. characterMakers.push(() => makeCharacter(
  29256. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29257. {
  29258. front: {
  29259. height: math.unit(2, "meters"),
  29260. weight: math.unit(350, "kg"),
  29261. name: "Front",
  29262. image: {
  29263. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29264. extra: 898 / 838,
  29265. bottom: 9 / 907
  29266. }
  29267. },
  29268. },
  29269. [
  29270. {
  29271. name: "Micro",
  29272. height: math.unit(8, "meters")
  29273. },
  29274. {
  29275. name: "Normal",
  29276. height: math.unit(50, "meters"),
  29277. default: true
  29278. },
  29279. {
  29280. name: "Macro",
  29281. height: math.unit(500, "meters")
  29282. },
  29283. ]
  29284. ))
  29285. characterMakers.push(() => makeCharacter(
  29286. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29287. {
  29288. front: {
  29289. height: math.unit(6 + 6 / 12, "feet"),
  29290. name: "Front",
  29291. image: {
  29292. source: "./media/characters/khardesh/front.svg",
  29293. extra: 888 / 797,
  29294. bottom: 25 / 913
  29295. }
  29296. },
  29297. },
  29298. [
  29299. {
  29300. name: "Normal",
  29301. height: math.unit(6 + 6 / 12, "feet"),
  29302. default: true
  29303. },
  29304. {
  29305. name: "Normal+",
  29306. height: math.unit(4, "meters")
  29307. },
  29308. {
  29309. name: "Macro",
  29310. height: math.unit(50, "meters")
  29311. },
  29312. {
  29313. name: "Macro+",
  29314. height: math.unit(100, "meters")
  29315. },
  29316. {
  29317. name: "Megamacro",
  29318. height: math.unit(20, "km")
  29319. },
  29320. ]
  29321. ))
  29322. characterMakers.push(() => makeCharacter(
  29323. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29324. {
  29325. front: {
  29326. height: math.unit(6, "feet"),
  29327. weight: math.unit(150, "lb"),
  29328. name: "Front",
  29329. image: {
  29330. source: "./media/characters/kosho/front.svg",
  29331. extra: 1847 / 1847,
  29332. bottom: 86 / 1933
  29333. }
  29334. },
  29335. },
  29336. [
  29337. {
  29338. name: "Second-stage micro",
  29339. height: math.unit(0.5, "inches")
  29340. },
  29341. {
  29342. name: "First-stage micro",
  29343. height: math.unit(6, "inches")
  29344. },
  29345. {
  29346. name: "Normal",
  29347. height: math.unit(6, "feet"),
  29348. default: true
  29349. },
  29350. {
  29351. name: "First-stage macro",
  29352. height: math.unit(72, "feet")
  29353. },
  29354. {
  29355. name: "Second-stage macro",
  29356. height: math.unit(864, "feet")
  29357. },
  29358. ]
  29359. ))
  29360. characterMakers.push(() => makeCharacter(
  29361. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29362. {
  29363. normal: {
  29364. height: math.unit(4 + 6 / 12, "feet"),
  29365. name: "Normal",
  29366. image: {
  29367. source: "./media/characters/hydra/normal.svg",
  29368. extra: 2833 / 2634,
  29369. bottom: 68 / 2901
  29370. }
  29371. },
  29372. smol: {
  29373. height: math.unit(0.705, "inches"),
  29374. name: "Smol",
  29375. image: {
  29376. source: "./media/characters/hydra/smol.svg",
  29377. extra: 2715 / 2540,
  29378. bottom: 0 / 2715
  29379. }
  29380. },
  29381. },
  29382. [
  29383. {
  29384. name: "Normal",
  29385. height: math.unit(4 + 6 / 12, "feet"),
  29386. default: true
  29387. }
  29388. ]
  29389. ))
  29390. characterMakers.push(() => makeCharacter(
  29391. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29392. {
  29393. front: {
  29394. height: math.unit(0.6, "cm"),
  29395. name: "Front",
  29396. image: {
  29397. source: "./media/characters/daz/front.svg",
  29398. extra: 1682 / 1164,
  29399. bottom: 42 / 1724
  29400. }
  29401. },
  29402. },
  29403. [
  29404. {
  29405. name: "Normal",
  29406. height: math.unit(0.6, "cm"),
  29407. default: true
  29408. },
  29409. ]
  29410. ))
  29411. characterMakers.push(() => makeCharacter(
  29412. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29413. {
  29414. front: {
  29415. height: math.unit(6, "feet"),
  29416. weight: math.unit(235, "lb"),
  29417. name: "Front",
  29418. image: {
  29419. source: "./media/characters/theo-pangolin/front.svg",
  29420. extra: 1996 / 1969,
  29421. bottom: 115 / 2111
  29422. }
  29423. },
  29424. back: {
  29425. height: math.unit(6, "feet"),
  29426. weight: math.unit(235, "lb"),
  29427. name: "Back",
  29428. image: {
  29429. source: "./media/characters/theo-pangolin/back.svg",
  29430. extra: 1979 / 1979,
  29431. bottom: 40 / 2019
  29432. }
  29433. },
  29434. feral: {
  29435. height: math.unit(2, "feet"),
  29436. weight: math.unit(30, "lb"),
  29437. name: "Feral",
  29438. image: {
  29439. source: "./media/characters/theo-pangolin/feral.svg",
  29440. extra: 803 / 791,
  29441. bottom: 181 / 984
  29442. }
  29443. },
  29444. footFive: {
  29445. height: math.unit(1.43, "feet"),
  29446. name: "Foot (Five Toes)",
  29447. image: {
  29448. source: "./media/characters/theo-pangolin/foot-five.svg"
  29449. }
  29450. },
  29451. footFour: {
  29452. height: math.unit(1.43, "feet"),
  29453. name: "Foot (Four Toes)",
  29454. image: {
  29455. source: "./media/characters/theo-pangolin/foot-four.svg"
  29456. }
  29457. },
  29458. handFour: {
  29459. height: math.unit(0.81, "feet"),
  29460. name: "Hand (Four Fingers)",
  29461. image: {
  29462. source: "./media/characters/theo-pangolin/hand-four.svg"
  29463. }
  29464. },
  29465. handThree: {
  29466. height: math.unit(0.81, "feet"),
  29467. name: "Hand (Three Fingers)",
  29468. image: {
  29469. source: "./media/characters/theo-pangolin/hand-three.svg"
  29470. }
  29471. },
  29472. headFront: {
  29473. height: math.unit(1.37, "feet"),
  29474. name: "Head (Front)",
  29475. image: {
  29476. source: "./media/characters/theo-pangolin/head-front.svg"
  29477. }
  29478. },
  29479. headSide: {
  29480. height: math.unit(1.43, "feet"),
  29481. name: "Head (Side)",
  29482. image: {
  29483. source: "./media/characters/theo-pangolin/head-side.svg"
  29484. }
  29485. },
  29486. tongue: {
  29487. height: math.unit(2.29, "feet"),
  29488. name: "Tongue",
  29489. image: {
  29490. source: "./media/characters/theo-pangolin/tongue.svg"
  29491. }
  29492. },
  29493. },
  29494. [
  29495. {
  29496. name: "Normal",
  29497. height: math.unit(6, "feet")
  29498. },
  29499. {
  29500. name: "Macro",
  29501. height: math.unit(400, "feet"),
  29502. default: true
  29503. },
  29504. ]
  29505. ))
  29506. characterMakers.push(() => makeCharacter(
  29507. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29508. {
  29509. front: {
  29510. height: math.unit(6, "inches"),
  29511. weight: math.unit(0.036, "kg"),
  29512. name: "Front",
  29513. image: {
  29514. source: "./media/characters/renée/front.svg",
  29515. extra: 900 / 886,
  29516. bottom: 8 / 908
  29517. }
  29518. },
  29519. },
  29520. [
  29521. {
  29522. name: "Nano",
  29523. height: math.unit(1, "nm")
  29524. },
  29525. {
  29526. name: "Micro",
  29527. height: math.unit(1, "mm")
  29528. },
  29529. {
  29530. name: "Normal",
  29531. height: math.unit(6, "inches")
  29532. },
  29533. {
  29534. name: "Macro",
  29535. height: math.unit(2000, "feet"),
  29536. default: true
  29537. },
  29538. {
  29539. name: "Megamacro",
  29540. height: math.unit(2, "km")
  29541. },
  29542. {
  29543. name: "Gigamacro",
  29544. height: math.unit(2000, "km")
  29545. },
  29546. {
  29547. name: "Teramacro",
  29548. height: math.unit(250000, "km")
  29549. },
  29550. ]
  29551. ))
  29552. characterMakers.push(() => makeCharacter(
  29553. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29554. {
  29555. front: {
  29556. height: math.unit(4, "meters"),
  29557. weight: math.unit(150, "kg"),
  29558. name: "Front",
  29559. image: {
  29560. source: "./media/characters/caledvwlch/front.svg",
  29561. extra: 1760 / 1551,
  29562. bottom: 28 / 1788
  29563. }
  29564. },
  29565. side: {
  29566. height: math.unit(4, "meters"),
  29567. weight: math.unit(150, "kg"),
  29568. name: "Side",
  29569. image: {
  29570. source: "./media/characters/caledvwlch/side.svg",
  29571. extra: 1605 / 1536,
  29572. bottom: 31 / 1636
  29573. }
  29574. },
  29575. back: {
  29576. height: math.unit(4, "meters"),
  29577. weight: math.unit(150, "kg"),
  29578. name: "Back",
  29579. image: {
  29580. source: "./media/characters/caledvwlch/back.svg",
  29581. extra: 1635 / 1565,
  29582. bottom: 27 / 1662
  29583. }
  29584. },
  29585. },
  29586. [
  29587. {
  29588. name: "\"Incognito\"",
  29589. height: math.unit(4, "meters")
  29590. },
  29591. {
  29592. name: "Small rampage",
  29593. height: math.unit(600, "meters")
  29594. },
  29595. {
  29596. name: "Mega",
  29597. height: math.unit(30, "km")
  29598. },
  29599. {
  29600. name: "Home-size",
  29601. height: math.unit(50, "km"),
  29602. default: true
  29603. },
  29604. {
  29605. name: "Giga",
  29606. height: math.unit(300, "km")
  29607. },
  29608. {
  29609. name: "Lounging",
  29610. height: math.unit(11000, "km")
  29611. },
  29612. {
  29613. name: "Planet snacking",
  29614. height: math.unit(2000000, "km")
  29615. },
  29616. ]
  29617. ))
  29618. characterMakers.push(() => makeCharacter(
  29619. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29620. {
  29621. front: {
  29622. height: math.unit(6, "feet"),
  29623. weight: math.unit(215, "lb"),
  29624. name: "Front",
  29625. image: {
  29626. source: "./media/characters/sapphire-svell/front.svg",
  29627. extra: 495 / 455,
  29628. bottom: 20 / 515
  29629. }
  29630. },
  29631. back: {
  29632. height: math.unit(6, "feet"),
  29633. weight: math.unit(216, "lb"),
  29634. name: "Back",
  29635. image: {
  29636. source: "./media/characters/sapphire-svell/back.svg",
  29637. extra: 497 / 477,
  29638. bottom: 7 / 504
  29639. }
  29640. },
  29641. maw: {
  29642. height: math.unit(1.57, "feet"),
  29643. name: "Maw",
  29644. image: {
  29645. source: "./media/characters/sapphire-svell/maw.svg"
  29646. }
  29647. },
  29648. foot: {
  29649. height: math.unit(1.07, "feet"),
  29650. name: "Foot",
  29651. image: {
  29652. source: "./media/characters/sapphire-svell/foot.svg"
  29653. }
  29654. },
  29655. toering: {
  29656. height: math.unit(1.7, "inch"),
  29657. name: "Toering",
  29658. image: {
  29659. source: "./media/characters/sapphire-svell/toering.svg"
  29660. }
  29661. },
  29662. },
  29663. [
  29664. {
  29665. name: "Normal",
  29666. height: math.unit(300, "feet"),
  29667. default: true
  29668. },
  29669. {
  29670. name: "Augmented",
  29671. height: math.unit(1250, "feet")
  29672. },
  29673. {
  29674. name: "Unleashed",
  29675. height: math.unit(3000, "feet")
  29676. },
  29677. ]
  29678. ))
  29679. characterMakers.push(() => makeCharacter(
  29680. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29681. {
  29682. side: {
  29683. height: math.unit(2 + 3 / 12, "feet"),
  29684. weight: math.unit(110, "lb"),
  29685. name: "Side",
  29686. image: {
  29687. source: "./media/characters/glitch-flux/side.svg",
  29688. extra: 997 / 805,
  29689. bottom: 20 / 1017
  29690. }
  29691. },
  29692. },
  29693. [
  29694. {
  29695. name: "Normal",
  29696. height: math.unit(2 + 3 / 12, "feet"),
  29697. default: true
  29698. },
  29699. ]
  29700. ))
  29701. characterMakers.push(() => makeCharacter(
  29702. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29703. {
  29704. front: {
  29705. height: math.unit(4, "meters"),
  29706. name: "Front",
  29707. image: {
  29708. source: "./media/characters/mid/front.svg",
  29709. extra: 507 / 476,
  29710. bottom: 17 / 524
  29711. }
  29712. },
  29713. back: {
  29714. height: math.unit(4, "meters"),
  29715. name: "Back",
  29716. image: {
  29717. source: "./media/characters/mid/back.svg",
  29718. extra: 519 / 487,
  29719. bottom: 7 / 526
  29720. }
  29721. },
  29722. stuck: {
  29723. height: math.unit(2.2, "meters"),
  29724. name: "Stuck",
  29725. image: {
  29726. source: "./media/characters/mid/stuck.svg",
  29727. extra: 1951 / 1869,
  29728. bottom: 88 / 2039
  29729. }
  29730. }
  29731. },
  29732. [
  29733. {
  29734. name: "Normal",
  29735. height: math.unit(4, "meters"),
  29736. default: true
  29737. },
  29738. {
  29739. name: "Big",
  29740. height: math.unit(10, "meters")
  29741. },
  29742. {
  29743. name: "Macro",
  29744. height: math.unit(800, "meters")
  29745. },
  29746. {
  29747. name: "Megamacro",
  29748. height: math.unit(100, "km")
  29749. },
  29750. {
  29751. name: "Overgrown",
  29752. height: math.unit(1, "parsec")
  29753. },
  29754. ]
  29755. ))
  29756. characterMakers.push(() => makeCharacter(
  29757. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29758. {
  29759. front: {
  29760. height: math.unit(2.5, "meters"),
  29761. weight: math.unit(225, "kg"),
  29762. name: "Front",
  29763. image: {
  29764. source: "./media/characters/iris/front.svg",
  29765. extra: 3348 / 3251,
  29766. bottom: 205 / 3553
  29767. }
  29768. },
  29769. maw: {
  29770. height: math.unit(0.56, "meter"),
  29771. name: "Maw",
  29772. image: {
  29773. source: "./media/characters/iris/maw.svg"
  29774. }
  29775. },
  29776. },
  29777. [
  29778. {
  29779. name: "Mewter cat",
  29780. height: math.unit(1.2, "meters")
  29781. },
  29782. {
  29783. name: "Minimacro",
  29784. height: math.unit(2.5, "meters"),
  29785. default: true
  29786. },
  29787. {
  29788. name: "Macro",
  29789. height: math.unit(180, "meters")
  29790. },
  29791. {
  29792. name: "Megamacro",
  29793. height: math.unit(2746, "meters")
  29794. },
  29795. ]
  29796. ))
  29797. characterMakers.push(() => makeCharacter(
  29798. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29799. {
  29800. front: {
  29801. height: math.unit(6, "feet"),
  29802. weight: math.unit(135, "lb"),
  29803. name: "Front",
  29804. image: {
  29805. source: "./media/characters/axel/front.svg",
  29806. extra: 908 / 908,
  29807. bottom: 58 / 966
  29808. }
  29809. },
  29810. side: {
  29811. height: math.unit(6, "feet"),
  29812. weight: math.unit(135, "lb"),
  29813. name: "Side",
  29814. image: {
  29815. source: "./media/characters/axel/side.svg",
  29816. extra: 958 / 958,
  29817. bottom: 11 / 969
  29818. }
  29819. },
  29820. back: {
  29821. height: math.unit(6, "feet"),
  29822. weight: math.unit(135, "lb"),
  29823. name: "Back",
  29824. image: {
  29825. source: "./media/characters/axel/back.svg",
  29826. extra: 887 / 887,
  29827. bottom: 34 / 921
  29828. }
  29829. },
  29830. head: {
  29831. height: math.unit(1.07, "feet"),
  29832. name: "Head",
  29833. image: {
  29834. source: "./media/characters/axel/head.svg"
  29835. }
  29836. },
  29837. beak: {
  29838. height: math.unit(1.4, "feet"),
  29839. name: "Beak",
  29840. image: {
  29841. source: "./media/characters/axel/beak.svg"
  29842. }
  29843. },
  29844. beakSide: {
  29845. height: math.unit(1.4, "feet"),
  29846. name: "Beak Side",
  29847. image: {
  29848. source: "./media/characters/axel/beak-side.svg"
  29849. }
  29850. },
  29851. sheath: {
  29852. height: math.unit(0.5, "feet"),
  29853. name: "Sheath",
  29854. image: {
  29855. source: "./media/characters/axel/sheath.svg"
  29856. }
  29857. },
  29858. dick: {
  29859. height: math.unit(0.98, "feet"),
  29860. name: "Dick",
  29861. image: {
  29862. source: "./media/characters/axel/dick.svg"
  29863. }
  29864. },
  29865. },
  29866. [
  29867. {
  29868. name: "Macro",
  29869. height: math.unit(68, "meters"),
  29870. default: true
  29871. },
  29872. ]
  29873. ))
  29874. characterMakers.push(() => makeCharacter(
  29875. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29876. {
  29877. front: {
  29878. height: math.unit(3.5, "meters"),
  29879. weight: math.unit(1200, "kg"),
  29880. name: "Front",
  29881. image: {
  29882. source: "./media/characters/joanna/front.svg",
  29883. extra: 1596 / 1488,
  29884. bottom: 29 / 1625
  29885. }
  29886. },
  29887. back: {
  29888. height: math.unit(3.5, "meters"),
  29889. weight: math.unit(1200, "kg"),
  29890. name: "Back",
  29891. image: {
  29892. source: "./media/characters/joanna/back.svg",
  29893. extra: 1594 / 1495,
  29894. bottom: 26 / 1620
  29895. }
  29896. },
  29897. frontShorts: {
  29898. height: math.unit(3.5, "meters"),
  29899. weight: math.unit(1200, "kg"),
  29900. name: "Front (Shorts)",
  29901. image: {
  29902. source: "./media/characters/joanna/front-shorts.svg",
  29903. extra: 1596 / 1488,
  29904. bottom: 29 / 1625
  29905. }
  29906. },
  29907. frontBiker: {
  29908. height: math.unit(3.5, "meters"),
  29909. weight: math.unit(1200, "kg"),
  29910. name: "Front (Biker)",
  29911. image: {
  29912. source: "./media/characters/joanna/front-biker.svg",
  29913. extra: 1596 / 1488,
  29914. bottom: 29 / 1625
  29915. }
  29916. },
  29917. backBiker: {
  29918. height: math.unit(3.5, "meters"),
  29919. weight: math.unit(1200, "kg"),
  29920. name: "Back (Biker)",
  29921. image: {
  29922. source: "./media/characters/joanna/back-biker.svg",
  29923. extra: 1594 / 1495,
  29924. bottom: 88 / 1682
  29925. }
  29926. },
  29927. bikeLeft: {
  29928. height: math.unit(2.4, "meters"),
  29929. weight: math.unit(1600, "kg"),
  29930. name: "Bike (Left)",
  29931. image: {
  29932. source: "./media/characters/joanna/bike-left.svg",
  29933. extra: 720 / 720,
  29934. bottom: 8 / 728
  29935. }
  29936. },
  29937. bikeRight: {
  29938. height: math.unit(2.4, "meters"),
  29939. weight: math.unit(1600, "kg"),
  29940. name: "Bike (Right)",
  29941. image: {
  29942. source: "./media/characters/joanna/bike-right.svg",
  29943. extra: 720 / 720,
  29944. bottom: 8 / 728
  29945. }
  29946. },
  29947. },
  29948. [
  29949. {
  29950. name: "Incognito",
  29951. height: math.unit(3.5, "meters")
  29952. },
  29953. {
  29954. name: "Casual Big",
  29955. height: math.unit(200, "meters")
  29956. },
  29957. {
  29958. name: "Macro",
  29959. height: math.unit(600, "meters")
  29960. },
  29961. {
  29962. name: "Original",
  29963. height: math.unit(20, "km"),
  29964. default: true
  29965. },
  29966. {
  29967. name: "Giga",
  29968. height: math.unit(400, "km")
  29969. },
  29970. {
  29971. name: "Lounging",
  29972. height: math.unit(1500, "km")
  29973. },
  29974. {
  29975. name: "Planetary",
  29976. height: math.unit(200000, "km")
  29977. },
  29978. ]
  29979. ))
  29980. characterMakers.push(() => makeCharacter(
  29981. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29982. {
  29983. front: {
  29984. height: math.unit(6, "feet"),
  29985. weight: math.unit(150, "lb"),
  29986. name: "Front",
  29987. image: {
  29988. source: "./media/characters/hugo-sigil/front.svg",
  29989. extra: 522 / 500,
  29990. bottom: 2 / 524
  29991. }
  29992. },
  29993. back: {
  29994. height: math.unit(6, "feet"),
  29995. weight: math.unit(150, "lb"),
  29996. name: "Back",
  29997. image: {
  29998. source: "./media/characters/hugo-sigil/back.svg",
  29999. extra: 519 / 495,
  30000. bottom: 5 / 524
  30001. }
  30002. },
  30003. maw: {
  30004. height: math.unit(1.4, "feet"),
  30005. weight: math.unit(150, "lb"),
  30006. name: "Maw",
  30007. image: {
  30008. source: "./media/characters/hugo-sigil/maw.svg"
  30009. }
  30010. },
  30011. feet: {
  30012. height: math.unit(1.56, "feet"),
  30013. weight: math.unit(150, "lb"),
  30014. name: "Feet",
  30015. image: {
  30016. source: "./media/characters/hugo-sigil/feet.svg",
  30017. extra: 177 / 177,
  30018. bottom: 12 / 189
  30019. }
  30020. },
  30021. },
  30022. [
  30023. {
  30024. name: "Normal",
  30025. height: math.unit(6, "feet")
  30026. },
  30027. {
  30028. name: "Macro",
  30029. height: math.unit(200, "feet"),
  30030. default: true
  30031. },
  30032. ]
  30033. ))
  30034. characterMakers.push(() => makeCharacter(
  30035. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30036. {
  30037. front: {
  30038. height: math.unit(6, "feet"),
  30039. weight: math.unit(150, "lb"),
  30040. name: "Front",
  30041. image: {
  30042. source: "./media/characters/peri/front.svg",
  30043. extra: 2354 / 2233,
  30044. bottom: 49 / 2403
  30045. }
  30046. },
  30047. },
  30048. [
  30049. {
  30050. name: "Really Small",
  30051. height: math.unit(1, "nm")
  30052. },
  30053. {
  30054. name: "Micro",
  30055. height: math.unit(4, "inches")
  30056. },
  30057. {
  30058. name: "Normal",
  30059. height: math.unit(7, "inches"),
  30060. default: true
  30061. },
  30062. {
  30063. name: "Macro",
  30064. height: math.unit(400, "feet")
  30065. },
  30066. {
  30067. name: "Megamacro",
  30068. height: math.unit(100, "miles")
  30069. },
  30070. ]
  30071. ))
  30072. characterMakers.push(() => makeCharacter(
  30073. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30074. {
  30075. frontSlim: {
  30076. height: math.unit(7, "feet"),
  30077. name: "Front (Slim)",
  30078. image: {
  30079. source: "./media/characters/issilora/front-slim.svg",
  30080. extra: 529 / 449,
  30081. bottom: 53 / 582
  30082. }
  30083. },
  30084. sideSlim: {
  30085. height: math.unit(7, "feet"),
  30086. name: "Side (Slim)",
  30087. image: {
  30088. source: "./media/characters/issilora/side-slim.svg",
  30089. extra: 570 / 480,
  30090. bottom: 30 / 600
  30091. }
  30092. },
  30093. backSlim: {
  30094. height: math.unit(7, "feet"),
  30095. name: "Back (Slim)",
  30096. image: {
  30097. source: "./media/characters/issilora/back-slim.svg",
  30098. extra: 537 / 455,
  30099. bottom: 46 / 583
  30100. }
  30101. },
  30102. frontBuff: {
  30103. height: math.unit(7, "feet"),
  30104. name: "Front (Buff)",
  30105. image: {
  30106. source: "./media/characters/issilora/front-buff.svg",
  30107. extra: 2310 / 2035,
  30108. bottom: 335 / 2645
  30109. }
  30110. },
  30111. head: {
  30112. height: math.unit(1.94, "feet"),
  30113. name: "Head",
  30114. image: {
  30115. source: "./media/characters/issilora/head.svg"
  30116. }
  30117. },
  30118. },
  30119. [
  30120. {
  30121. name: "Minimum",
  30122. height: math.unit(7, "feet")
  30123. },
  30124. {
  30125. name: "Comfortable",
  30126. height: math.unit(17, "feet")
  30127. },
  30128. {
  30129. name: "Fun Size",
  30130. height: math.unit(47, "feet")
  30131. },
  30132. {
  30133. name: "Natural Macro",
  30134. height: math.unit(137, "feet"),
  30135. default: true
  30136. },
  30137. {
  30138. name: "Maximum Kaiju",
  30139. height: math.unit(397, "feet")
  30140. },
  30141. ]
  30142. ))
  30143. characterMakers.push(() => makeCharacter(
  30144. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30145. {
  30146. front: {
  30147. height: math.unit(50 + 9/12, "feet"),
  30148. weight: math.unit(32.8, "tons"),
  30149. name: "Front",
  30150. image: {
  30151. source: "./media/characters/irb'iiritaahn/front.svg",
  30152. extra: 1878/1826,
  30153. bottom: 326/2204
  30154. }
  30155. },
  30156. back: {
  30157. height: math.unit(50 + 9/12, "feet"),
  30158. weight: math.unit(32.8, "tons"),
  30159. name: "Back",
  30160. image: {
  30161. source: "./media/characters/irb'iiritaahn/back.svg",
  30162. extra: 2052/2018,
  30163. bottom: 152/2204
  30164. }
  30165. },
  30166. head: {
  30167. height: math.unit(12.86, "feet"),
  30168. name: "Head",
  30169. image: {
  30170. source: "./media/characters/irb'iiritaahn/head.svg"
  30171. }
  30172. },
  30173. maw: {
  30174. height: math.unit(9.66, "feet"),
  30175. name: "Maw",
  30176. image: {
  30177. source: "./media/characters/irb'iiritaahn/maw.svg"
  30178. }
  30179. },
  30180. frontDick: {
  30181. height: math.unit(8.78461, "feet"),
  30182. name: "Front Dick",
  30183. image: {
  30184. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30185. }
  30186. },
  30187. rearDick: {
  30188. height: math.unit(8.78461, "feet"),
  30189. name: "Rear Dick",
  30190. image: {
  30191. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30192. }
  30193. },
  30194. rearDickUnfolded: {
  30195. height: math.unit(8.78, "feet"),
  30196. name: "Rear Dick (Unfolded)",
  30197. image: {
  30198. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30199. }
  30200. },
  30201. wings: {
  30202. height: math.unit(43, "feet"),
  30203. name: "Wings",
  30204. image: {
  30205. source: "./media/characters/irb'iiritaahn/wings.svg"
  30206. }
  30207. },
  30208. },
  30209. [
  30210. {
  30211. name: "Macro",
  30212. height: math.unit(50 + 9/12, "feet"),
  30213. default: true
  30214. },
  30215. ]
  30216. ))
  30217. characterMakers.push(() => makeCharacter(
  30218. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30219. {
  30220. front: {
  30221. height: math.unit(205, "cm"),
  30222. weight: math.unit(102, "kg"),
  30223. name: "Front",
  30224. image: {
  30225. source: "./media/characters/irbisgreif/front.svg",
  30226. extra: 785/706,
  30227. bottom: 13/798
  30228. }
  30229. },
  30230. back: {
  30231. height: math.unit(205, "cm"),
  30232. weight: math.unit(102, "kg"),
  30233. name: "Back",
  30234. image: {
  30235. source: "./media/characters/irbisgreif/back.svg",
  30236. extra: 713/701,
  30237. bottom: 26/739
  30238. }
  30239. },
  30240. frontDressed: {
  30241. height: math.unit(216, "cm"),
  30242. weight: math.unit(102, "kg"),
  30243. name: "Front-dressed",
  30244. image: {
  30245. source: "./media/characters/irbisgreif/front-dressed.svg",
  30246. extra: 902/776,
  30247. bottom: 14/916
  30248. }
  30249. },
  30250. sideDressed: {
  30251. height: math.unit(195, "cm"),
  30252. weight: math.unit(102, "kg"),
  30253. name: "Side-dressed",
  30254. image: {
  30255. source: "./media/characters/irbisgreif/side-dressed.svg",
  30256. extra: 788/688,
  30257. bottom: 21/809
  30258. }
  30259. },
  30260. backDressed: {
  30261. height: math.unit(216, "cm"),
  30262. weight: math.unit(102, "kg"),
  30263. name: "Back-dressed",
  30264. image: {
  30265. source: "./media/characters/irbisgreif/back-dressed.svg",
  30266. extra: 901/783,
  30267. bottom: 10/911
  30268. }
  30269. },
  30270. dick: {
  30271. height: math.unit(0.49, "feet"),
  30272. name: "Dick",
  30273. image: {
  30274. source: "./media/characters/irbisgreif/dick.svg"
  30275. }
  30276. },
  30277. wingTop: {
  30278. height: math.unit(1.93 , "feet"),
  30279. name: "Wing-top",
  30280. image: {
  30281. source: "./media/characters/irbisgreif/wing-top.svg"
  30282. }
  30283. },
  30284. wingBottom: {
  30285. height: math.unit(1.93 , "feet"),
  30286. name: "Wing-bottom",
  30287. image: {
  30288. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30289. }
  30290. },
  30291. },
  30292. [
  30293. {
  30294. name: "Normal",
  30295. height: math.unit(216, "cm"),
  30296. default: true
  30297. },
  30298. ]
  30299. ))
  30300. characterMakers.push(() => makeCharacter(
  30301. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30302. {
  30303. front: {
  30304. height: math.unit(6, "feet"),
  30305. weight: math.unit(150, "lb"),
  30306. name: "Front",
  30307. image: {
  30308. source: "./media/characters/pride/front.svg",
  30309. extra: 1299/1230,
  30310. bottom: 18/1317
  30311. }
  30312. },
  30313. },
  30314. [
  30315. {
  30316. name: "Normal",
  30317. height: math.unit(7, "feet")
  30318. },
  30319. {
  30320. name: "Mini-macro",
  30321. height: math.unit(11, "feet")
  30322. },
  30323. {
  30324. name: "Macro",
  30325. height: math.unit(15, "meters"),
  30326. default: true
  30327. },
  30328. {
  30329. name: "Macro+",
  30330. height: math.unit(40, "meters")
  30331. },
  30332. ]
  30333. ))
  30334. characterMakers.push(() => makeCharacter(
  30335. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30336. {
  30337. front: {
  30338. height: math.unit(4 + 2 / 12, "feet"),
  30339. weight: math.unit(95, "lb"),
  30340. name: "Front",
  30341. image: {
  30342. source: "./media/characters/vaelophis-nyx/front.svg",
  30343. extra: 2532/2330,
  30344. bottom: 0/2532
  30345. }
  30346. },
  30347. back: {
  30348. height: math.unit(4 + 2 / 12, "feet"),
  30349. weight: math.unit(95, "lb"),
  30350. name: "Back",
  30351. image: {
  30352. source: "./media/characters/vaelophis-nyx/back.svg",
  30353. extra: 2484/2361,
  30354. bottom: 0/2484
  30355. }
  30356. },
  30357. feralSide: {
  30358. height: math.unit(2 + 1/12, "feet"),
  30359. weight: math.unit(20, "lb"),
  30360. name: "Feral (Side)",
  30361. image: {
  30362. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30363. extra: 1721/1581,
  30364. bottom: 70/1791
  30365. }
  30366. },
  30367. feralLazing: {
  30368. height: math.unit(1.08, "feet"),
  30369. weight: math.unit(20, "lb"),
  30370. name: "Feral (Lazing)",
  30371. image: {
  30372. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30373. extra: 822/822,
  30374. bottom: 248/1070
  30375. }
  30376. },
  30377. ear: {
  30378. height: math.unit(0.416, "feet"),
  30379. name: "Ear",
  30380. image: {
  30381. source: "./media/characters/vaelophis-nyx/ear.svg"
  30382. }
  30383. },
  30384. eye: {
  30385. height: math.unit(0.0748, "feet"),
  30386. name: "Eye",
  30387. image: {
  30388. source: "./media/characters/vaelophis-nyx/eye.svg"
  30389. }
  30390. },
  30391. mouth: {
  30392. height: math.unit(0.378, "feet"),
  30393. name: "Mouth",
  30394. image: {
  30395. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30396. }
  30397. },
  30398. spade: {
  30399. height: math.unit(0.55, "feet"),
  30400. name: "Spade",
  30401. image: {
  30402. source: "./media/characters/vaelophis-nyx/spade.svg"
  30403. }
  30404. },
  30405. },
  30406. [
  30407. {
  30408. name: "Normal",
  30409. height: math.unit(4 + 2/12, "feet"),
  30410. default: true
  30411. },
  30412. ]
  30413. ))
  30414. characterMakers.push(() => makeCharacter(
  30415. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30416. {
  30417. front: {
  30418. height: math.unit(7, "feet"),
  30419. weight: math.unit(231, "lb"),
  30420. name: "Front",
  30421. image: {
  30422. source: "./media/characters/flux/front.svg",
  30423. extra: 919/871,
  30424. bottom: 0/919
  30425. }
  30426. },
  30427. back: {
  30428. height: math.unit(7, "feet"),
  30429. weight: math.unit(231, "lb"),
  30430. name: "Back",
  30431. image: {
  30432. source: "./media/characters/flux/back.svg",
  30433. extra: 1040/992,
  30434. bottom: 0/1040
  30435. }
  30436. },
  30437. frontDressed: {
  30438. height: math.unit(7, "feet"),
  30439. weight: math.unit(231, "lb"),
  30440. name: "Front (Dressed)",
  30441. image: {
  30442. source: "./media/characters/flux/front-dressed.svg",
  30443. extra: 919/871,
  30444. bottom: 0/919
  30445. }
  30446. },
  30447. feralSide: {
  30448. height: math.unit(5, "feet"),
  30449. weight: math.unit(150, "lb"),
  30450. name: "Feral (Side)",
  30451. image: {
  30452. source: "./media/characters/flux/feral-side.svg",
  30453. extra: 598/528,
  30454. bottom: 28/626
  30455. }
  30456. },
  30457. head: {
  30458. height: math.unit(1.585, "feet"),
  30459. name: "Head",
  30460. image: {
  30461. source: "./media/characters/flux/head.svg"
  30462. }
  30463. },
  30464. headSide: {
  30465. height: math.unit(1.74, "feet"),
  30466. name: "Head (Side)",
  30467. image: {
  30468. source: "./media/characters/flux/head-side.svg"
  30469. }
  30470. },
  30471. headSideFire: {
  30472. height: math.unit(1.76, "feet"),
  30473. name: "Head (Side, Fire)",
  30474. image: {
  30475. source: "./media/characters/flux/head-side-fire.svg"
  30476. }
  30477. },
  30478. },
  30479. [
  30480. {
  30481. name: "Normal",
  30482. height: math.unit(7, "feet"),
  30483. default: true
  30484. },
  30485. ]
  30486. ))
  30487. characterMakers.push(() => makeCharacter(
  30488. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30489. {
  30490. front: {
  30491. height: math.unit(9, "feet"),
  30492. weight: math.unit(1012, "lb"),
  30493. name: "Front",
  30494. image: {
  30495. source: "./media/characters/ulfra-lupae/front.svg",
  30496. extra: 1083/1011,
  30497. bottom: 67/1150
  30498. }
  30499. },
  30500. },
  30501. [
  30502. {
  30503. name: "Micro",
  30504. height: math.unit(6, "inches")
  30505. },
  30506. {
  30507. name: "Socializing",
  30508. height: math.unit(6 + 5/12, "feet")
  30509. },
  30510. {
  30511. name: "Normal",
  30512. height: math.unit(9, "feet"),
  30513. default: true
  30514. },
  30515. {
  30516. name: "Macro",
  30517. height: math.unit(150, "feet")
  30518. },
  30519. ]
  30520. ))
  30521. characterMakers.push(() => makeCharacter(
  30522. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30523. {
  30524. front: {
  30525. height: math.unit(5 + 2/12, "feet"),
  30526. weight: math.unit(120, "lb"),
  30527. name: "Front",
  30528. image: {
  30529. source: "./media/characters/timber/front.svg",
  30530. extra: 2814/2705,
  30531. bottom: 181/2995
  30532. }
  30533. },
  30534. },
  30535. [
  30536. {
  30537. name: "Normal",
  30538. height: math.unit(5 + 2/12, "feet"),
  30539. default: true
  30540. },
  30541. ]
  30542. ))
  30543. characterMakers.push(() => makeCharacter(
  30544. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30545. {
  30546. front: {
  30547. height: math.unit(5 + 7/12, "feet"),
  30548. weight: math.unit(220, "lb"),
  30549. name: "Front",
  30550. image: {
  30551. source: "./media/characters/nicki/front.svg",
  30552. extra: 453/419,
  30553. bottom: 7/460
  30554. }
  30555. },
  30556. frontAlt: {
  30557. height: math.unit(5 + 7/12, "feet"),
  30558. weight: math.unit(220, "lb"),
  30559. name: "Front-alt",
  30560. image: {
  30561. source: "./media/characters/nicki/front-alt.svg",
  30562. extra: 435/411,
  30563. bottom: 12/447
  30564. }
  30565. },
  30566. back: {
  30567. height: math.unit(5 + 7/12, "feet"),
  30568. weight: math.unit(220, "lb"),
  30569. name: "Back",
  30570. image: {
  30571. source: "./media/characters/nicki/back.svg",
  30572. extra: 440/413,
  30573. bottom: 19/459
  30574. }
  30575. },
  30576. taur: {
  30577. height: math.unit(7 + 6/12, "feet"),
  30578. weight: math.unit(700, "lb"),
  30579. name: "Taur",
  30580. image: {
  30581. source: "./media/characters/nicki/taur.svg",
  30582. extra: 975/773,
  30583. bottom: 0/975
  30584. }
  30585. },
  30586. frontNsfw: {
  30587. height: math.unit(5 + 7/12, "feet"),
  30588. weight: math.unit(220, "lb"),
  30589. name: "Front (NSFW)",
  30590. image: {
  30591. source: "./media/characters/nicki/front-nsfw.svg",
  30592. extra: 453/419,
  30593. bottom: 7/460
  30594. }
  30595. },
  30596. frontNsfwAlt: {
  30597. height: math.unit(5 + 7/12, "feet"),
  30598. weight: math.unit(220, "lb"),
  30599. name: "Front (Alt, NSFW)",
  30600. image: {
  30601. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30602. extra: 435/411,
  30603. bottom: 12/447
  30604. }
  30605. },
  30606. backNsfw: {
  30607. height: math.unit(5 + 7/12, "feet"),
  30608. weight: math.unit(220, "lb"),
  30609. name: "Back (NSFW)",
  30610. image: {
  30611. source: "./media/characters/nicki/back-nsfw.svg",
  30612. extra: 440/413,
  30613. bottom: 19/459
  30614. }
  30615. },
  30616. head: {
  30617. height: math.unit(2.1, "feet"),
  30618. name: "Head",
  30619. image: {
  30620. source: "./media/characters/nicki/head.svg"
  30621. }
  30622. },
  30623. paw: {
  30624. height: math.unit(1.88, "feet"),
  30625. name: "Paw",
  30626. image: {
  30627. source: "./media/characters/nicki/paw.svg"
  30628. }
  30629. },
  30630. },
  30631. [
  30632. {
  30633. name: "Normal",
  30634. height: math.unit(5 + 7/12, "feet"),
  30635. default: true
  30636. },
  30637. ]
  30638. ))
  30639. characterMakers.push(() => makeCharacter(
  30640. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30641. {
  30642. front: {
  30643. height: math.unit(7 + 10/12, "feet"),
  30644. weight: math.unit(3.5, "tons"),
  30645. name: "Front",
  30646. image: {
  30647. source: "./media/characters/lee/front.svg",
  30648. extra: 1773/1615,
  30649. bottom: 86/1859
  30650. }
  30651. },
  30652. hand: {
  30653. height: math.unit(1.78, "feet"),
  30654. name: "Hand",
  30655. image: {
  30656. source: "./media/characters/lee/hand.svg"
  30657. }
  30658. },
  30659. maw: {
  30660. height: math.unit(1.18, "feet"),
  30661. name: "Maw",
  30662. image: {
  30663. source: "./media/characters/lee/maw.svg"
  30664. }
  30665. },
  30666. },
  30667. [
  30668. {
  30669. name: "Normal",
  30670. height: math.unit(7 + 10/12, "feet"),
  30671. default: true
  30672. },
  30673. ]
  30674. ))
  30675. characterMakers.push(() => makeCharacter(
  30676. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30677. {
  30678. front: {
  30679. height: math.unit(9, "feet"),
  30680. name: "Front",
  30681. image: {
  30682. source: "./media/characters/guti/front.svg",
  30683. extra: 4551/4355,
  30684. bottom: 123/4674
  30685. }
  30686. },
  30687. tongue: {
  30688. height: math.unit(1, "feet"),
  30689. name: "Tongue",
  30690. image: {
  30691. source: "./media/characters/guti/tongue.svg"
  30692. }
  30693. },
  30694. paw: {
  30695. height: math.unit(1.18, "feet"),
  30696. name: "Paw",
  30697. image: {
  30698. source: "./media/characters/guti/paw.svg"
  30699. }
  30700. },
  30701. },
  30702. [
  30703. {
  30704. name: "Normal",
  30705. height: math.unit(9, "feet"),
  30706. default: true
  30707. },
  30708. ]
  30709. ))
  30710. characterMakers.push(() => makeCharacter(
  30711. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30712. {
  30713. side: {
  30714. height: math.unit(5, "meters"),
  30715. name: "Side",
  30716. image: {
  30717. source: "./media/characters/vesper/side.svg",
  30718. extra: 1605/1518,
  30719. bottom: 0/1605
  30720. }
  30721. },
  30722. },
  30723. [
  30724. {
  30725. name: "Small",
  30726. height: math.unit(5, "meters")
  30727. },
  30728. {
  30729. name: "Sage",
  30730. height: math.unit(100, "meters"),
  30731. default: true
  30732. },
  30733. {
  30734. name: "Fun Size",
  30735. height: math.unit(600, "meters")
  30736. },
  30737. {
  30738. name: "Goddess",
  30739. height: math.unit(20000, "km")
  30740. },
  30741. {
  30742. name: "Maximum",
  30743. height: math.unit(5, "galaxies")
  30744. },
  30745. ]
  30746. ))
  30747. characterMakers.push(() => makeCharacter(
  30748. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30749. {
  30750. front: {
  30751. height: math.unit(6 + 3/12, "feet"),
  30752. weight: math.unit(190, "lb"),
  30753. name: "Front",
  30754. image: {
  30755. source: "./media/characters/gawain/front.svg",
  30756. extra: 2222/2139,
  30757. bottom: 90/2312
  30758. }
  30759. },
  30760. back: {
  30761. height: math.unit(6 + 3/12, "feet"),
  30762. weight: math.unit(190, "lb"),
  30763. name: "Back",
  30764. image: {
  30765. source: "./media/characters/gawain/back.svg",
  30766. extra: 2199/2111,
  30767. bottom: 73/2272
  30768. }
  30769. },
  30770. },
  30771. [
  30772. {
  30773. name: "Normal",
  30774. height: math.unit(6 + 3/12, "feet"),
  30775. default: true
  30776. },
  30777. ]
  30778. ))
  30779. characterMakers.push(() => makeCharacter(
  30780. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30781. {
  30782. side: {
  30783. height: math.unit(3.5, "meters"),
  30784. weight: math.unit(16000, "lb"),
  30785. name: "Side",
  30786. image: {
  30787. source: "./media/characters/dascalti/side.svg",
  30788. extra: 392/273,
  30789. bottom: 47/439
  30790. }
  30791. },
  30792. breath: {
  30793. height: math.unit(7.4, "feet"),
  30794. name: "Breath",
  30795. image: {
  30796. source: "./media/characters/dascalti/breath.svg"
  30797. }
  30798. },
  30799. fed: {
  30800. height: math.unit(3.6, "meters"),
  30801. weight: math.unit(16000, "lb"),
  30802. name: "Fed",
  30803. image: {
  30804. source: "./media/characters/dascalti/fed.svg",
  30805. extra: 1419/820,
  30806. bottom: 95/1514
  30807. }
  30808. },
  30809. },
  30810. [
  30811. {
  30812. name: "Normal",
  30813. height: math.unit(3.5, "meters"),
  30814. default: true
  30815. },
  30816. ]
  30817. ))
  30818. characterMakers.push(() => makeCharacter(
  30819. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30820. {
  30821. front: {
  30822. height: math.unit(3 + 5/12, "feet"),
  30823. name: "Front",
  30824. image: {
  30825. source: "./media/characters/mauve/front.svg",
  30826. extra: 1126/1033,
  30827. bottom: 65/1191
  30828. }
  30829. },
  30830. side: {
  30831. height: math.unit(3 + 5/12, "feet"),
  30832. name: "Side",
  30833. image: {
  30834. source: "./media/characters/mauve/side.svg",
  30835. extra: 1089/1001,
  30836. bottom: 29/1118
  30837. }
  30838. },
  30839. back: {
  30840. height: math.unit(3 + 5/12, "feet"),
  30841. name: "Back",
  30842. image: {
  30843. source: "./media/characters/mauve/back.svg",
  30844. extra: 1173/1053,
  30845. bottom: 109/1282
  30846. }
  30847. },
  30848. },
  30849. [
  30850. {
  30851. name: "Normal",
  30852. height: math.unit(3 + 5/12, "feet"),
  30853. default: true
  30854. },
  30855. ]
  30856. ))
  30857. characterMakers.push(() => makeCharacter(
  30858. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30859. {
  30860. front: {
  30861. height: math.unit(6 + 3/12, "feet"),
  30862. weight: math.unit(430, "lb"),
  30863. name: "Front",
  30864. image: {
  30865. source: "./media/characters/carlos/front.svg",
  30866. extra: 1964/1913,
  30867. bottom: 70/2034
  30868. }
  30869. },
  30870. },
  30871. [
  30872. {
  30873. name: "Normal",
  30874. height: math.unit(6 + 3/12, "feet"),
  30875. default: true
  30876. },
  30877. ]
  30878. ))
  30879. characterMakers.push(() => makeCharacter(
  30880. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30881. {
  30882. back: {
  30883. height: math.unit(5 + 10/12, "feet"),
  30884. weight: math.unit(200, "lb"),
  30885. name: "Back",
  30886. image: {
  30887. source: "./media/characters/jax/back.svg",
  30888. extra: 764/739,
  30889. bottom: 25/789
  30890. }
  30891. },
  30892. },
  30893. [
  30894. {
  30895. name: "Normal",
  30896. height: math.unit(5 + 10/12, "feet"),
  30897. default: true
  30898. },
  30899. ]
  30900. ))
  30901. characterMakers.push(() => makeCharacter(
  30902. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30903. {
  30904. front: {
  30905. height: math.unit(8, "feet"),
  30906. weight: math.unit(250, "lb"),
  30907. name: "Front",
  30908. image: {
  30909. source: "./media/characters/eikthynir/front.svg",
  30910. extra: 1332/1166,
  30911. bottom: 82/1414
  30912. }
  30913. },
  30914. back: {
  30915. height: math.unit(8, "feet"),
  30916. weight: math.unit(250, "lb"),
  30917. name: "Back",
  30918. image: {
  30919. source: "./media/characters/eikthynir/back.svg",
  30920. extra: 1342/1190,
  30921. bottom: 19/1361
  30922. }
  30923. },
  30924. dick: {
  30925. height: math.unit(2.35, "feet"),
  30926. name: "Dick",
  30927. image: {
  30928. source: "./media/characters/eikthynir/dick.svg"
  30929. }
  30930. },
  30931. },
  30932. [
  30933. {
  30934. name: "Normal",
  30935. height: math.unit(8, "feet"),
  30936. default: true
  30937. },
  30938. ]
  30939. ))
  30940. characterMakers.push(() => makeCharacter(
  30941. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30942. {
  30943. front: {
  30944. height: math.unit(99, "meters"),
  30945. weight: math.unit(13000, "tons"),
  30946. name: "Front",
  30947. image: {
  30948. source: "./media/characters/zlmos/front.svg",
  30949. extra: 2202/1992,
  30950. bottom: 315/2517
  30951. }
  30952. },
  30953. },
  30954. [
  30955. {
  30956. name: "Macro",
  30957. height: math.unit(99, "meters"),
  30958. default: true
  30959. },
  30960. ]
  30961. ))
  30962. characterMakers.push(() => makeCharacter(
  30963. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30964. {
  30965. front: {
  30966. height: math.unit(6 + 5/12, "feet"),
  30967. name: "Front",
  30968. image: {
  30969. source: "./media/characters/purri/front.svg",
  30970. extra: 1698/1610,
  30971. bottom: 32/1730
  30972. }
  30973. },
  30974. frontAlt: {
  30975. height: math.unit(6 + 5/12, "feet"),
  30976. name: "Front (Alt)",
  30977. image: {
  30978. source: "./media/characters/purri/front-alt.svg",
  30979. extra: 450/420,
  30980. bottom: 26/476
  30981. }
  30982. },
  30983. boots: {
  30984. height: math.unit(5.5, "feet"),
  30985. name: "Boots",
  30986. image: {
  30987. source: "./media/characters/purri/boots.svg",
  30988. extra: 905/853,
  30989. bottom: 18/923
  30990. }
  30991. },
  30992. lying: {
  30993. height: math.unit(2, "feet"),
  30994. name: "Lying",
  30995. image: {
  30996. source: "./media/characters/purri/lying.svg",
  30997. extra: 940/843,
  30998. bottom: 146/1086
  30999. }
  31000. },
  31001. devious: {
  31002. height: math.unit(1.77, "feet"),
  31003. name: "Devious",
  31004. image: {
  31005. source: "./media/characters/purri/devious.svg",
  31006. extra: 1440/1155,
  31007. bottom: 147/1587
  31008. }
  31009. },
  31010. bean: {
  31011. height: math.unit(1.94, "feet"),
  31012. name: "Bean",
  31013. image: {
  31014. source: "./media/characters/purri/bean.svg"
  31015. }
  31016. },
  31017. },
  31018. [
  31019. {
  31020. name: "Micro",
  31021. height: math.unit(1, "mm")
  31022. },
  31023. {
  31024. name: "Normal",
  31025. height: math.unit(6 + 5/12, "feet"),
  31026. default: true
  31027. },
  31028. {
  31029. name: "Macro :3c",
  31030. height: math.unit(2, "miles")
  31031. },
  31032. ]
  31033. ))
  31034. characterMakers.push(() => makeCharacter(
  31035. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31036. {
  31037. front: {
  31038. height: math.unit(6 + 2/12, "feet"),
  31039. weight: math.unit(250, "lb"),
  31040. name: "Front",
  31041. image: {
  31042. source: "./media/characters/moonlight/front.svg",
  31043. extra: 1044/908,
  31044. bottom: 56/1100
  31045. }
  31046. },
  31047. feral: {
  31048. height: math.unit(3 + 1/12, "feet"),
  31049. weight: math.unit(50, "kg"),
  31050. name: "Feral",
  31051. image: {
  31052. source: "./media/characters/moonlight/feral.svg",
  31053. extra: 3705/2791,
  31054. bottom: 145/3850
  31055. }
  31056. },
  31057. paw: {
  31058. height: math.unit(1, "feet"),
  31059. name: "Paw",
  31060. image: {
  31061. source: "./media/characters/moonlight/paw.svg"
  31062. }
  31063. },
  31064. paws: {
  31065. height: math.unit(0.98, "feet"),
  31066. name: "Paws",
  31067. image: {
  31068. source: "./media/characters/moonlight/paws.svg",
  31069. extra: 939/939,
  31070. bottom: 50/989
  31071. }
  31072. },
  31073. mouth: {
  31074. height: math.unit(0.48, "feet"),
  31075. name: "Mouth",
  31076. image: {
  31077. source: "./media/characters/moonlight/mouth.svg"
  31078. }
  31079. },
  31080. dick: {
  31081. height: math.unit(1.46, "feet"),
  31082. name: "Dick",
  31083. image: {
  31084. source: "./media/characters/moonlight/dick.svg"
  31085. }
  31086. },
  31087. },
  31088. [
  31089. {
  31090. name: "Normal",
  31091. height: math.unit(6 + 2/12, "feet"),
  31092. default: true
  31093. },
  31094. {
  31095. name: "Macro",
  31096. height: math.unit(300, "feet")
  31097. },
  31098. {
  31099. name: "Macro+",
  31100. height: math.unit(1, "mile")
  31101. },
  31102. {
  31103. name: "Mt. Moon",
  31104. height: math.unit(5, "miles")
  31105. },
  31106. {
  31107. name: "Megamacro",
  31108. height: math.unit(15, "miles")
  31109. },
  31110. ]
  31111. ))
  31112. characterMakers.push(() => makeCharacter(
  31113. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31114. {
  31115. back: {
  31116. height: math.unit(6, "feet"),
  31117. weight: math.unit(150, "lb"),
  31118. name: "Back",
  31119. image: {
  31120. source: "./media/characters/sylen/back.svg",
  31121. extra: 1335/1273,
  31122. bottom: 107/1442
  31123. }
  31124. },
  31125. },
  31126. [
  31127. {
  31128. name: "Normal",
  31129. height: math.unit(5 + 5/12, "feet")
  31130. },
  31131. {
  31132. name: "Megamacro",
  31133. height: math.unit(3, "miles"),
  31134. default: true
  31135. },
  31136. ]
  31137. ))
  31138. characterMakers.push(() => makeCharacter(
  31139. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31140. {
  31141. front: {
  31142. height: math.unit(6, "feet"),
  31143. weight: math.unit(190, "lb"),
  31144. name: "Front",
  31145. image: {
  31146. source: "./media/characters/huttser/front.svg",
  31147. extra: 1152/1058,
  31148. bottom: 23/1175
  31149. }
  31150. },
  31151. side: {
  31152. height: math.unit(6, "feet"),
  31153. weight: math.unit(190, "lb"),
  31154. name: "Side",
  31155. image: {
  31156. source: "./media/characters/huttser/side.svg",
  31157. extra: 1174/1065,
  31158. bottom: 18/1192
  31159. }
  31160. },
  31161. back: {
  31162. height: math.unit(6, "feet"),
  31163. weight: math.unit(190, "lb"),
  31164. name: "Back",
  31165. image: {
  31166. source: "./media/characters/huttser/back.svg",
  31167. extra: 1158/1056,
  31168. bottom: 12/1170
  31169. }
  31170. },
  31171. },
  31172. [
  31173. ]
  31174. ))
  31175. characterMakers.push(() => makeCharacter(
  31176. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31177. {
  31178. side: {
  31179. height: math.unit(12 + 9/12, "feet"),
  31180. weight: math.unit(15000, "lb"),
  31181. name: "Side",
  31182. image: {
  31183. source: "./media/characters/faan/side.svg",
  31184. extra: 2747/2697,
  31185. bottom: 0/2747
  31186. }
  31187. },
  31188. front: {
  31189. height: math.unit(12 + 9/12, "feet"),
  31190. weight: math.unit(15000, "lb"),
  31191. name: "Front",
  31192. image: {
  31193. source: "./media/characters/faan/front.svg",
  31194. extra: 607/571,
  31195. bottom: 24/631
  31196. }
  31197. },
  31198. head: {
  31199. height: math.unit(2.85, "feet"),
  31200. name: "Head",
  31201. image: {
  31202. source: "./media/characters/faan/head.svg"
  31203. }
  31204. },
  31205. headAlt: {
  31206. height: math.unit(3.13, "feet"),
  31207. name: "Head-alt",
  31208. image: {
  31209. source: "./media/characters/faan/head-alt.svg"
  31210. }
  31211. },
  31212. },
  31213. [
  31214. {
  31215. name: "Normal",
  31216. height: math.unit(12 + 9/12, "feet"),
  31217. default: true
  31218. },
  31219. ]
  31220. ))
  31221. characterMakers.push(() => makeCharacter(
  31222. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31223. {
  31224. front: {
  31225. height: math.unit(6, "feet"),
  31226. weight: math.unit(300, "lb"),
  31227. name: "Front",
  31228. image: {
  31229. source: "./media/characters/tanio/front.svg",
  31230. extra: 711/673,
  31231. bottom: 25/736
  31232. }
  31233. },
  31234. },
  31235. [
  31236. {
  31237. name: "Normal",
  31238. height: math.unit(6, "feet"),
  31239. default: true
  31240. },
  31241. ]
  31242. ))
  31243. characterMakers.push(() => makeCharacter(
  31244. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31245. {
  31246. front: {
  31247. height: math.unit(3, "inches"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/noboru/front.svg",
  31251. extra: 1039/932,
  31252. bottom: 18/1057
  31253. }
  31254. },
  31255. },
  31256. [
  31257. {
  31258. name: "Micro",
  31259. height: math.unit(3, "inches"),
  31260. default: true
  31261. },
  31262. ]
  31263. ))
  31264. characterMakers.push(() => makeCharacter(
  31265. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31266. {
  31267. front: {
  31268. height: math.unit(1.85, "meters"),
  31269. weight: math.unit(80, "kg"),
  31270. name: "Front",
  31271. image: {
  31272. source: "./media/characters/daniel-barrett/front.svg",
  31273. extra: 355/337,
  31274. bottom: 9/364
  31275. }
  31276. },
  31277. },
  31278. [
  31279. {
  31280. name: "Pico",
  31281. height: math.unit(0.0433, "mm")
  31282. },
  31283. {
  31284. name: "Nano",
  31285. height: math.unit(1.5, "mm")
  31286. },
  31287. {
  31288. name: "Micro",
  31289. height: math.unit(5.3, "cm"),
  31290. default: true
  31291. },
  31292. {
  31293. name: "Normal",
  31294. height: math.unit(1.85, "meters")
  31295. },
  31296. {
  31297. name: "Macro",
  31298. height: math.unit(64.7, "meters")
  31299. },
  31300. {
  31301. name: "Megamacro",
  31302. height: math.unit(2.26, "km")
  31303. },
  31304. {
  31305. name: "Gigamacro",
  31306. height: math.unit(79, "km")
  31307. },
  31308. {
  31309. name: "Teramacro",
  31310. height: math.unit(2765, "km")
  31311. },
  31312. {
  31313. name: "Petamacro",
  31314. height: math.unit(96678, "km")
  31315. },
  31316. ]
  31317. ))
  31318. characterMakers.push(() => makeCharacter(
  31319. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31320. {
  31321. front: {
  31322. height: math.unit(30, "meters"),
  31323. weight: math.unit(400, "tons"),
  31324. name: "Front",
  31325. image: {
  31326. source: "./media/characters/zeel/front.svg",
  31327. extra: 2599/2599,
  31328. bottom: 226/2825
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Macro",
  31335. height: math.unit(30, "meters"),
  31336. default: true
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31342. {
  31343. front: {
  31344. height: math.unit(6 + 7/12, "feet"),
  31345. weight: math.unit(210, "lb"),
  31346. name: "Front",
  31347. image: {
  31348. source: "./media/characters/tarn/front.svg",
  31349. extra: 3517/3220,
  31350. bottom: 91/3608
  31351. }
  31352. },
  31353. back: {
  31354. height: math.unit(6 + 7/12, "feet"),
  31355. weight: math.unit(210, "lb"),
  31356. name: "Back",
  31357. image: {
  31358. source: "./media/characters/tarn/back.svg",
  31359. extra: 3566/3241,
  31360. bottom: 34/3600
  31361. }
  31362. },
  31363. dick: {
  31364. height: math.unit(1.65, "feet"),
  31365. name: "Dick",
  31366. image: {
  31367. source: "./media/characters/tarn/dick.svg"
  31368. }
  31369. },
  31370. paw: {
  31371. height: math.unit(1.80, "feet"),
  31372. name: "Paw",
  31373. image: {
  31374. source: "./media/characters/tarn/paw.svg"
  31375. }
  31376. },
  31377. tongue: {
  31378. height: math.unit(0.97, "feet"),
  31379. name: "Tongue",
  31380. image: {
  31381. source: "./media/characters/tarn/tongue.svg"
  31382. }
  31383. },
  31384. },
  31385. [
  31386. {
  31387. name: "Micro",
  31388. height: math.unit(4, "inches")
  31389. },
  31390. {
  31391. name: "Normal",
  31392. height: math.unit(6 + 7/12, "feet"),
  31393. default: true
  31394. },
  31395. {
  31396. name: "Macro",
  31397. height: math.unit(300, "feet")
  31398. },
  31399. ]
  31400. ))
  31401. characterMakers.push(() => makeCharacter(
  31402. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31403. {
  31404. front: {
  31405. height: math.unit(5 + 7/12, "feet"),
  31406. weight: math.unit(80, "kg"),
  31407. name: "Front",
  31408. image: {
  31409. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31410. extra: 3023/2865,
  31411. bottom: 33/3056
  31412. }
  31413. },
  31414. back: {
  31415. height: math.unit(5 + 7/12, "feet"),
  31416. weight: math.unit(80, "kg"),
  31417. name: "Back",
  31418. image: {
  31419. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31420. extra: 3020/2886,
  31421. bottom: 30/3050
  31422. }
  31423. },
  31424. dick: {
  31425. height: math.unit(0.98, "feet"),
  31426. name: "Dick",
  31427. image: {
  31428. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31429. }
  31430. },
  31431. anatomy: {
  31432. height: math.unit(2.86, "feet"),
  31433. name: "Anatomy",
  31434. image: {
  31435. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31436. }
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Really Small",
  31442. height: math.unit(2, "inches")
  31443. },
  31444. {
  31445. name: "Micro",
  31446. height: math.unit(5.583, "inches")
  31447. },
  31448. {
  31449. name: "Normal",
  31450. height: math.unit(5 + 7/12, "feet"),
  31451. default: true
  31452. },
  31453. {
  31454. name: "Macro",
  31455. height: math.unit(67, "feet")
  31456. },
  31457. {
  31458. name: "Megamacro",
  31459. height: math.unit(134, "feet")
  31460. },
  31461. ]
  31462. ))
  31463. characterMakers.push(() => makeCharacter(
  31464. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31465. {
  31466. front: {
  31467. height: math.unit(9, "feet"),
  31468. weight: math.unit(120, "lb"),
  31469. name: "Front",
  31470. image: {
  31471. source: "./media/characters/sally/front.svg",
  31472. extra: 1506/1349,
  31473. bottom: 66/1572
  31474. }
  31475. },
  31476. },
  31477. [
  31478. {
  31479. name: "Normal",
  31480. height: math.unit(9, "feet"),
  31481. default: true
  31482. },
  31483. ]
  31484. ))
  31485. characterMakers.push(() => makeCharacter(
  31486. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31487. {
  31488. front: {
  31489. height: math.unit(8, "feet"),
  31490. weight: math.unit(900, "lb"),
  31491. name: "Front",
  31492. image: {
  31493. source: "./media/characters/owen/front.svg",
  31494. extra: 1761/1657,
  31495. bottom: 74/1835
  31496. }
  31497. },
  31498. side: {
  31499. height: math.unit(8, "feet"),
  31500. weight: math.unit(900, "lb"),
  31501. name: "Side",
  31502. image: {
  31503. source: "./media/characters/owen/side.svg",
  31504. extra: 1797/1734,
  31505. bottom: 30/1827
  31506. }
  31507. },
  31508. back: {
  31509. height: math.unit(8, "feet"),
  31510. weight: math.unit(900, "lb"),
  31511. name: "Back",
  31512. image: {
  31513. source: "./media/characters/owen/back.svg",
  31514. extra: 1796/1706,
  31515. bottom: 59/1855
  31516. }
  31517. },
  31518. maw: {
  31519. height: math.unit(1.76, "feet"),
  31520. name: "Maw",
  31521. image: {
  31522. source: "./media/characters/owen/maw.svg"
  31523. }
  31524. },
  31525. },
  31526. [
  31527. {
  31528. name: "Normal",
  31529. height: math.unit(8, "feet"),
  31530. default: true
  31531. },
  31532. ]
  31533. ))
  31534. characterMakers.push(() => makeCharacter(
  31535. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31536. {
  31537. front: {
  31538. height: math.unit(4, "feet"),
  31539. weight: math.unit(400, "lb"),
  31540. name: "Front",
  31541. image: {
  31542. source: "./media/characters/ryth/front.svg",
  31543. extra: 876/691,
  31544. bottom: 25/901
  31545. }
  31546. },
  31547. goia: {
  31548. height: math.unit(12, "feet"),
  31549. weight: math.unit(10800, "lb"),
  31550. name: "Goia",
  31551. image: {
  31552. source: "./media/characters/ryth/goia.svg",
  31553. extra: 3450/3198,
  31554. bottom: 61/3511
  31555. }
  31556. },
  31557. },
  31558. [
  31559. {
  31560. name: "Normal",
  31561. height: math.unit(4, "feet"),
  31562. default: true
  31563. },
  31564. ]
  31565. ))
  31566. characterMakers.push(() => makeCharacter(
  31567. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31568. {
  31569. front: {
  31570. height: math.unit(7, "feet"),
  31571. weight: math.unit(180, "lb"),
  31572. name: "Front",
  31573. image: {
  31574. source: "./media/characters/necrolance/front.svg",
  31575. extra: 1062/947,
  31576. bottom: 41/1103
  31577. }
  31578. },
  31579. back: {
  31580. height: math.unit(7, "feet"),
  31581. weight: math.unit(180, "lb"),
  31582. name: "Back",
  31583. image: {
  31584. source: "./media/characters/necrolance/back.svg",
  31585. extra: 1045/984,
  31586. bottom: 14/1059
  31587. }
  31588. },
  31589. wing: {
  31590. height: math.unit(2.67, "feet"),
  31591. name: "Wing",
  31592. image: {
  31593. source: "./media/characters/necrolance/wing.svg"
  31594. }
  31595. },
  31596. },
  31597. [
  31598. {
  31599. name: "Normal",
  31600. height: math.unit(7, "feet"),
  31601. default: true
  31602. },
  31603. ]
  31604. ))
  31605. characterMakers.push(() => makeCharacter(
  31606. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31607. {
  31608. front: {
  31609. height: math.unit(76, "meters"),
  31610. weight: math.unit(30000, "tons"),
  31611. name: "Front",
  31612. image: {
  31613. source: "./media/characters/tyler/front.svg",
  31614. extra: 1640/1640,
  31615. bottom: 114/1754
  31616. }
  31617. },
  31618. },
  31619. [
  31620. {
  31621. name: "Macro",
  31622. height: math.unit(76, "meters"),
  31623. default: true
  31624. },
  31625. ]
  31626. ))
  31627. characterMakers.push(() => makeCharacter(
  31628. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31629. {
  31630. front: {
  31631. height: math.unit(4 + 11/12, "feet"),
  31632. weight: math.unit(132, "lb"),
  31633. name: "Front",
  31634. image: {
  31635. source: "./media/characters/icey/front.svg",
  31636. extra: 2750/2550,
  31637. bottom: 33/2783
  31638. }
  31639. },
  31640. back: {
  31641. height: math.unit(4 + 11/12, "feet"),
  31642. weight: math.unit(132, "lb"),
  31643. name: "Back",
  31644. image: {
  31645. source: "./media/characters/icey/back.svg",
  31646. extra: 2624/2481,
  31647. bottom: 35/2659
  31648. }
  31649. },
  31650. },
  31651. [
  31652. {
  31653. name: "Normal",
  31654. height: math.unit(4 + 11/12, "feet"),
  31655. default: true
  31656. },
  31657. ]
  31658. ))
  31659. characterMakers.push(() => makeCharacter(
  31660. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31661. {
  31662. front: {
  31663. height: math.unit(100, "feet"),
  31664. weight: math.unit(0, "lb"),
  31665. name: "Front",
  31666. image: {
  31667. source: "./media/characters/smile/front.svg",
  31668. extra: 2983/2912,
  31669. bottom: 162/3145
  31670. }
  31671. },
  31672. back: {
  31673. height: math.unit(100, "feet"),
  31674. weight: math.unit(0, "lb"),
  31675. name: "Back",
  31676. image: {
  31677. source: "./media/characters/smile/back.svg",
  31678. extra: 3143/3031,
  31679. bottom: 91/3234
  31680. }
  31681. },
  31682. head: {
  31683. height: math.unit(26.3, "feet"),
  31684. weight: math.unit(0, "lb"),
  31685. name: "Head",
  31686. image: {
  31687. source: "./media/characters/smile/head.svg"
  31688. }
  31689. },
  31690. collar: {
  31691. height: math.unit(5.3, "feet"),
  31692. weight: math.unit(0, "lb"),
  31693. name: "Collar",
  31694. image: {
  31695. source: "./media/characters/smile/collar.svg"
  31696. }
  31697. },
  31698. },
  31699. [
  31700. {
  31701. name: "Macro",
  31702. height: math.unit(100, "feet"),
  31703. default: true
  31704. },
  31705. ]
  31706. ))
  31707. characterMakers.push(() => makeCharacter(
  31708. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31709. {
  31710. dragon: {
  31711. height: math.unit(26, "feet"),
  31712. weight: math.unit(36, "tons"),
  31713. name: "Dragon",
  31714. image: {
  31715. source: "./media/characters/arimphae/dragon.svg",
  31716. extra: 1574/983,
  31717. bottom: 357/1931
  31718. }
  31719. },
  31720. drake: {
  31721. height: math.unit(9, "feet"),
  31722. weight: math.unit(1.5, "tons"),
  31723. name: "Drake",
  31724. image: {
  31725. source: "./media/characters/arimphae/drake.svg",
  31726. extra: 1120/925,
  31727. bottom: 435/1555
  31728. }
  31729. },
  31730. },
  31731. [
  31732. {
  31733. name: "Small",
  31734. height: math.unit(26*5/9, "feet")
  31735. },
  31736. {
  31737. name: "Normal",
  31738. height: math.unit(26, "feet"),
  31739. default: true
  31740. },
  31741. ]
  31742. ))
  31743. characterMakers.push(() => makeCharacter(
  31744. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31745. {
  31746. front: {
  31747. height: math.unit(8 + 9/12, "feet"),
  31748. name: "Front",
  31749. image: {
  31750. source: "./media/characters/xander/front.svg",
  31751. extra: 848/673,
  31752. bottom: 62/910
  31753. }
  31754. },
  31755. },
  31756. [
  31757. {
  31758. name: "Normal",
  31759. height: math.unit(8 + 9/12, "feet"),
  31760. default: true
  31761. },
  31762. {
  31763. name: "Gaze Grabber",
  31764. height: math.unit(13 + 8/12, "feet")
  31765. },
  31766. {
  31767. name: "Jaw Dropper",
  31768. height: math.unit(27, "feet")
  31769. },
  31770. {
  31771. name: "Show Stopper",
  31772. height: math.unit(136, "feet")
  31773. },
  31774. {
  31775. name: "Superstar",
  31776. height: math.unit(1.9e6, "miles")
  31777. },
  31778. ]
  31779. ))
  31780. characterMakers.push(() => makeCharacter(
  31781. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31782. {
  31783. side: {
  31784. height: math.unit(2100, "feet"),
  31785. name: "Side",
  31786. image: {
  31787. source: "./media/characters/osiris/side.svg",
  31788. extra: 1105/939,
  31789. bottom: 167/1272
  31790. }
  31791. },
  31792. },
  31793. [
  31794. {
  31795. name: "Macro",
  31796. height: math.unit(2100, "feet"),
  31797. default: true
  31798. },
  31799. ]
  31800. ))
  31801. characterMakers.push(() => makeCharacter(
  31802. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31803. {
  31804. front: {
  31805. height: math.unit(6 + 8/12, "feet"),
  31806. weight: math.unit(225, "lb"),
  31807. name: "Front",
  31808. image: {
  31809. source: "./media/characters/rhys-londe/front.svg",
  31810. extra: 2258/2141,
  31811. bottom: 188/2446
  31812. }
  31813. },
  31814. back: {
  31815. height: math.unit(6 + 8/12, "feet"),
  31816. weight: math.unit(225, "lb"),
  31817. name: "Back",
  31818. image: {
  31819. source: "./media/characters/rhys-londe/back.svg",
  31820. extra: 2237/2137,
  31821. bottom: 63/2300
  31822. }
  31823. },
  31824. frontNsfw: {
  31825. height: math.unit(6 + 8/12, "feet"),
  31826. weight: math.unit(225, "lb"),
  31827. name: "Front (NSFW)",
  31828. image: {
  31829. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31830. extra: 2258/2141,
  31831. bottom: 188/2446
  31832. }
  31833. },
  31834. backNsfw: {
  31835. height: math.unit(6 + 8/12, "feet"),
  31836. weight: math.unit(225, "lb"),
  31837. name: "Back (NSFW)",
  31838. image: {
  31839. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31840. extra: 2237/2137,
  31841. bottom: 63/2300
  31842. }
  31843. },
  31844. dick: {
  31845. height: math.unit(30, "inches"),
  31846. name: "Dick",
  31847. image: {
  31848. source: "./media/characters/rhys-londe/dick.svg"
  31849. }
  31850. },
  31851. maw: {
  31852. height: math.unit(1.6, "feet"),
  31853. name: "Maw",
  31854. image: {
  31855. source: "./media/characters/rhys-londe/maw.svg"
  31856. }
  31857. },
  31858. },
  31859. [
  31860. {
  31861. name: "Normal",
  31862. height: math.unit(6 + 8/12, "feet"),
  31863. default: true
  31864. },
  31865. ]
  31866. ))
  31867. characterMakers.push(() => makeCharacter(
  31868. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31869. {
  31870. front: {
  31871. height: math.unit(3 + 10/12, "feet"),
  31872. weight: math.unit(90, "lb"),
  31873. name: "Front",
  31874. image: {
  31875. source: "./media/characters/taivas-ensim/front.svg",
  31876. extra: 1327/1216,
  31877. bottom: 96/1423
  31878. }
  31879. },
  31880. back: {
  31881. height: math.unit(3 + 10/12, "feet"),
  31882. weight: math.unit(90, "lb"),
  31883. name: "Back",
  31884. image: {
  31885. source: "./media/characters/taivas-ensim/back.svg",
  31886. extra: 1355/1247,
  31887. bottom: 11/1366
  31888. }
  31889. },
  31890. frontNsfw: {
  31891. height: math.unit(3 + 10/12, "feet"),
  31892. weight: math.unit(90, "lb"),
  31893. name: "Front (NSFW)",
  31894. image: {
  31895. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31896. extra: 1327/1216,
  31897. bottom: 96/1423
  31898. }
  31899. },
  31900. backNsfw: {
  31901. height: math.unit(3 + 10/12, "feet"),
  31902. weight: math.unit(90, "lb"),
  31903. name: "Back (NSFW)",
  31904. image: {
  31905. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31906. extra: 1355/1247,
  31907. bottom: 11/1366
  31908. }
  31909. },
  31910. },
  31911. [
  31912. {
  31913. name: "Normal",
  31914. height: math.unit(3 + 10/12, "feet"),
  31915. default: true
  31916. },
  31917. ]
  31918. ))
  31919. characterMakers.push(() => makeCharacter(
  31920. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31921. {
  31922. front: {
  31923. height: math.unit(9 + 6/12, "feet"),
  31924. weight: math.unit(940, "lb"),
  31925. name: "Front",
  31926. image: {
  31927. source: "./media/characters/byliss/front.svg",
  31928. extra: 1327/1290,
  31929. bottom: 82/1409
  31930. }
  31931. },
  31932. back: {
  31933. height: math.unit(9 + 6/12, "feet"),
  31934. weight: math.unit(940, "lb"),
  31935. name: "Back",
  31936. image: {
  31937. source: "./media/characters/byliss/back.svg",
  31938. extra: 1376/1349,
  31939. bottom: 9/1385
  31940. }
  31941. },
  31942. frontNsfw: {
  31943. height: math.unit(9 + 6/12, "feet"),
  31944. weight: math.unit(940, "lb"),
  31945. name: "Front (NSFW)",
  31946. image: {
  31947. source: "./media/characters/byliss/front-nsfw.svg",
  31948. extra: 1327/1290,
  31949. bottom: 82/1409
  31950. }
  31951. },
  31952. backNsfw: {
  31953. height: math.unit(9 + 6/12, "feet"),
  31954. weight: math.unit(940, "lb"),
  31955. name: "Back (NSFW)",
  31956. image: {
  31957. source: "./media/characters/byliss/back-nsfw.svg",
  31958. extra: 1376/1349,
  31959. bottom: 9/1385
  31960. }
  31961. },
  31962. },
  31963. [
  31964. {
  31965. name: "Normal",
  31966. height: math.unit(9 + 6/12, "feet"),
  31967. default: true
  31968. },
  31969. ]
  31970. ))
  31971. characterMakers.push(() => makeCharacter(
  31972. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31973. {
  31974. front: {
  31975. height: math.unit(5 + 2/12, "feet"),
  31976. weight: math.unit(200, "lb"),
  31977. name: "Front",
  31978. image: {
  31979. source: "./media/characters/noraly/front.svg",
  31980. extra: 4985/4773,
  31981. bottom: 150/5135
  31982. }
  31983. },
  31984. full: {
  31985. height: math.unit(5 + 2/12, "feet"),
  31986. weight: math.unit(164, "lb"),
  31987. name: "Full",
  31988. image: {
  31989. source: "./media/characters/noraly/full.svg",
  31990. extra: 1114/1059,
  31991. bottom: 35/1149
  31992. }
  31993. },
  31994. fuller: {
  31995. height: math.unit(5 + 2/12, "feet"),
  31996. weight: math.unit(230, "lb"),
  31997. name: "Fuller",
  31998. image: {
  31999. source: "./media/characters/noraly/fuller.svg",
  32000. extra: 1114/1059,
  32001. bottom: 35/1149
  32002. }
  32003. },
  32004. fullest: {
  32005. height: math.unit(5 + 2/12, "feet"),
  32006. weight: math.unit(300, "lb"),
  32007. name: "Fullest",
  32008. image: {
  32009. source: "./media/characters/noraly/fullest.svg",
  32010. extra: 1114/1059,
  32011. bottom: 35/1149
  32012. }
  32013. },
  32014. },
  32015. [
  32016. {
  32017. name: "Normal",
  32018. height: math.unit(5 + 2/12, "feet"),
  32019. default: true
  32020. },
  32021. ]
  32022. ))
  32023. characterMakers.push(() => makeCharacter(
  32024. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32025. {
  32026. front: {
  32027. height: math.unit(5 + 2/12, "feet"),
  32028. weight: math.unit(210, "lb"),
  32029. name: "Front",
  32030. image: {
  32031. source: "./media/characters/pera/front.svg",
  32032. extra: 1560/1531,
  32033. bottom: 165/1725
  32034. }
  32035. },
  32036. back: {
  32037. height: math.unit(5 + 2/12, "feet"),
  32038. weight: math.unit(210, "lb"),
  32039. name: "Back",
  32040. image: {
  32041. source: "./media/characters/pera/back.svg",
  32042. extra: 1523/1493,
  32043. bottom: 152/1675
  32044. }
  32045. },
  32046. dick: {
  32047. height: math.unit(2.4, "feet"),
  32048. name: "Dick",
  32049. image: {
  32050. source: "./media/characters/pera/dick.svg"
  32051. }
  32052. },
  32053. },
  32054. [
  32055. {
  32056. name: "Normal",
  32057. height: math.unit(5 + 2/12, "feet"),
  32058. default: true
  32059. },
  32060. ]
  32061. ))
  32062. characterMakers.push(() => makeCharacter(
  32063. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32064. {
  32065. front: {
  32066. height: math.unit(12, "feet"),
  32067. weight: math.unit(3200, "lb"),
  32068. name: "Front",
  32069. image: {
  32070. source: "./media/characters/julian/front.svg",
  32071. extra: 2962/2701,
  32072. bottom: 184/3146
  32073. }
  32074. },
  32075. maw: {
  32076. height: math.unit(5.35, "feet"),
  32077. name: "Maw",
  32078. image: {
  32079. source: "./media/characters/julian/maw.svg"
  32080. }
  32081. },
  32082. paw: {
  32083. height: math.unit(3.07, "feet"),
  32084. name: "Paw",
  32085. image: {
  32086. source: "./media/characters/julian/paw.svg"
  32087. }
  32088. },
  32089. },
  32090. [
  32091. {
  32092. name: "Default",
  32093. height: math.unit(12, "feet"),
  32094. default: true
  32095. },
  32096. {
  32097. name: "Big",
  32098. height: math.unit(50, "feet")
  32099. },
  32100. {
  32101. name: "Really Big",
  32102. height: math.unit(1, "mile")
  32103. },
  32104. {
  32105. name: "Extremely Big",
  32106. height: math.unit(100, "miles")
  32107. },
  32108. {
  32109. name: "Planet Hugger",
  32110. height: math.unit(200, "megameters")
  32111. },
  32112. {
  32113. name: "Unreasonably Big",
  32114. height: math.unit(1e300, "meters")
  32115. },
  32116. ]
  32117. ))
  32118. characterMakers.push(() => makeCharacter(
  32119. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32120. {
  32121. solgooleo: {
  32122. height: math.unit(4, "meters"),
  32123. weight: math.unit(6000*1.5, "kg"),
  32124. volume: math.unit(6000, "liters"),
  32125. name: "Solgooleo",
  32126. image: {
  32127. source: "./media/characters/pi/solgooleo.svg",
  32128. extra: 388/331,
  32129. bottom: 29/417
  32130. }
  32131. },
  32132. },
  32133. [
  32134. {
  32135. name: "Normal",
  32136. height: math.unit(4, "meters"),
  32137. default: true
  32138. },
  32139. ]
  32140. ))
  32141. characterMakers.push(() => makeCharacter(
  32142. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32143. {
  32144. front: {
  32145. height: math.unit(8 + 2/12, "feet"),
  32146. weight: math.unit(4, "tons"),
  32147. name: "Front",
  32148. image: {
  32149. source: "./media/characters/shaun/front.svg",
  32150. extra: 1550/1505,
  32151. bottom: 353/1903
  32152. }
  32153. },
  32154. },
  32155. [
  32156. {
  32157. name: "Lorg",
  32158. height: math.unit(8 + 2/12, "feet"),
  32159. default: true
  32160. },
  32161. ]
  32162. ))
  32163. characterMakers.push(() => makeCharacter(
  32164. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32165. {
  32166. front: {
  32167. height: math.unit(7, "feet"),
  32168. name: "Front",
  32169. image: {
  32170. source: "./media/characters/sini/front.svg",
  32171. extra: 726/678,
  32172. bottom: 35/761
  32173. }
  32174. },
  32175. back: {
  32176. height: math.unit(7, "feet"),
  32177. name: "Back",
  32178. image: {
  32179. source: "./media/characters/sini/back.svg",
  32180. extra: 743/701,
  32181. bottom: 12/755
  32182. }
  32183. },
  32184. mawAnthro: {
  32185. height: math.unit(2.14, "feet"),
  32186. name: "Maw (Anthro)",
  32187. image: {
  32188. source: "./media/characters/sini/maw-anthro.svg"
  32189. }
  32190. },
  32191. dick: {
  32192. height: math.unit(1.45, "feet"),
  32193. name: "Dick (Anthro)",
  32194. image: {
  32195. source: "./media/characters/sini/dick-anthro.svg"
  32196. }
  32197. },
  32198. feral: {
  32199. height: math.unit(13, "feet"),
  32200. name: "Feral",
  32201. image: {
  32202. source: "./media/characters/sini/feral.svg",
  32203. extra: 814/605,
  32204. bottom: 11/825
  32205. }
  32206. },
  32207. mawFeral: {
  32208. height: math.unit(4.6, "feet"),
  32209. name: "Maw-feral",
  32210. image: {
  32211. source: "./media/characters/sini/maw-feral.svg"
  32212. }
  32213. },
  32214. footFeral: {
  32215. height: math.unit(4.2, "feet"),
  32216. name: "Foot-feral",
  32217. image: {
  32218. source: "./media/characters/sini/foot-feral.svg"
  32219. }
  32220. },
  32221. },
  32222. [
  32223. {
  32224. name: "Normal",
  32225. height: math.unit(7, "feet"),
  32226. default: true
  32227. },
  32228. ]
  32229. ))
  32230. characterMakers.push(() => makeCharacter(
  32231. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32232. {
  32233. side: {
  32234. height: math.unit(13, "meters"),
  32235. weight: math.unit(9072, "kg"),
  32236. name: "Side",
  32237. image: {
  32238. source: "./media/characters/raylldo/side.svg",
  32239. extra: 403/344,
  32240. bottom: 42/445
  32241. }
  32242. },
  32243. leaping: {
  32244. height: math.unit(12.3, "meters"),
  32245. weight: math.unit(9072, "kg"),
  32246. name: "Leaping",
  32247. image: {
  32248. source: "./media/characters/raylldo/leaping.svg",
  32249. extra: 470/249,
  32250. bottom: 13/483
  32251. }
  32252. },
  32253. flying: {
  32254. height: math.unit(18, "meters"),
  32255. weight: math.unit(9072, "kg"),
  32256. name: "Flying",
  32257. image: {
  32258. source: "./media/characters/raylldo/flying.svg"
  32259. }
  32260. },
  32261. head: {
  32262. height: math.unit(5.85, "meters"),
  32263. name: "Head",
  32264. image: {
  32265. source: "./media/characters/raylldo/head.svg"
  32266. }
  32267. },
  32268. maw: {
  32269. height: math.unit(5.32, "meters"),
  32270. name: "Maw",
  32271. image: {
  32272. source: "./media/characters/raylldo/maw.svg"
  32273. }
  32274. },
  32275. eye: {
  32276. height: math.unit(0.54, "meters"),
  32277. name: "Eye",
  32278. image: {
  32279. source: "./media/characters/raylldo/eye.svg"
  32280. }
  32281. },
  32282. },
  32283. [
  32284. {
  32285. name: "Normal",
  32286. height: math.unit(13, "meters"),
  32287. default: true
  32288. },
  32289. ]
  32290. ))
  32291. characterMakers.push(() => makeCharacter(
  32292. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32293. {
  32294. anthroFront: {
  32295. height: math.unit(9, "feet"),
  32296. weight: math.unit(600, "lb"),
  32297. name: "Anthro (Front)",
  32298. image: {
  32299. source: "./media/characters/glint/anthro-front.svg",
  32300. extra: 1097/1018,
  32301. bottom: 28/1125
  32302. }
  32303. },
  32304. anthroBack: {
  32305. height: math.unit(9, "feet"),
  32306. weight: math.unit(600, "lb"),
  32307. name: "Anthro (Back)",
  32308. image: {
  32309. source: "./media/characters/glint/anthro-back.svg",
  32310. extra: 1154/997,
  32311. bottom: 36/1190
  32312. }
  32313. },
  32314. feral: {
  32315. height: math.unit(11, "feet"),
  32316. weight: math.unit(50000, "lb"),
  32317. name: "Feral",
  32318. image: {
  32319. source: "./media/characters/glint/feral.svg",
  32320. extra: 3035/1585,
  32321. bottom: 1169/4204
  32322. }
  32323. },
  32324. dickAnthro: {
  32325. height: math.unit(0.7, "meters"),
  32326. name: "Dick (Anthro)",
  32327. image: {
  32328. source: "./media/characters/glint/dick-anthro.svg"
  32329. }
  32330. },
  32331. dickFeral: {
  32332. height: math.unit(2.65, "meters"),
  32333. name: "Dick (Feral)",
  32334. image: {
  32335. source: "./media/characters/glint/dick-feral.svg"
  32336. }
  32337. },
  32338. slitHidden: {
  32339. height: math.unit(5.85, "meters"),
  32340. name: "Slit (Hidden)",
  32341. image: {
  32342. source: "./media/characters/glint/slit-hidden.svg"
  32343. }
  32344. },
  32345. slitErect: {
  32346. height: math.unit(5.85, "meters"),
  32347. name: "Slit (Erect)",
  32348. image: {
  32349. source: "./media/characters/glint/slit-erect.svg"
  32350. }
  32351. },
  32352. mawAnthro: {
  32353. height: math.unit(0.63, "meters"),
  32354. name: "Maw (Anthro)",
  32355. image: {
  32356. source: "./media/characters/glint/maw.svg"
  32357. }
  32358. },
  32359. mawFeral: {
  32360. height: math.unit(2.89, "meters"),
  32361. name: "Maw (Feral)",
  32362. image: {
  32363. source: "./media/characters/glint/maw.svg"
  32364. }
  32365. },
  32366. },
  32367. [
  32368. {
  32369. name: "Normal",
  32370. height: math.unit(9, "feet"),
  32371. default: true
  32372. },
  32373. ]
  32374. ))
  32375. characterMakers.push(() => makeCharacter(
  32376. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32377. {
  32378. side: {
  32379. height: math.unit(15, "feet"),
  32380. weight: math.unit(5000, "kg"),
  32381. name: "Side",
  32382. image: {
  32383. source: "./media/characters/kairne/side.svg",
  32384. extra: 979/811,
  32385. bottom: 13/992
  32386. }
  32387. },
  32388. front: {
  32389. height: math.unit(15, "feet"),
  32390. weight: math.unit(5000, "kg"),
  32391. name: "Front",
  32392. image: {
  32393. source: "./media/characters/kairne/front.svg",
  32394. extra: 908/814,
  32395. bottom: 26/934
  32396. }
  32397. },
  32398. sideNsfw: {
  32399. height: math.unit(15, "feet"),
  32400. weight: math.unit(5000, "kg"),
  32401. name: "Side (NSFW)",
  32402. image: {
  32403. source: "./media/characters/kairne/side-nsfw.svg",
  32404. extra: 979/811,
  32405. bottom: 13/992
  32406. }
  32407. },
  32408. frontNsfw: {
  32409. height: math.unit(15, "feet"),
  32410. weight: math.unit(5000, "kg"),
  32411. name: "Front (NSFW)",
  32412. image: {
  32413. source: "./media/characters/kairne/front-nsfw.svg",
  32414. extra: 908/814,
  32415. bottom: 26/934
  32416. }
  32417. },
  32418. dickCaged: {
  32419. height: math.unit(0.65, "meters"),
  32420. name: "Dick-caged",
  32421. image: {
  32422. source: "./media/characters/kairne/dick-caged.svg"
  32423. }
  32424. },
  32425. dick: {
  32426. height: math.unit(0.79, "meters"),
  32427. name: "Dick",
  32428. image: {
  32429. source: "./media/characters/kairne/dick.svg"
  32430. }
  32431. },
  32432. genitals: {
  32433. height: math.unit(1.29, "meters"),
  32434. name: "Genitals",
  32435. image: {
  32436. source: "./media/characters/kairne/genitals.svg"
  32437. }
  32438. },
  32439. maw: {
  32440. height: math.unit(1.73, "meters"),
  32441. name: "Maw",
  32442. image: {
  32443. source: "./media/characters/kairne/maw.svg"
  32444. }
  32445. },
  32446. },
  32447. [
  32448. {
  32449. name: "Normal",
  32450. height: math.unit(15, "feet"),
  32451. default: true
  32452. },
  32453. ]
  32454. ))
  32455. characterMakers.push(() => makeCharacter(
  32456. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32457. {
  32458. front: {
  32459. height: math.unit(5 + 8/12, "feet"),
  32460. weight: math.unit(139, "lb"),
  32461. name: "Front",
  32462. image: {
  32463. source: "./media/characters/biscuit-jackal/front.svg",
  32464. extra: 2106/1961,
  32465. bottom: 58/2164
  32466. }
  32467. },
  32468. back: {
  32469. height: math.unit(5 + 8/12, "feet"),
  32470. weight: math.unit(139, "lb"),
  32471. name: "Back",
  32472. image: {
  32473. source: "./media/characters/biscuit-jackal/back.svg",
  32474. extra: 2132/1976,
  32475. bottom: 57/2189
  32476. }
  32477. },
  32478. werejackal: {
  32479. height: math.unit(6 + 3/12, "feet"),
  32480. weight: math.unit(188, "lb"),
  32481. name: "Werejackal",
  32482. image: {
  32483. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32484. extra: 2373/2178,
  32485. bottom: 53/2426
  32486. }
  32487. },
  32488. },
  32489. [
  32490. {
  32491. name: "Normal",
  32492. height: math.unit(5 + 8/12, "feet"),
  32493. default: true
  32494. },
  32495. ]
  32496. ))
  32497. characterMakers.push(() => makeCharacter(
  32498. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32499. {
  32500. front: {
  32501. height: math.unit(140, "cm"),
  32502. weight: math.unit(45, "kg"),
  32503. name: "Front",
  32504. image: {
  32505. source: "./media/characters/tayra-white/front.svg",
  32506. extra: 2229/2192,
  32507. bottom: 75/2304
  32508. }
  32509. },
  32510. },
  32511. [
  32512. {
  32513. name: "Normal",
  32514. height: math.unit(140, "cm"),
  32515. default: true
  32516. },
  32517. ]
  32518. ))
  32519. characterMakers.push(() => makeCharacter(
  32520. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32521. {
  32522. front: {
  32523. height: math.unit(4 + 5/12, "feet"),
  32524. name: "Front",
  32525. image: {
  32526. source: "./media/characters/scoop/front.svg",
  32527. extra: 1257/1136,
  32528. bottom: 69/1326
  32529. }
  32530. },
  32531. back: {
  32532. height: math.unit(4 + 5/12, "feet"),
  32533. name: "Back",
  32534. image: {
  32535. source: "./media/characters/scoop/back.svg",
  32536. extra: 1321/1152,
  32537. bottom: 32/1353
  32538. }
  32539. },
  32540. maw: {
  32541. height: math.unit(0.68, "feet"),
  32542. name: "Maw",
  32543. image: {
  32544. source: "./media/characters/scoop/maw.svg"
  32545. }
  32546. },
  32547. },
  32548. [
  32549. {
  32550. name: "Really Small",
  32551. height: math.unit(1, "mm")
  32552. },
  32553. {
  32554. name: "Micro",
  32555. height: math.unit(1, "inch")
  32556. },
  32557. {
  32558. name: "Normal",
  32559. height: math.unit(4 + 5/12, "feet"),
  32560. default: true
  32561. },
  32562. {
  32563. name: "Macro",
  32564. height: math.unit(200, "feet")
  32565. },
  32566. {
  32567. name: "Megamacro",
  32568. height: math.unit(3240, "feet")
  32569. },
  32570. {
  32571. name: "Teramacro",
  32572. height: math.unit(2500, "miles")
  32573. },
  32574. ]
  32575. ))
  32576. characterMakers.push(() => makeCharacter(
  32577. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32578. {
  32579. front: {
  32580. height: math.unit(15 + 7/12, "feet"),
  32581. name: "Front",
  32582. image: {
  32583. source: "./media/characters/saphinara/front.svg",
  32584. extra: 604/546,
  32585. bottom: 19/623
  32586. }
  32587. },
  32588. side: {
  32589. height: math.unit(15 + 7/12, "feet"),
  32590. name: "Side",
  32591. image: {
  32592. source: "./media/characters/saphinara/side.svg",
  32593. extra: 605/547,
  32594. bottom: 6/611
  32595. }
  32596. },
  32597. back: {
  32598. height: math.unit(15 + 7/12, "feet"),
  32599. name: "Back",
  32600. image: {
  32601. source: "./media/characters/saphinara/back.svg",
  32602. extra: 591/531,
  32603. bottom: 13/604
  32604. }
  32605. },
  32606. frontTail: {
  32607. height: math.unit(15 + 7/12, "feet"),
  32608. name: "Front (Full Tail)",
  32609. image: {
  32610. source: "./media/characters/saphinara/front-tail.svg",
  32611. extra: 748/547,
  32612. bottom: 66/814
  32613. }
  32614. },
  32615. },
  32616. [
  32617. {
  32618. name: "Normal",
  32619. height: math.unit(15 + 7/12, "feet"),
  32620. default: true
  32621. },
  32622. {
  32623. name: "Angry",
  32624. height: math.unit(30 + 6/12, "feet")
  32625. },
  32626. {
  32627. name: "Enraged",
  32628. height: math.unit(102 + 1/12, "feet")
  32629. },
  32630. ]
  32631. ))
  32632. characterMakers.push(() => makeCharacter(
  32633. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32634. {
  32635. front: {
  32636. height: math.unit(6 + 8/12, "feet"),
  32637. weight: math.unit(300, "lb"),
  32638. name: "Front",
  32639. image: {
  32640. source: "./media/characters/jrain/front.svg",
  32641. extra: 3039/2865,
  32642. bottom: 399/3438
  32643. }
  32644. },
  32645. back: {
  32646. height: math.unit(6 + 8/12, "feet"),
  32647. weight: math.unit(300, "lb"),
  32648. name: "Back",
  32649. image: {
  32650. source: "./media/characters/jrain/back.svg",
  32651. extra: 3089/2938,
  32652. bottom: 172/3261
  32653. }
  32654. },
  32655. head: {
  32656. height: math.unit(2.14, "feet"),
  32657. name: "Head",
  32658. image: {
  32659. source: "./media/characters/jrain/head.svg"
  32660. }
  32661. },
  32662. maw: {
  32663. height: math.unit(1.77, "feet"),
  32664. name: "Maw",
  32665. image: {
  32666. source: "./media/characters/jrain/maw.svg"
  32667. }
  32668. },
  32669. leftHand: {
  32670. height: math.unit(1.1, "feet"),
  32671. name: "Left Hand",
  32672. image: {
  32673. source: "./media/characters/jrain/left-hand.svg"
  32674. }
  32675. },
  32676. rightHand: {
  32677. height: math.unit(1.1, "feet"),
  32678. name: "Right Hand",
  32679. image: {
  32680. source: "./media/characters/jrain/right-hand.svg"
  32681. }
  32682. },
  32683. eye: {
  32684. height: math.unit(0.35, "feet"),
  32685. name: "Eye",
  32686. image: {
  32687. source: "./media/characters/jrain/eye.svg"
  32688. }
  32689. },
  32690. },
  32691. [
  32692. {
  32693. name: "Normal",
  32694. height: math.unit(6 + 8/12, "feet"),
  32695. default: true
  32696. },
  32697. {
  32698. name: "Casually Large",
  32699. height: math.unit(25, "feet")
  32700. },
  32701. {
  32702. name: "Giant",
  32703. height: math.unit(100, "feet")
  32704. },
  32705. {
  32706. name: "Kaiju",
  32707. height: math.unit(300, "feet")
  32708. },
  32709. ]
  32710. ))
  32711. characterMakers.push(() => makeCharacter(
  32712. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32713. {
  32714. dragon: {
  32715. height: math.unit(5, "meters"),
  32716. name: "Dragon",
  32717. image: {
  32718. source: "./media/characters/sabrina/dragon.svg",
  32719. extra: 3670 / 2365,
  32720. bottom: 333 / 4003
  32721. }
  32722. },
  32723. gryphon: {
  32724. height: math.unit(3, "meters"),
  32725. name: "Gryphon",
  32726. image: {
  32727. source: "./media/characters/sabrina/gryphon.svg",
  32728. extra: 1576 / 945,
  32729. bottom: 71 / 1647
  32730. }
  32731. },
  32732. snake: {
  32733. height: math.unit(12, "meters"),
  32734. name: "Snake",
  32735. image: {
  32736. source: "./media/characters/sabrina/snake.svg",
  32737. extra: 1758 / 1320,
  32738. bottom: 186 / 1944
  32739. }
  32740. },
  32741. collar: {
  32742. height: math.unit(1.86, "meters"),
  32743. name: "Collar",
  32744. image: {
  32745. source: "./media/characters/sabrina/collar.svg"
  32746. }
  32747. },
  32748. eye: {
  32749. height: math.unit(0.53, "meters"),
  32750. name: "Eye",
  32751. image: {
  32752. source: "./media/characters/sabrina/eye.svg"
  32753. }
  32754. },
  32755. foot: {
  32756. height: math.unit(1.86, "meters"),
  32757. name: "Foot",
  32758. image: {
  32759. source: "./media/characters/sabrina/foot.svg"
  32760. }
  32761. },
  32762. hand: {
  32763. height: math.unit(1.32, "meters"),
  32764. name: "Hand",
  32765. image: {
  32766. source: "./media/characters/sabrina/hand.svg"
  32767. }
  32768. },
  32769. head: {
  32770. height: math.unit(2.44, "meters"),
  32771. name: "Head",
  32772. image: {
  32773. source: "./media/characters/sabrina/head.svg"
  32774. }
  32775. },
  32776. headAngry: {
  32777. height: math.unit(2.44, "meters"),
  32778. name: "Head (Angry))",
  32779. image: {
  32780. source: "./media/characters/sabrina/head-angry.svg"
  32781. }
  32782. },
  32783. maw: {
  32784. height: math.unit(1.65, "meters"),
  32785. name: "Maw",
  32786. image: {
  32787. source: "./media/characters/sabrina/maw.svg"
  32788. }
  32789. },
  32790. spikes: {
  32791. height: math.unit(1.69, "meters"),
  32792. name: "Spikes",
  32793. image: {
  32794. source: "./media/characters/sabrina/spikes.svg"
  32795. }
  32796. },
  32797. stomach: {
  32798. height: math.unit(1.15, "meters"),
  32799. name: "Stomach",
  32800. image: {
  32801. source: "./media/characters/sabrina/stomach.svg"
  32802. }
  32803. },
  32804. tongue: {
  32805. height: math.unit(1.27, "meters"),
  32806. name: "Tongue",
  32807. image: {
  32808. source: "./media/characters/sabrina/tongue.svg"
  32809. }
  32810. },
  32811. wingDorsal: {
  32812. height: math.unit(4.85, "meters"),
  32813. name: "Wing (Dorsal)",
  32814. image: {
  32815. source: "./media/characters/sabrina/wing-dorsal.svg"
  32816. }
  32817. },
  32818. wingVentral: {
  32819. height: math.unit(4.85, "meters"),
  32820. name: "Wing (Ventral)",
  32821. image: {
  32822. source: "./media/characters/sabrina/wing-ventral.svg"
  32823. }
  32824. },
  32825. },
  32826. [
  32827. {
  32828. name: "Normal",
  32829. height: math.unit(5, "meters"),
  32830. default: true
  32831. },
  32832. ]
  32833. ))
  32834. characterMakers.push(() => makeCharacter(
  32835. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32836. {
  32837. frontMaid: {
  32838. height: math.unit(5 + 5/12, "feet"),
  32839. weight: math.unit(130, "lb"),
  32840. name: "Front (Maid)",
  32841. image: {
  32842. source: "./media/characters/midnight-tales/front-maid.svg",
  32843. extra: 489/454,
  32844. bottom: 61/550
  32845. }
  32846. },
  32847. frontFormal: {
  32848. height: math.unit(5 + 5/12, "feet"),
  32849. weight: math.unit(130, "lb"),
  32850. name: "Front (Formal)",
  32851. image: {
  32852. source: "./media/characters/midnight-tales/front-formal.svg",
  32853. extra: 489/454,
  32854. bottom: 61/550
  32855. }
  32856. },
  32857. back: {
  32858. height: math.unit(5 + 5/12, "feet"),
  32859. weight: math.unit(130, "lb"),
  32860. name: "Back",
  32861. image: {
  32862. source: "./media/characters/midnight-tales/back.svg",
  32863. extra: 498/456,
  32864. bottom: 33/531
  32865. }
  32866. },
  32867. frontBeast: {
  32868. height: math.unit(40, "feet"),
  32869. weight: math.unit(64000, "lb"),
  32870. name: "Front (Beast)",
  32871. image: {
  32872. source: "./media/characters/midnight-tales/front-beast.svg",
  32873. extra: 927/860,
  32874. bottom: 53/980
  32875. }
  32876. },
  32877. backBeast: {
  32878. height: math.unit(40, "feet"),
  32879. weight: math.unit(64000, "lb"),
  32880. name: "Back (Beast)",
  32881. image: {
  32882. source: "./media/characters/midnight-tales/back-beast.svg",
  32883. extra: 929/855,
  32884. bottom: 16/945
  32885. }
  32886. },
  32887. footBeast: {
  32888. height: math.unit(6.7, "feet"),
  32889. name: "Foot (Beast)",
  32890. image: {
  32891. source: "./media/characters/midnight-tales/foot-beast.svg"
  32892. }
  32893. },
  32894. headBeast: {
  32895. height: math.unit(8, "feet"),
  32896. name: "Head (Beast)",
  32897. image: {
  32898. source: "./media/characters/midnight-tales/head-beast.svg"
  32899. }
  32900. },
  32901. },
  32902. [
  32903. {
  32904. name: "Normal",
  32905. height: math.unit(5 + 5 / 12, "feet"),
  32906. default: true
  32907. },
  32908. {
  32909. name: "Macro",
  32910. height: math.unit(25, "feet")
  32911. },
  32912. ]
  32913. ))
  32914. characterMakers.push(() => makeCharacter(
  32915. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32916. {
  32917. front: {
  32918. height: math.unit(5 + 10/12, "feet"),
  32919. name: "Front",
  32920. image: {
  32921. source: "./media/characters/argon/front.svg",
  32922. extra: 2009/1935,
  32923. bottom: 118/2127
  32924. }
  32925. },
  32926. back: {
  32927. height: math.unit(5 + 10/12, "feet"),
  32928. name: "Back",
  32929. image: {
  32930. source: "./media/characters/argon/back.svg",
  32931. extra: 2047/1992,
  32932. bottom: 20/2067
  32933. }
  32934. },
  32935. frontDressed: {
  32936. height: math.unit(5 + 10/12, "feet"),
  32937. name: "Front (Dressed)",
  32938. image: {
  32939. source: "./media/characters/argon/front-dressed.svg",
  32940. extra: 2009/1935,
  32941. bottom: 118/2127
  32942. }
  32943. },
  32944. },
  32945. [
  32946. {
  32947. name: "Normal",
  32948. height: math.unit(5 + 10/12, "feet"),
  32949. default: true
  32950. },
  32951. ]
  32952. ))
  32953. characterMakers.push(() => makeCharacter(
  32954. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32955. {
  32956. front: {
  32957. height: math.unit(8 + 6/12, "feet"),
  32958. weight: math.unit(1150, "lb"),
  32959. name: "Front",
  32960. image: {
  32961. source: "./media/characters/kichi/front.svg",
  32962. extra: 1267/1164,
  32963. bottom: 61/1328
  32964. }
  32965. },
  32966. back: {
  32967. height: math.unit(8 + 6/12, "feet"),
  32968. weight: math.unit(1150, "lb"),
  32969. name: "Back",
  32970. image: {
  32971. source: "./media/characters/kichi/back.svg",
  32972. extra: 1273/1166,
  32973. bottom: 33/1306
  32974. }
  32975. },
  32976. },
  32977. [
  32978. {
  32979. name: "Normal",
  32980. height: math.unit(8 + 6/12, "feet"),
  32981. default: true
  32982. },
  32983. ]
  32984. ))
  32985. characterMakers.push(() => makeCharacter(
  32986. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32987. {
  32988. front: {
  32989. height: math.unit(6, "feet"),
  32990. weight: math.unit(210, "lb"),
  32991. name: "Front",
  32992. image: {
  32993. source: "./media/characters/manetel-greyscale/front.svg",
  32994. extra: 350/312,
  32995. bottom: 8/358
  32996. }
  32997. },
  32998. },
  32999. [
  33000. {
  33001. name: "Micro",
  33002. height: math.unit(2, "inches")
  33003. },
  33004. {
  33005. name: "Normal",
  33006. height: math.unit(6, "feet"),
  33007. default: true
  33008. },
  33009. {
  33010. name: "Minimacro",
  33011. height: math.unit(17, "feet")
  33012. },
  33013. {
  33014. name: "Macro",
  33015. height: math.unit(117, "feet")
  33016. },
  33017. ]
  33018. ))
  33019. characterMakers.push(() => makeCharacter(
  33020. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33021. {
  33022. side: {
  33023. height: math.unit(5 + 1/12, "feet"),
  33024. weight: math.unit(418, "lb"),
  33025. name: "Side",
  33026. image: {
  33027. source: "./media/characters/softpurr/side.svg",
  33028. extra: 1993/1945,
  33029. bottom: 134/2127
  33030. }
  33031. },
  33032. front: {
  33033. height: math.unit(5 + 1/12, "feet"),
  33034. weight: math.unit(418, "lb"),
  33035. name: "Front",
  33036. image: {
  33037. source: "./media/characters/softpurr/front.svg",
  33038. extra: 1950/1856,
  33039. bottom: 174/2124
  33040. }
  33041. },
  33042. paw: {
  33043. height: math.unit(1, "feet"),
  33044. name: "Paw",
  33045. image: {
  33046. source: "./media/characters/softpurr/paw.svg"
  33047. }
  33048. },
  33049. },
  33050. [
  33051. {
  33052. name: "Normal",
  33053. height: math.unit(5 + 1/12, "feet"),
  33054. default: true
  33055. },
  33056. ]
  33057. ))
  33058. characterMakers.push(() => makeCharacter(
  33059. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33060. {
  33061. front: {
  33062. height: math.unit(260, "meters"),
  33063. name: "Front",
  33064. image: {
  33065. source: "./media/characters/anahita/front.svg",
  33066. extra: 665/635,
  33067. bottom: 89/754
  33068. }
  33069. },
  33070. },
  33071. [
  33072. {
  33073. name: "Macro",
  33074. height: math.unit(260, "meters"),
  33075. default: true
  33076. },
  33077. ]
  33078. ))
  33079. characterMakers.push(() => makeCharacter(
  33080. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33081. {
  33082. front: {
  33083. height: math.unit(4 + 10/12, "feet"),
  33084. weight: math.unit(160, "lb"),
  33085. name: "Front",
  33086. image: {
  33087. source: "./media/characters/chip-mouse/front.svg",
  33088. extra: 3528/3408,
  33089. bottom: 0/3528
  33090. }
  33091. },
  33092. frontNsfw: {
  33093. height: math.unit(4 + 10/12, "feet"),
  33094. weight: math.unit(160, "lb"),
  33095. name: "Front (NSFW)",
  33096. image: {
  33097. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33098. extra: 3528/3408,
  33099. bottom: 0/3528
  33100. }
  33101. },
  33102. },
  33103. [
  33104. {
  33105. name: "Normal",
  33106. height: math.unit(4 + 10/12, "feet"),
  33107. default: true
  33108. },
  33109. ]
  33110. ))
  33111. characterMakers.push(() => makeCharacter(
  33112. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33113. {
  33114. side: {
  33115. height: math.unit(10, "feet"),
  33116. weight: math.unit(14000, "lb"),
  33117. name: "Side",
  33118. image: {
  33119. source: "./media/characters/kremm/side.svg",
  33120. extra: 1390/1053,
  33121. bottom: 90/1480
  33122. }
  33123. },
  33124. gut: {
  33125. height: math.unit(5.8, "feet"),
  33126. name: "Gut",
  33127. image: {
  33128. source: "./media/characters/kremm/gut.svg"
  33129. }
  33130. },
  33131. ass: {
  33132. height: math.unit(6.1, "feet"),
  33133. name: "Ass",
  33134. image: {
  33135. source: "./media/characters/kremm/ass.svg"
  33136. }
  33137. },
  33138. jaws: {
  33139. height: math.unit(2.2, "feet"),
  33140. name: "Jaws",
  33141. image: {
  33142. source: "./media/characters/kremm/jaws.svg"
  33143. }
  33144. },
  33145. dick: {
  33146. height: math.unit(4.26, "feet"),
  33147. name: "Dick",
  33148. image: {
  33149. source: "./media/characters/kremm/dick.svg"
  33150. }
  33151. },
  33152. },
  33153. [
  33154. {
  33155. name: "Normal",
  33156. height: math.unit(10, "feet"),
  33157. default: true
  33158. },
  33159. ]
  33160. ))
  33161. characterMakers.push(() => makeCharacter(
  33162. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33163. {
  33164. front: {
  33165. height: math.unit(30, "stories"),
  33166. name: "Front",
  33167. image: {
  33168. source: "./media/characters/kai/front.svg",
  33169. extra: 1892/1718,
  33170. bottom: 162/2054
  33171. }
  33172. },
  33173. },
  33174. [
  33175. {
  33176. name: "Macro",
  33177. height: math.unit(30, "stories"),
  33178. default: true
  33179. },
  33180. ]
  33181. ))
  33182. characterMakers.push(() => makeCharacter(
  33183. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33184. {
  33185. front: {
  33186. height: math.unit(6 + 4/12, "feet"),
  33187. weight: math.unit(145, "lb"),
  33188. name: "Front",
  33189. image: {
  33190. source: "./media/characters/sykes/front.svg",
  33191. extra: 1321 / 1187,
  33192. bottom: 66 / 1387
  33193. }
  33194. },
  33195. back: {
  33196. height: math.unit(6 + 4/12, "feet"),
  33197. weight: math.unit(145, "lb"),
  33198. name: "Back",
  33199. image: {
  33200. source: "./media/characters/sykes/back.svg",
  33201. extra: 1326/1181,
  33202. bottom: 31/1357
  33203. }
  33204. },
  33205. handBack: {
  33206. height: math.unit(0.9, "feet"),
  33207. name: "Hand (Back)",
  33208. image: {
  33209. source: "./media/characters/sykes/hand-back.svg"
  33210. }
  33211. },
  33212. handFront: {
  33213. height: math.unit(0.839, "feet"),
  33214. name: "Hand (Front)",
  33215. image: {
  33216. source: "./media/characters/sykes/hand-front.svg"
  33217. }
  33218. },
  33219. leftFoot: {
  33220. height: math.unit(1.2, "feet"),
  33221. name: "Foot (Left)",
  33222. image: {
  33223. source: "./media/characters/sykes/foot-left.svg"
  33224. }
  33225. },
  33226. rightFoot: {
  33227. height: math.unit(1.2, "feet"),
  33228. name: "Foot (Right)",
  33229. image: {
  33230. source: "./media/characters/sykes/foot-right.svg"
  33231. }
  33232. },
  33233. maw: {
  33234. height: math.unit(1.93, "feet"),
  33235. name: "Maw",
  33236. image: {
  33237. source: "./media/characters/sykes/maw.svg"
  33238. }
  33239. },
  33240. teeth: {
  33241. height: math.unit(0.51, "feet"),
  33242. name: "Teeth",
  33243. image: {
  33244. source: "./media/characters/sykes/teeth.svg"
  33245. }
  33246. },
  33247. tongue: {
  33248. height: math.unit(2.13, "feet"),
  33249. name: "Tongue",
  33250. image: {
  33251. source: "./media/characters/sykes/tongue.svg"
  33252. }
  33253. },
  33254. uvula: {
  33255. height: math.unit(0.16, "feet"),
  33256. name: "Uvula",
  33257. image: {
  33258. source: "./media/characters/sykes/uvula.svg"
  33259. }
  33260. },
  33261. collar: {
  33262. height: math.unit(0.287, "feet"),
  33263. name: "Collar",
  33264. image: {
  33265. source: "./media/characters/sykes/collar.svg"
  33266. }
  33267. },
  33268. },
  33269. [
  33270. {
  33271. name: "Shrunken",
  33272. height: math.unit(5, "inches")
  33273. },
  33274. {
  33275. name: "Normal",
  33276. height: math.unit(6 + 4 / 12, "feet"),
  33277. default: true
  33278. },
  33279. {
  33280. name: "Big",
  33281. height: math.unit(15, "feet")
  33282. },
  33283. ]
  33284. ))
  33285. characterMakers.push(() => makeCharacter(
  33286. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33287. {
  33288. front: {
  33289. height: math.unit(5 + 8/12, "feet"),
  33290. weight: math.unit(190, "lb"),
  33291. name: "Front",
  33292. image: {
  33293. source: "./media/characters/oven-otter/front.svg",
  33294. extra: 1809/1740,
  33295. bottom: 181/1990
  33296. }
  33297. },
  33298. back: {
  33299. height: math.unit(5 + 8/12, "feet"),
  33300. weight: math.unit(190, "lb"),
  33301. name: "Back",
  33302. image: {
  33303. source: "./media/characters/oven-otter/back.svg",
  33304. extra: 1709/1635,
  33305. bottom: 118/1827
  33306. }
  33307. },
  33308. hand: {
  33309. height: math.unit(1.07, "feet"),
  33310. name: "Hand",
  33311. image: {
  33312. source: "./media/characters/oven-otter/hand.svg"
  33313. }
  33314. },
  33315. beans: {
  33316. height: math.unit(1.74, "feet"),
  33317. name: "Beans",
  33318. image: {
  33319. source: "./media/characters/oven-otter/beans.svg"
  33320. }
  33321. },
  33322. },
  33323. [
  33324. {
  33325. name: "Micro",
  33326. height: math.unit(0.5, "inches")
  33327. },
  33328. {
  33329. name: "Normal",
  33330. height: math.unit(5 + 8/12, "feet"),
  33331. default: true
  33332. },
  33333. {
  33334. name: "Macro",
  33335. height: math.unit(250, "feet")
  33336. },
  33337. {
  33338. name: "Really High",
  33339. height: math.unit(420, "feet")
  33340. },
  33341. ]
  33342. ))
  33343. characterMakers.push(() => makeCharacter(
  33344. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33345. {
  33346. front: {
  33347. height: math.unit(5, "meters"),
  33348. weight: math.unit(292000000000000, "kg"),
  33349. name: "Front",
  33350. image: {
  33351. source: "./media/characters/devourer/front.svg",
  33352. extra: 1800/1733,
  33353. bottom: 211/2011
  33354. }
  33355. },
  33356. maw: {
  33357. height: math.unit(1.1, "meter"),
  33358. name: "Maw",
  33359. image: {
  33360. source: "./media/characters/devourer/maw.svg"
  33361. }
  33362. },
  33363. },
  33364. [
  33365. {
  33366. name: "Small",
  33367. height: math.unit(3, "meters")
  33368. },
  33369. {
  33370. name: "Large",
  33371. height: math.unit(5, "meters"),
  33372. default: true
  33373. },
  33374. ]
  33375. ))
  33376. characterMakers.push(() => makeCharacter(
  33377. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33378. {
  33379. front: {
  33380. height: math.unit(6, "feet"),
  33381. weight: math.unit(400, "lb"),
  33382. name: "Front",
  33383. image: {
  33384. source: "./media/characters/ellarby/front.svg",
  33385. extra: 1909/1763,
  33386. bottom: 80/1989
  33387. }
  33388. },
  33389. back: {
  33390. height: math.unit(6, "feet"),
  33391. weight: math.unit(400, "lb"),
  33392. name: "Back",
  33393. image: {
  33394. source: "./media/characters/ellarby/back.svg",
  33395. extra: 1914/1784,
  33396. bottom: 172/2086
  33397. }
  33398. },
  33399. },
  33400. [
  33401. {
  33402. name: "Mischief",
  33403. height: math.unit(18, "inches")
  33404. },
  33405. {
  33406. name: "Trouble",
  33407. height: math.unit(12, "feet")
  33408. },
  33409. {
  33410. name: "Havoc",
  33411. height: math.unit(200, "feet"),
  33412. default: true
  33413. },
  33414. {
  33415. name: "Pandemonium",
  33416. height: math.unit(1, "mile")
  33417. },
  33418. {
  33419. name: "Catastrophe",
  33420. height: math.unit(100, "miles")
  33421. },
  33422. ]
  33423. ))
  33424. characterMakers.push(() => makeCharacter(
  33425. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33426. {
  33427. front: {
  33428. height: math.unit(4.7, "meters"),
  33429. weight: math.unit(6500, "kg"),
  33430. name: "Front",
  33431. image: {
  33432. source: "./media/characters/vex/front.svg",
  33433. extra: 1288/1140,
  33434. bottom: 100/1388
  33435. }
  33436. },
  33437. },
  33438. [
  33439. {
  33440. name: "Normal",
  33441. height: math.unit(4.7, "meters"),
  33442. default: true
  33443. },
  33444. ]
  33445. ))
  33446. characterMakers.push(() => makeCharacter(
  33447. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33448. {
  33449. normal: {
  33450. height: math.unit(6, "feet"),
  33451. weight: math.unit(350, "lb"),
  33452. name: "Normal",
  33453. image: {
  33454. source: "./media/characters/teshy/normal.svg",
  33455. extra: 1795/1735,
  33456. bottom: 16/1811
  33457. }
  33458. },
  33459. monsterFront: {
  33460. height: math.unit(12, "feet"),
  33461. weight: math.unit(4700, "lb"),
  33462. name: "Monster (Front)",
  33463. image: {
  33464. source: "./media/characters/teshy/monster-front.svg",
  33465. extra: 2042/2034,
  33466. bottom: 128/2170
  33467. }
  33468. },
  33469. monsterSide: {
  33470. height: math.unit(12, "feet"),
  33471. weight: math.unit(4700, "lb"),
  33472. name: "Monster (Side)",
  33473. image: {
  33474. source: "./media/characters/teshy/monster-side.svg",
  33475. extra: 2067/2056,
  33476. bottom: 70/2137
  33477. }
  33478. },
  33479. monsterBack: {
  33480. height: math.unit(12, "feet"),
  33481. weight: math.unit(4700, "lb"),
  33482. name: "Monster (Back)",
  33483. image: {
  33484. source: "./media/characters/teshy/monster-back.svg",
  33485. extra: 1921/1914,
  33486. bottom: 171/2092
  33487. }
  33488. },
  33489. },
  33490. [
  33491. {
  33492. name: "Normal",
  33493. height: math.unit(6, "feet"),
  33494. default: true
  33495. },
  33496. ]
  33497. ))
  33498. characterMakers.push(() => makeCharacter(
  33499. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33500. {
  33501. front: {
  33502. height: math.unit(6, "feet"),
  33503. name: "Front",
  33504. image: {
  33505. source: "./media/characters/ramey/front.svg",
  33506. extra: 790/787,
  33507. bottom: 27/817
  33508. }
  33509. },
  33510. },
  33511. [
  33512. {
  33513. name: "Normal",
  33514. height: math.unit(6, "feet"),
  33515. default: true
  33516. },
  33517. ]
  33518. ))
  33519. characterMakers.push(() => makeCharacter(
  33520. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33521. {
  33522. front: {
  33523. height: math.unit(5 + 5/12, "feet"),
  33524. weight: math.unit(120, "lb"),
  33525. name: "Front",
  33526. image: {
  33527. source: "./media/characters/phirae/front.svg",
  33528. extra: 2491/2436,
  33529. bottom: 38/2529
  33530. }
  33531. },
  33532. },
  33533. [
  33534. {
  33535. name: "Normal",
  33536. height: math.unit(5 + 5/12, "feet"),
  33537. default: true
  33538. },
  33539. ]
  33540. ))
  33541. characterMakers.push(() => makeCharacter(
  33542. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33543. {
  33544. front: {
  33545. height: math.unit(6, "feet"),
  33546. weight: math.unit(150, "lb"),
  33547. name: "Front",
  33548. image: {
  33549. source: "./media/characters/stagglas/front.svg",
  33550. extra: 962/882,
  33551. bottom: 53/1015
  33552. }
  33553. },
  33554. },
  33555. [
  33556. {
  33557. name: "Normal",
  33558. height: math.unit(5 + 3/12, "feet"),
  33559. default: true
  33560. },
  33561. ]
  33562. ))
  33563. characterMakers.push(() => makeCharacter(
  33564. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33565. {
  33566. front: {
  33567. height: math.unit(5 + 4/12, "feet"),
  33568. weight: math.unit(145, "lb"),
  33569. name: "Front",
  33570. image: {
  33571. source: "./media/characters/starra/front.svg",
  33572. extra: 1790/1691,
  33573. bottom: 91/1881
  33574. }
  33575. },
  33576. },
  33577. [
  33578. {
  33579. name: "Normal",
  33580. height: math.unit(5 + 4/12, "feet"),
  33581. default: true
  33582. },
  33583. ]
  33584. ))
  33585. characterMakers.push(() => makeCharacter(
  33586. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33587. {
  33588. front: {
  33589. height: math.unit(2.2, "meters"),
  33590. name: "Front",
  33591. image: {
  33592. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33593. extra: 1194/1005,
  33594. bottom: 25/1219
  33595. }
  33596. },
  33597. },
  33598. [
  33599. {
  33600. name: "Normal",
  33601. height: math.unit(2.2, "meters"),
  33602. default: true
  33603. },
  33604. ]
  33605. ))
  33606. characterMakers.push(() => makeCharacter(
  33607. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33608. {
  33609. side: {
  33610. height: math.unit(8 + 2/12, "feet"),
  33611. weight: math.unit(1240, "lb"),
  33612. name: "Side",
  33613. image: {
  33614. source: "./media/characters/mika-valentine/side.svg",
  33615. extra: 2670/2501,
  33616. bottom: 250/2920
  33617. }
  33618. },
  33619. },
  33620. [
  33621. {
  33622. name: "Normal",
  33623. height: math.unit(8 + 2/12, "feet"),
  33624. default: true
  33625. },
  33626. ]
  33627. ))
  33628. characterMakers.push(() => makeCharacter(
  33629. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33630. {
  33631. front: {
  33632. height: math.unit(7 + 2/12, "feet"),
  33633. name: "Front",
  33634. image: {
  33635. source: "./media/characters/xoltol/front.svg",
  33636. extra: 2212/2124,
  33637. bottom: 84/2296
  33638. }
  33639. },
  33640. side: {
  33641. height: math.unit(7 + 2/12, "feet"),
  33642. name: "Side",
  33643. image: {
  33644. source: "./media/characters/xoltol/side.svg",
  33645. extra: 2273/2197,
  33646. bottom: 26/2299
  33647. }
  33648. },
  33649. hand: {
  33650. height: math.unit(2.5, "feet"),
  33651. name: "Hand",
  33652. image: {
  33653. source: "./media/characters/xoltol/hand.svg"
  33654. }
  33655. },
  33656. },
  33657. [
  33658. {
  33659. name: "Small-ish",
  33660. height: math.unit(5 + 11/12, "feet")
  33661. },
  33662. {
  33663. name: "Normal",
  33664. height: math.unit(7 + 2/12, "feet")
  33665. },
  33666. {
  33667. name: "\"Macro\"",
  33668. height: math.unit(14 + 9/12, "feet"),
  33669. default: true
  33670. },
  33671. {
  33672. name: "Alternate Height",
  33673. height: math.unit(20, "feet")
  33674. },
  33675. {
  33676. name: "Actually Macro",
  33677. height: math.unit(100, "feet")
  33678. },
  33679. ]
  33680. ))
  33681. characterMakers.push(() => makeCharacter(
  33682. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33683. {
  33684. front: {
  33685. height: math.unit(5 + 2/12, "feet"),
  33686. name: "Front",
  33687. image: {
  33688. source: "./media/characters/kotetsu-redwood/front.svg",
  33689. extra: 1053/942,
  33690. bottom: 60/1113
  33691. }
  33692. },
  33693. },
  33694. [
  33695. {
  33696. name: "Normal",
  33697. height: math.unit(5 + 2/12, "feet"),
  33698. default: true
  33699. },
  33700. ]
  33701. ))
  33702. characterMakers.push(() => makeCharacter(
  33703. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33704. {
  33705. front: {
  33706. height: math.unit(2.4, "meters"),
  33707. weight: math.unit(125, "kg"),
  33708. name: "Front",
  33709. image: {
  33710. source: "./media/characters/lilith/front.svg",
  33711. extra: 1590/1513,
  33712. bottom: 203/1793
  33713. }
  33714. },
  33715. },
  33716. [
  33717. {
  33718. name: "Humanoid",
  33719. height: math.unit(2.4, "meters")
  33720. },
  33721. {
  33722. name: "Normal",
  33723. height: math.unit(6, "meters"),
  33724. default: true
  33725. },
  33726. {
  33727. name: "Largest",
  33728. height: math.unit(55, "meters")
  33729. },
  33730. ]
  33731. ))
  33732. characterMakers.push(() => makeCharacter(
  33733. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33734. {
  33735. front: {
  33736. height: math.unit(8 + 4/12, "feet"),
  33737. weight: math.unit(535, "lb"),
  33738. name: "Front",
  33739. image: {
  33740. source: "./media/characters/beh'kah-bolger/front.svg",
  33741. extra: 1660/1603,
  33742. bottom: 37/1697
  33743. }
  33744. },
  33745. },
  33746. [
  33747. {
  33748. name: "Normal",
  33749. height: math.unit(8 + 4/12, "feet"),
  33750. default: true
  33751. },
  33752. {
  33753. name: "Kaiju",
  33754. height: math.unit(250, "feet")
  33755. },
  33756. {
  33757. name: "Still Growing",
  33758. height: math.unit(10, "miles")
  33759. },
  33760. {
  33761. name: "Continental",
  33762. height: math.unit(5000, "miles")
  33763. },
  33764. {
  33765. name: "Final Form",
  33766. height: math.unit(2500000, "miles")
  33767. },
  33768. ]
  33769. ))
  33770. characterMakers.push(() => makeCharacter(
  33771. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33772. {
  33773. front: {
  33774. height: math.unit(7 + 2/12, "feet"),
  33775. weight: math.unit(230, "kg"),
  33776. name: "Front",
  33777. image: {
  33778. source: "./media/characters/tatyana-milewska/front.svg",
  33779. extra: 1199/1150,
  33780. bottom: 86/1285
  33781. }
  33782. },
  33783. },
  33784. [
  33785. {
  33786. name: "Normal",
  33787. height: math.unit(7 + 2/12, "feet"),
  33788. default: true
  33789. },
  33790. {
  33791. name: "Big",
  33792. height: math.unit(12, "feet")
  33793. },
  33794. {
  33795. name: "Minimacro",
  33796. height: math.unit(20, "feet")
  33797. },
  33798. {
  33799. name: "Macro",
  33800. height: math.unit(120, "feet")
  33801. },
  33802. ]
  33803. ))
  33804. characterMakers.push(() => makeCharacter(
  33805. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33806. {
  33807. front: {
  33808. height: math.unit(7 + 8/12, "feet"),
  33809. weight: math.unit(152, "kg"),
  33810. name: "Front",
  33811. image: {
  33812. source: "./media/characters/helen-arri/front.svg",
  33813. extra: 440/423,
  33814. bottom: 14/454
  33815. }
  33816. },
  33817. back: {
  33818. height: math.unit(7 + 8/12, "feet"),
  33819. weight: math.unit(152, "kg"),
  33820. name: "Back",
  33821. image: {
  33822. source: "./media/characters/helen-arri/back.svg",
  33823. extra: 443/426,
  33824. bottom: 8/451
  33825. }
  33826. },
  33827. },
  33828. [
  33829. {
  33830. name: "Normal",
  33831. height: math.unit(7 + 8/12, "feet"),
  33832. default: true
  33833. },
  33834. {
  33835. name: "Big",
  33836. height: math.unit(14, "feet")
  33837. },
  33838. {
  33839. name: "Minimacro",
  33840. height: math.unit(24, "feet")
  33841. },
  33842. {
  33843. name: "Macro",
  33844. height: math.unit(140, "feet")
  33845. },
  33846. ]
  33847. ))
  33848. characterMakers.push(() => makeCharacter(
  33849. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33850. {
  33851. front: {
  33852. height: math.unit(6, "meters"),
  33853. name: "Front",
  33854. image: {
  33855. source: "./media/characters/ehanu-rehu/front.svg",
  33856. extra: 1800/1800,
  33857. bottom: 59/1859
  33858. }
  33859. },
  33860. },
  33861. [
  33862. {
  33863. name: "Normal",
  33864. height: math.unit(6, "meters"),
  33865. default: true
  33866. },
  33867. ]
  33868. ))
  33869. characterMakers.push(() => makeCharacter(
  33870. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33871. {
  33872. front: {
  33873. height: math.unit(7 + 3/12, "feet"),
  33874. name: "Front",
  33875. image: {
  33876. source: "./media/characters/renholder/front.svg",
  33877. extra: 3096/2960,
  33878. bottom: 250/3346
  33879. }
  33880. },
  33881. },
  33882. [
  33883. {
  33884. name: "Normal Bat",
  33885. height: math.unit(7 + 3/12, "feet"),
  33886. default: true
  33887. },
  33888. {
  33889. name: "Slightly Tall Bat",
  33890. height: math.unit(100, "feet")
  33891. },
  33892. {
  33893. name: "Big Bat",
  33894. height: math.unit(1000, "feet")
  33895. },
  33896. {
  33897. name: "City-Sized Bat",
  33898. height: math.unit(200000, "feet")
  33899. },
  33900. {
  33901. name: "Bigger Bat",
  33902. height: math.unit(10000, "miles")
  33903. },
  33904. {
  33905. name: "Solar Sized Bat",
  33906. height: math.unit(100, "AU")
  33907. },
  33908. {
  33909. name: "Galactic Bat",
  33910. height: math.unit(200000, "lightyears")
  33911. },
  33912. {
  33913. name: "Universally Known Bat",
  33914. height: math.unit(1, "universe")
  33915. },
  33916. ]
  33917. ))
  33918. characterMakers.push(() => makeCharacter(
  33919. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33920. {
  33921. front: {
  33922. height: math.unit(6 + 11/12, "feet"),
  33923. weight: math.unit(250, "lb"),
  33924. name: "Front",
  33925. image: {
  33926. source: "./media/characters/cookiecat/front.svg",
  33927. extra: 893/827,
  33928. bottom: 14/907
  33929. }
  33930. },
  33931. },
  33932. [
  33933. {
  33934. name: "Micro",
  33935. height: math.unit(3, "inches")
  33936. },
  33937. {
  33938. name: "Normal",
  33939. height: math.unit(6 + 11/12, "feet"),
  33940. default: true
  33941. },
  33942. {
  33943. name: "Macro",
  33944. height: math.unit(100, "feet")
  33945. },
  33946. {
  33947. name: "Macro+",
  33948. height: math.unit(404, "feet")
  33949. },
  33950. {
  33951. name: "Megamacro",
  33952. height: math.unit(165, "miles")
  33953. },
  33954. {
  33955. name: "Planetary",
  33956. height: math.unit(4600, "miles")
  33957. },
  33958. ]
  33959. ))
  33960. characterMakers.push(() => makeCharacter(
  33961. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33962. {
  33963. front: {
  33964. height: math.unit(10 + 3/12, "feet"),
  33965. weight: math.unit(1500, "lb"),
  33966. name: "Front",
  33967. image: {
  33968. source: "./media/characters/tux-kusanagi/front.svg",
  33969. extra: 944/840,
  33970. bottom: 39/983
  33971. }
  33972. },
  33973. back: {
  33974. height: math.unit(10 + 3/12, "feet"),
  33975. weight: math.unit(1500, "lb"),
  33976. name: "Back",
  33977. image: {
  33978. source: "./media/characters/tux-kusanagi/back.svg",
  33979. extra: 941/842,
  33980. bottom: 28/969
  33981. }
  33982. },
  33983. rump: {
  33984. height: math.unit(5.25, "feet"),
  33985. name: "Rump",
  33986. image: {
  33987. source: "./media/characters/tux-kusanagi/rump.svg"
  33988. }
  33989. },
  33990. beak: {
  33991. height: math.unit(1.54, "feet"),
  33992. name: "Beak",
  33993. image: {
  33994. source: "./media/characters/tux-kusanagi/beak.svg"
  33995. }
  33996. },
  33997. },
  33998. [
  33999. {
  34000. name: "Normal",
  34001. height: math.unit(10 + 3/12, "feet"),
  34002. default: true
  34003. },
  34004. ]
  34005. ))
  34006. characterMakers.push(() => makeCharacter(
  34007. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34008. {
  34009. front: {
  34010. height: math.unit(58, "feet"),
  34011. weight: math.unit(200, "tons"),
  34012. name: "Front",
  34013. image: {
  34014. source: "./media/characters/uzarmazari/front.svg",
  34015. extra: 1575/1455,
  34016. bottom: 152/1727
  34017. }
  34018. },
  34019. back: {
  34020. height: math.unit(58, "feet"),
  34021. weight: math.unit(200, "tons"),
  34022. name: "Back",
  34023. image: {
  34024. source: "./media/characters/uzarmazari/back.svg",
  34025. extra: 1585/1510,
  34026. bottom: 157/1742
  34027. }
  34028. },
  34029. head: {
  34030. height: math.unit(26, "feet"),
  34031. name: "Head",
  34032. image: {
  34033. source: "./media/characters/uzarmazari/head.svg"
  34034. }
  34035. },
  34036. },
  34037. [
  34038. {
  34039. name: "Normal",
  34040. height: math.unit(58, "feet"),
  34041. default: true
  34042. },
  34043. ]
  34044. ))
  34045. characterMakers.push(() => makeCharacter(
  34046. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34047. {
  34048. side: {
  34049. height: math.unit(15, "feet"),
  34050. name: "Side",
  34051. image: {
  34052. source: "./media/characters/akitu/side.svg",
  34053. extra: 1421/1321,
  34054. bottom: 157/1578
  34055. }
  34056. },
  34057. front: {
  34058. height: math.unit(15, "feet"),
  34059. name: "Front",
  34060. image: {
  34061. source: "./media/characters/akitu/front.svg",
  34062. extra: 1435/1326,
  34063. bottom: 232/1667
  34064. }
  34065. },
  34066. },
  34067. [
  34068. {
  34069. name: "Normal",
  34070. height: math.unit(15, "feet"),
  34071. default: true
  34072. },
  34073. ]
  34074. ))
  34075. characterMakers.push(() => makeCharacter(
  34076. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34077. {
  34078. front: {
  34079. height: math.unit(10 + 8/12, "feet"),
  34080. name: "Front",
  34081. image: {
  34082. source: "./media/characters/azalie-croixland/front.svg",
  34083. extra: 1972/1856,
  34084. bottom: 31/2003
  34085. }
  34086. },
  34087. },
  34088. [
  34089. {
  34090. name: "Original Height",
  34091. height: math.unit(5 + 4/12, "feet")
  34092. },
  34093. {
  34094. name: "Normal Height",
  34095. height: math.unit(10 + 8/12, "feet"),
  34096. default: true
  34097. },
  34098. ]
  34099. ))
  34100. characterMakers.push(() => makeCharacter(
  34101. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34102. {
  34103. side: {
  34104. height: math.unit(7 + 1/12, "feet"),
  34105. weight: math.unit(245, "lb"),
  34106. name: "Side",
  34107. image: {
  34108. source: "./media/characters/kavus-kazian/side.svg",
  34109. extra: 349/342,
  34110. bottom: 15/364
  34111. }
  34112. },
  34113. },
  34114. [
  34115. {
  34116. name: "Normal",
  34117. height: math.unit(7 + 1/12, "feet"),
  34118. default: true
  34119. },
  34120. ]
  34121. ))
  34122. characterMakers.push(() => makeCharacter(
  34123. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34124. {
  34125. normal: {
  34126. height: math.unit(5 + 11/12, "feet"),
  34127. name: "Normal",
  34128. image: {
  34129. source: "./media/characters/moonlight-rose/normal.svg",
  34130. extra: 1979/1835,
  34131. bottom: 14/1993
  34132. }
  34133. },
  34134. demon: {
  34135. height: math.unit(5, "km"),
  34136. name: "Demon",
  34137. image: {
  34138. source: "./media/characters/moonlight-rose/demon.svg",
  34139. extra: 986/916,
  34140. bottom: 28/1014
  34141. }
  34142. },
  34143. },
  34144. [
  34145. {
  34146. name: "\"Natural\" height",
  34147. height: math.unit(5 + 11/12, "feet")
  34148. },
  34149. {
  34150. name: "Comfortable Size",
  34151. height: math.unit(40, "meters")
  34152. },
  34153. {
  34154. name: "Common Size",
  34155. height: math.unit(50, "km"),
  34156. default: true
  34157. },
  34158. {
  34159. name: "Demonic",
  34160. height: math.unit(1.24415e+21, "meters")
  34161. },
  34162. ]
  34163. ))
  34164. characterMakers.push(() => makeCharacter(
  34165. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34166. {
  34167. front: {
  34168. height: math.unit(16, "feet"),
  34169. weight: math.unit(610, "kg"),
  34170. name: "Front",
  34171. image: {
  34172. source: "./media/characters/huckle/front.svg",
  34173. extra: 1731/1625,
  34174. bottom: 33/1764
  34175. }
  34176. },
  34177. back: {
  34178. height: math.unit(16, "feet"),
  34179. weight: math.unit(610, "kg"),
  34180. name: "Back",
  34181. image: {
  34182. source: "./media/characters/huckle/back.svg",
  34183. extra: 1738/1651,
  34184. bottom: 37/1775
  34185. }
  34186. },
  34187. laughing: {
  34188. height: math.unit(3.75, "feet"),
  34189. name: "Laughing",
  34190. image: {
  34191. source: "./media/characters/huckle/laughing.svg"
  34192. }
  34193. },
  34194. angry: {
  34195. height: math.unit(4.15, "feet"),
  34196. name: "Angry",
  34197. image: {
  34198. source: "./media/characters/huckle/angry.svg"
  34199. }
  34200. },
  34201. },
  34202. [
  34203. {
  34204. name: "Normal",
  34205. height: math.unit(16, "feet"),
  34206. default: true
  34207. },
  34208. {
  34209. name: "Mini Macro",
  34210. height: math.unit(463, "feet")
  34211. },
  34212. {
  34213. name: "Macro",
  34214. height: math.unit(1680, "meters")
  34215. },
  34216. {
  34217. name: "Mega Macro",
  34218. height: math.unit(175, "km")
  34219. },
  34220. {
  34221. name: "Terra Macro",
  34222. height: math.unit(32, "gigameters")
  34223. },
  34224. {
  34225. name: "Multiverse+",
  34226. height: math.unit(2.56e23, "yottameters")
  34227. },
  34228. ]
  34229. ))
  34230. characterMakers.push(() => makeCharacter(
  34231. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34232. {
  34233. front: {
  34234. height: math.unit(6 + 9/12, "feet"),
  34235. weight: math.unit(280, "lb"),
  34236. name: "Front",
  34237. image: {
  34238. source: "./media/characters/candy/front.svg",
  34239. extra: 234/217,
  34240. bottom: 11/245
  34241. }
  34242. },
  34243. },
  34244. [
  34245. {
  34246. name: "Really Small",
  34247. height: math.unit(0.1, "nm")
  34248. },
  34249. {
  34250. name: "Micro",
  34251. height: math.unit(2, "inches")
  34252. },
  34253. {
  34254. name: "Normal",
  34255. height: math.unit(6 + 9/12, "feet"),
  34256. default: true
  34257. },
  34258. {
  34259. name: "Small Macro",
  34260. height: math.unit(69, "feet")
  34261. },
  34262. {
  34263. name: "Macro",
  34264. height: math.unit(160, "feet")
  34265. },
  34266. {
  34267. name: "Megamacro",
  34268. height: math.unit(22000, "miles")
  34269. },
  34270. {
  34271. name: "Gigamacro",
  34272. height: math.unit(50000, "miles")
  34273. },
  34274. ]
  34275. ))
  34276. characterMakers.push(() => makeCharacter(
  34277. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34278. {
  34279. front: {
  34280. height: math.unit(4, "feet"),
  34281. weight: math.unit(90, "lb"),
  34282. name: "Front",
  34283. image: {
  34284. source: "./media/characters/joey-mcdonald/front.svg",
  34285. extra: 1059/852,
  34286. bottom: 33/1092
  34287. }
  34288. },
  34289. back: {
  34290. height: math.unit(4, "feet"),
  34291. weight: math.unit(90, "lb"),
  34292. name: "Back",
  34293. image: {
  34294. source: "./media/characters/joey-mcdonald/back.svg",
  34295. extra: 1077/879,
  34296. bottom: 5/1082
  34297. }
  34298. },
  34299. },
  34300. [
  34301. {
  34302. name: "Normal",
  34303. height: math.unit(4, "feet"),
  34304. default: true
  34305. },
  34306. ]
  34307. ))
  34308. characterMakers.push(() => makeCharacter(
  34309. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34310. {
  34311. front: {
  34312. height: math.unit(12 + 6/12, "feet"),
  34313. name: "Front",
  34314. image: {
  34315. source: "./media/characters/kass-lockheed/front.svg",
  34316. extra: 354/343,
  34317. bottom: 9/363
  34318. }
  34319. },
  34320. back: {
  34321. height: math.unit(12 + 6/12, "feet"),
  34322. name: "Back",
  34323. image: {
  34324. source: "./media/characters/kass-lockheed/back.svg",
  34325. extra: 364/352,
  34326. bottom: 3/367
  34327. }
  34328. },
  34329. dick: {
  34330. height: math.unit(3.12, "feet"),
  34331. name: "Dick",
  34332. image: {
  34333. source: "./media/characters/kass-lockheed/dick.svg"
  34334. }
  34335. },
  34336. head: {
  34337. height: math.unit(2.6, "feet"),
  34338. name: "Head",
  34339. image: {
  34340. source: "./media/characters/kass-lockheed/head.svg"
  34341. }
  34342. },
  34343. bleh: {
  34344. height: math.unit(2.85, "feet"),
  34345. name: "Bleh",
  34346. image: {
  34347. source: "./media/characters/kass-lockheed/bleh.svg"
  34348. }
  34349. },
  34350. smug: {
  34351. height: math.unit(2.85, "feet"),
  34352. name: "Smug",
  34353. image: {
  34354. source: "./media/characters/kass-lockheed/smug.svg"
  34355. }
  34356. },
  34357. },
  34358. [
  34359. {
  34360. name: "Normal",
  34361. height: math.unit(12 + 6/12, "feet"),
  34362. default: true
  34363. },
  34364. ]
  34365. ))
  34366. characterMakers.push(() => makeCharacter(
  34367. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34368. {
  34369. front: {
  34370. height: math.unit(6 + 2/12, "feet"),
  34371. name: "Front",
  34372. image: {
  34373. source: "./media/characters/taylor/front.svg",
  34374. extra: 639/495,
  34375. bottom: 12/651
  34376. }
  34377. },
  34378. },
  34379. [
  34380. {
  34381. name: "Normal",
  34382. height: math.unit(6 + 2/12, "feet"),
  34383. default: true
  34384. },
  34385. {
  34386. name: "Big",
  34387. height: math.unit(15, "feet")
  34388. },
  34389. {
  34390. name: "Lorg",
  34391. height: math.unit(80, "feet")
  34392. },
  34393. {
  34394. name: "Too Lorg",
  34395. height: math.unit(120, "feet")
  34396. },
  34397. ]
  34398. ))
  34399. characterMakers.push(() => makeCharacter(
  34400. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34401. {
  34402. front: {
  34403. height: math.unit(15, "feet"),
  34404. name: "Front",
  34405. image: {
  34406. source: "./media/characters/kaizer/front.svg",
  34407. extra: 1612/1436,
  34408. bottom: 43/1655
  34409. }
  34410. },
  34411. },
  34412. [
  34413. {
  34414. name: "Normal",
  34415. height: math.unit(15, "feet"),
  34416. default: true
  34417. },
  34418. ]
  34419. ))
  34420. characterMakers.push(() => makeCharacter(
  34421. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34422. {
  34423. front: {
  34424. height: math.unit(2, "feet"),
  34425. weight: math.unit(30, "lb"),
  34426. name: "Front",
  34427. image: {
  34428. source: "./media/characters/sandy/front.svg",
  34429. extra: 1439/1307,
  34430. bottom: 194/1633
  34431. }
  34432. },
  34433. },
  34434. [
  34435. {
  34436. name: "Normal",
  34437. height: math.unit(2, "feet"),
  34438. default: true
  34439. },
  34440. ]
  34441. ))
  34442. characterMakers.push(() => makeCharacter(
  34443. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34444. {
  34445. front: {
  34446. height: math.unit(3, "feet"),
  34447. name: "Front",
  34448. image: {
  34449. source: "./media/characters/mellvi/front.svg",
  34450. extra: 1831/1630,
  34451. bottom: 58/1889
  34452. }
  34453. },
  34454. },
  34455. [
  34456. {
  34457. name: "Normal",
  34458. height: math.unit(3, "feet"),
  34459. default: true
  34460. },
  34461. ]
  34462. ))
  34463. characterMakers.push(() => makeCharacter(
  34464. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34465. {
  34466. front: {
  34467. height: math.unit(5 + 11/12, "feet"),
  34468. weight: math.unit(200, "lb"),
  34469. name: "Front",
  34470. image: {
  34471. source: "./media/characters/shirou/front.svg",
  34472. extra: 2491/2383,
  34473. bottom: 189/2680
  34474. }
  34475. },
  34476. back: {
  34477. height: math.unit(5 + 11/12, "feet"),
  34478. weight: math.unit(200, "lb"),
  34479. name: "Back",
  34480. image: {
  34481. source: "./media/characters/shirou/back.svg",
  34482. extra: 2554/2450,
  34483. bottom: 76/2630
  34484. }
  34485. },
  34486. },
  34487. [
  34488. {
  34489. name: "Normal",
  34490. height: math.unit(5 + 11/12, "feet"),
  34491. default: true
  34492. },
  34493. ]
  34494. ))
  34495. characterMakers.push(() => makeCharacter(
  34496. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34497. {
  34498. front: {
  34499. height: math.unit(6 + 3/12, "feet"),
  34500. weight: math.unit(177, "lb"),
  34501. name: "Front",
  34502. image: {
  34503. source: "./media/characters/noryu/front.svg",
  34504. extra: 973/885,
  34505. bottom: 10/983
  34506. }
  34507. },
  34508. },
  34509. [
  34510. {
  34511. name: "Normal",
  34512. height: math.unit(6 + 3/12, "feet"),
  34513. default: true
  34514. },
  34515. ]
  34516. ))
  34517. characterMakers.push(() => makeCharacter(
  34518. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34519. {
  34520. front: {
  34521. height: math.unit(5 + 6/12, "feet"),
  34522. weight: math.unit(170, "lb"),
  34523. name: "Front",
  34524. image: {
  34525. source: "./media/characters/mevolas-rubenido/front.svg",
  34526. extra: 2109/1901,
  34527. bottom: 96/2205
  34528. }
  34529. },
  34530. },
  34531. [
  34532. {
  34533. name: "Normal",
  34534. height: math.unit(5 + 6/12, "feet"),
  34535. default: true
  34536. },
  34537. ]
  34538. ))
  34539. characterMakers.push(() => makeCharacter(
  34540. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34541. {
  34542. front: {
  34543. height: math.unit(100, "feet"),
  34544. name: "Front",
  34545. image: {
  34546. source: "./media/characters/dee/front.svg",
  34547. extra: 2153/2036,
  34548. bottom: 59/2212
  34549. }
  34550. },
  34551. back: {
  34552. height: math.unit(100, "feet"),
  34553. name: "Back",
  34554. image: {
  34555. source: "./media/characters/dee/back.svg",
  34556. extra: 2183/2058,
  34557. bottom: 75/2258
  34558. }
  34559. },
  34560. foot: {
  34561. height: math.unit(19.43, "feet"),
  34562. name: "Foot",
  34563. image: {
  34564. source: "./media/characters/dee/foot.svg"
  34565. }
  34566. },
  34567. hoof: {
  34568. height: math.unit(20.6, "feet"),
  34569. name: "Hoof",
  34570. image: {
  34571. source: "./media/characters/dee/hoof.svg"
  34572. }
  34573. },
  34574. },
  34575. [
  34576. {
  34577. name: "Macro",
  34578. height: math.unit(100, "feet"),
  34579. default: true
  34580. },
  34581. ]
  34582. ))
  34583. characterMakers.push(() => makeCharacter(
  34584. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34585. {
  34586. front: {
  34587. height: math.unit(5 + 6/12, "feet"),
  34588. name: "Front",
  34589. image: {
  34590. source: "./media/characters/teh/front.svg",
  34591. extra: 1002/847,
  34592. bottom: 62/1064
  34593. }
  34594. },
  34595. },
  34596. [
  34597. {
  34598. name: "Normal",
  34599. height: math.unit(5 + 6/12, "feet"),
  34600. default: true
  34601. },
  34602. ]
  34603. ))
  34604. characterMakers.push(() => makeCharacter(
  34605. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34606. {
  34607. side: {
  34608. height: math.unit(6 + 1/12, "feet"),
  34609. weight: math.unit(204, "lb"),
  34610. name: "Side",
  34611. image: {
  34612. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34613. extra: 974/775,
  34614. bottom: 169/1143
  34615. }
  34616. },
  34617. sitting: {
  34618. height: math.unit(6 + 2/12, "feet"),
  34619. weight: math.unit(204, "lb"),
  34620. name: "Sitting",
  34621. image: {
  34622. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34623. extra: 1175/964,
  34624. bottom: 378/1553
  34625. }
  34626. },
  34627. },
  34628. [
  34629. {
  34630. name: "Normal",
  34631. height: math.unit(6 + 1/12, "feet"),
  34632. default: true
  34633. },
  34634. ]
  34635. ))
  34636. characterMakers.push(() => makeCharacter(
  34637. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34638. {
  34639. front: {
  34640. height: math.unit(6, "inches"),
  34641. name: "Front",
  34642. image: {
  34643. source: "./media/characters/tululi/front.svg",
  34644. extra: 1997/1876,
  34645. bottom: 20/2017
  34646. }
  34647. },
  34648. },
  34649. [
  34650. {
  34651. name: "Normal",
  34652. height: math.unit(6, "inches"),
  34653. default: true
  34654. },
  34655. ]
  34656. ))
  34657. characterMakers.push(() => makeCharacter(
  34658. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34659. {
  34660. front: {
  34661. height: math.unit(4 + 1/12, "feet"),
  34662. name: "Front",
  34663. image: {
  34664. source: "./media/characters/star/front.svg",
  34665. extra: 1493/1189,
  34666. bottom: 48/1541
  34667. }
  34668. },
  34669. },
  34670. [
  34671. {
  34672. name: "Normal",
  34673. height: math.unit(4 + 1/12, "feet"),
  34674. default: true
  34675. },
  34676. ]
  34677. ))
  34678. characterMakers.push(() => makeCharacter(
  34679. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34680. {
  34681. front: {
  34682. height: math.unit(6 + 3/12, "feet"),
  34683. name: "Front",
  34684. image: {
  34685. source: "./media/characters/comet/front.svg",
  34686. extra: 1681/1462,
  34687. bottom: 26/1707
  34688. }
  34689. },
  34690. },
  34691. [
  34692. {
  34693. name: "Normal",
  34694. height: math.unit(6 + 3/12, "feet"),
  34695. default: true
  34696. },
  34697. ]
  34698. ))
  34699. characterMakers.push(() => makeCharacter(
  34700. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34701. {
  34702. front: {
  34703. height: math.unit(950, "feet"),
  34704. name: "Front",
  34705. image: {
  34706. source: "./media/characters/vortex/front.svg",
  34707. extra: 1497/1434,
  34708. bottom: 56/1553
  34709. }
  34710. },
  34711. maw: {
  34712. height: math.unit(285, "feet"),
  34713. name: "Maw",
  34714. image: {
  34715. source: "./media/characters/vortex/maw.svg"
  34716. }
  34717. },
  34718. },
  34719. [
  34720. {
  34721. name: "Macro",
  34722. height: math.unit(950, "feet"),
  34723. default: true
  34724. },
  34725. ]
  34726. ))
  34727. characterMakers.push(() => makeCharacter(
  34728. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34729. {
  34730. front: {
  34731. height: math.unit(600, "feet"),
  34732. weight: math.unit(0.02, "grams"),
  34733. name: "Front",
  34734. image: {
  34735. source: "./media/characters/doodle/front.svg",
  34736. extra: 1578/1413,
  34737. bottom: 37/1615
  34738. }
  34739. },
  34740. },
  34741. [
  34742. {
  34743. name: "Macro",
  34744. height: math.unit(600, "feet"),
  34745. default: true
  34746. },
  34747. ]
  34748. ))
  34749. characterMakers.push(() => makeCharacter(
  34750. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34751. {
  34752. front: {
  34753. height: math.unit(6 + 6/12, "feet"),
  34754. name: "Front",
  34755. image: {
  34756. source: "./media/characters/jai/front.svg",
  34757. extra: 1645/1534,
  34758. bottom: 115/1760
  34759. }
  34760. },
  34761. },
  34762. [
  34763. {
  34764. name: "Normal",
  34765. height: math.unit(6 + 6/12, "feet"),
  34766. default: true
  34767. },
  34768. ]
  34769. ))
  34770. characterMakers.push(() => makeCharacter(
  34771. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34772. {
  34773. front: {
  34774. height: math.unit(6 + 8/12, "feet"),
  34775. name: "Front",
  34776. image: {
  34777. source: "./media/characters/pixel/front.svg",
  34778. extra: 1900/1735,
  34779. bottom: 63/1963
  34780. }
  34781. },
  34782. },
  34783. [
  34784. {
  34785. name: "Normal",
  34786. height: math.unit(6 + 8/12, "feet"),
  34787. default: true
  34788. },
  34789. ]
  34790. ))
  34791. characterMakers.push(() => makeCharacter(
  34792. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34793. {
  34794. front: {
  34795. height: math.unit(4 + 11/12, "feet"),
  34796. weight: math.unit(111, "lb"),
  34797. name: "Front",
  34798. image: {
  34799. source: "./media/characters/rhett/front.svg",
  34800. extra: 1682/1586,
  34801. bottom: 92/1774
  34802. }
  34803. },
  34804. },
  34805. [
  34806. {
  34807. name: "Mini",
  34808. height: math.unit(1 + 1/12, "feet")
  34809. },
  34810. {
  34811. name: "Normal",
  34812. height: math.unit(4 + 11/12, "feet"),
  34813. default: true
  34814. },
  34815. ]
  34816. ))
  34817. characterMakers.push(() => makeCharacter(
  34818. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34819. {
  34820. front: {
  34821. height: math.unit(3 + 3/12, "feet"),
  34822. name: "Front",
  34823. image: {
  34824. source: "./media/characters/penny/front.svg",
  34825. extra: 1406/1311,
  34826. bottom: 26/1432
  34827. }
  34828. },
  34829. },
  34830. [
  34831. {
  34832. name: "Normal",
  34833. height: math.unit(3 + 3/12, "feet"),
  34834. default: true
  34835. },
  34836. ]
  34837. ))
  34838. characterMakers.push(() => makeCharacter(
  34839. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34840. {
  34841. front: {
  34842. height: math.unit(4 + 11/12, "feet"),
  34843. name: "Front",
  34844. image: {
  34845. source: "./media/characters/monty/front.svg",
  34846. extra: 1479/1209,
  34847. bottom: 0/1479
  34848. }
  34849. },
  34850. },
  34851. [
  34852. {
  34853. name: "Normal",
  34854. height: math.unit(4 + 11/12, "feet"),
  34855. default: true
  34856. },
  34857. ]
  34858. ))
  34859. characterMakers.push(() => makeCharacter(
  34860. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34861. {
  34862. front: {
  34863. height: math.unit(8 + 4/12, "feet"),
  34864. name: "Front",
  34865. image: {
  34866. source: "./media/characters/sterling/front.svg",
  34867. extra: 1420/1236,
  34868. bottom: 27/1447
  34869. }
  34870. },
  34871. },
  34872. [
  34873. {
  34874. name: "Normal",
  34875. height: math.unit(8 + 4/12, "feet"),
  34876. default: true
  34877. },
  34878. ]
  34879. ))
  34880. characterMakers.push(() => makeCharacter(
  34881. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34882. {
  34883. front: {
  34884. height: math.unit(15, "feet"),
  34885. name: "Front",
  34886. image: {
  34887. source: "./media/characters/marble/front.svg",
  34888. extra: 973/937,
  34889. bottom: 32/1005
  34890. }
  34891. },
  34892. },
  34893. [
  34894. {
  34895. name: "Normal",
  34896. height: math.unit(15, "feet"),
  34897. default: true
  34898. },
  34899. ]
  34900. ))
  34901. characterMakers.push(() => makeCharacter(
  34902. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34903. {
  34904. front: {
  34905. height: math.unit(3, "inches"),
  34906. name: "Front",
  34907. image: {
  34908. source: "./media/characters/powder/front.svg",
  34909. extra: 1504/1334,
  34910. bottom: 518/2022
  34911. }
  34912. },
  34913. },
  34914. [
  34915. {
  34916. name: "Normal",
  34917. height: math.unit(3, "inches"),
  34918. default: true
  34919. },
  34920. ]
  34921. ))
  34922. characterMakers.push(() => makeCharacter(
  34923. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34924. {
  34925. front: {
  34926. height: math.unit(4 + 5/12, "feet"),
  34927. name: "Front",
  34928. image: {
  34929. source: "./media/characters/joey-raccoon/front.svg",
  34930. extra: 1273/1197,
  34931. bottom: 0/1273
  34932. }
  34933. },
  34934. },
  34935. [
  34936. {
  34937. name: "Normal",
  34938. height: math.unit(4 + 5/12, "feet"),
  34939. default: true
  34940. },
  34941. ]
  34942. ))
  34943. characterMakers.push(() => makeCharacter(
  34944. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34945. {
  34946. front: {
  34947. height: math.unit(8 + 4/12, "feet"),
  34948. name: "Front",
  34949. image: {
  34950. source: "./media/characters/vick/front.svg",
  34951. extra: 2187/2118,
  34952. bottom: 47/2234
  34953. }
  34954. },
  34955. },
  34956. [
  34957. {
  34958. name: "Normal",
  34959. height: math.unit(8 + 4/12, "feet"),
  34960. default: true
  34961. },
  34962. ]
  34963. ))
  34964. characterMakers.push(() => makeCharacter(
  34965. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34966. {
  34967. front: {
  34968. height: math.unit(5 + 5/12, "feet"),
  34969. name: "Front",
  34970. image: {
  34971. source: "./media/characters/mitsy/front.svg",
  34972. extra: 1842/1695,
  34973. bottom: 0/1842
  34974. }
  34975. },
  34976. },
  34977. [
  34978. {
  34979. name: "Normal",
  34980. height: math.unit(5 + 5/12, "feet"),
  34981. default: true
  34982. },
  34983. ]
  34984. ))
  34985. characterMakers.push(() => makeCharacter(
  34986. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34987. {
  34988. front: {
  34989. height: math.unit(6 + 3/12, "feet"),
  34990. name: "Front",
  34991. image: {
  34992. source: "./media/characters/silvy/front.svg",
  34993. extra: 1995/1836,
  34994. bottom: 225/2220
  34995. }
  34996. },
  34997. },
  34998. [
  34999. {
  35000. name: "Normal",
  35001. height: math.unit(6 + 3/12, "feet"),
  35002. default: true
  35003. },
  35004. ]
  35005. ))
  35006. characterMakers.push(() => makeCharacter(
  35007. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35008. {
  35009. front: {
  35010. height: math.unit(3 + 8/12, "feet"),
  35011. name: "Front",
  35012. image: {
  35013. source: "./media/characters/rodney/front.svg",
  35014. extra: 1956/1747,
  35015. bottom: 31/1987
  35016. }
  35017. },
  35018. frontDressed: {
  35019. height: math.unit(2.9, "feet"),
  35020. name: "Front (Dressed)",
  35021. image: {
  35022. source: "./media/characters/rodney/front-dressed.svg",
  35023. extra: 1382/1241,
  35024. bottom: 385/1767
  35025. }
  35026. },
  35027. },
  35028. [
  35029. {
  35030. name: "Normal",
  35031. height: math.unit(3 + 8/12, "feet"),
  35032. default: true
  35033. },
  35034. ]
  35035. ))
  35036. characterMakers.push(() => makeCharacter(
  35037. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35038. {
  35039. front: {
  35040. height: math.unit(5 + 9/12, "feet"),
  35041. weight: math.unit(194, "lbs"),
  35042. name: "Front",
  35043. image: {
  35044. source: "./media/characters/zakail-sudekai/front.svg",
  35045. extra: 2696/2533,
  35046. bottom: 248/2944
  35047. }
  35048. },
  35049. maw: {
  35050. height: math.unit(1.35, "feet"),
  35051. name: "Maw",
  35052. image: {
  35053. source: "./media/characters/zakail-sudekai/maw.svg"
  35054. }
  35055. },
  35056. },
  35057. [
  35058. {
  35059. name: "Normal",
  35060. height: math.unit(5 + 9/12, "feet"),
  35061. default: true
  35062. },
  35063. ]
  35064. ))
  35065. characterMakers.push(() => makeCharacter(
  35066. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35067. {
  35068. front: {
  35069. height: math.unit(8 + 4/12, "feet"),
  35070. weight: math.unit(1200, "lb"),
  35071. name: "Front",
  35072. image: {
  35073. source: "./media/characters/eleanor/front.svg",
  35074. extra: 1226/1192,
  35075. bottom: 52/1278
  35076. }
  35077. },
  35078. back: {
  35079. height: math.unit(8 + 4/12, "feet"),
  35080. weight: math.unit(1200, "lb"),
  35081. name: "Back",
  35082. image: {
  35083. source: "./media/characters/eleanor/back.svg",
  35084. extra: 1242/1184,
  35085. bottom: 60/1302
  35086. }
  35087. },
  35088. head: {
  35089. height: math.unit(2.62, "feet"),
  35090. name: "Head",
  35091. image: {
  35092. source: "./media/characters/eleanor/head.svg"
  35093. }
  35094. },
  35095. },
  35096. [
  35097. {
  35098. name: "Normal",
  35099. height: math.unit(8 + 4/12, "feet"),
  35100. default: true
  35101. },
  35102. ]
  35103. ))
  35104. characterMakers.push(() => makeCharacter(
  35105. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35106. {
  35107. front: {
  35108. height: math.unit(8 + 4/12, "feet"),
  35109. weight: math.unit(750, "lb"),
  35110. name: "Front",
  35111. image: {
  35112. source: "./media/characters/tanya/front.svg",
  35113. extra: 1749/1615,
  35114. bottom: 33/1782
  35115. }
  35116. },
  35117. },
  35118. [
  35119. {
  35120. name: "Normal",
  35121. height: math.unit(8 + 4/12, "feet"),
  35122. default: true
  35123. },
  35124. ]
  35125. ))
  35126. characterMakers.push(() => makeCharacter(
  35127. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35128. {
  35129. front: {
  35130. height: math.unit(5, "feet"),
  35131. weight: math.unit(225, "lb"),
  35132. name: "Front",
  35133. image: {
  35134. source: "./media/characters/cindy/front.svg",
  35135. extra: 1320/1250,
  35136. bottom: 42/1362
  35137. }
  35138. },
  35139. frontDressed: {
  35140. height: math.unit(5, "feet"),
  35141. weight: math.unit(225, "lb"),
  35142. name: "Front (Dressed)",
  35143. image: {
  35144. source: "./media/characters/cindy/front-dressed.svg",
  35145. extra: 1320/1250,
  35146. bottom: 42/1362
  35147. }
  35148. },
  35149. back: {
  35150. height: math.unit(5, "feet"),
  35151. weight: math.unit(225, "lb"),
  35152. name: "Back",
  35153. image: {
  35154. source: "./media/characters/cindy/back.svg",
  35155. extra: 1384/1346,
  35156. bottom: 14/1398
  35157. }
  35158. },
  35159. },
  35160. [
  35161. {
  35162. name: "Normal",
  35163. height: math.unit(5, "feet"),
  35164. default: true
  35165. },
  35166. ]
  35167. ))
  35168. characterMakers.push(() => makeCharacter(
  35169. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35170. {
  35171. front: {
  35172. height: math.unit(6 + 9/12, "feet"),
  35173. weight: math.unit(440, "lb"),
  35174. name: "Front",
  35175. image: {
  35176. source: "./media/characters/wilbur-owen/front.svg",
  35177. extra: 1575/1448,
  35178. bottom: 72/1647
  35179. }
  35180. },
  35181. back: {
  35182. height: math.unit(6 + 9/12, "feet"),
  35183. weight: math.unit(440, "lb"),
  35184. name: "Back",
  35185. image: {
  35186. source: "./media/characters/wilbur-owen/back.svg",
  35187. extra: 1578/1445,
  35188. bottom: 36/1614
  35189. }
  35190. },
  35191. },
  35192. [
  35193. {
  35194. name: "Normal",
  35195. height: math.unit(6 + 9/12, "feet"),
  35196. default: true
  35197. },
  35198. ]
  35199. ))
  35200. characterMakers.push(() => makeCharacter(
  35201. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35202. {
  35203. front: {
  35204. height: math.unit(6 + 5/12, "feet"),
  35205. weight: math.unit(650, "lb"),
  35206. name: "Front",
  35207. image: {
  35208. source: "./media/characters/keegan/front.svg",
  35209. extra: 2387/2198,
  35210. bottom: 33/2420
  35211. }
  35212. },
  35213. side: {
  35214. height: math.unit(6 + 5/12, "feet"),
  35215. weight: math.unit(650, "lb"),
  35216. name: "Side",
  35217. image: {
  35218. source: "./media/characters/keegan/side.svg",
  35219. extra: 2390/2202,
  35220. bottom: 47/2437
  35221. }
  35222. },
  35223. back: {
  35224. height: math.unit(6 + 5/12, "feet"),
  35225. weight: math.unit(650, "lb"),
  35226. name: "Back",
  35227. image: {
  35228. source: "./media/characters/keegan/back.svg",
  35229. extra: 2418/2268,
  35230. bottom: 15/2433
  35231. }
  35232. },
  35233. frontSfw: {
  35234. height: math.unit(6 + 5/12, "feet"),
  35235. weight: math.unit(650, "lb"),
  35236. name: "Front (SFW)",
  35237. image: {
  35238. source: "./media/characters/keegan/front-sfw.svg",
  35239. extra: 2387/2198,
  35240. bottom: 33/2420
  35241. }
  35242. },
  35243. beans: {
  35244. height: math.unit(1.85, "feet"),
  35245. name: "Beans",
  35246. image: {
  35247. source: "./media/characters/keegan/beans.svg"
  35248. }
  35249. },
  35250. },
  35251. [
  35252. {
  35253. name: "Normal",
  35254. height: math.unit(6 + 5/12, "feet"),
  35255. default: true
  35256. },
  35257. ]
  35258. ))
  35259. characterMakers.push(() => makeCharacter(
  35260. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35261. {
  35262. front: {
  35263. height: math.unit(9, "feet"),
  35264. name: "Front",
  35265. image: {
  35266. source: "./media/characters/colton/front.svg",
  35267. extra: 1589/1326,
  35268. bottom: 139/1728
  35269. }
  35270. },
  35271. },
  35272. [
  35273. {
  35274. name: "Normal",
  35275. height: math.unit(9, "feet"),
  35276. default: true
  35277. },
  35278. ]
  35279. ))
  35280. characterMakers.push(() => makeCharacter(
  35281. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35282. {
  35283. front: {
  35284. height: math.unit(2 + 9/12, "feet"),
  35285. name: "Front",
  35286. image: {
  35287. source: "./media/characters/bora/front.svg",
  35288. extra: 1265/1250,
  35289. bottom: 24/1289
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Normal",
  35296. height: math.unit(2 + 9/12, "feet"),
  35297. default: true
  35298. },
  35299. ]
  35300. ))
  35301. characterMakers.push(() => makeCharacter(
  35302. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35303. {
  35304. front: {
  35305. height: math.unit(8, "feet"),
  35306. name: "Front",
  35307. image: {
  35308. source: "./media/characters/myu-myu/front.svg",
  35309. extra: 1949/1857,
  35310. bottom: 90/2039
  35311. }
  35312. },
  35313. },
  35314. [
  35315. {
  35316. name: "Normal",
  35317. height: math.unit(8, "feet"),
  35318. default: true
  35319. },
  35320. {
  35321. name: "Big",
  35322. height: math.unit(15, "feet")
  35323. },
  35324. {
  35325. name: "BIG",
  35326. height: math.unit(25, "feet")
  35327. },
  35328. ]
  35329. ))
  35330. characterMakers.push(() => makeCharacter(
  35331. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35332. {
  35333. side: {
  35334. height: math.unit(7 + 5/12, "feet"),
  35335. weight: math.unit(2800, "lb"),
  35336. name: "Side",
  35337. image: {
  35338. source: "./media/characters/haloren/side.svg",
  35339. extra: 1793/409,
  35340. bottom: 59/1852
  35341. }
  35342. },
  35343. frontPaw: {
  35344. height: math.unit(2.36, "feet"),
  35345. name: "Front paw",
  35346. image: {
  35347. source: "./media/characters/haloren/front-paw.svg"
  35348. }
  35349. },
  35350. hindPaw: {
  35351. height: math.unit(3.18, "feet"),
  35352. name: "Hind paw",
  35353. image: {
  35354. source: "./media/characters/haloren/hind-paw.svg"
  35355. }
  35356. },
  35357. maw: {
  35358. height: math.unit(5.05, "feet"),
  35359. name: "Maw",
  35360. image: {
  35361. source: "./media/characters/haloren/maw.svg"
  35362. }
  35363. },
  35364. dick: {
  35365. height: math.unit(2.90, "feet"),
  35366. name: "Dick",
  35367. image: {
  35368. source: "./media/characters/haloren/dick.svg"
  35369. }
  35370. },
  35371. },
  35372. [
  35373. {
  35374. name: "Normal",
  35375. height: math.unit(7 + 5/12, "feet"),
  35376. default: true
  35377. },
  35378. {
  35379. name: "Enhanced",
  35380. height: math.unit(14 + 3/12, "feet")
  35381. },
  35382. ]
  35383. ))
  35384. characterMakers.push(() => makeCharacter(
  35385. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35386. {
  35387. front: {
  35388. height: math.unit(171, "cm"),
  35389. name: "Front",
  35390. image: {
  35391. source: "./media/characters/kimmy/front.svg",
  35392. extra: 1491/1435,
  35393. bottom: 53/1544
  35394. }
  35395. },
  35396. },
  35397. [
  35398. {
  35399. name: "Small",
  35400. height: math.unit(9, "cm")
  35401. },
  35402. {
  35403. name: "Normal",
  35404. height: math.unit(171, "cm"),
  35405. default: true
  35406. },
  35407. ]
  35408. ))
  35409. characterMakers.push(() => makeCharacter(
  35410. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35411. {
  35412. front: {
  35413. height: math.unit(8, "feet"),
  35414. weight: math.unit(300, "lb"),
  35415. name: "Front",
  35416. image: {
  35417. source: "./media/characters/galeboomer/front.svg",
  35418. extra: 4651/4415,
  35419. bottom: 162/4813
  35420. }
  35421. },
  35422. back: {
  35423. height: math.unit(8, "feet"),
  35424. weight: math.unit(300, "lb"),
  35425. name: "Back",
  35426. image: {
  35427. source: "./media/characters/galeboomer/back.svg",
  35428. extra: 4544/4314,
  35429. bottom: 16/4560
  35430. }
  35431. },
  35432. frontAlt: {
  35433. height: math.unit(8, "feet"),
  35434. weight: math.unit(300, "lb"),
  35435. name: "Front (Alt)",
  35436. image: {
  35437. source: "./media/characters/galeboomer/front-alt.svg",
  35438. extra: 4458/4228,
  35439. bottom: 68/4526
  35440. }
  35441. },
  35442. maw: {
  35443. height: math.unit(1.2, "feet"),
  35444. name: "Maw",
  35445. image: {
  35446. source: "./media/characters/galeboomer/maw.svg"
  35447. }
  35448. },
  35449. },
  35450. [
  35451. {
  35452. name: "Normal",
  35453. height: math.unit(8, "feet"),
  35454. default: true
  35455. },
  35456. ]
  35457. ))
  35458. characterMakers.push(() => makeCharacter(
  35459. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35460. {
  35461. front: {
  35462. height: math.unit(5 + 9/12, "feet"),
  35463. weight: math.unit(120, "lb"),
  35464. name: "Front",
  35465. image: {
  35466. source: "./media/characters/chyr/front.svg",
  35467. extra: 1323/1254,
  35468. bottom: 63/1386
  35469. }
  35470. },
  35471. back: {
  35472. height: math.unit(5 + 9/12, "feet"),
  35473. weight: math.unit(120, "lb"),
  35474. name: "Back",
  35475. image: {
  35476. source: "./media/characters/chyr/back.svg",
  35477. extra: 1323/1252,
  35478. bottom: 48/1371
  35479. }
  35480. },
  35481. },
  35482. [
  35483. {
  35484. name: "Normal",
  35485. height: math.unit(5 + 9/12, "feet"),
  35486. default: true
  35487. },
  35488. ]
  35489. ))
  35490. characterMakers.push(() => makeCharacter(
  35491. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35492. {
  35493. front: {
  35494. height: math.unit(7, "feet"),
  35495. weight: math.unit(310, "lb"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/solarus/front.svg",
  35499. extra: 2415/2021,
  35500. bottom: 103/2518
  35501. }
  35502. },
  35503. back: {
  35504. height: math.unit(7, "feet"),
  35505. weight: math.unit(310, "lb"),
  35506. name: "Back",
  35507. image: {
  35508. source: "./media/characters/solarus/back.svg",
  35509. extra: 2463/2089,
  35510. bottom: 79/2542
  35511. }
  35512. },
  35513. },
  35514. [
  35515. {
  35516. name: "Normal",
  35517. height: math.unit(7, "feet"),
  35518. default: true
  35519. },
  35520. ]
  35521. ))
  35522. characterMakers.push(() => makeCharacter(
  35523. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35524. {
  35525. front: {
  35526. height: math.unit(16, "feet"),
  35527. name: "Front",
  35528. image: {
  35529. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35530. extra: 1844/1780,
  35531. bottom: 58/1902
  35532. }
  35533. },
  35534. },
  35535. [
  35536. {
  35537. name: "Normal",
  35538. height: math.unit(16, "feet"),
  35539. default: true
  35540. },
  35541. ]
  35542. ))
  35543. characterMakers.push(() => makeCharacter(
  35544. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35545. {
  35546. front: {
  35547. height: math.unit(11 + 6/12, "feet"),
  35548. weight: math.unit(1366, "lb"),
  35549. name: "Front",
  35550. image: {
  35551. source: "./media/characters/lexor/front.svg",
  35552. extra: 1560/1481,
  35553. bottom: 211/1771
  35554. }
  35555. },
  35556. back: {
  35557. height: math.unit(11 + 6/12, "feet"),
  35558. weight: math.unit(1366, "lb"),
  35559. name: "Back",
  35560. image: {
  35561. source: "./media/characters/lexor/back.svg",
  35562. extra: 1614/1533,
  35563. bottom: 76/1690
  35564. }
  35565. },
  35566. maw: {
  35567. height: math.unit(3, "feet"),
  35568. name: "Maw",
  35569. image: {
  35570. source: "./media/characters/lexor/maw.svg"
  35571. }
  35572. },
  35573. dick: {
  35574. height: math.unit(2.59, "feet"),
  35575. name: "Dick",
  35576. image: {
  35577. source: "./media/characters/lexor/dick.svg"
  35578. }
  35579. },
  35580. },
  35581. [
  35582. {
  35583. name: "Normal",
  35584. height: math.unit(11 + 6/12, "feet"),
  35585. default: true
  35586. },
  35587. ]
  35588. ))
  35589. characterMakers.push(() => makeCharacter(
  35590. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35591. {
  35592. front: {
  35593. height: math.unit(5 + 8/12, "feet"),
  35594. name: "Front",
  35595. image: {
  35596. source: "./media/characters/magnum/front.svg",
  35597. extra: 942/855,
  35598. bottom: 26/968
  35599. }
  35600. },
  35601. },
  35602. [
  35603. {
  35604. name: "Normal",
  35605. height: math.unit(5 + 8/12, "feet"),
  35606. default: true
  35607. },
  35608. ]
  35609. ))
  35610. characterMakers.push(() => makeCharacter(
  35611. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35612. {
  35613. front: {
  35614. height: math.unit(18 + 4/12, "feet"),
  35615. weight: math.unit(1500, "kg"),
  35616. name: "Front",
  35617. image: {
  35618. source: "./media/characters/solas-sharpsman/front.svg",
  35619. extra: 1698/1589,
  35620. bottom: 0/1698
  35621. }
  35622. },
  35623. },
  35624. [
  35625. {
  35626. name: "Normal",
  35627. height: math.unit(18 + 4/12, "feet"),
  35628. default: true
  35629. },
  35630. ]
  35631. ))
  35632. characterMakers.push(() => makeCharacter(
  35633. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35634. {
  35635. front: {
  35636. height: math.unit(5 + 5/12, "feet"),
  35637. weight: math.unit(180, "lb"),
  35638. name: "Front",
  35639. image: {
  35640. source: "./media/characters/october/front.svg",
  35641. extra: 1800/1650,
  35642. bottom: 0/1800
  35643. }
  35644. },
  35645. frontNsfw: {
  35646. height: math.unit(5 + 5/12, "feet"),
  35647. weight: math.unit(180, "lb"),
  35648. name: "Front (NSFW)",
  35649. image: {
  35650. source: "./media/characters/october/front-nsfw.svg",
  35651. extra: 1392/1307,
  35652. bottom: 42/1434
  35653. }
  35654. },
  35655. },
  35656. [
  35657. {
  35658. name: "Normal",
  35659. height: math.unit(5 + 5/12, "feet"),
  35660. default: true
  35661. },
  35662. ]
  35663. ))
  35664. characterMakers.push(() => makeCharacter(
  35665. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35666. {
  35667. front: {
  35668. height: math.unit(8 + 6/12, "feet"),
  35669. name: "Front",
  35670. image: {
  35671. source: "./media/characters/essynkardi/front.svg",
  35672. extra: 1914/1846,
  35673. bottom: 22/1936
  35674. }
  35675. },
  35676. },
  35677. [
  35678. {
  35679. name: "Normal",
  35680. height: math.unit(8 + 6/12, "feet"),
  35681. default: true
  35682. },
  35683. ]
  35684. ))
  35685. characterMakers.push(() => makeCharacter(
  35686. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35687. {
  35688. front: {
  35689. height: math.unit(6 + 6/12, "feet"),
  35690. weight: math.unit(7, "lb"),
  35691. name: "Front",
  35692. image: {
  35693. source: "./media/characters/icky/front.svg",
  35694. extra: 813/782,
  35695. bottom: 66/879
  35696. }
  35697. },
  35698. back: {
  35699. height: math.unit(6 + 6/12, "feet"),
  35700. weight: math.unit(7, "lb"),
  35701. name: "Back",
  35702. image: {
  35703. source: "./media/characters/icky/back.svg",
  35704. extra: 754/735,
  35705. bottom: 56/810
  35706. }
  35707. },
  35708. },
  35709. [
  35710. {
  35711. name: "Normal",
  35712. height: math.unit(6 + 6/12, "feet"),
  35713. default: true
  35714. },
  35715. ]
  35716. ))
  35717. characterMakers.push(() => makeCharacter(
  35718. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35719. {
  35720. front: {
  35721. height: math.unit(15, "feet"),
  35722. name: "Front",
  35723. image: {
  35724. source: "./media/characters/rojas/front.svg",
  35725. extra: 1462/1408,
  35726. bottom: 95/1557
  35727. }
  35728. },
  35729. back: {
  35730. height: math.unit(15, "feet"),
  35731. name: "Back",
  35732. image: {
  35733. source: "./media/characters/rojas/back.svg",
  35734. extra: 1023/954,
  35735. bottom: 28/1051
  35736. }
  35737. },
  35738. },
  35739. [
  35740. {
  35741. name: "Normal",
  35742. height: math.unit(15, "feet"),
  35743. default: true
  35744. },
  35745. ]
  35746. ))
  35747. characterMakers.push(() => makeCharacter(
  35748. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35749. {
  35750. frontHuman: {
  35751. height: math.unit(5 + 7/12, "feet"),
  35752. name: "Front (Human)",
  35753. image: {
  35754. source: "./media/characters/alek-dryagan/front-human.svg",
  35755. extra: 1687/1667,
  35756. bottom: 69/1756
  35757. }
  35758. },
  35759. backHuman: {
  35760. height: math.unit(5 + 7/12, "feet"),
  35761. name: "Back (Human)",
  35762. image: {
  35763. source: "./media/characters/alek-dryagan/back-human.svg",
  35764. extra: 1670/1649,
  35765. bottom: 65/1735
  35766. }
  35767. },
  35768. frontDemi: {
  35769. height: math.unit(65, "feet"),
  35770. name: "Front (Demi)",
  35771. image: {
  35772. source: "./media/characters/alek-dryagan/front-demi.svg",
  35773. extra: 1669/1642,
  35774. bottom: 49/1718
  35775. }
  35776. },
  35777. backDemi: {
  35778. height: math.unit(65, "feet"),
  35779. name: "Back (Demi)",
  35780. image: {
  35781. source: "./media/characters/alek-dryagan/back-demi.svg",
  35782. extra: 1658/1637,
  35783. bottom: 40/1698
  35784. }
  35785. },
  35786. mawHuman: {
  35787. height: math.unit(0.3, "feet"),
  35788. name: "Maw (Human)",
  35789. image: {
  35790. source: "./media/characters/alek-dryagan/maw-human.svg"
  35791. }
  35792. },
  35793. mawDemi: {
  35794. height: math.unit(3.8, "feet"),
  35795. name: "Maw (Demi)",
  35796. image: {
  35797. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35798. }
  35799. },
  35800. },
  35801. [
  35802. {
  35803. name: "Normal",
  35804. height: math.unit(5 + 7/12, "feet"),
  35805. default: true
  35806. },
  35807. ]
  35808. ))
  35809. characterMakers.push(() => makeCharacter(
  35810. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35811. {
  35812. frontHuman: {
  35813. height: math.unit(5 + 2/12, "feet"),
  35814. name: "Front (Human)",
  35815. image: {
  35816. source: "./media/characters/gen/front-human.svg",
  35817. extra: 1627/1538,
  35818. bottom: 71/1698
  35819. }
  35820. },
  35821. backHuman: {
  35822. height: math.unit(5 + 2/12, "feet"),
  35823. name: "Back (Human)",
  35824. image: {
  35825. source: "./media/characters/gen/back-human.svg",
  35826. extra: 1638/1548,
  35827. bottom: 69/1707
  35828. }
  35829. },
  35830. frontDemi: {
  35831. height: math.unit(5 + 2/12, "feet"),
  35832. name: "Front (Demi)",
  35833. image: {
  35834. source: "./media/characters/gen/front-demi.svg",
  35835. extra: 1627/1538,
  35836. bottom: 71/1698
  35837. }
  35838. },
  35839. backDemi: {
  35840. height: math.unit(5 + 2/12, "feet"),
  35841. name: "Back (Demi)",
  35842. image: {
  35843. source: "./media/characters/gen/back-demi.svg",
  35844. extra: 1638/1548,
  35845. bottom: 69/1707
  35846. }
  35847. },
  35848. },
  35849. [
  35850. {
  35851. name: "Normal",
  35852. height: math.unit(5 + 2/12, "feet"),
  35853. default: true
  35854. },
  35855. ]
  35856. ))
  35857. characterMakers.push(() => makeCharacter(
  35858. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35859. {
  35860. frontImp: {
  35861. height: math.unit(1 + 11/12, "feet"),
  35862. name: "Front (Imp)",
  35863. image: {
  35864. source: "./media/characters/max-kobold/front-imp.svg",
  35865. extra: 1238/1134,
  35866. bottom: 81/1319
  35867. }
  35868. },
  35869. backImp: {
  35870. height: math.unit(1 + 11/12, "feet"),
  35871. name: "Back (Imp)",
  35872. image: {
  35873. source: "./media/characters/max-kobold/back-imp.svg",
  35874. extra: 1334/1175,
  35875. bottom: 34/1368
  35876. }
  35877. },
  35878. frontDemi: {
  35879. height: math.unit(5 + 9/12, "feet"),
  35880. name: "Front (Demi)",
  35881. image: {
  35882. source: "./media/characters/max-kobold/front-demi.svg",
  35883. extra: 1715/1685,
  35884. bottom: 54/1769
  35885. }
  35886. },
  35887. backDemi: {
  35888. height: math.unit(5 + 9/12, "feet"),
  35889. name: "Back (Demi)",
  35890. image: {
  35891. source: "./media/characters/max-kobold/back-demi.svg",
  35892. extra: 1752/1729,
  35893. bottom: 41/1793
  35894. }
  35895. },
  35896. handImp: {
  35897. height: math.unit(0.45, "feet"),
  35898. name: "Hand (Imp)",
  35899. image: {
  35900. source: "./media/characters/max-kobold/hand.svg"
  35901. }
  35902. },
  35903. pawImp: {
  35904. height: math.unit(0.46, "feet"),
  35905. name: "Paw (Imp)",
  35906. image: {
  35907. source: "./media/characters/max-kobold/paw.svg"
  35908. }
  35909. },
  35910. handDemi: {
  35911. height: math.unit(0.80, "feet"),
  35912. name: "Hand (Demi)",
  35913. image: {
  35914. source: "./media/characters/max-kobold/hand.svg"
  35915. }
  35916. },
  35917. pawDemi: {
  35918. height: math.unit(1.1, "feet"),
  35919. name: "Paw (Demi)",
  35920. image: {
  35921. source: "./media/characters/max-kobold/paw.svg"
  35922. }
  35923. },
  35924. headImp: {
  35925. height: math.unit(1.33, "feet"),
  35926. name: "Head (Imp)",
  35927. image: {
  35928. source: "./media/characters/max-kobold/head-imp.svg"
  35929. }
  35930. },
  35931. mawImp: {
  35932. height: math.unit(0.75, "feet"),
  35933. name: "Maw (Imp)",
  35934. image: {
  35935. source: "./media/characters/max-kobold/maw-imp.svg"
  35936. }
  35937. },
  35938. mawDemi: {
  35939. height: math.unit(0.42, "feet"),
  35940. name: "Maw (Demi)",
  35941. image: {
  35942. source: "./media/characters/max-kobold/maw-demi.svg"
  35943. }
  35944. },
  35945. },
  35946. [
  35947. {
  35948. name: "Normal",
  35949. height: math.unit(1 + 11/12, "feet"),
  35950. default: true
  35951. },
  35952. ]
  35953. ))
  35954. characterMakers.push(() => makeCharacter(
  35955. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35956. {
  35957. front: {
  35958. height: math.unit(7 + 5/12, "feet"),
  35959. name: "Front",
  35960. image: {
  35961. source: "./media/characters/carbon/front.svg",
  35962. extra: 1754/1689,
  35963. bottom: 65/1819
  35964. }
  35965. },
  35966. back: {
  35967. height: math.unit(7 + 5/12, "feet"),
  35968. name: "Back",
  35969. image: {
  35970. source: "./media/characters/carbon/back.svg",
  35971. extra: 1762/1695,
  35972. bottom: 24/1786
  35973. }
  35974. },
  35975. frontGigantamax: {
  35976. height: math.unit(150, "feet"),
  35977. name: "Front (Gigantamax)",
  35978. image: {
  35979. source: "./media/characters/carbon/front-gigantamax.svg",
  35980. extra: 1826/1669,
  35981. bottom: 59/1885
  35982. }
  35983. },
  35984. backGigantamax: {
  35985. height: math.unit(150, "feet"),
  35986. name: "Back (Gigantamax)",
  35987. image: {
  35988. source: "./media/characters/carbon/back-gigantamax.svg",
  35989. extra: 1796/1653,
  35990. bottom: 53/1849
  35991. }
  35992. },
  35993. maw: {
  35994. height: math.unit(0.48, "feet"),
  35995. name: "Maw",
  35996. image: {
  35997. source: "./media/characters/carbon/maw.svg"
  35998. }
  35999. },
  36000. mawGigantamax: {
  36001. height: math.unit(7.5, "feet"),
  36002. name: "Maw (Gigantamax)",
  36003. image: {
  36004. source: "./media/characters/carbon/maw-gigantamax.svg"
  36005. }
  36006. },
  36007. },
  36008. [
  36009. {
  36010. name: "Normal",
  36011. height: math.unit(7 + 5/12, "feet"),
  36012. default: true
  36013. },
  36014. ]
  36015. ))
  36016. characterMakers.push(() => makeCharacter(
  36017. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36018. {
  36019. front: {
  36020. height: math.unit(6, "feet"),
  36021. name: "Front",
  36022. image: {
  36023. source: "./media/characters/maverick/front.svg",
  36024. extra: 1672/1661,
  36025. bottom: 85/1757
  36026. }
  36027. },
  36028. back: {
  36029. height: math.unit(6, "feet"),
  36030. name: "Back",
  36031. image: {
  36032. source: "./media/characters/maverick/back.svg",
  36033. extra: 1642/1631,
  36034. bottom: 38/1680
  36035. }
  36036. },
  36037. },
  36038. [
  36039. {
  36040. name: "Normal",
  36041. height: math.unit(6, "feet"),
  36042. default: true
  36043. },
  36044. ]
  36045. ))
  36046. characterMakers.push(() => makeCharacter(
  36047. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36048. {
  36049. front: {
  36050. height: math.unit(15, "feet"),
  36051. weight: math.unit(615, "lb"),
  36052. name: "Front",
  36053. image: {
  36054. source: "./media/characters/grockle/front.svg",
  36055. extra: 1535/1427,
  36056. bottom: 56/1591
  36057. }
  36058. },
  36059. },
  36060. [
  36061. {
  36062. name: "Normal",
  36063. height: math.unit(15, "feet"),
  36064. default: true
  36065. },
  36066. {
  36067. name: "Large",
  36068. height: math.unit(150, "feet")
  36069. },
  36070. {
  36071. name: "Macro",
  36072. height: math.unit(1876, "feet")
  36073. },
  36074. {
  36075. name: "Mega Macro",
  36076. height: math.unit(121940, "feet")
  36077. },
  36078. {
  36079. name: "Giga Macro",
  36080. height: math.unit(750, "km")
  36081. },
  36082. {
  36083. name: "Tera Macro",
  36084. height: math.unit(750000, "km")
  36085. },
  36086. {
  36087. name: "Galactic",
  36088. height: math.unit(1.4e5, "km")
  36089. },
  36090. {
  36091. name: "Godlike",
  36092. height: math.unit(9.8e280, "galaxies")
  36093. },
  36094. ]
  36095. ))
  36096. characterMakers.push(() => makeCharacter(
  36097. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36098. {
  36099. front: {
  36100. height: math.unit(11, "meters"),
  36101. weight: math.unit(20, "tonnes"),
  36102. name: "Front",
  36103. image: {
  36104. source: "./media/characters/alistair/front.svg",
  36105. extra: 1265/1009,
  36106. bottom: 93/1358
  36107. }
  36108. },
  36109. },
  36110. [
  36111. {
  36112. name: "Normal",
  36113. height: math.unit(11, "meters"),
  36114. default: true
  36115. },
  36116. ]
  36117. ))
  36118. characterMakers.push(() => makeCharacter(
  36119. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36120. {
  36121. front: {
  36122. height: math.unit(5 + 8/12, "feet"),
  36123. name: "Front",
  36124. image: {
  36125. source: "./media/characters/haruka/front.svg",
  36126. extra: 2012/1952,
  36127. bottom: 0/2012
  36128. }
  36129. },
  36130. },
  36131. [
  36132. {
  36133. name: "Normal",
  36134. height: math.unit(5 + 8/12, "feet"),
  36135. default: true
  36136. },
  36137. ]
  36138. ))
  36139. characterMakers.push(() => makeCharacter(
  36140. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36141. {
  36142. back: {
  36143. height: math.unit(9, "feet"),
  36144. name: "Back",
  36145. image: {
  36146. source: "./media/characters/vivian-sylveon/back.svg",
  36147. extra: 1853/1714,
  36148. bottom: 0/1853
  36149. }
  36150. },
  36151. },
  36152. [
  36153. {
  36154. name: "Normal",
  36155. height: math.unit(9, "feet"),
  36156. default: true
  36157. },
  36158. {
  36159. name: "Macro",
  36160. height: math.unit(500, "feet")
  36161. },
  36162. {
  36163. name: "Megamacro",
  36164. height: math.unit(600, "miles")
  36165. },
  36166. {
  36167. name: "Gigamacro",
  36168. height: math.unit(30000, "miles")
  36169. },
  36170. ]
  36171. ))
  36172. characterMakers.push(() => makeCharacter(
  36173. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36174. {
  36175. anthro: {
  36176. height: math.unit(5 + 10/12, "feet"),
  36177. weight: math.unit(100, "lb"),
  36178. name: "Anthro",
  36179. image: {
  36180. source: "./media/characters/daiki/anthro.svg",
  36181. extra: 1115/1027,
  36182. bottom: 69/1184
  36183. }
  36184. },
  36185. feral: {
  36186. height: math.unit(200, "feet"),
  36187. name: "Feral",
  36188. image: {
  36189. source: "./media/characters/daiki/feral.svg",
  36190. extra: 1256/313,
  36191. bottom: 39/1295
  36192. }
  36193. },
  36194. feralHead: {
  36195. height: math.unit(171, "feet"),
  36196. name: "Feral Head",
  36197. image: {
  36198. source: "./media/characters/daiki/feral-head.svg"
  36199. }
  36200. },
  36201. },
  36202. [
  36203. {
  36204. name: "Normal",
  36205. height: math.unit(5 + 10/12, "feet"),
  36206. default: true
  36207. },
  36208. ]
  36209. ))
  36210. characterMakers.push(() => makeCharacter(
  36211. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36212. {
  36213. fullyEquippedFront: {
  36214. height: math.unit(3 + 1/12, "feet"),
  36215. weight: math.unit(24, "lb"),
  36216. name: "Fully Equipped (Front)",
  36217. image: {
  36218. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36219. extra: 687/605,
  36220. bottom: 18/705
  36221. }
  36222. },
  36223. fullyEquippedBack: {
  36224. height: math.unit(3 + 1/12, "feet"),
  36225. weight: math.unit(24, "lb"),
  36226. name: "Fully Equipped (Back)",
  36227. image: {
  36228. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36229. extra: 689/590,
  36230. bottom: 18/707
  36231. }
  36232. },
  36233. dailyWear: {
  36234. height: math.unit(3 + 1/12, "feet"),
  36235. weight: math.unit(24, "lb"),
  36236. name: "Daily Wear",
  36237. image: {
  36238. source: "./media/characters/tea-spot/daily-wear.svg",
  36239. extra: 701/620,
  36240. bottom: 21/722
  36241. }
  36242. },
  36243. maidWork: {
  36244. height: math.unit(3 + 1/12, "feet"),
  36245. weight: math.unit(24, "lb"),
  36246. name: "Maid Work",
  36247. image: {
  36248. source: "./media/characters/tea-spot/maid-work.svg",
  36249. extra: 693/609,
  36250. bottom: 15/708
  36251. }
  36252. },
  36253. },
  36254. [
  36255. {
  36256. name: "Normal",
  36257. height: math.unit(3 + 1/12, "feet"),
  36258. default: true
  36259. },
  36260. ]
  36261. ))
  36262. characterMakers.push(() => makeCharacter(
  36263. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36264. {
  36265. front: {
  36266. height: math.unit(175, "cm"),
  36267. weight: math.unit(75, "kg"),
  36268. name: "Front",
  36269. image: {
  36270. source: "./media/characters/chee/front.svg",
  36271. extra: 1796/1740,
  36272. bottom: 40/1836
  36273. }
  36274. },
  36275. },
  36276. [
  36277. {
  36278. name: "Micro-Micro",
  36279. height: math.unit(1, "nm")
  36280. },
  36281. {
  36282. name: "Micro-erst",
  36283. height: math.unit(1, "micrometer")
  36284. },
  36285. {
  36286. name: "Micro-er",
  36287. height: math.unit(1, "cm")
  36288. },
  36289. {
  36290. name: "Normal",
  36291. height: math.unit(175, "cm"),
  36292. default: true
  36293. },
  36294. {
  36295. name: "Macro",
  36296. height: math.unit(100, "m")
  36297. },
  36298. {
  36299. name: "Macro-er",
  36300. height: math.unit(1, "km")
  36301. },
  36302. {
  36303. name: "Macro-erst",
  36304. height: math.unit(10, "km")
  36305. },
  36306. {
  36307. name: "Macro-Macro",
  36308. height: math.unit(100, "km")
  36309. },
  36310. ]
  36311. ))
  36312. characterMakers.push(() => makeCharacter(
  36313. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36314. {
  36315. front: {
  36316. height: math.unit(11 + 9/12, "feet"),
  36317. weight: math.unit(935, "lb"),
  36318. name: "Front",
  36319. image: {
  36320. source: "./media/characters/kingsley/front.svg",
  36321. extra: 1803/1674,
  36322. bottom: 127/1930
  36323. }
  36324. },
  36325. frontNude: {
  36326. height: math.unit(11 + 9/12, "feet"),
  36327. weight: math.unit(935, "lb"),
  36328. name: "Front (Nude)",
  36329. image: {
  36330. source: "./media/characters/kingsley/front-nude.svg",
  36331. extra: 1803/1674,
  36332. bottom: 127/1930
  36333. }
  36334. },
  36335. },
  36336. [
  36337. {
  36338. name: "Normal",
  36339. height: math.unit(11 + 9/12, "feet"),
  36340. default: true
  36341. },
  36342. ]
  36343. ))
  36344. characterMakers.push(() => makeCharacter(
  36345. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36346. {
  36347. side: {
  36348. height: math.unit(9, "feet"),
  36349. name: "Side",
  36350. image: {
  36351. source: "./media/characters/rymel/side.svg",
  36352. extra: 792/469,
  36353. bottom: 121/913
  36354. }
  36355. },
  36356. maw: {
  36357. height: math.unit(2.4, "meters"),
  36358. name: "Maw",
  36359. image: {
  36360. source: "./media/characters/rymel/maw.svg"
  36361. }
  36362. },
  36363. },
  36364. [
  36365. {
  36366. name: "House Drake",
  36367. height: math.unit(2, "feet")
  36368. },
  36369. {
  36370. name: "Reduced",
  36371. height: math.unit(4.5, "feet")
  36372. },
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(9, "feet"),
  36376. default: true
  36377. },
  36378. ]
  36379. ))
  36380. characterMakers.push(() => makeCharacter(
  36381. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36382. {
  36383. front: {
  36384. height: math.unit(1.74, "meters"),
  36385. weight: math.unit(55, "kg"),
  36386. name: "Front",
  36387. image: {
  36388. source: "./media/characters/rubus/front.svg",
  36389. extra: 1894/1742,
  36390. bottom: 44/1938
  36391. }
  36392. },
  36393. },
  36394. [
  36395. {
  36396. name: "Normal",
  36397. height: math.unit(1.74, "meters"),
  36398. default: true
  36399. },
  36400. ]
  36401. ))
  36402. characterMakers.push(() => makeCharacter(
  36403. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36404. {
  36405. front: {
  36406. height: math.unit(5 + 2/12, "feet"),
  36407. weight: math.unit(112, "lb"),
  36408. name: "Front",
  36409. image: {
  36410. source: "./media/characters/cassie-kingston/front.svg",
  36411. extra: 1438/1390,
  36412. bottom: 47/1485
  36413. }
  36414. },
  36415. },
  36416. [
  36417. {
  36418. name: "Normal",
  36419. height: math.unit(5 + 2/12, "feet"),
  36420. default: true
  36421. },
  36422. {
  36423. name: "Macro",
  36424. height: math.unit(128, "feet")
  36425. },
  36426. {
  36427. name: "Megamacro",
  36428. height: math.unit(2.56, "miles")
  36429. },
  36430. ]
  36431. ))
  36432. characterMakers.push(() => makeCharacter(
  36433. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36434. {
  36435. front: {
  36436. height: math.unit(7, "feet"),
  36437. name: "Front",
  36438. image: {
  36439. source: "./media/characters/fox/front.svg",
  36440. extra: 1798/1703,
  36441. bottom: 55/1853
  36442. }
  36443. },
  36444. back: {
  36445. height: math.unit(7, "feet"),
  36446. name: "Back",
  36447. image: {
  36448. source: "./media/characters/fox/back.svg",
  36449. extra: 1748/1649,
  36450. bottom: 32/1780
  36451. }
  36452. },
  36453. head: {
  36454. height: math.unit(1.95, "feet"),
  36455. name: "Head",
  36456. image: {
  36457. source: "./media/characters/fox/head.svg"
  36458. }
  36459. },
  36460. dick: {
  36461. height: math.unit(1.33, "feet"),
  36462. name: "Dick",
  36463. image: {
  36464. source: "./media/characters/fox/dick.svg"
  36465. }
  36466. },
  36467. foot: {
  36468. height: math.unit(1, "feet"),
  36469. name: "Foot",
  36470. image: {
  36471. source: "./media/characters/fox/foot.svg"
  36472. }
  36473. },
  36474. paw: {
  36475. height: math.unit(0.92, "feet"),
  36476. name: "Paw",
  36477. image: {
  36478. source: "./media/characters/fox/paw.svg"
  36479. }
  36480. },
  36481. },
  36482. [
  36483. {
  36484. name: "Small",
  36485. height: math.unit(3, "inches")
  36486. },
  36487. {
  36488. name: "\"Realistic\"",
  36489. height: math.unit(7, "feet")
  36490. },
  36491. {
  36492. name: "Normal",
  36493. height: math.unit(150, "feet"),
  36494. default: true
  36495. },
  36496. {
  36497. name: "BIG",
  36498. height: math.unit(1200, "feet")
  36499. },
  36500. {
  36501. name: "👀",
  36502. height: math.unit(5, "miles")
  36503. },
  36504. {
  36505. name: "👀👀👀",
  36506. height: math.unit(64, "miles")
  36507. },
  36508. ]
  36509. ))
  36510. characterMakers.push(() => makeCharacter(
  36511. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36512. {
  36513. front: {
  36514. height: math.unit(625, "feet"),
  36515. name: "Front",
  36516. image: {
  36517. source: "./media/characters/asonja-rossa/front.svg",
  36518. extra: 1833/1686,
  36519. bottom: 24/1857
  36520. }
  36521. },
  36522. back: {
  36523. height: math.unit(625, "feet"),
  36524. name: "Back",
  36525. image: {
  36526. source: "./media/characters/asonja-rossa/back.svg",
  36527. extra: 1852/1753,
  36528. bottom: 26/1878
  36529. }
  36530. },
  36531. },
  36532. [
  36533. {
  36534. name: "Macro",
  36535. height: math.unit(625, "feet"),
  36536. default: true
  36537. },
  36538. ]
  36539. ))
  36540. characterMakers.push(() => makeCharacter(
  36541. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36542. {
  36543. side: {
  36544. height: math.unit(6, "feet"),
  36545. weight: math.unit(150, "lb"),
  36546. name: "Side",
  36547. image: {
  36548. source: "./media/characters/rezukii/side.svg",
  36549. extra: 979/542,
  36550. bottom: 87/1066
  36551. }
  36552. },
  36553. },
  36554. [
  36555. {
  36556. name: "Tiny",
  36557. height: math.unit(2, "feet")
  36558. },
  36559. {
  36560. name: "Smol",
  36561. height: math.unit(4, "feet")
  36562. },
  36563. {
  36564. name: "Normal",
  36565. height: math.unit(8, "feet"),
  36566. default: true
  36567. },
  36568. {
  36569. name: "Big",
  36570. height: math.unit(12, "feet")
  36571. },
  36572. {
  36573. name: "Macro",
  36574. height: math.unit(30, "feet")
  36575. },
  36576. ]
  36577. ))
  36578. characterMakers.push(() => makeCharacter(
  36579. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36580. {
  36581. front: {
  36582. height: math.unit(14, "feet"),
  36583. weight: math.unit(9.5, "tonnes"),
  36584. name: "Front",
  36585. image: {
  36586. source: "./media/characters/dawnheart/front.svg",
  36587. extra: 2792/2675,
  36588. bottom: 64/2856
  36589. }
  36590. },
  36591. },
  36592. [
  36593. {
  36594. name: "Normal",
  36595. height: math.unit(14, "feet"),
  36596. default: true
  36597. },
  36598. ]
  36599. ))
  36600. characterMakers.push(() => makeCharacter(
  36601. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36602. {
  36603. front: {
  36604. height: math.unit(1.7, "m"),
  36605. name: "Front",
  36606. image: {
  36607. source: "./media/characters/gladi/front.svg",
  36608. extra: 1460/1362,
  36609. bottom: 19/1479
  36610. }
  36611. },
  36612. back: {
  36613. height: math.unit(1.7, "m"),
  36614. name: "Back",
  36615. image: {
  36616. source: "./media/characters/gladi/back.svg",
  36617. extra: 1459/1357,
  36618. bottom: 12/1471
  36619. }
  36620. },
  36621. feral: {
  36622. height: math.unit(2.05, "m"),
  36623. name: "Feral",
  36624. image: {
  36625. source: "./media/characters/gladi/feral.svg",
  36626. extra: 821/557,
  36627. bottom: 91/912
  36628. }
  36629. },
  36630. },
  36631. [
  36632. {
  36633. name: "Shortest",
  36634. height: math.unit(70, "cm")
  36635. },
  36636. {
  36637. name: "Normal",
  36638. height: math.unit(1.7, "m")
  36639. },
  36640. {
  36641. name: "Macro",
  36642. height: math.unit(10, "m"),
  36643. default: true
  36644. },
  36645. {
  36646. name: "Tallest",
  36647. height: math.unit(200, "m")
  36648. },
  36649. ]
  36650. ))
  36651. characterMakers.push(() => makeCharacter(
  36652. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36653. {
  36654. front: {
  36655. height: math.unit(5 + 7/12, "feet"),
  36656. weight: math.unit(92, "kg"),
  36657. name: "Front",
  36658. image: {
  36659. source: "./media/characters/erdno/front.svg",
  36660. extra: 1954/1889,
  36661. bottom: 22/1976
  36662. }
  36663. },
  36664. },
  36665. [
  36666. {
  36667. name: "Normal",
  36668. height: math.unit(5 + 7/12, "feet"),
  36669. default: true
  36670. },
  36671. ]
  36672. ))
  36673. characterMakers.push(() => makeCharacter(
  36674. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36675. {
  36676. front: {
  36677. height: math.unit(5 + 10/12, "feet"),
  36678. weight: math.unit(150, "lb"),
  36679. name: "Front",
  36680. image: {
  36681. source: "./media/characters/jamie/front.svg",
  36682. extra: 1908/1768,
  36683. bottom: 19/1927
  36684. }
  36685. },
  36686. },
  36687. [
  36688. {
  36689. name: "Minimum",
  36690. height: math.unit(2, "cm")
  36691. },
  36692. {
  36693. name: "Micro",
  36694. height: math.unit(3, "inches")
  36695. },
  36696. {
  36697. name: "Normal",
  36698. height: math.unit(5 + 10/12, "feet"),
  36699. default: true
  36700. },
  36701. {
  36702. name: "Macro",
  36703. height: math.unit(150, "feet")
  36704. },
  36705. {
  36706. name: "Megamacro",
  36707. height: math.unit(10000, "m")
  36708. },
  36709. ]
  36710. ))
  36711. characterMakers.push(() => makeCharacter(
  36712. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36713. {
  36714. front: {
  36715. height: math.unit(2, "meters"),
  36716. weight: math.unit(100, "kg"),
  36717. name: "Front",
  36718. image: {
  36719. source: "./media/characters/shiron/front.svg",
  36720. extra: 2103/1985,
  36721. bottom: 98/2201
  36722. }
  36723. },
  36724. back: {
  36725. height: math.unit(2, "meters"),
  36726. weight: math.unit(100, "kg"),
  36727. name: "Back",
  36728. image: {
  36729. source: "./media/characters/shiron/back.svg",
  36730. extra: 2110/2015,
  36731. bottom: 89/2199
  36732. }
  36733. },
  36734. hand: {
  36735. height: math.unit(0.96, "feet"),
  36736. name: "Hand",
  36737. image: {
  36738. source: "./media/characters/shiron/hand.svg"
  36739. }
  36740. },
  36741. foot: {
  36742. height: math.unit(1.464, "feet"),
  36743. name: "Foot",
  36744. image: {
  36745. source: "./media/characters/shiron/foot.svg"
  36746. }
  36747. },
  36748. },
  36749. [
  36750. {
  36751. name: "Normal",
  36752. height: math.unit(2, "meters")
  36753. },
  36754. {
  36755. name: "Macro",
  36756. height: math.unit(500, "meters"),
  36757. default: true
  36758. },
  36759. {
  36760. name: "Megamacro",
  36761. height: math.unit(20, "km")
  36762. },
  36763. ]
  36764. ))
  36765. characterMakers.push(() => makeCharacter(
  36766. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36767. {
  36768. front: {
  36769. height: math.unit(6, "feet"),
  36770. name: "Front",
  36771. image: {
  36772. source: "./media/characters/sam/front.svg",
  36773. extra: 849/826,
  36774. bottom: 19/868
  36775. }
  36776. },
  36777. },
  36778. [
  36779. {
  36780. name: "Normal",
  36781. height: math.unit(6, "feet"),
  36782. default: true
  36783. },
  36784. ]
  36785. ))
  36786. characterMakers.push(() => makeCharacter(
  36787. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36788. {
  36789. front: {
  36790. height: math.unit(8 + 4/12, "feet"),
  36791. weight: math.unit(122, "kg"),
  36792. name: "Front",
  36793. image: {
  36794. source: "./media/characters/namori-kurogawa/front.svg",
  36795. extra: 1894/1576,
  36796. bottom: 34/1928
  36797. }
  36798. },
  36799. },
  36800. [
  36801. {
  36802. name: "Normal",
  36803. height: math.unit(8 + 4/12, "feet"),
  36804. default: true
  36805. },
  36806. ]
  36807. ))
  36808. characterMakers.push(() => makeCharacter(
  36809. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36810. {
  36811. front: {
  36812. height: math.unit(9, "feet"),
  36813. weight: math.unit(621, "lb"),
  36814. name: "Front",
  36815. image: {
  36816. source: "./media/characters/unmru/front.svg",
  36817. extra: 1853/1747,
  36818. bottom: 73/1926
  36819. }
  36820. },
  36821. side: {
  36822. height: math.unit(9, "feet"),
  36823. weight: math.unit(621, "lb"),
  36824. name: "Side",
  36825. image: {
  36826. source: "./media/characters/unmru/side.svg",
  36827. extra: 1781/1671,
  36828. bottom: 127/1908
  36829. }
  36830. },
  36831. back: {
  36832. height: math.unit(9, "feet"),
  36833. weight: math.unit(621, "lb"),
  36834. name: "Back",
  36835. image: {
  36836. source: "./media/characters/unmru/back.svg",
  36837. extra: 1894/1765,
  36838. bottom: 75/1969
  36839. }
  36840. },
  36841. dick: {
  36842. height: math.unit(3, "feet"),
  36843. weight: math.unit(35, "lb"),
  36844. name: "Dick",
  36845. image: {
  36846. source: "./media/characters/unmru/dick.svg"
  36847. }
  36848. },
  36849. },
  36850. [
  36851. {
  36852. name: "Normal",
  36853. height: math.unit(9, "feet")
  36854. },
  36855. {
  36856. name: "Natural",
  36857. height: math.unit(27, "feet"),
  36858. default: true
  36859. },
  36860. {
  36861. name: "Giant",
  36862. height: math.unit(90, "feet")
  36863. },
  36864. {
  36865. name: "Kaiju",
  36866. height: math.unit(270, "feet")
  36867. },
  36868. {
  36869. name: "Macro",
  36870. height: math.unit(900, "feet")
  36871. },
  36872. {
  36873. name: "Macro+",
  36874. height: math.unit(2700, "feet")
  36875. },
  36876. {
  36877. name: "Megamacro",
  36878. height: math.unit(9000, "feet")
  36879. },
  36880. {
  36881. name: "City-Crushing",
  36882. height: math.unit(27000, "feet")
  36883. },
  36884. {
  36885. name: "Mountain-Mashing",
  36886. height: math.unit(90000, "feet")
  36887. },
  36888. {
  36889. name: "Earth-Eclipsing",
  36890. height: math.unit(2.7e8, "feet")
  36891. },
  36892. {
  36893. name: "Sol-Swallowing",
  36894. height: math.unit(9e10, "feet")
  36895. },
  36896. {
  36897. name: "Majoris-Munching",
  36898. height: math.unit(2.7e13, "feet")
  36899. },
  36900. ]
  36901. ))
  36902. characterMakers.push(() => makeCharacter(
  36903. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36904. {
  36905. front: {
  36906. height: math.unit(1, "inch"),
  36907. name: "Front",
  36908. image: {
  36909. source: "./media/characters/squeaks-mouse/front.svg",
  36910. extra: 352/308,
  36911. bottom: 25/377
  36912. }
  36913. },
  36914. },
  36915. [
  36916. {
  36917. name: "Micro",
  36918. height: math.unit(1, "inch"),
  36919. default: true
  36920. },
  36921. ]
  36922. ))
  36923. characterMakers.push(() => makeCharacter(
  36924. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  36925. {
  36926. side: {
  36927. height: math.unit(35, "feet"),
  36928. name: "Side",
  36929. image: {
  36930. source: "./media/characters/sayko/side.svg",
  36931. extra: 1697/1021,
  36932. bottom: 82/1779
  36933. }
  36934. },
  36935. head: {
  36936. height: math.unit(16, "feet"),
  36937. name: "Head",
  36938. image: {
  36939. source: "./media/characters/sayko/head.svg"
  36940. }
  36941. },
  36942. forepaw: {
  36943. height: math.unit(7.85, "feet"),
  36944. name: "Forepaw",
  36945. image: {
  36946. source: "./media/characters/sayko/forepaw.svg"
  36947. }
  36948. },
  36949. hindpaw: {
  36950. height: math.unit(8.8, "feet"),
  36951. name: "Hindpaw",
  36952. image: {
  36953. source: "./media/characters/sayko/hindpaw.svg"
  36954. }
  36955. },
  36956. },
  36957. [
  36958. {
  36959. name: "Normal",
  36960. height: math.unit(35, "feet"),
  36961. default: true
  36962. },
  36963. {
  36964. name: "Colossus",
  36965. height: math.unit(100, "meters")
  36966. },
  36967. {
  36968. name: "\"Small\" Deity",
  36969. height: math.unit(1, "km")
  36970. },
  36971. {
  36972. name: "\"Large\" Deity",
  36973. height: math.unit(15, "km")
  36974. },
  36975. ]
  36976. ))
  36977. characterMakers.push(() => makeCharacter(
  36978. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  36979. {
  36980. front: {
  36981. height: math.unit(6, "feet"),
  36982. weight: math.unit(250, "lb"),
  36983. name: "Front",
  36984. image: {
  36985. source: "./media/characters/mukiro/front.svg",
  36986. extra: 1368/1310,
  36987. bottom: 34/1402
  36988. }
  36989. },
  36990. },
  36991. [
  36992. {
  36993. name: "Normal",
  36994. height: math.unit(6, "feet"),
  36995. default: true
  36996. },
  36997. ]
  36998. ))
  36999. characterMakers.push(() => makeCharacter(
  37000. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37001. {
  37002. front: {
  37003. height: math.unit(12 + 4/12, "feet"),
  37004. name: "Front",
  37005. image: {
  37006. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37007. extra: 1346/1311,
  37008. bottom: 65/1411
  37009. }
  37010. },
  37011. },
  37012. [
  37013. {
  37014. name: "Base",
  37015. height: math.unit(12 + 4/12, "feet"),
  37016. default: true
  37017. },
  37018. {
  37019. name: "Macro",
  37020. height: math.unit(150, "feet")
  37021. },
  37022. {
  37023. name: "Mega",
  37024. height: math.unit(2, "miles")
  37025. },
  37026. {
  37027. name: "Demi God",
  37028. height: math.unit(4, "AU")
  37029. },
  37030. {
  37031. name: "God Size",
  37032. height: math.unit(1, "universe")
  37033. },
  37034. ]
  37035. ))
  37036. characterMakers.push(() => makeCharacter(
  37037. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37038. {
  37039. front: {
  37040. height: math.unit(3 + 3/12, "feet"),
  37041. weight: math.unit(88, "lb"),
  37042. name: "Front",
  37043. image: {
  37044. source: "./media/characters/trey/front.svg",
  37045. extra: 1815/1509,
  37046. bottom: 60/1875
  37047. }
  37048. },
  37049. },
  37050. [
  37051. {
  37052. name: "Normal",
  37053. height: math.unit(3 + 3/12, "feet"),
  37054. default: true
  37055. },
  37056. ]
  37057. ))
  37058. characterMakers.push(() => makeCharacter(
  37059. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37060. {
  37061. front: {
  37062. height: math.unit(4, "meters"),
  37063. name: "Front",
  37064. image: {
  37065. source: "./media/characters/adelonda/front.svg",
  37066. extra: 1942/1775,
  37067. bottom: 33/1975
  37068. }
  37069. },
  37070. back: {
  37071. height: math.unit(4, "meters"),
  37072. name: "Back",
  37073. image: {
  37074. source: "./media/characters/adelonda/back.svg",
  37075. extra: 1932/1780,
  37076. bottom: 42/1974
  37077. }
  37078. },
  37079. bust: {
  37080. height: math.unit(1.8, "meter"),
  37081. name: "Bust",
  37082. image: {
  37083. source: "./media/characters/adelonda/bust.svg"
  37084. }
  37085. },
  37086. },
  37087. [
  37088. {
  37089. name: "Normal",
  37090. height: math.unit(4, "meters"),
  37091. default: true
  37092. },
  37093. ]
  37094. ))
  37095. characterMakers.push(() => makeCharacter(
  37096. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37097. {
  37098. front: {
  37099. height: math.unit(8 + 4/12, "feet"),
  37100. weight: math.unit(670, "lb"),
  37101. name: "Front",
  37102. image: {
  37103. source: "./media/characters/acadiel/front.svg",
  37104. extra: 1901/1595,
  37105. bottom: 142/2043
  37106. }
  37107. },
  37108. },
  37109. [
  37110. {
  37111. name: "Normal",
  37112. height: math.unit(8 + 4/12, "feet"),
  37113. default: true
  37114. },
  37115. {
  37116. name: "Macro",
  37117. height: math.unit(200, "feet")
  37118. },
  37119. ]
  37120. ))
  37121. characterMakers.push(() => makeCharacter(
  37122. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37123. {
  37124. front: {
  37125. height: math.unit(6 + 2/12, "feet"),
  37126. weight: math.unit(185, "lb"),
  37127. name: "Front",
  37128. image: {
  37129. source: "./media/characters/kayne-ein/front.svg",
  37130. extra: 1780/1560,
  37131. bottom: 81/1861
  37132. }
  37133. },
  37134. },
  37135. [
  37136. {
  37137. name: "Normal",
  37138. height: math.unit(6 + 2/12, "feet"),
  37139. default: true
  37140. },
  37141. {
  37142. name: "Transformation Stage",
  37143. height: math.unit(15, "feet")
  37144. },
  37145. {
  37146. name: "Macro",
  37147. height: math.unit(150, "feet")
  37148. },
  37149. {
  37150. name: "Earth's Shadow",
  37151. height: math.unit(6200, "miles")
  37152. },
  37153. {
  37154. name: "Universal Demon",
  37155. height: math.unit(28e9, "parsecs")
  37156. },
  37157. {
  37158. name: "Multiverse God",
  37159. height: math.unit(3, "multiverses")
  37160. },
  37161. ]
  37162. ))
  37163. characterMakers.push(() => makeCharacter(
  37164. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37165. {
  37166. front: {
  37167. height: math.unit(5 + 5/12, "feet"),
  37168. name: "Front",
  37169. image: {
  37170. source: "./media/characters/fawn/front.svg",
  37171. extra: 1873/1731,
  37172. bottom: 95/1968
  37173. }
  37174. },
  37175. back: {
  37176. height: math.unit(5 + 5/12, "feet"),
  37177. name: "Back",
  37178. image: {
  37179. source: "./media/characters/fawn/back.svg",
  37180. extra: 1813/1700,
  37181. bottom: 14/1827
  37182. }
  37183. },
  37184. hoof: {
  37185. height: math.unit(1.45, "feet"),
  37186. name: "Hoof",
  37187. image: {
  37188. source: "./media/characters/fawn/hoof.svg"
  37189. }
  37190. },
  37191. },
  37192. [
  37193. {
  37194. name: "Normal",
  37195. height: math.unit(5 + 5/12, "feet"),
  37196. default: true
  37197. },
  37198. ]
  37199. ))
  37200. characterMakers.push(() => makeCharacter(
  37201. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37202. {
  37203. front: {
  37204. height: math.unit(2 + 5/12, "feet"),
  37205. name: "Front",
  37206. image: {
  37207. source: "./media/characters/orion/front.svg",
  37208. extra: 1366/1304,
  37209. bottom: 43/1409
  37210. }
  37211. },
  37212. paw: {
  37213. height: math.unit(0.52, "feet"),
  37214. name: "Paw",
  37215. image: {
  37216. source: "./media/characters/orion/paw.svg"
  37217. }
  37218. },
  37219. },
  37220. [
  37221. {
  37222. name: "Normal",
  37223. height: math.unit(2 + 5/12, "feet"),
  37224. default: true
  37225. },
  37226. ]
  37227. ))
  37228. characterMakers.push(() => makeCharacter(
  37229. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37230. {
  37231. front: {
  37232. height: math.unit(5 + 10/12, "feet"),
  37233. name: "Front",
  37234. image: {
  37235. source: "./media/characters/vera/front.svg",
  37236. extra: 1680/1575,
  37237. bottom: 49/1729
  37238. }
  37239. },
  37240. back: {
  37241. height: math.unit(5 + 10/12, "feet"),
  37242. name: "Back",
  37243. image: {
  37244. source: "./media/characters/vera/back.svg",
  37245. extra: 1700/1588,
  37246. bottom: 18/1718
  37247. }
  37248. },
  37249. arcanine: {
  37250. height: math.unit(6 + 8/12, "feet"),
  37251. name: "Arcanine",
  37252. image: {
  37253. source: "./media/characters/vera/arcanine.svg",
  37254. extra: 1590/1511,
  37255. bottom: 71/1661
  37256. }
  37257. },
  37258. maw: {
  37259. height: math.unit(0.82, "feet"),
  37260. name: "Maw",
  37261. image: {
  37262. source: "./media/characters/vera/maw.svg"
  37263. }
  37264. },
  37265. mawArcanine: {
  37266. height: math.unit(0.97, "feet"),
  37267. name: "Maw (Arcanine)",
  37268. image: {
  37269. source: "./media/characters/vera/maw-arcanine.svg"
  37270. }
  37271. },
  37272. paw: {
  37273. height: math.unit(0.75, "feet"),
  37274. name: "Paw",
  37275. image: {
  37276. source: "./media/characters/vera/paw.svg"
  37277. }
  37278. },
  37279. pawprint: {
  37280. height: math.unit(0.52, "feet"),
  37281. name: "Pawprint",
  37282. image: {
  37283. source: "./media/characters/vera/pawprint.svg"
  37284. }
  37285. },
  37286. },
  37287. [
  37288. {
  37289. name: "Normal",
  37290. height: math.unit(5 + 10/12, "feet"),
  37291. default: true
  37292. },
  37293. {
  37294. name: "Macro",
  37295. height: math.unit(75, "feet")
  37296. },
  37297. ]
  37298. ))
  37299. characterMakers.push(() => makeCharacter(
  37300. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37301. {
  37302. front: {
  37303. height: math.unit(4, "feet"),
  37304. weight: math.unit(40, "lb"),
  37305. name: "Front",
  37306. image: {
  37307. source: "./media/characters/orvan-rabbit/front.svg",
  37308. extra: 1896/1642,
  37309. bottom: 29/1925
  37310. }
  37311. },
  37312. },
  37313. [
  37314. {
  37315. name: "Normal",
  37316. height: math.unit(4, "feet"),
  37317. default: true
  37318. },
  37319. ]
  37320. ))
  37321. characterMakers.push(() => makeCharacter(
  37322. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37323. {
  37324. front: {
  37325. height: math.unit(6, "feet"),
  37326. weight: math.unit(168, "lb"),
  37327. name: "Front",
  37328. image: {
  37329. source: "./media/characters/lisa/front.svg",
  37330. extra: 2065/1867,
  37331. bottom: 46/2111
  37332. }
  37333. },
  37334. back: {
  37335. height: math.unit(6, "feet"),
  37336. weight: math.unit(168, "lb"),
  37337. name: "Back",
  37338. image: {
  37339. source: "./media/characters/lisa/back.svg",
  37340. extra: 1982/1838,
  37341. bottom: 29/2011
  37342. }
  37343. },
  37344. maw: {
  37345. height: math.unit(0.81, "feet"),
  37346. name: "Maw",
  37347. image: {
  37348. source: "./media/characters/lisa/maw.svg"
  37349. }
  37350. },
  37351. paw: {
  37352. height: math.unit(0.9, "feet"),
  37353. name: "Paw",
  37354. image: {
  37355. source: "./media/characters/lisa/paw.svg"
  37356. }
  37357. },
  37358. caribousune: {
  37359. height: math.unit(7 + 2/12, "feet"),
  37360. weight: math.unit(268, "lb"),
  37361. name: "Caribousune",
  37362. image: {
  37363. source: "./media/characters/lisa/caribousune.svg",
  37364. extra: 1843/1633,
  37365. bottom: 29/1872
  37366. }
  37367. },
  37368. frontCaribousune: {
  37369. height: math.unit(7 + 2/12, "feet"),
  37370. weight: math.unit(268, "lb"),
  37371. name: "Front (Caribousune)",
  37372. image: {
  37373. source: "./media/characters/lisa/front-caribousune.svg",
  37374. extra: 1818/1638,
  37375. bottom: 52/1870
  37376. }
  37377. },
  37378. sideCaribousune: {
  37379. height: math.unit(7 + 2/12, "feet"),
  37380. weight: math.unit(268, "lb"),
  37381. name: "Side (Caribousune)",
  37382. image: {
  37383. source: "./media/characters/lisa/side-caribousune.svg",
  37384. extra: 1851/1635,
  37385. bottom: 16/1867
  37386. }
  37387. },
  37388. backCaribousune: {
  37389. height: math.unit(7 + 2/12, "feet"),
  37390. weight: math.unit(268, "lb"),
  37391. name: "Back (Caribousune)",
  37392. image: {
  37393. source: "./media/characters/lisa/back-caribousune.svg",
  37394. extra: 1801/1604,
  37395. bottom: 44/1845
  37396. }
  37397. },
  37398. caribou: {
  37399. height: math.unit(7 + 2/12, "feet"),
  37400. weight: math.unit(268, "lb"),
  37401. name: "Caribou",
  37402. image: {
  37403. source: "./media/characters/lisa/caribou.svg",
  37404. extra: 1843/1633,
  37405. bottom: 29/1872
  37406. }
  37407. },
  37408. frontCaribou: {
  37409. height: math.unit(7 + 2/12, "feet"),
  37410. weight: math.unit(268, "lb"),
  37411. name: "Front (Caribou)",
  37412. image: {
  37413. source: "./media/characters/lisa/front-caribou.svg",
  37414. extra: 1818/1638,
  37415. bottom: 52/1870
  37416. }
  37417. },
  37418. sideCaribou: {
  37419. height: math.unit(7 + 2/12, "feet"),
  37420. weight: math.unit(268, "lb"),
  37421. name: "Side (Caribou)",
  37422. image: {
  37423. source: "./media/characters/lisa/side-caribou.svg",
  37424. extra: 1851/1635,
  37425. bottom: 16/1867
  37426. }
  37427. },
  37428. backCaribou: {
  37429. height: math.unit(7 + 2/12, "feet"),
  37430. weight: math.unit(268, "lb"),
  37431. name: "Back (Caribou)",
  37432. image: {
  37433. source: "./media/characters/lisa/back-caribou.svg",
  37434. extra: 1801/1604,
  37435. bottom: 44/1845
  37436. }
  37437. },
  37438. mawCaribou: {
  37439. height: math.unit(1.45, "feet"),
  37440. name: "Maw (Caribou)",
  37441. image: {
  37442. source: "./media/characters/lisa/maw-caribou.svg"
  37443. }
  37444. },
  37445. mawCaribousune: {
  37446. height: math.unit(1.45, "feet"),
  37447. name: "Maw (Caribousune)",
  37448. image: {
  37449. source: "./media/characters/lisa/maw-caribousune.svg"
  37450. }
  37451. },
  37452. pawCaribousune: {
  37453. height: math.unit(1.61, "feet"),
  37454. name: "Paw (Caribou)",
  37455. image: {
  37456. source: "./media/characters/lisa/paw-caribousune.svg"
  37457. }
  37458. },
  37459. },
  37460. [
  37461. {
  37462. name: "Normal",
  37463. height: math.unit(6, "feet")
  37464. },
  37465. {
  37466. name: "God Size",
  37467. height: math.unit(72, "feet"),
  37468. default: true
  37469. },
  37470. {
  37471. name: "Towering",
  37472. height: math.unit(288, "feet")
  37473. },
  37474. {
  37475. name: "City Size",
  37476. height: math.unit(48384, "feet")
  37477. },
  37478. {
  37479. name: "Continental",
  37480. height: math.unit(4200, "miles")
  37481. },
  37482. {
  37483. name: "Planet Eater",
  37484. height: math.unit(42, "earths")
  37485. },
  37486. {
  37487. name: "Star Swallower",
  37488. height: math.unit(42, "solarradii")
  37489. },
  37490. {
  37491. name: "System Swallower",
  37492. height: math.unit(84000, "AU")
  37493. },
  37494. {
  37495. name: "Galaxy Gobbler",
  37496. height: math.unit(42, "galaxies")
  37497. },
  37498. {
  37499. name: "Universe Devourer",
  37500. height: math.unit(42, "universes")
  37501. },
  37502. {
  37503. name: "Multiverse Muncher",
  37504. height: math.unit(42, "multiverses")
  37505. },
  37506. ]
  37507. ))
  37508. characterMakers.push(() => makeCharacter(
  37509. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37510. {
  37511. front: {
  37512. height: math.unit(36, "feet"),
  37513. name: "Front",
  37514. image: {
  37515. source: "./media/characters/shadow-rat/front.svg",
  37516. extra: 1845/1758,
  37517. bottom: 83/1928
  37518. }
  37519. },
  37520. },
  37521. [
  37522. {
  37523. name: "Macro",
  37524. height: math.unit(36, "feet"),
  37525. default: true
  37526. },
  37527. ]
  37528. ))
  37529. characterMakers.push(() => makeCharacter(
  37530. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37531. {
  37532. side: {
  37533. height: math.unit(8, "feet"),
  37534. weight: math.unit(2630, "lb"),
  37535. name: "Side",
  37536. image: {
  37537. source: "./media/characters/torallia/side.svg",
  37538. extra: 2164/2021,
  37539. bottom: 371/2535
  37540. }
  37541. },
  37542. },
  37543. [
  37544. {
  37545. name: "Mortal Interaction",
  37546. height: math.unit(8, "feet")
  37547. },
  37548. {
  37549. name: "Natural",
  37550. height: math.unit(24, "feet"),
  37551. default: true
  37552. },
  37553. {
  37554. name: "Giant",
  37555. height: math.unit(80, "feet")
  37556. },
  37557. {
  37558. name: "Kaiju",
  37559. height: math.unit(240, "feet")
  37560. },
  37561. {
  37562. name: "Macro",
  37563. height: math.unit(800, "feet")
  37564. },
  37565. {
  37566. name: "Macro+",
  37567. height: math.unit(2400, "feet")
  37568. },
  37569. {
  37570. name: "Macro++",
  37571. height: math.unit(8000, "feet")
  37572. },
  37573. {
  37574. name: "City-Crushing",
  37575. height: math.unit(24000, "feet")
  37576. },
  37577. {
  37578. name: "Mountain-Mashing",
  37579. height: math.unit(80000, "feet")
  37580. },
  37581. {
  37582. name: "District Demolisher",
  37583. height: math.unit(240000, "feet")
  37584. },
  37585. {
  37586. name: "Tri-County Terror",
  37587. height: math.unit(800000, "feet")
  37588. },
  37589. {
  37590. name: "State Smasher",
  37591. height: math.unit(2.4e6, "feet")
  37592. },
  37593. {
  37594. name: "Nation Nemesis",
  37595. height: math.unit(8e6, "feet")
  37596. },
  37597. {
  37598. name: "Continent Cracker",
  37599. height: math.unit(2.4e7, "feet")
  37600. },
  37601. {
  37602. name: "Planet-Pillaging",
  37603. height: math.unit(8e7, "feet")
  37604. },
  37605. {
  37606. name: "Earth-Eclipsing",
  37607. height: math.unit(2.4e8, "feet")
  37608. },
  37609. {
  37610. name: "Jovian-Jostling",
  37611. height: math.unit(8e8, "feet")
  37612. },
  37613. {
  37614. name: "Gas Giant Gulper",
  37615. height: math.unit(2.4e9, "feet")
  37616. },
  37617. {
  37618. name: "Astral Annihilator",
  37619. height: math.unit(8e9, "feet")
  37620. },
  37621. {
  37622. name: "Celestial Conqueror",
  37623. height: math.unit(2.4e10, "feet")
  37624. },
  37625. {
  37626. name: "Sol-Swallowing",
  37627. height: math.unit(8e10, "feet")
  37628. },
  37629. {
  37630. name: "Hunter of the Heavens",
  37631. height: math.unit(2.4e13, "feet")
  37632. },
  37633. ]
  37634. ))
  37635. characterMakers.push(() => makeCharacter(
  37636. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37637. {
  37638. front: {
  37639. height: math.unit(6 + 8/12, "feet"),
  37640. name: "Front",
  37641. image: {
  37642. source: "./media/characters/rebecca-pawlson/front.svg",
  37643. extra: 1737/1596,
  37644. bottom: 107/1844
  37645. }
  37646. },
  37647. back: {
  37648. height: math.unit(6 + 8/12, "feet"),
  37649. name: "Back",
  37650. image: {
  37651. source: "./media/characters/rebecca-pawlson/back.svg",
  37652. extra: 1702/1523,
  37653. bottom: 86/1788
  37654. }
  37655. },
  37656. },
  37657. [
  37658. {
  37659. name: "Normal",
  37660. height: math.unit(6 + 8/12, "feet")
  37661. },
  37662. {
  37663. name: "Mini Macro",
  37664. height: math.unit(10, "feet"),
  37665. default: true
  37666. },
  37667. {
  37668. name: "Macro",
  37669. height: math.unit(100, "feet")
  37670. },
  37671. {
  37672. name: "Mega Macro",
  37673. height: math.unit(2500, "feet")
  37674. },
  37675. {
  37676. name: "Giga Macro",
  37677. height: math.unit(50, "miles")
  37678. },
  37679. ]
  37680. ))
  37681. characterMakers.push(() => makeCharacter(
  37682. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37683. {
  37684. front: {
  37685. height: math.unit(7 + 6/12, "feet"),
  37686. weight: math.unit(600, "lb"),
  37687. name: "Front",
  37688. image: {
  37689. source: "./media/characters/moxie-nova/front.svg",
  37690. extra: 1734/1652,
  37691. bottom: 41/1775
  37692. }
  37693. },
  37694. },
  37695. [
  37696. {
  37697. name: "Normal",
  37698. height: math.unit(7 + 6/12, "feet"),
  37699. default: true
  37700. },
  37701. ]
  37702. ))
  37703. characterMakers.push(() => makeCharacter(
  37704. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37705. {
  37706. front: {
  37707. height: math.unit(5, "feet"),
  37708. weight: math.unit(150, "lb"),
  37709. name: "Front",
  37710. image: {
  37711. source: "./media/characters/tiffany/front.svg",
  37712. extra: 1941/1845,
  37713. bottom: 58/1999
  37714. }
  37715. },
  37716. },
  37717. [
  37718. {
  37719. name: "Normal",
  37720. height: math.unit(5, "feet"),
  37721. default: true
  37722. },
  37723. ]
  37724. ))
  37725. characterMakers.push(() => makeCharacter(
  37726. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37727. {
  37728. front: {
  37729. height: math.unit(8, "feet"),
  37730. weight: math.unit(300, "lb"),
  37731. name: "Front",
  37732. image: {
  37733. source: "./media/characters/raxinath/front.svg",
  37734. extra: 1407/1309,
  37735. bottom: 39/1446
  37736. }
  37737. },
  37738. back: {
  37739. height: math.unit(8, "feet"),
  37740. weight: math.unit(300, "lb"),
  37741. name: "Back",
  37742. image: {
  37743. source: "./media/characters/raxinath/back.svg",
  37744. extra: 1405/1315,
  37745. bottom: 9/1414
  37746. }
  37747. },
  37748. },
  37749. [
  37750. {
  37751. name: "Speck",
  37752. height: math.unit(0.5, "nm")
  37753. },
  37754. {
  37755. name: "Micro",
  37756. height: math.unit(3, "inches")
  37757. },
  37758. {
  37759. name: "Kobold",
  37760. height: math.unit(3, "feet")
  37761. },
  37762. {
  37763. name: "Normal",
  37764. height: math.unit(8, "feet"),
  37765. default: true
  37766. },
  37767. {
  37768. name: "Giant",
  37769. height: math.unit(50, "feet")
  37770. },
  37771. {
  37772. name: "Macro",
  37773. height: math.unit(1000, "feet")
  37774. },
  37775. {
  37776. name: "Megamacro",
  37777. height: math.unit(1, "mile")
  37778. },
  37779. ]
  37780. ))
  37781. characterMakers.push(() => makeCharacter(
  37782. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37783. {
  37784. front: {
  37785. height: math.unit(10, "feet"),
  37786. weight: math.unit(1442, "lb"),
  37787. name: "Front",
  37788. image: {
  37789. source: "./media/characters/mal-dragon/front.svg",
  37790. extra: 1515/1444,
  37791. bottom: 113/1628
  37792. }
  37793. },
  37794. back: {
  37795. height: math.unit(10, "feet"),
  37796. weight: math.unit(1442, "lb"),
  37797. name: "Back",
  37798. image: {
  37799. source: "./media/characters/mal-dragon/back.svg",
  37800. extra: 1527/1434,
  37801. bottom: 25/1552
  37802. }
  37803. },
  37804. },
  37805. [
  37806. {
  37807. name: "Mortal Interaction",
  37808. height: math.unit(10, "feet"),
  37809. default: true
  37810. },
  37811. {
  37812. name: "Large",
  37813. height: math.unit(30, "feet")
  37814. },
  37815. {
  37816. name: "Kaiju",
  37817. height: math.unit(300, "feet")
  37818. },
  37819. {
  37820. name: "Megamacro",
  37821. height: math.unit(10000, "feet")
  37822. },
  37823. {
  37824. name: "Continent Cracker",
  37825. height: math.unit(30000000, "feet")
  37826. },
  37827. {
  37828. name: "Sol-Swallowing",
  37829. height: math.unit(1e11, "feet")
  37830. },
  37831. {
  37832. name: "Light Universal",
  37833. height: math.unit(5, "universes")
  37834. },
  37835. {
  37836. name: "Universe Atoms",
  37837. height: math.unit(1.829e9, "universes")
  37838. },
  37839. {
  37840. name: "Light Multiversal",
  37841. height: math.unit(5, "multiverses")
  37842. },
  37843. {
  37844. name: "Multiverse Atoms",
  37845. height: math.unit(1.829e9, "multiverses")
  37846. },
  37847. {
  37848. name: "Fabric of Time",
  37849. height: math.unit(1e262, "multiverses")
  37850. },
  37851. ]
  37852. ))
  37853. characterMakers.push(() => makeCharacter(
  37854. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37855. {
  37856. front: {
  37857. height: math.unit(9, "feet"),
  37858. weight: math.unit(1050, "lb"),
  37859. name: "Front",
  37860. image: {
  37861. source: "./media/characters/tabitha/front.svg",
  37862. extra: 2083/1994,
  37863. bottom: 68/2151
  37864. }
  37865. },
  37866. },
  37867. [
  37868. {
  37869. name: "Baseline",
  37870. height: math.unit(9, "feet"),
  37871. default: true
  37872. },
  37873. {
  37874. name: "Giant",
  37875. height: math.unit(90, "feet")
  37876. },
  37877. {
  37878. name: "Macro",
  37879. height: math.unit(900, "feet")
  37880. },
  37881. {
  37882. name: "Megamacro",
  37883. height: math.unit(9000, "feet")
  37884. },
  37885. {
  37886. name: "City-Crushing",
  37887. height: math.unit(27000, "feet")
  37888. },
  37889. {
  37890. name: "Mountain-Mashing",
  37891. height: math.unit(90000, "feet")
  37892. },
  37893. {
  37894. name: "Nation Nemesis",
  37895. height: math.unit(9e6, "feet")
  37896. },
  37897. {
  37898. name: "Continent Cracker",
  37899. height: math.unit(27e6, "feet")
  37900. },
  37901. {
  37902. name: "Earth-Eclipsing",
  37903. height: math.unit(2.7e8, "feet")
  37904. },
  37905. {
  37906. name: "Gas Giant Gulper",
  37907. height: math.unit(2.7e9, "feet")
  37908. },
  37909. {
  37910. name: "Sol-Swallowing",
  37911. height: math.unit(9e10, "feet")
  37912. },
  37913. {
  37914. name: "Galaxy Gulper",
  37915. height: math.unit(9, "galaxies")
  37916. },
  37917. {
  37918. name: "Cosmos Churner",
  37919. height: math.unit(9, "universes")
  37920. },
  37921. ]
  37922. ))
  37923. characterMakers.push(() => makeCharacter(
  37924. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  37925. {
  37926. front: {
  37927. height: math.unit(160, "cm"),
  37928. weight: math.unit(55, "kg"),
  37929. name: "Front",
  37930. image: {
  37931. source: "./media/characters/tow/front.svg",
  37932. extra: 1751/1722,
  37933. bottom: 74/1825
  37934. }
  37935. },
  37936. },
  37937. [
  37938. {
  37939. name: "Norm",
  37940. height: math.unit(160, "cm")
  37941. },
  37942. {
  37943. name: "Casual",
  37944. height: math.unit(3200, "m"),
  37945. default: true
  37946. },
  37947. {
  37948. name: "Show-Off",
  37949. height: math.unit(160, "km")
  37950. },
  37951. ]
  37952. ))
  37953. characterMakers.push(() => makeCharacter(
  37954. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  37955. {
  37956. front: {
  37957. height: math.unit(7 + 11/12, "feet"),
  37958. weight: math.unit(342.8, "lb"),
  37959. name: "Front",
  37960. image: {
  37961. source: "./media/characters/vivian-orca-dragon/front.svg",
  37962. extra: 1890/1865,
  37963. bottom: 28/1918
  37964. }
  37965. },
  37966. },
  37967. [
  37968. {
  37969. name: "Micro",
  37970. height: math.unit(5, "inches")
  37971. },
  37972. {
  37973. name: "Normal",
  37974. height: math.unit(7 + 11/12, "feet"),
  37975. default: true
  37976. },
  37977. {
  37978. name: "Macro",
  37979. height: math.unit(395 + 7/12, "feet")
  37980. },
  37981. ]
  37982. ))
  37983. characterMakers.push(() => makeCharacter(
  37984. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  37985. {
  37986. side: {
  37987. height: math.unit(10, "feet"),
  37988. weight: math.unit(1442, "lb"),
  37989. name: "Side",
  37990. image: {
  37991. source: "./media/characters/lotherakon/side.svg",
  37992. extra: 1604/1497,
  37993. bottom: 89/1693
  37994. }
  37995. },
  37996. },
  37997. [
  37998. {
  37999. name: "Mortal Interaction",
  38000. height: math.unit(10, "feet")
  38001. },
  38002. {
  38003. name: "Large",
  38004. height: math.unit(30, "feet"),
  38005. default: true
  38006. },
  38007. {
  38008. name: "Giant",
  38009. height: math.unit(100, "feet")
  38010. },
  38011. {
  38012. name: "Kaiju",
  38013. height: math.unit(300, "feet")
  38014. },
  38015. {
  38016. name: "Macro",
  38017. height: math.unit(1000, "feet")
  38018. },
  38019. {
  38020. name: "Macro+",
  38021. height: math.unit(3000, "feet")
  38022. },
  38023. {
  38024. name: "Megamacro",
  38025. height: math.unit(10000, "feet")
  38026. },
  38027. {
  38028. name: "City-Crushing",
  38029. height: math.unit(30000, "feet")
  38030. },
  38031. {
  38032. name: "Continent Cracker",
  38033. height: math.unit(30e6, "feet")
  38034. },
  38035. {
  38036. name: "Earth Eclipsing",
  38037. height: math.unit(3e8, "feet")
  38038. },
  38039. {
  38040. name: "Gas Giant Gulper",
  38041. height: math.unit(3e9, "feet")
  38042. },
  38043. {
  38044. name: "Sol-Swallowing",
  38045. height: math.unit(1e11, "feet")
  38046. },
  38047. {
  38048. name: "System Swallower",
  38049. height: math.unit(3e14, "feet")
  38050. },
  38051. {
  38052. name: "Galaxy Gulper",
  38053. height: math.unit(10, "galaxies")
  38054. },
  38055. {
  38056. name: "Light Universal",
  38057. height: math.unit(5, "universes")
  38058. },
  38059. {
  38060. name: "Universe Palm",
  38061. height: math.unit(20, "universes")
  38062. },
  38063. {
  38064. name: "Light Multiversal",
  38065. height: math.unit(5, "multiverses")
  38066. },
  38067. {
  38068. name: "Multiverse Palm",
  38069. height: math.unit(20, "multiverses")
  38070. },
  38071. {
  38072. name: "Inferno Incarnate",
  38073. height: math.unit(1e7, "multiverses")
  38074. },
  38075. ]
  38076. ))
  38077. characterMakers.push(() => makeCharacter(
  38078. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38079. {
  38080. front: {
  38081. height: math.unit(8, "feet"),
  38082. weight: math.unit(1200, "lb"),
  38083. name: "Front",
  38084. image: {
  38085. source: "./media/characters/malithee/front.svg",
  38086. extra: 1675/1640,
  38087. bottom: 162/1837
  38088. }
  38089. },
  38090. },
  38091. [
  38092. {
  38093. name: "Mortal Interaction",
  38094. height: math.unit(8, "feet"),
  38095. default: true
  38096. },
  38097. {
  38098. name: "Large",
  38099. height: math.unit(24, "feet")
  38100. },
  38101. {
  38102. name: "Kaiju",
  38103. height: math.unit(240, "feet")
  38104. },
  38105. {
  38106. name: "Megamacro",
  38107. height: math.unit(8000, "feet")
  38108. },
  38109. {
  38110. name: "Continent Cracker",
  38111. height: math.unit(24e6, "feet")
  38112. },
  38113. {
  38114. name: "Earth-Eclipsing",
  38115. height: math.unit(2.4e8, "feet")
  38116. },
  38117. {
  38118. name: "Sol-Swallowing",
  38119. height: math.unit(8e10, "feet")
  38120. },
  38121. {
  38122. name: "Galaxy Gulper",
  38123. height: math.unit(8, "galaxies")
  38124. },
  38125. {
  38126. name: "Light Universal",
  38127. height: math.unit(4, "universes")
  38128. },
  38129. {
  38130. name: "Universe Atoms",
  38131. height: math.unit(1.829e9, "universes")
  38132. },
  38133. {
  38134. name: "Light Multiversal",
  38135. height: math.unit(4, "multiverses")
  38136. },
  38137. {
  38138. name: "Multiverse Atoms",
  38139. height: math.unit(1.829e9, "multiverses")
  38140. },
  38141. {
  38142. name: "Nigh-Omnipresence",
  38143. height: math.unit(8e261, "multiverses")
  38144. },
  38145. ]
  38146. ))
  38147. characterMakers.push(() => makeCharacter(
  38148. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38149. {
  38150. front: {
  38151. height: math.unit(10, "feet"),
  38152. weight: math.unit(1500, "lb"),
  38153. name: "Front",
  38154. image: {
  38155. source: "./media/characters/miles-thestia/front.svg",
  38156. extra: 1812/1727,
  38157. bottom: 86/1898
  38158. }
  38159. },
  38160. back: {
  38161. height: math.unit(10, "feet"),
  38162. weight: math.unit(1500, "lb"),
  38163. name: "Back",
  38164. image: {
  38165. source: "./media/characters/miles-thestia/back.svg",
  38166. extra: 1799/1690,
  38167. bottom: 47/1846
  38168. }
  38169. },
  38170. frontNsfw: {
  38171. height: math.unit(10, "feet"),
  38172. weight: math.unit(1500, "lb"),
  38173. name: "Front (NSFW)",
  38174. image: {
  38175. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38176. extra: 1812/1727,
  38177. bottom: 86/1898
  38178. }
  38179. },
  38180. },
  38181. [
  38182. {
  38183. name: "Mini-Macro",
  38184. height: math.unit(10, "feet"),
  38185. default: true
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38191. {
  38192. front: {
  38193. height: math.unit(25, "feet"),
  38194. name: "Front",
  38195. image: {
  38196. source: "./media/characters/titan-s-wulf/front.svg",
  38197. extra: 1560/1484,
  38198. bottom: 76/1636
  38199. }
  38200. },
  38201. },
  38202. [
  38203. {
  38204. name: "Smallest",
  38205. height: math.unit(25, "feet"),
  38206. default: true
  38207. },
  38208. {
  38209. name: "Normal",
  38210. height: math.unit(200, "feet")
  38211. },
  38212. {
  38213. name: "Macro",
  38214. height: math.unit(200000, "feet")
  38215. },
  38216. {
  38217. name: "Multiversal Original",
  38218. height: math.unit(10000, "multiverses")
  38219. },
  38220. ]
  38221. ))
  38222. characterMakers.push(() => makeCharacter(
  38223. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38224. {
  38225. front: {
  38226. height: math.unit(8, "feet"),
  38227. weight: math.unit(553, "lb"),
  38228. name: "Front",
  38229. image: {
  38230. source: "./media/characters/tawendeh/front.svg",
  38231. extra: 2365/2268,
  38232. bottom: 83/2448
  38233. }
  38234. },
  38235. frontClothed: {
  38236. height: math.unit(8, "feet"),
  38237. weight: math.unit(553, "lb"),
  38238. name: "Front (Clothed)",
  38239. image: {
  38240. source: "./media/characters/tawendeh/front-clothed.svg",
  38241. extra: 2365/2268,
  38242. bottom: 83/2448
  38243. }
  38244. },
  38245. back: {
  38246. height: math.unit(8, "feet"),
  38247. weight: math.unit(553, "lb"),
  38248. name: "Back",
  38249. image: {
  38250. source: "./media/characters/tawendeh/back.svg",
  38251. extra: 2397/2294,
  38252. bottom: 42/2439
  38253. }
  38254. },
  38255. },
  38256. [
  38257. {
  38258. name: "Mortal Interaction",
  38259. height: math.unit(8, "feet"),
  38260. default: true
  38261. },
  38262. {
  38263. name: "Giant",
  38264. height: math.unit(80, "feet")
  38265. },
  38266. {
  38267. name: "Macro",
  38268. height: math.unit(800, "feet")
  38269. },
  38270. {
  38271. name: "Megamacro",
  38272. height: math.unit(8000, "feet")
  38273. },
  38274. {
  38275. name: "City-Crushing",
  38276. height: math.unit(24000, "feet")
  38277. },
  38278. {
  38279. name: "Mountain-Mashing",
  38280. height: math.unit(80000, "feet")
  38281. },
  38282. {
  38283. name: "Nation Nemesis",
  38284. height: math.unit(8e6, "feet")
  38285. },
  38286. {
  38287. name: "Continent Cracker",
  38288. height: math.unit(24e6, "feet")
  38289. },
  38290. {
  38291. name: "Earth-Eclipsing",
  38292. height: math.unit(2.4e8, "feet")
  38293. },
  38294. {
  38295. name: "Gas Giant Gulper",
  38296. height: math.unit(2.4e9, "feet")
  38297. },
  38298. {
  38299. name: "Sol-Swallowing",
  38300. height: math.unit(8e10, "feet")
  38301. },
  38302. {
  38303. name: "Galaxy Gulper",
  38304. height: math.unit(8, "galaxies")
  38305. },
  38306. {
  38307. name: "Cosmos Churner",
  38308. height: math.unit(8, "universes")
  38309. },
  38310. {
  38311. name: "Omnipotent Otter",
  38312. height: math.unit(80, "universes")
  38313. },
  38314. ]
  38315. ))
  38316. characterMakers.push(() => makeCharacter(
  38317. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38318. {
  38319. front: {
  38320. height: math.unit(2.6, "meters"),
  38321. weight: math.unit(900, "kg"),
  38322. name: "Front",
  38323. image: {
  38324. source: "./media/characters/neesha/front.svg",
  38325. extra: 1803/1653,
  38326. bottom: 128/1931
  38327. }
  38328. },
  38329. },
  38330. [
  38331. {
  38332. name: "Normal",
  38333. height: math.unit(2.6, "meters"),
  38334. default: true
  38335. },
  38336. {
  38337. name: "Macro",
  38338. height: math.unit(50, "meters")
  38339. },
  38340. ]
  38341. ))
  38342. characterMakers.push(() => makeCharacter(
  38343. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38344. {
  38345. front: {
  38346. height: math.unit(5, "feet"),
  38347. weight: math.unit(185, "lb"),
  38348. name: "Front",
  38349. image: {
  38350. source: "./media/characters/kyera/front.svg",
  38351. extra: 1875/1790,
  38352. bottom: 96/1971
  38353. }
  38354. },
  38355. },
  38356. [
  38357. {
  38358. name: "Normal",
  38359. height: math.unit(5, "feet"),
  38360. default: true
  38361. },
  38362. ]
  38363. ))
  38364. characterMakers.push(() => makeCharacter(
  38365. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38366. {
  38367. front: {
  38368. height: math.unit(7 + 6/12, "feet"),
  38369. weight: math.unit(540, "lb"),
  38370. name: "Front",
  38371. image: {
  38372. source: "./media/characters/yuko/front.svg",
  38373. extra: 1282/1222,
  38374. bottom: 101/1383
  38375. }
  38376. },
  38377. frontClothed: {
  38378. height: math.unit(7 + 6/12, "feet"),
  38379. weight: math.unit(540, "lb"),
  38380. name: "Front (Clothed)",
  38381. image: {
  38382. source: "./media/characters/yuko/front-clothed.svg",
  38383. extra: 1282/1222,
  38384. bottom: 101/1383
  38385. }
  38386. },
  38387. },
  38388. [
  38389. {
  38390. name: "Normal",
  38391. height: math.unit(7 + 6/12, "feet"),
  38392. default: true
  38393. },
  38394. {
  38395. name: "Macro",
  38396. height: math.unit(26 + 9/12, "feet")
  38397. },
  38398. {
  38399. name: "Megamacro",
  38400. height: math.unit(300, "feet")
  38401. },
  38402. {
  38403. name: "Gigamacro",
  38404. height: math.unit(5000, "feet")
  38405. },
  38406. {
  38407. name: "Planetary",
  38408. height: math.unit(10000, "miles")
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38414. {
  38415. front: {
  38416. height: math.unit(8 + 2/12, "feet"),
  38417. weight: math.unit(600, "lb"),
  38418. name: "Front",
  38419. image: {
  38420. source: "./media/characters/deam-nitrel/front.svg",
  38421. extra: 1308/1234,
  38422. bottom: 125/1433
  38423. }
  38424. },
  38425. },
  38426. [
  38427. {
  38428. name: "Normal",
  38429. height: math.unit(8 + 2/12, "feet"),
  38430. default: true
  38431. },
  38432. ]
  38433. ))
  38434. characterMakers.push(() => makeCharacter(
  38435. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38436. {
  38437. front: {
  38438. height: math.unit(6.1, "feet"),
  38439. weight: math.unit(180, "lb"),
  38440. name: "Front",
  38441. image: {
  38442. source: "./media/characters/skyress/front.svg",
  38443. extra: 1045/915,
  38444. bottom: 28/1073
  38445. }
  38446. },
  38447. maw: {
  38448. height: math.unit(1, "feet"),
  38449. name: "Maw",
  38450. image: {
  38451. source: "./media/characters/skyress/maw.svg"
  38452. }
  38453. },
  38454. },
  38455. [
  38456. {
  38457. name: "Normal",
  38458. height: math.unit(6.1, "feet"),
  38459. default: true
  38460. },
  38461. {
  38462. name: "Macro",
  38463. height: math.unit(200, "feet")
  38464. },
  38465. ]
  38466. ))
  38467. characterMakers.push(() => makeCharacter(
  38468. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38469. {
  38470. front: {
  38471. height: math.unit(4 + 2/12, "feet"),
  38472. weight: math.unit(40, "kg"),
  38473. name: "Front",
  38474. image: {
  38475. source: "./media/characters/amethyst-jones/front.svg",
  38476. extra: 1220/1150,
  38477. bottom: 101/1321
  38478. }
  38479. },
  38480. },
  38481. [
  38482. {
  38483. name: "Normal",
  38484. height: math.unit(4 + 2/12, "feet"),
  38485. default: true
  38486. },
  38487. ]
  38488. ))
  38489. characterMakers.push(() => makeCharacter(
  38490. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38491. {
  38492. front: {
  38493. height: math.unit(1.7, "m"),
  38494. weight: math.unit(135, "lb"),
  38495. name: "Front",
  38496. image: {
  38497. source: "./media/characters/jade/front.svg",
  38498. extra: 1818/1767,
  38499. bottom: 32/1850
  38500. }
  38501. },
  38502. back: {
  38503. height: math.unit(1.7, "m"),
  38504. weight: math.unit(135, "lb"),
  38505. name: "Back",
  38506. image: {
  38507. source: "./media/characters/jade/back.svg",
  38508. extra: 1869/1809,
  38509. bottom: 35/1904
  38510. }
  38511. },
  38512. hand: {
  38513. height: math.unit(0.24, "m"),
  38514. name: "Hand",
  38515. image: {
  38516. source: "./media/characters/jade/hand.svg"
  38517. }
  38518. },
  38519. foot: {
  38520. height: math.unit(0.263, "m"),
  38521. name: "Foot",
  38522. image: {
  38523. source: "./media/characters/jade/foot.svg"
  38524. }
  38525. },
  38526. dick: {
  38527. height: math.unit(0.47, "m"),
  38528. name: "Dick",
  38529. image: {
  38530. source: "./media/characters/jade/dick.svg"
  38531. }
  38532. },
  38533. },
  38534. [
  38535. {
  38536. name: "Micro",
  38537. height: math.unit(22, "cm")
  38538. },
  38539. {
  38540. name: "Normal",
  38541. height: math.unit(1.7, "m"),
  38542. default: true
  38543. },
  38544. {
  38545. name: "Macro",
  38546. height: math.unit(152, "m")
  38547. },
  38548. ]
  38549. ))
  38550. characterMakers.push(() => makeCharacter(
  38551. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38552. {
  38553. front: {
  38554. height: math.unit(100, "miles"),
  38555. weight: math.unit(20000, "tons"),
  38556. name: "Front",
  38557. image: {
  38558. source: "./media/characters/cookie/front.svg",
  38559. extra: 1125/1070,
  38560. bottom: 30/1155
  38561. }
  38562. },
  38563. },
  38564. [
  38565. {
  38566. name: "Big",
  38567. height: math.unit(50, "feet")
  38568. },
  38569. {
  38570. name: "Macro",
  38571. height: math.unit(100, "miles"),
  38572. default: true
  38573. },
  38574. {
  38575. name: "Megamacro",
  38576. height: math.unit(90000, "miles")
  38577. },
  38578. ]
  38579. ))
  38580. characterMakers.push(() => makeCharacter(
  38581. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38582. {
  38583. front: {
  38584. height: math.unit(6, "feet"),
  38585. weight: math.unit(145, "lb"),
  38586. name: "Front",
  38587. image: {
  38588. source: "./media/characters/farzian/front.svg",
  38589. extra: 1902/1693,
  38590. bottom: 108/2010
  38591. }
  38592. },
  38593. },
  38594. [
  38595. {
  38596. name: "Macro",
  38597. height: math.unit(500, "feet"),
  38598. default: true
  38599. },
  38600. ]
  38601. ))
  38602. characterMakers.push(() => makeCharacter(
  38603. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38604. {
  38605. front: {
  38606. height: math.unit(3 + 6/12, "feet"),
  38607. weight: math.unit(50, "lb"),
  38608. name: "Front",
  38609. image: {
  38610. source: "./media/characters/kimberly-tilson/front.svg",
  38611. extra: 1400/1322,
  38612. bottom: 36/1436
  38613. }
  38614. },
  38615. back: {
  38616. height: math.unit(3 + 6/12, "feet"),
  38617. weight: math.unit(50, "lb"),
  38618. name: "Back",
  38619. image: {
  38620. source: "./media/characters/kimberly-tilson/back.svg",
  38621. extra: 1370/1307,
  38622. bottom: 20/1390
  38623. }
  38624. },
  38625. },
  38626. [
  38627. {
  38628. name: "Normal",
  38629. height: math.unit(3 + 6/12, "feet"),
  38630. default: true
  38631. },
  38632. ]
  38633. ))
  38634. characterMakers.push(() => makeCharacter(
  38635. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38636. {
  38637. front: {
  38638. height: math.unit(1148, "feet"),
  38639. weight: math.unit(34057, "lb"),
  38640. name: "Front",
  38641. image: {
  38642. source: "./media/characters/harthos/front.svg",
  38643. extra: 1391/1339,
  38644. bottom: 13/1404
  38645. }
  38646. },
  38647. },
  38648. [
  38649. {
  38650. name: "Macro",
  38651. height: math.unit(1148, "feet"),
  38652. default: true
  38653. },
  38654. ]
  38655. ))
  38656. characterMakers.push(() => makeCharacter(
  38657. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38658. {
  38659. front: {
  38660. height: math.unit(15, "feet"),
  38661. name: "Front",
  38662. image: {
  38663. source: "./media/characters/hypatia/front.svg",
  38664. extra: 1653/1591,
  38665. bottom: 79/1732
  38666. }
  38667. },
  38668. },
  38669. [
  38670. {
  38671. name: "Normal",
  38672. height: math.unit(15, "feet")
  38673. },
  38674. {
  38675. name: "Small",
  38676. height: math.unit(300, "feet")
  38677. },
  38678. {
  38679. name: "Macro",
  38680. height: math.unit(2500, "feet"),
  38681. default: true
  38682. },
  38683. {
  38684. name: "Mega Macro",
  38685. height: math.unit(1500, "miles")
  38686. },
  38687. {
  38688. name: "Giga Macro",
  38689. height: math.unit(1.5e6, "miles")
  38690. },
  38691. ]
  38692. ))
  38693. characterMakers.push(() => makeCharacter(
  38694. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38695. {
  38696. front: {
  38697. height: math.unit(6, "feet"),
  38698. weight: math.unit(200, "lb"),
  38699. name: "Front",
  38700. image: {
  38701. source: "./media/characters/wulver/front.svg",
  38702. extra: 1724/1632,
  38703. bottom: 130/1854
  38704. }
  38705. },
  38706. frontNsfw: {
  38707. height: math.unit(6, "feet"),
  38708. weight: math.unit(200, "lb"),
  38709. name: "Front (NSFW)",
  38710. image: {
  38711. source: "./media/characters/wulver/front-nsfw.svg",
  38712. extra: 1724/1632,
  38713. bottom: 130/1854
  38714. }
  38715. },
  38716. },
  38717. [
  38718. {
  38719. name: "Human-Sized",
  38720. height: math.unit(6, "feet")
  38721. },
  38722. {
  38723. name: "Normal",
  38724. height: math.unit(4, "meters"),
  38725. default: true
  38726. },
  38727. {
  38728. name: "Large",
  38729. height: math.unit(6, "m")
  38730. },
  38731. ]
  38732. ))
  38733. characterMakers.push(() => makeCharacter(
  38734. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38735. {
  38736. front: {
  38737. height: math.unit(7, "feet"),
  38738. name: "Front",
  38739. image: {
  38740. source: "./media/characters/maru/front.svg",
  38741. extra: 1595/1570,
  38742. bottom: 0/1595
  38743. }
  38744. },
  38745. },
  38746. [
  38747. {
  38748. name: "Normal",
  38749. height: math.unit(7, "feet"),
  38750. default: true
  38751. },
  38752. {
  38753. name: "Macro",
  38754. height: math.unit(700, "feet")
  38755. },
  38756. {
  38757. name: "Mega Macro",
  38758. height: math.unit(25, "miles")
  38759. },
  38760. ]
  38761. ))
  38762. characterMakers.push(() => makeCharacter(
  38763. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38764. {
  38765. front: {
  38766. height: math.unit(6, "feet"),
  38767. weight: math.unit(170, "lb"),
  38768. name: "Front",
  38769. image: {
  38770. source: "./media/characters/xenon/front.svg",
  38771. extra: 1376/1305,
  38772. bottom: 56/1432
  38773. }
  38774. },
  38775. back: {
  38776. height: math.unit(6, "feet"),
  38777. weight: math.unit(170, "lb"),
  38778. name: "Back",
  38779. image: {
  38780. source: "./media/characters/xenon/back.svg",
  38781. extra: 1328/1259,
  38782. bottom: 95/1423
  38783. }
  38784. },
  38785. maw: {
  38786. height: math.unit(0.52, "feet"),
  38787. name: "Maw",
  38788. image: {
  38789. source: "./media/characters/xenon/maw.svg"
  38790. }
  38791. },
  38792. hand: {
  38793. height: math.unit(0.82, "feet"),
  38794. name: "Hand",
  38795. image: {
  38796. source: "./media/characters/xenon/hand.svg"
  38797. }
  38798. },
  38799. foot: {
  38800. height: math.unit(1.13, "feet"),
  38801. name: "Foot",
  38802. image: {
  38803. source: "./media/characters/xenon/foot.svg"
  38804. }
  38805. },
  38806. },
  38807. [
  38808. {
  38809. name: "Micro",
  38810. height: math.unit(0.8, "inches")
  38811. },
  38812. {
  38813. name: "Normal",
  38814. height: math.unit(6, "feet")
  38815. },
  38816. {
  38817. name: "Macro",
  38818. height: math.unit(50, "feet"),
  38819. default: true
  38820. },
  38821. {
  38822. name: "Macro+",
  38823. height: math.unit(250, "feet")
  38824. },
  38825. {
  38826. name: "Megamacro",
  38827. height: math.unit(1500, "feet")
  38828. },
  38829. ]
  38830. ))
  38831. //characters
  38832. function makeCharacters() {
  38833. const results = [];
  38834. characterMakers.forEach(character => {
  38835. results.push(character());
  38836. });
  38837. return results;
  38838. }