less copy protection, more size visualization
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

51280 lines
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  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. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. if (value.extraAttributes) {
  54. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  55. views[key].attributes[attrKey] = attrValue
  56. })
  57. }
  58. });
  59. return createEntityMaker(info, views, defaultSizes, forms);
  60. }
  61. const speciesData = {
  62. animal: {
  63. name: "Animal"
  64. },
  65. dog: {
  66. name: "Dog",
  67. parents: [
  68. "canine"
  69. ]
  70. },
  71. canine: {
  72. name: "Canine",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. crux: {
  78. name: "Crux",
  79. parents: [
  80. "mammal"
  81. ]
  82. },
  83. mammal: {
  84. name: "Mammal",
  85. parents: [
  86. "animal"
  87. ]
  88. },
  89. "rough-collie": {
  90. name: "Rough Collie",
  91. parents: [
  92. "dog"
  93. ]
  94. },
  95. dragon: {
  96. name: "Dragon",
  97. parents: [
  98. "reptile"
  99. ]
  100. },
  101. reptile: {
  102. name: "Reptile",
  103. parents: [
  104. "animal"
  105. ]
  106. },
  107. woodpecker: {
  108. name: "Woodpecker",
  109. parents: [
  110. "avian"
  111. ]
  112. },
  113. avian: {
  114. name: "Avian",
  115. parents: [
  116. "animal"
  117. ]
  118. },
  119. kitsune: {
  120. name: "Kitsune",
  121. parents: [
  122. "fox"
  123. ]
  124. },
  125. fox: {
  126. name: "Fox",
  127. parents: [
  128. "mammal"
  129. ]
  130. },
  131. pokemon: {
  132. name: "Pokemon",
  133. },
  134. tiger: {
  135. name: "Tiger",
  136. parents: [
  137. "cat"
  138. ]
  139. },
  140. cat: {
  141. name: "Cat",
  142. parents: [
  143. "feliform"
  144. ]
  145. },
  146. "blue-jay": {
  147. name: "Blue Jay",
  148. parents: [
  149. "avian"
  150. ]
  151. },
  152. wolf: {
  153. name: "Wolf",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. coyote: {
  159. name: "Coyote",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. raccoon: {
  165. name: "Raccoon",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. weasel: {
  171. name: "Weasel",
  172. parents: [
  173. "mustelid"
  174. ]
  175. },
  176. "red-panda": {
  177. name: "Red Panda",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. dolphin: {
  183. name: "Dolphin",
  184. parents: [
  185. "mammal"
  186. ]
  187. },
  188. "african-wild-dog": {
  189. name: "African Wild Dog",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "hyena": {
  195. name: "Hyena",
  196. parents: [
  197. "feliform"
  198. ]
  199. },
  200. "carbuncle": {
  201. name: "Carbuncle",
  202. parents: [
  203. "animal"
  204. ]
  205. },
  206. bat: {
  207. name: "Bat",
  208. parents: [
  209. "mammal"
  210. ]
  211. },
  212. "leaf-nosed-bat": {
  213. name: "Leaf-Nosed Bat",
  214. parents: [
  215. "bat"
  216. ]
  217. },
  218. "fish": {
  219. name: "Fish",
  220. parents: [
  221. "animal"
  222. ]
  223. },
  224. "ram": {
  225. name: "Ram",
  226. parents: [
  227. "mammal"
  228. ]
  229. },
  230. "demon": {
  231. name: "Demon",
  232. parents: [
  233. "supernatural"
  234. ]
  235. },
  236. "cougar": {
  237. name: "Cougar",
  238. parents: [
  239. "cat"
  240. ]
  241. },
  242. "goat": {
  243. name: "Goat",
  244. parents: [
  245. "mammal"
  246. ]
  247. },
  248. "lion": {
  249. name: "Lion",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "harpy-eager": {
  255. name: "Harpy Eagle",
  256. parents: [
  257. "avian"
  258. ]
  259. },
  260. "deer": {
  261. name: "Deer",
  262. parents: [
  263. "mammal"
  264. ]
  265. },
  266. "phoenix": {
  267. name: "Phoenix",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "aeromorph": {
  273. name: "Aeromorph",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "machine": {
  279. name: "Machine",
  280. },
  281. "android": {
  282. name: "Android",
  283. parents: [
  284. "machine"
  285. ]
  286. },
  287. "jackal": {
  288. name: "Jackal",
  289. parents: [
  290. "canine"
  291. ]
  292. },
  293. "corvid": {
  294. name: "Corvid",
  295. parents: [
  296. "avian"
  297. ]
  298. },
  299. "pharaoh-hound": {
  300. name: "Pharaoh Hound",
  301. parents: [
  302. "dog"
  303. ]
  304. },
  305. "skunk": {
  306. name: "Skunk",
  307. parents: [
  308. "mammal"
  309. ]
  310. },
  311. "shark": {
  312. name: "Shark",
  313. parents: [
  314. "fish"
  315. ]
  316. },
  317. "black-panther": {
  318. name: "Black Panther",
  319. parents: [
  320. "cat"
  321. ]
  322. },
  323. "umbra": {
  324. name: "Umbra",
  325. parents: [
  326. "animal"
  327. ]
  328. },
  329. "raven": {
  330. name: "Raven",
  331. parents: [
  332. "corvid"
  333. ]
  334. },
  335. "snow-leopard": {
  336. name: "Snow Leopard",
  337. parents: [
  338. "cat"
  339. ]
  340. },
  341. "barbary-lion": {
  342. name: "Barbary Lion",
  343. parents: [
  344. "lion"
  345. ]
  346. },
  347. "dra'gal": {
  348. name: "Dra'Gal",
  349. parents: [
  350. "mammal"
  351. ]
  352. },
  353. "german-shepherd": {
  354. name: "German Shepherd",
  355. parents: [
  356. "dog"
  357. ]
  358. },
  359. "bayleef": {
  360. name: "Bayleef",
  361. parents: [
  362. "pokemon",
  363. "plant",
  364. "animal"
  365. ]
  366. },
  367. "mouse": {
  368. name: "Mouse",
  369. parents: [
  370. "rodent"
  371. ]
  372. },
  373. "rat": {
  374. name: "Rat",
  375. parents: [
  376. "mammal"
  377. ]
  378. },
  379. "hoshiko-beast": {
  380. name: "Hoshiko Beast",
  381. parents: ["animal"]
  382. },
  383. "snow-jugani": {
  384. name: "Snow Jugani",
  385. parents: ["cat"]
  386. },
  387. "patamon": {
  388. name: "Patamon",
  389. parents: ["digimon", "guinea-pig"]
  390. },
  391. "digimon": {
  392. name: "Digimon",
  393. },
  394. "jugani": {
  395. name: "Jugani",
  396. parents: ["cat"]
  397. },
  398. "luxray": {
  399. name: "Luxray",
  400. parents: ["pokemon", "lion"]
  401. },
  402. "mech": {
  403. name: "Mech",
  404. parents: ["machine"]
  405. },
  406. "zoid": {
  407. name: "Zoid",
  408. parents: ["mech"]
  409. },
  410. "monster": {
  411. name: "Monster",
  412. parents: ["animal"]
  413. },
  414. "foo-dog": {
  415. name: "Foo Dog",
  416. parents: ["mammal"]
  417. },
  418. "elephant": {
  419. name: "Elephant",
  420. parents: ["mammal"]
  421. },
  422. "eagle": {
  423. name: "Eagle",
  424. parents: ["avian"]
  425. },
  426. "cow": {
  427. name: "Cow",
  428. parents: ["mammal"]
  429. },
  430. "crocodile": {
  431. name: "Crocodile",
  432. parents: ["reptile"]
  433. },
  434. "borzoi": {
  435. name: "Borzoi",
  436. parents: ["dog"]
  437. },
  438. "snake": {
  439. name: "Snake",
  440. parents: ["reptile"]
  441. },
  442. "horned-bush-viper": {
  443. name: "Horned Bush Viper",
  444. parents: ["viper"]
  445. },
  446. "cobra": {
  447. name: "Cobra",
  448. parents: ["snake"]
  449. },
  450. "harpy-eagle": {
  451. name: "Harpy Eagle",
  452. parents: ["eagle"]
  453. },
  454. "raptor": {
  455. name: "Raptor",
  456. parents: ["dinosaur"]
  457. },
  458. "dinosaur": {
  459. name: "Dinosaur",
  460. parents: ["reptile"]
  461. },
  462. "veilhound": {
  463. name: "Veilhound",
  464. parents: ["hellhound"]
  465. },
  466. "hellhound": {
  467. name: "Hellhound",
  468. parents: ["canine", "demon"]
  469. },
  470. "insect": {
  471. name: "Insect",
  472. parents: ["animal"]
  473. },
  474. "beetle": {
  475. name: "Beetle",
  476. parents: ["insect"]
  477. },
  478. "moth": {
  479. name: "Moth",
  480. parents: ["insect"]
  481. },
  482. "eastern-dragon": {
  483. name: "Eastern Dragon",
  484. parents: ["dragon"]
  485. },
  486. "jaguar": {
  487. name: "Jaguar",
  488. parents: ["cat"]
  489. },
  490. "horse": {
  491. name: "Horse",
  492. parents: ["mammal"]
  493. },
  494. "sergal": {
  495. name: "Sergal",
  496. parents: ["mammal"]
  497. },
  498. "gryphon": {
  499. name: "Gryphon",
  500. parents: ["lion", "eagle"]
  501. },
  502. "robot": {
  503. name: "Robot",
  504. parents: ["machine"]
  505. },
  506. "medihound": {
  507. name: "Medihound",
  508. parents: ["robot", "dog"]
  509. },
  510. "sylveon": {
  511. name: "Sylveon",
  512. parents: ["pokemon"]
  513. },
  514. "catgirl": {
  515. name: "Catgirl",
  516. parents: ["mammal"]
  517. },
  518. "cowgirl": {
  519. name: "Cowgirl",
  520. parents: ["mammal"]
  521. },
  522. "pony": {
  523. name: "Pony",
  524. parents: ["horse"]
  525. },
  526. "rabbit": {
  527. name: "Rabbit",
  528. parents: ["leporidae"]
  529. },
  530. "fennec-fox": {
  531. name: "Fennec Fox",
  532. parents: ["fox"]
  533. },
  534. "azodian": {
  535. name: "Azodian",
  536. parents: ["mouse"]
  537. },
  538. "shiba-inu": {
  539. name: "Shiba Inu",
  540. parents: ["dog"]
  541. },
  542. "changeling": {
  543. name: "Changeling",
  544. parents: ["insect"]
  545. },
  546. "cheetah": {
  547. name: "Cheetah",
  548. parents: ["cat"]
  549. },
  550. "golden-jackal": {
  551. name: "Golden Jackal",
  552. parents: ["jackal"]
  553. },
  554. "manectric": {
  555. name: "Manectric",
  556. parents: ["pokemon", "wolf"]
  557. },
  558. "rat": {
  559. name: "Rat",
  560. parents: ["rodent"]
  561. },
  562. "rodent": {
  563. name: "Rodent",
  564. parents: ["mammal"]
  565. },
  566. "octocoon": {
  567. name: "Octocoon",
  568. parents: ["raccoon", "octopus"]
  569. },
  570. "octopus": {
  571. name: "Octopus",
  572. parents: ["fish"]
  573. },
  574. "werewolf": {
  575. name: "Werewolf",
  576. parents: ["wolf", "werebeast"]
  577. },
  578. "werebeast": {
  579. name: "Werebeast",
  580. parents: ["monster"]
  581. },
  582. "meerkat": {
  583. name: "Meerkat",
  584. parents: ["mammal"]
  585. },
  586. "human": {
  587. name: "Human",
  588. parents: ["mammal"]
  589. },
  590. "geth": {
  591. name: "Geth",
  592. parents: ["android"]
  593. },
  594. "husky": {
  595. name: "Husky",
  596. parents: ["dog"]
  597. },
  598. "long-eared-bat": {
  599. name: "Long Eared Bat",
  600. parents: ["bat"]
  601. },
  602. "lizard": {
  603. name: "Lizard",
  604. parents: ["reptile"]
  605. },
  606. "salamander": {
  607. name: "Salamander",
  608. parents: ["lizard"]
  609. },
  610. "chameleon": {
  611. name: "Chameleon",
  612. parents: ["lizard"]
  613. },
  614. "gecko": {
  615. name: "Gecko",
  616. parents: ["lizard"]
  617. },
  618. "kobold": {
  619. name: "Kobold",
  620. parents: ["reptile"]
  621. },
  622. "charizard": {
  623. name: "Charizard",
  624. parents: ["pokemon", "dragon"]
  625. },
  626. "lugia": {
  627. name: "Lugia",
  628. parents: ["pokemon", "avian"]
  629. },
  630. "cerberus": {
  631. name: "Cerberus",
  632. parents: ["dog"]
  633. },
  634. "tyrantrum": {
  635. name: "Tyrantrum",
  636. parents: ["pokemon"]
  637. },
  638. "lemur": {
  639. name: "Lemur",
  640. parents: ["mammal"]
  641. },
  642. "kelpie": {
  643. name: "Kelpie",
  644. parents: ["horse", "monster"]
  645. },
  646. "labrador": {
  647. name: "Labrador",
  648. parents: ["dog"]
  649. },
  650. "sylveon": {
  651. name: "Sylveon",
  652. parents: ["eeveelution"]
  653. },
  654. "eeveelution": {
  655. name: "Eeveelution",
  656. parents: ["pokemon", "cat"]
  657. },
  658. "polar-bear": {
  659. name: "Polar Bear",
  660. parents: ["bear"]
  661. },
  662. "bear": {
  663. name: "Bear",
  664. parents: ["mammal"]
  665. },
  666. "absol": {
  667. name: "Absol",
  668. parents: ["pokemon", "cat"]
  669. },
  670. "wolver": {
  671. name: "Wolver",
  672. parents: ["mammal"]
  673. },
  674. "rottweiler": {
  675. name: "Rottweiler",
  676. parents: ["dog"]
  677. },
  678. "zebra": {
  679. name: "Zebra",
  680. parents: ["horse"]
  681. },
  682. "yoshi": {
  683. name: "Yoshi",
  684. parents: ["lizard"]
  685. },
  686. "lynx": {
  687. name: "Lynx",
  688. parents: ["cat"]
  689. },
  690. "unknown": {
  691. name: "Unknown",
  692. parents: []
  693. },
  694. "thylacine": {
  695. name: "Thylacine",
  696. parents: ["mammal"]
  697. },
  698. "gabumon": {
  699. name: "Gabumon",
  700. parents: ["digimon"]
  701. },
  702. "border-collie": {
  703. name: "Border Collie",
  704. parents: ["dog"]
  705. },
  706. "imp": {
  707. name: "Imp",
  708. parents: ["demon"]
  709. },
  710. "kangaroo": {
  711. name: "Kangaroo",
  712. parents: ["marsupial"]
  713. },
  714. "renamon": {
  715. name: "Renamon",
  716. parents: ["digimon", "fox"]
  717. },
  718. "candy-orca-dragon": {
  719. name: "Candy Orca Dragon",
  720. parents: ["fish", "dragon", "candy"]
  721. },
  722. "sabertooth-tiger": {
  723. name: "Sabertooth Tiger",
  724. parents: ["cat"]
  725. },
  726. "espurr": {
  727. name: "Espurr",
  728. parents: ["pokemon", "cat"]
  729. },
  730. "otter": {
  731. name: "Otter",
  732. parents: ["mustelid"]
  733. },
  734. "elemental": {
  735. name: "Elemental",
  736. parents: ["mammal"]
  737. },
  738. "mew": {
  739. name: "Mew",
  740. parents: ["pokemon"]
  741. },
  742. "goodra": {
  743. name: "Goodra",
  744. parents: ["pokemon"]
  745. },
  746. "fairy": {
  747. name: "Fairy",
  748. parents: ["magical"]
  749. },
  750. "typhlosion": {
  751. name: "Typhlosion",
  752. parents: ["pokemon"]
  753. },
  754. "magical": {
  755. name: "Magical",
  756. parents: []
  757. },
  758. "xenomorph": {
  759. name: "Xenomorph",
  760. parents: ["monster", "alien"]
  761. },
  762. "charr": {
  763. name: "Charr",
  764. parents: ["cat"]
  765. },
  766. "siberian-husky": {
  767. name: "Siberian Husky",
  768. parents: ["husky"]
  769. },
  770. "alligator": {
  771. name: "Alligator",
  772. parents: ["reptile"]
  773. },
  774. "bernese-mountain-dog": {
  775. name: "Bernese Mountain Dog",
  776. parents: ["dog"]
  777. },
  778. "reshiram": {
  779. name: "Reshiram",
  780. parents: ["pokemon", "dragon"]
  781. },
  782. "grizzly-bear": {
  783. name: "Grizzly Bear",
  784. parents: ["bear"]
  785. },
  786. "water-monitor": {
  787. name: "Water Monitor",
  788. parents: ["lizard"]
  789. },
  790. "banchofossa": {
  791. name: "Banchofossa",
  792. parents: ["mammal"]
  793. },
  794. "kirin": {
  795. name: "Kirin",
  796. parents: ["monster"]
  797. },
  798. "quilava": {
  799. name: "Quilava",
  800. parents: ["pokemon"]
  801. },
  802. "seviper": {
  803. name: "Seviper",
  804. parents: ["pokemon", "viper"]
  805. },
  806. "flying-fox": {
  807. name: "Flying Fox",
  808. parents: ["bat"]
  809. },
  810. "keynain": {
  811. name: "Keynain",
  812. parents: ["avian"]
  813. },
  814. "lucario": {
  815. name: "Lucario",
  816. parents: ["pokemon", "jackal"]
  817. },
  818. "siamese-cat": {
  819. name: "Siamese Cat",
  820. parents: ["cat"]
  821. },
  822. "spider": {
  823. name: "Spider",
  824. parents: ["insect"]
  825. },
  826. "samurott": {
  827. name: "Samurott",
  828. parents: ["pokemon", "otter"]
  829. },
  830. "megalodon": {
  831. name: "Megalodon",
  832. parents: ["shark"]
  833. },
  834. "unicorn": {
  835. name: "Unicorn",
  836. parents: ["horse"]
  837. },
  838. "greninja": {
  839. name: "Greninja",
  840. parents: ["pokemon", "frog"]
  841. },
  842. "water-dragon": {
  843. name: "Water Dragon",
  844. parents: ["dragon"]
  845. },
  846. "cross-fox": {
  847. name: "Cross Fox",
  848. parents: ["fox"]
  849. },
  850. "synth": {
  851. name: "Synth",
  852. parents: ["machine"]
  853. },
  854. "construct": {
  855. name: "Construct",
  856. parents: []
  857. },
  858. "mexican-wolf": {
  859. name: "Mexican Wolf",
  860. parents: ["wolf"]
  861. },
  862. "leopard": {
  863. name: "Leopard",
  864. parents: ["cat"]
  865. },
  866. "pig": {
  867. name: "Pig",
  868. parents: ["mammal"]
  869. },
  870. "ampharos": {
  871. name: "Ampharos",
  872. parents: ["pokemon", "sheep"]
  873. },
  874. "orca": {
  875. name: "Orca",
  876. parents: ["fish"]
  877. },
  878. "lycanroc": {
  879. name: "Lycanroc",
  880. parents: ["pokemon", "wolf"]
  881. },
  882. "surkanu": {
  883. name: "Surkanu",
  884. parents: ["monster"]
  885. },
  886. "seal": {
  887. name: "Seal",
  888. parents: ["mammal"]
  889. },
  890. "keldeo": {
  891. name: "Keldeo",
  892. parents: ["pokemon"]
  893. },
  894. "great-dane": {
  895. name: "Great Dane",
  896. parents: ["dog"]
  897. },
  898. "black-backed-jackal": {
  899. name: "Black Backed Jackal",
  900. parents: ["jackal"]
  901. },
  902. "sheep": {
  903. name: "Sheep",
  904. parents: ["mammal"]
  905. },
  906. "leopard-seal": {
  907. name: "Leopard Seal",
  908. parents: ["seal"]
  909. },
  910. "zoroark": {
  911. name: "Zoroark",
  912. parents: ["pokemon", "fox"]
  913. },
  914. "maned-wolf": {
  915. name: "Maned Wolf",
  916. parents: ["canine"]
  917. },
  918. "dracha": {
  919. name: "Dracha",
  920. parents: ["dragon"]
  921. },
  922. "wolxi": {
  923. name: "Wolxi",
  924. parents: ["mammal", "alien"]
  925. },
  926. "dratini": {
  927. name: "Dratini",
  928. parents: ["pokemon", "dragon"]
  929. },
  930. "skaven": {
  931. name: "Skaven",
  932. parents: ["rat"]
  933. },
  934. "mongoose": {
  935. name: "Mongoose",
  936. parents: ["mammal"]
  937. },
  938. "lopunny": {
  939. name: "Lopunny",
  940. parents: ["pokemon", "rabbit"]
  941. },
  942. "feraligatr": {
  943. name: "Feraligatr",
  944. parents: ["pokemon", "alligator"]
  945. },
  946. "houndoom": {
  947. name: "Houndoom",
  948. parents: ["pokemon", "dog"]
  949. },
  950. "protogen": {
  951. name: "Protogen",
  952. parents: ["machine"]
  953. },
  954. "saint-bernard": {
  955. name: "Saint Bernard",
  956. parents: ["dog"]
  957. },
  958. "crow": {
  959. name: "Crow",
  960. parents: ["corvid"]
  961. },
  962. "delphox": {
  963. name: "Delphox",
  964. parents: ["pokemon", "fox"]
  965. },
  966. "moose": {
  967. name: "Moose",
  968. parents: ["mammal"]
  969. },
  970. "joraxian": {
  971. name: "Joraxian",
  972. parents: ["monster", "canine", "demon"]
  973. },
  974. "nimbat": {
  975. name: "Nimbat",
  976. parents: ["mammal"]
  977. },
  978. "aardwolf": {
  979. name: "Aardwolf",
  980. parents: ["canine"]
  981. },
  982. "fluudrani": {
  983. name: "Fluudrani",
  984. parents: ["animal"]
  985. },
  986. "arcanine": {
  987. name: "Arcanine",
  988. parents: ["pokemon", "dog"]
  989. },
  990. "inteleon": {
  991. name: "Inteleon",
  992. parents: ["pokemon", "fish"]
  993. },
  994. "ninetales": {
  995. name: "Ninetales",
  996. parents: ["pokemon", "kitsune"]
  997. },
  998. "tigrex": {
  999. name: "Tigrex",
  1000. parents: ["tiger"]
  1001. },
  1002. "zorua": {
  1003. name: "Zorua",
  1004. parents: ["pokemon", "fox"]
  1005. },
  1006. "vulpix": {
  1007. name: "Vulpix",
  1008. parents: ["pokemon", "fox"]
  1009. },
  1010. "barghest": {
  1011. name: "Barghest",
  1012. parents: ["monster"]
  1013. },
  1014. "gray-wolf": {
  1015. name: "Gray Wolf",
  1016. parents: ["wolf"]
  1017. },
  1018. "ruppells-fox": {
  1019. name: "Rüppell's Fox",
  1020. parents: ["fox"]
  1021. },
  1022. "bull-terrier": {
  1023. name: "Bull Terrier",
  1024. parents: ["dog"]
  1025. },
  1026. "european-honey-buzzard": {
  1027. name: "European Honey Buzzard",
  1028. parents: ["avian"]
  1029. },
  1030. "t-rex": {
  1031. name: "Tyrannosaurus Rex",
  1032. parents: ["dinosaur"]
  1033. },
  1034. "mactarian": {
  1035. name: "Mactarian",
  1036. parents: ["shark", "monster"]
  1037. },
  1038. "mewtwo-y": {
  1039. name: "Mewtwo Y",
  1040. parents: ["mewtwo"]
  1041. },
  1042. "mewtwo": {
  1043. name: "Mewtwo",
  1044. parents: ["pokemon"]
  1045. },
  1046. "eevee": {
  1047. name: "Eevee",
  1048. parents: ["eeveelution"]
  1049. },
  1050. "mienshao": {
  1051. name: "Mienshao",
  1052. parents: ["pokemon"]
  1053. },
  1054. "sugar-glider": {
  1055. name: "Sugar Glider",
  1056. parents: ["opossum"]
  1057. },
  1058. "spectral-bat": {
  1059. name: "Spectral Bat",
  1060. parents: ["bat"]
  1061. },
  1062. "scolipede": {
  1063. name: "Scolipede",
  1064. parents: ["pokemon", "insect"]
  1065. },
  1066. "jackalope": {
  1067. name: "Jackalope",
  1068. parents: ["rabbit", "antelope"]
  1069. },
  1070. "caracal": {
  1071. name: "Caracal",
  1072. parents: ["cat"]
  1073. },
  1074. "stoat": {
  1075. name: "Stoat",
  1076. parents: ["mammal"]
  1077. },
  1078. "african-golden-cat": {
  1079. name: "African Golden Cat",
  1080. parents: ["cat"]
  1081. },
  1082. "gigantosaurus": {
  1083. name: "Gigantosaurus",
  1084. parents: ["dinosaur"]
  1085. },
  1086. "zorgoia": {
  1087. name: "Zorgoia",
  1088. parents: ["mammal"]
  1089. },
  1090. "monitor-lizard": {
  1091. name: "Monitor Lizard",
  1092. parents: ["lizard"]
  1093. },
  1094. "ziralkia": {
  1095. name: "Ziralkia",
  1096. parents: ["mammal"]
  1097. },
  1098. "kiiasi": {
  1099. name: "Kiiasi",
  1100. parents: ["animal"]
  1101. },
  1102. "synx": {
  1103. name: "Synx",
  1104. parents: ["monster"]
  1105. },
  1106. "panther": {
  1107. name: "Panther",
  1108. parents: ["cat"]
  1109. },
  1110. "azumarill": {
  1111. name: "Azumarill",
  1112. parents: ["pokemon"]
  1113. },
  1114. "river-snaptail": {
  1115. name: "River Snaptail",
  1116. parents: ["otter", "crocodile"]
  1117. },
  1118. "great-blue-heron": {
  1119. name: "Great Blue Heron",
  1120. parents: ["avian"]
  1121. },
  1122. "smeargle": {
  1123. name: "Smeargle",
  1124. parents: ["pokemon"]
  1125. },
  1126. "vendeilen": {
  1127. name: "Vendeilen",
  1128. parents: ["monster"]
  1129. },
  1130. "ventura": {
  1131. name: "Ventura",
  1132. parents: ["canine"]
  1133. },
  1134. "clouded-leopard": {
  1135. name: "Clouded Leopard",
  1136. parents: ["leopard"]
  1137. },
  1138. "argonian": {
  1139. name: "Argonian",
  1140. parents: ["lizard"]
  1141. },
  1142. "salazzle": {
  1143. name: "Salazzle",
  1144. parents: ["pokemon", "lizard"]
  1145. },
  1146. "je-stoff-drachen": {
  1147. name: "Je-Stoff Drachen",
  1148. parents: ["dragon"]
  1149. },
  1150. "finnish-spitz-dog": {
  1151. name: "Finnish Spitz Dog",
  1152. parents: ["dog"]
  1153. },
  1154. "gray-fox": {
  1155. name: "Gray Fox",
  1156. parents: ["fox"]
  1157. },
  1158. "opossum": {
  1159. name: "Opossum",
  1160. parents: ["mammal"]
  1161. },
  1162. "antelope": {
  1163. name: "Antelope",
  1164. parents: ["mammal"]
  1165. },
  1166. "weavile": {
  1167. name: "Weavile",
  1168. parents: ["pokemon"]
  1169. },
  1170. "pikachu": {
  1171. name: "Pikachu",
  1172. parents: ["pokemon", "mouse"]
  1173. },
  1174. "grovyle": {
  1175. name: "Grovyle",
  1176. parents: ["pokemon", "plant"]
  1177. },
  1178. "sthara": {
  1179. name: "Sthara",
  1180. parents: ["snow-leopard", "reptile"]
  1181. },
  1182. "star-warrior": {
  1183. name: "Star Warrior",
  1184. parents: ["magical"]
  1185. },
  1186. "dragonoid": {
  1187. name: "Dragonoid",
  1188. parents: ["dragon"]
  1189. },
  1190. "suicune": {
  1191. name: "Suicune",
  1192. parents: ["pokemon"]
  1193. },
  1194. "vole": {
  1195. name: "Vole",
  1196. parents: ["mammal"]
  1197. },
  1198. "blaziken": {
  1199. name: "Blaziken",
  1200. parents: ["pokemon", "avian"]
  1201. },
  1202. "buizel": {
  1203. name: "Buizel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "floatzel": {
  1207. name: "Floatzel",
  1208. parents: ["pokemon", "fish"]
  1209. },
  1210. "umok": {
  1211. name: "Umok",
  1212. parents: ["avian"]
  1213. },
  1214. "sea-monster": {
  1215. name: "Sea Monster",
  1216. parents: ["monster", "fish"]
  1217. },
  1218. "egyptian-vulture": {
  1219. name: "Egyptian Vulture",
  1220. parents: ["avian"]
  1221. },
  1222. "doberman": {
  1223. name: "Doberman",
  1224. parents: ["dog"]
  1225. },
  1226. "zangoose": {
  1227. name: "Zangoose",
  1228. parents: ["pokemon", "mongoose"]
  1229. },
  1230. "mongoose": {
  1231. name: "Mongoose",
  1232. parents: ["mammal"]
  1233. },
  1234. "wickerbeast": {
  1235. name: "Wickerbeast",
  1236. parents: ["monster"]
  1237. },
  1238. "zenari": {
  1239. name: "Zenari",
  1240. parents: ["lizard"]
  1241. },
  1242. "plant": {
  1243. name: "Plant",
  1244. parents: []
  1245. },
  1246. "raskatox": {
  1247. name: "Raskatox",
  1248. parents: ["raccoon", "skunk", "cat", "fox"]
  1249. },
  1250. "mikromare": {
  1251. name: "mikromare",
  1252. parents: ["alien"]
  1253. },
  1254. "alien": {
  1255. name: "Alien",
  1256. parents: ["animal"]
  1257. },
  1258. "deity": {
  1259. name: "Deity",
  1260. parents: []
  1261. },
  1262. "skarlan": {
  1263. name: "Skarlan",
  1264. parents: ["slug", "dragon"]
  1265. },
  1266. "slug": {
  1267. name: "Slug",
  1268. parents: ["mollusk"]
  1269. },
  1270. "mollusk": {
  1271. name: "Mollusk",
  1272. parents: ["animal"]
  1273. },
  1274. "chimera": {
  1275. name: "Chimera",
  1276. parents: ["monster"]
  1277. },
  1278. "gestalt": {
  1279. name: "Gestalt",
  1280. parents: ["construct"]
  1281. },
  1282. "mimic": {
  1283. name: "Mimic",
  1284. parents: ["monster"]
  1285. },
  1286. "calico-rat": {
  1287. name: "Calico Rat",
  1288. parents: ["rat"]
  1289. },
  1290. "panda": {
  1291. name: "Panda",
  1292. parents: ["mammal"]
  1293. },
  1294. "oni": {
  1295. name: "Oni",
  1296. parents: ["monster"]
  1297. },
  1298. "pegasus": {
  1299. name: "Pegasus",
  1300. parents: ["horse"]
  1301. },
  1302. "vulpera": {
  1303. name: "Vulpera",
  1304. parents: ["fennec-fox"]
  1305. },
  1306. "ceratosaurus": {
  1307. name: "Ceratosaurus",
  1308. parents: ["dinosaur"]
  1309. },
  1310. "nykur": {
  1311. name: "Nykur",
  1312. parents: ["horse", "monster"]
  1313. },
  1314. "giraffe": {
  1315. name: "Giraffe",
  1316. parents: ["mammal"]
  1317. },
  1318. "tauren": {
  1319. name: "Tauren",
  1320. parents: ["cow"]
  1321. },
  1322. "draconi": {
  1323. name: "Draconi",
  1324. parents: ["alien", "cat", "cyborg"]
  1325. },
  1326. "dire-wolf": {
  1327. name: "Dire Wolf",
  1328. parents: ["wolf"]
  1329. },
  1330. "ferromorph": {
  1331. name: "Ferromorph",
  1332. parents: ["construct"]
  1333. },
  1334. "meowth": {
  1335. name: "Meowth",
  1336. parents: ["cat", "pokemon"]
  1337. },
  1338. "pavodragon": {
  1339. name: "Pavodragon",
  1340. parents: ["dragon"]
  1341. },
  1342. "aaltranae": {
  1343. name: "Aaltranae",
  1344. parents: ["dragon"]
  1345. },
  1346. "cyborg": {
  1347. name: "Cyborg",
  1348. parents: ["machine"]
  1349. },
  1350. "draptor": {
  1351. name: "Draptor",
  1352. parents: ["dragon"]
  1353. },
  1354. "candy": {
  1355. name: "Candy",
  1356. parents: []
  1357. },
  1358. "drenath": {
  1359. name: "Drenath",
  1360. parents: ["dragon", "snake", "rabbit"]
  1361. },
  1362. "coyju": {
  1363. name: "Coyju",
  1364. parents: ["coyote", "kaiju"]
  1365. },
  1366. "kaiju": {
  1367. name: "Kaiju",
  1368. parents: ["monster"]
  1369. },
  1370. "nickit": {
  1371. name: "Nickit",
  1372. parents: ["pokemon", "cat"]
  1373. },
  1374. "lopunny": {
  1375. name: "Lopunny",
  1376. parents: ["pokemon", "rabbit"]
  1377. },
  1378. "korean-jindo-dog": {
  1379. name: "Korean Jindo Dog",
  1380. parents: ["dog"]
  1381. },
  1382. "naga": {
  1383. name: "Naga",
  1384. parents: ["snake", "monster"]
  1385. },
  1386. "undead": {
  1387. name: "Undead",
  1388. parents: ["monster"]
  1389. },
  1390. "whale": {
  1391. name: "Whale",
  1392. parents: ["fish"]
  1393. },
  1394. "gelato-bee": {
  1395. name: "Gelato Bee",
  1396. parents: ["bee"]
  1397. },
  1398. "bee": {
  1399. name: "Bee",
  1400. parents: ["insect"]
  1401. },
  1402. "gardevoir": {
  1403. name: "Gardevoir",
  1404. parents: ["pokemon"]
  1405. },
  1406. "ant": {
  1407. name: "Ant",
  1408. parents: ["insect"]
  1409. },
  1410. "frog": {
  1411. name: "Frog",
  1412. parents: ["amphibian"]
  1413. },
  1414. "amphibian": {
  1415. name: "Amphibian",
  1416. parents: ["animal"]
  1417. },
  1418. "pangolin": {
  1419. name: "Pangolin",
  1420. parents: ["mammal"]
  1421. },
  1422. "uragi'viidorn": {
  1423. name: "Uragi'viidorn",
  1424. parents: ["avian", "bear"]
  1425. },
  1426. "gryphdelphais": {
  1427. name: "Gryphdelphais",
  1428. parents: ["dolphin", "gryphon"]
  1429. },
  1430. "plush": {
  1431. name: "Plush",
  1432. parents: ["construct"]
  1433. },
  1434. "draiger": {
  1435. name: "Draiger",
  1436. parents: ["dragon","tiger"]
  1437. },
  1438. "foxsky": {
  1439. name: "Foxsky",
  1440. parents: ["fox", "husky"]
  1441. },
  1442. "umbreon": {
  1443. name: "Umbreon",
  1444. parents: ["eeveelution"]
  1445. },
  1446. "slime-dragon": {
  1447. name: "Slime Dragon",
  1448. parents: ["dragon", "goo"]
  1449. },
  1450. "enderman": {
  1451. name: "Enderman",
  1452. parents: ["monster"]
  1453. },
  1454. "gremlin": {
  1455. name: "Gremlin",
  1456. parents: ["monster"]
  1457. },
  1458. "dragonsune": {
  1459. name: "Dragonsune",
  1460. parents: ["dragon", "kitsune"]
  1461. },
  1462. "ghost": {
  1463. name: "Ghost",
  1464. parents: ["supernatural"]
  1465. },
  1466. "false-vampire-bat": {
  1467. name: "False Vampire Bat",
  1468. parents: ["bat"]
  1469. },
  1470. "succubus": {
  1471. name: "Succubus",
  1472. parents: ["demon"]
  1473. },
  1474. "mia": {
  1475. name: "Mia",
  1476. parents: ["canine"]
  1477. },
  1478. "rainbow": {
  1479. name: "Rainbow",
  1480. parents: ["monster"]
  1481. },
  1482. "solgaleo": {
  1483. name: "Solgaleo",
  1484. parents: ["pokemon"]
  1485. },
  1486. "lucent-nargacuga": {
  1487. name: "Lucent Nargacuga",
  1488. parents: ["monster-hunter"]
  1489. },
  1490. "monster-hunter": {
  1491. name: "Monster Hunter",
  1492. parents: ["monster"]
  1493. },
  1494. "leviathan": {
  1495. "name": "Leviathan",
  1496. "url": "sea-monster"
  1497. },
  1498. "bull": {
  1499. name: "Bull",
  1500. parents: ["mammal"]
  1501. },
  1502. "tanuki": {
  1503. name: "Tanuki",
  1504. parents: ["monster"]
  1505. },
  1506. "chakat": {
  1507. name: "Chakat",
  1508. parents: ["cat"]
  1509. },
  1510. "hydra": {
  1511. name: "Hydra",
  1512. parents: ["monster"]
  1513. },
  1514. "zigzagoon": {
  1515. name: "Zigzagoon",
  1516. parents: ["raccoon", "pokemon"]
  1517. },
  1518. "vulture": {
  1519. name: "Vulture",
  1520. parents: ["avian"]
  1521. },
  1522. "eastern-dragon": {
  1523. name: "Eastern Dragon",
  1524. parents: ["dragon"]
  1525. },
  1526. "gryffon": {
  1527. name: "Gryffon",
  1528. parents: ["phoenix", "red-panda"]
  1529. },
  1530. "amtsvane": {
  1531. name: "Amtsvane",
  1532. parents: ["reptile"]
  1533. },
  1534. "kigavi": {
  1535. name: "Kigavi",
  1536. parents: ["avian"]
  1537. },
  1538. "turian": {
  1539. name: "Turian",
  1540. parents: ["avian"]
  1541. },
  1542. "zeraora": {
  1543. name: "Zeraora",
  1544. parents: ["pokemon", "cat"]
  1545. },
  1546. "sandshrew": {
  1547. name: "Sandshrew",
  1548. parents: ["pokemon", "pangolin"]
  1549. },
  1550. "valais-blacknose-sheep": {
  1551. name: "Valais Blacknose Sheep",
  1552. parents: ["sheep"]
  1553. },
  1554. "novaleit": {
  1555. name: "Novaleit",
  1556. parents: ["mammal"]
  1557. },
  1558. "dunnoh": {
  1559. name: "Dunnoh",
  1560. parents: ["mammal"]
  1561. },
  1562. "lunaral-dragon": {
  1563. name: "Lunaral Dragon",
  1564. parents: ["dragon"]
  1565. },
  1566. "arctic-wolf": {
  1567. name: "Arctic Wolf",
  1568. parents: ["wolf"]
  1569. },
  1570. "donkey": {
  1571. name: "Donkey",
  1572. parents: ["horse"]
  1573. },
  1574. "chinchilla": {
  1575. name: "Chinchilla",
  1576. parents: ["rodent"]
  1577. },
  1578. "felkin": {
  1579. name: "Felkin",
  1580. parents: ["dragon"]
  1581. },
  1582. "tykeriel": {
  1583. name: "Tykeriel",
  1584. parents: ["avian"]
  1585. },
  1586. "folf": {
  1587. name: "Folf",
  1588. parents: ["fox", "wolf"]
  1589. },
  1590. "pooltoy": {
  1591. name: "Pooltoy",
  1592. parents: ["construct"]
  1593. },
  1594. "demi": {
  1595. name: "Demi",
  1596. parents: ["human"]
  1597. },
  1598. "stegosaurus": {
  1599. name: "Stegosaurus",
  1600. parents: ["dinosaur"]
  1601. },
  1602. "computer-virus": {
  1603. name: "Computer Virus",
  1604. parents: ["program"]
  1605. },
  1606. "program": {
  1607. name: "Program",
  1608. parents: ["construct"]
  1609. },
  1610. "space-springhare": {
  1611. name: "Space Springhare",
  1612. parents: ["hare"]
  1613. },
  1614. "river-drake": {
  1615. name: "River Drake",
  1616. parents: ["dragon"]
  1617. },
  1618. "djinn": {
  1619. "name": "Djinn",
  1620. "url": "supernatural"
  1621. },
  1622. "supernatural": {
  1623. name: "Supernatural",
  1624. parents: ["monster"]
  1625. },
  1626. "grasshopper-mouse": {
  1627. name: "Grasshopper Mouse",
  1628. parents: ["mouse"]
  1629. },
  1630. "somali-cat": {
  1631. name: "Somali Cat",
  1632. parents: ["cat"]
  1633. },
  1634. "minccino": {
  1635. name: "Minccino",
  1636. parents: ["pokemon", "chinchilla"]
  1637. },
  1638. "pine-marten": {
  1639. name: "Pine Marten",
  1640. parents: ["marten"]
  1641. },
  1642. "marten": {
  1643. name: "Marten",
  1644. parents: ["mustelid"]
  1645. },
  1646. "mustelid": {
  1647. name: "Mustelid",
  1648. parents: ["mammal"]
  1649. },
  1650. "caribou": {
  1651. name: "Caribou",
  1652. parents: ["deer"]
  1653. },
  1654. "gnoll": {
  1655. name: "Gnoll",
  1656. parents: ["hyena", "monster"]
  1657. },
  1658. "peacekeeper": {
  1659. name: "Peacekeeper",
  1660. parents: ["human"]
  1661. },
  1662. "river-otter": {
  1663. name: "River Otter",
  1664. parents: ["otter"]
  1665. },
  1666. "dhole": {
  1667. name: "Dhole",
  1668. parents: ["canine"]
  1669. },
  1670. "springbok": {
  1671. name: "Springbok",
  1672. parents: ["antelope"]
  1673. },
  1674. "marsupial": {
  1675. name: "Marsupial",
  1676. parents: ["mammal"]
  1677. },
  1678. "townsend-big-eared-bat": {
  1679. name: "Townsend Big-eared Bat",
  1680. parents: ["bat"]
  1681. },
  1682. "squirrel": {
  1683. name: "Squirrel",
  1684. parents: ["rodent"]
  1685. },
  1686. "magpie": {
  1687. name: "Magpie",
  1688. parents: ["corvid"]
  1689. },
  1690. "civet": {
  1691. name: "Civet",
  1692. parents: ["feliform"]
  1693. },
  1694. "feliform": {
  1695. name: "Feliform",
  1696. parents: ["mammal"]
  1697. },
  1698. "tiefling": {
  1699. name: "Tiefling",
  1700. parents: ["devil"]
  1701. },
  1702. "devil": {
  1703. name: "Devil",
  1704. parents: ["supernatural"]
  1705. },
  1706. "sika-deer": {
  1707. name: "Sika Deer",
  1708. parents: ["deer"]
  1709. },
  1710. "vaporeon": {
  1711. name: "Vaporeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "leafeon": {
  1715. name: "Leafeon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "jolteon": {
  1719. name: "Jolteon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "spireborn": {
  1723. name: "Spireborn",
  1724. parents: ["zorgoia"]
  1725. },
  1726. "vampire": {
  1727. name: "Vampire",
  1728. parents: ["monster"]
  1729. },
  1730. "extraplanar": {
  1731. name: "Extraplanar",
  1732. parents: []
  1733. },
  1734. "goo": {
  1735. name: "Goo",
  1736. parents: []
  1737. },
  1738. "skink": {
  1739. name: "Skink",
  1740. parents: ["lizard"]
  1741. },
  1742. "bat-eared-fox": {
  1743. name: "Bat-eared Fox",
  1744. parents: ["fox"]
  1745. },
  1746. "belted-kingfisher": {
  1747. name: "Belted Kingfisher",
  1748. parents: ["avian"]
  1749. },
  1750. "omnifalcon": {
  1751. name: "Omnifalcon",
  1752. parents: ["gryphon", "falcon", "harpy-eagle"]
  1753. },
  1754. "falcon": {
  1755. name: "Falcon",
  1756. parents: ["avian"]
  1757. },
  1758. "avali": {
  1759. name: "Avali",
  1760. parents: ["avian", "alien"]
  1761. },
  1762. "arctic-fox": {
  1763. name: "Arctic Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "snow-tiger": {
  1767. name: "Snow Tiger",
  1768. parents: ["tiger"]
  1769. },
  1770. "marble-fox": {
  1771. name: "Marble Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "king-wickerbeast": {
  1775. name: "King Wickerbeast",
  1776. parents: ["wickerbeast"]
  1777. },
  1778. "wickerbeast": {
  1779. name: "Wickerbeast",
  1780. parents: ["mammal"]
  1781. },
  1782. "european-polecat": {
  1783. name: "European Polecat",
  1784. parents: ["mustelid"]
  1785. },
  1786. "teshari": {
  1787. name: "Teshari",
  1788. parents: ["avian", "raptor"]
  1789. },
  1790. "alicorn": {
  1791. name: "Alicorn",
  1792. parents: ["horse"]
  1793. },
  1794. "atlas-moth": {
  1795. name: "Atlas Moth",
  1796. parents: ["moth"]
  1797. },
  1798. "owlbear": {
  1799. name: "Owlbear",
  1800. parents: ["owl", "bear", "monster"]
  1801. },
  1802. "owl": {
  1803. name: "Owl",
  1804. parents: ["avian"]
  1805. },
  1806. "silvertongue": {
  1807. name: "Silvertongue",
  1808. parents: ["reptile"]
  1809. },
  1810. "ahuizotl": {
  1811. name: "Ahuizotl",
  1812. parents: ["monster"]
  1813. },
  1814. "ender-dragon": {
  1815. name: "Ender Dragon",
  1816. parents: ["dragon"]
  1817. },
  1818. "bruhathkayosaurus": {
  1819. name: "Bruhathkayosaurus",
  1820. parents: ["sauropod"]
  1821. },
  1822. "sauropod": {
  1823. name: "Sauropod",
  1824. parents: ["dinosaur"]
  1825. },
  1826. "black-sable-antelope": {
  1827. name: "Black Sable Antelope",
  1828. parents: ["antelope"]
  1829. },
  1830. "slime": {
  1831. name: "Slime",
  1832. parents: ["goo"]
  1833. },
  1834. "utahraptor": {
  1835. name: "Utahraptor",
  1836. parents: ["raptor"]
  1837. },
  1838. "indian-giant-squirrel": {
  1839. name: "Indian Giant Squirrel",
  1840. parents: ["squirrel"]
  1841. },
  1842. "golden-retriever": {
  1843. name: "Golden Retriever",
  1844. parents: ["dog"]
  1845. },
  1846. "triceratops": {
  1847. name: "Triceratops",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "drake": {
  1851. name: "Drake",
  1852. parents: ["dragon"]
  1853. },
  1854. "okapi": {
  1855. name: "Okapi",
  1856. parents: ["giraffe"]
  1857. },
  1858. "arctic-hare": {
  1859. name: "Arctic Hare",
  1860. parents: ["hare"]
  1861. },
  1862. "hare": {
  1863. name: "Hare",
  1864. parents: ["leporidae"]
  1865. },
  1866. "leporidae": {
  1867. name: "Leporidae",
  1868. parents: ["mammal"]
  1869. },
  1870. "leopard-gecko": {
  1871. name: "Leopard Gecko",
  1872. parents: ["gecko"]
  1873. },
  1874. "dreamspawn": {
  1875. name: "Dreamspawn",
  1876. parents: ["illusion"]
  1877. },
  1878. "illusion": {
  1879. name: "Illusion",
  1880. parents: []
  1881. },
  1882. "purrloin": {
  1883. name: "Purrloin",
  1884. parents: ["cat", "pokemon"]
  1885. },
  1886. "noivern": {
  1887. name: "Noivern",
  1888. parents: ["bat", "dragon", "pokemon"]
  1889. },
  1890. "hedgehog": {
  1891. name: "Hedgehog",
  1892. parents: ["mammal"]
  1893. },
  1894. "liger": {
  1895. name: "Liger",
  1896. parents: ["lion", "tiger", "hybrid"]
  1897. },
  1898. "hybrid": {
  1899. name: "Hybrid",
  1900. parents: []
  1901. },
  1902. "drider": {
  1903. name: "Drider",
  1904. parents: ["spider"]
  1905. },
  1906. "sabresune": {
  1907. name: "Sabresune",
  1908. parents: ["kitsune", "sabertooth-tiger"]
  1909. },
  1910. "ditto": {
  1911. name: "Ditto",
  1912. parents: ["pokemon", "goo"]
  1913. },
  1914. "amogus": {
  1915. name: "Amogus",
  1916. parents: ["deity"]
  1917. },
  1918. "ferret": {
  1919. name: "Ferret",
  1920. parents: ["mustelid"]
  1921. },
  1922. "guinea-pig": {
  1923. name: "Guinea Pig",
  1924. parents: ["rodent"]
  1925. },
  1926. "viper": {
  1927. name: "Viper",
  1928. parents: ["snake"]
  1929. },
  1930. "cinderace": {
  1931. name: "Cinderace",
  1932. parents: ["pokemon", "rabbit"]
  1933. },
  1934. "caudin": {
  1935. name: "Caudin",
  1936. parents: ["dragon"]
  1937. },
  1938. "red-winged-blackbird": {
  1939. name: "Red-Winged Blackbird",
  1940. parents: ["avian"]
  1941. },
  1942. "hooded-wheater": {
  1943. name: "Hooded Wheater",
  1944. parents: ["passerine"]
  1945. },
  1946. "passerine": {
  1947. name: "Passerine",
  1948. parents: ["avian"]
  1949. },
  1950. "gieeg": {
  1951. name: "Gieeg",
  1952. parents: ["alien"]
  1953. },
  1954. "ringtail": {
  1955. name: "Ringtail",
  1956. parents: ["raccoon"]
  1957. },
  1958. "hisuian-zoroark": {
  1959. name: "Hisuian Zoroark",
  1960. parents: ["zoroark", "hisuian"]
  1961. },
  1962. "hisuian": {
  1963. name: "Hisuian",
  1964. parents: ["regional-pokemon"]
  1965. },
  1966. "regional-pokemon": {
  1967. name: "Regional Pokemon",
  1968. parents: ["pokemon"]
  1969. },
  1970. "cybeast": {
  1971. name: "Cybeast",
  1972. parents: ["computer-virus"]
  1973. },
  1974. }
  1975. //species
  1976. function getSpeciesInfo(speciesList) {
  1977. let result = new Set();
  1978. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1979. result.add(entry)
  1980. });
  1981. return Array.from(result);
  1982. };
  1983. function getSpeciesInfoHelper(species) {
  1984. if (!speciesData[species]) {
  1985. console.warn(species + " doesn't exist");
  1986. return [];
  1987. }
  1988. if (speciesData[species].parents) {
  1989. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1990. } else {
  1991. return [species];
  1992. }
  1993. }
  1994. characterMakers.push(() => makeCharacter(
  1995. {
  1996. name: "Fen",
  1997. species: ["crux"],
  1998. description: {
  1999. title: "Bio",
  2000. text: "Very furry. Sheds on everything."
  2001. },
  2002. tags: [
  2003. "anthro",
  2004. "goo"
  2005. ]
  2006. },
  2007. {
  2008. front: {
  2009. height: math.unit(12, "feet"),
  2010. weight: math.unit(2400, "lb"),
  2011. name: "Front",
  2012. image: {
  2013. source: "./media/characters/fen/front.svg",
  2014. extra: 1804/1562,
  2015. bottom: 205/2009
  2016. }
  2017. },
  2018. diving: {
  2019. height: math.unit(4.9, "meters"),
  2020. weight: math.unit(2400, "lb"),
  2021. name: "Diving",
  2022. image: {
  2023. source: "./media/characters/fen/diving.svg"
  2024. }
  2025. },
  2026. goo: {
  2027. height: math.unit(12, "feet"),
  2028. weight: math.unit(3600, "lb"),
  2029. volume: math.unit(1000, "liters"),
  2030. capacity: math.unit(6, "people"),
  2031. name: "Goo",
  2032. image: {
  2033. source: "./media/characters/fen/goo.svg",
  2034. extra: 1307/1071,
  2035. bottom: 134/1441
  2036. }
  2037. },
  2038. maw: {
  2039. height: math.unit(5.03, "feet"),
  2040. name: "Maw",
  2041. image: {
  2042. source: "./media/characters/fen/maw.svg"
  2043. }
  2044. },
  2045. gooCeiling: {
  2046. height: math.unit(6.6, "feet"),
  2047. weight: math.unit(3000, "lb"),
  2048. volume: math.unit(1000, "liters"),
  2049. capacity: math.unit(6, "people"),
  2050. name: "Goo (Ceiling)",
  2051. image: {
  2052. source: "./media/characters/fen/goo-ceiling.svg"
  2053. }
  2054. },
  2055. back: {
  2056. height: math.unit(12, "feet"),
  2057. weight: math.unit(2400, "lb"),
  2058. name: "Back",
  2059. image: {
  2060. source: "./media/characters/fen/back.svg",
  2061. },
  2062. info: {
  2063. description: {
  2064. mode: "append",
  2065. text: "\n\nHe is not currently looking at you."
  2066. }
  2067. }
  2068. },
  2069. full: {
  2070. height: math.unit(1.85, "meter"),
  2071. weight: math.unit(3200, "lb"),
  2072. name: "Full",
  2073. image: {
  2074. source: "./media/characters/fen/full.svg",
  2075. extra: 1133/859,
  2076. bottom: 145/1278
  2077. },
  2078. info: {
  2079. description: {
  2080. mode: "append",
  2081. text: "\n\nMunch."
  2082. }
  2083. }
  2084. },
  2085. gooLounging: {
  2086. height: math.unit(4.53, "feet"),
  2087. weight: math.unit(3000, "lb"),
  2088. capacity: math.unit(6, "people"),
  2089. name: "Goo (Lounging)",
  2090. image: {
  2091. source: "./media/characters/fen/goo-lounging.svg",
  2092. bottom: 116 / 613
  2093. }
  2094. },
  2095. lounging: {
  2096. height: math.unit(10.52, "feet"),
  2097. weight: math.unit(2400, "lb"),
  2098. name: "Lounging",
  2099. image: {
  2100. source: "./media/characters/fen/lounging.svg"
  2101. }
  2102. },
  2103. },
  2104. [
  2105. {
  2106. name: "Small",
  2107. height: math.unit(2.2428, "meter")
  2108. },
  2109. {
  2110. name: "Normal",
  2111. height: math.unit(12, "feet"),
  2112. default: true,
  2113. },
  2114. {
  2115. name: "Big",
  2116. height: math.unit(20, "feet")
  2117. },
  2118. {
  2119. name: "Minimacro",
  2120. height: math.unit(40, "feet"),
  2121. info: {
  2122. description: {
  2123. mode: "append",
  2124. text: "\n\nTOO DAMN BIG"
  2125. }
  2126. }
  2127. },
  2128. {
  2129. name: "Macro",
  2130. height: math.unit(100, "feet"),
  2131. info: {
  2132. description: {
  2133. mode: "append",
  2134. text: "\n\nTOO DAMN BIG"
  2135. }
  2136. }
  2137. },
  2138. {
  2139. name: "Megamacro",
  2140. height: math.unit(2, "miles")
  2141. },
  2142. {
  2143. name: "Gigamacro",
  2144. height: math.unit(10, "earths")
  2145. },
  2146. ]
  2147. ))
  2148. characterMakers.push(() => makeCharacter(
  2149. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2150. {
  2151. front: {
  2152. height: math.unit(183, "cm"),
  2153. weight: math.unit(80, "kg"),
  2154. name: "Front",
  2155. image: {
  2156. source: "./media/characters/sofia-fluttertail/front.svg",
  2157. bottom: 0.01,
  2158. extra: 2154 / 2081
  2159. }
  2160. },
  2161. frontAlt: {
  2162. height: math.unit(183, "cm"),
  2163. weight: math.unit(80, "kg"),
  2164. name: "Front (alt)",
  2165. image: {
  2166. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2167. }
  2168. },
  2169. back: {
  2170. height: math.unit(183, "cm"),
  2171. weight: math.unit(80, "kg"),
  2172. name: "Back",
  2173. image: {
  2174. source: "./media/characters/sofia-fluttertail/back.svg"
  2175. }
  2176. },
  2177. kneeling: {
  2178. height: math.unit(125, "cm"),
  2179. weight: math.unit(80, "kg"),
  2180. name: "Kneeling",
  2181. image: {
  2182. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2183. extra: 1033 / 977,
  2184. bottom: 23.7 / 1057
  2185. }
  2186. },
  2187. maw: {
  2188. height: math.unit(183 / 5, "cm"),
  2189. name: "Maw",
  2190. image: {
  2191. source: "./media/characters/sofia-fluttertail/maw.svg"
  2192. }
  2193. },
  2194. mawcloseup: {
  2195. height: math.unit(183 / 5 * 0.41, "cm"),
  2196. name: "Maw (Closeup)",
  2197. image: {
  2198. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2199. }
  2200. },
  2201. paws: {
  2202. height: math.unit(1.17, "feet"),
  2203. name: "Paws",
  2204. image: {
  2205. source: "./media/characters/sofia-fluttertail/paws.svg",
  2206. extra: 851 / 851,
  2207. bottom: 17 / 868
  2208. }
  2209. },
  2210. },
  2211. [
  2212. {
  2213. name: "Normal",
  2214. height: math.unit(1.83, "meter")
  2215. },
  2216. {
  2217. name: "Size Thief",
  2218. height: math.unit(18, "feet")
  2219. },
  2220. {
  2221. name: "50 Foot Collie",
  2222. height: math.unit(50, "feet")
  2223. },
  2224. {
  2225. name: "Macro",
  2226. height: math.unit(96, "feet"),
  2227. default: true
  2228. },
  2229. {
  2230. name: "Megamerger",
  2231. height: math.unit(650, "feet")
  2232. },
  2233. ]
  2234. ))
  2235. characterMakers.push(() => makeCharacter(
  2236. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2237. {
  2238. front: {
  2239. height: math.unit(7, "feet"),
  2240. weight: math.unit(100, "kg"),
  2241. name: "Front",
  2242. image: {
  2243. source: "./media/characters/march/front.svg",
  2244. extra: 1992/1851,
  2245. bottom: 39/2031
  2246. }
  2247. },
  2248. foot: {
  2249. height: math.unit(0.9, "feet"),
  2250. name: "Foot",
  2251. image: {
  2252. source: "./media/characters/march/foot.svg"
  2253. }
  2254. },
  2255. },
  2256. [
  2257. {
  2258. name: "Normal",
  2259. height: math.unit(7.9, "feet")
  2260. },
  2261. {
  2262. name: "Macro",
  2263. height: math.unit(220, "meters")
  2264. },
  2265. {
  2266. name: "Megamacro",
  2267. height: math.unit(2.98, "km"),
  2268. default: true
  2269. },
  2270. {
  2271. name: "Gigamacro",
  2272. height: math.unit(15963, "km")
  2273. },
  2274. {
  2275. name: "Teramacro",
  2276. height: math.unit(2980000000, "km")
  2277. },
  2278. {
  2279. name: "Examacro",
  2280. height: math.unit(250, "parsecs")
  2281. },
  2282. ]
  2283. ))
  2284. characterMakers.push(() => makeCharacter(
  2285. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2286. {
  2287. front: {
  2288. height: math.unit(6, "feet"),
  2289. weight: math.unit(60, "kg"),
  2290. name: "Front",
  2291. image: {
  2292. source: "./media/characters/noir/front.svg",
  2293. extra: 1,
  2294. bottom: 0.032
  2295. }
  2296. },
  2297. },
  2298. [
  2299. {
  2300. name: "Normal",
  2301. height: math.unit(6.6, "feet")
  2302. },
  2303. {
  2304. name: "Macro",
  2305. height: math.unit(500, "feet")
  2306. },
  2307. {
  2308. name: "Megamacro",
  2309. height: math.unit(2.5, "km"),
  2310. default: true
  2311. },
  2312. {
  2313. name: "Gigamacro",
  2314. height: math.unit(22500, "km")
  2315. },
  2316. {
  2317. name: "Teramacro",
  2318. height: math.unit(2500000000, "km")
  2319. },
  2320. {
  2321. name: "Examacro",
  2322. height: math.unit(200, "parsecs")
  2323. },
  2324. ]
  2325. ))
  2326. characterMakers.push(() => makeCharacter(
  2327. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2328. {
  2329. front: {
  2330. height: math.unit(7, "feet"),
  2331. weight: math.unit(100, "kg"),
  2332. name: "Front",
  2333. image: {
  2334. source: "./media/characters/okuri/front.svg",
  2335. extra: 739/665,
  2336. bottom: 39/778
  2337. }
  2338. },
  2339. back: {
  2340. height: math.unit(7, "feet"),
  2341. weight: math.unit(100, "kg"),
  2342. name: "Back",
  2343. image: {
  2344. source: "./media/characters/okuri/back.svg",
  2345. extra: 734/653,
  2346. bottom: 13/747
  2347. }
  2348. },
  2349. sitting: {
  2350. height: math.unit(2.95, "feet"),
  2351. weight: math.unit(100, "kg"),
  2352. name: "Sitting",
  2353. image: {
  2354. source: "./media/characters/okuri/sitting.svg",
  2355. extra: 370/318,
  2356. bottom: 99/469
  2357. }
  2358. },
  2359. },
  2360. [
  2361. {
  2362. name: "Smallest",
  2363. height: math.unit(5 + 2/12, "feet")
  2364. },
  2365. {
  2366. name: "Smaller",
  2367. height: math.unit(300, "feet")
  2368. },
  2369. {
  2370. name: "Small",
  2371. height: math.unit(1000, "feet")
  2372. },
  2373. {
  2374. name: "Macro",
  2375. height: math.unit(1, "mile")
  2376. },
  2377. {
  2378. name: "Mega Macro (Small)",
  2379. height: math.unit(20, "km")
  2380. },
  2381. {
  2382. name: "Mega Macro (Large)",
  2383. height: math.unit(600, "km")
  2384. },
  2385. {
  2386. name: "Giga Macro",
  2387. height: math.unit(10000, "km")
  2388. },
  2389. {
  2390. name: "Normal",
  2391. height: math.unit(577560, "km"),
  2392. default: true
  2393. },
  2394. {
  2395. name: "Large",
  2396. height: math.unit(4, "galaxies")
  2397. },
  2398. {
  2399. name: "Largest",
  2400. height: math.unit(15, "multiverses")
  2401. },
  2402. ]
  2403. ))
  2404. characterMakers.push(() => makeCharacter(
  2405. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2406. {
  2407. front: {
  2408. height: math.unit(7, "feet"),
  2409. weight: math.unit(100, "kg"),
  2410. name: "Front",
  2411. image: {
  2412. source: "./media/characters/manny/front.svg",
  2413. extra: 1,
  2414. bottom: 0.06
  2415. }
  2416. },
  2417. back: {
  2418. height: math.unit(7, "feet"),
  2419. weight: math.unit(100, "kg"),
  2420. name: "Back",
  2421. image: {
  2422. source: "./media/characters/manny/back.svg",
  2423. extra: 1,
  2424. bottom: 0.014
  2425. }
  2426. },
  2427. },
  2428. [
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(7, "feet"),
  2432. },
  2433. {
  2434. name: "Macro",
  2435. height: math.unit(78, "feet"),
  2436. default: true
  2437. },
  2438. {
  2439. name: "Macro+",
  2440. height: math.unit(300, "meters")
  2441. },
  2442. {
  2443. name: "Macro++",
  2444. height: math.unit(2400, "meters")
  2445. },
  2446. {
  2447. name: "Megamacro",
  2448. height: math.unit(5167, "meters")
  2449. },
  2450. {
  2451. name: "Gigamacro",
  2452. height: math.unit(41769, "miles")
  2453. },
  2454. ]
  2455. ))
  2456. characterMakers.push(() => makeCharacter(
  2457. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2458. {
  2459. front: {
  2460. height: math.unit(7, "feet"),
  2461. weight: math.unit(100, "kg"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/adake/front-1.svg"
  2465. }
  2466. },
  2467. frontAlt: {
  2468. height: math.unit(7, "feet"),
  2469. weight: math.unit(100, "kg"),
  2470. name: "Front (Alt)",
  2471. image: {
  2472. source: "./media/characters/adake/front-2.svg",
  2473. extra: 1,
  2474. bottom: 0.01
  2475. }
  2476. },
  2477. back: {
  2478. height: math.unit(7, "feet"),
  2479. weight: math.unit(100, "kg"),
  2480. name: "Back",
  2481. image: {
  2482. source: "./media/characters/adake/back.svg",
  2483. }
  2484. },
  2485. kneel: {
  2486. height: math.unit(5.385, "feet"),
  2487. weight: math.unit(100, "kg"),
  2488. name: "Kneeling",
  2489. image: {
  2490. source: "./media/characters/adake/kneel.svg",
  2491. bottom: 0.052
  2492. }
  2493. },
  2494. },
  2495. [
  2496. {
  2497. name: "Normal",
  2498. height: math.unit(7, "feet"),
  2499. },
  2500. {
  2501. name: "Macro",
  2502. height: math.unit(78, "feet"),
  2503. default: true
  2504. },
  2505. {
  2506. name: "Macro+",
  2507. height: math.unit(300, "meters")
  2508. },
  2509. {
  2510. name: "Macro++",
  2511. height: math.unit(2400, "meters")
  2512. },
  2513. {
  2514. name: "Megamacro",
  2515. height: math.unit(5167, "meters")
  2516. },
  2517. {
  2518. name: "Gigamacro",
  2519. height: math.unit(41769, "miles")
  2520. },
  2521. ]
  2522. ))
  2523. characterMakers.push(() => makeCharacter(
  2524. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2525. {
  2526. front: {
  2527. height: math.unit(1.65, "meters"),
  2528. weight: math.unit(50, "kg"),
  2529. name: "Front",
  2530. image: {
  2531. source: "./media/characters/elijah/front.svg",
  2532. extra: 858 / 830,
  2533. bottom: 95.5 / 953.8559
  2534. }
  2535. },
  2536. back: {
  2537. height: math.unit(1.65, "meters"),
  2538. weight: math.unit(50, "kg"),
  2539. name: "Back",
  2540. image: {
  2541. source: "./media/characters/elijah/back.svg",
  2542. extra: 895 / 850,
  2543. bottom: 5.3 / 897.956
  2544. }
  2545. },
  2546. frontNsfw: {
  2547. height: math.unit(1.65, "meters"),
  2548. weight: math.unit(50, "kg"),
  2549. name: "Front (NSFW)",
  2550. image: {
  2551. source: "./media/characters/elijah/front-nsfw.svg",
  2552. extra: 858 / 830,
  2553. bottom: 95.5 / 953.8559
  2554. }
  2555. },
  2556. backNsfw: {
  2557. height: math.unit(1.65, "meters"),
  2558. weight: math.unit(50, "kg"),
  2559. name: "Back (NSFW)",
  2560. image: {
  2561. source: "./media/characters/elijah/back-nsfw.svg",
  2562. extra: 895 / 850,
  2563. bottom: 5.3 / 897.956
  2564. }
  2565. },
  2566. dick: {
  2567. height: math.unit(1, "feet"),
  2568. name: "Dick",
  2569. image: {
  2570. source: "./media/characters/elijah/dick.svg"
  2571. }
  2572. },
  2573. beakOpen: {
  2574. height: math.unit(1.25, "feet"),
  2575. name: "Beak (Open)",
  2576. image: {
  2577. source: "./media/characters/elijah/beak-open.svg"
  2578. }
  2579. },
  2580. beakShut: {
  2581. height: math.unit(1.25, "feet"),
  2582. name: "Beak (Shut)",
  2583. image: {
  2584. source: "./media/characters/elijah/beak-shut.svg"
  2585. }
  2586. },
  2587. footFlexing: {
  2588. height: math.unit(1.61, "feet"),
  2589. name: "Foot (Flexing)",
  2590. image: {
  2591. source: "./media/characters/elijah/foot-flexing.svg"
  2592. }
  2593. },
  2594. footStepping: {
  2595. height: math.unit(1.44, "feet"),
  2596. name: "Foot (Stepping)",
  2597. image: {
  2598. source: "./media/characters/elijah/foot-stepping.svg"
  2599. }
  2600. },
  2601. plantigradeLeg: {
  2602. height: math.unit(2.34, "feet"),
  2603. name: "Plantigrade Leg",
  2604. image: {
  2605. source: "./media/characters/elijah/plantigrade-leg.svg"
  2606. }
  2607. },
  2608. plantigradeFootLeft: {
  2609. height: math.unit(0.9, "feet"),
  2610. name: "Plantigrade Foot (Left)",
  2611. image: {
  2612. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2613. }
  2614. },
  2615. plantigradeFootRight: {
  2616. height: math.unit(0.9, "feet"),
  2617. name: "Plantigrade Foot (Right)",
  2618. image: {
  2619. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2620. }
  2621. },
  2622. },
  2623. [
  2624. {
  2625. name: "Normal",
  2626. height: math.unit(1.65, "meters")
  2627. },
  2628. {
  2629. name: "Macro",
  2630. height: math.unit(55, "meters"),
  2631. default: true
  2632. },
  2633. {
  2634. name: "Macro+",
  2635. height: math.unit(105, "meters")
  2636. },
  2637. ]
  2638. ))
  2639. characterMakers.push(() => makeCharacter(
  2640. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2641. {
  2642. front: {
  2643. height: math.unit(7 + 2/12, "feet"),
  2644. weight: math.unit(320, "kg"),
  2645. name: "Front",
  2646. image: {
  2647. source: "./media/characters/rai/front.svg",
  2648. extra: 1802/1696,
  2649. bottom: 68/1870
  2650. }
  2651. },
  2652. frontDressed: {
  2653. height: math.unit(7 + 2/12, "feet"),
  2654. weight: math.unit(320, "kg"),
  2655. name: "Front (Dressed)",
  2656. image: {
  2657. source: "./media/characters/rai/front-dressed.svg",
  2658. extra: 1802/1696,
  2659. bottom: 68/1870
  2660. }
  2661. },
  2662. side: {
  2663. height: math.unit(7 + 2/12, "feet"),
  2664. weight: math.unit(320, "kg"),
  2665. name: "Side",
  2666. image: {
  2667. source: "./media/characters/rai/side.svg",
  2668. extra: 1789/1710,
  2669. bottom: 115/1904
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(7 + 2/12, "feet"),
  2674. weight: math.unit(320, "kg"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/rai/back.svg",
  2678. extra: 1770/1707,
  2679. bottom: 28/1798
  2680. }
  2681. },
  2682. feral: {
  2683. height: math.unit(9.5, "feet"),
  2684. weight: math.unit(640, "kg"),
  2685. name: "Feral",
  2686. image: {
  2687. source: "./media/characters/rai/feral.svg",
  2688. extra: 945/553,
  2689. bottom: 176/1121
  2690. }
  2691. },
  2692. dragon: {
  2693. height: math.unit(23, "feet"),
  2694. weight: math.unit(50000, "lb"),
  2695. name: "Dragon",
  2696. image: {
  2697. source: "./media/characters/rai/dragon.svg",
  2698. extra: 2498 / 2030,
  2699. bottom: 85.2 / 2584
  2700. }
  2701. },
  2702. maw: {
  2703. height: math.unit(1.69, "feet"),
  2704. name: "Maw",
  2705. image: {
  2706. source: "./media/characters/rai/maw.svg"
  2707. }
  2708. },
  2709. },
  2710. [
  2711. {
  2712. name: "Normal",
  2713. height: math.unit(7 + 2/12, "feet")
  2714. },
  2715. {
  2716. name: "Big",
  2717. height: math.unit(11, "feet")
  2718. },
  2719. {
  2720. name: "Macro",
  2721. height: math.unit(302, "feet"),
  2722. default: true
  2723. },
  2724. ]
  2725. ))
  2726. characterMakers.push(() => makeCharacter(
  2727. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2728. {
  2729. frontDressed: {
  2730. height: math.unit(216, "feet"),
  2731. weight: math.unit(7000000, "lb"),
  2732. name: "Front (Dressed)",
  2733. image: {
  2734. source: "./media/characters/jazzy/front-dressed.svg",
  2735. extra: 2738 / 2651,
  2736. bottom: 41.8 / 2786
  2737. }
  2738. },
  2739. backDressed: {
  2740. height: math.unit(216, "feet"),
  2741. weight: math.unit(7000000, "lb"),
  2742. name: "Back (Dressed)",
  2743. image: {
  2744. source: "./media/characters/jazzy/back-dressed.svg",
  2745. extra: 2775 / 2673,
  2746. bottom: 36.8 / 2817
  2747. }
  2748. },
  2749. front: {
  2750. height: math.unit(216, "feet"),
  2751. weight: math.unit(7000000, "lb"),
  2752. name: "Front",
  2753. image: {
  2754. source: "./media/characters/jazzy/front.svg",
  2755. extra: 2738 / 2651,
  2756. bottom: 41.8 / 2786
  2757. }
  2758. },
  2759. back: {
  2760. height: math.unit(216, "feet"),
  2761. weight: math.unit(7000000, "lb"),
  2762. name: "Back",
  2763. image: {
  2764. source: "./media/characters/jazzy/back.svg",
  2765. extra: 2775 / 2673,
  2766. bottom: 36.8 / 2817
  2767. }
  2768. },
  2769. maw: {
  2770. height: math.unit(20, "feet"),
  2771. name: "Maw",
  2772. image: {
  2773. source: "./media/characters/jazzy/maw.svg"
  2774. }
  2775. },
  2776. paws: {
  2777. height: math.unit(27.5, "feet"),
  2778. name: "Paws",
  2779. image: {
  2780. source: "./media/characters/jazzy/paws.svg"
  2781. }
  2782. },
  2783. eye: {
  2784. height: math.unit(4.4, "feet"),
  2785. name: "Eye",
  2786. image: {
  2787. source: "./media/characters/jazzy/eye.svg"
  2788. }
  2789. },
  2790. droneOffense: {
  2791. height: math.unit(9.5, "inches"),
  2792. name: "Drone (Offense)",
  2793. image: {
  2794. source: "./media/characters/jazzy/drone-offense.svg"
  2795. }
  2796. },
  2797. droneRecon: {
  2798. height: math.unit(9.5, "inches"),
  2799. name: "Drone (Recon)",
  2800. image: {
  2801. source: "./media/characters/jazzy/drone-recon.svg"
  2802. }
  2803. },
  2804. droneDefense: {
  2805. height: math.unit(9.5, "inches"),
  2806. name: "Drone (Defense)",
  2807. image: {
  2808. source: "./media/characters/jazzy/drone-defense.svg"
  2809. }
  2810. },
  2811. },
  2812. [
  2813. {
  2814. name: "Macro",
  2815. height: math.unit(216, "feet"),
  2816. default: true
  2817. },
  2818. ]
  2819. ))
  2820. characterMakers.push(() => makeCharacter(
  2821. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2822. {
  2823. front: {
  2824. height: math.unit(9 + 6/12, "feet"),
  2825. weight: math.unit(700, "lb"),
  2826. name: "Front",
  2827. image: {
  2828. source: "./media/characters/flamm/front.svg",
  2829. extra: 1751/1632,
  2830. bottom: 46/1797
  2831. }
  2832. },
  2833. buff: {
  2834. height: math.unit(9 + 6/12, "feet"),
  2835. weight: math.unit(950, "lb"),
  2836. name: "Buff",
  2837. image: {
  2838. source: "./media/characters/flamm/buff.svg",
  2839. extra: 3018/2874,
  2840. bottom: 221/3239
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Normal",
  2847. height: math.unit(9.5, "feet")
  2848. },
  2849. {
  2850. name: "Macro",
  2851. height: math.unit(200, "feet"),
  2852. default: true
  2853. },
  2854. ]
  2855. ))
  2856. characterMakers.push(() => makeCharacter(
  2857. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2858. {
  2859. front: {
  2860. height: math.unit(5 + 3/12, "feet"),
  2861. weight: math.unit(60, "kg"),
  2862. name: "Front",
  2863. image: {
  2864. source: "./media/characters/zephiro/front.svg",
  2865. extra: 2309 / 2162,
  2866. bottom: 0.069
  2867. }
  2868. },
  2869. side: {
  2870. height: math.unit(5 + 3/12, "feet"),
  2871. weight: math.unit(60, "kg"),
  2872. name: "Side",
  2873. image: {
  2874. source: "./media/characters/zephiro/side.svg",
  2875. extra: 2403 / 2279,
  2876. bottom: 0.015
  2877. }
  2878. },
  2879. back: {
  2880. height: math.unit(5 + 3/12, "feet"),
  2881. weight: math.unit(60, "kg"),
  2882. name: "Back",
  2883. image: {
  2884. source: "./media/characters/zephiro/back.svg",
  2885. extra: 2373 / 2244,
  2886. bottom: 0.013
  2887. }
  2888. },
  2889. hand: {
  2890. height: math.unit(0.68, "feet"),
  2891. name: "Hand",
  2892. image: {
  2893. source: "./media/characters/zephiro/hand.svg"
  2894. }
  2895. },
  2896. paw: {
  2897. height: math.unit(1, "feet"),
  2898. name: "Paw",
  2899. image: {
  2900. source: "./media/characters/zephiro/paw.svg"
  2901. }
  2902. },
  2903. beans: {
  2904. height: math.unit(0.93, "feet"),
  2905. name: "Beans",
  2906. image: {
  2907. source: "./media/characters/zephiro/beans.svg"
  2908. }
  2909. },
  2910. },
  2911. [
  2912. {
  2913. name: "Micro",
  2914. height: math.unit(3, "inches")
  2915. },
  2916. {
  2917. name: "Normal",
  2918. height: math.unit(5 + 3 / 12, "feet"),
  2919. default: true
  2920. },
  2921. {
  2922. name: "Macro",
  2923. height: math.unit(118, "feet")
  2924. },
  2925. ]
  2926. ))
  2927. characterMakers.push(() => makeCharacter(
  2928. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2929. {
  2930. front: {
  2931. height: math.unit(5, "feet"),
  2932. weight: math.unit(90, "kg"),
  2933. name: "Front",
  2934. image: {
  2935. source: "./media/characters/fory/front.svg",
  2936. extra: 2862 / 2674,
  2937. bottom: 180 / 3043.8
  2938. }
  2939. },
  2940. back: {
  2941. height: math.unit(5, "feet"),
  2942. weight: math.unit(90, "kg"),
  2943. name: "Back",
  2944. image: {
  2945. source: "./media/characters/fory/back.svg",
  2946. extra: 2962 / 2791,
  2947. bottom: 106 / 3071.8
  2948. }
  2949. },
  2950. foot: {
  2951. height: math.unit(2.14, "feet"),
  2952. name: "Foot",
  2953. image: {
  2954. source: "./media/characters/fory/foot.svg"
  2955. }
  2956. },
  2957. },
  2958. [
  2959. {
  2960. name: "Normal",
  2961. height: math.unit(5, "feet")
  2962. },
  2963. {
  2964. name: "Macro",
  2965. height: math.unit(50, "feet"),
  2966. default: true
  2967. },
  2968. {
  2969. name: "Megamacro",
  2970. height: math.unit(10, "miles")
  2971. },
  2972. {
  2973. name: "Gigamacro",
  2974. height: math.unit(5, "earths")
  2975. },
  2976. ]
  2977. ))
  2978. characterMakers.push(() => makeCharacter(
  2979. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2980. {
  2981. front: {
  2982. height: math.unit(7, "feet"),
  2983. weight: math.unit(90, "kg"),
  2984. name: "Front",
  2985. image: {
  2986. source: "./media/characters/kurrikage/front.svg",
  2987. extra: 1845/1733,
  2988. bottom: 119/1964
  2989. }
  2990. },
  2991. back: {
  2992. height: math.unit(7, "feet"),
  2993. weight: math.unit(90, "kg"),
  2994. name: "Back",
  2995. image: {
  2996. source: "./media/characters/kurrikage/back.svg",
  2997. extra: 1790/1677,
  2998. bottom: 61/1851
  2999. }
  3000. },
  3001. dressed: {
  3002. height: math.unit(7, "feet"),
  3003. weight: math.unit(90, "kg"),
  3004. name: "Dressed",
  3005. image: {
  3006. source: "./media/characters/kurrikage/dressed.svg",
  3007. extra: 1845/1733,
  3008. bottom: 119/1964
  3009. }
  3010. },
  3011. foot: {
  3012. height: math.unit(1.5, "feet"),
  3013. name: "Foot",
  3014. image: {
  3015. source: "./media/characters/kurrikage/foot.svg"
  3016. }
  3017. },
  3018. staff: {
  3019. height: math.unit(6.7, "feet"),
  3020. name: "Staff",
  3021. image: {
  3022. source: "./media/characters/kurrikage/staff.svg"
  3023. }
  3024. },
  3025. peek: {
  3026. height: math.unit(1.05, "feet"),
  3027. name: "Peeking",
  3028. image: {
  3029. source: "./media/characters/kurrikage/peek.svg",
  3030. bottom: 0.08
  3031. }
  3032. },
  3033. },
  3034. [
  3035. {
  3036. name: "Normal",
  3037. height: math.unit(12, "feet"),
  3038. default: true
  3039. },
  3040. {
  3041. name: "Big",
  3042. height: math.unit(20, "feet")
  3043. },
  3044. {
  3045. name: "Macro",
  3046. height: math.unit(500, "feet")
  3047. },
  3048. {
  3049. name: "Megamacro",
  3050. height: math.unit(20, "miles")
  3051. },
  3052. ]
  3053. ))
  3054. characterMakers.push(() => makeCharacter(
  3055. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3056. {
  3057. front: {
  3058. height: math.unit(6, "feet"),
  3059. weight: math.unit(75, "kg"),
  3060. name: "Front",
  3061. image: {
  3062. source: "./media/characters/shingo/front.svg",
  3063. extra: 1900/1825,
  3064. bottom: 82/1982
  3065. }
  3066. },
  3067. side: {
  3068. height: math.unit(6, "feet"),
  3069. weight: math.unit(75, "kg"),
  3070. name: "Side",
  3071. image: {
  3072. source: "./media/characters/shingo/side.svg",
  3073. extra: 1930/1865,
  3074. bottom: 16/1946
  3075. }
  3076. },
  3077. back: {
  3078. height: math.unit(6, "feet"),
  3079. weight: math.unit(75, "kg"),
  3080. name: "Back",
  3081. image: {
  3082. source: "./media/characters/shingo/back.svg",
  3083. extra: 1922/1852,
  3084. bottom: 16/1938
  3085. }
  3086. },
  3087. frontDressed: {
  3088. height: math.unit(6, "feet"),
  3089. weight: math.unit(150, "lb"),
  3090. name: "Front-dressed",
  3091. image: {
  3092. source: "./media/characters/shingo/front-dressed.svg",
  3093. extra: 1900/1825,
  3094. bottom: 82/1982
  3095. }
  3096. },
  3097. paw: {
  3098. height: math.unit(1.29, "feet"),
  3099. name: "Paw",
  3100. image: {
  3101. source: "./media/characters/shingo/paw.svg"
  3102. }
  3103. },
  3104. hand: {
  3105. height: math.unit(1.07, "feet"),
  3106. name: "Hand",
  3107. image: {
  3108. source: "./media/characters/shingo/hand.svg"
  3109. }
  3110. },
  3111. frontAlt: {
  3112. height: math.unit(6, "feet"),
  3113. weight: math.unit(75, "kg"),
  3114. name: "Front (Alt)",
  3115. image: {
  3116. source: "./media/characters/shingo/front-alt.svg",
  3117. extra: 3511 / 3338,
  3118. bottom: 0.005
  3119. }
  3120. },
  3121. frontAlt2: {
  3122. height: math.unit(6, "feet"),
  3123. weight: math.unit(75, "kg"),
  3124. name: "Front (Alt 2)",
  3125. image: {
  3126. source: "./media/characters/shingo/front-alt-2.svg",
  3127. extra: 706/681,
  3128. bottom: 11/717
  3129. }
  3130. },
  3131. pawAlt: {
  3132. height: math.unit(1, "feet"),
  3133. name: "Paw (Alt)",
  3134. image: {
  3135. source: "./media/characters/shingo/paw-alt.svg"
  3136. }
  3137. },
  3138. },
  3139. [
  3140. {
  3141. name: "Micro",
  3142. height: math.unit(4, "inches")
  3143. },
  3144. {
  3145. name: "Normal",
  3146. height: math.unit(6, "feet"),
  3147. default: true
  3148. },
  3149. {
  3150. name: "Macro",
  3151. height: math.unit(108, "feet")
  3152. },
  3153. {
  3154. name: "Macro+",
  3155. height: math.unit(1500, "feet")
  3156. },
  3157. ]
  3158. ))
  3159. characterMakers.push(() => makeCharacter(
  3160. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3161. {
  3162. side: {
  3163. height: math.unit(6, "feet"),
  3164. weight: math.unit(75, "kg"),
  3165. name: "Side",
  3166. image: {
  3167. source: "./media/characters/aigey/side.svg"
  3168. }
  3169. },
  3170. },
  3171. [
  3172. {
  3173. name: "Macro",
  3174. height: math.unit(200, "feet"),
  3175. default: true
  3176. },
  3177. {
  3178. name: "Megamacro",
  3179. height: math.unit(100, "miles")
  3180. },
  3181. ]
  3182. )
  3183. )
  3184. characterMakers.push(() => makeCharacter(
  3185. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3186. {
  3187. front: {
  3188. height: math.unit(5 + 5 / 12, "feet"),
  3189. weight: math.unit(75, "kg"),
  3190. name: "Front",
  3191. image: {
  3192. source: "./media/characters/natasha/front.svg",
  3193. extra: 859 / 824,
  3194. bottom: 23 / 879.6
  3195. }
  3196. },
  3197. frontNsfw: {
  3198. height: math.unit(5 + 5 / 12, "feet"),
  3199. weight: math.unit(75, "kg"),
  3200. name: "Front (NSFW)",
  3201. image: {
  3202. source: "./media/characters/natasha/front-nsfw.svg",
  3203. extra: 859 / 824,
  3204. bottom: 23 / 879.6
  3205. }
  3206. },
  3207. frontErect: {
  3208. height: math.unit(5 + 5 / 12, "feet"),
  3209. weight: math.unit(75, "kg"),
  3210. name: "Front (Erect)",
  3211. image: {
  3212. source: "./media/characters/natasha/front-erect.svg",
  3213. extra: 859 / 824,
  3214. bottom: 23 / 879.6
  3215. }
  3216. },
  3217. back: {
  3218. height: math.unit(5 + 5 / 12, "feet"),
  3219. weight: math.unit(75, "kg"),
  3220. name: "Back",
  3221. image: {
  3222. source: "./media/characters/natasha/back.svg",
  3223. extra: 887.9 / 852.6,
  3224. bottom: 9.7 / 896.4
  3225. }
  3226. },
  3227. backAlt: {
  3228. height: math.unit(5 + 5 / 12, "feet"),
  3229. weight: math.unit(75, "kg"),
  3230. name: "Back (Alt)",
  3231. image: {
  3232. source: "./media/characters/natasha/back-alt.svg",
  3233. extra: 1236.7 / 1192,
  3234. bottom: 22.3 / 1258.2
  3235. }
  3236. },
  3237. dick: {
  3238. height: math.unit(1.772, "feet"),
  3239. name: "Dick",
  3240. image: {
  3241. source: "./media/characters/natasha/dick.svg"
  3242. }
  3243. },
  3244. paw: {
  3245. height: math.unit(0.250, "meters"),
  3246. name: "Paw",
  3247. image: {
  3248. source: "./media/characters/natasha/paw.svg"
  3249. }
  3250. },
  3251. },
  3252. [
  3253. {
  3254. name: "Normal",
  3255. height: math.unit(5 + 5 / 12, "feet")
  3256. },
  3257. {
  3258. name: "Large",
  3259. height: math.unit(12, "feet")
  3260. },
  3261. {
  3262. name: "Macro",
  3263. height: math.unit(100, "feet"),
  3264. default: true
  3265. },
  3266. {
  3267. name: "Macro+",
  3268. height: math.unit(260, "feet")
  3269. },
  3270. {
  3271. name: "Macro++",
  3272. height: math.unit(1, "mile")
  3273. },
  3274. ]
  3275. ))
  3276. characterMakers.push(() => makeCharacter(
  3277. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3278. {
  3279. front: {
  3280. height: math.unit(6, "feet"),
  3281. weight: math.unit(75, "kg"),
  3282. name: "Front",
  3283. image: {
  3284. source: "./media/characters/malik/front.svg"
  3285. }
  3286. },
  3287. side: {
  3288. height: math.unit(6, "feet"),
  3289. weight: math.unit(75, "kg"),
  3290. name: "Side",
  3291. image: {
  3292. source: "./media/characters/malik/side.svg",
  3293. extra: 1.1539
  3294. }
  3295. },
  3296. back: {
  3297. height: math.unit(6, "feet"),
  3298. weight: math.unit(75, "kg"),
  3299. name: "Back",
  3300. image: {
  3301. source: "./media/characters/malik/back.svg"
  3302. }
  3303. },
  3304. },
  3305. [
  3306. {
  3307. name: "Macro",
  3308. height: math.unit(156, "feet"),
  3309. default: true
  3310. },
  3311. {
  3312. name: "Macro+",
  3313. height: math.unit(1188, "feet")
  3314. },
  3315. ]
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3319. {
  3320. front: {
  3321. height: math.unit(6, "feet"),
  3322. weight: math.unit(75, "kg"),
  3323. name: "Front",
  3324. image: {
  3325. source: "./media/characters/sefer/front.svg",
  3326. extra: 848 / 659,
  3327. bottom: 28.3 / 876.442
  3328. }
  3329. },
  3330. back: {
  3331. height: math.unit(6, "feet"),
  3332. weight: math.unit(75, "kg"),
  3333. name: "Back",
  3334. image: {
  3335. source: "./media/characters/sefer/back.svg",
  3336. extra: 864 / 695,
  3337. bottom: 10 / 871
  3338. }
  3339. },
  3340. frontDressed: {
  3341. height: math.unit(6, "feet"),
  3342. weight: math.unit(75, "kg"),
  3343. name: "Front (Dressed)",
  3344. image: {
  3345. source: "./media/characters/sefer/front-dressed.svg",
  3346. extra: 839 / 653,
  3347. bottom: 37.6 / 878
  3348. }
  3349. },
  3350. },
  3351. [
  3352. {
  3353. name: "Normal",
  3354. height: math.unit(6, "feet"),
  3355. default: true
  3356. },
  3357. ]
  3358. ))
  3359. characterMakers.push(() => makeCharacter(
  3360. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3361. {
  3362. body: {
  3363. height: math.unit(2.2428, "meter"),
  3364. weight: math.unit(124.738, "kg"),
  3365. name: "Body",
  3366. image: {
  3367. extra: 1225 / 1050,
  3368. source: "./media/characters/north/front.svg"
  3369. }
  3370. }
  3371. },
  3372. [
  3373. {
  3374. name: "Micro",
  3375. height: math.unit(4, "inches")
  3376. },
  3377. {
  3378. name: "Macro",
  3379. height: math.unit(63, "meters")
  3380. },
  3381. {
  3382. name: "Megamacro",
  3383. height: math.unit(101, "miles"),
  3384. default: true
  3385. }
  3386. ]
  3387. ))
  3388. characterMakers.push(() => makeCharacter(
  3389. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3390. {
  3391. angled: {
  3392. height: math.unit(4, "meter"),
  3393. weight: math.unit(150, "kg"),
  3394. name: "Angled",
  3395. image: {
  3396. source: "./media/characters/talan/angled-sfw.svg",
  3397. bottom: 29 / 3734
  3398. }
  3399. },
  3400. angledNsfw: {
  3401. height: math.unit(4, "meter"),
  3402. weight: math.unit(150, "kg"),
  3403. name: "Angled (NSFW)",
  3404. image: {
  3405. source: "./media/characters/talan/angled-nsfw.svg",
  3406. bottom: 29 / 3734
  3407. }
  3408. },
  3409. frontNsfw: {
  3410. height: math.unit(4, "meter"),
  3411. weight: math.unit(150, "kg"),
  3412. name: "Front (NSFW)",
  3413. image: {
  3414. source: "./media/characters/talan/front-nsfw.svg",
  3415. bottom: 29 / 3734
  3416. }
  3417. },
  3418. sideNsfw: {
  3419. height: math.unit(4, "meter"),
  3420. weight: math.unit(150, "kg"),
  3421. name: "Side (NSFW)",
  3422. image: {
  3423. source: "./media/characters/talan/side-nsfw.svg",
  3424. bottom: 29 / 3734
  3425. }
  3426. },
  3427. back: {
  3428. height: math.unit(4, "meter"),
  3429. weight: math.unit(150, "kg"),
  3430. name: "Back",
  3431. image: {
  3432. source: "./media/characters/talan/back.svg"
  3433. }
  3434. },
  3435. dickBottom: {
  3436. height: math.unit(0.621, "meter"),
  3437. name: "Dick (Bottom)",
  3438. image: {
  3439. source: "./media/characters/talan/dick-bottom.svg"
  3440. }
  3441. },
  3442. dickTop: {
  3443. height: math.unit(0.621, "meter"),
  3444. name: "Dick (Top)",
  3445. image: {
  3446. source: "./media/characters/talan/dick-top.svg"
  3447. }
  3448. },
  3449. dickSide: {
  3450. height: math.unit(0.305, "meter"),
  3451. name: "Dick (Side)",
  3452. image: {
  3453. source: "./media/characters/talan/dick-side.svg"
  3454. }
  3455. },
  3456. dickFront: {
  3457. height: math.unit(0.305, "meter"),
  3458. name: "Dick (Front)",
  3459. image: {
  3460. source: "./media/characters/talan/dick-front.svg"
  3461. }
  3462. },
  3463. },
  3464. [
  3465. {
  3466. name: "Normal",
  3467. height: math.unit(4, "meters")
  3468. },
  3469. {
  3470. name: "Macro",
  3471. height: math.unit(100, "meters")
  3472. },
  3473. {
  3474. name: "Megamacro",
  3475. height: math.unit(2, "miles"),
  3476. default: true
  3477. },
  3478. {
  3479. name: "Gigamacro",
  3480. height: math.unit(5000, "miles")
  3481. },
  3482. {
  3483. name: "Teramacro",
  3484. height: math.unit(100, "parsecs")
  3485. }
  3486. ]
  3487. ))
  3488. characterMakers.push(() => makeCharacter(
  3489. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3490. {
  3491. front: {
  3492. height: math.unit(2, "meter"),
  3493. weight: math.unit(90, "kg"),
  3494. name: "Front",
  3495. image: {
  3496. source: "./media/characters/gael'rathus/front.svg"
  3497. }
  3498. },
  3499. frontAlt: {
  3500. height: math.unit(2, "meter"),
  3501. weight: math.unit(90, "kg"),
  3502. name: "Front (alt)",
  3503. image: {
  3504. source: "./media/characters/gael'rathus/front-alt.svg"
  3505. }
  3506. },
  3507. frontAlt2: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(90, "kg"),
  3510. name: "Front (alt 2)",
  3511. image: {
  3512. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3513. }
  3514. }
  3515. },
  3516. [
  3517. {
  3518. name: "Normal",
  3519. height: math.unit(9, "feet"),
  3520. default: true
  3521. },
  3522. {
  3523. name: "Large",
  3524. height: math.unit(25, "feet")
  3525. },
  3526. {
  3527. name: "Macro",
  3528. height: math.unit(0.25, "miles")
  3529. },
  3530. {
  3531. name: "Megamacro",
  3532. height: math.unit(10, "miles")
  3533. }
  3534. ]
  3535. ))
  3536. characterMakers.push(() => makeCharacter(
  3537. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3538. {
  3539. side: {
  3540. height: math.unit(2, "meter"),
  3541. weight: math.unit(140, "kg"),
  3542. name: "Side",
  3543. image: {
  3544. source: "./media/characters/sosha/side.svg",
  3545. bottom: 0.042
  3546. }
  3547. },
  3548. },
  3549. [
  3550. {
  3551. name: "Normal",
  3552. height: math.unit(12, "feet"),
  3553. default: true
  3554. }
  3555. ]
  3556. ))
  3557. characterMakers.push(() => makeCharacter(
  3558. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3559. {
  3560. side: {
  3561. height: math.unit(5 + 5 / 12, "feet"),
  3562. weight: math.unit(170, "kg"),
  3563. name: "Side",
  3564. image: {
  3565. source: "./media/characters/runnola/side.svg",
  3566. extra: 741 / 448,
  3567. bottom: 0.05
  3568. }
  3569. },
  3570. },
  3571. [
  3572. {
  3573. name: "Small",
  3574. height: math.unit(3, "feet")
  3575. },
  3576. {
  3577. name: "Normal",
  3578. height: math.unit(5 + 5 / 12, "feet"),
  3579. default: true
  3580. },
  3581. {
  3582. name: "Big",
  3583. height: math.unit(10, "feet")
  3584. },
  3585. ]
  3586. ))
  3587. characterMakers.push(() => makeCharacter(
  3588. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3589. {
  3590. front: {
  3591. height: math.unit(2, "meter"),
  3592. weight: math.unit(50, "kg"),
  3593. name: "Front",
  3594. image: {
  3595. source: "./media/characters/kurribird/front.svg",
  3596. bottom: 0.015
  3597. }
  3598. },
  3599. frontAlt: {
  3600. height: math.unit(1.5, "meter"),
  3601. weight: math.unit(50, "kg"),
  3602. name: "Front (Alt)",
  3603. image: {
  3604. source: "./media/characters/kurribird/front-alt.svg",
  3605. extra: 1.45
  3606. }
  3607. },
  3608. },
  3609. [
  3610. {
  3611. name: "Normal",
  3612. height: math.unit(7, "feet")
  3613. },
  3614. {
  3615. name: "Big",
  3616. height: math.unit(12, "feet"),
  3617. default: true
  3618. },
  3619. {
  3620. name: "Macro",
  3621. height: math.unit(1500, "feet")
  3622. },
  3623. {
  3624. name: "Megamacro",
  3625. height: math.unit(2, "miles")
  3626. }
  3627. ]
  3628. ))
  3629. characterMakers.push(() => makeCharacter(
  3630. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3631. {
  3632. front: {
  3633. height: math.unit(2, "meter"),
  3634. weight: math.unit(80, "kg"),
  3635. name: "Front",
  3636. image: {
  3637. source: "./media/characters/elbial/front.svg",
  3638. extra: 1643 / 1556,
  3639. bottom: 60.2 / 1696
  3640. }
  3641. },
  3642. side: {
  3643. height: math.unit(2, "meter"),
  3644. weight: math.unit(80, "kg"),
  3645. name: "Side",
  3646. image: {
  3647. source: "./media/characters/elbial/side.svg",
  3648. extra: 1601/1528,
  3649. bottom: 97/1698
  3650. }
  3651. },
  3652. back: {
  3653. height: math.unit(2, "meter"),
  3654. weight: math.unit(80, "kg"),
  3655. name: "Back",
  3656. image: {
  3657. source: "./media/characters/elbial/back.svg",
  3658. extra: 1653/1569,
  3659. bottom: 20/1673
  3660. }
  3661. },
  3662. frontDressed: {
  3663. height: math.unit(2, "meter"),
  3664. weight: math.unit(80, "kg"),
  3665. name: "Front (Dressed)",
  3666. image: {
  3667. source: "./media/characters/elbial/front-dressed.svg",
  3668. extra: 1638/1569,
  3669. bottom: 70/1708
  3670. }
  3671. },
  3672. genitals: {
  3673. height: math.unit(2 / 3.367, "meter"),
  3674. name: "Genitals",
  3675. image: {
  3676. source: "./media/characters/elbial/genitals.svg"
  3677. }
  3678. },
  3679. },
  3680. [
  3681. {
  3682. name: "Large",
  3683. height: math.unit(100, "feet")
  3684. },
  3685. {
  3686. name: "Macro",
  3687. height: math.unit(500, "feet"),
  3688. default: true
  3689. },
  3690. {
  3691. name: "Megamacro",
  3692. height: math.unit(10, "miles")
  3693. },
  3694. {
  3695. name: "Gigamacro",
  3696. height: math.unit(25000, "miles")
  3697. },
  3698. {
  3699. name: "Full-Size",
  3700. height: math.unit(8000000, "gigaparsecs")
  3701. }
  3702. ]
  3703. ))
  3704. characterMakers.push(() => makeCharacter(
  3705. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3706. {
  3707. front: {
  3708. height: math.unit(2, "meter"),
  3709. weight: math.unit(60, "kg"),
  3710. name: "Front",
  3711. image: {
  3712. source: "./media/characters/noah/front.svg"
  3713. }
  3714. },
  3715. talons: {
  3716. height: math.unit(0.315, "meter"),
  3717. name: "Talons",
  3718. image: {
  3719. source: "./media/characters/noah/talons.svg"
  3720. }
  3721. }
  3722. },
  3723. [
  3724. {
  3725. name: "Large",
  3726. height: math.unit(50, "feet")
  3727. },
  3728. {
  3729. name: "Macro",
  3730. height: math.unit(750, "feet"),
  3731. default: true
  3732. },
  3733. {
  3734. name: "Megamacro",
  3735. height: math.unit(50, "miles")
  3736. },
  3737. {
  3738. name: "Gigamacro",
  3739. height: math.unit(100000, "miles")
  3740. },
  3741. {
  3742. name: "Full-Size",
  3743. height: math.unit(3000000000, "miles")
  3744. }
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3749. {
  3750. front: {
  3751. height: math.unit(2, "meter"),
  3752. weight: math.unit(80, "kg"),
  3753. name: "Front",
  3754. image: {
  3755. source: "./media/characters/natalya/front.svg"
  3756. }
  3757. },
  3758. back: {
  3759. height: math.unit(2, "meter"),
  3760. weight: math.unit(80, "kg"),
  3761. name: "Back",
  3762. image: {
  3763. source: "./media/characters/natalya/back.svg"
  3764. }
  3765. }
  3766. },
  3767. [
  3768. {
  3769. name: "Normal",
  3770. height: math.unit(150, "feet"),
  3771. default: true
  3772. },
  3773. {
  3774. name: "Megamacro",
  3775. height: math.unit(5, "miles")
  3776. },
  3777. {
  3778. name: "Full-Size",
  3779. height: math.unit(600, "kiloparsecs")
  3780. }
  3781. ]
  3782. ))
  3783. characterMakers.push(() => makeCharacter(
  3784. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3785. {
  3786. front: {
  3787. height: math.unit(2, "meter"),
  3788. weight: math.unit(50, "kg"),
  3789. name: "Front",
  3790. image: {
  3791. source: "./media/characters/erestrebah/front.svg",
  3792. extra: 1262/1162,
  3793. bottom: 96/1358
  3794. }
  3795. },
  3796. back: {
  3797. height: math.unit(2, "meter"),
  3798. weight: math.unit(50, "kg"),
  3799. name: "Back",
  3800. image: {
  3801. source: "./media/characters/erestrebah/back.svg",
  3802. extra: 1257/1139,
  3803. bottom: 13/1270
  3804. }
  3805. },
  3806. wing: {
  3807. height: math.unit(2, "meter"),
  3808. weight: math.unit(50, "kg"),
  3809. name: "Wing",
  3810. image: {
  3811. source: "./media/characters/erestrebah/wing.svg",
  3812. extra: 1262/1162,
  3813. bottom: 96/1358
  3814. }
  3815. },
  3816. mouth: {
  3817. height: math.unit(0.39, "feet"),
  3818. name: "Mouth",
  3819. image: {
  3820. source: "./media/characters/erestrebah/mouth.svg"
  3821. }
  3822. }
  3823. },
  3824. [
  3825. {
  3826. name: "Normal",
  3827. height: math.unit(10, "feet")
  3828. },
  3829. {
  3830. name: "Large",
  3831. height: math.unit(50, "feet"),
  3832. default: true
  3833. },
  3834. {
  3835. name: "Macro",
  3836. height: math.unit(300, "feet")
  3837. },
  3838. {
  3839. name: "Macro+",
  3840. height: math.unit(750, "feet")
  3841. },
  3842. {
  3843. name: "Megamacro",
  3844. height: math.unit(3, "miles")
  3845. }
  3846. ]
  3847. ))
  3848. characterMakers.push(() => makeCharacter(
  3849. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3850. {
  3851. front: {
  3852. height: math.unit(2, "meter"),
  3853. weight: math.unit(80, "kg"),
  3854. name: "Front",
  3855. image: {
  3856. source: "./media/characters/jennifer/front.svg",
  3857. bottom: 0.11,
  3858. extra: 1.16
  3859. }
  3860. },
  3861. frontAlt: {
  3862. height: math.unit(2, "meter"),
  3863. weight: math.unit(80, "kg"),
  3864. name: "Front (Alt)",
  3865. image: {
  3866. source: "./media/characters/jennifer/front-alt.svg"
  3867. }
  3868. }
  3869. },
  3870. [
  3871. {
  3872. name: "Canon Height",
  3873. height: math.unit(120, "feet"),
  3874. default: true
  3875. },
  3876. {
  3877. name: "Macro+",
  3878. height: math.unit(300, "feet")
  3879. },
  3880. {
  3881. name: "Megamacro",
  3882. height: math.unit(20000, "feet")
  3883. }
  3884. ]
  3885. ))
  3886. characterMakers.push(() => makeCharacter(
  3887. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3888. {
  3889. front: {
  3890. height: math.unit(2, "meter"),
  3891. weight: math.unit(50, "kg"),
  3892. name: "Front",
  3893. image: {
  3894. source: "./media/characters/kalista/front.svg",
  3895. extra: 1314/1145,
  3896. bottom: 101/1415
  3897. }
  3898. },
  3899. back: {
  3900. height: math.unit(2, "meter"),
  3901. weight: math.unit(50, "kg"),
  3902. name: "Back",
  3903. image: {
  3904. source: "./media/characters/kalista/back.svg",
  3905. extra: 1366 / 1156,
  3906. bottom: 33.9 / 1362.78
  3907. }
  3908. }
  3909. },
  3910. [
  3911. {
  3912. name: "Uncomfortably Small",
  3913. height: math.unit(10, "feet")
  3914. },
  3915. {
  3916. name: "Small",
  3917. height: math.unit(30, "feet")
  3918. },
  3919. {
  3920. name: "Macro",
  3921. height: math.unit(100, "feet"),
  3922. default: true
  3923. },
  3924. {
  3925. name: "Macro+",
  3926. height: math.unit(2000, "feet")
  3927. },
  3928. {
  3929. name: "True Form",
  3930. height: math.unit(8924, "miles")
  3931. }
  3932. ]
  3933. ))
  3934. characterMakers.push(() => makeCharacter(
  3935. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3936. {
  3937. front: {
  3938. height: math.unit(2, "meter"),
  3939. weight: math.unit(120, "kg"),
  3940. name: "Front",
  3941. image: {
  3942. source: "./media/characters/ggv/front.svg"
  3943. }
  3944. },
  3945. side: {
  3946. height: math.unit(2, "meter"),
  3947. weight: math.unit(120, "kg"),
  3948. name: "Side",
  3949. image: {
  3950. source: "./media/characters/ggv/side.svg"
  3951. }
  3952. }
  3953. },
  3954. [
  3955. {
  3956. name: "Extremely Puny",
  3957. height: math.unit(9 + 5 / 12, "feet")
  3958. },
  3959. {
  3960. name: "Horribly Small",
  3961. height: math.unit(47.7, "miles"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Reasonably Sized",
  3966. height: math.unit(25000, "parsecs")
  3967. },
  3968. {
  3969. name: "Slightly Uncompressed",
  3970. height: math.unit(7.77e31, "parsecs")
  3971. },
  3972. {
  3973. name: "Omniversal",
  3974. height: math.unit(1e300, "meters")
  3975. },
  3976. ]
  3977. ))
  3978. characterMakers.push(() => makeCharacter(
  3979. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3980. {
  3981. front: {
  3982. height: math.unit(2, "meter"),
  3983. weight: math.unit(75, "lb"),
  3984. name: "Front",
  3985. image: {
  3986. source: "./media/characters/napalm/front.svg"
  3987. }
  3988. },
  3989. back: {
  3990. height: math.unit(2, "meter"),
  3991. weight: math.unit(75, "lb"),
  3992. name: "Back",
  3993. image: {
  3994. source: "./media/characters/napalm/back.svg"
  3995. }
  3996. }
  3997. },
  3998. [
  3999. {
  4000. name: "Standard",
  4001. height: math.unit(55, "feet"),
  4002. default: true
  4003. }
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4008. {
  4009. front: {
  4010. height: math.unit(7 + 5 / 6, "feet"),
  4011. weight: math.unit(325, "lb"),
  4012. name: "Front",
  4013. image: {
  4014. source: "./media/characters/asana/front.svg",
  4015. extra: 1133 / 1060,
  4016. bottom: 15.2 / 1148.6
  4017. }
  4018. },
  4019. back: {
  4020. height: math.unit(7 + 5 / 6, "feet"),
  4021. weight: math.unit(325, "lb"),
  4022. name: "Back",
  4023. image: {
  4024. source: "./media/characters/asana/back.svg",
  4025. extra: 1114 / 1043,
  4026. bottom: 5 / 1120
  4027. }
  4028. },
  4029. dressedDark: {
  4030. height: math.unit(7 + 5 / 6, "feet"),
  4031. weight: math.unit(325, "lb"),
  4032. name: "Dressed (Dark)",
  4033. image: {
  4034. source: "./media/characters/asana/dressed-dark.svg",
  4035. extra: 1133 / 1060,
  4036. bottom: 15.2 / 1148.6
  4037. }
  4038. },
  4039. dressedLight: {
  4040. height: math.unit(7 + 5 / 6, "feet"),
  4041. weight: math.unit(325, "lb"),
  4042. name: "Dressed (Light)",
  4043. image: {
  4044. source: "./media/characters/asana/dressed-light.svg",
  4045. extra: 1133 / 1060,
  4046. bottom: 15.2 / 1148.6
  4047. }
  4048. },
  4049. },
  4050. [
  4051. {
  4052. name: "Standard",
  4053. height: math.unit(7 + 5 / 6, "feet"),
  4054. default: true
  4055. },
  4056. {
  4057. name: "Large",
  4058. height: math.unit(10, "meters")
  4059. },
  4060. {
  4061. name: "Macro",
  4062. height: math.unit(2500, "meters")
  4063. },
  4064. {
  4065. name: "Megamacro",
  4066. height: math.unit(5e6, "meters")
  4067. },
  4068. {
  4069. name: "Examacro",
  4070. height: math.unit(5e12, "lightyears")
  4071. },
  4072. {
  4073. name: "Max Size",
  4074. height: math.unit(1e31, "lightyears")
  4075. }
  4076. ]
  4077. ))
  4078. characterMakers.push(() => makeCharacter(
  4079. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4080. {
  4081. front: {
  4082. height: math.unit(2, "meter"),
  4083. weight: math.unit(60, "kg"),
  4084. name: "Front",
  4085. image: {
  4086. source: "./media/characters/ebony/front.svg",
  4087. bottom: 0.03,
  4088. extra: 1045 / 810 + 0.03
  4089. }
  4090. },
  4091. side: {
  4092. height: math.unit(2, "meter"),
  4093. weight: math.unit(60, "kg"),
  4094. name: "Side",
  4095. image: {
  4096. source: "./media/characters/ebony/side.svg",
  4097. bottom: 0.03,
  4098. extra: 1045 / 810 + 0.03
  4099. }
  4100. },
  4101. back: {
  4102. height: math.unit(2, "meter"),
  4103. weight: math.unit(60, "kg"),
  4104. name: "Back",
  4105. image: {
  4106. source: "./media/characters/ebony/back.svg",
  4107. bottom: 0.01,
  4108. extra: 1045 / 810 + 0.01
  4109. }
  4110. },
  4111. },
  4112. [
  4113. // TODO check why I did this lol
  4114. {
  4115. name: "Standard",
  4116. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4117. default: true
  4118. },
  4119. {
  4120. name: "Macro",
  4121. height: math.unit(200, "feet")
  4122. },
  4123. {
  4124. name: "Gigamacro",
  4125. height: math.unit(13000, "km")
  4126. }
  4127. ]
  4128. ))
  4129. characterMakers.push(() => makeCharacter(
  4130. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4131. {
  4132. front: {
  4133. height: math.unit(6, "feet"),
  4134. weight: math.unit(175, "lb"),
  4135. name: "Front",
  4136. image: {
  4137. source: "./media/characters/mountain/front.svg",
  4138. extra: 972 / 955,
  4139. bottom: 64 / 1036.6
  4140. }
  4141. },
  4142. back: {
  4143. height: math.unit(6, "feet"),
  4144. weight: math.unit(175, "lb"),
  4145. name: "Back",
  4146. image: {
  4147. source: "./media/characters/mountain/back.svg",
  4148. extra: 970 / 950,
  4149. bottom: 28.25 / 999
  4150. }
  4151. },
  4152. },
  4153. [
  4154. {
  4155. name: "Large",
  4156. height: math.unit(20, "meters")
  4157. },
  4158. {
  4159. name: "Macro",
  4160. height: math.unit(300, "meters")
  4161. },
  4162. {
  4163. name: "Gigamacro",
  4164. height: math.unit(10000, "km"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Examacro",
  4169. height: math.unit(10e9, "lightyears")
  4170. }
  4171. ]
  4172. ))
  4173. characterMakers.push(() => makeCharacter(
  4174. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4175. {
  4176. front: {
  4177. height: math.unit(8, "feet"),
  4178. weight: math.unit(500, "lb"),
  4179. name: "Front",
  4180. image: {
  4181. source: "./media/characters/rick/front.svg"
  4182. }
  4183. }
  4184. },
  4185. [
  4186. {
  4187. name: "Normal",
  4188. height: math.unit(8, "feet"),
  4189. default: true
  4190. },
  4191. {
  4192. name: "Macro",
  4193. height: math.unit(5, "km")
  4194. }
  4195. ]
  4196. ))
  4197. characterMakers.push(() => makeCharacter(
  4198. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4199. {
  4200. front: {
  4201. height: math.unit(8, "feet"),
  4202. weight: math.unit(120, "lb"),
  4203. name: "Front",
  4204. image: {
  4205. source: "./media/characters/ona/front.svg"
  4206. }
  4207. },
  4208. frontAlt: {
  4209. height: math.unit(8, "feet"),
  4210. weight: math.unit(120, "lb"),
  4211. name: "Front (Alt)",
  4212. image: {
  4213. source: "./media/characters/ona/front-alt.svg"
  4214. }
  4215. },
  4216. back: {
  4217. height: math.unit(8, "feet"),
  4218. weight: math.unit(120, "lb"),
  4219. name: "Back",
  4220. image: {
  4221. source: "./media/characters/ona/back.svg"
  4222. }
  4223. },
  4224. foot: {
  4225. height: math.unit(1.1, "feet"),
  4226. name: "Foot",
  4227. image: {
  4228. source: "./media/characters/ona/foot.svg"
  4229. }
  4230. }
  4231. },
  4232. [
  4233. {
  4234. name: "Megamacro",
  4235. height: math.unit(70, "km"),
  4236. default: true
  4237. },
  4238. {
  4239. name: "Gigamacro",
  4240. height: math.unit(681818, "miles")
  4241. },
  4242. {
  4243. name: "Examacro",
  4244. height: math.unit(3800000, "lightyears")
  4245. },
  4246. ]
  4247. ))
  4248. characterMakers.push(() => makeCharacter(
  4249. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4250. {
  4251. front: {
  4252. height: math.unit(12, "feet"),
  4253. weight: math.unit(3000, "lb"),
  4254. name: "Front",
  4255. image: {
  4256. source: "./media/characters/mech/front.svg",
  4257. extra: 2900 / 2770,
  4258. bottom: 110 / 3010
  4259. }
  4260. },
  4261. back: {
  4262. height: math.unit(12, "feet"),
  4263. weight: math.unit(3000, "lb"),
  4264. name: "Back",
  4265. image: {
  4266. source: "./media/characters/mech/back.svg",
  4267. extra: 3011 / 2890,
  4268. bottom: 94 / 3105
  4269. }
  4270. },
  4271. maw: {
  4272. height: math.unit(3.07, "feet"),
  4273. name: "Maw",
  4274. image: {
  4275. source: "./media/characters/mech/maw.svg"
  4276. }
  4277. },
  4278. head: {
  4279. height: math.unit(2.82, "feet"),
  4280. name: "Head",
  4281. image: {
  4282. source: "./media/characters/mech/head.svg"
  4283. }
  4284. },
  4285. dick: {
  4286. height: math.unit(1.43, "feet"),
  4287. name: "Dick",
  4288. image: {
  4289. source: "./media/characters/mech/dick.svg"
  4290. }
  4291. },
  4292. },
  4293. [
  4294. {
  4295. name: "Normal",
  4296. height: math.unit(12, "feet")
  4297. },
  4298. {
  4299. name: "Macro",
  4300. height: math.unit(300, "feet"),
  4301. default: true
  4302. },
  4303. {
  4304. name: "Macro+",
  4305. height: math.unit(1500, "feet")
  4306. },
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(1.3, "meter"),
  4314. weight: math.unit(30, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/gregory/front.svg",
  4318. }
  4319. }
  4320. },
  4321. [
  4322. {
  4323. name: "Normal",
  4324. height: math.unit(1.3, "meter"),
  4325. default: true
  4326. },
  4327. {
  4328. name: "Macro",
  4329. height: math.unit(20, "meter")
  4330. }
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4335. {
  4336. front: {
  4337. height: math.unit(2.8, "meter"),
  4338. weight: math.unit(200, "kg"),
  4339. name: "Front",
  4340. image: {
  4341. source: "./media/characters/elory/front.svg",
  4342. }
  4343. }
  4344. },
  4345. [
  4346. {
  4347. name: "Normal",
  4348. height: math.unit(2.8, "meter"),
  4349. default: true
  4350. },
  4351. {
  4352. name: "Macro",
  4353. height: math.unit(38, "meter")
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4359. {
  4360. front: {
  4361. height: math.unit(470, "feet"),
  4362. weight: math.unit(924, "tons"),
  4363. name: "Front",
  4364. image: {
  4365. source: "./media/characters/angelpatamon/front.svg",
  4366. }
  4367. }
  4368. },
  4369. [
  4370. {
  4371. name: "Normal",
  4372. height: math.unit(470, "feet"),
  4373. default: true
  4374. },
  4375. {
  4376. name: "Deity Size I",
  4377. height: math.unit(28651.2, "km")
  4378. },
  4379. {
  4380. name: "Deity Size II",
  4381. height: math.unit(171907.2, "km")
  4382. }
  4383. ]
  4384. ))
  4385. characterMakers.push(() => makeCharacter(
  4386. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4387. {
  4388. side: {
  4389. height: math.unit(7.2, "meter"),
  4390. weight: math.unit(8.2, "tons"),
  4391. name: "Side",
  4392. image: {
  4393. source: "./media/characters/cryae/side.svg",
  4394. extra: 3500 / 1500
  4395. }
  4396. }
  4397. },
  4398. [
  4399. {
  4400. name: "Normal",
  4401. height: math.unit(7.2, "meter"),
  4402. default: true
  4403. }
  4404. ]
  4405. ))
  4406. characterMakers.push(() => makeCharacter(
  4407. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4408. {
  4409. front: {
  4410. height: math.unit(6, "feet"),
  4411. weight: math.unit(175, "lb"),
  4412. name: "Front",
  4413. image: {
  4414. source: "./media/characters/xera/front.svg",
  4415. extra: 2377 / 1972,
  4416. bottom: 75.5 / 2452
  4417. }
  4418. },
  4419. side: {
  4420. height: math.unit(6, "feet"),
  4421. weight: math.unit(175, "lb"),
  4422. name: "Side",
  4423. image: {
  4424. source: "./media/characters/xera/side.svg",
  4425. extra: 2345 / 2019,
  4426. bottom: 39.7 / 2384
  4427. }
  4428. },
  4429. back: {
  4430. height: math.unit(6, "feet"),
  4431. weight: math.unit(175, "lb"),
  4432. name: "Back",
  4433. image: {
  4434. source: "./media/characters/xera/back.svg",
  4435. extra: 2095 / 1984,
  4436. bottom: 67 / 2166
  4437. }
  4438. },
  4439. },
  4440. [
  4441. {
  4442. name: "Small",
  4443. height: math.unit(10, "feet")
  4444. },
  4445. {
  4446. name: "Macro",
  4447. height: math.unit(500, "meters"),
  4448. default: true
  4449. },
  4450. {
  4451. name: "Macro+",
  4452. height: math.unit(10, "km")
  4453. },
  4454. {
  4455. name: "Gigamacro",
  4456. height: math.unit(25000, "km")
  4457. },
  4458. {
  4459. name: "Teramacro",
  4460. height: math.unit(3e6, "km")
  4461. }
  4462. ]
  4463. ))
  4464. characterMakers.push(() => makeCharacter(
  4465. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4466. {
  4467. front: {
  4468. height: math.unit(6, "feet"),
  4469. weight: math.unit(175, "lb"),
  4470. name: "Front",
  4471. image: {
  4472. source: "./media/characters/nebula/front.svg",
  4473. extra: 2566 / 2362,
  4474. bottom: 81 / 2644
  4475. }
  4476. }
  4477. },
  4478. [
  4479. {
  4480. name: "Small",
  4481. height: math.unit(4.5, "meters")
  4482. },
  4483. {
  4484. name: "Macro",
  4485. height: math.unit(1500, "meters"),
  4486. default: true
  4487. },
  4488. {
  4489. name: "Megamacro",
  4490. height: math.unit(150, "km")
  4491. },
  4492. {
  4493. name: "Gigamacro",
  4494. height: math.unit(27000, "km")
  4495. }
  4496. ]
  4497. ))
  4498. characterMakers.push(() => makeCharacter(
  4499. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4500. {
  4501. front: {
  4502. height: math.unit(6, "feet"),
  4503. weight: math.unit(225, "lb"),
  4504. name: "Front",
  4505. image: {
  4506. source: "./media/characters/abysgar/front.svg",
  4507. extra: 1739/1614,
  4508. bottom: 71/1810
  4509. }
  4510. },
  4511. frontNsfw: {
  4512. height: math.unit(6, "feet"),
  4513. weight: math.unit(225, "lb"),
  4514. name: "Front (NSFW)",
  4515. image: {
  4516. source: "./media/characters/abysgar/front-nsfw.svg",
  4517. extra: 1739/1614,
  4518. bottom: 71/1810
  4519. }
  4520. },
  4521. back: {
  4522. height: math.unit(4.6, "feet"),
  4523. weight: math.unit(225, "lb"),
  4524. name: "Back",
  4525. image: {
  4526. source: "./media/characters/abysgar/back.svg",
  4527. extra: 1384/1327,
  4528. bottom: 0/1384
  4529. }
  4530. },
  4531. head: {
  4532. height: math.unit(1.25, "feet"),
  4533. name: "Head",
  4534. image: {
  4535. source: "./media/characters/abysgar/head.svg",
  4536. extra: 669/569,
  4537. bottom: 0/669
  4538. }
  4539. },
  4540. },
  4541. [
  4542. {
  4543. name: "Small",
  4544. height: math.unit(4.5, "meters")
  4545. },
  4546. {
  4547. name: "Macro",
  4548. height: math.unit(1250, "meters"),
  4549. default: true
  4550. },
  4551. {
  4552. name: "Megamacro",
  4553. height: math.unit(125, "km")
  4554. },
  4555. {
  4556. name: "Gigamacro",
  4557. height: math.unit(26000, "km")
  4558. }
  4559. ]
  4560. ))
  4561. characterMakers.push(() => makeCharacter(
  4562. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4563. {
  4564. front: {
  4565. height: math.unit(6, "feet"),
  4566. weight: math.unit(180, "lb"),
  4567. name: "Front",
  4568. image: {
  4569. source: "./media/characters/yakuz/front.svg"
  4570. }
  4571. }
  4572. },
  4573. [
  4574. {
  4575. name: "Small",
  4576. height: math.unit(5, "meters")
  4577. },
  4578. {
  4579. name: "Macro",
  4580. height: math.unit(1500, "meters"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Megamacro",
  4585. height: math.unit(200, "km")
  4586. },
  4587. {
  4588. name: "Gigamacro",
  4589. height: math.unit(100000, "km")
  4590. }
  4591. ]
  4592. ))
  4593. characterMakers.push(() => makeCharacter(
  4594. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4595. {
  4596. front: {
  4597. height: math.unit(6, "feet"),
  4598. weight: math.unit(175, "lb"),
  4599. name: "Front",
  4600. image: {
  4601. source: "./media/characters/mirova/front.svg",
  4602. extra: 3334 / 3071,
  4603. bottom: 42 / 3375.6
  4604. }
  4605. }
  4606. },
  4607. [
  4608. {
  4609. name: "Small",
  4610. height: math.unit(5, "meters")
  4611. },
  4612. {
  4613. name: "Macro",
  4614. height: math.unit(900, "meters"),
  4615. default: true
  4616. },
  4617. {
  4618. name: "Megamacro",
  4619. height: math.unit(135, "km")
  4620. },
  4621. {
  4622. name: "Gigamacro",
  4623. height: math.unit(20000, "km")
  4624. }
  4625. ]
  4626. ))
  4627. characterMakers.push(() => makeCharacter(
  4628. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4629. {
  4630. side: {
  4631. height: math.unit(28.35, "feet"),
  4632. weight: math.unit(99.75, "tons"),
  4633. name: "Side",
  4634. image: {
  4635. source: "./media/characters/asana-mech/side.svg",
  4636. extra: 923 / 699,
  4637. bottom: 50 / 975
  4638. }
  4639. },
  4640. chaingun: {
  4641. height: math.unit(7, "feet"),
  4642. weight: math.unit(2400, "lb"),
  4643. name: "Chaingun",
  4644. image: {
  4645. source: "./media/characters/asana-mech/chaingun.svg"
  4646. }
  4647. },
  4648. laser: {
  4649. height: math.unit(7.12, "feet"),
  4650. weight: math.unit(2000, "lb"),
  4651. name: "Laser",
  4652. image: {
  4653. source: "./media/characters/asana-mech/laser.svg"
  4654. }
  4655. },
  4656. },
  4657. [
  4658. {
  4659. name: "Normal",
  4660. height: math.unit(28.35, "feet"),
  4661. default: true
  4662. },
  4663. {
  4664. name: "Macro",
  4665. height: math.unit(2500, "feet")
  4666. },
  4667. {
  4668. name: "Megamacro",
  4669. height: math.unit(25, "miles")
  4670. },
  4671. {
  4672. name: "Examacro",
  4673. height: math.unit(6e8, "lightyears")
  4674. },
  4675. ]
  4676. ))
  4677. characterMakers.push(() => makeCharacter(
  4678. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4679. {
  4680. front: {
  4681. height: math.unit(5, "meters"),
  4682. weight: math.unit(1000, "kg"),
  4683. name: "Front",
  4684. image: {
  4685. source: "./media/characters/asche/front.svg",
  4686. extra: 1258 / 1190,
  4687. bottom: 47 / 1305
  4688. }
  4689. },
  4690. frontUnderwear: {
  4691. height: math.unit(5, "meters"),
  4692. weight: math.unit(1000, "kg"),
  4693. name: "Front (Underwear)",
  4694. image: {
  4695. source: "./media/characters/asche/front-underwear.svg",
  4696. extra: 1258 / 1190,
  4697. bottom: 47 / 1305
  4698. }
  4699. },
  4700. frontDressed: {
  4701. height: math.unit(5, "meters"),
  4702. weight: math.unit(1000, "kg"),
  4703. name: "Front (Dressed)",
  4704. image: {
  4705. source: "./media/characters/asche/front-dressed.svg",
  4706. extra: 1258 / 1190,
  4707. bottom: 47 / 1305
  4708. }
  4709. },
  4710. frontArmor: {
  4711. height: math.unit(5, "meters"),
  4712. weight: math.unit(1000, "kg"),
  4713. name: "Front (Armored)",
  4714. image: {
  4715. source: "./media/characters/asche/front-armored.svg",
  4716. extra: 1374 / 1308,
  4717. bottom: 23 / 1397
  4718. }
  4719. },
  4720. mp724: {
  4721. height: math.unit(0.96, "meters"),
  4722. weight: math.unit(38, "kg"),
  4723. name: "H&K MP724",
  4724. image: {
  4725. source: "./media/characters/asche/h&k-mp724.svg"
  4726. }
  4727. },
  4728. side: {
  4729. height: math.unit(5, "meters"),
  4730. weight: math.unit(1000, "kg"),
  4731. name: "Side",
  4732. image: {
  4733. source: "./media/characters/asche/side.svg",
  4734. extra: 1717 / 1609,
  4735. bottom: 0.005
  4736. }
  4737. },
  4738. back: {
  4739. height: math.unit(5, "meters"),
  4740. weight: math.unit(1000, "kg"),
  4741. name: "Back",
  4742. image: {
  4743. source: "./media/characters/asche/back.svg",
  4744. extra: 1570 / 1501
  4745. }
  4746. },
  4747. },
  4748. [
  4749. {
  4750. name: "DEFCON 5",
  4751. height: math.unit(5, "meters")
  4752. },
  4753. {
  4754. name: "DEFCON 4",
  4755. height: math.unit(500, "meters"),
  4756. default: true
  4757. },
  4758. {
  4759. name: "DEFCON 3",
  4760. height: math.unit(5, "km")
  4761. },
  4762. {
  4763. name: "DEFCON 2",
  4764. height: math.unit(500, "km")
  4765. },
  4766. {
  4767. name: "DEFCON 1",
  4768. height: math.unit(500000, "km")
  4769. },
  4770. {
  4771. name: "DEFCON 0",
  4772. height: math.unit(3, "gigaparsecs")
  4773. },
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(2, "meters"),
  4781. weight: math.unit(76, "kg"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/gale/front.svg"
  4785. }
  4786. },
  4787. frontAlt1: {
  4788. height: math.unit(2, "meters"),
  4789. weight: math.unit(76, "kg"),
  4790. name: "Front (Alt 1)",
  4791. image: {
  4792. source: "./media/characters/gale/front-alt-1.svg"
  4793. }
  4794. },
  4795. frontAlt2: {
  4796. height: math.unit(2, "meters"),
  4797. weight: math.unit(76, "kg"),
  4798. name: "Front (Alt 2)",
  4799. image: {
  4800. source: "./media/characters/gale/front-alt-2.svg"
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(7, "feet")
  4808. },
  4809. {
  4810. name: "Macro",
  4811. height: math.unit(150, "feet"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Macro+",
  4816. height: math.unit(300, "feet")
  4817. },
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(5 + 10/12, "feet"),
  4825. weight: math.unit(67, "kg"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/draylen/front.svg",
  4829. extra: 832/777,
  4830. bottom: 85/917
  4831. }
  4832. }
  4833. },
  4834. [
  4835. {
  4836. name: "Normal",
  4837. height: math.unit(5 + 10/12, "feet")
  4838. },
  4839. {
  4840. name: "Macro",
  4841. height: math.unit(150, "feet"),
  4842. default: true
  4843. }
  4844. ]
  4845. ))
  4846. characterMakers.push(() => makeCharacter(
  4847. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4848. {
  4849. front: {
  4850. height: math.unit(7 + 9 / 12, "feet"),
  4851. weight: math.unit(379, "lbs"),
  4852. name: "Front",
  4853. image: {
  4854. source: "./media/characters/chez/front.svg"
  4855. }
  4856. },
  4857. side: {
  4858. height: math.unit(7 + 9 / 12, "feet"),
  4859. weight: math.unit(379, "lbs"),
  4860. name: "Side",
  4861. image: {
  4862. source: "./media/characters/chez/side.svg"
  4863. }
  4864. }
  4865. },
  4866. [
  4867. {
  4868. name: "Normal",
  4869. height: math.unit(7 + 9 / 12, "feet"),
  4870. default: true
  4871. },
  4872. {
  4873. name: "God King",
  4874. height: math.unit(9750000, "meters")
  4875. }
  4876. ]
  4877. ))
  4878. characterMakers.push(() => makeCharacter(
  4879. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4880. {
  4881. front: {
  4882. height: math.unit(6, "feet"),
  4883. weight: math.unit(275, "lbs"),
  4884. name: "Front",
  4885. image: {
  4886. source: "./media/characters/kaylum/front.svg",
  4887. bottom: 0.01,
  4888. extra: 1166 / 1031
  4889. }
  4890. },
  4891. frontWingless: {
  4892. height: math.unit(6, "feet"),
  4893. weight: math.unit(275, "lbs"),
  4894. name: "Front (Wingless)",
  4895. image: {
  4896. source: "./media/characters/kaylum/front-wingless.svg",
  4897. bottom: 0.01,
  4898. extra: 1117 / 1031
  4899. }
  4900. }
  4901. },
  4902. [
  4903. {
  4904. name: "Normal",
  4905. height: math.unit(3.05, "meters")
  4906. },
  4907. {
  4908. name: "Master",
  4909. height: math.unit(5.5, "meters")
  4910. },
  4911. {
  4912. name: "Rampage",
  4913. height: math.unit(19, "meters")
  4914. },
  4915. {
  4916. name: "Macro Lite",
  4917. height: math.unit(37, "meters")
  4918. },
  4919. {
  4920. name: "Hyper Predator",
  4921. height: math.unit(61, "meters")
  4922. },
  4923. {
  4924. name: "Macro",
  4925. height: math.unit(138, "meters"),
  4926. default: true
  4927. }
  4928. ]
  4929. ))
  4930. characterMakers.push(() => makeCharacter(
  4931. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4932. {
  4933. front: {
  4934. height: math.unit(5 + 5 / 12, "feet"),
  4935. weight: math.unit(120, "lbs"),
  4936. name: "Front",
  4937. image: {
  4938. source: "./media/characters/geta/front.svg",
  4939. extra: 1003/933,
  4940. bottom: 21/1024
  4941. }
  4942. },
  4943. paw: {
  4944. height: math.unit(0.35, "feet"),
  4945. name: "Paw",
  4946. image: {
  4947. source: "./media/characters/geta/paw.svg"
  4948. }
  4949. },
  4950. },
  4951. [
  4952. {
  4953. name: "Micro",
  4954. height: math.unit(3, "inches"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(5 + 5 / 12, "feet")
  4960. }
  4961. ]
  4962. ))
  4963. characterMakers.push(() => makeCharacter(
  4964. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4965. {
  4966. front: {
  4967. height: math.unit(6, "feet"),
  4968. weight: math.unit(300, "lbs"),
  4969. name: "Front",
  4970. image: {
  4971. source: "./media/characters/tyrnn/front.svg"
  4972. }
  4973. }
  4974. },
  4975. [
  4976. {
  4977. name: "Main Height",
  4978. height: math.unit(355, "feet"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Fave. Height",
  4983. height: math.unit(2400, "feet")
  4984. }
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4989. {
  4990. front: {
  4991. height: math.unit(6, "feet"),
  4992. weight: math.unit(300, "lbs"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/appledectomy/front.svg"
  4996. }
  4997. }
  4998. },
  4999. [
  5000. {
  5001. name: "Macro",
  5002. height: math.unit(2500, "feet")
  5003. },
  5004. {
  5005. name: "Megamacro",
  5006. height: math.unit(50, "miles"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Gigamacro",
  5011. height: math.unit(5000, "miles")
  5012. },
  5013. {
  5014. name: "Teramacro",
  5015. height: math.unit(250000, "miles")
  5016. },
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5021. {
  5022. front: {
  5023. height: math.unit(6, "feet"),
  5024. weight: math.unit(200, "lbs"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/vulpes/front.svg",
  5028. extra: 573 / 543,
  5029. bottom: 0.033
  5030. }
  5031. },
  5032. side: {
  5033. height: math.unit(6, "feet"),
  5034. weight: math.unit(200, "lbs"),
  5035. name: "Side",
  5036. image: {
  5037. source: "./media/characters/vulpes/side.svg",
  5038. extra: 577 / 549,
  5039. bottom: 11 / 588
  5040. }
  5041. },
  5042. back: {
  5043. height: math.unit(6, "feet"),
  5044. weight: math.unit(200, "lbs"),
  5045. name: "Back",
  5046. image: {
  5047. source: "./media/characters/vulpes/back.svg",
  5048. extra: 573 / 549,
  5049. bottom: 20 / 593
  5050. }
  5051. },
  5052. feet: {
  5053. height: math.unit(1.276, "feet"),
  5054. name: "Feet",
  5055. image: {
  5056. source: "./media/characters/vulpes/feet.svg"
  5057. }
  5058. },
  5059. maw: {
  5060. height: math.unit(1.18, "feet"),
  5061. name: "Maw",
  5062. image: {
  5063. source: "./media/characters/vulpes/maw.svg"
  5064. }
  5065. },
  5066. },
  5067. [
  5068. {
  5069. name: "Micro",
  5070. height: math.unit(2, "inches")
  5071. },
  5072. {
  5073. name: "Normal",
  5074. height: math.unit(6.3, "feet")
  5075. },
  5076. {
  5077. name: "Macro",
  5078. height: math.unit(850, "feet")
  5079. },
  5080. {
  5081. name: "Megamacro",
  5082. height: math.unit(7500, "feet"),
  5083. default: true
  5084. },
  5085. {
  5086. name: "Gigamacro",
  5087. height: math.unit(570000, "miles")
  5088. }
  5089. ]
  5090. ))
  5091. characterMakers.push(() => makeCharacter(
  5092. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5093. {
  5094. front: {
  5095. height: math.unit(6, "feet"),
  5096. weight: math.unit(210, "lbs"),
  5097. name: "Front",
  5098. image: {
  5099. source: "./media/characters/rain-fallen/front.svg"
  5100. }
  5101. },
  5102. side: {
  5103. height: math.unit(6, "feet"),
  5104. weight: math.unit(210, "lbs"),
  5105. name: "Side",
  5106. image: {
  5107. source: "./media/characters/rain-fallen/side.svg"
  5108. }
  5109. },
  5110. back: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(210, "lbs"),
  5113. name: "Back",
  5114. image: {
  5115. source: "./media/characters/rain-fallen/back.svg"
  5116. }
  5117. },
  5118. feral: {
  5119. height: math.unit(9, "feet"),
  5120. weight: math.unit(700, "lbs"),
  5121. name: "Feral",
  5122. image: {
  5123. source: "./media/characters/rain-fallen/feral.svg"
  5124. }
  5125. },
  5126. },
  5127. [
  5128. {
  5129. name: "Meddling with Mortals",
  5130. height: math.unit(8 + 8/12, "feet")
  5131. },
  5132. {
  5133. name: "Normal",
  5134. height: math.unit(5, "meter")
  5135. },
  5136. {
  5137. name: "Macro",
  5138. height: math.unit(150, "meter"),
  5139. default: true
  5140. },
  5141. {
  5142. name: "Megamacro",
  5143. height: math.unit(278e6, "meter")
  5144. },
  5145. {
  5146. name: "Gigamacro",
  5147. height: math.unit(2e9, "meter")
  5148. },
  5149. {
  5150. name: "Teramacro",
  5151. height: math.unit(8e12, "meter")
  5152. },
  5153. {
  5154. name: "Devourer",
  5155. height: math.unit(14, "zettameters")
  5156. },
  5157. {
  5158. name: "Scarlet King",
  5159. height: math.unit(18, "yottameters")
  5160. },
  5161. {
  5162. name: "Void",
  5163. height: math.unit(1e88, "yottameters")
  5164. }
  5165. ]
  5166. ))
  5167. characterMakers.push(() => makeCharacter(
  5168. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5169. {
  5170. standing: {
  5171. height: math.unit(6, "feet"),
  5172. weight: math.unit(180, "lbs"),
  5173. name: "Standing",
  5174. image: {
  5175. source: "./media/characters/zaakira/standing.svg",
  5176. extra: 1599/1504,
  5177. bottom: 39/1638
  5178. }
  5179. },
  5180. laying: {
  5181. height: math.unit(3.3, "feet"),
  5182. weight: math.unit(180, "lbs"),
  5183. name: "Laying",
  5184. image: {
  5185. source: "./media/characters/zaakira/laying.svg"
  5186. }
  5187. },
  5188. },
  5189. [
  5190. {
  5191. name: "Normal",
  5192. height: math.unit(12, "feet")
  5193. },
  5194. {
  5195. name: "Macro",
  5196. height: math.unit(279, "feet"),
  5197. default: true
  5198. }
  5199. ]
  5200. ))
  5201. characterMakers.push(() => makeCharacter(
  5202. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5203. {
  5204. femSfw: {
  5205. height: math.unit(8, "feet"),
  5206. weight: math.unit(350, "lb"),
  5207. name: "Fem",
  5208. image: {
  5209. source: "./media/characters/sigvald/fem-sfw.svg",
  5210. extra: 182 / 164,
  5211. bottom: 8.7 / 190.5
  5212. }
  5213. },
  5214. femNsfw: {
  5215. height: math.unit(8, "feet"),
  5216. weight: math.unit(350, "lb"),
  5217. name: "Fem (NSFW)",
  5218. image: {
  5219. source: "./media/characters/sigvald/fem-nsfw.svg",
  5220. extra: 182 / 164,
  5221. bottom: 8.7 / 190.5
  5222. }
  5223. },
  5224. maleNsfw: {
  5225. height: math.unit(8, "feet"),
  5226. weight: math.unit(350, "lb"),
  5227. name: "Male (NSFW)",
  5228. image: {
  5229. source: "./media/characters/sigvald/male-nsfw.svg",
  5230. extra: 182 / 164,
  5231. bottom: 8.7 / 190.5
  5232. }
  5233. },
  5234. hermNsfw: {
  5235. height: math.unit(8, "feet"),
  5236. weight: math.unit(350, "lb"),
  5237. name: "Herm (NSFW)",
  5238. image: {
  5239. source: "./media/characters/sigvald/herm-nsfw.svg",
  5240. extra: 182 / 164,
  5241. bottom: 8.7 / 190.5
  5242. }
  5243. },
  5244. dick: {
  5245. height: math.unit(2.36, "feet"),
  5246. name: "Dick",
  5247. image: {
  5248. source: "./media/characters/sigvald/dick.svg"
  5249. }
  5250. },
  5251. eye: {
  5252. height: math.unit(0.31, "feet"),
  5253. name: "Eye",
  5254. image: {
  5255. source: "./media/characters/sigvald/eye.svg"
  5256. }
  5257. },
  5258. mouth: {
  5259. height: math.unit(0.92, "feet"),
  5260. name: "Mouth",
  5261. image: {
  5262. source: "./media/characters/sigvald/mouth.svg"
  5263. }
  5264. },
  5265. paws: {
  5266. height: math.unit(2.2, "feet"),
  5267. name: "Paws",
  5268. image: {
  5269. source: "./media/characters/sigvald/paws.svg"
  5270. }
  5271. }
  5272. },
  5273. [
  5274. {
  5275. name: "Normal",
  5276. height: math.unit(8, "feet")
  5277. },
  5278. {
  5279. name: "Large",
  5280. height: math.unit(12, "feet")
  5281. },
  5282. {
  5283. name: "Larger",
  5284. height: math.unit(20, "feet")
  5285. },
  5286. {
  5287. name: "Macro",
  5288. height: math.unit(150, "feet")
  5289. },
  5290. {
  5291. name: "Macro+",
  5292. height: math.unit(200, "feet"),
  5293. default: true
  5294. },
  5295. ]
  5296. ))
  5297. characterMakers.push(() => makeCharacter(
  5298. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5299. {
  5300. side: {
  5301. height: math.unit(12, "feet"),
  5302. weight: math.unit(2000, "kg"),
  5303. name: "Side",
  5304. image: {
  5305. source: "./media/characters/scott/side.svg",
  5306. extra: 754 / 724,
  5307. bottom: 0.069
  5308. }
  5309. },
  5310. upright: {
  5311. height: math.unit(12, "feet"),
  5312. weight: math.unit(2000, "kg"),
  5313. name: "Upright",
  5314. image: {
  5315. source: "./media/characters/scott/upright.svg",
  5316. extra: 3881 / 3722,
  5317. bottom: 0.05
  5318. }
  5319. },
  5320. },
  5321. [
  5322. {
  5323. name: "Normal",
  5324. height: math.unit(12, "feet"),
  5325. default: true
  5326. },
  5327. ]
  5328. ))
  5329. characterMakers.push(() => makeCharacter(
  5330. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5331. {
  5332. side: {
  5333. height: math.unit(8, "meters"),
  5334. weight: math.unit(84755, "lbs"),
  5335. name: "Side",
  5336. image: {
  5337. source: "./media/characters/tobias/side.svg",
  5338. extra: 1474 / 1096,
  5339. bottom: 38.9 / 1513.1235
  5340. }
  5341. },
  5342. },
  5343. [
  5344. {
  5345. name: "Normal",
  5346. height: math.unit(8, "meters"),
  5347. default: true
  5348. },
  5349. ]
  5350. ))
  5351. characterMakers.push(() => makeCharacter(
  5352. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5353. {
  5354. front: {
  5355. height: math.unit(5.5, "feet"),
  5356. weight: math.unit(400, "lbs"),
  5357. name: "Front",
  5358. image: {
  5359. source: "./media/characters/kieran/front.svg",
  5360. extra: 2694 / 2364,
  5361. bottom: 217 / 2908
  5362. }
  5363. },
  5364. side: {
  5365. height: math.unit(5.5, "feet"),
  5366. weight: math.unit(400, "lbs"),
  5367. name: "Side",
  5368. image: {
  5369. source: "./media/characters/kieran/side.svg",
  5370. extra: 875 / 777,
  5371. bottom: 84.6 / 959
  5372. }
  5373. },
  5374. },
  5375. [
  5376. {
  5377. name: "Normal",
  5378. height: math.unit(5.5, "feet"),
  5379. default: true
  5380. },
  5381. ]
  5382. ))
  5383. characterMakers.push(() => makeCharacter(
  5384. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5385. {
  5386. side: {
  5387. height: math.unit(2, "meters"),
  5388. weight: math.unit(70, "kg"),
  5389. name: "Side",
  5390. image: {
  5391. source: "./media/characters/sanya/side.svg",
  5392. bottom: 0.02,
  5393. extra: 1.02
  5394. }
  5395. },
  5396. },
  5397. [
  5398. {
  5399. name: "Small",
  5400. height: math.unit(2, "meters")
  5401. },
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(3, "meters")
  5405. },
  5406. {
  5407. name: "Macro",
  5408. height: math.unit(16, "meters"),
  5409. default: true
  5410. },
  5411. ]
  5412. ))
  5413. characterMakers.push(() => makeCharacter(
  5414. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5415. {
  5416. front: {
  5417. height: math.unit(2, "meters"),
  5418. weight: math.unit(120, "kg"),
  5419. name: "Front",
  5420. image: {
  5421. source: "./media/characters/miranda/front.svg",
  5422. extra: 195 / 185,
  5423. bottom: 10.9 / 206.5
  5424. }
  5425. },
  5426. back: {
  5427. height: math.unit(2, "meters"),
  5428. weight: math.unit(120, "kg"),
  5429. name: "Back",
  5430. image: {
  5431. source: "./media/characters/miranda/back.svg",
  5432. extra: 201 / 193,
  5433. bottom: 2.3 / 203.7
  5434. }
  5435. },
  5436. },
  5437. [
  5438. {
  5439. name: "Normal",
  5440. height: math.unit(10, "feet"),
  5441. default: true
  5442. }
  5443. ]
  5444. ))
  5445. characterMakers.push(() => makeCharacter(
  5446. { name: "James", species: ["deer"], tags: ["anthro"] },
  5447. {
  5448. side: {
  5449. height: math.unit(2, "meters"),
  5450. weight: math.unit(100, "kg"),
  5451. name: "Front",
  5452. image: {
  5453. source: "./media/characters/james/front.svg",
  5454. extra: 10 / 8.5
  5455. }
  5456. },
  5457. },
  5458. [
  5459. {
  5460. name: "Normal",
  5461. height: math.unit(8.5, "feet"),
  5462. default: true
  5463. }
  5464. ]
  5465. ))
  5466. characterMakers.push(() => makeCharacter(
  5467. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5468. {
  5469. side: {
  5470. height: math.unit(9.5, "feet"),
  5471. weight: math.unit(2500, "lbs"),
  5472. name: "Side",
  5473. image: {
  5474. source: "./media/characters/heather/side.svg"
  5475. }
  5476. },
  5477. },
  5478. [
  5479. {
  5480. name: "Normal",
  5481. height: math.unit(9.5, "feet"),
  5482. default: true
  5483. }
  5484. ]
  5485. ))
  5486. characterMakers.push(() => makeCharacter(
  5487. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5488. {
  5489. side: {
  5490. height: math.unit(6.5, "feet"),
  5491. weight: math.unit(400, "lbs"),
  5492. name: "Side",
  5493. image: {
  5494. source: "./media/characters/lukas/side.svg",
  5495. extra: 7.25 / 6.5
  5496. }
  5497. },
  5498. },
  5499. [
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(6.5, "feet"),
  5503. default: true
  5504. }
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5509. {
  5510. side: {
  5511. height: math.unit(5, "feet"),
  5512. weight: math.unit(3000, "lbs"),
  5513. name: "Side",
  5514. image: {
  5515. source: "./media/characters/louise/side.svg"
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "Normal",
  5522. height: math.unit(5, "feet"),
  5523. default: true
  5524. }
  5525. ]
  5526. ))
  5527. characterMakers.push(() => makeCharacter(
  5528. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5529. {
  5530. side: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(150, "lbs"),
  5533. name: "Side",
  5534. image: {
  5535. source: "./media/characters/ramona/side.svg",
  5536. extra: 871/854,
  5537. bottom: 41/912
  5538. }
  5539. },
  5540. },
  5541. [
  5542. {
  5543. name: "Normal",
  5544. height: math.unit(5.3, "meters"),
  5545. default: true
  5546. },
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(20, "stories")
  5550. },
  5551. {
  5552. name: "Macro+",
  5553. height: math.unit(50, "stories")
  5554. },
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5559. {
  5560. standing: {
  5561. height: math.unit(5.75, "feet"),
  5562. weight: math.unit(160, "lbs"),
  5563. name: "Standing",
  5564. image: {
  5565. source: "./media/characters/deerpuff/standing.svg",
  5566. extra: 682 / 624
  5567. }
  5568. },
  5569. sitting: {
  5570. height: math.unit(5.75 / 1.79, "feet"),
  5571. weight: math.unit(160, "lbs"),
  5572. name: "Sitting",
  5573. image: {
  5574. source: "./media/characters/deerpuff/sitting.svg",
  5575. bottom: 44 / 400,
  5576. extra: 1
  5577. }
  5578. },
  5579. taurLaying: {
  5580. height: math.unit(6, "feet"),
  5581. weight: math.unit(400, "lbs"),
  5582. name: "Taur (Laying)",
  5583. image: {
  5584. source: "./media/characters/deerpuff/taur-laying.svg"
  5585. }
  5586. },
  5587. },
  5588. [
  5589. {
  5590. name: "Puffball",
  5591. height: math.unit(6, "inches")
  5592. },
  5593. {
  5594. name: "Normalpuff",
  5595. height: math.unit(5.75, "feet")
  5596. },
  5597. {
  5598. name: "Macropuff",
  5599. height: math.unit(1500, "feet"),
  5600. default: true
  5601. },
  5602. {
  5603. name: "Megapuff",
  5604. height: math.unit(500, "miles")
  5605. },
  5606. {
  5607. name: "Gigapuff",
  5608. height: math.unit(250000, "miles")
  5609. },
  5610. {
  5611. name: "Omegapuff",
  5612. height: math.unit(1000, "lightyears")
  5613. },
  5614. ]
  5615. ))
  5616. characterMakers.push(() => makeCharacter(
  5617. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5618. {
  5619. stomping: {
  5620. height: math.unit(6, "feet"),
  5621. weight: math.unit(170, "lbs"),
  5622. name: "Stomping",
  5623. image: {
  5624. source: "./media/characters/vivian/stomping.svg"
  5625. }
  5626. },
  5627. sitting: {
  5628. height: math.unit(6 / 1.75, "feet"),
  5629. weight: math.unit(170, "lbs"),
  5630. name: "Sitting",
  5631. image: {
  5632. source: "./media/characters/vivian/sitting.svg",
  5633. bottom: 1 / 6.4,
  5634. extra: 1,
  5635. }
  5636. },
  5637. },
  5638. [
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(7, "feet"),
  5642. default: true
  5643. },
  5644. {
  5645. name: "Macro",
  5646. height: math.unit(10, "stories")
  5647. },
  5648. {
  5649. name: "Macro+",
  5650. height: math.unit(30, "stories")
  5651. },
  5652. {
  5653. name: "Megamacro",
  5654. height: math.unit(10, "miles")
  5655. },
  5656. {
  5657. name: "Megamacro+",
  5658. height: math.unit(2750000, "meters")
  5659. },
  5660. ]
  5661. ))
  5662. characterMakers.push(() => makeCharacter(
  5663. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5664. {
  5665. front: {
  5666. height: math.unit(6, "feet"),
  5667. weight: math.unit(160, "lbs"),
  5668. name: "Front",
  5669. image: {
  5670. source: "./media/characters/prince/front.svg",
  5671. extra: 3400 / 3000
  5672. }
  5673. },
  5674. jumping: {
  5675. height: math.unit(6, "feet"),
  5676. weight: math.unit(160, "lbs"),
  5677. name: "Jumping",
  5678. image: {
  5679. source: "./media/characters/prince/jump.svg",
  5680. extra: 2555 / 2134
  5681. }
  5682. },
  5683. },
  5684. [
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(7.75, "feet"),
  5688. default: true
  5689. },
  5690. {
  5691. name: "Not cute",
  5692. height: math.unit(17, "feet")
  5693. },
  5694. {
  5695. name: "I said NOT",
  5696. height: math.unit(91, "feet")
  5697. },
  5698. {
  5699. name: "Please stop",
  5700. height: math.unit(560, "feet")
  5701. },
  5702. {
  5703. name: "What have you done",
  5704. height: math.unit(2200, "feet")
  5705. },
  5706. {
  5707. name: "Deer God",
  5708. height: math.unit(3.6, "miles")
  5709. },
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5714. {
  5715. standing: {
  5716. height: math.unit(6, "feet"),
  5717. weight: math.unit(300, "lbs"),
  5718. name: "Standing",
  5719. image: {
  5720. source: "./media/characters/psymon/standing.svg",
  5721. extra: 1888 / 1810,
  5722. bottom: 0.05
  5723. }
  5724. },
  5725. slithering: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(300, "lbs"),
  5728. name: "Slithering",
  5729. image: {
  5730. source: "./media/characters/psymon/slithering.svg",
  5731. extra: 1330 / 1224
  5732. }
  5733. },
  5734. slitheringAlt: {
  5735. height: math.unit(6, "feet"),
  5736. weight: math.unit(300, "lbs"),
  5737. name: "Slithering (Alt)",
  5738. image: {
  5739. source: "./media/characters/psymon/slithering-alt.svg",
  5740. extra: 1330 / 1224
  5741. }
  5742. },
  5743. },
  5744. [
  5745. {
  5746. name: "Normal",
  5747. height: math.unit(11.25, "feet"),
  5748. default: true
  5749. },
  5750. {
  5751. name: "Large",
  5752. height: math.unit(27, "feet")
  5753. },
  5754. {
  5755. name: "Giant",
  5756. height: math.unit(87, "feet")
  5757. },
  5758. {
  5759. name: "Macro",
  5760. height: math.unit(365, "feet")
  5761. },
  5762. {
  5763. name: "Megamacro",
  5764. height: math.unit(3, "miles")
  5765. },
  5766. {
  5767. name: "World Serpent",
  5768. height: math.unit(8000, "miles")
  5769. },
  5770. ]
  5771. ))
  5772. characterMakers.push(() => makeCharacter(
  5773. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5774. {
  5775. front: {
  5776. height: math.unit(6, "feet"),
  5777. weight: math.unit(180, "lbs"),
  5778. name: "Front",
  5779. image: {
  5780. source: "./media/characters/daimos/front.svg",
  5781. extra: 4160 / 3897,
  5782. bottom: 0.021
  5783. }
  5784. }
  5785. },
  5786. [
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(8, "feet"),
  5790. default: true
  5791. },
  5792. {
  5793. name: "Big Dog",
  5794. height: math.unit(22, "feet")
  5795. },
  5796. {
  5797. name: "Macro",
  5798. height: math.unit(127, "feet")
  5799. },
  5800. {
  5801. name: "Megamacro",
  5802. height: math.unit(3600, "feet")
  5803. },
  5804. ]
  5805. ))
  5806. characterMakers.push(() => makeCharacter(
  5807. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5808. {
  5809. side: {
  5810. height: math.unit(6, "feet"),
  5811. weight: math.unit(180, "lbs"),
  5812. name: "Side",
  5813. image: {
  5814. source: "./media/characters/blake/side.svg",
  5815. extra: 1212 / 1120,
  5816. bottom: 0.05
  5817. }
  5818. },
  5819. crouched: {
  5820. height: math.unit(6 * 0.57, "feet"),
  5821. weight: math.unit(180, "lbs"),
  5822. name: "Crouched",
  5823. image: {
  5824. source: "./media/characters/blake/crouched.svg",
  5825. extra: 840 / 587,
  5826. bottom: 0.04
  5827. }
  5828. },
  5829. bent: {
  5830. height: math.unit(6 * 0.75, "feet"),
  5831. weight: math.unit(180, "lbs"),
  5832. name: "Bent",
  5833. image: {
  5834. source: "./media/characters/blake/bent.svg",
  5835. extra: 592 / 544,
  5836. bottom: 0.035
  5837. }
  5838. },
  5839. },
  5840. [
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(8 + 1 / 6, "feet"),
  5844. default: true
  5845. },
  5846. {
  5847. name: "Big Backside",
  5848. height: math.unit(37, "feet")
  5849. },
  5850. {
  5851. name: "Subway Shredder",
  5852. height: math.unit(72, "feet")
  5853. },
  5854. {
  5855. name: "City Carver",
  5856. height: math.unit(1675, "feet")
  5857. },
  5858. {
  5859. name: "Tectonic Tweaker",
  5860. height: math.unit(2300, "miles")
  5861. },
  5862. ]
  5863. ))
  5864. characterMakers.push(() => makeCharacter(
  5865. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5866. {
  5867. front: {
  5868. height: math.unit(6, "feet"),
  5869. weight: math.unit(180, "lbs"),
  5870. name: "Front",
  5871. image: {
  5872. source: "./media/characters/guisetto/front.svg",
  5873. extra: 856 / 817,
  5874. bottom: 0.06
  5875. }
  5876. },
  5877. airborne: {
  5878. height: math.unit(6, "feet"),
  5879. weight: math.unit(180, "lbs"),
  5880. name: "Airborne",
  5881. image: {
  5882. source: "./media/characters/guisetto/airborne.svg",
  5883. extra: 584 / 525
  5884. }
  5885. },
  5886. },
  5887. [
  5888. {
  5889. name: "Normal",
  5890. height: math.unit(10 + 11 / 12, "feet"),
  5891. default: true
  5892. },
  5893. {
  5894. name: "Large",
  5895. height: math.unit(35, "feet")
  5896. },
  5897. {
  5898. name: "Macro",
  5899. height: math.unit(475, "feet")
  5900. },
  5901. ]
  5902. ))
  5903. characterMakers.push(() => makeCharacter(
  5904. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5905. {
  5906. front: {
  5907. height: math.unit(6, "feet"),
  5908. weight: math.unit(180, "lbs"),
  5909. name: "Front",
  5910. image: {
  5911. source: "./media/characters/luxor/front.svg",
  5912. extra: 2940 / 2152
  5913. }
  5914. },
  5915. back: {
  5916. height: math.unit(6, "feet"),
  5917. weight: math.unit(180, "lbs"),
  5918. name: "Back",
  5919. image: {
  5920. source: "./media/characters/luxor/back.svg",
  5921. extra: 1083 / 960
  5922. }
  5923. },
  5924. },
  5925. [
  5926. {
  5927. name: "Normal",
  5928. height: math.unit(5 + 5 / 6, "feet"),
  5929. default: true
  5930. },
  5931. {
  5932. name: "Lamp",
  5933. height: math.unit(50, "feet")
  5934. },
  5935. {
  5936. name: "Lämp",
  5937. height: math.unit(300, "feet")
  5938. },
  5939. {
  5940. name: "The sun is a lamp",
  5941. height: math.unit(250000, "miles")
  5942. },
  5943. ]
  5944. ))
  5945. characterMakers.push(() => makeCharacter(
  5946. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5947. {
  5948. front: {
  5949. height: math.unit(6, "feet"),
  5950. weight: math.unit(50, "lbs"),
  5951. name: "Front",
  5952. image: {
  5953. source: "./media/characters/huoyan/front.svg"
  5954. }
  5955. },
  5956. side: {
  5957. height: math.unit(6, "feet"),
  5958. weight: math.unit(180, "lbs"),
  5959. name: "Side",
  5960. image: {
  5961. source: "./media/characters/huoyan/side.svg"
  5962. }
  5963. },
  5964. },
  5965. [
  5966. {
  5967. name: "Chef",
  5968. height: math.unit(9, "feet")
  5969. },
  5970. {
  5971. name: "Normal",
  5972. height: math.unit(65, "feet"),
  5973. default: true
  5974. },
  5975. {
  5976. name: "Macro",
  5977. height: math.unit(780, "feet")
  5978. },
  5979. {
  5980. name: "Flaming Mountain",
  5981. height: math.unit(4.8, "miles")
  5982. },
  5983. {
  5984. name: "Celestial",
  5985. height: math.unit(765000, "miles")
  5986. },
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5991. {
  5992. front: {
  5993. height: math.unit(5 + 3 / 4, "feet"),
  5994. weight: math.unit(120, "lbs"),
  5995. name: "Front",
  5996. image: {
  5997. source: "./media/characters/tails/front.svg"
  5998. }
  5999. }
  6000. },
  6001. [
  6002. {
  6003. name: "Normal",
  6004. height: math.unit(5 + 3 / 4, "feet"),
  6005. default: true
  6006. }
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6011. {
  6012. front: {
  6013. height: math.unit(4, "feet"),
  6014. weight: math.unit(50, "lbs"),
  6015. name: "Front",
  6016. image: {
  6017. source: "./media/characters/rainy/front.svg"
  6018. }
  6019. }
  6020. },
  6021. [
  6022. {
  6023. name: "Macro",
  6024. height: math.unit(800, "feet"),
  6025. default: true
  6026. }
  6027. ]
  6028. ))
  6029. characterMakers.push(() => makeCharacter(
  6030. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6031. {
  6032. front: {
  6033. height: math.unit(6, "feet"),
  6034. weight: math.unit(150, "lbs"),
  6035. name: "Front",
  6036. image: {
  6037. source: "./media/characters/rainier/front.svg"
  6038. }
  6039. }
  6040. },
  6041. [
  6042. {
  6043. name: "Micro",
  6044. height: math.unit(2, "mm"),
  6045. default: true
  6046. }
  6047. ]
  6048. ))
  6049. characterMakers.push(() => makeCharacter(
  6050. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6051. {
  6052. front: {
  6053. height: math.unit(8 + 4/12, "feet"),
  6054. weight: math.unit(450, "kilograms"),
  6055. volume: math.unit(5, "cups"),
  6056. name: "Front",
  6057. image: {
  6058. source: "./media/characters/andy-renard/front.svg",
  6059. extra: 1839/1726,
  6060. bottom: 134/1973
  6061. }
  6062. },
  6063. back: {
  6064. height: math.unit(8 + 4/12, "feet"),
  6065. weight: math.unit(450, "kilograms"),
  6066. volume: math.unit(5, "cups"),
  6067. name: "Back",
  6068. image: {
  6069. source: "./media/characters/andy-renard/back.svg",
  6070. extra: 1838/1710,
  6071. bottom: 105/1943
  6072. }
  6073. },
  6074. },
  6075. [
  6076. {
  6077. name: "Tall",
  6078. height: math.unit(8 + 4/12, "feet")
  6079. },
  6080. {
  6081. name: "Mini Macro",
  6082. height: math.unit(15, "feet"),
  6083. default: true
  6084. },
  6085. {
  6086. name: "Macro",
  6087. height: math.unit(100, "feet")
  6088. },
  6089. {
  6090. name: "Mega Macro",
  6091. height: math.unit(1000, "feet")
  6092. },
  6093. {
  6094. name: "Giga Macro",
  6095. height: math.unit(10, "miles")
  6096. },
  6097. {
  6098. name: "God Macro",
  6099. height: math.unit(1, "multiverse")
  6100. },
  6101. ]
  6102. ))
  6103. characterMakers.push(() => makeCharacter(
  6104. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6105. {
  6106. front: {
  6107. height: math.unit(6, "feet"),
  6108. weight: math.unit(210, "lbs"),
  6109. name: "Front",
  6110. image: {
  6111. source: "./media/characters/cimmaron/front-sfw.svg",
  6112. extra: 701 / 676,
  6113. bottom: 0.046
  6114. }
  6115. },
  6116. back: {
  6117. height: math.unit(6, "feet"),
  6118. weight: math.unit(210, "lbs"),
  6119. name: "Back",
  6120. image: {
  6121. source: "./media/characters/cimmaron/back-sfw.svg",
  6122. extra: 701 / 676,
  6123. bottom: 0.046
  6124. }
  6125. },
  6126. frontNsfw: {
  6127. height: math.unit(6, "feet"),
  6128. weight: math.unit(210, "lbs"),
  6129. name: "Front (NSFW)",
  6130. image: {
  6131. source: "./media/characters/cimmaron/front-nsfw.svg",
  6132. extra: 701 / 676,
  6133. bottom: 0.046
  6134. }
  6135. },
  6136. backNsfw: {
  6137. height: math.unit(6, "feet"),
  6138. weight: math.unit(210, "lbs"),
  6139. name: "Back (NSFW)",
  6140. image: {
  6141. source: "./media/characters/cimmaron/back-nsfw.svg",
  6142. extra: 701 / 676,
  6143. bottom: 0.046
  6144. }
  6145. },
  6146. dick: {
  6147. height: math.unit(1.714, "feet"),
  6148. name: "Dick",
  6149. image: {
  6150. source: "./media/characters/cimmaron/dick.svg"
  6151. }
  6152. },
  6153. },
  6154. [
  6155. {
  6156. name: "Normal",
  6157. height: math.unit(6, "feet"),
  6158. default: true
  6159. },
  6160. {
  6161. name: "Macro Mayor",
  6162. height: math.unit(350, "meters")
  6163. },
  6164. ]
  6165. ))
  6166. characterMakers.push(() => makeCharacter(
  6167. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6168. {
  6169. front: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(200, "lbs"),
  6172. name: "Front",
  6173. image: {
  6174. source: "./media/characters/akari/front.svg",
  6175. extra: 962 / 901,
  6176. bottom: 0.04
  6177. }
  6178. }
  6179. },
  6180. [
  6181. {
  6182. name: "Micro",
  6183. height: math.unit(5, "inches"),
  6184. default: true
  6185. },
  6186. {
  6187. name: "Normal",
  6188. height: math.unit(7, "feet")
  6189. },
  6190. ]
  6191. ))
  6192. characterMakers.push(() => makeCharacter(
  6193. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6194. {
  6195. front: {
  6196. height: math.unit(6, "feet"),
  6197. weight: math.unit(140, "lbs"),
  6198. name: "Front",
  6199. image: {
  6200. source: "./media/characters/cynosura/front.svg",
  6201. extra: 896 / 847
  6202. }
  6203. },
  6204. back: {
  6205. height: math.unit(6, "feet"),
  6206. weight: math.unit(140, "lbs"),
  6207. name: "Back",
  6208. image: {
  6209. source: "./media/characters/cynosura/back.svg",
  6210. extra: 1365 / 1250
  6211. }
  6212. },
  6213. },
  6214. [
  6215. {
  6216. name: "Micro",
  6217. height: math.unit(4, "inches")
  6218. },
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(5.75, "feet"),
  6222. default: true
  6223. },
  6224. {
  6225. name: "Tall",
  6226. height: math.unit(10, "feet")
  6227. },
  6228. {
  6229. name: "Big",
  6230. height: math.unit(20, "feet")
  6231. },
  6232. {
  6233. name: "Macro",
  6234. height: math.unit(50, "feet")
  6235. },
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6240. {
  6241. front: {
  6242. height: math.unit(13 + 2/12, "feet"),
  6243. weight: math.unit(800, "kg"),
  6244. name: "Front",
  6245. image: {
  6246. source: "./media/characters/gin/front.svg",
  6247. extra: 1312/1191,
  6248. bottom: 45/1357
  6249. }
  6250. },
  6251. mouth: {
  6252. height: math.unit(2.39 * 1.8, "feet"),
  6253. name: "Mouth",
  6254. image: {
  6255. source: "./media/characters/gin/mouth.svg"
  6256. }
  6257. },
  6258. hand: {
  6259. height: math.unit(1.57 * 2.19, "feet"),
  6260. name: "Hand",
  6261. image: {
  6262. source: "./media/characters/gin/hand.svg"
  6263. }
  6264. },
  6265. foot: {
  6266. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6267. name: "Foot",
  6268. image: {
  6269. source: "./media/characters/gin/foot.svg"
  6270. }
  6271. },
  6272. sole: {
  6273. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6274. name: "Sole",
  6275. image: {
  6276. source: "./media/characters/gin/sole.svg"
  6277. }
  6278. },
  6279. },
  6280. [
  6281. {
  6282. name: "Very Small",
  6283. height: math.unit(13 + 2 / 12, "feet")
  6284. },
  6285. {
  6286. name: "Micro",
  6287. height: math.unit(600, "miles")
  6288. },
  6289. {
  6290. name: "Regular",
  6291. height: math.unit(20, "earths"),
  6292. default: true
  6293. },
  6294. {
  6295. name: "Macro",
  6296. height: math.unit(2.2, "solarradii")
  6297. },
  6298. {
  6299. name: "Teramacro",
  6300. height: math.unit(1.2, "galaxies")
  6301. },
  6302. {
  6303. name: "Omegamacro",
  6304. height: math.unit(200, "universes")
  6305. },
  6306. ]
  6307. ))
  6308. characterMakers.push(() => makeCharacter(
  6309. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6310. {
  6311. front: {
  6312. height: math.unit(6 + 1 / 6, "feet"),
  6313. weight: math.unit(178, "lbs"),
  6314. name: "Front",
  6315. image: {
  6316. source: "./media/characters/guy/front.svg"
  6317. }
  6318. }
  6319. },
  6320. [
  6321. {
  6322. name: "Normal",
  6323. height: math.unit(6 + 1 / 6, "feet"),
  6324. default: true
  6325. },
  6326. {
  6327. name: "Large",
  6328. height: math.unit(25 + 7 / 12, "feet")
  6329. },
  6330. {
  6331. name: "Macro",
  6332. height: math.unit(60 + 9 / 12, "feet")
  6333. },
  6334. {
  6335. name: "Macro+",
  6336. height: math.unit(246, "feet")
  6337. },
  6338. {
  6339. name: "Macro++",
  6340. height: math.unit(878, "feet")
  6341. }
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6346. {
  6347. front: {
  6348. height: math.unit(9, "feet"),
  6349. weight: math.unit(800, "lbs"),
  6350. name: "Front",
  6351. image: {
  6352. source: "./media/characters/tiberius/front.svg",
  6353. extra: 2295 / 2071
  6354. }
  6355. },
  6356. back: {
  6357. height: math.unit(9, "feet"),
  6358. weight: math.unit(800, "lbs"),
  6359. name: "Back",
  6360. image: {
  6361. source: "./media/characters/tiberius/back.svg",
  6362. extra: 2373 / 2160
  6363. }
  6364. },
  6365. },
  6366. [
  6367. {
  6368. name: "Normal",
  6369. height: math.unit(9, "feet"),
  6370. default: true
  6371. }
  6372. ]
  6373. ))
  6374. characterMakers.push(() => makeCharacter(
  6375. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6376. {
  6377. front: {
  6378. height: math.unit(6, "feet"),
  6379. weight: math.unit(600, "lbs"),
  6380. name: "Front",
  6381. image: {
  6382. source: "./media/characters/surgo/front.svg",
  6383. extra: 3591 / 2227
  6384. }
  6385. },
  6386. back: {
  6387. height: math.unit(6, "feet"),
  6388. weight: math.unit(600, "lbs"),
  6389. name: "Back",
  6390. image: {
  6391. source: "./media/characters/surgo/back.svg",
  6392. extra: 3557 / 2228
  6393. }
  6394. },
  6395. laying: {
  6396. height: math.unit(6 * 0.85, "feet"),
  6397. weight: math.unit(600, "lbs"),
  6398. name: "Laying",
  6399. image: {
  6400. source: "./media/characters/surgo/laying.svg"
  6401. }
  6402. },
  6403. },
  6404. [
  6405. {
  6406. name: "Normal",
  6407. height: math.unit(6, "feet"),
  6408. default: true
  6409. }
  6410. ]
  6411. ))
  6412. characterMakers.push(() => makeCharacter(
  6413. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6414. {
  6415. side: {
  6416. height: math.unit(6, "feet"),
  6417. weight: math.unit(150, "lbs"),
  6418. name: "Side",
  6419. image: {
  6420. source: "./media/characters/cibus/side.svg",
  6421. extra: 800 / 400
  6422. }
  6423. },
  6424. },
  6425. [
  6426. {
  6427. name: "Normal",
  6428. height: math.unit(6, "feet"),
  6429. default: true
  6430. }
  6431. ]
  6432. ))
  6433. characterMakers.push(() => makeCharacter(
  6434. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6435. {
  6436. front: {
  6437. height: math.unit(6, "feet"),
  6438. weight: math.unit(240, "lbs"),
  6439. name: "Front",
  6440. image: {
  6441. source: "./media/characters/nibbles/front.svg"
  6442. }
  6443. },
  6444. side: {
  6445. height: math.unit(6, "feet"),
  6446. weight: math.unit(240, "lbs"),
  6447. name: "Side",
  6448. image: {
  6449. source: "./media/characters/nibbles/side.svg"
  6450. }
  6451. },
  6452. },
  6453. [
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(9, "feet"),
  6457. default: true
  6458. }
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6463. {
  6464. side: {
  6465. height: math.unit(5 + 1 / 6, "feet"),
  6466. weight: math.unit(130, "lbs"),
  6467. name: "Side",
  6468. image: {
  6469. source: "./media/characters/rikky/side.svg",
  6470. extra: 851 / 801
  6471. }
  6472. },
  6473. },
  6474. [
  6475. {
  6476. name: "Normal",
  6477. height: math.unit(5 + 1 / 6, "feet")
  6478. },
  6479. {
  6480. name: "Macro",
  6481. height: math.unit(152, "feet"),
  6482. default: true
  6483. },
  6484. {
  6485. name: "Megamacro",
  6486. height: math.unit(7, "miles")
  6487. }
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6492. {
  6493. side: {
  6494. height: math.unit(370, "cm"),
  6495. weight: math.unit(350, "lbs"),
  6496. name: "Side",
  6497. image: {
  6498. source: "./media/characters/malfressa/side.svg"
  6499. }
  6500. },
  6501. walking: {
  6502. height: math.unit(370, "cm"),
  6503. weight: math.unit(350, "lbs"),
  6504. name: "Walking",
  6505. image: {
  6506. source: "./media/characters/malfressa/walking.svg"
  6507. }
  6508. },
  6509. feral: {
  6510. height: math.unit(2500, "cm"),
  6511. weight: math.unit(100000, "lbs"),
  6512. name: "Feral",
  6513. image: {
  6514. source: "./media/characters/malfressa/feral.svg",
  6515. extra: 2108 / 837,
  6516. bottom: 0.02
  6517. }
  6518. },
  6519. },
  6520. [
  6521. {
  6522. name: "Normal",
  6523. height: math.unit(370, "cm")
  6524. },
  6525. {
  6526. name: "Macro",
  6527. height: math.unit(300, "meters"),
  6528. default: true
  6529. }
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6534. {
  6535. front: {
  6536. height: math.unit(6, "feet"),
  6537. weight: math.unit(60, "kg"),
  6538. name: "Front",
  6539. image: {
  6540. source: "./media/characters/jaro/front.svg",
  6541. extra: 845/817,
  6542. bottom: 45/890
  6543. }
  6544. },
  6545. back: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(60, "kg"),
  6548. name: "Back",
  6549. image: {
  6550. source: "./media/characters/jaro/back.svg",
  6551. extra: 847/817,
  6552. bottom: 34/881
  6553. }
  6554. },
  6555. },
  6556. [
  6557. {
  6558. name: "Micro",
  6559. height: math.unit(7, "inches")
  6560. },
  6561. {
  6562. name: "Normal",
  6563. height: math.unit(5.5, "feet"),
  6564. default: true
  6565. },
  6566. {
  6567. name: "Minimacro",
  6568. height: math.unit(20, "feet")
  6569. },
  6570. {
  6571. name: "Macro",
  6572. height: math.unit(200, "meters")
  6573. }
  6574. ]
  6575. ))
  6576. characterMakers.push(() => makeCharacter(
  6577. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6578. {
  6579. front: {
  6580. height: math.unit(6, "feet"),
  6581. weight: math.unit(195, "lb"),
  6582. name: "Front",
  6583. image: {
  6584. source: "./media/characters/rogue/front.svg"
  6585. }
  6586. },
  6587. },
  6588. [
  6589. {
  6590. name: "Macro",
  6591. height: math.unit(90, "feet"),
  6592. default: true
  6593. },
  6594. ]
  6595. ))
  6596. characterMakers.push(() => makeCharacter(
  6597. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6598. {
  6599. standing: {
  6600. height: math.unit(5 + 8 / 12, "feet"),
  6601. weight: math.unit(140, "lb"),
  6602. name: "Standing",
  6603. image: {
  6604. source: "./media/characters/piper/standing.svg",
  6605. extra: 1440/1284,
  6606. bottom: 66/1506
  6607. }
  6608. },
  6609. running: {
  6610. height: math.unit(5 + 8 / 12, "feet"),
  6611. weight: math.unit(140, "lb"),
  6612. name: "Running",
  6613. image: {
  6614. source: "./media/characters/piper/running.svg",
  6615. extra: 3948/3655,
  6616. bottom: 0/3948
  6617. }
  6618. },
  6619. sole: {
  6620. height: math.unit(0.81, "feet"),
  6621. weight: math.unit(2, "kg"),
  6622. name: "Sole",
  6623. image: {
  6624. source: "./media/characters/piper/sole.svg"
  6625. }
  6626. },
  6627. nipple: {
  6628. height: math.unit(0.25, "feet"),
  6629. weight: math.unit(1.5, "lb"),
  6630. name: "Nipple",
  6631. image: {
  6632. source: "./media/characters/piper/nipple.svg"
  6633. }
  6634. },
  6635. head: {
  6636. height: math.unit(1.1, "feet"),
  6637. name: "Head",
  6638. image: {
  6639. source: "./media/characters/piper/head.svg"
  6640. }
  6641. },
  6642. },
  6643. [
  6644. {
  6645. name: "Micro",
  6646. height: math.unit(2, "inches")
  6647. },
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(5 + 8 / 12, "feet")
  6651. },
  6652. {
  6653. name: "Macro",
  6654. height: math.unit(250, "feet"),
  6655. default: true
  6656. },
  6657. {
  6658. name: "Megamacro",
  6659. height: math.unit(7, "miles")
  6660. },
  6661. ]
  6662. ))
  6663. characterMakers.push(() => makeCharacter(
  6664. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6665. {
  6666. front: {
  6667. height: math.unit(6, "feet"),
  6668. weight: math.unit(220, "lb"),
  6669. name: "Front",
  6670. image: {
  6671. source: "./media/characters/gemini/front.svg"
  6672. }
  6673. },
  6674. back: {
  6675. height: math.unit(6, "feet"),
  6676. weight: math.unit(220, "lb"),
  6677. name: "Back",
  6678. image: {
  6679. source: "./media/characters/gemini/back.svg"
  6680. }
  6681. },
  6682. kneeling: {
  6683. height: math.unit(6 / 1.5, "feet"),
  6684. weight: math.unit(220, "lb"),
  6685. name: "Kneeling",
  6686. image: {
  6687. source: "./media/characters/gemini/kneeling.svg",
  6688. bottom: 0.02
  6689. }
  6690. },
  6691. },
  6692. [
  6693. {
  6694. name: "Macro",
  6695. height: math.unit(300, "meters"),
  6696. default: true
  6697. },
  6698. {
  6699. name: "Megamacro",
  6700. height: math.unit(6900, "meters")
  6701. },
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6706. {
  6707. anthro: {
  6708. height: math.unit(2.35, "meters"),
  6709. weight: math.unit(73, "kg"),
  6710. name: "Anthro",
  6711. image: {
  6712. source: "./media/characters/alicia/anthro.svg",
  6713. extra: 2571 / 2385,
  6714. bottom: 75 / 2648
  6715. }
  6716. },
  6717. paw: {
  6718. height: math.unit(1.32, "feet"),
  6719. name: "Paw",
  6720. image: {
  6721. source: "./media/characters/alicia/paw.svg"
  6722. }
  6723. },
  6724. feral: {
  6725. height: math.unit(1.69, "meters"),
  6726. weight: math.unit(73, "kg"),
  6727. name: "Feral",
  6728. image: {
  6729. source: "./media/characters/alicia/feral.svg",
  6730. extra: 2123 / 1715,
  6731. bottom: 222 / 2349
  6732. }
  6733. },
  6734. },
  6735. [
  6736. {
  6737. name: "Normal",
  6738. height: math.unit(2.35, "meters")
  6739. },
  6740. {
  6741. name: "Macro",
  6742. height: math.unit(60, "meters"),
  6743. default: true
  6744. },
  6745. {
  6746. name: "Megamacro",
  6747. height: math.unit(10000, "kilometers")
  6748. },
  6749. ]
  6750. ))
  6751. characterMakers.push(() => makeCharacter(
  6752. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6753. {
  6754. front: {
  6755. height: math.unit(7, "feet"),
  6756. weight: math.unit(250, "lbs"),
  6757. name: "Front",
  6758. image: {
  6759. source: "./media/characters/archy/front.svg"
  6760. }
  6761. }
  6762. },
  6763. [
  6764. {
  6765. name: "Micro",
  6766. height: math.unit(1, "inch")
  6767. },
  6768. {
  6769. name: "Shorty",
  6770. height: math.unit(5, "feet")
  6771. },
  6772. {
  6773. name: "Normal",
  6774. height: math.unit(7, "feet")
  6775. },
  6776. {
  6777. name: "Macro",
  6778. height: math.unit(600, "meters"),
  6779. default: true
  6780. },
  6781. {
  6782. name: "Megamacro",
  6783. height: math.unit(1, "mile")
  6784. },
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6789. {
  6790. front: {
  6791. height: math.unit(1.65, "meters"),
  6792. weight: math.unit(74, "kg"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/berri/front.svg",
  6796. extra: 857 / 837,
  6797. bottom: 18 / 877
  6798. }
  6799. },
  6800. bum: {
  6801. height: math.unit(1.46, "feet"),
  6802. name: "Bum",
  6803. image: {
  6804. source: "./media/characters/berri/bum.svg"
  6805. }
  6806. },
  6807. mouth: {
  6808. height: math.unit(0.44, "feet"),
  6809. name: "Mouth",
  6810. image: {
  6811. source: "./media/characters/berri/mouth.svg"
  6812. }
  6813. },
  6814. paw: {
  6815. height: math.unit(0.826, "feet"),
  6816. name: "Paw",
  6817. image: {
  6818. source: "./media/characters/berri/paw.svg"
  6819. }
  6820. },
  6821. },
  6822. [
  6823. {
  6824. name: "Normal",
  6825. height: math.unit(1.65, "meters")
  6826. },
  6827. {
  6828. name: "Macro",
  6829. height: math.unit(60, "m"),
  6830. default: true
  6831. },
  6832. {
  6833. name: "Megamacro",
  6834. height: math.unit(9.213, "km")
  6835. },
  6836. {
  6837. name: "Planet Eater",
  6838. height: math.unit(489, "megameters")
  6839. },
  6840. {
  6841. name: "Teramacro",
  6842. height: math.unit(2471635000000, "meters")
  6843. },
  6844. {
  6845. name: "Examacro",
  6846. height: math.unit(8.0624e+26, "meters")
  6847. }
  6848. ]
  6849. ))
  6850. characterMakers.push(() => makeCharacter(
  6851. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6852. {
  6853. front: {
  6854. height: math.unit(1.72, "meters"),
  6855. weight: math.unit(68, "kg"),
  6856. name: "Front",
  6857. image: {
  6858. source: "./media/characters/lexi/front.svg"
  6859. }
  6860. }
  6861. },
  6862. [
  6863. {
  6864. name: "Very Smol",
  6865. height: math.unit(10, "mm")
  6866. },
  6867. {
  6868. name: "Micro",
  6869. height: math.unit(6.8, "cm"),
  6870. default: true
  6871. },
  6872. {
  6873. name: "Normal",
  6874. height: math.unit(1.72, "m")
  6875. }
  6876. ]
  6877. ))
  6878. characterMakers.push(() => makeCharacter(
  6879. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6880. {
  6881. front: {
  6882. height: math.unit(1.69, "meters"),
  6883. weight: math.unit(68, "kg"),
  6884. name: "Front",
  6885. image: {
  6886. source: "./media/characters/martin/front.svg",
  6887. extra: 596 / 581
  6888. }
  6889. }
  6890. },
  6891. [
  6892. {
  6893. name: "Micro",
  6894. height: math.unit(6.85, "cm"),
  6895. default: true
  6896. },
  6897. {
  6898. name: "Normal",
  6899. height: math.unit(1.69, "m")
  6900. }
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6905. {
  6906. front: {
  6907. height: math.unit(1.69, "meters"),
  6908. weight: math.unit(68, "kg"),
  6909. name: "Front",
  6910. image: {
  6911. source: "./media/characters/juno/front.svg"
  6912. }
  6913. }
  6914. },
  6915. [
  6916. {
  6917. name: "Micro",
  6918. height: math.unit(7, "cm")
  6919. },
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(1.89, "m")
  6923. },
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(353, "meters"),
  6927. default: true
  6928. }
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6933. {
  6934. front: {
  6935. height: math.unit(1.93, "meters"),
  6936. weight: math.unit(83, "kg"),
  6937. name: "Front",
  6938. image: {
  6939. source: "./media/characters/samantha/front.svg"
  6940. }
  6941. },
  6942. frontClothed: {
  6943. height: math.unit(1.93, "meters"),
  6944. weight: math.unit(83, "kg"),
  6945. name: "Front (Clothed)",
  6946. image: {
  6947. source: "./media/characters/samantha/front-clothed.svg"
  6948. }
  6949. },
  6950. back: {
  6951. height: math.unit(1.93, "meters"),
  6952. weight: math.unit(83, "kg"),
  6953. name: "Back",
  6954. image: {
  6955. source: "./media/characters/samantha/back.svg"
  6956. }
  6957. },
  6958. },
  6959. [
  6960. {
  6961. name: "Normal",
  6962. height: math.unit(1.93, "m")
  6963. },
  6964. {
  6965. name: "Macro",
  6966. height: math.unit(74, "meters"),
  6967. default: true
  6968. },
  6969. {
  6970. name: "Macro+",
  6971. height: math.unit(223, "meters"),
  6972. },
  6973. {
  6974. name: "Megamacro",
  6975. height: math.unit(8381, "meters"),
  6976. },
  6977. {
  6978. name: "Megamacro+",
  6979. height: math.unit(12000, "kilometers")
  6980. },
  6981. ]
  6982. ))
  6983. characterMakers.push(() => makeCharacter(
  6984. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6985. {
  6986. front: {
  6987. height: math.unit(1.92, "meters"),
  6988. weight: math.unit(80, "kg"),
  6989. name: "Front",
  6990. image: {
  6991. source: "./media/characters/dr-clay/front.svg"
  6992. }
  6993. },
  6994. frontClothed: {
  6995. height: math.unit(1.92, "meters"),
  6996. weight: math.unit(80, "kg"),
  6997. name: "Front (Clothed)",
  6998. image: {
  6999. source: "./media/characters/dr-clay/front-clothed.svg"
  7000. }
  7001. }
  7002. },
  7003. [
  7004. {
  7005. name: "Normal",
  7006. height: math.unit(1.92, "m")
  7007. },
  7008. {
  7009. name: "Macro",
  7010. height: math.unit(214, "meters"),
  7011. default: true
  7012. },
  7013. {
  7014. name: "Macro+",
  7015. height: math.unit(12.237, "meters"),
  7016. },
  7017. {
  7018. name: "Megamacro",
  7019. height: math.unit(557, "megameters"),
  7020. },
  7021. {
  7022. name: "Unimaginable",
  7023. height: math.unit(120e9, "lightyears")
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(2, "meters"),
  7032. weight: math.unit(80, "kg"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7036. }
  7037. }
  7038. },
  7039. [
  7040. {
  7041. name: "Teramacro",
  7042. height: math.unit(500000, "lightyears"),
  7043. default: true
  7044. },
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7049. {
  7050. crux: {
  7051. height: math.unit(2, "meters"),
  7052. weight: math.unit(150, "kg"),
  7053. name: "Crux",
  7054. image: {
  7055. source: "./media/characters/vemus/crux.svg",
  7056. extra: 1074/936,
  7057. bottom: 23/1097
  7058. }
  7059. },
  7060. skunkTanuki: {
  7061. height: math.unit(2, "meters"),
  7062. weight: math.unit(150, "kg"),
  7063. name: "Skunk-Tanuki",
  7064. image: {
  7065. source: "./media/characters/vemus/skunk-tanuki.svg",
  7066. extra: 926/893,
  7067. bottom: 20/946
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(3.75, "meters"),
  7075. default: true
  7076. },
  7077. {
  7078. name: "Big",
  7079. height: math.unit(8, "meters")
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(100, "meters")
  7084. },
  7085. {
  7086. name: "Macro+",
  7087. height: math.unit(1500, "meters")
  7088. },
  7089. {
  7090. name: "Stellar",
  7091. height: math.unit(14e8, "meters")
  7092. },
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(2, "meters"),
  7100. weight: math.unit(70, "kg"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/beherit/front.svg",
  7104. extra: 1234/1109,
  7105. bottom: 55/1289
  7106. }
  7107. }
  7108. },
  7109. [
  7110. {
  7111. name: "Normal",
  7112. height: math.unit(6, "feet")
  7113. },
  7114. {
  7115. name: "Lorg",
  7116. height: math.unit(25, "feet"),
  7117. default: true
  7118. },
  7119. {
  7120. name: "Lorger",
  7121. height: math.unit(75, "feet")
  7122. },
  7123. {
  7124. name: "Macro",
  7125. height: math.unit(200, "meters")
  7126. },
  7127. ]
  7128. ))
  7129. characterMakers.push(() => makeCharacter(
  7130. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7131. {
  7132. front: {
  7133. height: math.unit(2, "meters"),
  7134. weight: math.unit(150, "kg"),
  7135. name: "Front",
  7136. image: {
  7137. source: "./media/characters/everett/front.svg",
  7138. extra: 1017/866,
  7139. bottom: 86/1103
  7140. }
  7141. },
  7142. paw: {
  7143. height: math.unit(2 / 3.6, "meters"),
  7144. name: "Paw",
  7145. image: {
  7146. source: "./media/characters/everett/paw.svg"
  7147. }
  7148. },
  7149. },
  7150. [
  7151. {
  7152. name: "Normal",
  7153. height: math.unit(15, "feet"),
  7154. default: true
  7155. },
  7156. {
  7157. name: "Lorg",
  7158. height: math.unit(70, "feet"),
  7159. default: true
  7160. },
  7161. {
  7162. name: "Lorger",
  7163. height: math.unit(250, "feet")
  7164. },
  7165. {
  7166. name: "Macro",
  7167. height: math.unit(500, "meters")
  7168. },
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7173. {
  7174. front: {
  7175. height: math.unit(2, "meters"),
  7176. weight: math.unit(86, "kg"),
  7177. name: "Front",
  7178. image: {
  7179. source: "./media/characters/rose/front.svg",
  7180. extra: 1785/1636,
  7181. bottom: 30/1815
  7182. },
  7183. form: "liom",
  7184. default: true
  7185. },
  7186. frontSporty: {
  7187. height: math.unit(2, "meters"),
  7188. weight: math.unit(86, "kg"),
  7189. name: "Front (Sporty)",
  7190. image: {
  7191. source: "./media/characters/rose/front-sporty.svg",
  7192. extra: 350/335,
  7193. bottom: 10/360
  7194. },
  7195. form: "liom"
  7196. },
  7197. frontAlt: {
  7198. height: math.unit(1.6, "meters"),
  7199. weight: math.unit(86, "kg"),
  7200. name: "Front (Alt)",
  7201. image: {
  7202. source: "./media/characters/rose/front-alt.svg",
  7203. extra: 299/283,
  7204. bottom: 3/302
  7205. },
  7206. form: "liom"
  7207. },
  7208. plush: {
  7209. height: math.unit(2, "meters"),
  7210. weight: math.unit(86/3, "kg"),
  7211. name: "Plush",
  7212. image: {
  7213. source: "./media/characters/rose/plush.svg",
  7214. extra: 361/337,
  7215. bottom: 11/372
  7216. },
  7217. form: "plush",
  7218. default: true
  7219. },
  7220. faeStanding: {
  7221. height: math.unit(10, "cm"),
  7222. weight: math.unit(10, "grams"),
  7223. name: "Standing",
  7224. image: {
  7225. source: "./media/characters/rose/fae-standing.svg",
  7226. extra: 1189/1060,
  7227. bottom: 27/1216
  7228. },
  7229. form: "fae",
  7230. default: true
  7231. },
  7232. faeSitting: {
  7233. height: math.unit(5, "cm"),
  7234. weight: math.unit(10, "grams"),
  7235. name: "Sitting",
  7236. image: {
  7237. source: "./media/characters/rose/fae-sitting.svg",
  7238. extra: 737/577,
  7239. bottom: 356/1093
  7240. },
  7241. form: "fae"
  7242. },
  7243. faePaw: {
  7244. height: math.unit(1.35, "cm"),
  7245. name: "Paw",
  7246. image: {
  7247. source: "./media/characters/rose/fae-paw.svg"
  7248. },
  7249. form: "fae"
  7250. },
  7251. },
  7252. [
  7253. {
  7254. name: "True Micro",
  7255. height: math.unit(9, "cm"),
  7256. form: "liom"
  7257. },
  7258. {
  7259. name: "Micro",
  7260. height: math.unit(16, "cm"),
  7261. form: "liom"
  7262. },
  7263. {
  7264. name: "Normal",
  7265. height: math.unit(1.85, "meters"),
  7266. default: true,
  7267. form: "liom"
  7268. },
  7269. {
  7270. name: "Mini-Macro",
  7271. height: math.unit(5, "meters"),
  7272. form: "liom"
  7273. },
  7274. {
  7275. name: "Macro",
  7276. height: math.unit(15, "meters"),
  7277. form: "liom"
  7278. },
  7279. {
  7280. name: "True Macro",
  7281. height: math.unit(40, "meters"),
  7282. form: "liom"
  7283. },
  7284. {
  7285. name: "City Scale",
  7286. height: math.unit(1, "km"),
  7287. form: "liom"
  7288. },
  7289. {
  7290. name: "Plushie",
  7291. height: math.unit(9, "cm"),
  7292. form: "plush",
  7293. default: true
  7294. },
  7295. {
  7296. name: "Fae",
  7297. height: math.unit(10, "cm"),
  7298. form: "fae",
  7299. default: true
  7300. },
  7301. ],
  7302. {
  7303. "liom": {
  7304. name: "Liom"
  7305. },
  7306. "plush": {
  7307. name: "Plush"
  7308. },
  7309. "fae": {
  7310. name: "Fae Fox",
  7311. default: true
  7312. }
  7313. }
  7314. ))
  7315. characterMakers.push(() => makeCharacter(
  7316. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7317. {
  7318. front: {
  7319. height: math.unit(2, "meters"),
  7320. weight: math.unit(350, "lbs"),
  7321. name: "Front",
  7322. image: {
  7323. source: "./media/characters/regal/front.svg"
  7324. }
  7325. },
  7326. back: {
  7327. height: math.unit(2, "meters"),
  7328. weight: math.unit(350, "lbs"),
  7329. name: "Back",
  7330. image: {
  7331. source: "./media/characters/regal/back.svg"
  7332. }
  7333. },
  7334. },
  7335. [
  7336. {
  7337. name: "Macro",
  7338. height: math.unit(350, "feet"),
  7339. default: true
  7340. }
  7341. ]
  7342. ))
  7343. characterMakers.push(() => makeCharacter(
  7344. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7345. {
  7346. front: {
  7347. height: math.unit(4 + 11 / 12, "feet"),
  7348. weight: math.unit(100, "lbs"),
  7349. name: "Front",
  7350. image: {
  7351. source: "./media/characters/opal/front.svg"
  7352. }
  7353. },
  7354. frontAlt: {
  7355. height: math.unit(4 + 11 / 12, "feet"),
  7356. weight: math.unit(100, "lbs"),
  7357. name: "Front (Alt)",
  7358. image: {
  7359. source: "./media/characters/opal/front-alt.svg"
  7360. }
  7361. },
  7362. },
  7363. [
  7364. {
  7365. name: "Small",
  7366. height: math.unit(4 + 11 / 12, "feet")
  7367. },
  7368. {
  7369. name: "Normal",
  7370. height: math.unit(20, "feet"),
  7371. default: true
  7372. },
  7373. {
  7374. name: "Macro",
  7375. height: math.unit(120, "feet")
  7376. },
  7377. {
  7378. name: "Megamacro",
  7379. height: math.unit(80, "miles")
  7380. },
  7381. {
  7382. name: "True Size",
  7383. height: math.unit(100000, "lightyears")
  7384. },
  7385. ]
  7386. ))
  7387. characterMakers.push(() => makeCharacter(
  7388. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7389. {
  7390. front: {
  7391. height: math.unit(6, "feet"),
  7392. weight: math.unit(200, "lbs"),
  7393. name: "Front",
  7394. image: {
  7395. source: "./media/characters/vector-wuff/front.svg"
  7396. }
  7397. }
  7398. },
  7399. [
  7400. {
  7401. name: "Normal",
  7402. height: math.unit(2.8, "meters")
  7403. },
  7404. {
  7405. name: "Macro",
  7406. height: math.unit(450, "meters"),
  7407. default: true
  7408. },
  7409. {
  7410. name: "Megamacro",
  7411. height: math.unit(15, "kilometers")
  7412. }
  7413. ]
  7414. ))
  7415. characterMakers.push(() => makeCharacter(
  7416. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7417. {
  7418. front: {
  7419. height: math.unit(6, "feet"),
  7420. weight: math.unit(256, "lbs"),
  7421. name: "Front",
  7422. image: {
  7423. source: "./media/characters/dannik/front.svg"
  7424. }
  7425. }
  7426. },
  7427. [
  7428. {
  7429. name: "Macro",
  7430. height: math.unit(69.57, "meters"),
  7431. default: true
  7432. },
  7433. ]
  7434. ))
  7435. characterMakers.push(() => makeCharacter(
  7436. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7437. {
  7438. front: {
  7439. height: math.unit(6, "feet"),
  7440. weight: math.unit(120, "lbs"),
  7441. name: "Front",
  7442. image: {
  7443. source: "./media/characters/azura-saharah/front.svg"
  7444. }
  7445. },
  7446. back: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(120, "lbs"),
  7449. name: "Back",
  7450. image: {
  7451. source: "./media/characters/azura-saharah/back.svg"
  7452. }
  7453. },
  7454. },
  7455. [
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(100, "feet"),
  7459. default: true
  7460. },
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7465. {
  7466. side: {
  7467. height: math.unit(5 + 4 / 12, "feet"),
  7468. weight: math.unit(163, "lbs"),
  7469. name: "Side",
  7470. image: {
  7471. source: "./media/characters/kennedy/side.svg"
  7472. }
  7473. }
  7474. },
  7475. [
  7476. {
  7477. name: "Standard Doggo",
  7478. height: math.unit(5 + 4 / 12, "feet")
  7479. },
  7480. {
  7481. name: "Big Doggo",
  7482. height: math.unit(25 + 3 / 12, "feet"),
  7483. default: true
  7484. },
  7485. ]
  7486. ))
  7487. characterMakers.push(() => makeCharacter(
  7488. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7489. {
  7490. front: {
  7491. height: math.unit(5 + 5/12, "feet"),
  7492. weight: math.unit(100, "lbs"),
  7493. name: "Front",
  7494. image: {
  7495. source: "./media/characters/odios-de-lunar/front.svg",
  7496. extra: 1468/1323,
  7497. bottom: 22/1490
  7498. }
  7499. }
  7500. },
  7501. [
  7502. {
  7503. name: "Micro",
  7504. height: math.unit(3, "inches")
  7505. },
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(5.5, "feet"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Macro",
  7513. height: math.unit(100, "feet")
  7514. },
  7515. ]
  7516. ))
  7517. characterMakers.push(() => makeCharacter(
  7518. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7519. {
  7520. back: {
  7521. height: math.unit(6, "feet"),
  7522. weight: math.unit(220, "lbs"),
  7523. name: "Back",
  7524. image: {
  7525. source: "./media/characters/mandake/back.svg"
  7526. }
  7527. }
  7528. },
  7529. [
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(7, "feet"),
  7533. default: true
  7534. },
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(78, "feet")
  7538. },
  7539. {
  7540. name: "Macro+",
  7541. height: math.unit(300, "meters")
  7542. },
  7543. {
  7544. name: "Macro++",
  7545. height: math.unit(2400, "feet")
  7546. },
  7547. {
  7548. name: "Megamacro",
  7549. height: math.unit(5167, "meters")
  7550. },
  7551. {
  7552. name: "Gigamacro",
  7553. height: math.unit(41769, "miles")
  7554. },
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(6, "feet"),
  7562. weight: math.unit(120, "lbs"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/yozey/front.svg"
  7566. }
  7567. },
  7568. frontAlt: {
  7569. height: math.unit(6, "feet"),
  7570. weight: math.unit(120, "lbs"),
  7571. name: "Front (Alt)",
  7572. image: {
  7573. source: "./media/characters/yozey/front-alt.svg"
  7574. }
  7575. },
  7576. side: {
  7577. height: math.unit(6, "feet"),
  7578. weight: math.unit(120, "lbs"),
  7579. name: "Side",
  7580. image: {
  7581. source: "./media/characters/yozey/side.svg"
  7582. }
  7583. },
  7584. },
  7585. [
  7586. {
  7587. name: "Micro",
  7588. height: math.unit(3, "inches"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Normal",
  7593. height: math.unit(6, "feet")
  7594. }
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7599. {
  7600. front: {
  7601. height: math.unit(6, "feet"),
  7602. weight: math.unit(103, "lbs"),
  7603. name: "Front",
  7604. image: {
  7605. source: "./media/characters/valeska-voss/front.svg"
  7606. }
  7607. }
  7608. },
  7609. [
  7610. {
  7611. name: "Mini-Sized Sub",
  7612. height: math.unit(3.1, "inches")
  7613. },
  7614. {
  7615. name: "Mid-Sized Sub",
  7616. height: math.unit(6.2, "inches")
  7617. },
  7618. {
  7619. name: "Full-Sized Sub",
  7620. height: math.unit(9.3, "inches")
  7621. },
  7622. {
  7623. name: "Normal",
  7624. height: math.unit(5 + 2 / 12, "foot"),
  7625. default: true
  7626. },
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7631. {
  7632. front: {
  7633. height: math.unit(6, "feet"),
  7634. weight: math.unit(160, "lbs"),
  7635. name: "Front",
  7636. image: {
  7637. source: "./media/characters/gene-zeta/front.svg",
  7638. extra: 3006 / 2826,
  7639. bottom: 182 / 3188
  7640. }
  7641. }
  7642. },
  7643. [
  7644. {
  7645. name: "Micro",
  7646. height: math.unit(6, "inches")
  7647. },
  7648. {
  7649. name: "Normal",
  7650. height: math.unit(5 + 11 / 12, "foot"),
  7651. default: true
  7652. },
  7653. {
  7654. name: "Macro",
  7655. height: math.unit(140, "feet")
  7656. },
  7657. {
  7658. name: "Supercharged",
  7659. height: math.unit(2500, "feet")
  7660. },
  7661. ]
  7662. ))
  7663. characterMakers.push(() => makeCharacter(
  7664. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7665. {
  7666. front: {
  7667. height: math.unit(6, "feet"),
  7668. weight: math.unit(350, "lbs"),
  7669. name: "Front",
  7670. image: {
  7671. source: "./media/characters/razinox/front.svg",
  7672. extra: 1686 / 1548,
  7673. bottom: 28.2 / 1868
  7674. }
  7675. },
  7676. back: {
  7677. height: math.unit(6, "feet"),
  7678. weight: math.unit(350, "lbs"),
  7679. name: "Back",
  7680. image: {
  7681. source: "./media/characters/razinox/back.svg",
  7682. extra: 1660 / 1590,
  7683. bottom: 15 / 1665
  7684. }
  7685. },
  7686. },
  7687. [
  7688. {
  7689. name: "Normal",
  7690. height: math.unit(10 + 8 / 12, "foot")
  7691. },
  7692. {
  7693. name: "Minimacro",
  7694. height: math.unit(15, "foot")
  7695. },
  7696. {
  7697. name: "Macro",
  7698. height: math.unit(60, "foot"),
  7699. default: true
  7700. },
  7701. {
  7702. name: "Megamacro",
  7703. height: math.unit(5, "miles")
  7704. },
  7705. {
  7706. name: "Gigamacro",
  7707. height: math.unit(6000, "miles")
  7708. },
  7709. ]
  7710. ))
  7711. characterMakers.push(() => makeCharacter(
  7712. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7713. {
  7714. front: {
  7715. height: math.unit(6, "feet"),
  7716. weight: math.unit(150, "lbs"),
  7717. name: "Front",
  7718. image: {
  7719. source: "./media/characters/cobalt/front.svg"
  7720. }
  7721. }
  7722. },
  7723. [
  7724. {
  7725. name: "Normal",
  7726. height: math.unit(8 + 1 / 12, "foot")
  7727. },
  7728. {
  7729. name: "Macro",
  7730. height: math.unit(111, "foot"),
  7731. default: true
  7732. },
  7733. {
  7734. name: "Supracosmic",
  7735. height: math.unit(1e42, "feet")
  7736. },
  7737. ]
  7738. ))
  7739. characterMakers.push(() => makeCharacter(
  7740. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7741. {
  7742. front: {
  7743. height: math.unit(5, "inches"),
  7744. name: "Front",
  7745. image: {
  7746. source: "./media/characters/amanda/front.svg",
  7747. extra: 926/791,
  7748. bottom: 38/964
  7749. }
  7750. },
  7751. back: {
  7752. height: math.unit(5, "inches"),
  7753. name: "Back",
  7754. image: {
  7755. source: "./media/characters/amanda/back.svg",
  7756. extra: 909/805,
  7757. bottom: 43/952
  7758. }
  7759. },
  7760. },
  7761. [
  7762. {
  7763. name: "Micro",
  7764. height: math.unit(5, "inches"),
  7765. default: true
  7766. },
  7767. ]
  7768. ))
  7769. characterMakers.push(() => makeCharacter(
  7770. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7771. {
  7772. front: {
  7773. height: math.unit(2.75, "meters"),
  7774. weight: math.unit(1200, "lb"),
  7775. name: "Front",
  7776. image: {
  7777. source: "./media/characters/teal/front.svg",
  7778. extra: 2463 / 2320,
  7779. bottom: 166 / 2629
  7780. }
  7781. },
  7782. back: {
  7783. height: math.unit(2.75, "meters"),
  7784. weight: math.unit(1200, "lb"),
  7785. name: "Back",
  7786. image: {
  7787. source: "./media/characters/teal/back.svg",
  7788. extra: 2580 / 2489,
  7789. bottom: 151 / 2731
  7790. }
  7791. },
  7792. sitting: {
  7793. height: math.unit(1.9, "meters"),
  7794. weight: math.unit(1200, "lb"),
  7795. name: "Sitting",
  7796. image: {
  7797. source: "./media/characters/teal/sitting.svg",
  7798. extra: 623 / 590,
  7799. bottom: 121 / 744
  7800. }
  7801. },
  7802. standing: {
  7803. height: math.unit(2.75, "meters"),
  7804. weight: math.unit(1200, "lb"),
  7805. name: "Standing",
  7806. image: {
  7807. source: "./media/characters/teal/standing.svg",
  7808. extra: 923 / 893,
  7809. bottom: 60 / 983
  7810. }
  7811. },
  7812. stretching: {
  7813. height: math.unit(3.65, "meters"),
  7814. weight: math.unit(1200, "lb"),
  7815. name: "Stretching",
  7816. image: {
  7817. source: "./media/characters/teal/stretching.svg",
  7818. extra: 1276 / 1244,
  7819. bottom: 0 / 1276
  7820. }
  7821. },
  7822. legged: {
  7823. height: math.unit(1.3, "meters"),
  7824. weight: math.unit(100, "lb"),
  7825. name: "Legged",
  7826. image: {
  7827. source: "./media/characters/teal/legged.svg",
  7828. extra: 462 / 437,
  7829. bottom: 24 / 486
  7830. }
  7831. },
  7832. naga: {
  7833. height: math.unit(5.4, "meters"),
  7834. weight: math.unit(4000, "lb"),
  7835. name: "Naga",
  7836. image: {
  7837. source: "./media/characters/teal/naga.svg",
  7838. extra: 1902 / 1858,
  7839. bottom: 0 / 1902
  7840. }
  7841. },
  7842. hand: {
  7843. height: math.unit(0.52, "meters"),
  7844. name: "Hand",
  7845. image: {
  7846. source: "./media/characters/teal/hand.svg"
  7847. }
  7848. },
  7849. maw: {
  7850. height: math.unit(0.43, "meters"),
  7851. name: "Maw",
  7852. image: {
  7853. source: "./media/characters/teal/maw.svg"
  7854. }
  7855. },
  7856. slit: {
  7857. height: math.unit(0.25, "meters"),
  7858. name: "Slit",
  7859. image: {
  7860. source: "./media/characters/teal/slit.svg"
  7861. }
  7862. },
  7863. },
  7864. [
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(2.75, "meters"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(300, "feet")
  7873. },
  7874. {
  7875. name: "Macro+",
  7876. height: math.unit(2000, "feet")
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7882. {
  7883. frontCat: {
  7884. height: math.unit(6, "feet"),
  7885. weight: math.unit(180, "lbs"),
  7886. name: "Front (Cat)",
  7887. image: {
  7888. source: "./media/characters/ravin-amulet/front-cat.svg"
  7889. }
  7890. },
  7891. frontCatAlt: {
  7892. height: math.unit(6, "feet"),
  7893. weight: math.unit(180, "lbs"),
  7894. name: "Front (Alt, Cat)",
  7895. image: {
  7896. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7897. }
  7898. },
  7899. frontWerewolf: {
  7900. height: math.unit(6 * 1.2, "feet"),
  7901. weight: math.unit(225, "lbs"),
  7902. name: "Front (Werewolf)",
  7903. image: {
  7904. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7905. }
  7906. },
  7907. backWerewolf: {
  7908. height: math.unit(6 * 1.2, "feet"),
  7909. weight: math.unit(225, "lbs"),
  7910. name: "Back (Werewolf)",
  7911. image: {
  7912. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7913. }
  7914. },
  7915. },
  7916. [
  7917. {
  7918. name: "Nano",
  7919. height: math.unit(1, "micrometer")
  7920. },
  7921. {
  7922. name: "Micro",
  7923. height: math.unit(1, "inch")
  7924. },
  7925. {
  7926. name: "Normal",
  7927. height: math.unit(6, "feet"),
  7928. default: true
  7929. },
  7930. {
  7931. name: "Macro",
  7932. height: math.unit(60, "feet")
  7933. }
  7934. ]
  7935. ))
  7936. characterMakers.push(() => makeCharacter(
  7937. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7938. {
  7939. front: {
  7940. height: math.unit(6, "feet"),
  7941. weight: math.unit(165, "lbs"),
  7942. name: "Front",
  7943. image: {
  7944. source: "./media/characters/fluoresce/front.svg"
  7945. }
  7946. }
  7947. },
  7948. [
  7949. {
  7950. name: "Micro",
  7951. height: math.unit(6, "cm")
  7952. },
  7953. {
  7954. name: "Normal",
  7955. height: math.unit(5 + 7 / 12, "feet"),
  7956. default: true
  7957. },
  7958. {
  7959. name: "Macro",
  7960. height: math.unit(56, "feet")
  7961. },
  7962. {
  7963. name: "Megamacro",
  7964. height: math.unit(1.9, "miles")
  7965. },
  7966. ]
  7967. ))
  7968. characterMakers.push(() => makeCharacter(
  7969. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7970. {
  7971. front: {
  7972. height: math.unit(9 + 6 / 12, "feet"),
  7973. weight: math.unit(523, "lbs"),
  7974. name: "Side",
  7975. image: {
  7976. source: "./media/characters/aurora/side.svg"
  7977. }
  7978. }
  7979. },
  7980. [
  7981. {
  7982. name: "Normal",
  7983. height: math.unit(9 + 6 / 12, "feet")
  7984. },
  7985. {
  7986. name: "Macro",
  7987. height: math.unit(96, "feet"),
  7988. default: true
  7989. },
  7990. {
  7991. name: "Macro+",
  7992. height: math.unit(243, "feet")
  7993. },
  7994. ]
  7995. ))
  7996. characterMakers.push(() => makeCharacter(
  7997. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7998. {
  7999. front: {
  8000. height: math.unit(194, "cm"),
  8001. weight: math.unit(90, "kg"),
  8002. name: "Front",
  8003. image: {
  8004. source: "./media/characters/ranek/front.svg",
  8005. extra: 1862/1791,
  8006. bottom: 80/1942
  8007. }
  8008. },
  8009. back: {
  8010. height: math.unit(194, "cm"),
  8011. weight: math.unit(90, "kg"),
  8012. name: "Back",
  8013. image: {
  8014. source: "./media/characters/ranek/back.svg",
  8015. extra: 1853/1787,
  8016. bottom: 74/1927
  8017. }
  8018. },
  8019. feral: {
  8020. height: math.unit(30, "cm"),
  8021. weight: math.unit(1.6, "lbs"),
  8022. name: "Feral",
  8023. image: {
  8024. source: "./media/characters/ranek/feral.svg",
  8025. extra: 990/631,
  8026. bottom: 29/1019
  8027. }
  8028. },
  8029. },
  8030. [
  8031. {
  8032. name: "Normal",
  8033. height: math.unit(194, "cm"),
  8034. default: true
  8035. },
  8036. {
  8037. name: "Macro",
  8038. height: math.unit(100, "meters")
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(5 + 6 / 12, "feet"),
  8047. weight: math.unit(153, "lbs"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/andrew-cooper/front.svg"
  8051. }
  8052. },
  8053. },
  8054. [
  8055. {
  8056. name: "Nano",
  8057. height: math.unit(1, "mm")
  8058. },
  8059. {
  8060. name: "Micro",
  8061. height: math.unit(2, "inches")
  8062. },
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(5 + 6 / 12, "feet"),
  8066. default: true
  8067. }
  8068. ]
  8069. ))
  8070. characterMakers.push(() => makeCharacter(
  8071. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8072. {
  8073. front: {
  8074. height: math.unit(6, "feet"),
  8075. weight: math.unit(180, "lbs"),
  8076. name: "Front",
  8077. image: {
  8078. source: "./media/characters/akane-sato/front.svg",
  8079. extra: 1219 / 1140
  8080. }
  8081. },
  8082. back: {
  8083. height: math.unit(6, "feet"),
  8084. weight: math.unit(180, "lbs"),
  8085. name: "Back",
  8086. image: {
  8087. source: "./media/characters/akane-sato/back.svg",
  8088. extra: 1219 / 1170
  8089. }
  8090. },
  8091. },
  8092. [
  8093. {
  8094. name: "Normal",
  8095. height: math.unit(2.5, "meters")
  8096. },
  8097. {
  8098. name: "Macro",
  8099. height: math.unit(250, "meters"),
  8100. default: true
  8101. },
  8102. {
  8103. name: "Megamacro",
  8104. height: math.unit(25, "km")
  8105. },
  8106. ]
  8107. ))
  8108. characterMakers.push(() => makeCharacter(
  8109. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8110. {
  8111. front: {
  8112. height: math.unit(6, "feet"),
  8113. weight: math.unit(65, "kg"),
  8114. name: "Front",
  8115. image: {
  8116. source: "./media/characters/rook/front.svg",
  8117. extra: 960 / 950
  8118. }
  8119. }
  8120. },
  8121. [
  8122. {
  8123. name: "Normal",
  8124. height: math.unit(8.8, "feet")
  8125. },
  8126. {
  8127. name: "Macro",
  8128. height: math.unit(88, "feet"),
  8129. default: true
  8130. },
  8131. {
  8132. name: "Megamacro",
  8133. height: math.unit(8, "miles")
  8134. },
  8135. ]
  8136. ))
  8137. characterMakers.push(() => makeCharacter(
  8138. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8139. {
  8140. front: {
  8141. height: math.unit(12 + 2 / 12, "feet"),
  8142. weight: math.unit(808, "lbs"),
  8143. name: "Front",
  8144. image: {
  8145. source: "./media/characters/prodigy/front.svg"
  8146. }
  8147. }
  8148. },
  8149. [
  8150. {
  8151. name: "Normal",
  8152. height: math.unit(12 + 2 / 12, "feet"),
  8153. default: true
  8154. },
  8155. {
  8156. name: "Macro",
  8157. height: math.unit(143, "feet")
  8158. },
  8159. {
  8160. name: "Macro+",
  8161. height: math.unit(400, "feet")
  8162. },
  8163. ]
  8164. ))
  8165. characterMakers.push(() => makeCharacter(
  8166. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8167. {
  8168. front: {
  8169. height: math.unit(6, "feet"),
  8170. weight: math.unit(225, "lbs"),
  8171. name: "Front",
  8172. image: {
  8173. source: "./media/characters/daniel/front.svg"
  8174. }
  8175. },
  8176. leaning: {
  8177. height: math.unit(6, "feet"),
  8178. weight: math.unit(225, "lbs"),
  8179. name: "Leaning",
  8180. image: {
  8181. source: "./media/characters/daniel/leaning.svg"
  8182. }
  8183. },
  8184. },
  8185. [
  8186. {
  8187. name: "Macro",
  8188. height: math.unit(1000, "feet"),
  8189. default: true
  8190. },
  8191. ]
  8192. ))
  8193. characterMakers.push(() => makeCharacter(
  8194. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8195. {
  8196. front: {
  8197. height: math.unit(6, "feet"),
  8198. weight: math.unit(88, "lbs"),
  8199. name: "Front",
  8200. image: {
  8201. source: "./media/characters/chiros/front.svg",
  8202. extra: 306 / 226
  8203. }
  8204. },
  8205. side: {
  8206. height: math.unit(6, "feet"),
  8207. weight: math.unit(88, "lbs"),
  8208. name: "Side",
  8209. image: {
  8210. source: "./media/characters/chiros/side.svg",
  8211. extra: 306 / 226
  8212. }
  8213. },
  8214. },
  8215. [
  8216. {
  8217. name: "Normal",
  8218. height: math.unit(6, "cm"),
  8219. default: true
  8220. },
  8221. ]
  8222. ))
  8223. characterMakers.push(() => makeCharacter(
  8224. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8225. {
  8226. front: {
  8227. height: math.unit(6, "feet"),
  8228. weight: math.unit(100, "lbs"),
  8229. name: "Front",
  8230. image: {
  8231. source: "./media/characters/selka/front.svg",
  8232. extra: 947 / 887
  8233. }
  8234. }
  8235. },
  8236. [
  8237. {
  8238. name: "Normal",
  8239. height: math.unit(5, "cm"),
  8240. default: true
  8241. },
  8242. ]
  8243. ))
  8244. characterMakers.push(() => makeCharacter(
  8245. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8246. {
  8247. front: {
  8248. height: math.unit(8 + 3 / 12, "feet"),
  8249. weight: math.unit(424, "lbs"),
  8250. name: "Front",
  8251. image: {
  8252. source: "./media/characters/verin/front.svg",
  8253. extra: 1845 / 1550
  8254. }
  8255. },
  8256. frontArmored: {
  8257. height: math.unit(8 + 3 / 12, "feet"),
  8258. weight: math.unit(424, "lbs"),
  8259. name: "Front (Armored)",
  8260. image: {
  8261. source: "./media/characters/verin/front-armor.svg",
  8262. extra: 1845 / 1550,
  8263. bottom: 0.01
  8264. }
  8265. },
  8266. back: {
  8267. height: math.unit(8 + 3 / 12, "feet"),
  8268. weight: math.unit(424, "lbs"),
  8269. name: "Back",
  8270. image: {
  8271. source: "./media/characters/verin/back.svg",
  8272. bottom: 0.1,
  8273. extra: 1
  8274. }
  8275. },
  8276. foot: {
  8277. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8278. name: "Foot",
  8279. image: {
  8280. source: "./media/characters/verin/foot.svg"
  8281. }
  8282. },
  8283. },
  8284. [
  8285. {
  8286. name: "Normal",
  8287. height: math.unit(8 + 3 / 12, "feet")
  8288. },
  8289. {
  8290. name: "Minimacro",
  8291. height: math.unit(21, "feet"),
  8292. default: true
  8293. },
  8294. {
  8295. name: "Macro",
  8296. height: math.unit(626, "feet")
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8302. {
  8303. front: {
  8304. height: math.unit(2.718, "meters"),
  8305. weight: math.unit(150, "lbs"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/sovrim-terraquian/front.svg",
  8309. extra: 1752/1689,
  8310. bottom: 36/1788
  8311. }
  8312. },
  8313. back: {
  8314. height: math.unit(2.718, "meters"),
  8315. weight: math.unit(150, "lbs"),
  8316. name: "Back",
  8317. image: {
  8318. source: "./media/characters/sovrim-terraquian/back.svg",
  8319. extra: 1698/1657,
  8320. bottom: 58/1756
  8321. }
  8322. },
  8323. tongue: {
  8324. height: math.unit(2.865, "feet"),
  8325. name: "Tongue",
  8326. image: {
  8327. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8328. }
  8329. },
  8330. hand: {
  8331. height: math.unit(1.61, "feet"),
  8332. name: "Hand",
  8333. image: {
  8334. source: "./media/characters/sovrim-terraquian/hand.svg"
  8335. }
  8336. },
  8337. foot: {
  8338. height: math.unit(1.05, "feet"),
  8339. name: "Foot",
  8340. image: {
  8341. source: "./media/characters/sovrim-terraquian/foot.svg"
  8342. }
  8343. },
  8344. footAlt: {
  8345. height: math.unit(0.88, "feet"),
  8346. name: "Foot (Alt)",
  8347. image: {
  8348. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8349. }
  8350. },
  8351. },
  8352. [
  8353. {
  8354. name: "Micro",
  8355. height: math.unit(2, "inches")
  8356. },
  8357. {
  8358. name: "Small",
  8359. height: math.unit(1, "meter")
  8360. },
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(Math.E, "meters"),
  8364. default: true
  8365. },
  8366. {
  8367. name: "Macro",
  8368. height: math.unit(20, "meters")
  8369. },
  8370. {
  8371. name: "Macro+",
  8372. height: math.unit(400, "meters")
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(7, "feet"),
  8381. weight: math.unit(489, "lbs"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/reece-silvermane/front.svg",
  8385. bottom: 0.02,
  8386. extra: 1
  8387. }
  8388. },
  8389. },
  8390. [
  8391. {
  8392. name: "Macro",
  8393. height: math.unit(1.5, "miles"),
  8394. default: true
  8395. },
  8396. ]
  8397. ))
  8398. characterMakers.push(() => makeCharacter(
  8399. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8400. {
  8401. front: {
  8402. height: math.unit(6, "feet"),
  8403. weight: math.unit(78, "kg"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/kane/front.svg",
  8407. extra: 978 / 899
  8408. }
  8409. },
  8410. },
  8411. [
  8412. {
  8413. name: "Normal",
  8414. height: math.unit(2.1, "m"),
  8415. },
  8416. {
  8417. name: "Macro",
  8418. height: math.unit(1, "km"),
  8419. default: true
  8420. },
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8425. {
  8426. front: {
  8427. height: math.unit(6, "feet"),
  8428. weight: math.unit(200, "kg"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/tegon/front.svg",
  8432. bottom: 0.01,
  8433. extra: 1
  8434. }
  8435. },
  8436. },
  8437. [
  8438. {
  8439. name: "Micro",
  8440. height: math.unit(1, "inch")
  8441. },
  8442. {
  8443. name: "Normal",
  8444. height: math.unit(6 + 3 / 12, "feet"),
  8445. default: true
  8446. },
  8447. {
  8448. name: "Macro",
  8449. height: math.unit(300, "feet")
  8450. },
  8451. {
  8452. name: "Megamacro",
  8453. height: math.unit(69, "miles")
  8454. },
  8455. ]
  8456. ))
  8457. characterMakers.push(() => makeCharacter(
  8458. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8459. {
  8460. side: {
  8461. height: math.unit(6, "feet"),
  8462. weight: math.unit(2304, "lbs"),
  8463. name: "Side",
  8464. image: {
  8465. source: "./media/characters/arcturax/side.svg",
  8466. extra: 790 / 376,
  8467. bottom: 0.01
  8468. }
  8469. },
  8470. },
  8471. [
  8472. {
  8473. name: "Micro",
  8474. height: math.unit(2, "inch")
  8475. },
  8476. {
  8477. name: "Normal",
  8478. height: math.unit(6, "feet")
  8479. },
  8480. {
  8481. name: "Macro",
  8482. height: math.unit(39, "feet"),
  8483. default: true
  8484. },
  8485. {
  8486. name: "Megamacro",
  8487. height: math.unit(7, "miles")
  8488. },
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(50, "lbs"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/sentri/front.svg",
  8500. extra: 1750 / 1570,
  8501. bottom: 0.025
  8502. }
  8503. },
  8504. frontAlt: {
  8505. height: math.unit(6, "feet"),
  8506. weight: math.unit(50, "lbs"),
  8507. name: "Front (Alt)",
  8508. image: {
  8509. source: "./media/characters/sentri/front-alt.svg",
  8510. extra: 1750 / 1570,
  8511. bottom: 0.025
  8512. }
  8513. },
  8514. },
  8515. [
  8516. {
  8517. name: "Normal",
  8518. height: math.unit(15, "feet"),
  8519. default: true
  8520. },
  8521. {
  8522. name: "Macro",
  8523. height: math.unit(2500, "feet")
  8524. }
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8529. {
  8530. front: {
  8531. height: math.unit(5 + 8 / 12, "feet"),
  8532. weight: math.unit(130, "lbs"),
  8533. name: "Front",
  8534. image: {
  8535. source: "./media/characters/corvin/front.svg",
  8536. extra: 1803 / 1629
  8537. }
  8538. },
  8539. frontShirt: {
  8540. height: math.unit(5 + 8 / 12, "feet"),
  8541. weight: math.unit(130, "lbs"),
  8542. name: "Front (Shirt)",
  8543. image: {
  8544. source: "./media/characters/corvin/front-shirt.svg",
  8545. extra: 1803 / 1629
  8546. }
  8547. },
  8548. frontPoncho: {
  8549. height: math.unit(5 + 8 / 12, "feet"),
  8550. weight: math.unit(130, "lbs"),
  8551. name: "Front (Poncho)",
  8552. image: {
  8553. source: "./media/characters/corvin/front-poncho.svg",
  8554. extra: 1803 / 1629
  8555. }
  8556. },
  8557. side: {
  8558. height: math.unit(5 + 8 / 12, "feet"),
  8559. weight: math.unit(130, "lbs"),
  8560. name: "Side",
  8561. image: {
  8562. source: "./media/characters/corvin/side.svg",
  8563. extra: 1012 / 945
  8564. }
  8565. },
  8566. back: {
  8567. height: math.unit(5 + 8 / 12, "feet"),
  8568. weight: math.unit(130, "lbs"),
  8569. name: "Back",
  8570. image: {
  8571. source: "./media/characters/corvin/back.svg",
  8572. extra: 1803 / 1629
  8573. }
  8574. },
  8575. },
  8576. [
  8577. {
  8578. name: "Micro",
  8579. height: math.unit(3, "inches")
  8580. },
  8581. {
  8582. name: "Normal",
  8583. height: math.unit(5 + 8 / 12, "feet")
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(300, "feet"),
  8588. default: true
  8589. },
  8590. {
  8591. name: "Megamacro",
  8592. height: math.unit(500, "miles")
  8593. }
  8594. ]
  8595. ))
  8596. characterMakers.push(() => makeCharacter(
  8597. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8598. {
  8599. front: {
  8600. height: math.unit(6, "feet"),
  8601. weight: math.unit(135, "lbs"),
  8602. name: "Front",
  8603. image: {
  8604. source: "./media/characters/q/front.svg",
  8605. extra: 854 / 752,
  8606. bottom: 0.005
  8607. }
  8608. },
  8609. back: {
  8610. height: math.unit(6, "feet"),
  8611. weight: math.unit(130, "lbs"),
  8612. name: "Back",
  8613. image: {
  8614. source: "./media/characters/q/back.svg",
  8615. extra: 854 / 752
  8616. }
  8617. },
  8618. },
  8619. [
  8620. {
  8621. name: "Macro",
  8622. height: math.unit(90, "feet"),
  8623. default: true
  8624. },
  8625. {
  8626. name: "Extra Macro",
  8627. height: math.unit(300, "feet"),
  8628. },
  8629. {
  8630. name: "BIG WALF",
  8631. height: math.unit(750, "feet"),
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8637. {
  8638. front: {
  8639. height: math.unit(6, "feet"),
  8640. weight: math.unit(150, "lbs"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/carley/front.svg",
  8644. extra: 3927 / 3540,
  8645. bottom: 29.2 / 735
  8646. }
  8647. }
  8648. },
  8649. [
  8650. {
  8651. name: "Normal",
  8652. height: math.unit(6 + 3 / 12, "feet")
  8653. },
  8654. {
  8655. name: "Macro",
  8656. height: math.unit(185, "feet"),
  8657. default: true
  8658. },
  8659. {
  8660. name: "Megamacro",
  8661. height: math.unit(8, "miles"),
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(3, "feet"),
  8670. weight: math.unit(28, "lbs"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/citrine/front.svg"
  8674. }
  8675. }
  8676. },
  8677. [
  8678. {
  8679. name: "Normal",
  8680. height: math.unit(3, "feet"),
  8681. default: true
  8682. }
  8683. ]
  8684. ))
  8685. characterMakers.push(() => makeCharacter(
  8686. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8687. {
  8688. front: {
  8689. height: math.unit(14, "feet"),
  8690. weight: math.unit(1450, "kg"),
  8691. capacity: math.unit(15, "people"),
  8692. name: "Front",
  8693. image: {
  8694. source: "./media/characters/aura-starwind/front.svg",
  8695. extra: 1440/1327,
  8696. bottom: 11/1451
  8697. }
  8698. },
  8699. side: {
  8700. height: math.unit(14, "feet"),
  8701. weight: math.unit(1450, "kg"),
  8702. capacity: math.unit(15, "people"),
  8703. name: "Side",
  8704. image: {
  8705. source: "./media/characters/aura-starwind/side.svg",
  8706. extra: 1654 / 1497
  8707. }
  8708. },
  8709. taur: {
  8710. height: math.unit(18, "feet"),
  8711. weight: math.unit(5500, "kg"),
  8712. capacity: math.unit(50, "people"),
  8713. name: "Taur",
  8714. image: {
  8715. source: "./media/characters/aura-starwind/taur.svg",
  8716. extra: 1760 / 1650
  8717. }
  8718. },
  8719. feral: {
  8720. height: math.unit(46, "feet"),
  8721. weight: math.unit(25000, "kg"),
  8722. capacity: math.unit(120, "people"),
  8723. name: "Feral",
  8724. image: {
  8725. source: "./media/characters/aura-starwind/feral.svg"
  8726. }
  8727. },
  8728. },
  8729. [
  8730. {
  8731. name: "Normal",
  8732. height: math.unit(14, "feet"),
  8733. default: true
  8734. },
  8735. {
  8736. name: "Macro",
  8737. height: math.unit(50, "meters")
  8738. },
  8739. {
  8740. name: "Megamacro",
  8741. height: math.unit(5000, "meters")
  8742. },
  8743. {
  8744. name: "Gigamacro",
  8745. height: math.unit(100000, "kilometers")
  8746. },
  8747. ]
  8748. ))
  8749. characterMakers.push(() => makeCharacter(
  8750. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8751. {
  8752. front: {
  8753. height: math.unit(2 + 7 / 12, "feet"),
  8754. weight: math.unit(32, "lbs"),
  8755. name: "Front",
  8756. image: {
  8757. source: "./media/characters/rivet/front.svg",
  8758. extra: 1716 / 1658,
  8759. bottom: 0.03
  8760. }
  8761. },
  8762. foot: {
  8763. height: math.unit(0.551, "feet"),
  8764. name: "Rivet's Foot",
  8765. image: {
  8766. source: "./media/characters/rivet/foot.svg"
  8767. },
  8768. rename: true
  8769. }
  8770. },
  8771. [
  8772. {
  8773. name: "Micro",
  8774. height: math.unit(1.5, "inches"),
  8775. },
  8776. {
  8777. name: "Normal",
  8778. height: math.unit(2 + 7 / 12, "feet"),
  8779. default: true
  8780. },
  8781. {
  8782. name: "Macro",
  8783. height: math.unit(85, "feet")
  8784. },
  8785. {
  8786. name: "Megamacro",
  8787. height: math.unit(2.2, "km")
  8788. }
  8789. ]
  8790. ))
  8791. characterMakers.push(() => makeCharacter(
  8792. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8793. {
  8794. front: {
  8795. height: math.unit(5 + 9 / 12, "feet"),
  8796. weight: math.unit(150, "lbs"),
  8797. name: "Front",
  8798. image: {
  8799. source: "./media/characters/coffee/front.svg",
  8800. extra: 3666 / 3032,
  8801. bottom: 0.04
  8802. }
  8803. },
  8804. foot: {
  8805. height: math.unit(1.29, "feet"),
  8806. name: "Foot",
  8807. image: {
  8808. source: "./media/characters/coffee/foot.svg"
  8809. }
  8810. },
  8811. },
  8812. [
  8813. {
  8814. name: "Micro",
  8815. height: math.unit(2, "inches"),
  8816. },
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(5 + 9 / 12, "feet"),
  8820. default: true
  8821. },
  8822. {
  8823. name: "Macro",
  8824. height: math.unit(800, "feet")
  8825. },
  8826. {
  8827. name: "Megamacro",
  8828. height: math.unit(25, "miles")
  8829. }
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(200, "lbs"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/chari-gal/front.svg",
  8841. extra: 1568 / 1385,
  8842. bottom: 0.047
  8843. }
  8844. },
  8845. gigantamax: {
  8846. height: math.unit(6 * 16, "feet"),
  8847. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8848. name: "Gigantamax",
  8849. image: {
  8850. source: "./media/characters/chari-gal/gigantamax.svg",
  8851. extra: 1124 / 888,
  8852. bottom: 0.03
  8853. }
  8854. },
  8855. },
  8856. [
  8857. {
  8858. name: "Normal",
  8859. height: math.unit(5 + 7 / 12, "feet")
  8860. },
  8861. {
  8862. name: "Macro",
  8863. height: math.unit(200, "feet"),
  8864. default: true
  8865. }
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(6, "feet"),
  8873. weight: math.unit(150, "lbs"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/nova/front.svg",
  8877. extra: 5000 / 4722,
  8878. bottom: 0.02
  8879. }
  8880. }
  8881. },
  8882. [
  8883. {
  8884. name: "Micro-",
  8885. height: math.unit(0.8, "inches")
  8886. },
  8887. {
  8888. name: "Micro",
  8889. height: math.unit(2, "inches"),
  8890. default: true
  8891. },
  8892. ]
  8893. ))
  8894. characterMakers.push(() => makeCharacter(
  8895. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8896. {
  8897. front: {
  8898. height: math.unit(3 + 1 / 12, "feet"),
  8899. weight: math.unit(21.7, "lbs"),
  8900. name: "Front",
  8901. image: {
  8902. source: "./media/characters/argent/front.svg",
  8903. extra: 1471 / 1331,
  8904. bottom: 100.8 / 1575.5
  8905. }
  8906. }
  8907. },
  8908. [
  8909. {
  8910. name: "Micro",
  8911. height: math.unit(2, "inches")
  8912. },
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(3 + 1 / 12, "feet"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Macro",
  8920. height: math.unit(120, "feet")
  8921. },
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8926. {
  8927. lamp: {
  8928. height: math.unit(7 * 1559 / 989, "feet"),
  8929. name: "Magic Lamp",
  8930. image: {
  8931. source: "./media/characters/mira-al-cul/lamp.svg",
  8932. extra: 1617 / 1559
  8933. }
  8934. },
  8935. front: {
  8936. height: math.unit(7, "feet"),
  8937. name: "Front",
  8938. image: {
  8939. source: "./media/characters/mira-al-cul/front.svg",
  8940. extra: 1044 / 990
  8941. }
  8942. },
  8943. },
  8944. [
  8945. {
  8946. name: "Heavily Restricted",
  8947. height: math.unit(7 * 1559 / 989, "feet")
  8948. },
  8949. {
  8950. name: "Freshly Freed",
  8951. height: math.unit(50 * 1559 / 989, "feet")
  8952. },
  8953. {
  8954. name: "World Encompassing",
  8955. height: math.unit(10000 * 1559 / 989, "miles")
  8956. },
  8957. {
  8958. name: "Galactic",
  8959. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8960. },
  8961. {
  8962. name: "Palmed Universe",
  8963. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8964. default: true
  8965. },
  8966. {
  8967. name: "Multiversal Matriarch",
  8968. height: math.unit(8.87e10, "yottameters")
  8969. },
  8970. {
  8971. name: "Void Mother",
  8972. height: math.unit(3.14e110, "yottaparsecs")
  8973. },
  8974. {
  8975. name: "Toying with Transcendence",
  8976. height: math.unit(1e307, "meters")
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8982. {
  8983. front: {
  8984. height: math.unit(17 + 1 / 12, "feet"),
  8985. weight: math.unit(476.2 * 5, "lbs"),
  8986. name: "Front",
  8987. image: {
  8988. source: "./media/characters/kuro-shi-uchū/front.svg",
  8989. extra: 2329 / 1835,
  8990. bottom: 0.02
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Micro",
  8997. height: math.unit(2, "inches")
  8998. },
  8999. {
  9000. name: "Normal",
  9001. height: math.unit(12, "meters")
  9002. },
  9003. {
  9004. name: "Planetary",
  9005. height: math.unit(0.00929, "AU"),
  9006. default: true
  9007. },
  9008. {
  9009. name: "Universal",
  9010. height: math.unit(20, "gigaparsecs")
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(5 + 2 / 12, "feet"),
  9019. weight: math.unit(120, "lbs"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/katherine/front.svg",
  9023. extra: 2075 / 1969
  9024. }
  9025. },
  9026. dress: {
  9027. height: math.unit(5 + 2 / 12, "feet"),
  9028. weight: math.unit(120, "lbs"),
  9029. name: "Dress",
  9030. image: {
  9031. source: "./media/characters/katherine/dress.svg",
  9032. extra: 2258 / 2064
  9033. }
  9034. },
  9035. },
  9036. [
  9037. {
  9038. name: "Micro",
  9039. height: math.unit(1, "inches"),
  9040. default: true
  9041. },
  9042. {
  9043. name: "Normal",
  9044. height: math.unit(5 + 2 / 12, "feet")
  9045. },
  9046. {
  9047. name: "Macro",
  9048. height: math.unit(100, "meters")
  9049. },
  9050. {
  9051. name: "Megamacro",
  9052. height: math.unit(80, "miles")
  9053. },
  9054. ]
  9055. ))
  9056. characterMakers.push(() => makeCharacter(
  9057. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9058. {
  9059. front: {
  9060. height: math.unit(7 + 8 / 12, "feet"),
  9061. weight: math.unit(250, "lbs"),
  9062. name: "Front",
  9063. image: {
  9064. source: "./media/characters/yevis/front.svg",
  9065. extra: 1938 / 1755
  9066. }
  9067. }
  9068. },
  9069. [
  9070. {
  9071. name: "Mortal",
  9072. height: math.unit(7 + 8 / 12, "feet")
  9073. },
  9074. {
  9075. name: "Battle",
  9076. height: math.unit(25 + 11 / 12, "feet")
  9077. },
  9078. {
  9079. name: "Wrath",
  9080. height: math.unit(1654 + 11 / 12, "feet")
  9081. },
  9082. {
  9083. name: "Planet Destroyer",
  9084. height: math.unit(12000, "miles")
  9085. },
  9086. {
  9087. name: "Galaxy Conqueror",
  9088. height: math.unit(1.45, "zettameters"),
  9089. default: true
  9090. },
  9091. {
  9092. name: "Universal War",
  9093. height: math.unit(184, "gigaparsecs")
  9094. },
  9095. {
  9096. name: "Eternity War",
  9097. height: math.unit(1.98e55, "yottaparsecs")
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(5 + 8 / 12, "feet"),
  9106. weight: math.unit(63, "kg"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/xavier/front.svg",
  9110. extra: 944 / 883
  9111. }
  9112. },
  9113. frontStretch: {
  9114. height: math.unit(5 + 8 / 12, "feet"),
  9115. weight: math.unit(63, "kg"),
  9116. name: "Stretching",
  9117. image: {
  9118. source: "./media/characters/xavier/front-stretch.svg",
  9119. extra: 962 / 820
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Normal",
  9126. height: math.unit(5 + 8 / 12, "feet")
  9127. },
  9128. {
  9129. name: "Macro",
  9130. height: math.unit(100, "meters"),
  9131. default: true
  9132. },
  9133. {
  9134. name: "McLargeHuge",
  9135. height: math.unit(10, "miles")
  9136. },
  9137. ]
  9138. ))
  9139. characterMakers.push(() => makeCharacter(
  9140. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9141. {
  9142. front: {
  9143. height: math.unit(5 + 5 / 12, "feet"),
  9144. weight: math.unit(150, "lb"),
  9145. name: "Front",
  9146. image: {
  9147. source: "./media/characters/joshii/front.svg",
  9148. extra: 765 / 653,
  9149. bottom: 51 / 816
  9150. }
  9151. },
  9152. foot: {
  9153. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9154. name: "Foot",
  9155. image: {
  9156. source: "./media/characters/joshii/foot.svg"
  9157. }
  9158. },
  9159. },
  9160. [
  9161. {
  9162. name: "Micro",
  9163. height: math.unit(2, "inches"),
  9164. default: true
  9165. },
  9166. {
  9167. name: "Normal",
  9168. height: math.unit(5 + 5 / 12, "feet")
  9169. },
  9170. {
  9171. name: "Macro",
  9172. height: math.unit(785, "feet")
  9173. },
  9174. {
  9175. name: "Megamacro",
  9176. height: math.unit(24.5, "miles")
  9177. },
  9178. ]
  9179. ))
  9180. characterMakers.push(() => makeCharacter(
  9181. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9182. {
  9183. front: {
  9184. height: math.unit(6, "feet"),
  9185. weight: math.unit(150, "lb"),
  9186. name: "Front",
  9187. image: {
  9188. source: "./media/characters/goddess-elizabeth/front.svg",
  9189. extra: 1800 / 1525,
  9190. bottom: 0.005
  9191. }
  9192. },
  9193. foot: {
  9194. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9195. name: "Foot",
  9196. image: {
  9197. source: "./media/characters/goddess-elizabeth/foot.svg"
  9198. }
  9199. },
  9200. mouth: {
  9201. height: math.unit(6, "feet"),
  9202. name: "Mouth",
  9203. image: {
  9204. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9205. }
  9206. },
  9207. },
  9208. [
  9209. {
  9210. name: "Micro",
  9211. height: math.unit(12, "feet")
  9212. },
  9213. {
  9214. name: "Normal",
  9215. height: math.unit(80, "miles"),
  9216. default: true
  9217. },
  9218. {
  9219. name: "Macro",
  9220. height: math.unit(15000, "parsecs")
  9221. },
  9222. ]
  9223. ))
  9224. characterMakers.push(() => makeCharacter(
  9225. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9226. {
  9227. front: {
  9228. height: math.unit(5 + 9 / 12, "feet"),
  9229. weight: math.unit(144, "lb"),
  9230. name: "Front",
  9231. image: {
  9232. source: "./media/characters/kara/front.svg"
  9233. }
  9234. },
  9235. feet: {
  9236. height: math.unit(6 / 6.765, "feet"),
  9237. name: "Kara's Feet",
  9238. rename: true,
  9239. image: {
  9240. source: "./media/characters/kara/feet.svg"
  9241. }
  9242. },
  9243. },
  9244. [
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(5 + 9 / 12, "feet")
  9248. },
  9249. {
  9250. name: "Macro",
  9251. height: math.unit(174, "feet"),
  9252. default: true
  9253. },
  9254. ]
  9255. ))
  9256. characterMakers.push(() => makeCharacter(
  9257. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9258. {
  9259. front: {
  9260. height: math.unit(18, "feet"),
  9261. weight: math.unit(4050, "lb"),
  9262. name: "Front",
  9263. image: {
  9264. source: "./media/characters/tyrone/front.svg",
  9265. extra: 2405 / 2270,
  9266. bottom: 182 / 2587
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(18, "feet"),
  9274. default: true
  9275. },
  9276. {
  9277. name: "Macro",
  9278. height: math.unit(300, "feet")
  9279. },
  9280. {
  9281. name: "Megamacro",
  9282. height: math.unit(15, "km")
  9283. },
  9284. {
  9285. name: "Gigamacro",
  9286. height: math.unit(500, "km")
  9287. },
  9288. {
  9289. name: "Teramacro",
  9290. height: math.unit(0.5, "gigameters")
  9291. },
  9292. {
  9293. name: "Omnimacro",
  9294. height: math.unit(1e252, "yottauniverse")
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(7 + 8 / 12, "feet"),
  9303. weight: math.unit(120, "lb"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/danny/front.svg",
  9307. extra: 1490 / 1350
  9308. }
  9309. },
  9310. back: {
  9311. height: math.unit(7 + 8 / 12, "feet"),
  9312. weight: math.unit(120, "lb"),
  9313. name: "Back",
  9314. image: {
  9315. source: "./media/characters/danny/back.svg",
  9316. extra: 1490 / 1350
  9317. }
  9318. },
  9319. },
  9320. [
  9321. {
  9322. name: "Normal",
  9323. height: math.unit(7 + 8 / 12, "feet"),
  9324. default: true
  9325. },
  9326. ]
  9327. ))
  9328. characterMakers.push(() => makeCharacter(
  9329. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9330. {
  9331. front: {
  9332. height: math.unit(3.5, "inches"),
  9333. weight: math.unit(19, "grams"),
  9334. name: "Front",
  9335. image: {
  9336. source: "./media/characters/mallow/front.svg",
  9337. extra: 471 / 431
  9338. }
  9339. },
  9340. back: {
  9341. height: math.unit(3.5, "inches"),
  9342. weight: math.unit(19, "grams"),
  9343. name: "Back",
  9344. image: {
  9345. source: "./media/characters/mallow/back.svg",
  9346. extra: 471 / 431
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Normal",
  9353. height: math.unit(3.5, "inches"),
  9354. default: true
  9355. },
  9356. ]
  9357. ))
  9358. characterMakers.push(() => makeCharacter(
  9359. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9360. {
  9361. front: {
  9362. height: math.unit(9, "feet"),
  9363. weight: math.unit(230, "kg"),
  9364. name: "Front",
  9365. image: {
  9366. source: "./media/characters/starry-aqua/front.svg"
  9367. }
  9368. },
  9369. back: {
  9370. height: math.unit(9, "feet"),
  9371. weight: math.unit(230, "kg"),
  9372. name: "Back",
  9373. image: {
  9374. source: "./media/characters/starry-aqua/back.svg"
  9375. }
  9376. },
  9377. hand: {
  9378. height: math.unit(9 * 0.1168, "feet"),
  9379. name: "Hand",
  9380. image: {
  9381. source: "./media/characters/starry-aqua/hand.svg"
  9382. }
  9383. },
  9384. foot: {
  9385. height: math.unit(9 * 0.18, "feet"),
  9386. name: "Foot",
  9387. image: {
  9388. source: "./media/characters/starry-aqua/foot.svg"
  9389. }
  9390. }
  9391. },
  9392. [
  9393. {
  9394. name: "Micro",
  9395. height: math.unit(3, "inches")
  9396. },
  9397. {
  9398. name: "Normal",
  9399. height: math.unit(9, "feet")
  9400. },
  9401. {
  9402. name: "Macro",
  9403. height: math.unit(300, "feet"),
  9404. default: true
  9405. },
  9406. {
  9407. name: "Megamacro",
  9408. height: math.unit(3200, "feet")
  9409. }
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9414. {
  9415. front: {
  9416. height: math.unit(15, "feet"),
  9417. weight: math.unit(5026, "lb"),
  9418. name: "Front",
  9419. image: {
  9420. source: "./media/characters/luka-towers/front.svg",
  9421. extra: 1269/1133,
  9422. bottom: 51/1320
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Normal",
  9429. height: math.unit(15, "feet"),
  9430. default: true
  9431. },
  9432. {
  9433. name: "Minimacro",
  9434. height: math.unit(25, "feet")
  9435. },
  9436. {
  9437. name: "Macro",
  9438. height: math.unit(320, "feet")
  9439. },
  9440. {
  9441. name: "Megamacro",
  9442. height: math.unit(35000, "feet")
  9443. },
  9444. {
  9445. name: "Gigamacro",
  9446. height: math.unit(4000, "miles")
  9447. },
  9448. {
  9449. name: "Teramacro",
  9450. height: math.unit(15000, "miles")
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(6, "feet"),
  9459. weight: math.unit(150, "lb"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/natalie-nightring/front.svg",
  9463. extra: 1,
  9464. bottom: 0.06
  9465. }
  9466. },
  9467. },
  9468. [
  9469. {
  9470. name: "Uh Oh",
  9471. height: math.unit(0.1, "mm")
  9472. },
  9473. {
  9474. name: "Small",
  9475. height: math.unit(3, "inches")
  9476. },
  9477. {
  9478. name: "Human Scale",
  9479. height: math.unit(6, "feet")
  9480. },
  9481. {
  9482. name: "Librarian",
  9483. height: math.unit(50, "feet"),
  9484. default: true
  9485. },
  9486. {
  9487. name: "Immense",
  9488. height: math.unit(200, "miles")
  9489. },
  9490. ]
  9491. ))
  9492. characterMakers.push(() => makeCharacter(
  9493. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9494. {
  9495. front: {
  9496. height: math.unit(6, "feet"),
  9497. weight: math.unit(180, "lbs"),
  9498. name: "Front",
  9499. image: {
  9500. source: "./media/characters/danni-rosie/front.svg",
  9501. extra: 1260 / 1128,
  9502. bottom: 0.022
  9503. }
  9504. },
  9505. },
  9506. [
  9507. {
  9508. name: "Micro",
  9509. height: math.unit(2, "inches"),
  9510. default: true
  9511. },
  9512. ]
  9513. ))
  9514. characterMakers.push(() => makeCharacter(
  9515. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9516. {
  9517. front: {
  9518. height: math.unit(5 + 9 / 12, "feet"),
  9519. weight: math.unit(220, "lb"),
  9520. name: "Front",
  9521. image: {
  9522. source: "./media/characters/samantha-kruse/front.svg",
  9523. extra: (985 / 935),
  9524. bottom: 0.03
  9525. }
  9526. },
  9527. frontUndressed: {
  9528. height: math.unit(5 + 9 / 12, "feet"),
  9529. weight: math.unit(220, "lb"),
  9530. name: "Front (Undressed)",
  9531. image: {
  9532. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9533. extra: (973 / 923),
  9534. bottom: 0.025
  9535. }
  9536. },
  9537. fat: {
  9538. height: math.unit(5 + 9 / 12, "feet"),
  9539. weight: math.unit(900, "lb"),
  9540. name: "Front (Fat)",
  9541. image: {
  9542. source: "./media/characters/samantha-kruse/fat.svg",
  9543. extra: 2688 / 2561
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(5 + 9 / 12, "feet"),
  9551. default: true
  9552. }
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9557. {
  9558. back: {
  9559. height: math.unit(5 + 4 / 12, "feet"),
  9560. weight: math.unit(4963, "lb"),
  9561. name: "Back",
  9562. image: {
  9563. source: "./media/characters/amelia-rosie/back.svg",
  9564. extra: 1113 / 963,
  9565. bottom: 0.01
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Level 0",
  9572. height: math.unit(5 + 4 / 12, "feet")
  9573. },
  9574. {
  9575. name: "Level 1",
  9576. height: math.unit(164597, "feet"),
  9577. default: true
  9578. },
  9579. {
  9580. name: "Level 2",
  9581. height: math.unit(956243, "miles")
  9582. },
  9583. {
  9584. name: "Level 3",
  9585. height: math.unit(29421709423, "miles")
  9586. },
  9587. {
  9588. name: "Level 4",
  9589. height: math.unit(154, "lightyears")
  9590. },
  9591. {
  9592. name: "Level 5",
  9593. height: math.unit(4738272, "lightyears")
  9594. },
  9595. {
  9596. name: "Level 6",
  9597. height: math.unit(145787152896, "lightyears")
  9598. },
  9599. ]
  9600. ))
  9601. characterMakers.push(() => makeCharacter(
  9602. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9603. {
  9604. front: {
  9605. height: math.unit(5 + 11 / 12, "feet"),
  9606. weight: math.unit(65, "kg"),
  9607. name: "Front",
  9608. image: {
  9609. source: "./media/characters/rook-kitara/front.svg",
  9610. extra: 1347 / 1274,
  9611. bottom: 0.005
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Totally Unfair",
  9618. height: math.unit(1.8, "mm")
  9619. },
  9620. {
  9621. name: "Lap Rookie",
  9622. height: math.unit(1.4, "feet")
  9623. },
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(5 + 11 / 12, "feet"),
  9627. default: true
  9628. },
  9629. {
  9630. name: "How Did This Happen",
  9631. height: math.unit(80, "miles")
  9632. }
  9633. ]
  9634. ))
  9635. characterMakers.push(() => makeCharacter(
  9636. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9637. {
  9638. front: {
  9639. height: math.unit(7, "feet"),
  9640. weight: math.unit(300, "lb"),
  9641. name: "Front",
  9642. image: {
  9643. source: "./media/characters/pisces/front.svg",
  9644. extra: 2255 / 2115,
  9645. bottom: 0.03
  9646. }
  9647. },
  9648. back: {
  9649. height: math.unit(7, "feet"),
  9650. weight: math.unit(300, "lb"),
  9651. name: "Back",
  9652. image: {
  9653. source: "./media/characters/pisces/back.svg",
  9654. extra: 2146 / 2055,
  9655. bottom: 0.04
  9656. }
  9657. },
  9658. },
  9659. [
  9660. {
  9661. name: "Normal",
  9662. height: math.unit(7, "feet"),
  9663. default: true
  9664. },
  9665. {
  9666. name: "Swimming Pool",
  9667. height: math.unit(12.2, "meters")
  9668. },
  9669. {
  9670. name: "Olympic Swimming Pool",
  9671. height: math.unit(56.3, "meters")
  9672. },
  9673. {
  9674. name: "Lake Superior",
  9675. height: math.unit(93900, "meters")
  9676. },
  9677. {
  9678. name: "Mediterranean Sea",
  9679. height: math.unit(644457, "meters")
  9680. },
  9681. {
  9682. name: "World's Oceans",
  9683. height: math.unit(4567491, "meters")
  9684. },
  9685. ]
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9689. {
  9690. front: {
  9691. height: math.unit(2.3, "meters"),
  9692. weight: math.unit(120, "kg"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/zelas/front.svg"
  9696. }
  9697. },
  9698. side: {
  9699. height: math.unit(2.3, "meters"),
  9700. weight: math.unit(120, "kg"),
  9701. name: "Side",
  9702. image: {
  9703. source: "./media/characters/zelas/side.svg"
  9704. }
  9705. },
  9706. back: {
  9707. height: math.unit(2.3, "meters"),
  9708. weight: math.unit(120, "kg"),
  9709. name: "Back",
  9710. image: {
  9711. source: "./media/characters/zelas/back.svg"
  9712. }
  9713. },
  9714. foot: {
  9715. height: math.unit(1.116, "feet"),
  9716. name: "Foot",
  9717. image: {
  9718. source: "./media/characters/zelas/foot.svg"
  9719. }
  9720. },
  9721. },
  9722. [
  9723. {
  9724. name: "Normal",
  9725. height: math.unit(2.3, "meters")
  9726. },
  9727. {
  9728. name: "Macro",
  9729. height: math.unit(30, "meters"),
  9730. default: true
  9731. },
  9732. ]
  9733. ))
  9734. characterMakers.push(() => makeCharacter(
  9735. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9736. {
  9737. front: {
  9738. height: math.unit(1, "inch"),
  9739. weight: math.unit(0.21, "grams"),
  9740. name: "Front",
  9741. image: {
  9742. source: "./media/characters/talbot/front.svg",
  9743. extra: 594 / 544
  9744. }
  9745. },
  9746. },
  9747. [
  9748. {
  9749. name: "Micro",
  9750. height: math.unit(1, "inch"),
  9751. default: true
  9752. },
  9753. ]
  9754. ))
  9755. characterMakers.push(() => makeCharacter(
  9756. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9757. {
  9758. front: {
  9759. height: math.unit(3 + 3 / 12, "feet"),
  9760. weight: math.unit(51.8, "lb"),
  9761. name: "Front",
  9762. image: {
  9763. source: "./media/characters/fliss/front.svg",
  9764. extra: 840 / 640
  9765. }
  9766. },
  9767. },
  9768. [
  9769. {
  9770. name: "Teeny Tiny",
  9771. height: math.unit(1, "mm")
  9772. },
  9773. {
  9774. name: "Small",
  9775. height: math.unit(1, "inch"),
  9776. default: true
  9777. },
  9778. {
  9779. name: "Standard Sylveon",
  9780. height: math.unit(3 + 3 / 12, "feet")
  9781. },
  9782. {
  9783. name: "Large Nuisance",
  9784. height: math.unit(33, "feet")
  9785. },
  9786. {
  9787. name: "City Filler",
  9788. height: math.unit(3000, "feet")
  9789. },
  9790. {
  9791. name: "New Horizon",
  9792. height: math.unit(6000, "miles")
  9793. },
  9794. ]
  9795. ))
  9796. characterMakers.push(() => makeCharacter(
  9797. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9798. {
  9799. front: {
  9800. height: math.unit(5, "cm"),
  9801. weight: math.unit(1.94, "g"),
  9802. name: "Front",
  9803. image: {
  9804. source: "./media/characters/fleta/front.svg",
  9805. extra: 835 / 803
  9806. }
  9807. },
  9808. back: {
  9809. height: math.unit(5, "cm"),
  9810. weight: math.unit(1.94, "g"),
  9811. name: "Back",
  9812. image: {
  9813. source: "./media/characters/fleta/back.svg",
  9814. extra: 835 / 803
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Micro",
  9821. height: math.unit(5, "cm"),
  9822. default: true
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9828. {
  9829. front: {
  9830. height: math.unit(6, "feet"),
  9831. weight: math.unit(225, "lb"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/dominic/front.svg",
  9835. extra: 1770 / 1620,
  9836. bottom: 0.025
  9837. }
  9838. },
  9839. back: {
  9840. height: math.unit(6, "feet"),
  9841. weight: math.unit(225, "lb"),
  9842. name: "Back",
  9843. image: {
  9844. source: "./media/characters/dominic/back.svg",
  9845. extra: 1745 / 1620,
  9846. bottom: 0.065
  9847. }
  9848. },
  9849. },
  9850. [
  9851. {
  9852. name: "Nano",
  9853. height: math.unit(0.1, "mm")
  9854. },
  9855. {
  9856. name: "Micro-",
  9857. height: math.unit(1, "mm")
  9858. },
  9859. {
  9860. name: "Micro",
  9861. height: math.unit(4, "inches")
  9862. },
  9863. {
  9864. name: "Normal",
  9865. height: math.unit(6 + 4 / 12, "feet"),
  9866. default: true
  9867. },
  9868. {
  9869. name: "Macro",
  9870. height: math.unit(115, "feet")
  9871. },
  9872. {
  9873. name: "Macro+",
  9874. height: math.unit(955, "feet")
  9875. },
  9876. {
  9877. name: "Megamacro",
  9878. height: math.unit(8990, "feet")
  9879. },
  9880. {
  9881. name: "Gigmacro",
  9882. height: math.unit(9310, "miles")
  9883. },
  9884. {
  9885. name: "Teramacro",
  9886. height: math.unit(1567005010, "miles")
  9887. },
  9888. {
  9889. name: "Examacro",
  9890. height: math.unit(1425, "parsecs")
  9891. },
  9892. ]
  9893. ))
  9894. characterMakers.push(() => makeCharacter(
  9895. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9896. {
  9897. front: {
  9898. height: math.unit(400, "feet"),
  9899. weight: math.unit(44444444, "lb"),
  9900. name: "Front",
  9901. image: {
  9902. source: "./media/characters/major-colonel/front.svg"
  9903. }
  9904. },
  9905. back: {
  9906. height: math.unit(400, "feet"),
  9907. weight: math.unit(44444444, "lb"),
  9908. name: "Back",
  9909. image: {
  9910. source: "./media/characters/major-colonel/back.svg"
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Macro",
  9917. height: math.unit(400, "feet"),
  9918. default: true
  9919. },
  9920. ]
  9921. ))
  9922. characterMakers.push(() => makeCharacter(
  9923. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9924. {
  9925. catFront: {
  9926. height: math.unit(6, "feet"),
  9927. weight: math.unit(120, "lb"),
  9928. name: "Front (Cat Side)",
  9929. image: {
  9930. source: "./media/characters/axel-lycan/cat-front.svg",
  9931. extra: 430 / 402,
  9932. bottom: 43 / 472.35
  9933. }
  9934. },
  9935. catBack: {
  9936. height: math.unit(6, "feet"),
  9937. weight: math.unit(120, "lb"),
  9938. name: "Back (Cat Side)",
  9939. image: {
  9940. source: "./media/characters/axel-lycan/cat-back.svg",
  9941. extra: 447 / 419,
  9942. bottom: 23.3 / 469
  9943. }
  9944. },
  9945. wolfFront: {
  9946. height: math.unit(6, "feet"),
  9947. weight: math.unit(120, "lb"),
  9948. name: "Front (Wolf Side)",
  9949. image: {
  9950. source: "./media/characters/axel-lycan/wolf-front.svg",
  9951. extra: 485 / 456,
  9952. bottom: 19 / 504
  9953. }
  9954. },
  9955. wolfBack: {
  9956. height: math.unit(6, "feet"),
  9957. weight: math.unit(120, "lb"),
  9958. name: "Back (Wolf Side)",
  9959. image: {
  9960. source: "./media/characters/axel-lycan/wolf-back.svg",
  9961. extra: 475 / 438,
  9962. bottom: 39.2 / 514
  9963. }
  9964. },
  9965. },
  9966. [
  9967. {
  9968. name: "Macro",
  9969. height: math.unit(1, "km"),
  9970. default: true
  9971. },
  9972. ]
  9973. ))
  9974. characterMakers.push(() => makeCharacter(
  9975. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9976. {
  9977. front: {
  9978. height: math.unit(5 + 9 / 12, "feet"),
  9979. weight: math.unit(175, "lb"),
  9980. name: "Front",
  9981. image: {
  9982. source: "./media/characters/vanrel-hyena/front.svg",
  9983. extra: 1086 / 1010,
  9984. bottom: 0.04
  9985. }
  9986. },
  9987. },
  9988. [
  9989. {
  9990. name: "Normal",
  9991. height: math.unit(5 + 9 / 12, "feet"),
  9992. default: true
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(6, "feet"),
  10001. weight: math.unit(103, "lb"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/abbott-absol/front.svg",
  10005. extra: 2010 / 1842
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Megamicro",
  10012. height: math.unit(0.1, "mm")
  10013. },
  10014. {
  10015. name: "Micro",
  10016. height: math.unit(1, "inch")
  10017. },
  10018. {
  10019. name: "Normal",
  10020. height: math.unit(6, "feet"),
  10021. default: true
  10022. },
  10023. ]
  10024. ))
  10025. characterMakers.push(() => makeCharacter(
  10026. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10027. {
  10028. front: {
  10029. height: math.unit(6, "feet"),
  10030. weight: math.unit(264, "lb"),
  10031. name: "Front",
  10032. image: {
  10033. source: "./media/characters/hector/front.svg",
  10034. extra: 2280 / 2130,
  10035. bottom: 0.07
  10036. }
  10037. },
  10038. },
  10039. [
  10040. {
  10041. name: "Normal",
  10042. height: math.unit(12.25, "foot"),
  10043. default: true
  10044. },
  10045. {
  10046. name: "Macro",
  10047. height: math.unit(160, "feet")
  10048. },
  10049. ]
  10050. ))
  10051. characterMakers.push(() => makeCharacter(
  10052. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10053. {
  10054. front: {
  10055. height: math.unit(6, "feet"),
  10056. weight: math.unit(150, "lb"),
  10057. name: "Front",
  10058. image: {
  10059. source: "./media/characters/sal/front.svg",
  10060. extra: 1846 / 1699,
  10061. bottom: 0.04
  10062. }
  10063. },
  10064. },
  10065. [
  10066. {
  10067. name: "Megamacro",
  10068. height: math.unit(10, "miles"),
  10069. default: true
  10070. },
  10071. ]
  10072. ))
  10073. characterMakers.push(() => makeCharacter(
  10074. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10075. {
  10076. front: {
  10077. height: math.unit(3, "meters"),
  10078. weight: math.unit(450, "kg"),
  10079. name: "front",
  10080. image: {
  10081. source: "./media/characters/ranger/front.svg",
  10082. extra: 2401 / 2243,
  10083. bottom: 0.05
  10084. }
  10085. },
  10086. },
  10087. [
  10088. {
  10089. name: "Normal",
  10090. height: math.unit(3, "meters"),
  10091. default: true
  10092. },
  10093. ]
  10094. ))
  10095. characterMakers.push(() => makeCharacter(
  10096. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10097. {
  10098. front: {
  10099. height: math.unit(14, "feet"),
  10100. weight: math.unit(800, "kg"),
  10101. name: "Front",
  10102. image: {
  10103. source: "./media/characters/theresa/front.svg",
  10104. extra: 3575 / 3346,
  10105. bottom: 0.03
  10106. }
  10107. },
  10108. },
  10109. [
  10110. {
  10111. name: "Normal",
  10112. height: math.unit(14, "feet"),
  10113. default: true
  10114. },
  10115. ]
  10116. ))
  10117. characterMakers.push(() => makeCharacter(
  10118. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10119. {
  10120. front: {
  10121. height: math.unit(6, "feet"),
  10122. weight: math.unit(3, "kg"),
  10123. name: "Front",
  10124. image: {
  10125. source: "./media/characters/ine/front.svg",
  10126. extra: 678 / 539,
  10127. bottom: 0.023
  10128. }
  10129. },
  10130. },
  10131. [
  10132. {
  10133. name: "Normal",
  10134. height: math.unit(2.265, "feet"),
  10135. default: true
  10136. },
  10137. ]
  10138. ))
  10139. characterMakers.push(() => makeCharacter(
  10140. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10141. {
  10142. front: {
  10143. height: math.unit(5, "feet"),
  10144. weight: math.unit(30, "kg"),
  10145. name: "Front",
  10146. image: {
  10147. source: "./media/characters/vial/front.svg",
  10148. extra: 1365 / 1277,
  10149. bottom: 0.04
  10150. }
  10151. },
  10152. },
  10153. [
  10154. {
  10155. name: "Normal",
  10156. height: math.unit(5, "feet"),
  10157. default: true
  10158. },
  10159. ]
  10160. ))
  10161. characterMakers.push(() => makeCharacter(
  10162. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10163. {
  10164. side: {
  10165. height: math.unit(3.4, "meters"),
  10166. weight: math.unit(1000, "lb"),
  10167. name: "Side",
  10168. image: {
  10169. source: "./media/characters/rovoska/side.svg",
  10170. extra: 4403 / 1515
  10171. }
  10172. },
  10173. },
  10174. [
  10175. {
  10176. name: "Normal",
  10177. height: math.unit(3.4, "meters"),
  10178. default: true
  10179. },
  10180. ]
  10181. ))
  10182. characterMakers.push(() => makeCharacter(
  10183. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10184. {
  10185. front: {
  10186. height: math.unit(8, "feet"),
  10187. weight: math.unit(315, "lb"),
  10188. name: "Front",
  10189. image: {
  10190. source: "./media/characters/gunner-rotthbauer/front.svg"
  10191. }
  10192. },
  10193. back: {
  10194. height: math.unit(8, "feet"),
  10195. weight: math.unit(315, "lb"),
  10196. name: "Back",
  10197. image: {
  10198. source: "./media/characters/gunner-rotthbauer/back.svg"
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Micro",
  10205. height: math.unit(3.5, "inches")
  10206. },
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(8, "feet"),
  10210. default: true
  10211. },
  10212. {
  10213. name: "Macro",
  10214. height: math.unit(250, "feet")
  10215. },
  10216. {
  10217. name: "Megamacro",
  10218. height: math.unit(1, "AU")
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(5 + 5 / 12, "feet"),
  10227. weight: math.unit(140, "lb"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/allatia/front.svg",
  10231. extra: 1227 / 1180,
  10232. bottom: 0.027
  10233. }
  10234. },
  10235. },
  10236. [
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(5 + 5 / 12, "feet")
  10240. },
  10241. {
  10242. name: "Macro",
  10243. height: math.unit(250, "feet"),
  10244. default: true
  10245. },
  10246. {
  10247. name: "Megamacro",
  10248. height: math.unit(8, "miles")
  10249. }
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(6, "feet"),
  10257. weight: math.unit(120, "lb"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/tene/front.svg",
  10261. extra: 814/750,
  10262. bottom: 36/850
  10263. }
  10264. },
  10265. stomping: {
  10266. height: math.unit(2.025, "meters"),
  10267. weight: math.unit(120, "lb"),
  10268. name: "Stomping",
  10269. image: {
  10270. source: "./media/characters/tene/stomping.svg",
  10271. extra: 885/821,
  10272. bottom: 15/900
  10273. }
  10274. },
  10275. sitting: {
  10276. height: math.unit(1, "meter"),
  10277. weight: math.unit(120, "lb"),
  10278. name: "Sitting",
  10279. image: {
  10280. source: "./media/characters/tene/sitting.svg",
  10281. extra: 396/366,
  10282. bottom: 79/475
  10283. }
  10284. },
  10285. smiling: {
  10286. height: math.unit(1.2, "feet"),
  10287. name: "Smiling",
  10288. image: {
  10289. source: "./media/characters/tene/smiling.svg",
  10290. extra: 1364/1071,
  10291. bottom: 0/1364
  10292. }
  10293. },
  10294. smug: {
  10295. height: math.unit(1.3, "feet"),
  10296. name: "Smug",
  10297. image: {
  10298. source: "./media/characters/tene/smug.svg",
  10299. extra: 1323/1082,
  10300. bottom: 0/1323
  10301. }
  10302. },
  10303. feral: {
  10304. height: math.unit(3.9, "feet"),
  10305. weight: math.unit(250, "lb"),
  10306. name: "Feral",
  10307. image: {
  10308. source: "./media/characters/tene/feral.svg",
  10309. extra: 717 / 458,
  10310. bottom: 0.179
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Normal",
  10317. height: math.unit(6, "feet")
  10318. },
  10319. {
  10320. name: "Macro",
  10321. height: math.unit(300, "feet"),
  10322. default: true
  10323. },
  10324. {
  10325. name: "Megamacro",
  10326. height: math.unit(5, "miles")
  10327. },
  10328. ]
  10329. ))
  10330. characterMakers.push(() => makeCharacter(
  10331. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10332. {
  10333. side: {
  10334. height: math.unit(6, "feet"),
  10335. name: "Side",
  10336. image: {
  10337. source: "./media/characters/evander/side.svg",
  10338. extra: 877 / 477
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(0.83, "meters"),
  10346. default: true
  10347. },
  10348. ]
  10349. ))
  10350. characterMakers.push(() => makeCharacter(
  10351. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10352. {
  10353. front: {
  10354. height: math.unit(12, "feet"),
  10355. weight: math.unit(1000, "lb"),
  10356. name: "Front",
  10357. image: {
  10358. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10359. extra: 1762 / 1611
  10360. }
  10361. },
  10362. back: {
  10363. height: math.unit(12, "feet"),
  10364. weight: math.unit(1000, "lb"),
  10365. name: "Back",
  10366. image: {
  10367. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10368. extra: 1762 / 1611
  10369. }
  10370. },
  10371. },
  10372. [
  10373. {
  10374. name: "Normal",
  10375. height: math.unit(12, "feet"),
  10376. default: true
  10377. },
  10378. {
  10379. name: "Kaiju",
  10380. height: math.unit(150, "feet")
  10381. },
  10382. ]
  10383. ))
  10384. characterMakers.push(() => makeCharacter(
  10385. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10386. {
  10387. front: {
  10388. height: math.unit(6, "feet"),
  10389. weight: math.unit(150, "lb"),
  10390. name: "Front",
  10391. image: {
  10392. source: "./media/characters/zero-alurus/front.svg"
  10393. }
  10394. },
  10395. back: {
  10396. height: math.unit(6, "feet"),
  10397. weight: math.unit(150, "lb"),
  10398. name: "Back",
  10399. image: {
  10400. source: "./media/characters/zero-alurus/back.svg"
  10401. }
  10402. },
  10403. },
  10404. [
  10405. {
  10406. name: "Normal",
  10407. height: math.unit(5 + 10 / 12, "feet")
  10408. },
  10409. {
  10410. name: "Macro",
  10411. height: math.unit(60, "feet"),
  10412. default: true
  10413. },
  10414. {
  10415. name: "Macro+",
  10416. height: math.unit(450, "feet")
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10422. {
  10423. front: {
  10424. height: math.unit(6, "feet"),
  10425. weight: math.unit(200, "lb"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/mega-shi/front.svg",
  10429. extra: 1279 / 1250,
  10430. bottom: 0.02
  10431. }
  10432. },
  10433. back: {
  10434. height: math.unit(6, "feet"),
  10435. weight: math.unit(200, "lb"),
  10436. name: "Back",
  10437. image: {
  10438. source: "./media/characters/mega-shi/back.svg",
  10439. extra: 1279 / 1250,
  10440. bottom: 0.02
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Micro",
  10447. height: math.unit(16 + 6 / 12, "feet")
  10448. },
  10449. {
  10450. name: "Third Dimension",
  10451. height: math.unit(40, "meters")
  10452. },
  10453. {
  10454. name: "Normal",
  10455. height: math.unit(660, "feet"),
  10456. default: true
  10457. },
  10458. {
  10459. name: "Megamacro",
  10460. height: math.unit(10, "miles")
  10461. },
  10462. {
  10463. name: "Planetary Launch",
  10464. height: math.unit(500, "miles")
  10465. },
  10466. {
  10467. name: "Interstellar",
  10468. height: math.unit(1e9, "miles")
  10469. },
  10470. {
  10471. name: "Leaving the Universe",
  10472. height: math.unit(1, "gigaparsec")
  10473. },
  10474. {
  10475. name: "Travelling Universes",
  10476. height: math.unit(30e15, "parsecs")
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(5 + 4/12, "feet"),
  10485. weight: math.unit(120, "lb"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/odyssey/front.svg",
  10489. extra: 1747/1571,
  10490. bottom: 47/1794
  10491. }
  10492. },
  10493. side: {
  10494. height: math.unit(5.1, "feet"),
  10495. weight: math.unit(120, "lb"),
  10496. name: "Side",
  10497. image: {
  10498. source: "./media/characters/odyssey/side.svg",
  10499. extra: 1847/1619,
  10500. bottom: 47/1894
  10501. }
  10502. },
  10503. lounging: {
  10504. height: math.unit(1.464, "feet"),
  10505. weight: math.unit(120, "lb"),
  10506. name: "Lounging",
  10507. image: {
  10508. source: "./media/characters/odyssey/lounging.svg",
  10509. extra: 1235/837,
  10510. bottom: 551/1786
  10511. }
  10512. },
  10513. },
  10514. [
  10515. {
  10516. name: "Normal",
  10517. height: math.unit(5 + 4 / 12, "feet")
  10518. },
  10519. {
  10520. name: "Macro",
  10521. height: math.unit(1, "km")
  10522. },
  10523. {
  10524. name: "Megamacro",
  10525. height: math.unit(3000, "km")
  10526. },
  10527. {
  10528. name: "Gigamacro",
  10529. height: math.unit(1, "AU"),
  10530. default: true
  10531. },
  10532. {
  10533. name: "Omniversal",
  10534. height: math.unit(100e14, "lightyears")
  10535. },
  10536. ]
  10537. ))
  10538. characterMakers.push(() => makeCharacter(
  10539. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10540. {
  10541. front: {
  10542. height: math.unit(6, "feet"),
  10543. weight: math.unit(300, "lb"),
  10544. name: "Front",
  10545. image: {
  10546. source: "./media/characters/mekuto/front.svg",
  10547. extra: 921 / 832,
  10548. bottom: 0.03
  10549. }
  10550. },
  10551. hand: {
  10552. height: math.unit(6 / 10.24, "feet"),
  10553. name: "Hand",
  10554. image: {
  10555. source: "./media/characters/mekuto/hand.svg"
  10556. }
  10557. },
  10558. foot: {
  10559. height: math.unit(6 / 5.05, "feet"),
  10560. name: "Foot",
  10561. image: {
  10562. source: "./media/characters/mekuto/foot.svg"
  10563. }
  10564. },
  10565. },
  10566. [
  10567. {
  10568. name: "Minimicro",
  10569. height: math.unit(0.2, "inches")
  10570. },
  10571. {
  10572. name: "Micro",
  10573. height: math.unit(1.5, "inches")
  10574. },
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(5 + 11 / 12, "feet"),
  10578. default: true
  10579. },
  10580. {
  10581. name: "Minimacro",
  10582. height: math.unit(17 + 9 / 12, "feet")
  10583. },
  10584. {
  10585. name: "Macro",
  10586. height: math.unit(177.5, "feet")
  10587. },
  10588. {
  10589. name: "Megamacro",
  10590. height: math.unit(152, "miles")
  10591. },
  10592. ]
  10593. ))
  10594. characterMakers.push(() => makeCharacter(
  10595. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10596. {
  10597. front: {
  10598. height: math.unit(6.5, "inches"),
  10599. weight: math.unit(13, "oz"),
  10600. name: "Front",
  10601. image: {
  10602. source: "./media/characters/dafydd-tomos/front.svg",
  10603. extra: 2990 / 2603,
  10604. bottom: 0.03
  10605. }
  10606. },
  10607. },
  10608. [
  10609. {
  10610. name: "Micro",
  10611. height: math.unit(6.5, "inches"),
  10612. default: true
  10613. },
  10614. ]
  10615. ))
  10616. characterMakers.push(() => makeCharacter(
  10617. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10618. {
  10619. front: {
  10620. height: math.unit(6, "feet"),
  10621. weight: math.unit(150, "lb"),
  10622. name: "Front",
  10623. image: {
  10624. source: "./media/characters/splinter/front.svg",
  10625. extra: 2990 / 2882,
  10626. bottom: 0.04
  10627. }
  10628. },
  10629. back: {
  10630. height: math.unit(6, "feet"),
  10631. weight: math.unit(150, "lb"),
  10632. name: "Back",
  10633. image: {
  10634. source: "./media/characters/splinter/back.svg",
  10635. extra: 2990 / 2882,
  10636. bottom: 0.04
  10637. }
  10638. },
  10639. },
  10640. [
  10641. {
  10642. name: "Normal",
  10643. height: math.unit(6, "feet")
  10644. },
  10645. {
  10646. name: "Macro",
  10647. height: math.unit(230, "meters"),
  10648. default: true
  10649. },
  10650. ]
  10651. ))
  10652. characterMakers.push(() => makeCharacter(
  10653. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10654. {
  10655. front: {
  10656. height: math.unit(4 + 10 / 12, "feet"),
  10657. weight: math.unit(480, "lb"),
  10658. name: "Front",
  10659. image: {
  10660. source: "./media/characters/snow-gabumon/front.svg",
  10661. extra: 1140 / 963,
  10662. bottom: 0.058
  10663. }
  10664. },
  10665. back: {
  10666. height: math.unit(4 + 10 / 12, "feet"),
  10667. weight: math.unit(480, "lb"),
  10668. name: "Back",
  10669. image: {
  10670. source: "./media/characters/snow-gabumon/back.svg",
  10671. extra: 1115 / 962,
  10672. bottom: 0.041
  10673. }
  10674. },
  10675. frontUndresed: {
  10676. height: math.unit(4 + 10 / 12, "feet"),
  10677. weight: math.unit(480, "lb"),
  10678. name: "Front (Undressed)",
  10679. image: {
  10680. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10681. extra: 1061 / 960,
  10682. bottom: 0.045
  10683. }
  10684. },
  10685. },
  10686. [
  10687. {
  10688. name: "Micro",
  10689. height: math.unit(1, "inch")
  10690. },
  10691. {
  10692. name: "Normal",
  10693. height: math.unit(4 + 10 / 12, "feet"),
  10694. default: true
  10695. },
  10696. {
  10697. name: "Macro",
  10698. height: math.unit(200, "feet")
  10699. },
  10700. {
  10701. name: "Megamacro",
  10702. height: math.unit(120, "miles")
  10703. },
  10704. {
  10705. name: "Gigamacro",
  10706. height: math.unit(9800, "miles")
  10707. },
  10708. ]
  10709. ))
  10710. characterMakers.push(() => makeCharacter(
  10711. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10712. {
  10713. front: {
  10714. height: math.unit(1.7, "meters"),
  10715. weight: math.unit(140, "lb"),
  10716. name: "Front",
  10717. image: {
  10718. source: "./media/characters/moody/front.svg",
  10719. extra: 3226 / 3007,
  10720. bottom: 0.087
  10721. }
  10722. },
  10723. },
  10724. [
  10725. {
  10726. name: "Micro",
  10727. height: math.unit(1, "mm")
  10728. },
  10729. {
  10730. name: "Normal",
  10731. height: math.unit(1.7, "meters"),
  10732. default: true
  10733. },
  10734. {
  10735. name: "Macro",
  10736. height: math.unit(80, "meters")
  10737. },
  10738. {
  10739. name: "Macro+",
  10740. height: math.unit(500, "meters")
  10741. },
  10742. ]
  10743. ))
  10744. characterMakers.push(() => makeCharacter(
  10745. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10746. {
  10747. front: {
  10748. height: math.unit(6, "feet"),
  10749. weight: math.unit(150, "lb"),
  10750. name: "Front",
  10751. image: {
  10752. source: "./media/characters/zyas/front.svg",
  10753. extra: 1180 / 1120,
  10754. bottom: 0.045
  10755. }
  10756. },
  10757. },
  10758. [
  10759. {
  10760. name: "Normal",
  10761. height: math.unit(10, "feet"),
  10762. default: true
  10763. },
  10764. {
  10765. name: "Macro",
  10766. height: math.unit(500, "feet")
  10767. },
  10768. {
  10769. name: "Megamacro",
  10770. height: math.unit(5, "miles")
  10771. },
  10772. {
  10773. name: "Teramacro",
  10774. height: math.unit(150000, "miles")
  10775. },
  10776. ]
  10777. ))
  10778. characterMakers.push(() => makeCharacter(
  10779. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10780. {
  10781. front: {
  10782. height: math.unit(6, "feet"),
  10783. weight: math.unit(150, "lb"),
  10784. name: "Front",
  10785. image: {
  10786. source: "./media/characters/cuon/front.svg",
  10787. extra: 1390 / 1320,
  10788. bottom: 0.008
  10789. }
  10790. },
  10791. },
  10792. [
  10793. {
  10794. name: "Micro",
  10795. height: math.unit(3, "inches")
  10796. },
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(18 + 9 / 12, "feet"),
  10800. default: true
  10801. },
  10802. {
  10803. name: "Macro",
  10804. height: math.unit(360, "feet")
  10805. },
  10806. {
  10807. name: "Megamacro",
  10808. height: math.unit(360, "miles")
  10809. },
  10810. ]
  10811. ))
  10812. characterMakers.push(() => makeCharacter(
  10813. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10814. {
  10815. front: {
  10816. height: math.unit(2.4, "meters"),
  10817. weight: math.unit(70, "kg"),
  10818. name: "Front",
  10819. image: {
  10820. source: "./media/characters/nyanuxk/front.svg",
  10821. extra: 1172 / 1084,
  10822. bottom: 0.065
  10823. }
  10824. },
  10825. side: {
  10826. height: math.unit(2.4, "meters"),
  10827. weight: math.unit(70, "kg"),
  10828. name: "Side",
  10829. image: {
  10830. source: "./media/characters/nyanuxk/side.svg",
  10831. extra: 1190 / 1132,
  10832. bottom: 0.007
  10833. }
  10834. },
  10835. back: {
  10836. height: math.unit(2.4, "meters"),
  10837. weight: math.unit(70, "kg"),
  10838. name: "Back",
  10839. image: {
  10840. source: "./media/characters/nyanuxk/back.svg",
  10841. extra: 1200 / 1141,
  10842. bottom: 0.015
  10843. }
  10844. },
  10845. foot: {
  10846. height: math.unit(0.52, "meters"),
  10847. name: "Foot",
  10848. image: {
  10849. source: "./media/characters/nyanuxk/foot.svg"
  10850. }
  10851. },
  10852. },
  10853. [
  10854. {
  10855. name: "Micro",
  10856. height: math.unit(2, "cm")
  10857. },
  10858. {
  10859. name: "Normal",
  10860. height: math.unit(2.4, "meters"),
  10861. default: true
  10862. },
  10863. {
  10864. name: "Smaller Macro",
  10865. height: math.unit(120, "meters")
  10866. },
  10867. {
  10868. name: "Bigger Macro",
  10869. height: math.unit(1.2, "km")
  10870. },
  10871. {
  10872. name: "Megamacro",
  10873. height: math.unit(15, "kilometers")
  10874. },
  10875. {
  10876. name: "Gigamacro",
  10877. height: math.unit(2000, "km")
  10878. },
  10879. {
  10880. name: "Teramacro",
  10881. height: math.unit(500000, "km")
  10882. },
  10883. ]
  10884. ))
  10885. characterMakers.push(() => makeCharacter(
  10886. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10887. {
  10888. side: {
  10889. height: math.unit(6, "feet"),
  10890. name: "Side",
  10891. image: {
  10892. source: "./media/characters/ailbhe/side.svg",
  10893. extra: 757 / 464,
  10894. bottom: 0.041
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Normal",
  10901. height: math.unit(1.07, "meters"),
  10902. default: true
  10903. },
  10904. ]
  10905. ))
  10906. characterMakers.push(() => makeCharacter(
  10907. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10908. {
  10909. front: {
  10910. height: math.unit(6, "feet"),
  10911. weight: math.unit(120, "kg"),
  10912. name: "Front",
  10913. image: {
  10914. source: "./media/characters/zevulfius/front.svg",
  10915. extra: 965 / 903
  10916. }
  10917. },
  10918. side: {
  10919. height: math.unit(6, "feet"),
  10920. weight: math.unit(120, "kg"),
  10921. name: "Side",
  10922. image: {
  10923. source: "./media/characters/zevulfius/side.svg",
  10924. extra: 939 / 900
  10925. }
  10926. },
  10927. back: {
  10928. height: math.unit(6, "feet"),
  10929. weight: math.unit(120, "kg"),
  10930. name: "Back",
  10931. image: {
  10932. source: "./media/characters/zevulfius/back.svg",
  10933. extra: 918 / 854,
  10934. bottom: 0.005
  10935. }
  10936. },
  10937. foot: {
  10938. height: math.unit(6 / 3.72, "feet"),
  10939. name: "Foot",
  10940. image: {
  10941. source: "./media/characters/zevulfius/foot.svg"
  10942. }
  10943. },
  10944. },
  10945. [
  10946. {
  10947. name: "Macro",
  10948. height: math.unit(750, "meters")
  10949. },
  10950. {
  10951. name: "Megamacro",
  10952. height: math.unit(20, "km"),
  10953. default: true
  10954. },
  10955. {
  10956. name: "Gigamacro",
  10957. height: math.unit(2000, "km")
  10958. },
  10959. {
  10960. name: "Teramacro",
  10961. height: math.unit(250000, "km")
  10962. },
  10963. ]
  10964. ))
  10965. characterMakers.push(() => makeCharacter(
  10966. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10967. {
  10968. front: {
  10969. height: math.unit(100, "feet"),
  10970. weight: math.unit(350, "kg"),
  10971. name: "Front",
  10972. image: {
  10973. source: "./media/characters/rikes/front.svg",
  10974. extra: 1565 / 1483,
  10975. bottom: 0.017
  10976. }
  10977. },
  10978. },
  10979. [
  10980. {
  10981. name: "Macro",
  10982. height: math.unit(100, "feet"),
  10983. default: true
  10984. },
  10985. ]
  10986. ))
  10987. characterMakers.push(() => makeCharacter(
  10988. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10989. {
  10990. front: {
  10991. height: math.unit(8, "feet"),
  10992. weight: math.unit(356, "lb"),
  10993. name: "Front",
  10994. image: {
  10995. source: "./media/characters/adam-silver-mane/front.svg",
  10996. extra: 1036/937,
  10997. bottom: 63/1099
  10998. }
  10999. },
  11000. side: {
  11001. height: math.unit(8, "feet"),
  11002. weight: math.unit(356, "lb"),
  11003. name: "Side",
  11004. image: {
  11005. source: "./media/characters/adam-silver-mane/side.svg",
  11006. extra: 997/901,
  11007. bottom: 59/1056
  11008. }
  11009. },
  11010. frontNsfw: {
  11011. height: math.unit(8, "feet"),
  11012. weight: math.unit(356, "lb"),
  11013. name: "Front (NSFW)",
  11014. image: {
  11015. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11016. extra: 1036/937,
  11017. bottom: 63/1099
  11018. }
  11019. },
  11020. sideNsfw: {
  11021. height: math.unit(8, "feet"),
  11022. weight: math.unit(356, "lb"),
  11023. name: "Side (NSFW)",
  11024. image: {
  11025. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11026. extra: 997/901,
  11027. bottom: 59/1056
  11028. }
  11029. },
  11030. dick: {
  11031. height: math.unit(2.1, "feet"),
  11032. name: "Dick",
  11033. image: {
  11034. source: "./media/characters/adam-silver-mane/dick.svg"
  11035. }
  11036. },
  11037. taur: {
  11038. height: math.unit(16, "feet"),
  11039. weight: math.unit(1500, "kg"),
  11040. name: "Taur",
  11041. image: {
  11042. source: "./media/characters/adam-silver-mane/taur.svg",
  11043. extra: 1713 / 1571,
  11044. bottom: 0.01
  11045. }
  11046. },
  11047. },
  11048. [
  11049. {
  11050. name: "Normal",
  11051. height: math.unit(8, "feet")
  11052. },
  11053. {
  11054. name: "Minimacro",
  11055. height: math.unit(80, "feet")
  11056. },
  11057. {
  11058. name: "MDA",
  11059. height: math.unit(80, "meters")
  11060. },
  11061. {
  11062. name: "Macro",
  11063. height: math.unit(800, "feet"),
  11064. default: true
  11065. },
  11066. {
  11067. name: "Megamacro",
  11068. height: math.unit(8000, "feet")
  11069. },
  11070. {
  11071. name: "Gigamacro",
  11072. height: math.unit(800, "miles")
  11073. },
  11074. {
  11075. name: "Teramacro",
  11076. height: math.unit(80000, "miles")
  11077. },
  11078. {
  11079. name: "Celestial",
  11080. height: math.unit(8e6, "miles")
  11081. },
  11082. {
  11083. name: "Star Dragon",
  11084. height: math.unit(800000, "parsecs")
  11085. },
  11086. {
  11087. name: "Godly",
  11088. height: math.unit(800, "teraparsecs")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11094. {
  11095. front: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(150, "lb"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/ky'owin/front.svg",
  11101. extra: 3888 / 3068,
  11102. bottom: 0.015
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Normal",
  11109. height: math.unit(6 + 8 / 12, "feet")
  11110. },
  11111. {
  11112. name: "Large",
  11113. height: math.unit(68, "feet")
  11114. },
  11115. {
  11116. name: "Macro",
  11117. height: math.unit(132, "feet")
  11118. },
  11119. {
  11120. name: "Macro+",
  11121. height: math.unit(340, "feet")
  11122. },
  11123. {
  11124. name: "Macro++",
  11125. height: math.unit(680, "feet"),
  11126. default: true
  11127. },
  11128. {
  11129. name: "Megamacro",
  11130. height: math.unit(1, "mile")
  11131. },
  11132. {
  11133. name: "Megamacro+",
  11134. height: math.unit(10, "miles")
  11135. },
  11136. ]
  11137. ))
  11138. characterMakers.push(() => makeCharacter(
  11139. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11140. {
  11141. front: {
  11142. height: math.unit(4, "feet"),
  11143. weight: math.unit(50, "lb"),
  11144. name: "Front",
  11145. image: {
  11146. source: "./media/characters/mal/front.svg",
  11147. extra: 785 / 724,
  11148. bottom: 0.07
  11149. }
  11150. },
  11151. },
  11152. [
  11153. {
  11154. name: "Micro",
  11155. height: math.unit(4, "inches")
  11156. },
  11157. {
  11158. name: "Normal",
  11159. height: math.unit(4, "feet"),
  11160. default: true
  11161. },
  11162. {
  11163. name: "Macro",
  11164. height: math.unit(200, "feet")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(6, "feet"),
  11173. weight: math.unit(150, "lb"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/jordan-deware/front.svg",
  11177. extra: 1191 / 1012
  11178. }
  11179. },
  11180. },
  11181. [
  11182. {
  11183. name: "Nano",
  11184. height: math.unit(0.01, "mm")
  11185. },
  11186. {
  11187. name: "Minimicro",
  11188. height: math.unit(1, "mm")
  11189. },
  11190. {
  11191. name: "Micro",
  11192. height: math.unit(0.5, "inches")
  11193. },
  11194. {
  11195. name: "Normal",
  11196. height: math.unit(4, "feet"),
  11197. default: true
  11198. },
  11199. {
  11200. name: "Minimacro",
  11201. height: math.unit(40, "meters")
  11202. },
  11203. {
  11204. name: "Small Macro",
  11205. height: math.unit(400, "meters")
  11206. },
  11207. {
  11208. name: "Macro",
  11209. height: math.unit(4, "miles")
  11210. },
  11211. {
  11212. name: "Megamacro",
  11213. height: math.unit(40, "miles")
  11214. },
  11215. {
  11216. name: "Megamacro+",
  11217. height: math.unit(400, "miles")
  11218. },
  11219. {
  11220. name: "Gigamacro",
  11221. height: math.unit(400000, "miles")
  11222. },
  11223. ]
  11224. ))
  11225. characterMakers.push(() => makeCharacter(
  11226. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11227. {
  11228. side: {
  11229. height: math.unit(6, "feet"),
  11230. weight: math.unit(150, "lb"),
  11231. name: "Side",
  11232. image: {
  11233. source: "./media/characters/kimiko/side.svg",
  11234. extra: 600 / 358
  11235. }
  11236. },
  11237. },
  11238. [
  11239. {
  11240. name: "Normal",
  11241. height: math.unit(15, "feet"),
  11242. default: true
  11243. },
  11244. {
  11245. name: "Macro",
  11246. height: math.unit(220, "feet")
  11247. },
  11248. {
  11249. name: "Macro+",
  11250. height: math.unit(1450, "feet")
  11251. },
  11252. {
  11253. name: "Megamacro",
  11254. height: math.unit(11500, "feet")
  11255. },
  11256. {
  11257. name: "Gigamacro",
  11258. height: math.unit(9500, "miles")
  11259. },
  11260. {
  11261. name: "Teramacro",
  11262. height: math.unit(2208005005, "miles")
  11263. },
  11264. {
  11265. name: "Examacro",
  11266. height: math.unit(2750, "parsecs")
  11267. },
  11268. {
  11269. name: "Zettamacro",
  11270. height: math.unit(101500, "parsecs")
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(70, "kg"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/andrew-sleepy/front.svg"
  11283. }
  11284. },
  11285. side: {
  11286. height: math.unit(6, "feet"),
  11287. weight: math.unit(70, "kg"),
  11288. name: "Side",
  11289. image: {
  11290. source: "./media/characters/andrew-sleepy/side.svg"
  11291. }
  11292. },
  11293. },
  11294. [
  11295. {
  11296. name: "Micro",
  11297. height: math.unit(1, "mm"),
  11298. default: true
  11299. },
  11300. ]
  11301. ))
  11302. characterMakers.push(() => makeCharacter(
  11303. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11304. {
  11305. front: {
  11306. height: math.unit(6, "feet"),
  11307. weight: math.unit(150, "lb"),
  11308. name: "Front",
  11309. image: {
  11310. source: "./media/characters/judio/front.svg",
  11311. extra: 1258 / 1110
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(5 + 6 / 12, "feet")
  11319. },
  11320. {
  11321. name: "Macro",
  11322. height: math.unit(1000, "feet"),
  11323. default: true
  11324. },
  11325. {
  11326. name: "Megamacro",
  11327. height: math.unit(10, "miles")
  11328. },
  11329. ]
  11330. ))
  11331. characterMakers.push(() => makeCharacter(
  11332. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11333. {
  11334. frontDressed: {
  11335. height: math.unit(6, "feet"),
  11336. weight: math.unit(68, "kg"),
  11337. name: "Front (Dressed)",
  11338. image: {
  11339. source: "./media/characters/nomaxice/front-dressed.svg",
  11340. extra: 1137/824,
  11341. bottom: 74/1211
  11342. }
  11343. },
  11344. frontShorts: {
  11345. height: math.unit(6, "feet"),
  11346. weight: math.unit(68, "kg"),
  11347. name: "Front (Shorts)",
  11348. image: {
  11349. source: "./media/characters/nomaxice/front-shorts.svg",
  11350. extra: 1137/824,
  11351. bottom: 74/1211
  11352. }
  11353. },
  11354. back: {
  11355. height: math.unit(6, "feet"),
  11356. weight: math.unit(68, "kg"),
  11357. name: "Back",
  11358. image: {
  11359. source: "./media/characters/nomaxice/back.svg",
  11360. extra: 822/786,
  11361. bottom: 39/861
  11362. }
  11363. },
  11364. hand: {
  11365. height: math.unit(0.565, "feet"),
  11366. name: "Hand",
  11367. image: {
  11368. source: "./media/characters/nomaxice/hand.svg"
  11369. }
  11370. },
  11371. foot: {
  11372. height: math.unit(1, "feet"),
  11373. name: "Foot",
  11374. image: {
  11375. source: "./media/characters/nomaxice/foot.svg"
  11376. }
  11377. },
  11378. },
  11379. [
  11380. {
  11381. name: "Micro",
  11382. height: math.unit(8, "cm")
  11383. },
  11384. {
  11385. name: "Norm",
  11386. height: math.unit(1.82, "m")
  11387. },
  11388. {
  11389. name: "Norm+",
  11390. height: math.unit(8.8, "feet"),
  11391. default: true
  11392. },
  11393. {
  11394. name: "Big",
  11395. height: math.unit(8, "meters")
  11396. },
  11397. {
  11398. name: "Macro",
  11399. height: math.unit(18, "meters")
  11400. },
  11401. {
  11402. name: "Macro+",
  11403. height: math.unit(88, "meters")
  11404. },
  11405. ]
  11406. ))
  11407. characterMakers.push(() => makeCharacter(
  11408. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11409. {
  11410. front: {
  11411. height: math.unit(12, "feet"),
  11412. weight: math.unit(1.5, "tons"),
  11413. name: "Front",
  11414. image: {
  11415. source: "./media/characters/dydros/front.svg",
  11416. extra: 863 / 800,
  11417. bottom: 0.015
  11418. }
  11419. },
  11420. back: {
  11421. height: math.unit(12, "feet"),
  11422. weight: math.unit(1.5, "tons"),
  11423. name: "Back",
  11424. image: {
  11425. source: "./media/characters/dydros/back.svg",
  11426. extra: 900 / 843,
  11427. bottom: 0.005
  11428. }
  11429. },
  11430. },
  11431. [
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(12, "feet"),
  11435. default: true
  11436. },
  11437. ]
  11438. ))
  11439. characterMakers.push(() => makeCharacter(
  11440. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11441. {
  11442. front: {
  11443. height: math.unit(6, "feet"),
  11444. weight: math.unit(100, "kg"),
  11445. name: "Front",
  11446. image: {
  11447. source: "./media/characters/riggi/front.svg",
  11448. extra: 5787 / 5303
  11449. }
  11450. },
  11451. hyper: {
  11452. height: math.unit(6 * 5 / 3, "feet"),
  11453. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11454. name: "Hyper",
  11455. image: {
  11456. source: "./media/characters/riggi/hyper.svg",
  11457. extra: 3595 / 3485
  11458. }
  11459. },
  11460. },
  11461. [
  11462. {
  11463. name: "Small Macro",
  11464. height: math.unit(50, "feet")
  11465. },
  11466. {
  11467. name: "Default",
  11468. height: math.unit(200, "feet"),
  11469. default: true
  11470. },
  11471. {
  11472. name: "Loom",
  11473. height: math.unit(10000, "feet")
  11474. },
  11475. {
  11476. name: "Cruising Altitude",
  11477. height: math.unit(30000, "feet")
  11478. },
  11479. {
  11480. name: "Megamacro",
  11481. height: math.unit(100, "miles")
  11482. },
  11483. {
  11484. name: "Continent Sized",
  11485. height: math.unit(2800, "miles")
  11486. },
  11487. {
  11488. name: "Earth Sized",
  11489. height: math.unit(8000, "miles")
  11490. },
  11491. ]
  11492. ))
  11493. characterMakers.push(() => makeCharacter(
  11494. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11495. {
  11496. front: {
  11497. height: math.unit(6, "feet"),
  11498. weight: math.unit(250, "lb"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/alexi/front.svg",
  11502. extra: 3483 / 3291,
  11503. bottom: 0.04
  11504. }
  11505. },
  11506. back: {
  11507. height: math.unit(6, "feet"),
  11508. weight: math.unit(250, "lb"),
  11509. name: "Back",
  11510. image: {
  11511. source: "./media/characters/alexi/back.svg",
  11512. extra: 3533 / 3356,
  11513. bottom: 0.021
  11514. }
  11515. },
  11516. frontTransforming: {
  11517. height: math.unit(8.58, "feet"),
  11518. weight: math.unit(1300, "lb"),
  11519. name: "Transforming",
  11520. image: {
  11521. source: "./media/characters/alexi/front-transforming.svg",
  11522. extra: 437 / 409,
  11523. bottom: 19 / 458.66
  11524. }
  11525. },
  11526. frontTransformed: {
  11527. height: math.unit(12.5, "feet"),
  11528. weight: math.unit(4000, "lb"),
  11529. name: "Transformed",
  11530. image: {
  11531. source: "./media/characters/alexi/front-transformed.svg",
  11532. extra: 639 / 614,
  11533. bottom: 30.55 / 671
  11534. }
  11535. },
  11536. },
  11537. [
  11538. {
  11539. name: "Normal",
  11540. height: math.unit(14, "feet"),
  11541. default: true
  11542. },
  11543. {
  11544. name: "Minimacro",
  11545. height: math.unit(30, "meters")
  11546. },
  11547. {
  11548. name: "Macro",
  11549. height: math.unit(500, "meters")
  11550. },
  11551. {
  11552. name: "Megamacro",
  11553. height: math.unit(9000, "km")
  11554. },
  11555. {
  11556. name: "Teramacro",
  11557. height: math.unit(384000, "km")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11563. {
  11564. front: {
  11565. height: math.unit(6, "feet"),
  11566. weight: math.unit(150, "lb"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/kayroo/front.svg",
  11570. extra: 1153 / 1038,
  11571. bottom: 0.06
  11572. }
  11573. },
  11574. foot: {
  11575. height: math.unit(6, "feet"),
  11576. weight: math.unit(150, "lb"),
  11577. name: "Foot",
  11578. image: {
  11579. source: "./media/characters/kayroo/foot.svg"
  11580. }
  11581. },
  11582. },
  11583. [
  11584. {
  11585. name: "Normal",
  11586. height: math.unit(8, "feet"),
  11587. default: true
  11588. },
  11589. {
  11590. name: "Minimacro",
  11591. height: math.unit(250, "feet")
  11592. },
  11593. {
  11594. name: "Macro",
  11595. height: math.unit(2800, "feet")
  11596. },
  11597. {
  11598. name: "Megamacro",
  11599. height: math.unit(5200, "feet")
  11600. },
  11601. {
  11602. name: "Gigamacro",
  11603. height: math.unit(27000, "feet")
  11604. },
  11605. {
  11606. name: "Omega",
  11607. height: math.unit(45000, "feet")
  11608. },
  11609. ]
  11610. ))
  11611. characterMakers.push(() => makeCharacter(
  11612. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11613. {
  11614. front: {
  11615. height: math.unit(18, "feet"),
  11616. weight: math.unit(5800, "lb"),
  11617. name: "Front",
  11618. image: {
  11619. source: "./media/characters/rhys/front.svg",
  11620. extra: 3386 / 3090,
  11621. bottom: 0.07
  11622. }
  11623. },
  11624. },
  11625. [
  11626. {
  11627. name: "Normal",
  11628. height: math.unit(18, "feet"),
  11629. default: true
  11630. },
  11631. {
  11632. name: "Working Size",
  11633. height: math.unit(200, "feet")
  11634. },
  11635. {
  11636. name: "Demolition Size",
  11637. height: math.unit(2000, "feet")
  11638. },
  11639. {
  11640. name: "Maximum Licensed Size",
  11641. height: math.unit(5, "miles")
  11642. },
  11643. {
  11644. name: "Maximum Observed Size",
  11645. height: math.unit(10, "yottameters")
  11646. },
  11647. ]
  11648. ))
  11649. characterMakers.push(() => makeCharacter(
  11650. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11651. {
  11652. front: {
  11653. height: math.unit(6, "feet"),
  11654. weight: math.unit(250, "lb"),
  11655. name: "Front",
  11656. image: {
  11657. source: "./media/characters/toto/front.svg",
  11658. extra: 527 / 479,
  11659. bottom: 0.05
  11660. }
  11661. },
  11662. },
  11663. [
  11664. {
  11665. name: "Micro",
  11666. height: math.unit(3, "feet")
  11667. },
  11668. {
  11669. name: "Normal",
  11670. height: math.unit(10, "feet")
  11671. },
  11672. {
  11673. name: "Macro",
  11674. height: math.unit(150, "feet"),
  11675. default: true
  11676. },
  11677. {
  11678. name: "Megamacro",
  11679. height: math.unit(1200, "feet")
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "King", species: ["lion"], tags: ["anthro"] },
  11685. {
  11686. back: {
  11687. height: math.unit(6, "feet"),
  11688. weight: math.unit(150, "lb"),
  11689. name: "Back",
  11690. image: {
  11691. source: "./media/characters/king/back.svg"
  11692. }
  11693. },
  11694. },
  11695. [
  11696. {
  11697. name: "Micro",
  11698. height: math.unit(2, "inches")
  11699. },
  11700. {
  11701. name: "Normal",
  11702. height: math.unit(8, "feet")
  11703. },
  11704. {
  11705. name: "Macro",
  11706. height: math.unit(200, "feet"),
  11707. default: true
  11708. },
  11709. {
  11710. name: "Megamacro",
  11711. height: math.unit(50, "miles")
  11712. },
  11713. ]
  11714. ))
  11715. characterMakers.push(() => makeCharacter(
  11716. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11717. {
  11718. front: {
  11719. height: math.unit(11, "feet"),
  11720. weight: math.unit(1400, "lb"),
  11721. name: "Front",
  11722. image: {
  11723. source: "./media/characters/cordite/front.svg",
  11724. extra: 1919/1827,
  11725. bottom: 40/1959
  11726. }
  11727. },
  11728. side: {
  11729. height: math.unit(11, "feet"),
  11730. weight: math.unit(1400, "lb"),
  11731. name: "Side",
  11732. image: {
  11733. source: "./media/characters/cordite/side.svg",
  11734. extra: 1908/1793,
  11735. bottom: 38/1946
  11736. }
  11737. },
  11738. back: {
  11739. height: math.unit(11, "feet"),
  11740. weight: math.unit(1400, "lb"),
  11741. name: "Back",
  11742. image: {
  11743. source: "./media/characters/cordite/back.svg",
  11744. extra: 1938/1837,
  11745. bottom: 10/1948
  11746. }
  11747. },
  11748. feral: {
  11749. height: math.unit(2, "feet"),
  11750. weight: math.unit(90, "lb"),
  11751. name: "Feral",
  11752. image: {
  11753. source: "./media/characters/cordite/feral.svg",
  11754. extra: 1260 / 755,
  11755. bottom: 0.05
  11756. }
  11757. },
  11758. },
  11759. [
  11760. {
  11761. name: "Normal",
  11762. height: math.unit(11, "feet"),
  11763. default: true
  11764. },
  11765. ]
  11766. ))
  11767. characterMakers.push(() => makeCharacter(
  11768. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11769. {
  11770. front: {
  11771. height: math.unit(6, "feet"),
  11772. weight: math.unit(150, "lb"),
  11773. name: "Front",
  11774. image: {
  11775. source: "./media/characters/pianostrong/front.svg",
  11776. extra: 6577 / 6254,
  11777. bottom: 0.02
  11778. }
  11779. },
  11780. side: {
  11781. height: math.unit(6, "feet"),
  11782. weight: math.unit(150, "lb"),
  11783. name: "Side",
  11784. image: {
  11785. source: "./media/characters/pianostrong/side.svg",
  11786. extra: 6106 / 5730
  11787. }
  11788. },
  11789. back: {
  11790. height: math.unit(6, "feet"),
  11791. weight: math.unit(150, "lb"),
  11792. name: "Back",
  11793. image: {
  11794. source: "./media/characters/pianostrong/back.svg",
  11795. extra: 6085 / 5733,
  11796. bottom: 0.01
  11797. }
  11798. },
  11799. },
  11800. [
  11801. {
  11802. name: "Macro",
  11803. height: math.unit(100, "feet")
  11804. },
  11805. {
  11806. name: "Macro+",
  11807. height: math.unit(300, "feet"),
  11808. default: true
  11809. },
  11810. {
  11811. name: "Macro++",
  11812. height: math.unit(1000, "feet")
  11813. },
  11814. ]
  11815. ))
  11816. characterMakers.push(() => makeCharacter(
  11817. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11818. {
  11819. front: {
  11820. height: math.unit(6, "feet"),
  11821. weight: math.unit(150, "lb"),
  11822. name: "Front",
  11823. image: {
  11824. source: "./media/characters/kona/front.svg",
  11825. extra: 2960 / 2629,
  11826. bottom: 0.005
  11827. }
  11828. },
  11829. },
  11830. [
  11831. {
  11832. name: "Normal",
  11833. height: math.unit(11 + 8 / 12, "feet")
  11834. },
  11835. {
  11836. name: "Macro",
  11837. height: math.unit(850, "feet"),
  11838. default: true
  11839. },
  11840. {
  11841. name: "Macro+",
  11842. height: math.unit(1.5, "km"),
  11843. default: true
  11844. },
  11845. {
  11846. name: "Megamacro",
  11847. height: math.unit(80, "miles")
  11848. },
  11849. {
  11850. name: "Gigamacro",
  11851. height: math.unit(3500, "miles")
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11857. {
  11858. side: {
  11859. height: math.unit(1.9, "meters"),
  11860. weight: math.unit(326, "kg"),
  11861. name: "Side",
  11862. image: {
  11863. source: "./media/characters/levi/side.svg",
  11864. extra: 1704 / 1334,
  11865. bottom: 0.02
  11866. }
  11867. },
  11868. },
  11869. [
  11870. {
  11871. name: "Normal",
  11872. height: math.unit(1.9, "meters"),
  11873. default: true
  11874. },
  11875. {
  11876. name: "Macro",
  11877. height: math.unit(20, "meters")
  11878. },
  11879. {
  11880. name: "Macro+",
  11881. height: math.unit(200, "meters")
  11882. },
  11883. {
  11884. name: "Megamacro",
  11885. height: math.unit(2, "km")
  11886. },
  11887. {
  11888. name: "Megamacro+",
  11889. height: math.unit(20, "km")
  11890. },
  11891. {
  11892. name: "Gigamacro",
  11893. height: math.unit(2500, "km")
  11894. },
  11895. {
  11896. name: "Gigamacro+",
  11897. height: math.unit(120000, "km")
  11898. },
  11899. {
  11900. name: "Teramacro",
  11901. height: math.unit(7.77e6, "km")
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11907. {
  11908. front: {
  11909. height: math.unit(6 + 4/12, "feet"),
  11910. weight: math.unit(190, "lb"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/bmc/front.svg",
  11914. extra: 1626/1472,
  11915. bottom: 79/1705
  11916. }
  11917. },
  11918. back: {
  11919. height: math.unit(6 + 4/12, "feet"),
  11920. weight: math.unit(190, "lb"),
  11921. name: "Back",
  11922. image: {
  11923. source: "./media/characters/bmc/back.svg",
  11924. extra: 1640/1479,
  11925. bottom: 45/1685
  11926. }
  11927. },
  11928. frontArmor: {
  11929. height: math.unit(6 + 4/12, "feet"),
  11930. weight: math.unit(190, "lb"),
  11931. name: "Front-armor",
  11932. image: {
  11933. source: "./media/characters/bmc/front-armor.svg",
  11934. extra: 1538/1468,
  11935. bottom: 79/1617
  11936. }
  11937. },
  11938. },
  11939. [
  11940. {
  11941. name: "Human-sized",
  11942. height: math.unit(6 + 4 / 12, "feet")
  11943. },
  11944. {
  11945. name: "Interactive Size",
  11946. height: math.unit(25, "feet")
  11947. },
  11948. {
  11949. name: "Small",
  11950. height: math.unit(250, "feet")
  11951. },
  11952. {
  11953. name: "Normal",
  11954. height: math.unit(1250, "feet"),
  11955. default: true
  11956. },
  11957. {
  11958. name: "Good Day",
  11959. height: math.unit(88, "miles")
  11960. },
  11961. {
  11962. name: "Largest Measured Size",
  11963. height: math.unit(105.960, "galaxies")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11969. {
  11970. front: {
  11971. height: math.unit(20, "feet"),
  11972. weight: math.unit(2016, "kg"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/sven-the-kaiju/front.svg",
  11976. extra: 1277/1250,
  11977. bottom: 35/1312
  11978. }
  11979. },
  11980. mouth: {
  11981. height: math.unit(1.85, "feet"),
  11982. name: "Mouth",
  11983. image: {
  11984. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Fairy",
  11991. height: math.unit(6, "inches")
  11992. },
  11993. {
  11994. name: "Normal",
  11995. height: math.unit(20, "feet"),
  11996. default: true
  11997. },
  11998. {
  11999. name: "Rampage",
  12000. height: math.unit(200, "feet")
  12001. },
  12002. {
  12003. name: "Archfey Forest Guardian",
  12004. height: math.unit(1, "mile")
  12005. },
  12006. ]
  12007. ))
  12008. characterMakers.push(() => makeCharacter(
  12009. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12010. {
  12011. front: {
  12012. height: math.unit(4, "meters"),
  12013. weight: math.unit(2, "tons"),
  12014. name: "Front",
  12015. image: {
  12016. source: "./media/characters/marik/front.svg",
  12017. extra: 1057 / 1003,
  12018. bottom: 0.08
  12019. }
  12020. },
  12021. },
  12022. [
  12023. {
  12024. name: "Normal",
  12025. height: math.unit(4, "meters"),
  12026. default: true
  12027. },
  12028. {
  12029. name: "Macro",
  12030. height: math.unit(20, "meters")
  12031. },
  12032. {
  12033. name: "Megamacro",
  12034. height: math.unit(50, "km")
  12035. },
  12036. {
  12037. name: "Gigamacro",
  12038. height: math.unit(100, "km")
  12039. },
  12040. {
  12041. name: "Alpha Macro",
  12042. height: math.unit(7.88e7, "yottameters")
  12043. },
  12044. ]
  12045. ))
  12046. characterMakers.push(() => makeCharacter(
  12047. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12048. {
  12049. front: {
  12050. height: math.unit(6, "feet"),
  12051. weight: math.unit(110, "lb"),
  12052. name: "Front",
  12053. image: {
  12054. source: "./media/characters/mel/front.svg",
  12055. extra: 736 / 617,
  12056. bottom: 0.017
  12057. }
  12058. },
  12059. },
  12060. [
  12061. {
  12062. name: "Pico",
  12063. height: math.unit(3, "pm")
  12064. },
  12065. {
  12066. name: "Nano",
  12067. height: math.unit(3, "nm")
  12068. },
  12069. {
  12070. name: "Micro",
  12071. height: math.unit(0.3, "mm"),
  12072. default: true
  12073. },
  12074. {
  12075. name: "Micro+",
  12076. height: math.unit(3, "mm")
  12077. },
  12078. {
  12079. name: "Normal",
  12080. height: math.unit(5 + 10.5 / 12, "feet")
  12081. },
  12082. ]
  12083. ))
  12084. characterMakers.push(() => makeCharacter(
  12085. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12086. {
  12087. kaiju: {
  12088. height: math.unit(1.75, "meters"),
  12089. weight: math.unit(55, "kg"),
  12090. name: "Kaiju",
  12091. image: {
  12092. source: "./media/characters/lykonous/kaiju.svg",
  12093. extra: 1055 / 946,
  12094. bottom: 0.135
  12095. }
  12096. },
  12097. },
  12098. [
  12099. {
  12100. name: "Normal",
  12101. height: math.unit(2.5, "meters"),
  12102. default: true
  12103. },
  12104. {
  12105. name: "Kaiju Dragon",
  12106. height: math.unit(60, "meters")
  12107. },
  12108. {
  12109. name: "Mega Kaiju",
  12110. height: math.unit(120, "km")
  12111. },
  12112. {
  12113. name: "Giga Kaiju",
  12114. height: math.unit(200, "megameters")
  12115. },
  12116. {
  12117. name: "Terra Kaiju",
  12118. height: math.unit(400, "gigameters")
  12119. },
  12120. {
  12121. name: "Kaiju Dragon God",
  12122. height: math.unit(13000, "exaparsecs")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(6, "feet"),
  12131. weight: math.unit(150, "lb"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/blü/front.svg",
  12135. extra: 1883 / 1564,
  12136. bottom: 0.031
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Normal",
  12143. height: math.unit(13, "feet"),
  12144. default: true
  12145. },
  12146. {
  12147. name: "Big Boi",
  12148. height: math.unit(150, "meters")
  12149. },
  12150. {
  12151. name: "Mini Stomper",
  12152. height: math.unit(300, "meters")
  12153. },
  12154. {
  12155. name: "Macro",
  12156. height: math.unit(1000, "meters")
  12157. },
  12158. {
  12159. name: "Megamacro",
  12160. height: math.unit(11000, "meters")
  12161. },
  12162. {
  12163. name: "Gigamacro",
  12164. height: math.unit(11000, "km")
  12165. },
  12166. {
  12167. name: "Teramacro",
  12168. height: math.unit(420000, "km")
  12169. },
  12170. {
  12171. name: "Examacro",
  12172. height: math.unit(120, "parsecs")
  12173. },
  12174. {
  12175. name: "God Tho",
  12176. height: math.unit(98000000000, "parsecs")
  12177. },
  12178. ]
  12179. ))
  12180. characterMakers.push(() => makeCharacter(
  12181. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12182. {
  12183. taurFront: {
  12184. height: math.unit(6, "feet"),
  12185. weight: math.unit(200, "lb"),
  12186. name: "Taur (Front)",
  12187. image: {
  12188. source: "./media/characters/scales/taur-front.svg",
  12189. extra: 1,
  12190. bottom: 0.05
  12191. }
  12192. },
  12193. taurBack: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(200, "lb"),
  12196. name: "Taur (Back)",
  12197. image: {
  12198. source: "./media/characters/scales/taur-back.svg",
  12199. extra: 1,
  12200. bottom: 0.08
  12201. }
  12202. },
  12203. anthro: {
  12204. height: math.unit(6 * 7 / 12, "feet"),
  12205. weight: math.unit(100, "lb"),
  12206. name: "Anthro",
  12207. image: {
  12208. source: "./media/characters/scales/anthro.svg",
  12209. extra: 1,
  12210. bottom: 0.06
  12211. }
  12212. },
  12213. },
  12214. [
  12215. {
  12216. name: "Normal",
  12217. height: math.unit(12, "feet"),
  12218. default: true
  12219. },
  12220. ]
  12221. ))
  12222. characterMakers.push(() => makeCharacter(
  12223. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12224. {
  12225. front: {
  12226. height: math.unit(6, "feet"),
  12227. weight: math.unit(150, "lb"),
  12228. name: "Front",
  12229. image: {
  12230. source: "./media/characters/koragos/front.svg",
  12231. extra: 841 / 794,
  12232. bottom: 0.035
  12233. }
  12234. },
  12235. back: {
  12236. height: math.unit(6, "feet"),
  12237. weight: math.unit(150, "lb"),
  12238. name: "Back",
  12239. image: {
  12240. source: "./media/characters/koragos/back.svg",
  12241. extra: 841 / 810,
  12242. bottom: 0.022
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Normal",
  12249. height: math.unit(6 + 11 / 12, "feet"),
  12250. default: true
  12251. },
  12252. {
  12253. name: "Macro",
  12254. height: math.unit(490, "feet")
  12255. },
  12256. {
  12257. name: "Megamacro",
  12258. height: math.unit(10, "miles")
  12259. },
  12260. {
  12261. name: "Gigamacro",
  12262. height: math.unit(50, "miles")
  12263. },
  12264. ]
  12265. ))
  12266. characterMakers.push(() => makeCharacter(
  12267. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12268. {
  12269. front: {
  12270. height: math.unit(6, "feet"),
  12271. weight: math.unit(250, "lb"),
  12272. name: "Front",
  12273. image: {
  12274. source: "./media/characters/xylrem/front.svg",
  12275. extra: 3323 / 3050,
  12276. bottom: 0.065
  12277. }
  12278. },
  12279. },
  12280. [
  12281. {
  12282. name: "Micro",
  12283. height: math.unit(4, "feet")
  12284. },
  12285. {
  12286. name: "Normal",
  12287. height: math.unit(16, "feet"),
  12288. default: true
  12289. },
  12290. {
  12291. name: "Macro",
  12292. height: math.unit(2720, "feet")
  12293. },
  12294. {
  12295. name: "Megamacro",
  12296. height: math.unit(25000, "miles")
  12297. },
  12298. ]
  12299. ))
  12300. characterMakers.push(() => makeCharacter(
  12301. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12302. {
  12303. front: {
  12304. height: math.unit(8, "feet"),
  12305. weight: math.unit(250, "kg"),
  12306. name: "Front",
  12307. image: {
  12308. source: "./media/characters/ikideru/front.svg",
  12309. extra: 930 / 870,
  12310. bottom: 0.087
  12311. }
  12312. },
  12313. back: {
  12314. height: math.unit(8, "feet"),
  12315. weight: math.unit(250, "kg"),
  12316. name: "Back",
  12317. image: {
  12318. source: "./media/characters/ikideru/back.svg",
  12319. extra: 919 / 852,
  12320. bottom: 0.055
  12321. }
  12322. },
  12323. },
  12324. [
  12325. {
  12326. name: "Rare",
  12327. height: math.unit(8, "feet"),
  12328. default: true
  12329. },
  12330. {
  12331. name: "Playful Loom",
  12332. height: math.unit(80, "feet")
  12333. },
  12334. {
  12335. name: "City Leaner",
  12336. height: math.unit(230, "feet")
  12337. },
  12338. {
  12339. name: "Megamacro",
  12340. height: math.unit(2500, "feet")
  12341. },
  12342. {
  12343. name: "Gigamacro",
  12344. height: math.unit(26400, "feet")
  12345. },
  12346. {
  12347. name: "Tectonic Shifter",
  12348. height: math.unit(1.7, "megameters")
  12349. },
  12350. {
  12351. name: "Planet Carer",
  12352. height: math.unit(21, "megameters")
  12353. },
  12354. {
  12355. name: "God",
  12356. height: math.unit(11157.22, "parsecs")
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12362. {
  12363. front: {
  12364. height: math.unit(6, "feet"),
  12365. weight: math.unit(120, "lb"),
  12366. name: "Front",
  12367. image: {
  12368. source: "./media/characters/neo/front.svg"
  12369. }
  12370. },
  12371. },
  12372. [
  12373. {
  12374. name: "Micro",
  12375. height: math.unit(2, "inches"),
  12376. default: true
  12377. },
  12378. {
  12379. name: "Human Size",
  12380. height: math.unit(5 + 8 / 12, "feet")
  12381. },
  12382. ]
  12383. ))
  12384. characterMakers.push(() => makeCharacter(
  12385. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12386. {
  12387. front: {
  12388. height: math.unit(13 + 10 / 12, "feet"),
  12389. weight: math.unit(5320, "lb"),
  12390. name: "Front",
  12391. image: {
  12392. source: "./media/characters/chauncey-chantz/front.svg",
  12393. extra: 1587 / 1435,
  12394. bottom: 0.02
  12395. }
  12396. },
  12397. },
  12398. [
  12399. {
  12400. name: "Normal",
  12401. height: math.unit(13 + 10 / 12, "feet"),
  12402. default: true
  12403. },
  12404. {
  12405. name: "Macro",
  12406. height: math.unit(45, "feet")
  12407. },
  12408. {
  12409. name: "Megamacro",
  12410. height: math.unit(250, "miles")
  12411. },
  12412. {
  12413. name: "Planetary",
  12414. height: math.unit(10000, "miles")
  12415. },
  12416. {
  12417. name: "Galactic",
  12418. height: math.unit(40000, "parsecs")
  12419. },
  12420. {
  12421. name: "Universal",
  12422. height: math.unit(1, "yottameter")
  12423. },
  12424. ]
  12425. ))
  12426. characterMakers.push(() => makeCharacter(
  12427. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12428. {
  12429. front: {
  12430. height: math.unit(6, "feet"),
  12431. weight: math.unit(150, "lb"),
  12432. name: "Front",
  12433. image: {
  12434. source: "./media/characters/epifox/front.svg",
  12435. extra: 1,
  12436. bottom: 0.075
  12437. }
  12438. },
  12439. },
  12440. [
  12441. {
  12442. name: "Micro",
  12443. height: math.unit(6, "inches")
  12444. },
  12445. {
  12446. name: "Normal",
  12447. height: math.unit(12, "feet"),
  12448. default: true
  12449. },
  12450. {
  12451. name: "Macro",
  12452. height: math.unit(3810, "feet")
  12453. },
  12454. {
  12455. name: "Megamacro",
  12456. height: math.unit(500, "miles")
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12462. {
  12463. front: {
  12464. height: math.unit(1.8796, "m"),
  12465. weight: math.unit(230, "lb"),
  12466. name: "Front",
  12467. image: {
  12468. source: "./media/characters/colin-t/front.svg",
  12469. extra: 1272 / 1193,
  12470. bottom: 0.07
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Micro",
  12477. height: math.unit(0.571, "meters")
  12478. },
  12479. {
  12480. name: "Normal",
  12481. height: math.unit(1.8796, "meters"),
  12482. default: true
  12483. },
  12484. {
  12485. name: "Tall",
  12486. height: math.unit(4, "meters")
  12487. },
  12488. {
  12489. name: "Macro",
  12490. height: math.unit(67.241, "meters")
  12491. },
  12492. {
  12493. name: "Megamacro",
  12494. height: math.unit(371.856, "meters")
  12495. },
  12496. {
  12497. name: "Planetary",
  12498. height: math.unit(12631.5689, "km")
  12499. },
  12500. ]
  12501. ))
  12502. characterMakers.push(() => makeCharacter(
  12503. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12504. {
  12505. front: {
  12506. height: math.unit(1.85, "meters"),
  12507. weight: math.unit(80, "kg"),
  12508. name: "Front",
  12509. image: {
  12510. source: "./media/characters/matvei/front.svg",
  12511. extra: 614 / 594,
  12512. bottom: 0.01
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(1.85, "meters"),
  12520. default: true
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12526. {
  12527. front: {
  12528. height: math.unit(5 + 9 / 12, "feet"),
  12529. weight: math.unit(70, "lb"),
  12530. name: "Front",
  12531. image: {
  12532. source: "./media/characters/quincy/front.svg",
  12533. extra: 3041 / 2751
  12534. }
  12535. },
  12536. back: {
  12537. height: math.unit(5 + 9 / 12, "feet"),
  12538. weight: math.unit(70, "lb"),
  12539. name: "Back",
  12540. image: {
  12541. source: "./media/characters/quincy/back.svg",
  12542. extra: 3041 / 2751
  12543. }
  12544. },
  12545. flying: {
  12546. height: math.unit(5 + 4 / 12, "feet"),
  12547. weight: math.unit(70, "lb"),
  12548. name: "Flying",
  12549. image: {
  12550. source: "./media/characters/quincy/flying.svg",
  12551. extra: 1044 / 930
  12552. }
  12553. },
  12554. },
  12555. [
  12556. {
  12557. name: "Micro",
  12558. height: math.unit(3, "cm")
  12559. },
  12560. {
  12561. name: "Normal",
  12562. height: math.unit(5 + 9 / 12, "feet")
  12563. },
  12564. {
  12565. name: "Macro",
  12566. height: math.unit(200, "meters"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Megamacro",
  12571. height: math.unit(1000, "meters")
  12572. },
  12573. ]
  12574. ))
  12575. characterMakers.push(() => makeCharacter(
  12576. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12577. {
  12578. front: {
  12579. height: math.unit(3 + 11/12, "feet"),
  12580. weight: math.unit(50, "lb"),
  12581. name: "Front",
  12582. image: {
  12583. source: "./media/characters/vanrel/front.svg",
  12584. extra: 1104/949,
  12585. bottom: 52/1156
  12586. }
  12587. },
  12588. back: {
  12589. height: math.unit(3 + 11/12, "feet"),
  12590. weight: math.unit(50, "lb"),
  12591. name: "Back",
  12592. image: {
  12593. source: "./media/characters/vanrel/back.svg",
  12594. extra: 1119/976,
  12595. bottom: 37/1156
  12596. }
  12597. },
  12598. tome: {
  12599. height: math.unit(1.35, "feet"),
  12600. weight: math.unit(10, "lb"),
  12601. name: "Vanrel's Tome",
  12602. rename: true,
  12603. image: {
  12604. source: "./media/characters/vanrel/tome.svg"
  12605. }
  12606. },
  12607. beans: {
  12608. height: math.unit(0.89, "feet"),
  12609. name: "Beans",
  12610. image: {
  12611. source: "./media/characters/vanrel/beans.svg"
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Normal",
  12618. height: math.unit(3 + 11/12, "feet"),
  12619. default: true
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12625. {
  12626. front: {
  12627. height: math.unit(7 + 5 / 12, "feet"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/kuiper-vanrel/front.svg",
  12631. extra: 1219/1169,
  12632. bottom: 69/1288
  12633. }
  12634. },
  12635. back: {
  12636. height: math.unit(7 + 5 / 12, "feet"),
  12637. name: "Back",
  12638. image: {
  12639. source: "./media/characters/kuiper-vanrel/back.svg",
  12640. extra: 1236/1193,
  12641. bottom: 27/1263
  12642. }
  12643. },
  12644. foot: {
  12645. height: math.unit(0.55, "meters"),
  12646. name: "Foot",
  12647. image: {
  12648. source: "./media/characters/kuiper-vanrel/foot.svg",
  12649. }
  12650. },
  12651. battle: {
  12652. height: math.unit(6.824, "feet"),
  12653. name: "Battle",
  12654. image: {
  12655. source: "./media/characters/kuiper-vanrel/battle.svg",
  12656. extra: 1466 / 1327,
  12657. bottom: 29 / 1492.5
  12658. }
  12659. },
  12660. meerkui: {
  12661. height: math.unit(18, "inches"),
  12662. name: "Meerkui",
  12663. image: {
  12664. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12665. extra: 1354/1289,
  12666. bottom: 69/1423
  12667. }
  12668. },
  12669. },
  12670. [
  12671. {
  12672. name: "Normal",
  12673. height: math.unit(7 + 5 / 12, "feet"),
  12674. default: true
  12675. },
  12676. ]
  12677. ))
  12678. characterMakers.push(() => makeCharacter(
  12679. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12680. {
  12681. front: {
  12682. height: math.unit(8 + 5 / 12, "feet"),
  12683. name: "Front",
  12684. image: {
  12685. source: "./media/characters/keset-vanrel/front.svg",
  12686. extra: 1231/1148,
  12687. bottom: 82/1313
  12688. }
  12689. },
  12690. back: {
  12691. height: math.unit(8 + 5 / 12, "feet"),
  12692. name: "Back",
  12693. image: {
  12694. source: "./media/characters/keset-vanrel/back.svg",
  12695. extra: 1240/1174,
  12696. bottom: 33/1273
  12697. }
  12698. },
  12699. hand: {
  12700. height: math.unit(0.6, "meters"),
  12701. name: "Hand",
  12702. image: {
  12703. source: "./media/characters/keset-vanrel/hand.svg"
  12704. }
  12705. },
  12706. foot: {
  12707. height: math.unit(0.94978, "meters"),
  12708. name: "Foot",
  12709. image: {
  12710. source: "./media/characters/keset-vanrel/foot.svg"
  12711. }
  12712. },
  12713. battle: {
  12714. height: math.unit(7.408, "feet"),
  12715. name: "Battle",
  12716. image: {
  12717. source: "./media/characters/keset-vanrel/battle.svg",
  12718. extra: 1890 / 1386,
  12719. bottom: 73.28 / 1970
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Normal",
  12726. height: math.unit(8 + 5 / 12, "feet"),
  12727. default: true
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(6, "feet"),
  12736. weight: math.unit(150, "lb"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/neos/front.svg",
  12740. extra: 1696 / 992,
  12741. bottom: 0.14
  12742. }
  12743. },
  12744. },
  12745. [
  12746. {
  12747. name: "Normal",
  12748. height: math.unit(54, "cm"),
  12749. default: true
  12750. },
  12751. {
  12752. name: "Macro",
  12753. height: math.unit(100, "m")
  12754. },
  12755. {
  12756. name: "Megamacro",
  12757. height: math.unit(10, "km")
  12758. },
  12759. {
  12760. name: "Megamacro+",
  12761. height: math.unit(100, "km")
  12762. },
  12763. {
  12764. name: "Gigamacro",
  12765. height: math.unit(100, "Mm")
  12766. },
  12767. {
  12768. name: "Teramacro",
  12769. height: math.unit(100, "Gm")
  12770. },
  12771. {
  12772. name: "Examacro",
  12773. height: math.unit(100, "Em")
  12774. },
  12775. {
  12776. name: "Godly",
  12777. height: math.unit(10000, "Ym")
  12778. },
  12779. {
  12780. name: "Beyond Godly",
  12781. height: math.unit(25, "multiverses")
  12782. },
  12783. ]
  12784. ))
  12785. characterMakers.push(() => makeCharacter(
  12786. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12787. {
  12788. feminine: {
  12789. height: math.unit(5, "feet"),
  12790. weight: math.unit(100, "lb"),
  12791. name: "Feminine",
  12792. image: {
  12793. source: "./media/characters/sammy-mouse/feminine.svg",
  12794. extra: 2526 / 2425,
  12795. bottom: 0.123
  12796. }
  12797. },
  12798. masculine: {
  12799. height: math.unit(5, "feet"),
  12800. weight: math.unit(100, "lb"),
  12801. name: "Masculine",
  12802. image: {
  12803. source: "./media/characters/sammy-mouse/masculine.svg",
  12804. extra: 2526 / 2425,
  12805. bottom: 0.123
  12806. }
  12807. },
  12808. },
  12809. [
  12810. {
  12811. name: "Micro",
  12812. height: math.unit(5, "inches")
  12813. },
  12814. {
  12815. name: "Normal",
  12816. height: math.unit(5, "feet"),
  12817. default: true
  12818. },
  12819. {
  12820. name: "Macro",
  12821. height: math.unit(60, "feet")
  12822. },
  12823. ]
  12824. ))
  12825. characterMakers.push(() => makeCharacter(
  12826. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12827. {
  12828. front: {
  12829. height: math.unit(4, "feet"),
  12830. weight: math.unit(50, "lb"),
  12831. name: "Front",
  12832. image: {
  12833. source: "./media/characters/kole/front.svg",
  12834. extra: 1423 / 1303,
  12835. bottom: 0.025
  12836. }
  12837. },
  12838. back: {
  12839. height: math.unit(4, "feet"),
  12840. weight: math.unit(50, "lb"),
  12841. name: "Back",
  12842. image: {
  12843. source: "./media/characters/kole/back.svg",
  12844. extra: 1426 / 1280,
  12845. bottom: 0.02
  12846. }
  12847. },
  12848. },
  12849. [
  12850. {
  12851. name: "Normal",
  12852. height: math.unit(4, "feet"),
  12853. default: true
  12854. },
  12855. ]
  12856. ))
  12857. characterMakers.push(() => makeCharacter(
  12858. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12859. {
  12860. front: {
  12861. height: math.unit(2.5, "feet"),
  12862. weight: math.unit(32, "lb"),
  12863. name: "Front",
  12864. image: {
  12865. source: "./media/characters/rufran/front.svg",
  12866. extra: 1313/885,
  12867. bottom: 94/1407
  12868. }
  12869. },
  12870. side: {
  12871. height: math.unit(2.5, "feet"),
  12872. weight: math.unit(32, "lb"),
  12873. name: "Side",
  12874. image: {
  12875. source: "./media/characters/rufran/side.svg",
  12876. extra: 1109/852,
  12877. bottom: 118/1227
  12878. }
  12879. },
  12880. back: {
  12881. height: math.unit(2.5, "feet"),
  12882. weight: math.unit(32, "lb"),
  12883. name: "Back",
  12884. image: {
  12885. source: "./media/characters/rufran/back.svg",
  12886. extra: 1280/878,
  12887. bottom: 131/1411
  12888. }
  12889. },
  12890. mouth: {
  12891. height: math.unit(1.13, "feet"),
  12892. name: "Mouth",
  12893. image: {
  12894. source: "./media/characters/rufran/mouth.svg"
  12895. }
  12896. },
  12897. foot: {
  12898. height: math.unit(1.33, "feet"),
  12899. name: "Foot",
  12900. image: {
  12901. source: "./media/characters/rufran/foot.svg"
  12902. }
  12903. },
  12904. koboldFront: {
  12905. height: math.unit(2 + 6 / 12, "feet"),
  12906. weight: math.unit(20, "lb"),
  12907. name: "Front (Kobold)",
  12908. image: {
  12909. source: "./media/characters/rufran/kobold-front.svg",
  12910. extra: 2041 / 1839,
  12911. bottom: 0.055
  12912. }
  12913. },
  12914. koboldBack: {
  12915. height: math.unit(2 + 6 / 12, "feet"),
  12916. weight: math.unit(20, "lb"),
  12917. name: "Back (Kobold)",
  12918. image: {
  12919. source: "./media/characters/rufran/kobold-back.svg",
  12920. extra: 2054 / 1839,
  12921. bottom: 0.01
  12922. }
  12923. },
  12924. koboldHand: {
  12925. height: math.unit(0.2166, "meters"),
  12926. name: "Hand (Kobold)",
  12927. image: {
  12928. source: "./media/characters/rufran/kobold-hand.svg"
  12929. }
  12930. },
  12931. koboldFoot: {
  12932. height: math.unit(0.185, "meters"),
  12933. name: "Foot (Kobold)",
  12934. image: {
  12935. source: "./media/characters/rufran/kobold-foot.svg"
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Micro",
  12942. height: math.unit(1, "inch")
  12943. },
  12944. {
  12945. name: "Normal",
  12946. height: math.unit(2 + 6 / 12, "feet"),
  12947. default: true
  12948. },
  12949. {
  12950. name: "Big",
  12951. height: math.unit(60, "feet")
  12952. },
  12953. {
  12954. name: "Macro",
  12955. height: math.unit(325, "feet")
  12956. },
  12957. ]
  12958. ))
  12959. characterMakers.push(() => makeCharacter(
  12960. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12961. {
  12962. front: {
  12963. height: math.unit(0.3, "meters"),
  12964. weight: math.unit(3.5, "kg"),
  12965. name: "Front",
  12966. image: {
  12967. source: "./media/characters/chip/front.svg",
  12968. extra: 748 / 674
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Micro",
  12975. height: math.unit(1, "inch"),
  12976. default: true
  12977. },
  12978. ]
  12979. ))
  12980. characterMakers.push(() => makeCharacter(
  12981. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12982. {
  12983. side: {
  12984. height: math.unit(2.3, "meters"),
  12985. weight: math.unit(3500, "lb"),
  12986. name: "Side",
  12987. image: {
  12988. source: "./media/characters/torvid/side.svg",
  12989. extra: 1972 / 722,
  12990. bottom: 0.035
  12991. }
  12992. },
  12993. },
  12994. [
  12995. {
  12996. name: "Normal",
  12997. height: math.unit(2.3, "meters"),
  12998. default: true
  12999. },
  13000. ]
  13001. ))
  13002. characterMakers.push(() => makeCharacter(
  13003. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13004. {
  13005. front: {
  13006. height: math.unit(2, "meters"),
  13007. weight: math.unit(150.5, "kg"),
  13008. name: "Front",
  13009. image: {
  13010. source: "./media/characters/susan/front.svg",
  13011. extra: 693 / 635,
  13012. bottom: 0.05
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Megamacro",
  13019. height: math.unit(505, "miles"),
  13020. default: true
  13021. },
  13022. ]
  13023. ))
  13024. characterMakers.push(() => makeCharacter(
  13025. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13026. {
  13027. front: {
  13028. height: math.unit(6, "feet"),
  13029. weight: math.unit(150, "lb"),
  13030. name: "Front",
  13031. image: {
  13032. source: "./media/characters/raindrops/front.svg",
  13033. extra: 2655 / 2461,
  13034. bottom: 49 / 2705
  13035. }
  13036. },
  13037. back: {
  13038. height: math.unit(6, "feet"),
  13039. weight: math.unit(150, "lb"),
  13040. name: "Back",
  13041. image: {
  13042. source: "./media/characters/raindrops/back.svg",
  13043. extra: 2574 / 2400,
  13044. bottom: 65 / 2634
  13045. }
  13046. },
  13047. },
  13048. [
  13049. {
  13050. name: "Micro",
  13051. height: math.unit(6, "inches")
  13052. },
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(6 + 2 / 12, "feet")
  13056. },
  13057. {
  13058. name: "Macro",
  13059. height: math.unit(131, "feet"),
  13060. default: true
  13061. },
  13062. {
  13063. name: "Megamacro",
  13064. height: math.unit(15, "miles")
  13065. },
  13066. {
  13067. name: "Gigamacro",
  13068. height: math.unit(4000, "miles")
  13069. },
  13070. {
  13071. name: "Teramacro",
  13072. height: math.unit(315000, "miles")
  13073. },
  13074. ]
  13075. ))
  13076. characterMakers.push(() => makeCharacter(
  13077. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13078. {
  13079. front: {
  13080. height: math.unit(2.794, "meters"),
  13081. weight: math.unit(325, "kg"),
  13082. name: "Front",
  13083. image: {
  13084. source: "./media/characters/tezwa/front.svg",
  13085. extra: 2083 / 1906,
  13086. bottom: 0.031
  13087. }
  13088. },
  13089. foot: {
  13090. height: math.unit(0.687, "meters"),
  13091. name: "Foot",
  13092. image: {
  13093. source: "./media/characters/tezwa/foot.svg"
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Normal",
  13100. height: math.unit(9 + 2 / 12, "feet"),
  13101. default: true
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13107. {
  13108. front: {
  13109. height: math.unit(58, "feet"),
  13110. weight: math.unit(89000, "lb"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/typhus/front.svg",
  13114. extra: 816 / 800,
  13115. bottom: 0.065
  13116. }
  13117. },
  13118. },
  13119. [
  13120. {
  13121. name: "Macro",
  13122. height: math.unit(58, "feet"),
  13123. default: true
  13124. },
  13125. ]
  13126. ))
  13127. characterMakers.push(() => makeCharacter(
  13128. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13129. {
  13130. front: {
  13131. height: math.unit(12, "feet"),
  13132. weight: math.unit(6, "tonnes"),
  13133. name: "Front",
  13134. image: {
  13135. source: "./media/characters/lyra-von-wulf/front.svg",
  13136. extra: 1,
  13137. bottom: 0.10
  13138. }
  13139. },
  13140. frontMecha: {
  13141. height: math.unit(12, "feet"),
  13142. weight: math.unit(12, "tonnes"),
  13143. name: "Front (Mecha)",
  13144. image: {
  13145. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13146. extra: 1,
  13147. bottom: 0.042
  13148. }
  13149. },
  13150. maw: {
  13151. height: math.unit(2.2, "feet"),
  13152. name: "Maw",
  13153. image: {
  13154. source: "./media/characters/lyra-von-wulf/maw.svg"
  13155. }
  13156. },
  13157. },
  13158. [
  13159. {
  13160. name: "Normal",
  13161. height: math.unit(12, "feet"),
  13162. default: true
  13163. },
  13164. {
  13165. name: "Classic",
  13166. height: math.unit(50, "feet")
  13167. },
  13168. {
  13169. name: "Macro",
  13170. height: math.unit(500, "feet")
  13171. },
  13172. {
  13173. name: "Megamacro",
  13174. height: math.unit(1, "mile")
  13175. },
  13176. {
  13177. name: "Gigamacro",
  13178. height: math.unit(400, "miles")
  13179. },
  13180. {
  13181. name: "Teramacro",
  13182. height: math.unit(22000, "miles")
  13183. },
  13184. {
  13185. name: "Solarmacro",
  13186. height: math.unit(8600000, "miles")
  13187. },
  13188. {
  13189. name: "Galactic",
  13190. height: math.unit(1057000, "lightyears")
  13191. },
  13192. ]
  13193. ))
  13194. characterMakers.push(() => makeCharacter(
  13195. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13196. {
  13197. front: {
  13198. height: math.unit(6 + 10 / 12, "feet"),
  13199. weight: math.unit(150, "lb"),
  13200. name: "Front",
  13201. image: {
  13202. source: "./media/characters/dixon/front.svg",
  13203. extra: 3361 / 3209,
  13204. bottom: 0.01
  13205. }
  13206. },
  13207. },
  13208. [
  13209. {
  13210. name: "Normal",
  13211. height: math.unit(6 + 10 / 12, "feet"),
  13212. default: true
  13213. },
  13214. {
  13215. name: "Big",
  13216. height: math.unit(12, "meters")
  13217. },
  13218. {
  13219. name: "Macro",
  13220. height: math.unit(500, "meters")
  13221. },
  13222. {
  13223. name: "Megamacro",
  13224. height: math.unit(2, "km")
  13225. },
  13226. ]
  13227. ))
  13228. characterMakers.push(() => makeCharacter(
  13229. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13230. {
  13231. front: {
  13232. height: math.unit(185, "cm"),
  13233. weight: math.unit(68, "kg"),
  13234. name: "Front",
  13235. image: {
  13236. source: "./media/characters/kauko/front.svg",
  13237. extra: 1455 / 1421,
  13238. bottom: 0.03
  13239. }
  13240. },
  13241. back: {
  13242. height: math.unit(185, "cm"),
  13243. weight: math.unit(68, "kg"),
  13244. name: "Back",
  13245. image: {
  13246. source: "./media/characters/kauko/back.svg",
  13247. extra: 1455 / 1421,
  13248. bottom: 0.004
  13249. }
  13250. },
  13251. },
  13252. [
  13253. {
  13254. name: "Normal",
  13255. height: math.unit(185, "cm"),
  13256. default: true
  13257. },
  13258. ]
  13259. ))
  13260. characterMakers.push(() => makeCharacter(
  13261. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13262. {
  13263. front: {
  13264. height: math.unit(6, "feet"),
  13265. weight: math.unit(150, "kg"),
  13266. name: "Front",
  13267. image: {
  13268. source: "./media/characters/varg/front.svg",
  13269. extra: 1108 / 1018,
  13270. bottom: 0.0375
  13271. }
  13272. },
  13273. },
  13274. [
  13275. {
  13276. name: "Normal",
  13277. height: math.unit(5, "meters")
  13278. },
  13279. {
  13280. name: "Macro",
  13281. height: math.unit(200, "meters")
  13282. },
  13283. {
  13284. name: "Megamacro",
  13285. height: math.unit(20, "kilometers")
  13286. },
  13287. {
  13288. name: "True Size",
  13289. height: math.unit(211, "km"),
  13290. default: true
  13291. },
  13292. {
  13293. name: "Gigamacro",
  13294. height: math.unit(1000, "km")
  13295. },
  13296. {
  13297. name: "Gigamacro+",
  13298. height: math.unit(8000, "km")
  13299. },
  13300. {
  13301. name: "Teramacro",
  13302. height: math.unit(1000000, "km")
  13303. },
  13304. ]
  13305. ))
  13306. characterMakers.push(() => makeCharacter(
  13307. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13308. {
  13309. front: {
  13310. height: math.unit(7 + 7 / 12, "feet"),
  13311. weight: math.unit(267, "lb"),
  13312. name: "Front",
  13313. image: {
  13314. source: "./media/characters/dayza/front.svg",
  13315. extra: 1262 / 1200,
  13316. bottom: 0.035
  13317. }
  13318. },
  13319. side: {
  13320. height: math.unit(7 + 7 / 12, "feet"),
  13321. weight: math.unit(267, "lb"),
  13322. name: "Side",
  13323. image: {
  13324. source: "./media/characters/dayza/side.svg",
  13325. extra: 1295 / 1245,
  13326. bottom: 0.05
  13327. }
  13328. },
  13329. back: {
  13330. height: math.unit(7 + 7 / 12, "feet"),
  13331. weight: math.unit(267, "lb"),
  13332. name: "Back",
  13333. image: {
  13334. source: "./media/characters/dayza/back.svg",
  13335. extra: 1241 / 1170
  13336. }
  13337. },
  13338. },
  13339. [
  13340. {
  13341. name: "Normal",
  13342. height: math.unit(7 + 7 / 12, "feet"),
  13343. default: true
  13344. },
  13345. {
  13346. name: "Macro",
  13347. height: math.unit(155, "feet")
  13348. },
  13349. ]
  13350. ))
  13351. characterMakers.push(() => makeCharacter(
  13352. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13353. {
  13354. front: {
  13355. height: math.unit(6 + 5 / 12, "feet"),
  13356. weight: math.unit(160, "lb"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/xanthos/front.svg",
  13360. extra: 1,
  13361. bottom: 0.04
  13362. }
  13363. },
  13364. back: {
  13365. height: math.unit(6 + 5 / 12, "feet"),
  13366. weight: math.unit(160, "lb"),
  13367. name: "Back",
  13368. image: {
  13369. source: "./media/characters/xanthos/back.svg",
  13370. extra: 1,
  13371. bottom: 0.03
  13372. }
  13373. },
  13374. hand: {
  13375. height: math.unit(0.928, "feet"),
  13376. name: "Hand",
  13377. image: {
  13378. source: "./media/characters/xanthos/hand.svg"
  13379. }
  13380. },
  13381. foot: {
  13382. height: math.unit(1.286, "feet"),
  13383. name: "Foot",
  13384. image: {
  13385. source: "./media/characters/xanthos/foot.svg"
  13386. }
  13387. },
  13388. },
  13389. [
  13390. {
  13391. name: "Normal",
  13392. height: math.unit(6 + 5 / 12, "feet"),
  13393. default: true
  13394. },
  13395. {
  13396. name: "Normal+",
  13397. height: math.unit(6, "meters")
  13398. },
  13399. {
  13400. name: "Macro",
  13401. height: math.unit(40, "feet")
  13402. },
  13403. {
  13404. name: "Macro+",
  13405. height: math.unit(200, "meters")
  13406. },
  13407. {
  13408. name: "Megamacro",
  13409. height: math.unit(20, "km")
  13410. },
  13411. {
  13412. name: "Megamacro+",
  13413. height: math.unit(100, "km")
  13414. },
  13415. {
  13416. name: "Gigamacro",
  13417. height: math.unit(200, "megameters")
  13418. },
  13419. {
  13420. name: "Gigamacro+",
  13421. height: math.unit(1.5, "gigameters")
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13427. {
  13428. front: {
  13429. height: math.unit(6 + 3 / 12, "feet"),
  13430. weight: math.unit(215, "lb"),
  13431. name: "Front",
  13432. image: {
  13433. source: "./media/characters/grynn/front.svg",
  13434. extra: 4627 / 4209,
  13435. bottom: 0.047
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Micro",
  13442. height: math.unit(6, "inches")
  13443. },
  13444. {
  13445. name: "Normal",
  13446. height: math.unit(6 + 3 / 12, "feet"),
  13447. default: true
  13448. },
  13449. {
  13450. name: "Big",
  13451. height: math.unit(104, "feet")
  13452. },
  13453. {
  13454. name: "Macro",
  13455. height: math.unit(944, "feet")
  13456. },
  13457. {
  13458. name: "Macro+",
  13459. height: math.unit(9480, "feet")
  13460. },
  13461. {
  13462. name: "Megamacro",
  13463. height: math.unit(78752, "feet")
  13464. },
  13465. {
  13466. name: "Megamacro+",
  13467. height: math.unit(630128, "feet")
  13468. },
  13469. {
  13470. name: "Megamacro++",
  13471. height: math.unit(3150695, "feet")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(7 + 5 / 12, "feet"),
  13480. weight: math.unit(450, "lb"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/mocha-aura/front.svg",
  13484. extra: 1907 / 1817,
  13485. bottom: 0.04
  13486. }
  13487. },
  13488. back: {
  13489. height: math.unit(7 + 5 / 12, "feet"),
  13490. weight: math.unit(450, "lb"),
  13491. name: "Back",
  13492. image: {
  13493. source: "./media/characters/mocha-aura/back.svg",
  13494. extra: 1900 / 1825,
  13495. bottom: 0.045
  13496. }
  13497. },
  13498. },
  13499. [
  13500. {
  13501. name: "Nano",
  13502. height: math.unit(1, "nm")
  13503. },
  13504. {
  13505. name: "Megamicro",
  13506. height: math.unit(1, "mm")
  13507. },
  13508. {
  13509. name: "Micro",
  13510. height: math.unit(3, "inches")
  13511. },
  13512. {
  13513. name: "Normal",
  13514. height: math.unit(7 + 5 / 12, "feet"),
  13515. default: true
  13516. },
  13517. {
  13518. name: "Macro",
  13519. height: math.unit(30, "feet")
  13520. },
  13521. {
  13522. name: "Megamacro",
  13523. height: math.unit(3500, "feet")
  13524. },
  13525. {
  13526. name: "Teramacro",
  13527. height: math.unit(500000, "miles")
  13528. },
  13529. {
  13530. name: "Petamacro",
  13531. height: math.unit(50000000000000000, "parsecs")
  13532. },
  13533. ]
  13534. ))
  13535. characterMakers.push(() => makeCharacter(
  13536. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13537. {
  13538. front: {
  13539. height: math.unit(6, "feet"),
  13540. weight: math.unit(150, "lb"),
  13541. name: "Front",
  13542. image: {
  13543. source: "./media/characters/ilisha-devya/front.svg",
  13544. extra: 1053/1049,
  13545. bottom: 270/1323
  13546. }
  13547. },
  13548. back: {
  13549. height: math.unit(6, "feet"),
  13550. weight: math.unit(150, "lb"),
  13551. name: "Back",
  13552. image: {
  13553. source: "./media/characters/ilisha-devya/back.svg",
  13554. extra: 1131/1128,
  13555. bottom: 39/1170
  13556. }
  13557. },
  13558. },
  13559. [
  13560. {
  13561. name: "Macro",
  13562. height: math.unit(500, "feet"),
  13563. default: true
  13564. },
  13565. {
  13566. name: "Megamacro",
  13567. height: math.unit(10, "miles")
  13568. },
  13569. {
  13570. name: "Gigamacro",
  13571. height: math.unit(100000, "miles")
  13572. },
  13573. {
  13574. name: "Examacro",
  13575. height: math.unit(1e9, "lightyears")
  13576. },
  13577. {
  13578. name: "Omniversal",
  13579. height: math.unit(1e33, "lightyears")
  13580. },
  13581. {
  13582. name: "Beyond Infinite",
  13583. height: math.unit(1e100, "lightyears")
  13584. },
  13585. ]
  13586. ))
  13587. characterMakers.push(() => makeCharacter(
  13588. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13589. {
  13590. Side: {
  13591. height: math.unit(6, "feet"),
  13592. weight: math.unit(150, "lb"),
  13593. name: "Side",
  13594. image: {
  13595. source: "./media/characters/mira/side.svg",
  13596. extra: 900 / 799,
  13597. bottom: 0.02
  13598. }
  13599. },
  13600. },
  13601. [
  13602. {
  13603. name: "Human Size",
  13604. height: math.unit(6, "feet")
  13605. },
  13606. {
  13607. name: "Macro",
  13608. height: math.unit(100, "feet"),
  13609. default: true
  13610. },
  13611. {
  13612. name: "Megamacro",
  13613. height: math.unit(10, "miles")
  13614. },
  13615. {
  13616. name: "Gigamacro",
  13617. height: math.unit(25000, "miles")
  13618. },
  13619. {
  13620. name: "Teramacro",
  13621. height: math.unit(300, "AU")
  13622. },
  13623. {
  13624. name: "Full Size",
  13625. height: math.unit(4.5e10, "lightyears")
  13626. },
  13627. ]
  13628. ))
  13629. characterMakers.push(() => makeCharacter(
  13630. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13631. {
  13632. front: {
  13633. height: math.unit(6, "feet"),
  13634. weight: math.unit(150, "lb"),
  13635. name: "Front",
  13636. image: {
  13637. source: "./media/characters/holly/front.svg",
  13638. extra: 639 / 606
  13639. }
  13640. },
  13641. back: {
  13642. height: math.unit(6, "feet"),
  13643. weight: math.unit(150, "lb"),
  13644. name: "Back",
  13645. image: {
  13646. source: "./media/characters/holly/back.svg",
  13647. extra: 623 / 598
  13648. }
  13649. },
  13650. frontWorking: {
  13651. height: math.unit(6, "feet"),
  13652. weight: math.unit(150, "lb"),
  13653. name: "Front (Working)",
  13654. image: {
  13655. source: "./media/characters/holly/front-working.svg",
  13656. extra: 607 / 577,
  13657. bottom: 0.048
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Normal",
  13664. height: math.unit(12 + 3 / 12, "feet"),
  13665. default: true
  13666. },
  13667. ]
  13668. ))
  13669. characterMakers.push(() => makeCharacter(
  13670. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13671. {
  13672. front: {
  13673. height: math.unit(6, "feet"),
  13674. weight: math.unit(150, "lb"),
  13675. name: "Front",
  13676. image: {
  13677. source: "./media/characters/porter/front.svg",
  13678. extra: 1,
  13679. bottom: 0.01
  13680. }
  13681. },
  13682. frontRobes: {
  13683. height: math.unit(6, "feet"),
  13684. weight: math.unit(150, "lb"),
  13685. name: "Front (Robes)",
  13686. image: {
  13687. source: "./media/characters/porter/front-robes.svg",
  13688. extra: 1.01,
  13689. bottom: 0.01
  13690. }
  13691. },
  13692. },
  13693. [
  13694. {
  13695. name: "Normal",
  13696. height: math.unit(11 + 9 / 12, "feet"),
  13697. default: true
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13703. {
  13704. legendary: {
  13705. height: math.unit(6, "feet"),
  13706. weight: math.unit(150, "lb"),
  13707. name: "Legendary",
  13708. image: {
  13709. source: "./media/characters/lucy/legendary.svg",
  13710. extra: 1355 / 1100,
  13711. bottom: 0.045
  13712. }
  13713. },
  13714. },
  13715. [
  13716. {
  13717. name: "Legendary",
  13718. height: math.unit(86882 * 2, "miles"),
  13719. default: true
  13720. },
  13721. ]
  13722. ))
  13723. characterMakers.push(() => makeCharacter(
  13724. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13725. {
  13726. front: {
  13727. height: math.unit(6, "feet"),
  13728. weight: math.unit(150, "lb"),
  13729. name: "Front",
  13730. image: {
  13731. source: "./media/characters/drusilla/front.svg",
  13732. extra: 678 / 635,
  13733. bottom: 0.03
  13734. }
  13735. },
  13736. back: {
  13737. height: math.unit(6, "feet"),
  13738. weight: math.unit(150, "lb"),
  13739. name: "Back",
  13740. image: {
  13741. source: "./media/characters/drusilla/back.svg",
  13742. extra: 678 / 635,
  13743. bottom: 0.005
  13744. }
  13745. },
  13746. },
  13747. [
  13748. {
  13749. name: "Macro",
  13750. height: math.unit(100, "feet")
  13751. },
  13752. {
  13753. name: "Canon Height",
  13754. height: math.unit(2000, "feet"),
  13755. default: true
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13761. {
  13762. front: {
  13763. height: math.unit(6, "feet"),
  13764. weight: math.unit(180, "lb"),
  13765. name: "Front",
  13766. image: {
  13767. source: "./media/characters/renard-thatch/front.svg",
  13768. extra: 2411 / 2275,
  13769. bottom: 0.01
  13770. }
  13771. },
  13772. frontPosing: {
  13773. height: math.unit(6, "feet"),
  13774. weight: math.unit(180, "lb"),
  13775. name: "Front (Posing)",
  13776. image: {
  13777. source: "./media/characters/renard-thatch/front-posing.svg",
  13778. extra: 2381 / 2261,
  13779. bottom: 0.01
  13780. }
  13781. },
  13782. back: {
  13783. height: math.unit(6, "feet"),
  13784. weight: math.unit(180, "lb"),
  13785. name: "Back",
  13786. image: {
  13787. source: "./media/characters/renard-thatch/back.svg",
  13788. extra: 2428 / 2288
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Micro",
  13795. height: math.unit(3, "inches")
  13796. },
  13797. {
  13798. name: "Default",
  13799. height: math.unit(6, "feet"),
  13800. default: true
  13801. },
  13802. {
  13803. name: "Macro",
  13804. height: math.unit(75, "feet")
  13805. },
  13806. ]
  13807. ))
  13808. characterMakers.push(() => makeCharacter(
  13809. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13810. {
  13811. front: {
  13812. height: math.unit(1450, "feet"),
  13813. weight: math.unit(1.21e6, "tons"),
  13814. name: "Front",
  13815. image: {
  13816. source: "./media/characters/sekvra/front.svg",
  13817. extra: 1193/1190,
  13818. bottom: 78/1271
  13819. }
  13820. },
  13821. side: {
  13822. height: math.unit(1450, "feet"),
  13823. weight: math.unit(1.21e6, "tons"),
  13824. name: "Side",
  13825. image: {
  13826. source: "./media/characters/sekvra/side.svg",
  13827. extra: 1193/1190,
  13828. bottom: 52/1245
  13829. }
  13830. },
  13831. back: {
  13832. height: math.unit(1450, "feet"),
  13833. weight: math.unit(1.21e6, "tons"),
  13834. name: "Back",
  13835. image: {
  13836. source: "./media/characters/sekvra/back.svg",
  13837. extra: 1219/1216,
  13838. bottom: 21/1240
  13839. }
  13840. },
  13841. frontClothed: {
  13842. height: math.unit(1450, "feet"),
  13843. weight: math.unit(1.21e6, "tons"),
  13844. name: "Front (Clothed)",
  13845. image: {
  13846. source: "./media/characters/sekvra/front-clothed.svg",
  13847. extra: 1192/1189,
  13848. bottom: 79/1271
  13849. }
  13850. },
  13851. },
  13852. [
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(1450, "feet"),
  13856. default: true
  13857. },
  13858. {
  13859. name: "Megamacro",
  13860. height: math.unit(15000, "feet")
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13866. {
  13867. front: {
  13868. height: math.unit(6, "feet"),
  13869. weight: math.unit(150, "lb"),
  13870. name: "Front",
  13871. image: {
  13872. source: "./media/characters/carmine/front.svg",
  13873. extra: 1,
  13874. bottom: 0.035
  13875. }
  13876. },
  13877. frontArmor: {
  13878. height: math.unit(6, "feet"),
  13879. weight: math.unit(150, "lb"),
  13880. name: "Front (Armor)",
  13881. image: {
  13882. source: "./media/characters/carmine/front-armor.svg",
  13883. extra: 1,
  13884. bottom: 0.035
  13885. }
  13886. },
  13887. },
  13888. [
  13889. {
  13890. name: "Large",
  13891. height: math.unit(1, "mile")
  13892. },
  13893. {
  13894. name: "Huge",
  13895. height: math.unit(40, "miles"),
  13896. default: true
  13897. },
  13898. {
  13899. name: "Colossal",
  13900. height: math.unit(2500, "miles")
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13906. {
  13907. front: {
  13908. height: math.unit(6, "feet"),
  13909. weight: math.unit(150, "lb"),
  13910. name: "Front",
  13911. image: {
  13912. source: "./media/characters/elyssia/front.svg",
  13913. extra: 2201 / 2035,
  13914. bottom: 0.05
  13915. }
  13916. },
  13917. frontClothed: {
  13918. height: math.unit(6, "feet"),
  13919. weight: math.unit(150, "lb"),
  13920. name: "Front (Clothed)",
  13921. image: {
  13922. source: "./media/characters/elyssia/front-clothed.svg",
  13923. extra: 2201 / 2035,
  13924. bottom: 0.05
  13925. }
  13926. },
  13927. back: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(150, "lb"),
  13930. name: "Back",
  13931. image: {
  13932. source: "./media/characters/elyssia/back.svg",
  13933. extra: 2201 / 2035,
  13934. bottom: 0.013
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Smaller",
  13941. height: math.unit(150, "feet")
  13942. },
  13943. {
  13944. name: "Standard",
  13945. height: math.unit(1400, "feet"),
  13946. default: true
  13947. },
  13948. {
  13949. name: "Distracted",
  13950. height: math.unit(15000, "feet")
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13956. {
  13957. front: {
  13958. height: math.unit(7 + 4/12, "feet"),
  13959. weight: math.unit(690, "lb"),
  13960. name: "Front",
  13961. image: {
  13962. source: "./media/characters/geno-maxwell/front.svg",
  13963. extra: 984/856,
  13964. bottom: 87/1071
  13965. }
  13966. },
  13967. back: {
  13968. height: math.unit(7 + 4/12, "feet"),
  13969. weight: math.unit(690, "lb"),
  13970. name: "Back",
  13971. image: {
  13972. source: "./media/characters/geno-maxwell/back.svg",
  13973. extra: 981/854,
  13974. bottom: 57/1038
  13975. }
  13976. },
  13977. frontCostume: {
  13978. height: math.unit(7 + 4/12, "feet"),
  13979. weight: math.unit(690, "lb"),
  13980. name: "Front (Costume)",
  13981. image: {
  13982. source: "./media/characters/geno-maxwell/front-costume.svg",
  13983. extra: 984/856,
  13984. bottom: 87/1071
  13985. }
  13986. },
  13987. backcostume: {
  13988. height: math.unit(7 + 4/12, "feet"),
  13989. weight: math.unit(690, "lb"),
  13990. name: "Back (Costume)",
  13991. image: {
  13992. source: "./media/characters/geno-maxwell/back-costume.svg",
  13993. extra: 981/854,
  13994. bottom: 57/1038
  13995. }
  13996. },
  13997. },
  13998. [
  13999. {
  14000. name: "Micro",
  14001. height: math.unit(3, "inches")
  14002. },
  14003. {
  14004. name: "Normal",
  14005. height: math.unit(7 + 4 / 12, "feet"),
  14006. default: true
  14007. },
  14008. {
  14009. name: "Macro",
  14010. height: math.unit(220, "feet")
  14011. },
  14012. {
  14013. name: "Megamacro",
  14014. height: math.unit(11, "miles")
  14015. },
  14016. ]
  14017. ))
  14018. characterMakers.push(() => makeCharacter(
  14019. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14020. {
  14021. front: {
  14022. height: math.unit(7 + 4/12, "feet"),
  14023. weight: math.unit(750, "lb"),
  14024. name: "Front",
  14025. image: {
  14026. source: "./media/characters/regena-maxwell/front.svg",
  14027. extra: 984/856,
  14028. bottom: 87/1071
  14029. }
  14030. },
  14031. back: {
  14032. height: math.unit(7 + 4/12, "feet"),
  14033. weight: math.unit(750, "lb"),
  14034. name: "Back",
  14035. image: {
  14036. source: "./media/characters/regena-maxwell/back.svg",
  14037. extra: 981/854,
  14038. bottom: 57/1038
  14039. }
  14040. },
  14041. frontCostume: {
  14042. height: math.unit(7 + 4/12, "feet"),
  14043. weight: math.unit(750, "lb"),
  14044. name: "Front (Costume)",
  14045. image: {
  14046. source: "./media/characters/regena-maxwell/front-costume.svg",
  14047. extra: 984/856,
  14048. bottom: 87/1071
  14049. }
  14050. },
  14051. backcostume: {
  14052. height: math.unit(7 + 4/12, "feet"),
  14053. weight: math.unit(750, "lb"),
  14054. name: "Back (Costume)",
  14055. image: {
  14056. source: "./media/characters/regena-maxwell/back-costume.svg",
  14057. extra: 981/854,
  14058. bottom: 57/1038
  14059. }
  14060. },
  14061. },
  14062. [
  14063. {
  14064. name: "Normal",
  14065. height: math.unit(7 + 4 / 12, "feet"),
  14066. default: true
  14067. },
  14068. {
  14069. name: "Macro",
  14070. height: math.unit(220, "feet")
  14071. },
  14072. {
  14073. name: "Megamacro",
  14074. height: math.unit(11, "miles")
  14075. },
  14076. ]
  14077. ))
  14078. characterMakers.push(() => makeCharacter(
  14079. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14080. {
  14081. front: {
  14082. height: math.unit(6, "feet"),
  14083. weight: math.unit(150, "lb"),
  14084. name: "Front",
  14085. image: {
  14086. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14087. extra: 860 / 690,
  14088. bottom: 0.03
  14089. }
  14090. },
  14091. },
  14092. [
  14093. {
  14094. name: "Normal",
  14095. height: math.unit(1.7, "meters"),
  14096. default: true
  14097. },
  14098. ]
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14102. {
  14103. front: {
  14104. height: math.unit(6, "feet"),
  14105. weight: math.unit(150, "lb"),
  14106. name: "Front",
  14107. image: {
  14108. source: "./media/characters/quilly/front.svg",
  14109. extra: 890 / 776
  14110. }
  14111. },
  14112. },
  14113. [
  14114. {
  14115. name: "Gigamacro",
  14116. height: math.unit(404090, "miles"),
  14117. default: true
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(7 + 8 / 12, "feet"),
  14126. weight: math.unit(350, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/tempest/front.svg",
  14130. extra: 1175 / 1086,
  14131. bottom: 0.02
  14132. }
  14133. },
  14134. },
  14135. [
  14136. {
  14137. name: "Normal",
  14138. height: math.unit(7 + 8 / 12, "feet"),
  14139. default: true
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14145. {
  14146. side: {
  14147. height: math.unit(4 + 5 / 12, "feet"),
  14148. weight: math.unit(80, "lb"),
  14149. name: "Side",
  14150. image: {
  14151. source: "./media/characters/rodger/side.svg",
  14152. extra: 1235 / 1118
  14153. }
  14154. },
  14155. },
  14156. [
  14157. {
  14158. name: "Micro",
  14159. height: math.unit(1, "inch")
  14160. },
  14161. {
  14162. name: "Normal",
  14163. height: math.unit(4 + 5 / 12, "feet"),
  14164. default: true
  14165. },
  14166. {
  14167. name: "Macro",
  14168. height: math.unit(120, "feet")
  14169. },
  14170. ]
  14171. ))
  14172. characterMakers.push(() => makeCharacter(
  14173. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14174. {
  14175. front: {
  14176. height: math.unit(6, "feet"),
  14177. weight: math.unit(150, "lb"),
  14178. name: "Front",
  14179. image: {
  14180. source: "./media/characters/danyel/front.svg",
  14181. extra: 1185 / 1123,
  14182. bottom: 0.05
  14183. }
  14184. },
  14185. },
  14186. [
  14187. {
  14188. name: "Shrunken",
  14189. height: math.unit(0.5, "mm")
  14190. },
  14191. {
  14192. name: "Micro",
  14193. height: math.unit(1, "mm"),
  14194. default: true
  14195. },
  14196. {
  14197. name: "Upsized",
  14198. height: math.unit(5 + 5 / 12, "feet")
  14199. },
  14200. ]
  14201. ))
  14202. characterMakers.push(() => makeCharacter(
  14203. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14204. {
  14205. front: {
  14206. height: math.unit(5 + 6 / 12, "feet"),
  14207. weight: math.unit(200, "lb"),
  14208. name: "Front",
  14209. image: {
  14210. source: "./media/characters/vivian-bijoux/front.svg",
  14211. extra: 1217/1209,
  14212. bottom: 76/1293
  14213. }
  14214. },
  14215. back: {
  14216. height: math.unit(5 + 6 / 12, "feet"),
  14217. weight: math.unit(200, "lb"),
  14218. name: "Back",
  14219. image: {
  14220. source: "./media/characters/vivian-bijoux/back.svg",
  14221. extra: 1214/1208,
  14222. bottom: 51/1265
  14223. }
  14224. },
  14225. dressed: {
  14226. height: math.unit(5 + 6 / 12, "feet"),
  14227. weight: math.unit(200, "lb"),
  14228. name: "Dressed",
  14229. image: {
  14230. source: "./media/characters/vivian-bijoux/dressed.svg",
  14231. extra: 1217/1209,
  14232. bottom: 76/1293
  14233. }
  14234. },
  14235. },
  14236. [
  14237. {
  14238. name: "Normal",
  14239. height: math.unit(5 + 6 / 12, "feet"),
  14240. default: true
  14241. },
  14242. {
  14243. name: "Bad Dream",
  14244. height: math.unit(500, "feet")
  14245. },
  14246. {
  14247. name: "Nightmare",
  14248. height: math.unit(500, "miles")
  14249. },
  14250. ]
  14251. ))
  14252. characterMakers.push(() => makeCharacter(
  14253. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14254. {
  14255. front: {
  14256. height: math.unit(6 + 1 / 12, "feet"),
  14257. weight: math.unit(260, "lb"),
  14258. name: "Front",
  14259. image: {
  14260. source: "./media/characters/zeta/front.svg",
  14261. extra: 1968 / 1889,
  14262. bottom: 0.06
  14263. }
  14264. },
  14265. back: {
  14266. height: math.unit(6 + 1 / 12, "feet"),
  14267. weight: math.unit(260, "lb"),
  14268. name: "Back",
  14269. image: {
  14270. source: "./media/characters/zeta/back.svg",
  14271. extra: 1944 / 1858,
  14272. bottom: 0.03
  14273. }
  14274. },
  14275. hand: {
  14276. height: math.unit(1.112, "feet"),
  14277. name: "Hand",
  14278. image: {
  14279. source: "./media/characters/zeta/hand.svg"
  14280. }
  14281. },
  14282. foot: {
  14283. height: math.unit(1.48, "feet"),
  14284. name: "Foot",
  14285. image: {
  14286. source: "./media/characters/zeta/foot.svg"
  14287. }
  14288. },
  14289. },
  14290. [
  14291. {
  14292. name: "Micro",
  14293. height: math.unit(6, "inches")
  14294. },
  14295. {
  14296. name: "Normal",
  14297. height: math.unit(6 + 1 / 12, "feet"),
  14298. default: true
  14299. },
  14300. {
  14301. name: "Macro",
  14302. height: math.unit(20, "feet")
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14308. {
  14309. front: {
  14310. height: math.unit(6, "feet"),
  14311. weight: math.unit(150, "lb"),
  14312. name: "Front",
  14313. image: {
  14314. source: "./media/characters/jamie-larsen/front.svg",
  14315. extra: 962 / 933,
  14316. bottom: 0.02
  14317. }
  14318. },
  14319. back: {
  14320. height: math.unit(6, "feet"),
  14321. weight: math.unit(150, "lb"),
  14322. name: "Back",
  14323. image: {
  14324. source: "./media/characters/jamie-larsen/back.svg",
  14325. extra: 997 / 946
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Macro",
  14332. height: math.unit(28 + 7 / 12, "feet"),
  14333. default: true
  14334. },
  14335. {
  14336. name: "Macro+",
  14337. height: math.unit(180, "feet")
  14338. },
  14339. {
  14340. name: "Megamacro",
  14341. height: math.unit(10, "miles")
  14342. },
  14343. {
  14344. name: "Gigamacro",
  14345. height: math.unit(200000, "miles")
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14351. {
  14352. front: {
  14353. height: math.unit(6, "feet"),
  14354. weight: math.unit(120, "lb"),
  14355. name: "Front",
  14356. image: {
  14357. source: "./media/characters/vance/front.svg",
  14358. extra: 1980 / 1890,
  14359. bottom: 0.09
  14360. }
  14361. },
  14362. back: {
  14363. height: math.unit(6, "feet"),
  14364. weight: math.unit(120, "lb"),
  14365. name: "Back",
  14366. image: {
  14367. source: "./media/characters/vance/back.svg",
  14368. extra: 2081 / 1994,
  14369. bottom: 0.014
  14370. }
  14371. },
  14372. hand: {
  14373. height: math.unit(0.88, "feet"),
  14374. name: "Hand",
  14375. image: {
  14376. source: "./media/characters/vance/hand.svg"
  14377. }
  14378. },
  14379. foot: {
  14380. height: math.unit(0.64, "feet"),
  14381. name: "Foot",
  14382. image: {
  14383. source: "./media/characters/vance/foot.svg"
  14384. }
  14385. },
  14386. },
  14387. [
  14388. {
  14389. name: "Small",
  14390. height: math.unit(90, "feet"),
  14391. default: true
  14392. },
  14393. {
  14394. name: "Macro",
  14395. height: math.unit(100, "meters")
  14396. },
  14397. {
  14398. name: "Megamacro",
  14399. height: math.unit(15, "miles")
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14405. {
  14406. front: {
  14407. height: math.unit(6, "feet"),
  14408. weight: math.unit(180, "lb"),
  14409. name: "Front",
  14410. image: {
  14411. source: "./media/characters/xochitl/front.svg",
  14412. extra: 2297 / 2261,
  14413. bottom: 0.065
  14414. }
  14415. },
  14416. back: {
  14417. height: math.unit(6, "feet"),
  14418. weight: math.unit(180, "lb"),
  14419. name: "Back",
  14420. image: {
  14421. source: "./media/characters/xochitl/back.svg",
  14422. extra: 2386 / 2354,
  14423. bottom: 0.01
  14424. }
  14425. },
  14426. foot: {
  14427. height: math.unit(6 / 5 * 1.15, "feet"),
  14428. weight: math.unit(150, "lb"),
  14429. name: "Foot",
  14430. image: {
  14431. source: "./media/characters/xochitl/foot.svg"
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Macro",
  14438. height: math.unit(80, "feet")
  14439. },
  14440. {
  14441. name: "Macro+",
  14442. height: math.unit(400, "feet"),
  14443. default: true
  14444. },
  14445. {
  14446. name: "Gigamacro",
  14447. height: math.unit(80000, "miles")
  14448. },
  14449. {
  14450. name: "Gigamacro+",
  14451. height: math.unit(400000, "miles")
  14452. },
  14453. {
  14454. name: "Teramacro",
  14455. height: math.unit(300, "AU")
  14456. },
  14457. ]
  14458. ))
  14459. characterMakers.push(() => makeCharacter(
  14460. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14461. {
  14462. front: {
  14463. height: math.unit(6, "feet"),
  14464. weight: math.unit(150, "lb"),
  14465. name: "Front",
  14466. image: {
  14467. source: "./media/characters/vincent/front.svg",
  14468. extra: 1130 / 1080,
  14469. bottom: 0.055
  14470. }
  14471. },
  14472. beak: {
  14473. height: math.unit(6 * 0.1, "feet"),
  14474. name: "Beak",
  14475. image: {
  14476. source: "./media/characters/vincent/beak.svg"
  14477. }
  14478. },
  14479. hand: {
  14480. height: math.unit(6 * 0.85, "feet"),
  14481. weight: math.unit(150, "lb"),
  14482. name: "Hand",
  14483. image: {
  14484. source: "./media/characters/vincent/hand.svg"
  14485. }
  14486. },
  14487. foot: {
  14488. height: math.unit(6 * 0.19, "feet"),
  14489. weight: math.unit(150, "lb"),
  14490. name: "Foot",
  14491. image: {
  14492. source: "./media/characters/vincent/foot.svg"
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Base",
  14499. height: math.unit(6 + 5 / 12, "feet"),
  14500. default: true
  14501. },
  14502. {
  14503. name: "Macro",
  14504. height: math.unit(300, "feet")
  14505. },
  14506. {
  14507. name: "Megamacro",
  14508. height: math.unit(2, "miles")
  14509. },
  14510. {
  14511. name: "Gigamacro",
  14512. height: math.unit(1000, "miles")
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14518. {
  14519. front: {
  14520. height: math.unit(2, "meters"),
  14521. weight: math.unit(500, "kg"),
  14522. name: "Front",
  14523. image: {
  14524. source: "./media/characters/coatl/front.svg",
  14525. extra: 3948 / 3500,
  14526. bottom: 0.082
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Normal",
  14533. height: math.unit(4, "meters")
  14534. },
  14535. {
  14536. name: "Macro",
  14537. height: math.unit(100, "meters"),
  14538. default: true
  14539. },
  14540. {
  14541. name: "Macro+",
  14542. height: math.unit(300, "meters")
  14543. },
  14544. {
  14545. name: "Megamacro",
  14546. height: math.unit(3, "gigameters")
  14547. },
  14548. {
  14549. name: "Megamacro+",
  14550. height: math.unit(300, "terameters")
  14551. },
  14552. {
  14553. name: "Megamacro++",
  14554. height: math.unit(3, "lightyears")
  14555. },
  14556. ]
  14557. ))
  14558. characterMakers.push(() => makeCharacter(
  14559. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14560. {
  14561. front: {
  14562. height: math.unit(6, "feet"),
  14563. weight: math.unit(50, "kg"),
  14564. name: "front",
  14565. image: {
  14566. source: "./media/characters/shiroryu/front.svg",
  14567. extra: 1990 / 1935
  14568. }
  14569. },
  14570. },
  14571. [
  14572. {
  14573. name: "Mortal Mingling",
  14574. height: math.unit(3, "meters")
  14575. },
  14576. {
  14577. name: "Kaiju-ish",
  14578. height: math.unit(250, "meters")
  14579. },
  14580. {
  14581. name: "Somewhat Godly",
  14582. height: math.unit(400, "km"),
  14583. default: true
  14584. },
  14585. {
  14586. name: "Planetary",
  14587. height: math.unit(300, "megameters")
  14588. },
  14589. {
  14590. name: "Galaxy-dwarfing",
  14591. height: math.unit(450, "kiloparsecs")
  14592. },
  14593. {
  14594. name: "Universe Eater",
  14595. height: math.unit(150, "gigaparsecs")
  14596. },
  14597. {
  14598. name: "Almost Immeasurable",
  14599. height: math.unit(1.3e266, "yottaparsecs")
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14605. {
  14606. front: {
  14607. height: math.unit(6, "feet"),
  14608. weight: math.unit(150, "lb"),
  14609. name: "Front",
  14610. image: {
  14611. source: "./media/characters/umeko/front.svg",
  14612. extra: 1,
  14613. bottom: 0.019
  14614. }
  14615. },
  14616. frontArmored: {
  14617. height: math.unit(6, "feet"),
  14618. weight: math.unit(150, "lb"),
  14619. name: "Front (Armored)",
  14620. image: {
  14621. source: "./media/characters/umeko/front-armored.svg",
  14622. extra: 1,
  14623. bottom: 0.021
  14624. }
  14625. },
  14626. },
  14627. [
  14628. {
  14629. name: "Macro",
  14630. height: math.unit(220, "feet"),
  14631. default: true
  14632. },
  14633. {
  14634. name: "Guardian Dragon",
  14635. height: math.unit(50, "miles")
  14636. },
  14637. {
  14638. name: "Cosmic",
  14639. height: math.unit(800000, "miles")
  14640. },
  14641. ]
  14642. ))
  14643. characterMakers.push(() => makeCharacter(
  14644. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14645. {
  14646. front: {
  14647. height: math.unit(6, "feet"),
  14648. weight: math.unit(150, "lb"),
  14649. name: "Front",
  14650. image: {
  14651. source: "./media/characters/cassidy/front.svg",
  14652. extra: 810/808,
  14653. bottom: 41/851
  14654. }
  14655. },
  14656. },
  14657. [
  14658. {
  14659. name: "Canon Height",
  14660. height: math.unit(120, "feet"),
  14661. default: true
  14662. },
  14663. {
  14664. name: "Macro+",
  14665. height: math.unit(400, "feet")
  14666. },
  14667. {
  14668. name: "Macro++",
  14669. height: math.unit(4000, "feet")
  14670. },
  14671. {
  14672. name: "Megamacro",
  14673. height: math.unit(3, "miles")
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(6, "feet"),
  14682. weight: math.unit(150, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/isaac/front.svg",
  14686. extra: 896 / 815,
  14687. bottom: 0.11
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Human Size",
  14694. height: math.unit(8, "feet"),
  14695. default: true
  14696. },
  14697. {
  14698. name: "Macro",
  14699. height: math.unit(400, "feet")
  14700. },
  14701. {
  14702. name: "Megamacro",
  14703. height: math.unit(50, "miles")
  14704. },
  14705. {
  14706. name: "Canon Height",
  14707. height: math.unit(200, "AU")
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14713. {
  14714. front: {
  14715. height: math.unit(6, "feet"),
  14716. weight: math.unit(72, "kg"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/sleekit/front.svg",
  14720. extra: 4693 / 4487,
  14721. bottom: 0.012
  14722. }
  14723. },
  14724. },
  14725. [
  14726. {
  14727. name: "Minimum Height",
  14728. height: math.unit(10, "meters")
  14729. },
  14730. {
  14731. name: "Smaller",
  14732. height: math.unit(25, "meters")
  14733. },
  14734. {
  14735. name: "Larger",
  14736. height: math.unit(38, "meters"),
  14737. default: true
  14738. },
  14739. {
  14740. name: "Maximum height",
  14741. height: math.unit(100, "meters")
  14742. },
  14743. ]
  14744. ))
  14745. characterMakers.push(() => makeCharacter(
  14746. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14747. {
  14748. front: {
  14749. height: math.unit(6, "feet"),
  14750. weight: math.unit(150, "lb"),
  14751. name: "Front",
  14752. image: {
  14753. source: "./media/characters/nillia/front.svg",
  14754. extra: 2195 / 2037,
  14755. bottom: 0.005
  14756. }
  14757. },
  14758. back: {
  14759. height: math.unit(6, "feet"),
  14760. weight: math.unit(150, "lb"),
  14761. name: "Back",
  14762. image: {
  14763. source: "./media/characters/nillia/back.svg",
  14764. extra: 2195 / 2037,
  14765. bottom: 0.005
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Canon Height",
  14772. height: math.unit(489, "feet"),
  14773. default: true
  14774. }
  14775. ]
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14779. {
  14780. front: {
  14781. height: math.unit(6, "feet"),
  14782. weight: math.unit(150, "lb"),
  14783. name: "Front",
  14784. image: {
  14785. source: "./media/characters/mesmyriza/front.svg",
  14786. extra: 2067 / 1784,
  14787. bottom: 0.035
  14788. }
  14789. },
  14790. foot: {
  14791. height: math.unit(6 / (250 / 35), "feet"),
  14792. name: "Foot",
  14793. image: {
  14794. source: "./media/characters/mesmyriza/foot.svg"
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Macro",
  14801. height: math.unit(457, "meters"),
  14802. default: true
  14803. },
  14804. {
  14805. name: "Megamacro",
  14806. height: math.unit(8, "megameters")
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(250, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/saudade/front.svg",
  14819. extra: 1172 / 1139,
  14820. bottom: 0.035
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Micro",
  14827. height: math.unit(3, "inches")
  14828. },
  14829. {
  14830. name: "Normal",
  14831. height: math.unit(6, "feet"),
  14832. default: true
  14833. },
  14834. {
  14835. name: "Macro",
  14836. height: math.unit(50, "feet")
  14837. },
  14838. {
  14839. name: "Megamacro",
  14840. height: math.unit(2800, "feet")
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(5 + 4 / 12, "feet"),
  14849. weight: math.unit(100, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/keireer/front.svg",
  14853. extra: 716 / 666,
  14854. bottom: 0.05
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(5 + 4 / 12, "feet"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(6, "feet"),
  14871. weight: math.unit(90, "kg"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/mirja/front.svg",
  14875. extra: 1789 / 1683,
  14876. bottom: 0.05
  14877. }
  14878. },
  14879. frontDressed: {
  14880. height: math.unit(6, "feet"),
  14881. weight: math.unit(90, "lb"),
  14882. name: "Front (Dressed)",
  14883. image: {
  14884. source: "./media/characters/mirja/front-dressed.svg",
  14885. extra: 1789 / 1683,
  14886. bottom: 0.05
  14887. }
  14888. },
  14889. back: {
  14890. height: math.unit(6, "feet"),
  14891. weight: math.unit(90, "lb"),
  14892. name: "Back",
  14893. image: {
  14894. source: "./media/characters/mirja/back.svg",
  14895. extra: 953 / 917,
  14896. bottom: 0.017
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "\"Incognito\"",
  14903. height: math.unit(3, "meters")
  14904. },
  14905. {
  14906. name: "Strolling Size",
  14907. height: math.unit(15, "km")
  14908. },
  14909. {
  14910. name: "Larger Strolling Size",
  14911. height: math.unit(400, "km")
  14912. },
  14913. {
  14914. name: "Preferred Size",
  14915. height: math.unit(5000, "km")
  14916. },
  14917. {
  14918. name: "True Size",
  14919. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14926. {
  14927. front: {
  14928. height: math.unit(15, "feet"),
  14929. weight: math.unit(880, "kg"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/nightraver/front.svg",
  14933. extra: 2444 / 2160,
  14934. bottom: 0.027
  14935. }
  14936. },
  14937. back: {
  14938. height: math.unit(15, "feet"),
  14939. weight: math.unit(880, "kg"),
  14940. name: "Back",
  14941. image: {
  14942. source: "./media/characters/nightraver/back.svg",
  14943. extra: 2309 / 2180,
  14944. bottom: 0.005
  14945. }
  14946. },
  14947. sole: {
  14948. height: math.unit(2.878, "feet"),
  14949. name: "Sole",
  14950. image: {
  14951. source: "./media/characters/nightraver/sole.svg"
  14952. }
  14953. },
  14954. foot: {
  14955. height: math.unit(2.285, "feet"),
  14956. name: "Foot",
  14957. image: {
  14958. source: "./media/characters/nightraver/foot.svg"
  14959. }
  14960. },
  14961. maw: {
  14962. height: math.unit(2.67, "feet"),
  14963. name: "Maw",
  14964. image: {
  14965. source: "./media/characters/nightraver/maw.svg"
  14966. }
  14967. },
  14968. },
  14969. [
  14970. {
  14971. name: "Micro",
  14972. height: math.unit(1, "cm")
  14973. },
  14974. {
  14975. name: "Normal",
  14976. height: math.unit(15, "feet"),
  14977. default: true
  14978. },
  14979. {
  14980. name: "Macro",
  14981. height: math.unit(300, "feet")
  14982. },
  14983. {
  14984. name: "Megamacro",
  14985. height: math.unit(300, "miles")
  14986. },
  14987. {
  14988. name: "Gigamacro",
  14989. height: math.unit(10000, "miles")
  14990. },
  14991. ]
  14992. ))
  14993. characterMakers.push(() => makeCharacter(
  14994. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14995. {
  14996. side: {
  14997. height: math.unit(2, "inches"),
  14998. weight: math.unit(5, "grams"),
  14999. name: "Side",
  15000. image: {
  15001. source: "./media/characters/arc/side.svg"
  15002. }
  15003. },
  15004. },
  15005. [
  15006. {
  15007. name: "Micro",
  15008. height: math.unit(2, "inches"),
  15009. default: true
  15010. },
  15011. ]
  15012. ))
  15013. characterMakers.push(() => makeCharacter(
  15014. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15015. {
  15016. front: {
  15017. height: math.unit(1.1938, "meters"),
  15018. weight: math.unit(54, "kg"),
  15019. name: "Front",
  15020. image: {
  15021. source: "./media/characters/nebula-shahar/front.svg",
  15022. extra: 1642 / 1436,
  15023. bottom: 0.06
  15024. }
  15025. },
  15026. },
  15027. [
  15028. {
  15029. name: "Megamicro",
  15030. height: math.unit(0.3, "mm")
  15031. },
  15032. {
  15033. name: "Micro",
  15034. height: math.unit(3, "cm")
  15035. },
  15036. {
  15037. name: "Normal",
  15038. height: math.unit(138, "cm"),
  15039. default: true
  15040. },
  15041. {
  15042. name: "Macro",
  15043. height: math.unit(30, "m")
  15044. },
  15045. ]
  15046. ))
  15047. characterMakers.push(() => makeCharacter(
  15048. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15049. {
  15050. front: {
  15051. height: math.unit(5.24, "feet"),
  15052. weight: math.unit(150, "lb"),
  15053. name: "Front",
  15054. image: {
  15055. source: "./media/characters/shayla/front.svg",
  15056. extra: 1512 / 1414,
  15057. bottom: 0.01
  15058. }
  15059. },
  15060. back: {
  15061. height: math.unit(5.24, "feet"),
  15062. weight: math.unit(150, "lb"),
  15063. name: "Back",
  15064. image: {
  15065. source: "./media/characters/shayla/back.svg",
  15066. extra: 1512 / 1414
  15067. }
  15068. },
  15069. hand: {
  15070. height: math.unit(0.7781496062992126, "feet"),
  15071. name: "Hand",
  15072. image: {
  15073. source: "./media/characters/shayla/hand.svg"
  15074. }
  15075. },
  15076. foot: {
  15077. height: math.unit(1.4206036745406823, "feet"),
  15078. name: "Foot",
  15079. image: {
  15080. source: "./media/characters/shayla/foot.svg"
  15081. }
  15082. },
  15083. },
  15084. [
  15085. {
  15086. name: "Micro",
  15087. height: math.unit(0.32, "feet")
  15088. },
  15089. {
  15090. name: "Normal",
  15091. height: math.unit(5.24, "feet"),
  15092. default: true
  15093. },
  15094. {
  15095. name: "Macro",
  15096. height: math.unit(492.12, "feet")
  15097. },
  15098. {
  15099. name: "Megamacro",
  15100. height: math.unit(186.41, "miles")
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15106. {
  15107. front: {
  15108. height: math.unit(2.2, "m"),
  15109. weight: math.unit(120, "kg"),
  15110. name: "Front",
  15111. image: {
  15112. source: "./media/characters/pia-jr/front.svg",
  15113. extra: 1000 / 970,
  15114. bottom: 0.035
  15115. }
  15116. },
  15117. hand: {
  15118. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15119. name: "Hand",
  15120. image: {
  15121. source: "./media/characters/pia-jr/hand.svg"
  15122. }
  15123. },
  15124. paw: {
  15125. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15126. name: "Paw",
  15127. image: {
  15128. source: "./media/characters/pia-jr/paw.svg"
  15129. }
  15130. },
  15131. },
  15132. [
  15133. {
  15134. name: "Micro",
  15135. height: math.unit(1.2, "cm")
  15136. },
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(2.2, "m"),
  15140. default: true
  15141. },
  15142. {
  15143. name: "Macro",
  15144. height: math.unit(180, "m")
  15145. },
  15146. {
  15147. name: "Megamacro",
  15148. height: math.unit(420, "km")
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15154. {
  15155. front: {
  15156. height: math.unit(2, "m"),
  15157. weight: math.unit(115, "kg"),
  15158. name: "Front",
  15159. image: {
  15160. source: "./media/characters/pia-sr/front.svg",
  15161. extra: 760 / 730,
  15162. bottom: 0.015
  15163. }
  15164. },
  15165. back: {
  15166. height: math.unit(2, "m"),
  15167. weight: math.unit(115, "kg"),
  15168. name: "Back",
  15169. image: {
  15170. source: "./media/characters/pia-sr/back.svg",
  15171. extra: 760 / 730,
  15172. bottom: 0.01
  15173. }
  15174. },
  15175. hand: {
  15176. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15177. name: "Hand",
  15178. image: {
  15179. source: "./media/characters/pia-sr/hand.svg"
  15180. }
  15181. },
  15182. foot: {
  15183. height: math.unit(1.83, "feet"),
  15184. name: "Foot",
  15185. image: {
  15186. source: "./media/characters/pia-sr/foot.svg"
  15187. }
  15188. },
  15189. },
  15190. [
  15191. {
  15192. name: "Micro",
  15193. height: math.unit(88, "mm")
  15194. },
  15195. {
  15196. name: "Normal",
  15197. height: math.unit(2, "m"),
  15198. default: true
  15199. },
  15200. {
  15201. name: "Macro",
  15202. height: math.unit(200, "m")
  15203. },
  15204. {
  15205. name: "Megamacro",
  15206. height: math.unit(420, "km")
  15207. },
  15208. ]
  15209. ))
  15210. characterMakers.push(() => makeCharacter(
  15211. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15212. {
  15213. front: {
  15214. height: math.unit(8 + 2 / 12, "feet"),
  15215. weight: math.unit(300, "lb"),
  15216. name: "Front",
  15217. image: {
  15218. source: "./media/characters/kibibyte/front.svg",
  15219. extra: 2221 / 2098,
  15220. bottom: 0.04
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Normal",
  15227. height: math.unit(8 + 2 / 12, "feet"),
  15228. default: true
  15229. },
  15230. {
  15231. name: "Socialable Macro",
  15232. height: math.unit(50, "feet")
  15233. },
  15234. {
  15235. name: "Macro",
  15236. height: math.unit(300, "feet")
  15237. },
  15238. {
  15239. name: "Megamacro",
  15240. height: math.unit(500, "miles")
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(6, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/felix/front.svg",
  15253. extra: 762 / 722,
  15254. bottom: 0.02
  15255. }
  15256. },
  15257. frontClothed: {
  15258. height: math.unit(6, "feet"),
  15259. weight: math.unit(150, "lb"),
  15260. name: "Front (Clothed)",
  15261. image: {
  15262. source: "./media/characters/felix/front-clothed.svg",
  15263. extra: 762 / 722,
  15264. bottom: 0.02
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "Normal",
  15271. height: math.unit(6 + 8 / 12, "feet"),
  15272. default: true
  15273. },
  15274. {
  15275. name: "Macro",
  15276. height: math.unit(2600, "feet")
  15277. },
  15278. {
  15279. name: "Megamacro",
  15280. height: math.unit(450, "miles")
  15281. },
  15282. ]
  15283. ))
  15284. characterMakers.push(() => makeCharacter(
  15285. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15286. {
  15287. front: {
  15288. height: math.unit(6 + 1 / 12, "feet"),
  15289. weight: math.unit(250, "lb"),
  15290. name: "Front",
  15291. image: {
  15292. source: "./media/characters/tobo/front.svg",
  15293. extra: 608 / 586,
  15294. bottom: 0.023
  15295. }
  15296. },
  15297. back: {
  15298. height: math.unit(6 + 1 / 12, "feet"),
  15299. weight: math.unit(250, "lb"),
  15300. name: "Back",
  15301. image: {
  15302. source: "./media/characters/tobo/back.svg",
  15303. extra: 608 / 586
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Nano",
  15310. height: math.unit(2, "nm")
  15311. },
  15312. {
  15313. name: "Megamicro",
  15314. height: math.unit(0.1, "mm")
  15315. },
  15316. {
  15317. name: "Micro",
  15318. height: math.unit(1, "inch"),
  15319. default: true
  15320. },
  15321. {
  15322. name: "Human-sized",
  15323. height: math.unit(6 + 1 / 12, "feet")
  15324. },
  15325. {
  15326. name: "Macro",
  15327. height: math.unit(250, "feet")
  15328. },
  15329. {
  15330. name: "Megamacro",
  15331. height: math.unit(75, "miles")
  15332. },
  15333. {
  15334. name: "Texas-sized",
  15335. height: math.unit(750, "miles")
  15336. },
  15337. {
  15338. name: "Teramacro",
  15339. height: math.unit(50000, "miles")
  15340. },
  15341. ]
  15342. ))
  15343. characterMakers.push(() => makeCharacter(
  15344. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15345. {
  15346. front: {
  15347. height: math.unit(6, "feet"),
  15348. weight: math.unit(269, "lb"),
  15349. name: "Front",
  15350. image: {
  15351. source: "./media/characters/danny-kapowsky/front.svg",
  15352. extra: 766 / 736,
  15353. bottom: 0.044
  15354. }
  15355. },
  15356. back: {
  15357. height: math.unit(6, "feet"),
  15358. weight: math.unit(269, "lb"),
  15359. name: "Back",
  15360. image: {
  15361. source: "./media/characters/danny-kapowsky/back.svg",
  15362. extra: 797 / 760,
  15363. bottom: 0.025
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Macro",
  15370. height: math.unit(150, "feet"),
  15371. default: true
  15372. },
  15373. {
  15374. name: "Macro+",
  15375. height: math.unit(200, "feet")
  15376. },
  15377. {
  15378. name: "Macro++",
  15379. height: math.unit(300, "feet")
  15380. },
  15381. {
  15382. name: "Macro+++",
  15383. height: math.unit(400, "feet")
  15384. },
  15385. ]
  15386. ))
  15387. characterMakers.push(() => makeCharacter(
  15388. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15389. {
  15390. side: {
  15391. height: math.unit(6, "feet"),
  15392. weight: math.unit(170, "lb"),
  15393. name: "Side",
  15394. image: {
  15395. source: "./media/characters/finn/side.svg",
  15396. extra: 1953 / 1807,
  15397. bottom: 0.057
  15398. }
  15399. },
  15400. },
  15401. [
  15402. {
  15403. name: "Megamacro",
  15404. height: math.unit(14445, "feet"),
  15405. default: true
  15406. },
  15407. ]
  15408. ))
  15409. characterMakers.push(() => makeCharacter(
  15410. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15411. {
  15412. front: {
  15413. height: math.unit(5 + 6 / 12, "feet"),
  15414. weight: math.unit(125, "lb"),
  15415. name: "Front",
  15416. image: {
  15417. source: "./media/characters/roy/front.svg",
  15418. extra: 1,
  15419. bottom: 0.11
  15420. }
  15421. },
  15422. },
  15423. [
  15424. {
  15425. name: "Micro",
  15426. height: math.unit(3, "inches"),
  15427. default: true
  15428. },
  15429. {
  15430. name: "Normal",
  15431. height: math.unit(5 + 6 / 12, "feet")
  15432. },
  15433. {
  15434. name: "Lesser Macro",
  15435. height: math.unit(60, "feet")
  15436. },
  15437. {
  15438. name: "Greater Macro",
  15439. height: math.unit(120, "feet")
  15440. },
  15441. ]
  15442. ))
  15443. characterMakers.push(() => makeCharacter(
  15444. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15445. {
  15446. front: {
  15447. height: math.unit(6, "feet"),
  15448. weight: math.unit(100, "lb"),
  15449. name: "Front",
  15450. image: {
  15451. source: "./media/characters/aevsivs/front.svg",
  15452. extra: 1,
  15453. bottom: 0.03
  15454. }
  15455. },
  15456. back: {
  15457. height: math.unit(6, "feet"),
  15458. weight: math.unit(100, "lb"),
  15459. name: "Back",
  15460. image: {
  15461. source: "./media/characters/aevsivs/back.svg"
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Micro",
  15468. height: math.unit(2, "inches"),
  15469. default: true
  15470. },
  15471. {
  15472. name: "Normal",
  15473. height: math.unit(5, "feet")
  15474. },
  15475. ]
  15476. ))
  15477. characterMakers.push(() => makeCharacter(
  15478. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15479. {
  15480. front: {
  15481. height: math.unit(5 + 7 / 12, "feet"),
  15482. weight: math.unit(159, "lb"),
  15483. name: "Front",
  15484. image: {
  15485. source: "./media/characters/hildegard/front.svg",
  15486. extra: 289 / 269,
  15487. bottom: 7.63 / 297.8
  15488. }
  15489. },
  15490. back: {
  15491. height: math.unit(5 + 7 / 12, "feet"),
  15492. weight: math.unit(159, "lb"),
  15493. name: "Back",
  15494. image: {
  15495. source: "./media/characters/hildegard/back.svg",
  15496. extra: 280 / 260,
  15497. bottom: 2.3 / 282
  15498. }
  15499. },
  15500. },
  15501. [
  15502. {
  15503. name: "Normal",
  15504. height: math.unit(5 + 7 / 12, "feet"),
  15505. default: true
  15506. },
  15507. ]
  15508. ))
  15509. characterMakers.push(() => makeCharacter(
  15510. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15511. {
  15512. bernard: {
  15513. height: math.unit(2 + 7 / 12, "feet"),
  15514. weight: math.unit(66, "lb"),
  15515. name: "Bernard",
  15516. rename: true,
  15517. image: {
  15518. source: "./media/characters/bernard-wilder/bernard.svg",
  15519. extra: 192 / 128,
  15520. bottom: 0.05
  15521. }
  15522. },
  15523. wilder: {
  15524. height: math.unit(5 + 8 / 12, "feet"),
  15525. weight: math.unit(143, "lb"),
  15526. name: "Wilder",
  15527. rename: true,
  15528. image: {
  15529. source: "./media/characters/bernard-wilder/wilder.svg",
  15530. extra: 361 / 312,
  15531. bottom: 0.02
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(2 + 7 / 12, "feet"),
  15539. default: true
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15545. {
  15546. anthro: {
  15547. height: math.unit(6 + 1 / 12, "feet"),
  15548. weight: math.unit(155, "lb"),
  15549. name: "Anthro",
  15550. image: {
  15551. source: "./media/characters/hearth/anthro.svg",
  15552. extra: 1178/1136,
  15553. bottom: 28/1206
  15554. }
  15555. },
  15556. feral: {
  15557. height: math.unit(3.78, "feet"),
  15558. weight: math.unit(35, "kg"),
  15559. name: "Feral",
  15560. image: {
  15561. source: "./media/characters/hearth/feral.svg",
  15562. extra: 153 / 135,
  15563. bottom: 0.03
  15564. }
  15565. },
  15566. },
  15567. [
  15568. {
  15569. name: "Normal",
  15570. height: math.unit(6 + 1 / 12, "feet"),
  15571. default: true
  15572. },
  15573. ]
  15574. ))
  15575. characterMakers.push(() => makeCharacter(
  15576. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15577. {
  15578. front: {
  15579. height: math.unit(6, "feet"),
  15580. weight: math.unit(182, "lb"),
  15581. name: "Front",
  15582. image: {
  15583. source: "./media/characters/ingrid/front.svg",
  15584. extra: 294 / 268,
  15585. bottom: 0.027
  15586. }
  15587. },
  15588. },
  15589. [
  15590. {
  15591. name: "Normal",
  15592. height: math.unit(6, "feet"),
  15593. default: true
  15594. },
  15595. ]
  15596. ))
  15597. characterMakers.push(() => makeCharacter(
  15598. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15599. {
  15600. eevee: {
  15601. height: math.unit(2 + 10 / 12, "feet"),
  15602. weight: math.unit(86, "lb"),
  15603. name: "Malgam",
  15604. image: {
  15605. source: "./media/characters/malgam/eevee.svg",
  15606. extra: 952/784,
  15607. bottom: 38/990
  15608. }
  15609. },
  15610. sylveon: {
  15611. height: math.unit(4, "feet"),
  15612. weight: math.unit(101, "lb"),
  15613. name: "Future Malgam",
  15614. rename: true,
  15615. image: {
  15616. source: "./media/characters/malgam/sylveon.svg",
  15617. extra: 371 / 325,
  15618. bottom: 0.015
  15619. }
  15620. },
  15621. gigantamax: {
  15622. height: math.unit(50, "feet"),
  15623. name: "Gigantamax Malgam",
  15624. rename: true,
  15625. image: {
  15626. source: "./media/characters/malgam/gigantamax.svg"
  15627. }
  15628. },
  15629. },
  15630. [
  15631. {
  15632. name: "Normal",
  15633. height: math.unit(2 + 10 / 12, "feet"),
  15634. default: true
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15640. {
  15641. front: {
  15642. height: math.unit(5 + 11 / 12, "feet"),
  15643. weight: math.unit(188, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/fleur/front.svg",
  15647. extra: 309 / 283,
  15648. bottom: 0.007
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Normal",
  15655. height: math.unit(5 + 11 / 12, "feet"),
  15656. default: true
  15657. },
  15658. ]
  15659. ))
  15660. characterMakers.push(() => makeCharacter(
  15661. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15662. {
  15663. front: {
  15664. height: math.unit(5 + 4 / 12, "feet"),
  15665. weight: math.unit(122, "lb"),
  15666. name: "Front",
  15667. image: {
  15668. source: "./media/characters/jude/front.svg",
  15669. extra: 288 / 273,
  15670. bottom: 0.03
  15671. }
  15672. },
  15673. },
  15674. [
  15675. {
  15676. name: "Normal",
  15677. height: math.unit(5 + 4 / 12, "feet"),
  15678. default: true
  15679. },
  15680. ]
  15681. ))
  15682. characterMakers.push(() => makeCharacter(
  15683. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15684. {
  15685. front: {
  15686. height: math.unit(5 + 11 / 12, "feet"),
  15687. weight: math.unit(190, "lb"),
  15688. name: "Front",
  15689. image: {
  15690. source: "./media/characters/seara/front.svg",
  15691. extra: 1,
  15692. bottom: 0.05
  15693. }
  15694. },
  15695. },
  15696. [
  15697. {
  15698. name: "Normal",
  15699. height: math.unit(5 + 11 / 12, "feet"),
  15700. default: true
  15701. },
  15702. ]
  15703. ))
  15704. characterMakers.push(() => makeCharacter(
  15705. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15706. {
  15707. front: {
  15708. height: math.unit(16 + 5 / 12, "feet"),
  15709. weight: math.unit(524, "lb"),
  15710. name: "Front",
  15711. image: {
  15712. source: "./media/characters/caspian-lugia/front.svg",
  15713. extra: 1,
  15714. bottom: 0.04
  15715. }
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Normal",
  15721. height: math.unit(16 + 5 / 12, "feet"),
  15722. default: true
  15723. },
  15724. ]
  15725. ))
  15726. characterMakers.push(() => makeCharacter(
  15727. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15728. {
  15729. front: {
  15730. height: math.unit(5 + 7 / 12, "feet"),
  15731. weight: math.unit(170, "lb"),
  15732. name: "Front",
  15733. image: {
  15734. source: "./media/characters/mika/front.svg",
  15735. extra: 1,
  15736. bottom: 0.016
  15737. }
  15738. },
  15739. },
  15740. [
  15741. {
  15742. name: "Normal",
  15743. height: math.unit(5 + 7 / 12, "feet"),
  15744. default: true
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15750. {
  15751. front: {
  15752. height: math.unit(6 + 2 / 12, "feet"),
  15753. weight: math.unit(268, "lb"),
  15754. name: "Front",
  15755. image: {
  15756. source: "./media/characters/sol/front.svg",
  15757. extra: 247 / 231,
  15758. bottom: 0.05
  15759. }
  15760. },
  15761. },
  15762. [
  15763. {
  15764. name: "Normal",
  15765. height: math.unit(6 + 2 / 12, "feet"),
  15766. default: true
  15767. },
  15768. ]
  15769. ))
  15770. characterMakers.push(() => makeCharacter(
  15771. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15772. {
  15773. buizel: {
  15774. height: math.unit(2 + 5 / 12, "feet"),
  15775. weight: math.unit(87, "lb"),
  15776. name: "Front",
  15777. image: {
  15778. source: "./media/characters/umiko/buizel.svg",
  15779. extra: 172 / 157,
  15780. bottom: 0.01
  15781. },
  15782. form: "buizel",
  15783. default: true
  15784. },
  15785. floatzel: {
  15786. height: math.unit(5 + 9 / 12, "feet"),
  15787. weight: math.unit(250, "lb"),
  15788. name: "Front",
  15789. image: {
  15790. source: "./media/characters/umiko/floatzel.svg",
  15791. extra: 1076/1006,
  15792. bottom: 15/1091
  15793. },
  15794. form: "floatzel",
  15795. default: true
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Normal",
  15801. height: math.unit(2 + 5 / 12, "feet"),
  15802. form: "buizel",
  15803. default: true
  15804. },
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(5 + 9 / 12, "feet"),
  15808. form: "floatzel",
  15809. default: true
  15810. },
  15811. ],
  15812. {
  15813. "buizel": {
  15814. name: "Buizel"
  15815. },
  15816. "floatzel": {
  15817. name: "Floatzel",
  15818. default: true
  15819. }
  15820. }
  15821. ))
  15822. characterMakers.push(() => makeCharacter(
  15823. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15824. {
  15825. front: {
  15826. height: math.unit(6 + 2 / 12, "feet"),
  15827. weight: math.unit(146, "lb"),
  15828. name: "Front",
  15829. image: {
  15830. source: "./media/characters/iliac/front.svg",
  15831. extra: 389 / 365,
  15832. bottom: 0.035
  15833. }
  15834. },
  15835. },
  15836. [
  15837. {
  15838. name: "Normal",
  15839. height: math.unit(6 + 2 / 12, "feet"),
  15840. default: true
  15841. },
  15842. ]
  15843. ))
  15844. characterMakers.push(() => makeCharacter(
  15845. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15846. {
  15847. front: {
  15848. height: math.unit(6, "feet"),
  15849. weight: math.unit(170, "lb"),
  15850. name: "Front",
  15851. image: {
  15852. source: "./media/characters/topaz/front.svg",
  15853. extra: 317 / 303,
  15854. bottom: 0.055
  15855. }
  15856. },
  15857. },
  15858. [
  15859. {
  15860. name: "Normal",
  15861. height: math.unit(6, "feet"),
  15862. default: true
  15863. },
  15864. ]
  15865. ))
  15866. characterMakers.push(() => makeCharacter(
  15867. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15868. {
  15869. front: {
  15870. height: math.unit(5 + 11 / 12, "feet"),
  15871. weight: math.unit(144, "lb"),
  15872. name: "Front",
  15873. image: {
  15874. source: "./media/characters/gabriel/front.svg",
  15875. extra: 285 / 262,
  15876. bottom: 0.004
  15877. }
  15878. },
  15879. },
  15880. [
  15881. {
  15882. name: "Normal",
  15883. height: math.unit(5 + 11 / 12, "feet"),
  15884. default: true
  15885. },
  15886. ]
  15887. ))
  15888. characterMakers.push(() => makeCharacter(
  15889. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15890. {
  15891. side: {
  15892. height: math.unit(6 + 5 / 12, "feet"),
  15893. weight: math.unit(300, "lb"),
  15894. name: "Side",
  15895. image: {
  15896. source: "./media/characters/tempest-suicune/side.svg",
  15897. extra: 195 / 154,
  15898. bottom: 0.04
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Normal",
  15905. height: math.unit(6 + 5 / 12, "feet"),
  15906. default: true
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15912. {
  15913. front: {
  15914. height: math.unit(7 + 2 / 12, "feet"),
  15915. weight: math.unit(322, "lb"),
  15916. name: "Front",
  15917. image: {
  15918. source: "./media/characters/vulcan/front.svg",
  15919. extra: 154 / 147,
  15920. bottom: 0.04
  15921. }
  15922. },
  15923. },
  15924. [
  15925. {
  15926. name: "Normal",
  15927. height: math.unit(7 + 2 / 12, "feet"),
  15928. default: true
  15929. },
  15930. ]
  15931. ))
  15932. characterMakers.push(() => makeCharacter(
  15933. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15934. {
  15935. front: {
  15936. height: math.unit(5 + 10 / 12, "feet"),
  15937. weight: math.unit(264, "lb"),
  15938. name: "Front",
  15939. image: {
  15940. source: "./media/characters/gault/front.svg",
  15941. extra: 161 / 140,
  15942. bottom: 0.028
  15943. }
  15944. },
  15945. },
  15946. [
  15947. {
  15948. name: "Normal",
  15949. height: math.unit(5 + 10 / 12, "feet"),
  15950. default: true
  15951. },
  15952. ]
  15953. ))
  15954. characterMakers.push(() => makeCharacter(
  15955. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15956. {
  15957. front: {
  15958. height: math.unit(6, "feet"),
  15959. weight: math.unit(150, "lb"),
  15960. name: "Front",
  15961. image: {
  15962. source: "./media/characters/shard/front.svg",
  15963. extra: 273 / 238,
  15964. bottom: 0.02
  15965. }
  15966. },
  15967. },
  15968. [
  15969. {
  15970. name: "Normal",
  15971. height: math.unit(3 + 6 / 12, "feet"),
  15972. default: true
  15973. },
  15974. ]
  15975. ))
  15976. characterMakers.push(() => makeCharacter(
  15977. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15978. {
  15979. front: {
  15980. height: math.unit(5 + 11 / 12, "feet"),
  15981. weight: math.unit(146, "lb"),
  15982. name: "Front",
  15983. image: {
  15984. source: "./media/characters/ashe/front.svg",
  15985. extra: 400 / 373,
  15986. bottom: 0.01
  15987. }
  15988. },
  15989. },
  15990. [
  15991. {
  15992. name: "Normal",
  15993. height: math.unit(5 + 11 / 12, "feet"),
  15994. default: true
  15995. },
  15996. ]
  15997. ))
  15998. characterMakers.push(() => makeCharacter(
  15999. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16000. {
  16001. front: {
  16002. height: math.unit(5 + 5 / 12, "feet"),
  16003. weight: math.unit(135, "lb"),
  16004. name: "Front",
  16005. image: {
  16006. source: "./media/characters/beatrix/front.svg",
  16007. extra: 392 / 379,
  16008. bottom: 0.01
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Normal",
  16015. height: math.unit(6, "feet"),
  16016. default: true
  16017. },
  16018. ]
  16019. ))
  16020. characterMakers.push(() => makeCharacter(
  16021. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16022. {
  16023. front: {
  16024. height: math.unit(6 + 2/12, "feet"),
  16025. weight: math.unit(135, "lb"),
  16026. name: "Front",
  16027. image: {
  16028. source: "./media/characters/ignatius/front.svg",
  16029. extra: 1380/1259,
  16030. bottom: 27/1407
  16031. }
  16032. },
  16033. },
  16034. [
  16035. {
  16036. name: "Normal",
  16037. height: math.unit(6 + 2/12, "feet"),
  16038. default: true
  16039. },
  16040. ]
  16041. ))
  16042. characterMakers.push(() => makeCharacter(
  16043. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16044. {
  16045. front: {
  16046. height: math.unit(6 + 2 / 12, "feet"),
  16047. weight: math.unit(138, "lb"),
  16048. name: "Front",
  16049. image: {
  16050. source: "./media/characters/mei-li/front.svg",
  16051. extra: 237 / 229,
  16052. bottom: 0.03
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Normal",
  16059. height: math.unit(6 + 2 / 12, "feet"),
  16060. default: true
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16066. {
  16067. front: {
  16068. height: math.unit(2 + 4 / 12, "feet"),
  16069. weight: math.unit(62, "lb"),
  16070. name: "Front",
  16071. image: {
  16072. source: "./media/characters/puru/front.svg",
  16073. extra: 206 / 149,
  16074. bottom: 0.06
  16075. }
  16076. },
  16077. },
  16078. [
  16079. {
  16080. name: "Normal",
  16081. height: math.unit(2 + 4 / 12, "feet"),
  16082. default: true
  16083. },
  16084. ]
  16085. ))
  16086. characterMakers.push(() => makeCharacter(
  16087. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16088. {
  16089. anthro: {
  16090. height: math.unit(5 + 8/12, "feet"),
  16091. weight: math.unit(200, "lb"),
  16092. energyNeed: math.unit(2000, "kcal"),
  16093. name: "Anthro",
  16094. image: {
  16095. source: "./media/characters/kee/anthro.svg",
  16096. extra: 3251/3184,
  16097. bottom: 250/3501
  16098. }
  16099. },
  16100. taur: {
  16101. height: math.unit(11, "feet"),
  16102. weight: math.unit(500, "lb"),
  16103. energyNeed: math.unit(5000, "kcal"),
  16104. name: "Taur",
  16105. image: {
  16106. source: "./media/characters/kee/taur.svg",
  16107. extra: 1362/1320,
  16108. bottom: 83/1445
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Normal",
  16115. height: math.unit(5 + 8/12, "feet"),
  16116. default: true
  16117. },
  16118. {
  16119. name: "Macro",
  16120. height: math.unit(35, "feet")
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16126. {
  16127. anthro: {
  16128. height: math.unit(7, "feet"),
  16129. weight: math.unit(190, "lb"),
  16130. name: "Anthro",
  16131. image: {
  16132. source: "./media/characters/cobalt-dracha/anthro.svg",
  16133. extra: 231 / 225,
  16134. bottom: 0.04
  16135. }
  16136. },
  16137. feral: {
  16138. height: math.unit(9 + 7 / 12, "feet"),
  16139. weight: math.unit(294, "lb"),
  16140. name: "Feral",
  16141. image: {
  16142. source: "./media/characters/cobalt-dracha/feral.svg",
  16143. extra: 692 / 633,
  16144. bottom: 0.05
  16145. }
  16146. },
  16147. },
  16148. [
  16149. {
  16150. name: "Normal",
  16151. height: math.unit(7, "feet"),
  16152. default: true
  16153. },
  16154. ]
  16155. ))
  16156. characterMakers.push(() => makeCharacter(
  16157. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16158. {
  16159. fallen: {
  16160. height: math.unit(11 + 8 / 12, "feet"),
  16161. weight: math.unit(485, "lb"),
  16162. name: "Java (Fallen)",
  16163. rename: true,
  16164. image: {
  16165. source: "./media/characters/java/fallen.svg",
  16166. extra: 226 / 208,
  16167. bottom: 0.005
  16168. }
  16169. },
  16170. godkin: {
  16171. height: math.unit(10 + 6 / 12, "feet"),
  16172. weight: math.unit(328, "lb"),
  16173. name: "Java (Godkin)",
  16174. rename: true,
  16175. image: {
  16176. source: "./media/characters/java/godkin.svg",
  16177. extra: 1104/1068,
  16178. bottom: 36/1140
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Normal",
  16185. height: math.unit(11 + 8 / 12, "feet"),
  16186. default: true
  16187. },
  16188. ]
  16189. ))
  16190. characterMakers.push(() => makeCharacter(
  16191. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16192. {
  16193. front: {
  16194. height: math.unit(5 + 9 / 12, "feet"),
  16195. weight: math.unit(170, "lb"),
  16196. name: "Front",
  16197. image: {
  16198. source: "./media/characters/purna/front.svg",
  16199. extra: 239 / 229,
  16200. bottom: 0.01
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Normal",
  16207. height: math.unit(5 + 9 / 12, "feet"),
  16208. default: true
  16209. },
  16210. ]
  16211. ))
  16212. characterMakers.push(() => makeCharacter(
  16213. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16214. {
  16215. front: {
  16216. height: math.unit(5 + 9 / 12, "feet"),
  16217. weight: math.unit(142, "lb"),
  16218. name: "Front",
  16219. image: {
  16220. source: "./media/characters/kuva/front.svg",
  16221. extra: 281 / 271,
  16222. bottom: 0.006
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Normal",
  16229. height: math.unit(5 + 9 / 12, "feet"),
  16230. default: true
  16231. },
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16236. {
  16237. anthro: {
  16238. height: math.unit(9 + 2 / 12, "feet"),
  16239. weight: math.unit(270, "lb"),
  16240. name: "Anthro",
  16241. image: {
  16242. source: "./media/characters/embra/anthro.svg",
  16243. extra: 200 / 187,
  16244. bottom: 0.02
  16245. }
  16246. },
  16247. feral: {
  16248. height: math.unit(18 + 8 / 12, "feet"),
  16249. weight: math.unit(576, "lb"),
  16250. name: "Feral",
  16251. image: {
  16252. source: "./media/characters/embra/feral.svg",
  16253. extra: 152 / 137,
  16254. bottom: 0.037
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(9 + 2 / 12, "feet"),
  16262. default: true
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16268. {
  16269. anthro: {
  16270. height: math.unit(10 + 9 / 12, "feet"),
  16271. weight: math.unit(224, "lb"),
  16272. name: "Anthro",
  16273. image: {
  16274. source: "./media/characters/grottos/anthro.svg",
  16275. extra: 350 / 332,
  16276. bottom: 0.045
  16277. }
  16278. },
  16279. feral: {
  16280. height: math.unit(20 + 7 / 12, "feet"),
  16281. weight: math.unit(629, "lb"),
  16282. name: "Feral",
  16283. image: {
  16284. source: "./media/characters/grottos/feral.svg",
  16285. extra: 207 / 190,
  16286. bottom: 0.05
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Normal",
  16293. height: math.unit(10 + 9 / 12, "feet"),
  16294. default: true
  16295. },
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16300. {
  16301. anthro: {
  16302. height: math.unit(9 + 6 / 12, "feet"),
  16303. weight: math.unit(298, "lb"),
  16304. name: "Anthro",
  16305. image: {
  16306. source: "./media/characters/frifna/anthro.svg",
  16307. extra: 282 / 269,
  16308. bottom: 0.015
  16309. }
  16310. },
  16311. feral: {
  16312. height: math.unit(16 + 2 / 12, "feet"),
  16313. weight: math.unit(624, "lb"),
  16314. name: "Feral",
  16315. image: {
  16316. source: "./media/characters/frifna/feral.svg"
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(9 + 6 / 12, "feet"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16330. {
  16331. front: {
  16332. height: math.unit(6 + 2 / 12, "feet"),
  16333. weight: math.unit(168, "lb"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/elise/front.svg",
  16337. extra: 276 / 271
  16338. }
  16339. },
  16340. },
  16341. [
  16342. {
  16343. name: "Normal",
  16344. height: math.unit(6 + 2 / 12, "feet"),
  16345. default: true
  16346. },
  16347. ]
  16348. ))
  16349. characterMakers.push(() => makeCharacter(
  16350. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16351. {
  16352. front: {
  16353. height: math.unit(5 + 10 / 12, "feet"),
  16354. weight: math.unit(210, "lb"),
  16355. name: "Front",
  16356. image: {
  16357. source: "./media/characters/glade/front.svg",
  16358. extra: 258 / 247,
  16359. bottom: 0.008
  16360. }
  16361. },
  16362. },
  16363. [
  16364. {
  16365. name: "Normal",
  16366. height: math.unit(5 + 10 / 12, "feet"),
  16367. default: true
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(5 + 10 / 12, "feet"),
  16376. weight: math.unit(129, "lb"),
  16377. name: "Front",
  16378. image: {
  16379. source: "./media/characters/rina/front.svg",
  16380. extra: 266 / 255,
  16381. bottom: 0.005
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Normal",
  16388. height: math.unit(5 + 10 / 12, "feet"),
  16389. default: true
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16395. {
  16396. front: {
  16397. height: math.unit(6 + 1 / 12, "feet"),
  16398. weight: math.unit(192, "lb"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/veronica/front.svg",
  16402. extra: 319 / 309,
  16403. bottom: 0.005
  16404. }
  16405. },
  16406. },
  16407. [
  16408. {
  16409. name: "Normal",
  16410. height: math.unit(6 + 1 / 12, "feet"),
  16411. default: true
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16417. {
  16418. front: {
  16419. height: math.unit(9 + 3 / 12, "feet"),
  16420. weight: math.unit(1100, "lb"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/braxton/front.svg",
  16424. extra: 1057 / 984,
  16425. bottom: 0.05
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Normal",
  16432. height: math.unit(9 + 3 / 12, "feet")
  16433. },
  16434. {
  16435. name: "Giant",
  16436. height: math.unit(300, "feet"),
  16437. default: true
  16438. },
  16439. {
  16440. name: "Macro",
  16441. height: math.unit(700, "feet")
  16442. },
  16443. {
  16444. name: "Megamacro",
  16445. height: math.unit(6000, "feet")
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16451. {
  16452. front: {
  16453. height: math.unit(6 + 7 / 12, "feet"),
  16454. weight: math.unit(150, "lb"),
  16455. name: "Front",
  16456. image: {
  16457. source: "./media/characters/blue-feyonics/front.svg",
  16458. extra: 1403 / 1306,
  16459. bottom: 0.047
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(6 + 7 / 12, "feet"),
  16467. default: true
  16468. },
  16469. ]
  16470. ))
  16471. characterMakers.push(() => makeCharacter(
  16472. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16473. {
  16474. front: {
  16475. height: math.unit(1.8, "meters"),
  16476. weight: math.unit(60, "kg"),
  16477. name: "Front",
  16478. image: {
  16479. source: "./media/characters/maxwell/front.svg",
  16480. extra: 2060 / 1873
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Micro",
  16487. height: math.unit(1, "mm")
  16488. },
  16489. {
  16490. name: "Normal",
  16491. height: math.unit(1.8, "meter"),
  16492. default: true
  16493. },
  16494. {
  16495. name: "Macro",
  16496. height: math.unit(30, "meters")
  16497. },
  16498. {
  16499. name: "Megamacro",
  16500. height: math.unit(10, "km")
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16506. {
  16507. front: {
  16508. height: math.unit(6, "feet"),
  16509. weight: math.unit(150, "lb"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/jack/front.svg",
  16513. extra: 1754 / 1640,
  16514. bottom: 0.01
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(80000, "feet"),
  16522. default: true
  16523. },
  16524. {
  16525. name: "Max size",
  16526. height: math.unit(10, "lightyears")
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16532. {
  16533. urban: {
  16534. height: math.unit(5, "feet"),
  16535. weight: math.unit(240, "lb"),
  16536. name: "Urban",
  16537. image: {
  16538. source: "./media/characters/cafat/urban.svg",
  16539. extra: 1223/1126,
  16540. bottom: 205/1428
  16541. }
  16542. },
  16543. summer: {
  16544. height: math.unit(5, "feet"),
  16545. weight: math.unit(240, "lb"),
  16546. name: "Summer",
  16547. image: {
  16548. source: "./media/characters/cafat/summer.svg",
  16549. extra: 1223/1126,
  16550. bottom: 205/1428
  16551. }
  16552. },
  16553. winter: {
  16554. height: math.unit(5, "feet"),
  16555. weight: math.unit(240, "lb"),
  16556. name: "Winter",
  16557. image: {
  16558. source: "./media/characters/cafat/winter.svg",
  16559. extra: 1223/1126,
  16560. bottom: 205/1428
  16561. }
  16562. },
  16563. lingerie: {
  16564. height: math.unit(5, "feet"),
  16565. weight: math.unit(240, "lb"),
  16566. name: "Lingerie",
  16567. image: {
  16568. source: "./media/characters/cafat/lingerie.svg",
  16569. extra: 1223/1126,
  16570. bottom: 205/1428
  16571. }
  16572. },
  16573. upright: {
  16574. height: math.unit(6.3, "feet"),
  16575. weight: math.unit(240, "lb"),
  16576. name: "Upright",
  16577. image: {
  16578. source: "./media/characters/cafat/upright.svg",
  16579. bottom: 0.01
  16580. }
  16581. },
  16582. uprightFull: {
  16583. height: math.unit(6.3, "feet"),
  16584. weight: math.unit(240, "lb"),
  16585. name: "Upright (Full)",
  16586. image: {
  16587. source: "./media/characters/cafat/upright-full.svg",
  16588. bottom: 0.01
  16589. }
  16590. },
  16591. },
  16592. [
  16593. {
  16594. name: "Small",
  16595. height: math.unit(5, "feet"),
  16596. default: true
  16597. },
  16598. {
  16599. name: "Large",
  16600. height: math.unit(13, "feet")
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16606. {
  16607. front: {
  16608. height: math.unit(6, "feet"),
  16609. weight: math.unit(150, "lb"),
  16610. name: "Front",
  16611. image: {
  16612. source: "./media/characters/verin-raharra/front.svg",
  16613. extra: 5019 / 4835,
  16614. bottom: 0.023
  16615. }
  16616. },
  16617. },
  16618. [
  16619. {
  16620. name: "Normal",
  16621. height: math.unit(7 + 5 / 12, "feet"),
  16622. default: true
  16623. },
  16624. {
  16625. name: "Upsized",
  16626. height: math.unit(20, "feet")
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(7, "feet"),
  16635. weight: math.unit(230, "lb"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/nakata/front.svg",
  16639. extra: 1.005,
  16640. bottom: 0.01
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Normal",
  16647. height: math.unit(7, "feet"),
  16648. default: true
  16649. },
  16650. {
  16651. name: "Big",
  16652. height: math.unit(14, "feet")
  16653. },
  16654. {
  16655. name: "Macro",
  16656. height: math.unit(400, "feet")
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(4.91, "feet"),
  16665. weight: math.unit(100, "lb"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/lily/front.svg",
  16669. extra: 1585 / 1415,
  16670. bottom: 0.02
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Normal",
  16677. height: math.unit(4.91, "feet"),
  16678. default: true
  16679. },
  16680. ]
  16681. ))
  16682. characterMakers.push(() => makeCharacter(
  16683. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16684. {
  16685. laying: {
  16686. height: math.unit(4 + 4 / 12, "feet"),
  16687. weight: math.unit(600, "lb"),
  16688. name: "Laying",
  16689. image: {
  16690. source: "./media/characters/sheila/laying.svg",
  16691. extra: 1333 / 1265,
  16692. bottom: 0.16
  16693. }
  16694. },
  16695. },
  16696. [
  16697. {
  16698. name: "Normal",
  16699. height: math.unit(4 + 4 / 12, "feet"),
  16700. default: true
  16701. },
  16702. ]
  16703. ))
  16704. characterMakers.push(() => makeCharacter(
  16705. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16706. {
  16707. front: {
  16708. height: math.unit(6, "feet"),
  16709. weight: math.unit(190, "lb"),
  16710. name: "Front",
  16711. image: {
  16712. source: "./media/characters/sax/front.svg",
  16713. extra: 1187 / 973,
  16714. bottom: 0.042
  16715. }
  16716. },
  16717. },
  16718. [
  16719. {
  16720. name: "Micro",
  16721. height: math.unit(4, "inches"),
  16722. default: true
  16723. },
  16724. ]
  16725. ))
  16726. characterMakers.push(() => makeCharacter(
  16727. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16728. {
  16729. front: {
  16730. height: math.unit(6, "feet"),
  16731. weight: math.unit(150, "lb"),
  16732. name: "Front",
  16733. image: {
  16734. source: "./media/characters/pandora/front.svg",
  16735. extra: 2720 / 2556,
  16736. bottom: 0.015
  16737. }
  16738. },
  16739. back: {
  16740. height: math.unit(6, "feet"),
  16741. weight: math.unit(150, "lb"),
  16742. name: "Back",
  16743. image: {
  16744. source: "./media/characters/pandora/back.svg",
  16745. extra: 2720 / 2556,
  16746. bottom: 0.01
  16747. }
  16748. },
  16749. beans: {
  16750. height: math.unit(6 / 8, "feet"),
  16751. name: "Beans",
  16752. image: {
  16753. source: "./media/characters/pandora/beans.svg"
  16754. }
  16755. },
  16756. collar: {
  16757. height: math.unit(0.31, "feet"),
  16758. name: "Collar",
  16759. image: {
  16760. source: "./media/characters/pandora/collar.svg"
  16761. }
  16762. },
  16763. skirt: {
  16764. height: math.unit(6, "feet"),
  16765. weight: math.unit(150, "lb"),
  16766. name: "Skirt",
  16767. image: {
  16768. source: "./media/characters/pandora/skirt.svg",
  16769. extra: 1622 / 1525,
  16770. bottom: 0.015
  16771. }
  16772. },
  16773. hoodie: {
  16774. height: math.unit(6, "feet"),
  16775. weight: math.unit(150, "lb"),
  16776. name: "Hoodie",
  16777. image: {
  16778. source: "./media/characters/pandora/hoodie.svg",
  16779. extra: 1622 / 1525,
  16780. bottom: 0.015
  16781. }
  16782. },
  16783. casual: {
  16784. height: math.unit(6, "feet"),
  16785. weight: math.unit(150, "lb"),
  16786. name: "Casual",
  16787. image: {
  16788. source: "./media/characters/pandora/casual.svg",
  16789. extra: 1622 / 1525,
  16790. bottom: 0.015
  16791. }
  16792. },
  16793. },
  16794. [
  16795. {
  16796. name: "Normal",
  16797. height: math.unit(6, "feet")
  16798. },
  16799. {
  16800. name: "Big Steppy",
  16801. height: math.unit(1, "km"),
  16802. default: true
  16803. },
  16804. {
  16805. name: "Galactic Steppy",
  16806. height: math.unit(2, "gigameters")
  16807. },
  16808. ]
  16809. ))
  16810. characterMakers.push(() => makeCharacter(
  16811. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16812. {
  16813. side: {
  16814. height: math.unit(10, "feet"),
  16815. weight: math.unit(800, "kg"),
  16816. name: "Side",
  16817. image: {
  16818. source: "./media/characters/venio-darcony/side.svg",
  16819. extra: 1373 / 1003,
  16820. bottom: 0.037
  16821. }
  16822. },
  16823. front: {
  16824. height: math.unit(19, "feet"),
  16825. weight: math.unit(800, "kg"),
  16826. name: "Front",
  16827. image: {
  16828. source: "./media/characters/venio-darcony/front.svg"
  16829. }
  16830. },
  16831. back: {
  16832. height: math.unit(19, "feet"),
  16833. weight: math.unit(800, "kg"),
  16834. name: "Back",
  16835. image: {
  16836. source: "./media/characters/venio-darcony/back.svg"
  16837. }
  16838. },
  16839. sideNsfw: {
  16840. height: math.unit(10, "feet"),
  16841. weight: math.unit(800, "kg"),
  16842. name: "Side (NSFW)",
  16843. image: {
  16844. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16845. extra: 1373 / 1003,
  16846. bottom: 0.037
  16847. }
  16848. },
  16849. frontNsfw: {
  16850. height: math.unit(19, "feet"),
  16851. weight: math.unit(800, "kg"),
  16852. name: "Front (NSFW)",
  16853. image: {
  16854. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16855. }
  16856. },
  16857. backNsfw: {
  16858. height: math.unit(19, "feet"),
  16859. weight: math.unit(800, "kg"),
  16860. name: "Back (NSFW)",
  16861. image: {
  16862. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16863. }
  16864. },
  16865. sideArmored: {
  16866. height: math.unit(10, "feet"),
  16867. weight: math.unit(800, "kg"),
  16868. name: "Side (Armored)",
  16869. image: {
  16870. source: "./media/characters/venio-darcony/side-armored.svg",
  16871. extra: 1373 / 1003,
  16872. bottom: 0.037
  16873. }
  16874. },
  16875. frontArmored: {
  16876. height: math.unit(19, "feet"),
  16877. weight: math.unit(900, "kg"),
  16878. name: "Front (Armored)",
  16879. image: {
  16880. source: "./media/characters/venio-darcony/front-armored.svg"
  16881. }
  16882. },
  16883. backArmored: {
  16884. height: math.unit(19, "feet"),
  16885. weight: math.unit(900, "kg"),
  16886. name: "Back (Armored)",
  16887. image: {
  16888. source: "./media/characters/venio-darcony/back-armored.svg"
  16889. }
  16890. },
  16891. sword: {
  16892. height: math.unit(10, "feet"),
  16893. weight: math.unit(50, "lb"),
  16894. name: "Sword",
  16895. image: {
  16896. source: "./media/characters/venio-darcony/sword.svg"
  16897. }
  16898. },
  16899. },
  16900. [
  16901. {
  16902. name: "Normal",
  16903. height: math.unit(10, "feet")
  16904. },
  16905. {
  16906. name: "Macro",
  16907. height: math.unit(130, "feet"),
  16908. default: true
  16909. },
  16910. {
  16911. name: "Macro+",
  16912. height: math.unit(240, "feet")
  16913. },
  16914. ]
  16915. ))
  16916. characterMakers.push(() => makeCharacter(
  16917. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16918. {
  16919. front: {
  16920. height: math.unit(6, "feet"),
  16921. weight: math.unit(150, "lb"),
  16922. name: "Front",
  16923. image: {
  16924. source: "./media/characters/veski/front.svg",
  16925. extra: 1299 / 1225,
  16926. bottom: 0.04
  16927. }
  16928. },
  16929. back: {
  16930. height: math.unit(6, "feet"),
  16931. weight: math.unit(150, "lb"),
  16932. name: "Back",
  16933. image: {
  16934. source: "./media/characters/veski/back.svg",
  16935. extra: 1299 / 1225,
  16936. bottom: 0.008
  16937. }
  16938. },
  16939. maw: {
  16940. height: math.unit(1.5 * 1.21, "feet"),
  16941. name: "Maw",
  16942. image: {
  16943. source: "./media/characters/veski/maw.svg"
  16944. }
  16945. },
  16946. },
  16947. [
  16948. {
  16949. name: "Macro",
  16950. height: math.unit(2, "km"),
  16951. default: true
  16952. },
  16953. ]
  16954. ))
  16955. characterMakers.push(() => makeCharacter(
  16956. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16957. {
  16958. front: {
  16959. height: math.unit(5 + 7 / 12, "feet"),
  16960. name: "Front",
  16961. image: {
  16962. source: "./media/characters/isabelle/front.svg",
  16963. extra: 2130 / 1976,
  16964. bottom: 0.05
  16965. }
  16966. },
  16967. },
  16968. [
  16969. {
  16970. name: "Supermicro",
  16971. height: math.unit(10, "micrometers")
  16972. },
  16973. {
  16974. name: "Micro",
  16975. height: math.unit(1, "inch")
  16976. },
  16977. {
  16978. name: "Tiny",
  16979. height: math.unit(5, "inches")
  16980. },
  16981. {
  16982. name: "Standard",
  16983. height: math.unit(5 + 7 / 12, "inches")
  16984. },
  16985. {
  16986. name: "Macro",
  16987. height: math.unit(80, "meters"),
  16988. default: true
  16989. },
  16990. {
  16991. name: "Megamacro",
  16992. height: math.unit(250, "meters")
  16993. },
  16994. {
  16995. name: "Gigamacro",
  16996. height: math.unit(5, "km")
  16997. },
  16998. {
  16999. name: "Cosmic",
  17000. height: math.unit(2.5e6, "miles")
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(6, "feet"),
  17009. weight: math.unit(150, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/hanzo/front.svg",
  17013. extra: 374 / 344,
  17014. bottom: 0.02
  17015. }
  17016. },
  17017. },
  17018. [
  17019. {
  17020. name: "Normal",
  17021. height: math.unit(8, "feet"),
  17022. default: true
  17023. },
  17024. ]
  17025. ))
  17026. characterMakers.push(() => makeCharacter(
  17027. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17028. {
  17029. front: {
  17030. height: math.unit(7, "feet"),
  17031. weight: math.unit(130, "lb"),
  17032. name: "Front",
  17033. image: {
  17034. source: "./media/characters/anna/front.svg",
  17035. extra: 169 / 145,
  17036. bottom: 0.06
  17037. }
  17038. },
  17039. full: {
  17040. height: math.unit(4.96, "feet"),
  17041. weight: math.unit(220, "lb"),
  17042. name: "Full",
  17043. image: {
  17044. source: "./media/characters/anna/full.svg",
  17045. extra: 138 / 114,
  17046. bottom: 0.15
  17047. }
  17048. },
  17049. tongue: {
  17050. height: math.unit(2.53, "feet"),
  17051. name: "Tongue",
  17052. image: {
  17053. source: "./media/characters/anna/tongue.svg"
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Normal",
  17060. height: math.unit(7, "feet"),
  17061. default: true
  17062. },
  17063. ]
  17064. ))
  17065. characterMakers.push(() => makeCharacter(
  17066. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17067. {
  17068. front: {
  17069. height: math.unit(7, "feet"),
  17070. weight: math.unit(150, "lb"),
  17071. name: "Front",
  17072. image: {
  17073. source: "./media/characters/ian-corvid/front.svg",
  17074. extra: 150 / 142,
  17075. bottom: 0.02
  17076. }
  17077. },
  17078. back: {
  17079. height: math.unit(7, "feet"),
  17080. weight: math.unit(150, "lb"),
  17081. name: "Back",
  17082. image: {
  17083. source: "./media/characters/ian-corvid/back.svg",
  17084. extra: 150 / 143,
  17085. bottom: 0.01
  17086. }
  17087. },
  17088. stomping: {
  17089. height: math.unit(7, "feet"),
  17090. weight: math.unit(150, "lb"),
  17091. name: "Stomping",
  17092. image: {
  17093. source: "./media/characters/ian-corvid/stomping.svg",
  17094. extra: 76 / 72
  17095. }
  17096. },
  17097. sitting: {
  17098. height: math.unit(7 / 1.8, "feet"),
  17099. weight: math.unit(150, "lb"),
  17100. name: "Sitting",
  17101. image: {
  17102. source: "./media/characters/ian-corvid/sitting.svg",
  17103. extra: 1400 / 1269,
  17104. bottom: 0.15
  17105. }
  17106. },
  17107. },
  17108. [
  17109. {
  17110. name: "Tiny Microw",
  17111. height: math.unit(1, "inch")
  17112. },
  17113. {
  17114. name: "Microw",
  17115. height: math.unit(6, "inches")
  17116. },
  17117. {
  17118. name: "Crow",
  17119. height: math.unit(7 + 1 / 12, "feet"),
  17120. default: true
  17121. },
  17122. {
  17123. name: "Macrow",
  17124. height: math.unit(176, "feet")
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17130. {
  17131. front: {
  17132. height: math.unit(5 + 7 / 12, "feet"),
  17133. weight: math.unit(147, "lb"),
  17134. name: "Front",
  17135. image: {
  17136. source: "./media/characters/natalie-kellon/front.svg",
  17137. extra: 1214 / 1141,
  17138. bottom: 0.02
  17139. }
  17140. },
  17141. },
  17142. [
  17143. {
  17144. name: "Micro",
  17145. height: math.unit(1 / 16, "inch")
  17146. },
  17147. {
  17148. name: "Tiny",
  17149. height: math.unit(4, "inches")
  17150. },
  17151. {
  17152. name: "Normal",
  17153. height: math.unit(5 + 7 / 12, "feet"),
  17154. default: true
  17155. },
  17156. {
  17157. name: "Amazon",
  17158. height: math.unit(12, "feet")
  17159. },
  17160. {
  17161. name: "Giantess",
  17162. height: math.unit(160, "meters")
  17163. },
  17164. {
  17165. name: "Titaness",
  17166. height: math.unit(800, "meters")
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(6, "feet"),
  17175. weight: math.unit(150, "lb"),
  17176. name: "Front",
  17177. image: {
  17178. source: "./media/characters/alluria/front.svg",
  17179. extra: 806 / 738,
  17180. bottom: 0.01
  17181. }
  17182. },
  17183. side: {
  17184. height: math.unit(6, "feet"),
  17185. weight: math.unit(150, "lb"),
  17186. name: "Side",
  17187. image: {
  17188. source: "./media/characters/alluria/side.svg",
  17189. extra: 800 / 750,
  17190. }
  17191. },
  17192. back: {
  17193. height: math.unit(6, "feet"),
  17194. weight: math.unit(150, "lb"),
  17195. name: "Back",
  17196. image: {
  17197. source: "./media/characters/alluria/back.svg",
  17198. extra: 806 / 738,
  17199. }
  17200. },
  17201. frontMaid: {
  17202. height: math.unit(6, "feet"),
  17203. weight: math.unit(150, "lb"),
  17204. name: "Front (Maid)",
  17205. image: {
  17206. source: "./media/characters/alluria/front-maid.svg",
  17207. extra: 806 / 738,
  17208. bottom: 0.01
  17209. }
  17210. },
  17211. sideMaid: {
  17212. height: math.unit(6, "feet"),
  17213. weight: math.unit(150, "lb"),
  17214. name: "Side (Maid)",
  17215. image: {
  17216. source: "./media/characters/alluria/side-maid.svg",
  17217. extra: 800 / 750,
  17218. bottom: 0.005
  17219. }
  17220. },
  17221. backMaid: {
  17222. height: math.unit(6, "feet"),
  17223. weight: math.unit(150, "lb"),
  17224. name: "Back (Maid)",
  17225. image: {
  17226. source: "./media/characters/alluria/back-maid.svg",
  17227. extra: 806 / 738,
  17228. }
  17229. },
  17230. },
  17231. [
  17232. {
  17233. name: "Micro",
  17234. height: math.unit(6, "inches"),
  17235. default: true
  17236. },
  17237. ]
  17238. ))
  17239. characterMakers.push(() => makeCharacter(
  17240. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17241. {
  17242. front: {
  17243. height: math.unit(6, "feet"),
  17244. weight: math.unit(150, "lb"),
  17245. name: "Front",
  17246. image: {
  17247. source: "./media/characters/kyle/front.svg",
  17248. extra: 1069 / 962,
  17249. bottom: 77.228 / 1727.45
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Macro",
  17256. height: math.unit(150, "feet"),
  17257. default: true
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17263. {
  17264. front: {
  17265. height: math.unit(6, "feet"),
  17266. weight: math.unit(300, "lb"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/duncan/front.svg",
  17270. extra: 1650 / 1482,
  17271. bottom: 0.05
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Macro",
  17278. height: math.unit(100, "feet"),
  17279. default: true
  17280. },
  17281. ]
  17282. ))
  17283. characterMakers.push(() => makeCharacter(
  17284. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17285. {
  17286. front: {
  17287. height: math.unit(5 + 4 / 12, "feet"),
  17288. weight: math.unit(220, "lb"),
  17289. name: "Front",
  17290. image: {
  17291. source: "./media/characters/memory/front.svg",
  17292. extra: 3641 / 3545,
  17293. bottom: 0.03
  17294. }
  17295. },
  17296. back: {
  17297. height: math.unit(5 + 4 / 12, "feet"),
  17298. weight: math.unit(220, "lb"),
  17299. name: "Back",
  17300. image: {
  17301. source: "./media/characters/memory/back.svg",
  17302. extra: 3641 / 3545,
  17303. bottom: 0.025
  17304. }
  17305. },
  17306. frontSkirt: {
  17307. height: math.unit(5 + 4 / 12, "feet"),
  17308. weight: math.unit(220, "lb"),
  17309. name: "Front (Skirt)",
  17310. image: {
  17311. source: "./media/characters/memory/front-skirt.svg",
  17312. extra: 3641 / 3545,
  17313. bottom: 0.03
  17314. }
  17315. },
  17316. frontDress: {
  17317. height: math.unit(5 + 4 / 12, "feet"),
  17318. weight: math.unit(220, "lb"),
  17319. name: "Front (Dress)",
  17320. image: {
  17321. source: "./media/characters/memory/front-dress.svg",
  17322. extra: 3641 / 3545,
  17323. bottom: 0.03
  17324. }
  17325. },
  17326. },
  17327. [
  17328. {
  17329. name: "Micro",
  17330. height: math.unit(6, "inches"),
  17331. default: true
  17332. },
  17333. {
  17334. name: "Normal",
  17335. height: math.unit(5 + 4 / 12, "feet")
  17336. },
  17337. ]
  17338. ))
  17339. characterMakers.push(() => makeCharacter(
  17340. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17341. {
  17342. front: {
  17343. height: math.unit(4 + 11 / 12, "feet"),
  17344. weight: math.unit(100, "lb"),
  17345. name: "Front",
  17346. image: {
  17347. source: "./media/characters/luno/front.svg",
  17348. extra: 1535 / 1487,
  17349. bottom: 0.03
  17350. }
  17351. },
  17352. },
  17353. [
  17354. {
  17355. name: "Micro",
  17356. height: math.unit(3, "inches")
  17357. },
  17358. {
  17359. name: "Normal",
  17360. height: math.unit(4 + 11 / 12, "feet"),
  17361. default: true
  17362. },
  17363. {
  17364. name: "Macro",
  17365. height: math.unit(300, "feet")
  17366. },
  17367. {
  17368. name: "Megamacro",
  17369. height: math.unit(700, "miles")
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17375. {
  17376. front: {
  17377. height: math.unit(6 + 2 / 12, "feet"),
  17378. weight: math.unit(170, "lb"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/jamesy/front.svg",
  17382. extra: 440 / 382,
  17383. bottom: 0.005
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Micro",
  17390. height: math.unit(3, "inches")
  17391. },
  17392. {
  17393. name: "Normal",
  17394. height: math.unit(6 + 2 / 12, "feet"),
  17395. default: true
  17396. },
  17397. {
  17398. name: "Macro",
  17399. height: math.unit(300, "feet")
  17400. },
  17401. {
  17402. name: "Megamacro",
  17403. height: math.unit(700, "miles")
  17404. },
  17405. ]
  17406. ))
  17407. characterMakers.push(() => makeCharacter(
  17408. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17409. {
  17410. front: {
  17411. height: math.unit(6, "feet"),
  17412. weight: math.unit(160, "lb"),
  17413. name: "Front",
  17414. image: {
  17415. source: "./media/characters/mark/front.svg",
  17416. extra: 3300 / 3100,
  17417. bottom: 136.42 / 3440.47
  17418. }
  17419. },
  17420. },
  17421. [
  17422. {
  17423. name: "Macro",
  17424. height: math.unit(120, "meters")
  17425. },
  17426. {
  17427. name: "Bigger Macro",
  17428. height: math.unit(350, "meters")
  17429. },
  17430. {
  17431. name: "Megamacro",
  17432. height: math.unit(8, "km"),
  17433. default: true
  17434. },
  17435. {
  17436. name: "Continental",
  17437. height: math.unit(4550, "km")
  17438. },
  17439. {
  17440. name: "Planetary",
  17441. height: math.unit(65000, "km")
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17447. {
  17448. front: {
  17449. height: math.unit(6, "feet"),
  17450. weight: math.unit(400, "lb"),
  17451. name: "Front",
  17452. image: {
  17453. source: "./media/characters/mac/front.svg",
  17454. extra: 1048 / 987.7,
  17455. bottom: 60 / 1107.6,
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Macro",
  17462. height: math.unit(500, "feet"),
  17463. default: true
  17464. },
  17465. ]
  17466. ))
  17467. characterMakers.push(() => makeCharacter(
  17468. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17469. {
  17470. front: {
  17471. height: math.unit(5 + 2 / 12, "feet"),
  17472. weight: math.unit(190, "lb"),
  17473. name: "Front",
  17474. image: {
  17475. source: "./media/characters/bari/front.svg",
  17476. extra: 3156 / 2880,
  17477. bottom: 0.03
  17478. }
  17479. },
  17480. back: {
  17481. height: math.unit(5 + 2 / 12, "feet"),
  17482. weight: math.unit(190, "lb"),
  17483. name: "Back",
  17484. image: {
  17485. source: "./media/characters/bari/back.svg",
  17486. extra: 3260 / 2834,
  17487. bottom: 0.025
  17488. }
  17489. },
  17490. frontPlush: {
  17491. height: math.unit(5 + 2 / 12, "feet"),
  17492. weight: math.unit(190, "lb"),
  17493. name: "Front (Plush)",
  17494. image: {
  17495. source: "./media/characters/bari/front-plush.svg",
  17496. extra: 1112 / 1061,
  17497. bottom: 0.002
  17498. }
  17499. },
  17500. },
  17501. [
  17502. {
  17503. name: "Micro",
  17504. height: math.unit(3, "inches")
  17505. },
  17506. {
  17507. name: "Normal",
  17508. height: math.unit(5 + 2 / 12, "feet"),
  17509. default: true
  17510. },
  17511. {
  17512. name: "Macro",
  17513. height: math.unit(20, "feet")
  17514. },
  17515. ]
  17516. ))
  17517. characterMakers.push(() => makeCharacter(
  17518. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17519. {
  17520. front: {
  17521. height: math.unit(6 + 1 / 12, "feet"),
  17522. weight: math.unit(275, "lb"),
  17523. name: "Front",
  17524. image: {
  17525. source: "./media/characters/hunter-misha-raven/front.svg"
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Mortal",
  17532. height: math.unit(6 + 1 / 12, "feet")
  17533. },
  17534. {
  17535. name: "Divine",
  17536. height: math.unit(1.12134e34, "parsecs"),
  17537. default: true
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17543. {
  17544. front: {
  17545. height: math.unit(6 + 3 / 12, "feet"),
  17546. weight: math.unit(220, "lb"),
  17547. name: "Front",
  17548. image: {
  17549. source: "./media/characters/max-calore/front.svg",
  17550. extra: 1700 / 1648,
  17551. bottom: 0.01
  17552. }
  17553. },
  17554. back: {
  17555. height: math.unit(6 + 3 / 12, "feet"),
  17556. weight: math.unit(220, "lb"),
  17557. name: "Back",
  17558. image: {
  17559. source: "./media/characters/max-calore/back.svg",
  17560. extra: 1700 / 1648,
  17561. bottom: 0.01
  17562. }
  17563. },
  17564. },
  17565. [
  17566. {
  17567. name: "Normal",
  17568. height: math.unit(6 + 3 / 12, "feet"),
  17569. default: true
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17575. {
  17576. side: {
  17577. height: math.unit(2 + 8 / 12, "feet"),
  17578. weight: math.unit(99, "lb"),
  17579. name: "Side",
  17580. image: {
  17581. source: "./media/characters/aspen/side.svg",
  17582. extra: 152 / 138,
  17583. bottom: 0.032
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Normal",
  17590. height: math.unit(2 + 8 / 12, "feet"),
  17591. default: true
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17597. {
  17598. side: {
  17599. height: math.unit(3 + 2 / 12, "feet"),
  17600. weight: math.unit(224, "lb"),
  17601. name: "Side",
  17602. image: {
  17603. source: "./media/characters/sheila-feral-wolf/side.svg",
  17604. extra: 179 / 166,
  17605. bottom: 0.03
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(3 + 2 / 12, "feet"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17619. {
  17620. side: {
  17621. height: math.unit(1 + 9 / 12, "feet"),
  17622. weight: math.unit(38, "lb"),
  17623. name: "Side",
  17624. image: {
  17625. source: "./media/characters/michelle/side.svg",
  17626. extra: 147 / 136.7,
  17627. bottom: 0.03
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Normal",
  17634. height: math.unit(1 + 9 / 12, "feet"),
  17635. default: true
  17636. },
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17641. {
  17642. front: {
  17643. height: math.unit(1.54, "feet"),
  17644. weight: math.unit(50, "lb"),
  17645. name: "Front",
  17646. image: {
  17647. source: "./media/characters/nino/front.svg"
  17648. }
  17649. },
  17650. },
  17651. [
  17652. {
  17653. name: "Normal",
  17654. height: math.unit(1.54, "feet"),
  17655. default: true
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17661. {
  17662. front: {
  17663. height: math.unit(1.49, "feet"),
  17664. weight: math.unit(45, "lb"),
  17665. name: "Front",
  17666. image: {
  17667. source: "./media/characters/viola/front.svg"
  17668. }
  17669. },
  17670. },
  17671. [
  17672. {
  17673. name: "Normal",
  17674. height: math.unit(1.49, "feet"),
  17675. default: true
  17676. },
  17677. ]
  17678. ))
  17679. characterMakers.push(() => makeCharacter(
  17680. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17681. {
  17682. front: {
  17683. height: math.unit(6 + 5 / 12, "feet"),
  17684. weight: math.unit(580, "lb"),
  17685. name: "Front",
  17686. image: {
  17687. source: "./media/characters/atlas/front.svg",
  17688. extra: 298.5 / 290,
  17689. bottom: 0.015
  17690. }
  17691. },
  17692. },
  17693. [
  17694. {
  17695. name: "Normal",
  17696. height: math.unit(6 + 5 / 12, "feet"),
  17697. default: true
  17698. },
  17699. ]
  17700. ))
  17701. characterMakers.push(() => makeCharacter(
  17702. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17703. {
  17704. side: {
  17705. height: math.unit(15.6, "inches"),
  17706. weight: math.unit(10, "lb"),
  17707. name: "Side",
  17708. image: {
  17709. source: "./media/characters/davy/side.svg",
  17710. extra: 200 / 170,
  17711. bottom: 0.01
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(15.6, "inches"),
  17719. default: true
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17725. {
  17726. side: {
  17727. height: math.unit(4 + 8 / 12, "feet"),
  17728. weight: math.unit(166, "lb"),
  17729. name: "Side",
  17730. image: {
  17731. source: "./media/characters/fiona/side.svg",
  17732. extra: 232 / 220,
  17733. bottom: 0.03
  17734. }
  17735. },
  17736. },
  17737. [
  17738. {
  17739. name: "Normal",
  17740. height: math.unit(4 + 8 / 12, "feet"),
  17741. default: true
  17742. },
  17743. ]
  17744. ))
  17745. characterMakers.push(() => makeCharacter(
  17746. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17747. {
  17748. front: {
  17749. height: math.unit(26, "inches"),
  17750. weight: math.unit(35, "lb"),
  17751. name: "Front",
  17752. image: {
  17753. source: "./media/characters/lyla/front.svg",
  17754. bottom: 0.1
  17755. }
  17756. },
  17757. },
  17758. [
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(3, "feet"),
  17762. default: true
  17763. },
  17764. ]
  17765. ))
  17766. characterMakers.push(() => makeCharacter(
  17767. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17768. {
  17769. side: {
  17770. height: math.unit(1.8, "feet"),
  17771. weight: math.unit(44, "lb"),
  17772. name: "Side",
  17773. image: {
  17774. source: "./media/characters/perseus/side.svg",
  17775. bottom: 0.21
  17776. }
  17777. },
  17778. },
  17779. [
  17780. {
  17781. name: "Normal",
  17782. height: math.unit(1.8, "feet"),
  17783. default: true
  17784. },
  17785. ]
  17786. ))
  17787. characterMakers.push(() => makeCharacter(
  17788. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17789. {
  17790. side: {
  17791. height: math.unit(4 + 2 / 12, "feet"),
  17792. weight: math.unit(20, "lb"),
  17793. name: "Side",
  17794. image: {
  17795. source: "./media/characters/remus/side.svg"
  17796. }
  17797. },
  17798. },
  17799. [
  17800. {
  17801. name: "Normal",
  17802. height: math.unit(4 + 2 / 12, "feet"),
  17803. default: true
  17804. },
  17805. ]
  17806. ))
  17807. characterMakers.push(() => makeCharacter(
  17808. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17809. {
  17810. front: {
  17811. height: math.unit(4 + 11 / 12, "feet"),
  17812. weight: math.unit(114, "lb"),
  17813. name: "Front",
  17814. image: {
  17815. source: "./media/characters/raf/front.svg",
  17816. extra: 1504/1339,
  17817. bottom: 26/1530
  17818. }
  17819. },
  17820. side: {
  17821. height: math.unit(4 + 11 / 12, "feet"),
  17822. weight: math.unit(114, "lb"),
  17823. name: "Side",
  17824. image: {
  17825. source: "./media/characters/raf/side.svg",
  17826. extra: 1466/1316,
  17827. bottom: 29/1495
  17828. }
  17829. },
  17830. },
  17831. [
  17832. {
  17833. name: "Micro",
  17834. height: math.unit(2, "inches")
  17835. },
  17836. {
  17837. name: "Normal",
  17838. height: math.unit(4 + 11 / 12, "feet"),
  17839. default: true
  17840. },
  17841. {
  17842. name: "Macro",
  17843. height: math.unit(70, "feet")
  17844. },
  17845. ]
  17846. ))
  17847. characterMakers.push(() => makeCharacter(
  17848. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17849. {
  17850. front: {
  17851. height: math.unit(1.5, "meters"),
  17852. weight: math.unit(68, "kg"),
  17853. name: "Front",
  17854. image: {
  17855. source: "./media/characters/liam-einarr/front.svg",
  17856. extra: 2822 / 2666
  17857. }
  17858. },
  17859. back: {
  17860. height: math.unit(1.5, "meters"),
  17861. weight: math.unit(68, "kg"),
  17862. name: "Back",
  17863. image: {
  17864. source: "./media/characters/liam-einarr/back.svg",
  17865. extra: 2822 / 2666,
  17866. bottom: 0.015
  17867. }
  17868. },
  17869. },
  17870. [
  17871. {
  17872. name: "Normal",
  17873. height: math.unit(1.5, "meters"),
  17874. default: true
  17875. },
  17876. {
  17877. name: "Macro",
  17878. height: math.unit(150, "meters")
  17879. },
  17880. {
  17881. name: "Megamacro",
  17882. height: math.unit(35, "km")
  17883. },
  17884. ]
  17885. ))
  17886. characterMakers.push(() => makeCharacter(
  17887. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17888. {
  17889. front: {
  17890. height: math.unit(6, "feet"),
  17891. weight: math.unit(75, "kg"),
  17892. name: "Front",
  17893. image: {
  17894. source: "./media/characters/linda/front.svg",
  17895. extra: 930 / 874,
  17896. bottom: 0.004
  17897. }
  17898. },
  17899. },
  17900. [
  17901. {
  17902. name: "Normal",
  17903. height: math.unit(6, "feet"),
  17904. default: true
  17905. },
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17910. {
  17911. front: {
  17912. height: math.unit(6 + 8 / 12, "feet"),
  17913. weight: math.unit(220, "lb"),
  17914. name: "Front",
  17915. image: {
  17916. source: "./media/characters/caylex/front.svg",
  17917. extra: 821 / 772,
  17918. bottom: 0.07
  17919. }
  17920. },
  17921. back: {
  17922. height: math.unit(6 + 8 / 12, "feet"),
  17923. weight: math.unit(220, "lb"),
  17924. name: "Back",
  17925. image: {
  17926. source: "./media/characters/caylex/back.svg",
  17927. extra: 821 / 772,
  17928. bottom: 0.022
  17929. }
  17930. },
  17931. hand: {
  17932. height: math.unit(1.25, "feet"),
  17933. name: "Hand",
  17934. image: {
  17935. source: "./media/characters/caylex/hand.svg"
  17936. }
  17937. },
  17938. foot: {
  17939. height: math.unit(1.6, "feet"),
  17940. name: "Foot",
  17941. image: {
  17942. source: "./media/characters/caylex/foot.svg"
  17943. }
  17944. },
  17945. armored: {
  17946. height: math.unit(6 + 8 / 12, "feet"),
  17947. weight: math.unit(250, "lb"),
  17948. name: "Armored",
  17949. image: {
  17950. source: "./media/characters/caylex/armored.svg",
  17951. extra: 1420 / 1310,
  17952. bottom: 0.045
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Normal",
  17959. height: math.unit(6 + 8 / 12, "feet"),
  17960. default: true
  17961. },
  17962. {
  17963. name: "Normal+",
  17964. height: math.unit(12, "feet")
  17965. },
  17966. ]
  17967. ))
  17968. characterMakers.push(() => makeCharacter(
  17969. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17970. {
  17971. front: {
  17972. height: math.unit(7 + 6 / 12, "feet"),
  17973. weight: math.unit(288, "lb"),
  17974. name: "Front",
  17975. image: {
  17976. source: "./media/characters/alana/front.svg",
  17977. extra: 679 / 653,
  17978. bottom: 22.5 / 701
  17979. }
  17980. },
  17981. },
  17982. [
  17983. {
  17984. name: "Normal",
  17985. height: math.unit(7 + 6 / 12, "feet")
  17986. },
  17987. {
  17988. name: "Large",
  17989. height: math.unit(50, "feet")
  17990. },
  17991. {
  17992. name: "Macro",
  17993. height: math.unit(100, "feet"),
  17994. default: true
  17995. },
  17996. {
  17997. name: "Macro+",
  17998. height: math.unit(200, "feet")
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18004. {
  18005. front: {
  18006. height: math.unit(6 + 1 / 12, "feet"),
  18007. weight: math.unit(210, "lb"),
  18008. name: "Front",
  18009. image: {
  18010. source: "./media/characters/hasani/front.svg",
  18011. extra: 244 / 232,
  18012. bottom: 0.01
  18013. }
  18014. },
  18015. back: {
  18016. height: math.unit(6 + 1 / 12, "feet"),
  18017. weight: math.unit(210, "lb"),
  18018. name: "Back",
  18019. image: {
  18020. source: "./media/characters/hasani/back.svg",
  18021. extra: 244 / 232,
  18022. bottom: 0.01
  18023. }
  18024. },
  18025. },
  18026. [
  18027. {
  18028. name: "Normal",
  18029. height: math.unit(6 + 1 / 12, "feet")
  18030. },
  18031. {
  18032. name: "Macro",
  18033. height: math.unit(175, "feet"),
  18034. default: true
  18035. },
  18036. ]
  18037. ))
  18038. characterMakers.push(() => makeCharacter(
  18039. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18040. {
  18041. front: {
  18042. height: math.unit(1.82, "meters"),
  18043. weight: math.unit(140, "lb"),
  18044. name: "Front",
  18045. image: {
  18046. source: "./media/characters/nita/front.svg",
  18047. extra: 2473 / 2363,
  18048. bottom: 0.01
  18049. }
  18050. },
  18051. },
  18052. [
  18053. {
  18054. name: "Normal",
  18055. height: math.unit(1.82, "m")
  18056. },
  18057. {
  18058. name: "Macro",
  18059. height: math.unit(300, "m")
  18060. },
  18061. {
  18062. name: "Mistake Canon",
  18063. height: math.unit(0.5, "miles"),
  18064. default: true
  18065. },
  18066. {
  18067. name: "Big Mistake",
  18068. height: math.unit(13, "miles")
  18069. },
  18070. {
  18071. name: "Playing God",
  18072. height: math.unit(2450, "miles")
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(4, "feet"),
  18081. weight: math.unit(120, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/shiriko/front.svg",
  18085. extra: 970/934,
  18086. bottom: 5/975
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(4, "feet"),
  18094. default: true
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(6, "feet"),
  18103. name: "front",
  18104. image: {
  18105. source: "./media/characters/deja/front.svg",
  18106. extra: 926 / 840,
  18107. bottom: 0.07
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Planck Length",
  18114. height: math.unit(1.6e-35, "meters")
  18115. },
  18116. {
  18117. name: "Normal",
  18118. height: math.unit(30.48, "meters"),
  18119. default: true
  18120. },
  18121. {
  18122. name: "Universal",
  18123. height: math.unit(8.8e26, "meters")
  18124. },
  18125. ]
  18126. ))
  18127. characterMakers.push(() => makeCharacter(
  18128. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18129. {
  18130. side: {
  18131. height: math.unit(8, "feet"),
  18132. weight: math.unit(6300, "lb"),
  18133. name: "Side",
  18134. image: {
  18135. source: "./media/characters/anima/side.svg",
  18136. bottom: 0.035
  18137. }
  18138. },
  18139. },
  18140. [
  18141. {
  18142. name: "Normal",
  18143. height: math.unit(8, "feet"),
  18144. default: true
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18150. {
  18151. front: {
  18152. height: math.unit(8, "feet"),
  18153. weight: math.unit(350, "lb"),
  18154. name: "Front",
  18155. image: {
  18156. source: "./media/characters/bianca/front.svg",
  18157. extra: 234 / 225,
  18158. bottom: 0.03
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Normal",
  18165. height: math.unit(8, "feet"),
  18166. default: true
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(6, "feet"),
  18175. weight: math.unit(150, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/adinia/front.svg",
  18179. extra: 1845 / 1672,
  18180. bottom: 0.02
  18181. }
  18182. },
  18183. back: {
  18184. height: math.unit(6, "feet"),
  18185. weight: math.unit(150, "lb"),
  18186. name: "Back",
  18187. image: {
  18188. source: "./media/characters/adinia/back.svg",
  18189. extra: 1845 / 1672,
  18190. bottom: 0.002
  18191. }
  18192. },
  18193. },
  18194. [
  18195. {
  18196. name: "Normal",
  18197. height: math.unit(11 + 5 / 12, "feet"),
  18198. default: true
  18199. },
  18200. ]
  18201. ))
  18202. characterMakers.push(() => makeCharacter(
  18203. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18204. {
  18205. front: {
  18206. height: math.unit(3, "meters"),
  18207. weight: math.unit(200, "kg"),
  18208. name: "Front",
  18209. image: {
  18210. source: "./media/characters/lykasa/front.svg",
  18211. extra: 1076 / 976,
  18212. bottom: 0.06
  18213. }
  18214. },
  18215. },
  18216. [
  18217. {
  18218. name: "Normal",
  18219. height: math.unit(3, "meters")
  18220. },
  18221. {
  18222. name: "Kaiju",
  18223. height: math.unit(120, "meters"),
  18224. default: true
  18225. },
  18226. {
  18227. name: "Mega Kaiju",
  18228. height: math.unit(240, "km")
  18229. },
  18230. {
  18231. name: "Giga Kaiju",
  18232. height: math.unit(400, "megameters")
  18233. },
  18234. {
  18235. name: "Tera Kaiju",
  18236. height: math.unit(800, "gigameters")
  18237. },
  18238. {
  18239. name: "Kaiju Dragon Goddess",
  18240. height: math.unit(26, "zettaparsecs")
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18246. {
  18247. side: {
  18248. height: math.unit(283 / 124 * 6, "feet"),
  18249. weight: math.unit(35000, "lb"),
  18250. name: "Side",
  18251. image: {
  18252. source: "./media/characters/malfaren/side.svg",
  18253. extra: 1310/529,
  18254. bottom: 24/1334
  18255. }
  18256. },
  18257. front: {
  18258. height: math.unit(22.36, "feet"),
  18259. weight: math.unit(35000, "lb"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/malfaren/front.svg",
  18263. extra: 1237/1115,
  18264. bottom: 32/1269
  18265. }
  18266. },
  18267. maw: {
  18268. height: math.unit(6.9, "feet"),
  18269. name: "Maw",
  18270. image: {
  18271. source: "./media/characters/malfaren/maw.svg"
  18272. }
  18273. },
  18274. dick: {
  18275. height: math.unit(6.19, "feet"),
  18276. name: "Dick",
  18277. image: {
  18278. source: "./media/characters/malfaren/dick.svg"
  18279. }
  18280. },
  18281. eye: {
  18282. height: math.unit(0.69, "feet"),
  18283. name: "Eye",
  18284. image: {
  18285. source: "./media/characters/malfaren/eye.svg"
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Big",
  18292. height: math.unit(283 / 162 * 6, "feet"),
  18293. },
  18294. {
  18295. name: "Bigger",
  18296. height: math.unit(283 / 124 * 6, "feet")
  18297. },
  18298. {
  18299. name: "Massive",
  18300. height: math.unit(283 / 92 * 6, "feet"),
  18301. default: true
  18302. },
  18303. {
  18304. name: "👀💦",
  18305. height: math.unit(283 / 73 * 6, "feet"),
  18306. },
  18307. ]
  18308. ))
  18309. characterMakers.push(() => makeCharacter(
  18310. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18311. {
  18312. front: {
  18313. height: math.unit(1.7, "m"),
  18314. weight: math.unit(70, "kg"),
  18315. name: "Front",
  18316. image: {
  18317. source: "./media/characters/kernel/front.svg",
  18318. extra: 222 / 210,
  18319. bottom: 0.007
  18320. }
  18321. },
  18322. },
  18323. [
  18324. {
  18325. name: "Nano",
  18326. height: math.unit(17, "micrometers")
  18327. },
  18328. {
  18329. name: "Micro",
  18330. height: math.unit(1.7, "mm")
  18331. },
  18332. {
  18333. name: "Small",
  18334. height: math.unit(1.7, "cm")
  18335. },
  18336. {
  18337. name: "Normal",
  18338. height: math.unit(1.7, "m"),
  18339. default: true
  18340. },
  18341. ]
  18342. ))
  18343. characterMakers.push(() => makeCharacter(
  18344. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18345. {
  18346. front: {
  18347. height: math.unit(1.75, "meters"),
  18348. weight: math.unit(65, "kg"),
  18349. name: "Front",
  18350. image: {
  18351. source: "./media/characters/jayne-folest/front.svg",
  18352. extra: 2115 / 2007,
  18353. bottom: 0.02
  18354. }
  18355. },
  18356. back: {
  18357. height: math.unit(1.75, "meters"),
  18358. weight: math.unit(65, "kg"),
  18359. name: "Back",
  18360. image: {
  18361. source: "./media/characters/jayne-folest/back.svg",
  18362. extra: 2115 / 2007,
  18363. bottom: 0.005
  18364. }
  18365. },
  18366. frontClothed: {
  18367. height: math.unit(1.75, "meters"),
  18368. weight: math.unit(65, "kg"),
  18369. name: "Front (Clothed)",
  18370. image: {
  18371. source: "./media/characters/jayne-folest/front-clothed.svg",
  18372. extra: 2115 / 2007,
  18373. bottom: 0.035
  18374. }
  18375. },
  18376. hand: {
  18377. height: math.unit(1 / 1.260, "feet"),
  18378. name: "Hand",
  18379. image: {
  18380. source: "./media/characters/jayne-folest/hand.svg"
  18381. }
  18382. },
  18383. foot: {
  18384. height: math.unit(1 / 0.918, "feet"),
  18385. name: "Foot",
  18386. image: {
  18387. source: "./media/characters/jayne-folest/foot.svg"
  18388. }
  18389. },
  18390. },
  18391. [
  18392. {
  18393. name: "Micro",
  18394. height: math.unit(4, "cm")
  18395. },
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(1.75, "meters")
  18399. },
  18400. {
  18401. name: "Macro",
  18402. height: math.unit(47.5, "meters"),
  18403. default: true
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18409. {
  18410. front: {
  18411. height: math.unit(180, "cm"),
  18412. weight: math.unit(70, "kg"),
  18413. name: "Front",
  18414. image: {
  18415. source: "./media/characters/algier/front.svg",
  18416. extra: 596 / 572,
  18417. bottom: 0.04
  18418. }
  18419. },
  18420. back: {
  18421. height: math.unit(180, "cm"),
  18422. weight: math.unit(70, "kg"),
  18423. name: "Back",
  18424. image: {
  18425. source: "./media/characters/algier/back.svg",
  18426. extra: 596 / 572,
  18427. bottom: 0.025
  18428. }
  18429. },
  18430. frontdressed: {
  18431. height: math.unit(180, "cm"),
  18432. weight: math.unit(150, "kg"),
  18433. name: "Front-dressed",
  18434. image: {
  18435. source: "./media/characters/algier/front-dressed.svg",
  18436. extra: 596 / 572,
  18437. bottom: 0.038
  18438. }
  18439. },
  18440. },
  18441. [
  18442. {
  18443. name: "Micro",
  18444. height: math.unit(5, "cm")
  18445. },
  18446. {
  18447. name: "Normal",
  18448. height: math.unit(180, "cm"),
  18449. default: true
  18450. },
  18451. {
  18452. name: "Macro",
  18453. height: math.unit(64, "m")
  18454. },
  18455. ]
  18456. ))
  18457. characterMakers.push(() => makeCharacter(
  18458. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18459. {
  18460. upright: {
  18461. height: math.unit(7, "feet"),
  18462. weight: math.unit(300, "lb"),
  18463. name: "Upright",
  18464. image: {
  18465. source: "./media/characters/pretzel/upright.svg",
  18466. extra: 534 / 522,
  18467. bottom: 0.065
  18468. }
  18469. },
  18470. sprawling: {
  18471. height: math.unit(3.75, "feet"),
  18472. weight: math.unit(300, "lb"),
  18473. name: "Sprawling",
  18474. image: {
  18475. source: "./media/characters/pretzel/sprawling.svg",
  18476. extra: 314 / 281,
  18477. bottom: 0.1
  18478. }
  18479. },
  18480. tongue: {
  18481. height: math.unit(2, "feet"),
  18482. name: "Tongue",
  18483. image: {
  18484. source: "./media/characters/pretzel/tongue.svg"
  18485. }
  18486. },
  18487. },
  18488. [
  18489. {
  18490. name: "Normal",
  18491. height: math.unit(7, "feet"),
  18492. default: true
  18493. },
  18494. {
  18495. name: "Oversized",
  18496. height: math.unit(15, "feet")
  18497. },
  18498. {
  18499. name: "Huge",
  18500. height: math.unit(30, "feet")
  18501. },
  18502. {
  18503. name: "Macro",
  18504. height: math.unit(250, "feet")
  18505. },
  18506. ]
  18507. ))
  18508. characterMakers.push(() => makeCharacter(
  18509. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18510. {
  18511. sideFront: {
  18512. height: math.unit(5 + 2 / 12, "feet"),
  18513. weight: math.unit(120, "lb"),
  18514. name: "Front Side",
  18515. image: {
  18516. source: "./media/characters/roxi/side-front.svg",
  18517. extra: 2924 / 2717,
  18518. bottom: 0.08
  18519. }
  18520. },
  18521. sideBack: {
  18522. height: math.unit(5 + 2 / 12, "feet"),
  18523. weight: math.unit(120, "lb"),
  18524. name: "Back Side",
  18525. image: {
  18526. source: "./media/characters/roxi/side-back.svg",
  18527. extra: 2904 / 2693,
  18528. bottom: 0.06
  18529. }
  18530. },
  18531. front: {
  18532. height: math.unit(5 + 2 / 12, "feet"),
  18533. weight: math.unit(120, "lb"),
  18534. name: "Front",
  18535. image: {
  18536. source: "./media/characters/roxi/front.svg",
  18537. extra: 2028 / 1907,
  18538. bottom: 0.01
  18539. }
  18540. },
  18541. frontAlt: {
  18542. height: math.unit(5 + 2 / 12, "feet"),
  18543. weight: math.unit(120, "lb"),
  18544. name: "Front (Alt)",
  18545. image: {
  18546. source: "./media/characters/roxi/front-alt.svg",
  18547. extra: 1828 / 1798,
  18548. bottom: 0.01
  18549. }
  18550. },
  18551. sitting: {
  18552. height: math.unit(2.8, "feet"),
  18553. weight: math.unit(120, "lb"),
  18554. name: "Sitting",
  18555. image: {
  18556. source: "./media/characters/roxi/sitting.svg",
  18557. extra: 2660 / 2462,
  18558. bottom: 0.1
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Normal",
  18565. height: math.unit(5 + 2 / 12, "feet"),
  18566. default: true
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18572. {
  18573. side: {
  18574. height: math.unit(55, "feet"),
  18575. weight: math.unit(153, "tons"),
  18576. name: "Side",
  18577. image: {
  18578. source: "./media/characters/shadow/side.svg",
  18579. extra: 701 / 628,
  18580. bottom: 0.02
  18581. }
  18582. },
  18583. flying: {
  18584. height: math.unit(145, "feet"),
  18585. weight: math.unit(153, "tons"),
  18586. name: "Flying",
  18587. image: {
  18588. source: "./media/characters/shadow/flying.svg"
  18589. }
  18590. },
  18591. },
  18592. [
  18593. {
  18594. name: "Normal",
  18595. height: math.unit(55, "feet"),
  18596. default: true
  18597. },
  18598. ]
  18599. ))
  18600. characterMakers.push(() => makeCharacter(
  18601. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18602. {
  18603. front: {
  18604. height: math.unit(6, "feet"),
  18605. weight: math.unit(200, "lb"),
  18606. name: "Front",
  18607. image: {
  18608. source: "./media/characters/marcie/front.svg",
  18609. extra: 960 / 876,
  18610. bottom: 58 / 1017.87
  18611. }
  18612. },
  18613. },
  18614. [
  18615. {
  18616. name: "Macro",
  18617. height: math.unit(1, "mile"),
  18618. default: true
  18619. },
  18620. ]
  18621. ))
  18622. characterMakers.push(() => makeCharacter(
  18623. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18624. {
  18625. front: {
  18626. height: math.unit(7, "feet"),
  18627. weight: math.unit(200, "lb"),
  18628. name: "Front",
  18629. image: {
  18630. source: "./media/characters/kachina/front.svg",
  18631. extra: 1290.68 / 1119,
  18632. bottom: 36.5 / 1327.18
  18633. }
  18634. },
  18635. },
  18636. [
  18637. {
  18638. name: "Normal",
  18639. height: math.unit(7, "feet"),
  18640. default: true
  18641. },
  18642. ]
  18643. ))
  18644. characterMakers.push(() => makeCharacter(
  18645. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18646. {
  18647. looking: {
  18648. height: math.unit(2, "meters"),
  18649. weight: math.unit(300, "kg"),
  18650. name: "Looking",
  18651. image: {
  18652. source: "./media/characters/kash/looking.svg",
  18653. extra: 474 / 344,
  18654. bottom: 0.03
  18655. }
  18656. },
  18657. side: {
  18658. height: math.unit(2, "meters"),
  18659. weight: math.unit(300, "kg"),
  18660. name: "Side",
  18661. image: {
  18662. source: "./media/characters/kash/side.svg",
  18663. extra: 302 / 251,
  18664. bottom: 0.03
  18665. }
  18666. },
  18667. front: {
  18668. height: math.unit(2, "meters"),
  18669. weight: math.unit(300, "kg"),
  18670. name: "Front",
  18671. image: {
  18672. source: "./media/characters/kash/front.svg",
  18673. extra: 495 / 360,
  18674. bottom: 0.015
  18675. }
  18676. },
  18677. },
  18678. [
  18679. {
  18680. name: "Normal",
  18681. height: math.unit(2, "meters"),
  18682. default: true
  18683. },
  18684. {
  18685. name: "Big",
  18686. height: math.unit(3, "meters")
  18687. },
  18688. {
  18689. name: "Large",
  18690. height: math.unit(5, "meters")
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18696. {
  18697. feeding: {
  18698. height: math.unit(6.7, "feet"),
  18699. weight: math.unit(350, "lb"),
  18700. name: "Feeding",
  18701. image: {
  18702. source: "./media/characters/lalim/feeding.svg",
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(6.7, "feet"),
  18710. default: true
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18716. {
  18717. front: {
  18718. height: math.unit(9.5, "feet"),
  18719. weight: math.unit(600, "lb"),
  18720. name: "Front",
  18721. image: {
  18722. source: "./media/characters/de'vout/front.svg",
  18723. extra: 1443 / 1328,
  18724. bottom: 0.025
  18725. }
  18726. },
  18727. back: {
  18728. height: math.unit(9.5, "feet"),
  18729. weight: math.unit(600, "lb"),
  18730. name: "Back",
  18731. image: {
  18732. source: "./media/characters/de'vout/back.svg",
  18733. extra: 1443 / 1328
  18734. }
  18735. },
  18736. frontDressed: {
  18737. height: math.unit(9.5, "feet"),
  18738. weight: math.unit(600, "lb"),
  18739. name: "Front (Dressed",
  18740. image: {
  18741. source: "./media/characters/de'vout/front-dressed.svg",
  18742. extra: 1443 / 1328,
  18743. bottom: 0.025
  18744. }
  18745. },
  18746. backDressed: {
  18747. height: math.unit(9.5, "feet"),
  18748. weight: math.unit(600, "lb"),
  18749. name: "Back (Dressed",
  18750. image: {
  18751. source: "./media/characters/de'vout/back-dressed.svg",
  18752. extra: 1443 / 1328
  18753. }
  18754. },
  18755. },
  18756. [
  18757. {
  18758. name: "Normal",
  18759. height: math.unit(9.5, "feet"),
  18760. default: true
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18766. {
  18767. front: {
  18768. height: math.unit(8, "feet"),
  18769. weight: math.unit(225, "lb"),
  18770. name: "Front",
  18771. image: {
  18772. source: "./media/characters/talana/front.svg",
  18773. extra: 1410 / 1300,
  18774. bottom: 0.015
  18775. }
  18776. },
  18777. frontDressed: {
  18778. height: math.unit(8, "feet"),
  18779. weight: math.unit(225, "lb"),
  18780. name: "Front (Dressed",
  18781. image: {
  18782. source: "./media/characters/talana/front-dressed.svg",
  18783. extra: 1410 / 1300,
  18784. bottom: 0.015
  18785. }
  18786. },
  18787. },
  18788. [
  18789. {
  18790. name: "Normal",
  18791. height: math.unit(8, "feet"),
  18792. default: true
  18793. },
  18794. ]
  18795. ))
  18796. characterMakers.push(() => makeCharacter(
  18797. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18798. {
  18799. side: {
  18800. height: math.unit(7.2, "feet"),
  18801. weight: math.unit(150, "lb"),
  18802. name: "Side",
  18803. image: {
  18804. source: "./media/characters/xeauvok/side.svg",
  18805. extra: 1975 / 1523,
  18806. bottom: 0.07
  18807. }
  18808. },
  18809. },
  18810. [
  18811. {
  18812. name: "Normal",
  18813. height: math.unit(7.2, "feet"),
  18814. default: true
  18815. },
  18816. ]
  18817. ))
  18818. characterMakers.push(() => makeCharacter(
  18819. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18820. {
  18821. side: {
  18822. height: math.unit(10, "feet"),
  18823. weight: math.unit(900, "kg"),
  18824. name: "Side",
  18825. image: {
  18826. source: "./media/characters/zara/side.svg",
  18827. extra: 504 / 498
  18828. }
  18829. },
  18830. },
  18831. [
  18832. {
  18833. name: "Normal",
  18834. height: math.unit(10, "feet"),
  18835. default: true
  18836. },
  18837. ]
  18838. ))
  18839. characterMakers.push(() => makeCharacter(
  18840. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18841. {
  18842. side: {
  18843. height: math.unit(6, "feet"),
  18844. weight: math.unit(150, "lb"),
  18845. name: "Side",
  18846. image: {
  18847. source: "./media/characters/richard-dragon/side.svg",
  18848. extra: 845 / 340,
  18849. bottom: 0.017
  18850. }
  18851. },
  18852. maw: {
  18853. height: math.unit(2.97, "feet"),
  18854. name: "Maw",
  18855. image: {
  18856. source: "./media/characters/richard-dragon/maw.svg"
  18857. }
  18858. },
  18859. },
  18860. [
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18865. {
  18866. front: {
  18867. height: math.unit(4, "feet"),
  18868. weight: math.unit(100, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/richard-smeargle/front.svg",
  18872. extra: 2952 / 2820,
  18873. bottom: 0.028
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(4, "feet"),
  18881. default: true
  18882. },
  18883. {
  18884. name: "Dynamax",
  18885. height: math.unit(20, "meters")
  18886. },
  18887. ]
  18888. ))
  18889. characterMakers.push(() => makeCharacter(
  18890. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18891. {
  18892. front: {
  18893. height: math.unit(6, "feet"),
  18894. weight: math.unit(110, "lb"),
  18895. name: "Front",
  18896. image: {
  18897. source: "./media/characters/klay/front.svg",
  18898. extra: 962 / 883,
  18899. bottom: 0.04
  18900. }
  18901. },
  18902. back: {
  18903. height: math.unit(6, "feet"),
  18904. weight: math.unit(110, "lb"),
  18905. name: "Back",
  18906. image: {
  18907. source: "./media/characters/klay/back.svg",
  18908. extra: 962 / 883
  18909. }
  18910. },
  18911. beans: {
  18912. height: math.unit(1.15, "feet"),
  18913. name: "Beans",
  18914. image: {
  18915. source: "./media/characters/klay/beans.svg"
  18916. }
  18917. },
  18918. },
  18919. [
  18920. {
  18921. name: "Micro",
  18922. height: math.unit(6, "inches")
  18923. },
  18924. {
  18925. name: "Mini",
  18926. height: math.unit(3, "feet")
  18927. },
  18928. {
  18929. name: "Normal",
  18930. height: math.unit(6, "feet"),
  18931. default: true
  18932. },
  18933. {
  18934. name: "Big",
  18935. height: math.unit(25, "feet")
  18936. },
  18937. {
  18938. name: "Macro",
  18939. height: math.unit(100, "feet")
  18940. },
  18941. {
  18942. name: "Megamacro",
  18943. height: math.unit(400, "feet")
  18944. },
  18945. ]
  18946. ))
  18947. characterMakers.push(() => makeCharacter(
  18948. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18949. {
  18950. front: {
  18951. height: math.unit(6, "feet"),
  18952. weight: math.unit(160, "lb"),
  18953. name: "Front",
  18954. image: {
  18955. source: "./media/characters/marcus/front.svg",
  18956. extra: 734 / 676,
  18957. bottom: 0.03
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Little",
  18964. height: math.unit(6, "feet")
  18965. },
  18966. {
  18967. name: "Normal",
  18968. height: math.unit(110, "feet"),
  18969. default: true
  18970. },
  18971. {
  18972. name: "Macro",
  18973. height: math.unit(250, "feet")
  18974. },
  18975. {
  18976. name: "Megamacro",
  18977. height: math.unit(1000, "feet")
  18978. },
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18983. {
  18984. front: {
  18985. height: math.unit(7, "feet"),
  18986. weight: math.unit(275, "lb"),
  18987. name: "Front",
  18988. image: {
  18989. source: "./media/characters/claude-delroute/front.svg",
  18990. extra: 902/827,
  18991. bottom: 26/928
  18992. }
  18993. },
  18994. side: {
  18995. height: math.unit(7, "feet"),
  18996. weight: math.unit(275, "lb"),
  18997. name: "Side",
  18998. image: {
  18999. source: "./media/characters/claude-delroute/side.svg",
  19000. extra: 908/853,
  19001. bottom: 16/924
  19002. }
  19003. },
  19004. back: {
  19005. height: math.unit(7, "feet"),
  19006. weight: math.unit(275, "lb"),
  19007. name: "Back",
  19008. image: {
  19009. source: "./media/characters/claude-delroute/back.svg",
  19010. extra: 911/829,
  19011. bottom: 18/929
  19012. }
  19013. },
  19014. maw: {
  19015. height: math.unit(0.6407, "meters"),
  19016. name: "Maw",
  19017. image: {
  19018. source: "./media/characters/claude-delroute/maw.svg"
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(7, "feet"),
  19026. default: true
  19027. },
  19028. {
  19029. name: "Lorge",
  19030. height: math.unit(20, "feet")
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19036. {
  19037. front: {
  19038. height: math.unit(8 + 4 / 12, "feet"),
  19039. weight: math.unit(600, "lb"),
  19040. name: "Front",
  19041. image: {
  19042. source: "./media/characters/dragonien/front.svg",
  19043. extra: 100 / 94,
  19044. bottom: 3.3 / 103.3445
  19045. }
  19046. },
  19047. back: {
  19048. height: math.unit(8 + 4 / 12, "feet"),
  19049. weight: math.unit(600, "lb"),
  19050. name: "Back",
  19051. image: {
  19052. source: "./media/characters/dragonien/back.svg",
  19053. extra: 776 / 746,
  19054. bottom: 6.4 / 782.0616
  19055. }
  19056. },
  19057. foot: {
  19058. height: math.unit(1.54, "feet"),
  19059. name: "Foot",
  19060. image: {
  19061. source: "./media/characters/dragonien/foot.svg",
  19062. }
  19063. },
  19064. },
  19065. [
  19066. {
  19067. name: "Normal",
  19068. height: math.unit(8 + 4 / 12, "feet"),
  19069. default: true
  19070. },
  19071. {
  19072. name: "Macro",
  19073. height: math.unit(200, "feet")
  19074. },
  19075. {
  19076. name: "Megamacro",
  19077. height: math.unit(1, "mile")
  19078. },
  19079. {
  19080. name: "Gigamacro",
  19081. height: math.unit(1000, "miles")
  19082. },
  19083. ]
  19084. ))
  19085. characterMakers.push(() => makeCharacter(
  19086. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19087. {
  19088. front: {
  19089. height: math.unit(5 + 2 / 12, "feet"),
  19090. weight: math.unit(110, "lb"),
  19091. name: "Front",
  19092. image: {
  19093. source: "./media/characters/desta/front.svg",
  19094. extra: 767 / 726,
  19095. bottom: 11.7 / 779
  19096. }
  19097. },
  19098. back: {
  19099. height: math.unit(5 + 2 / 12, "feet"),
  19100. weight: math.unit(110, "lb"),
  19101. name: "Back",
  19102. image: {
  19103. source: "./media/characters/desta/back.svg",
  19104. extra: 777 / 728,
  19105. bottom: 6 / 784
  19106. }
  19107. },
  19108. frontAlt: {
  19109. height: math.unit(5 + 2 / 12, "feet"),
  19110. weight: math.unit(110, "lb"),
  19111. name: "Front",
  19112. image: {
  19113. source: "./media/characters/desta/front-alt.svg",
  19114. extra: 1482 / 1417
  19115. }
  19116. },
  19117. side: {
  19118. height: math.unit(5 + 2 / 12, "feet"),
  19119. weight: math.unit(110, "lb"),
  19120. name: "Side",
  19121. image: {
  19122. source: "./media/characters/desta/side.svg",
  19123. extra: 2579 / 2491,
  19124. bottom: 0.053
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Micro",
  19131. height: math.unit(6, "inches")
  19132. },
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(5 + 2 / 12, "feet"),
  19136. default: true
  19137. },
  19138. {
  19139. name: "Macro",
  19140. height: math.unit(62, "feet")
  19141. },
  19142. {
  19143. name: "Megamacro",
  19144. height: math.unit(1800, "feet")
  19145. },
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19150. {
  19151. front: {
  19152. height: math.unit(10, "feet"),
  19153. weight: math.unit(700, "lb"),
  19154. name: "Front",
  19155. image: {
  19156. source: "./media/characters/storm-alystar/front.svg",
  19157. extra: 2112 / 1898,
  19158. bottom: 0.034
  19159. }
  19160. },
  19161. },
  19162. [
  19163. {
  19164. name: "Micro",
  19165. height: math.unit(3.5, "inches")
  19166. },
  19167. {
  19168. name: "Normal",
  19169. height: math.unit(10, "feet"),
  19170. default: true
  19171. },
  19172. {
  19173. name: "Macro",
  19174. height: math.unit(400, "feet")
  19175. },
  19176. {
  19177. name: "Deific",
  19178. height: math.unit(60, "miles")
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19184. {
  19185. front: {
  19186. height: math.unit(2.35, "meters"),
  19187. weight: math.unit(119, "kg"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/ilia/front.svg",
  19191. extra: 1285 / 1255,
  19192. bottom: 0.06
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(2.35, "meters")
  19200. },
  19201. {
  19202. name: "Macro",
  19203. height: math.unit(140, "meters"),
  19204. default: true
  19205. },
  19206. {
  19207. name: "Megamacro",
  19208. height: math.unit(100, "miles")
  19209. },
  19210. ]
  19211. ))
  19212. characterMakers.push(() => makeCharacter(
  19213. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19214. {
  19215. front: {
  19216. height: math.unit(6 + 5 / 12, "feet"),
  19217. weight: math.unit(190, "lb"),
  19218. name: "Front",
  19219. image: {
  19220. source: "./media/characters/kingdead/front.svg",
  19221. extra: 1228 / 1177
  19222. }
  19223. },
  19224. },
  19225. [
  19226. {
  19227. name: "Micro",
  19228. height: math.unit(7, "inches")
  19229. },
  19230. {
  19231. name: "Normal",
  19232. height: math.unit(6 + 5 / 12, "feet")
  19233. },
  19234. {
  19235. name: "Macro",
  19236. height: math.unit(150, "feet"),
  19237. default: true
  19238. },
  19239. {
  19240. name: "Megamacro",
  19241. height: math.unit(200, "miles")
  19242. },
  19243. ]
  19244. ))
  19245. characterMakers.push(() => makeCharacter(
  19246. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19247. {
  19248. front: {
  19249. height: math.unit(8, "feet"),
  19250. weight: math.unit(600, "lb"),
  19251. name: "Front",
  19252. image: {
  19253. source: "./media/characters/kyrehx/front.svg",
  19254. extra: 1195 / 1095,
  19255. bottom: 0.034
  19256. }
  19257. },
  19258. },
  19259. [
  19260. {
  19261. name: "Micro",
  19262. height: math.unit(2, "inches")
  19263. },
  19264. {
  19265. name: "Normal",
  19266. height: math.unit(8, "feet"),
  19267. default: true
  19268. },
  19269. {
  19270. name: "Macro",
  19271. height: math.unit(255, "feet")
  19272. },
  19273. ]
  19274. ))
  19275. characterMakers.push(() => makeCharacter(
  19276. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19277. {
  19278. front: {
  19279. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19280. weight: math.unit(184, "lb"),
  19281. name: "Front",
  19282. image: {
  19283. source: "./media/characters/xang/front.svg",
  19284. extra: 845 / 755
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19292. default: true
  19293. },
  19294. {
  19295. name: "Macro",
  19296. height: math.unit(0.935 * 146, "feet")
  19297. },
  19298. {
  19299. name: "Megamacro",
  19300. height: math.unit(0.935 * 3, "miles")
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19306. {
  19307. frontDressed: {
  19308. height: math.unit(5 + 7 / 12, "feet"),
  19309. weight: math.unit(140, "lb"),
  19310. name: "Front (Dressed)",
  19311. image: {
  19312. source: "./media/characters/doc-weardno/front-dressed.svg",
  19313. extra: 263 / 234
  19314. }
  19315. },
  19316. backDressed: {
  19317. height: math.unit(5 + 7 / 12, "feet"),
  19318. weight: math.unit(140, "lb"),
  19319. name: "Back (Dressed)",
  19320. image: {
  19321. source: "./media/characters/doc-weardno/back-dressed.svg",
  19322. extra: 266 / 238
  19323. }
  19324. },
  19325. front: {
  19326. height: math.unit(5 + 7 / 12, "feet"),
  19327. weight: math.unit(140, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/doc-weardno/front.svg",
  19331. extra: 254 / 233
  19332. }
  19333. },
  19334. },
  19335. [
  19336. {
  19337. name: "Micro",
  19338. height: math.unit(3, "inches")
  19339. },
  19340. {
  19341. name: "Normal",
  19342. height: math.unit(5 + 7 / 12, "feet"),
  19343. default: true
  19344. },
  19345. {
  19346. name: "Macro",
  19347. height: math.unit(25, "feet")
  19348. },
  19349. {
  19350. name: "Megamacro",
  19351. height: math.unit(2, "miles")
  19352. },
  19353. ]
  19354. ))
  19355. characterMakers.push(() => makeCharacter(
  19356. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19357. {
  19358. front: {
  19359. height: math.unit(6 + 2 / 12, "feet"),
  19360. weight: math.unit(153, "lb"),
  19361. name: "Front",
  19362. image: {
  19363. source: "./media/characters/seth-whilst/front.svg",
  19364. bottom: 0.07
  19365. }
  19366. },
  19367. },
  19368. [
  19369. {
  19370. name: "Micro",
  19371. height: math.unit(5, "inches")
  19372. },
  19373. {
  19374. name: "Normal",
  19375. height: math.unit(6 + 2 / 12, "feet"),
  19376. default: true
  19377. },
  19378. ]
  19379. ))
  19380. characterMakers.push(() => makeCharacter(
  19381. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19382. {
  19383. front: {
  19384. height: math.unit(3, "inches"),
  19385. weight: math.unit(8, "grams"),
  19386. name: "Front",
  19387. image: {
  19388. source: "./media/characters/pocket-jabari/front.svg",
  19389. extra: 1024 / 974,
  19390. bottom: 0.039
  19391. }
  19392. },
  19393. },
  19394. [
  19395. {
  19396. name: "Minimicro",
  19397. height: math.unit(8, "mm")
  19398. },
  19399. {
  19400. name: "Micro",
  19401. height: math.unit(3, "inches"),
  19402. default: true
  19403. },
  19404. {
  19405. name: "Normal",
  19406. height: math.unit(3, "feet")
  19407. },
  19408. ]
  19409. ))
  19410. characterMakers.push(() => makeCharacter(
  19411. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19412. {
  19413. frontDressed: {
  19414. height: math.unit(15, "feet"),
  19415. weight: math.unit(3280, "lb"),
  19416. name: "Front (Dressed)",
  19417. image: {
  19418. source: "./media/characters/sapphy/front-dressed.svg",
  19419. extra: 1951/1654,
  19420. bottom: 194/2145
  19421. },
  19422. form: "anthro",
  19423. default: true
  19424. },
  19425. backDressed: {
  19426. height: math.unit(15, "feet"),
  19427. weight: math.unit(3280, "lb"),
  19428. name: "Back (Dressed)",
  19429. image: {
  19430. source: "./media/characters/sapphy/back-dressed.svg",
  19431. extra: 2058/1918,
  19432. bottom: 125/2183
  19433. },
  19434. form: "anthro"
  19435. },
  19436. frontNude: {
  19437. height: math.unit(15, "feet"),
  19438. weight: math.unit(3280, "lb"),
  19439. name: "Front (Nude)",
  19440. image: {
  19441. source: "./media/characters/sapphy/front-nude.svg",
  19442. extra: 1951/1654,
  19443. bottom: 194/2145
  19444. },
  19445. form: "anthro"
  19446. },
  19447. backNude: {
  19448. height: math.unit(15, "feet"),
  19449. weight: math.unit(3280, "lb"),
  19450. name: "Back (Nude)",
  19451. image: {
  19452. source: "./media/characters/sapphy/back-nude.svg",
  19453. extra: 2058/1918,
  19454. bottom: 125/2183
  19455. },
  19456. form: "anthro"
  19457. },
  19458. full: {
  19459. height: math.unit(15, "feet"),
  19460. weight: math.unit(3280, "lb"),
  19461. name: "Full",
  19462. image: {
  19463. source: "./media/characters/sapphy/full.svg",
  19464. extra: 1396/1317,
  19465. bottom: 44/1440
  19466. },
  19467. form: "anthro"
  19468. },
  19469. dick: {
  19470. height: math.unit(3.8, "feet"),
  19471. name: "Dick",
  19472. image: {
  19473. source: "./media/characters/sapphy/dick.svg"
  19474. },
  19475. form: "anthro"
  19476. },
  19477. feral: {
  19478. height: math.unit(35, "feet"),
  19479. weight: math.unit(160, "tons"),
  19480. name: "Feral",
  19481. image: {
  19482. source: "./media/characters/sapphy/feral.svg",
  19483. extra: 1050/573,
  19484. bottom: 60/1110
  19485. },
  19486. form: "feral",
  19487. default: true
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Normal",
  19493. height: math.unit(15, "feet"),
  19494. form: "anthro"
  19495. },
  19496. {
  19497. name: "Casual Macro",
  19498. height: math.unit(120, "feet"),
  19499. form: "anthro"
  19500. },
  19501. {
  19502. name: "Macro",
  19503. height: math.unit(2150, "feet"),
  19504. default: true,
  19505. form: "anthro"
  19506. },
  19507. {
  19508. name: "Megamacro",
  19509. height: math.unit(8, "miles"),
  19510. form: "anthro"
  19511. },
  19512. {
  19513. name: "Galaxy Mom",
  19514. height: math.unit(6, "megalightyears"),
  19515. form: "anthro"
  19516. },
  19517. {
  19518. name: "Normal",
  19519. height: math.unit(35, "feet"),
  19520. form: "feral",
  19521. default: true
  19522. },
  19523. {
  19524. name: "Macro",
  19525. height: math.unit(300, "feet"),
  19526. form: "feral"
  19527. },
  19528. {
  19529. name: "Galaxy Mom",
  19530. height: math.unit(10, "megalightyears"),
  19531. form: "feral"
  19532. },
  19533. ],
  19534. {
  19535. "anthro": {
  19536. name: "Anthro",
  19537. default: true
  19538. },
  19539. "feral": {
  19540. name: "Feral"
  19541. }
  19542. }
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19546. {
  19547. front: {
  19548. height: math.unit(6, "feet"),
  19549. weight: math.unit(170, "lb"),
  19550. name: "Front",
  19551. image: {
  19552. source: "./media/characters/kiro/front.svg",
  19553. extra: 1064 / 1012,
  19554. bottom: 0.052
  19555. }
  19556. },
  19557. },
  19558. [
  19559. {
  19560. name: "Micro",
  19561. height: math.unit(6, "inches")
  19562. },
  19563. {
  19564. name: "Normal",
  19565. height: math.unit(6, "feet"),
  19566. default: true
  19567. },
  19568. {
  19569. name: "Macro",
  19570. height: math.unit(72, "feet")
  19571. },
  19572. ]
  19573. ))
  19574. characterMakers.push(() => makeCharacter(
  19575. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19576. {
  19577. front: {
  19578. height: math.unit(5 + 9 / 12, "feet"),
  19579. weight: math.unit(175, "lb"),
  19580. name: "Front",
  19581. image: {
  19582. source: "./media/characters/irishfox/front.svg",
  19583. extra: 1912 / 1680,
  19584. bottom: 0.02
  19585. }
  19586. },
  19587. },
  19588. [
  19589. {
  19590. name: "Nano",
  19591. height: math.unit(1, "mm")
  19592. },
  19593. {
  19594. name: "Micro",
  19595. height: math.unit(2, "inches")
  19596. },
  19597. {
  19598. name: "Normal",
  19599. height: math.unit(5 + 9 / 12, "feet"),
  19600. default: true
  19601. },
  19602. {
  19603. name: "Macro",
  19604. height: math.unit(45, "feet")
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(6 + 1 / 12, "feet"),
  19613. weight: math.unit(75, "lb"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/aronai-sieyes/front.svg",
  19617. extra: 1532/1450,
  19618. bottom: 42/1574
  19619. }
  19620. },
  19621. side: {
  19622. height: math.unit(6 + 1 / 12, "feet"),
  19623. weight: math.unit(75, "lb"),
  19624. name: "Side",
  19625. image: {
  19626. source: "./media/characters/aronai-sieyes/side.svg",
  19627. extra: 1422/1365,
  19628. bottom: 148/1570
  19629. }
  19630. },
  19631. back: {
  19632. height: math.unit(6 + 1 / 12, "feet"),
  19633. weight: math.unit(75, "lb"),
  19634. name: "Back",
  19635. image: {
  19636. source: "./media/characters/aronai-sieyes/back.svg",
  19637. extra: 1526/1464,
  19638. bottom: 51/1577
  19639. }
  19640. },
  19641. dressed: {
  19642. height: math.unit(6 + 1 / 12, "feet"),
  19643. weight: math.unit(75, "lb"),
  19644. name: "Dressed",
  19645. image: {
  19646. source: "./media/characters/aronai-sieyes/dressed.svg",
  19647. extra: 1559/1483,
  19648. bottom: 39/1598
  19649. }
  19650. },
  19651. slit: {
  19652. height: math.unit(1.3, "feet"),
  19653. name: "Slit",
  19654. image: {
  19655. source: "./media/characters/aronai-sieyes/slit.svg"
  19656. }
  19657. },
  19658. slitSpread: {
  19659. height: math.unit(0.9, "feet"),
  19660. name: "Slit (Spread)",
  19661. image: {
  19662. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19663. }
  19664. },
  19665. rump: {
  19666. height: math.unit(1.3, "feet"),
  19667. name: "Rump",
  19668. image: {
  19669. source: "./media/characters/aronai-sieyes/rump.svg"
  19670. }
  19671. },
  19672. maw: {
  19673. height: math.unit(1.25, "feet"),
  19674. name: "Maw",
  19675. image: {
  19676. source: "./media/characters/aronai-sieyes/maw.svg"
  19677. }
  19678. },
  19679. feral: {
  19680. height: math.unit(18, "feet"),
  19681. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19682. name: "Feral",
  19683. image: {
  19684. source: "./media/characters/aronai-sieyes/feral.svg",
  19685. extra: 1530 / 1240,
  19686. bottom: 0.035
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Micro",
  19693. height: math.unit(2, "inches")
  19694. },
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(6 + 1 / 12, "feet"),
  19698. default: true
  19699. }
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(12, "feet"),
  19707. weight: math.unit(410, "kg"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/xuna/front.svg",
  19711. extra: 2184 / 1980
  19712. }
  19713. },
  19714. side: {
  19715. height: math.unit(12, "feet"),
  19716. weight: math.unit(410, "kg"),
  19717. name: "Side",
  19718. image: {
  19719. source: "./media/characters/xuna/side.svg",
  19720. extra: 2184 / 1980
  19721. }
  19722. },
  19723. back: {
  19724. height: math.unit(12, "feet"),
  19725. weight: math.unit(410, "kg"),
  19726. name: "Back",
  19727. image: {
  19728. source: "./media/characters/xuna/back.svg",
  19729. extra: 2184 / 1980
  19730. }
  19731. },
  19732. },
  19733. [
  19734. {
  19735. name: "Nano glow",
  19736. height: math.unit(10, "nm")
  19737. },
  19738. {
  19739. name: "Micro floof",
  19740. height: math.unit(0.3, "m")
  19741. },
  19742. {
  19743. name: "Huggable softy boi",
  19744. height: math.unit(3.6576, "m"),
  19745. default: true
  19746. },
  19747. {
  19748. name: "Admirable floof",
  19749. height: math.unit(80, "meters")
  19750. },
  19751. {
  19752. name: "Gentle macro",
  19753. height: math.unit(300, "meters")
  19754. },
  19755. {
  19756. name: "Very careful floof",
  19757. height: math.unit(3200, "meters")
  19758. },
  19759. {
  19760. name: "The mega floof",
  19761. height: math.unit(36000, "meters")
  19762. },
  19763. {
  19764. name: "Giga-fur-Wicker",
  19765. height: math.unit(4800000, "meters")
  19766. },
  19767. {
  19768. name: "Licky world",
  19769. height: math.unit(20000000, "meters")
  19770. },
  19771. {
  19772. name: "Floofy cyan sun",
  19773. height: math.unit(1500000000, "meters")
  19774. },
  19775. {
  19776. name: "Milky Wicker",
  19777. height: math.unit(1000000000000000000000, "meters")
  19778. },
  19779. {
  19780. name: "The observing Wicker",
  19781. height: math.unit(999999999999999999999999999, "meters")
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19787. {
  19788. front: {
  19789. height: math.unit(5 + 9 / 12, "feet"),
  19790. weight: math.unit(150, "lb"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/arokha-sieyes/front.svg",
  19794. extra: 1425 / 1284,
  19795. bottom: 0.05
  19796. }
  19797. },
  19798. },
  19799. [
  19800. {
  19801. name: "Normal",
  19802. height: math.unit(5 + 9 / 12, "feet")
  19803. },
  19804. {
  19805. name: "Macro",
  19806. height: math.unit(30, "meters"),
  19807. default: true
  19808. },
  19809. ]
  19810. ))
  19811. characterMakers.push(() => makeCharacter(
  19812. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19813. {
  19814. front: {
  19815. height: math.unit(6, "feet"),
  19816. weight: math.unit(180, "lb"),
  19817. name: "Front",
  19818. image: {
  19819. source: "./media/characters/arokh-sieyes/front.svg",
  19820. extra: 1830 / 1769,
  19821. bottom: 0.01
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(6, "feet")
  19829. },
  19830. {
  19831. name: "Macro",
  19832. height: math.unit(30, "meters"),
  19833. default: true
  19834. },
  19835. ]
  19836. ))
  19837. characterMakers.push(() => makeCharacter(
  19838. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19839. {
  19840. side: {
  19841. height: math.unit(13 + 1 / 12, "feet"),
  19842. weight: math.unit(8.5, "tonnes"),
  19843. name: "Side",
  19844. image: {
  19845. source: "./media/characters/goldeneye/side.svg",
  19846. extra: 1182 / 778,
  19847. bottom: 0.067
  19848. }
  19849. },
  19850. paw: {
  19851. height: math.unit(3.4, "feet"),
  19852. name: "Paw",
  19853. image: {
  19854. source: "./media/characters/goldeneye/paw.svg"
  19855. }
  19856. },
  19857. },
  19858. [
  19859. {
  19860. name: "Normal",
  19861. height: math.unit(13 + 1 / 12, "feet"),
  19862. default: true
  19863. },
  19864. ]
  19865. ))
  19866. characterMakers.push(() => makeCharacter(
  19867. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19868. {
  19869. front: {
  19870. height: math.unit(6 + 1 / 12, "feet"),
  19871. weight: math.unit(210, "lb"),
  19872. name: "Front",
  19873. image: {
  19874. source: "./media/characters/leonardo-lycheborne/front.svg",
  19875. extra: 776/723,
  19876. bottom: 34/810
  19877. }
  19878. },
  19879. side: {
  19880. height: math.unit(6 + 1 / 12, "feet"),
  19881. weight: math.unit(210, "lb"),
  19882. name: "Side",
  19883. image: {
  19884. source: "./media/characters/leonardo-lycheborne/side.svg",
  19885. extra: 780/728,
  19886. bottom: 12/792
  19887. }
  19888. },
  19889. back: {
  19890. height: math.unit(6 + 1 / 12, "feet"),
  19891. weight: math.unit(210, "lb"),
  19892. name: "Back",
  19893. image: {
  19894. source: "./media/characters/leonardo-lycheborne/back.svg",
  19895. extra: 775/721,
  19896. bottom: 17/792
  19897. }
  19898. },
  19899. hand: {
  19900. height: math.unit(1.08, "feet"),
  19901. name: "Hand",
  19902. image: {
  19903. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19904. }
  19905. },
  19906. foot: {
  19907. height: math.unit(1.32, "feet"),
  19908. name: "Foot",
  19909. image: {
  19910. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19911. }
  19912. },
  19913. maw: {
  19914. height: math.unit(1, "feet"),
  19915. name: "Maw",
  19916. image: {
  19917. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19918. }
  19919. },
  19920. were: {
  19921. height: math.unit(20, "feet"),
  19922. weight: math.unit(7800, "lb"),
  19923. name: "Were",
  19924. image: {
  19925. source: "./media/characters/leonardo-lycheborne/were.svg",
  19926. extra: 1224/1165,
  19927. bottom: 72/1296
  19928. }
  19929. },
  19930. feral: {
  19931. height: math.unit(7.5, "feet"),
  19932. weight: math.unit(600, "lb"),
  19933. name: "Feral",
  19934. image: {
  19935. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19936. extra: 797/702,
  19937. bottom: 139/936
  19938. }
  19939. },
  19940. taur: {
  19941. height: math.unit(11, "feet"),
  19942. weight: math.unit(3300, "lb"),
  19943. name: "Taur",
  19944. image: {
  19945. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19946. extra: 1271/1197,
  19947. bottom: 47/1318
  19948. }
  19949. },
  19950. barghest: {
  19951. height: math.unit(11, "feet"),
  19952. weight: math.unit(1300, "lb"),
  19953. name: "Barghest",
  19954. image: {
  19955. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19956. extra: 1291/1204,
  19957. bottom: 37/1328
  19958. }
  19959. },
  19960. dick: {
  19961. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19962. name: "Dick",
  19963. image: {
  19964. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19965. }
  19966. },
  19967. dickWere: {
  19968. height: math.unit((20) / 3.8, "feet"),
  19969. name: "Dick (Were)",
  19970. image: {
  19971. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Normal",
  19978. height: math.unit(6 + 1 / 12, "feet"),
  19979. default: true
  19980. },
  19981. ]
  19982. ))
  19983. characterMakers.push(() => makeCharacter(
  19984. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19985. {
  19986. front: {
  19987. height: math.unit(10, "feet"),
  19988. weight: math.unit(350, "lb"),
  19989. name: "Front",
  19990. image: {
  19991. source: "./media/characters/jet/front.svg",
  19992. extra: 2050 / 1980,
  19993. bottom: 0.013
  19994. }
  19995. },
  19996. back: {
  19997. height: math.unit(10, "feet"),
  19998. weight: math.unit(350, "lb"),
  19999. name: "Back",
  20000. image: {
  20001. source: "./media/characters/jet/back.svg",
  20002. extra: 2050 / 1980,
  20003. bottom: 0.013
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Micro",
  20010. height: math.unit(6, "inches")
  20011. },
  20012. {
  20013. name: "Normal",
  20014. height: math.unit(10, "feet"),
  20015. default: true
  20016. },
  20017. {
  20018. name: "Macro",
  20019. height: math.unit(100, "feet")
  20020. },
  20021. ]
  20022. ))
  20023. characterMakers.push(() => makeCharacter(
  20024. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20025. {
  20026. front: {
  20027. height: math.unit(15, "feet"),
  20028. weight: math.unit(2800, "lb"),
  20029. name: "Front",
  20030. image: {
  20031. source: "./media/characters/tanarath/front.svg",
  20032. extra: 2392 / 2220,
  20033. bottom: 0.03
  20034. }
  20035. },
  20036. back: {
  20037. height: math.unit(15, "feet"),
  20038. weight: math.unit(2800, "lb"),
  20039. name: "Back",
  20040. image: {
  20041. source: "./media/characters/tanarath/back.svg",
  20042. extra: 2392 / 2220,
  20043. bottom: 0.03
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Normal",
  20050. height: math.unit(15, "feet"),
  20051. default: true
  20052. },
  20053. ]
  20054. ))
  20055. characterMakers.push(() => makeCharacter(
  20056. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20057. {
  20058. front: {
  20059. height: math.unit(7 + 1 / 12, "feet"),
  20060. weight: math.unit(175, "lb"),
  20061. name: "Front",
  20062. image: {
  20063. source: "./media/characters/patty-cattybatty/front.svg",
  20064. extra: 908 / 874,
  20065. bottom: 0.025
  20066. }
  20067. },
  20068. },
  20069. [
  20070. {
  20071. name: "Micro",
  20072. height: math.unit(1, "inch")
  20073. },
  20074. {
  20075. name: "Normal",
  20076. height: math.unit(7 + 1 / 12, "feet")
  20077. },
  20078. {
  20079. name: "Mini Macro",
  20080. height: math.unit(155, "feet")
  20081. },
  20082. {
  20083. name: "Macro",
  20084. height: math.unit(1077, "feet")
  20085. },
  20086. {
  20087. name: "Mega Macro",
  20088. height: math.unit(47650, "feet"),
  20089. default: true
  20090. },
  20091. {
  20092. name: "Giga Macro",
  20093. height: math.unit(440, "miles")
  20094. },
  20095. {
  20096. name: "Tera Macro",
  20097. height: math.unit(8700, "miles")
  20098. },
  20099. {
  20100. name: "Planetary Macro",
  20101. height: math.unit(32700, "miles")
  20102. },
  20103. {
  20104. name: "Solar Macro",
  20105. height: math.unit(550000, "miles")
  20106. },
  20107. {
  20108. name: "Celestial Macro",
  20109. height: math.unit(2.5, "AU")
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20115. {
  20116. front: {
  20117. height: math.unit(4 + 5 / 12, "feet"),
  20118. weight: math.unit(90, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/cappu/front.svg",
  20122. extra: 1247 / 1152,
  20123. bottom: 0.012
  20124. }
  20125. },
  20126. },
  20127. [
  20128. {
  20129. name: "Normal",
  20130. height: math.unit(4 + 5 / 12, "feet"),
  20131. default: true
  20132. },
  20133. ]
  20134. ))
  20135. characterMakers.push(() => makeCharacter(
  20136. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20137. {
  20138. frontDressed: {
  20139. height: math.unit(70, "cm"),
  20140. weight: math.unit(6, "kg"),
  20141. name: "Front (Dressed)",
  20142. image: {
  20143. source: "./media/characters/sebi/front-dressed.svg",
  20144. extra: 713.5 / 686.5,
  20145. bottom: 0.003
  20146. }
  20147. },
  20148. front: {
  20149. height: math.unit(70, "cm"),
  20150. weight: math.unit(5, "kg"),
  20151. name: "Front",
  20152. image: {
  20153. source: "./media/characters/sebi/front.svg",
  20154. extra: 713.5 / 686.5,
  20155. bottom: 0.003
  20156. }
  20157. }
  20158. },
  20159. [
  20160. {
  20161. name: "Normal",
  20162. height: math.unit(70, "cm"),
  20163. default: true
  20164. },
  20165. {
  20166. name: "Macro",
  20167. height: math.unit(8, "meters")
  20168. },
  20169. ]
  20170. ))
  20171. characterMakers.push(() => makeCharacter(
  20172. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20173. {
  20174. front: {
  20175. height: math.unit(6, "feet"),
  20176. weight: math.unit(150, "lb"),
  20177. name: "Front",
  20178. image: {
  20179. source: "./media/characters/typhek/front.svg",
  20180. extra: 1948 / 1929,
  20181. bottom: 0.025
  20182. }
  20183. },
  20184. side: {
  20185. height: math.unit(6, "feet"),
  20186. weight: math.unit(150, "lb"),
  20187. name: "Side",
  20188. image: {
  20189. source: "./media/characters/typhek/side.svg",
  20190. extra: 2034 / 2010,
  20191. bottom: 0.003
  20192. }
  20193. },
  20194. back: {
  20195. height: math.unit(6, "feet"),
  20196. weight: math.unit(150, "lb"),
  20197. name: "Back",
  20198. image: {
  20199. source: "./media/characters/typhek/back.svg",
  20200. extra: 2005 / 1978,
  20201. bottom: 0.004
  20202. }
  20203. },
  20204. palm: {
  20205. height: math.unit(1.2, "feet"),
  20206. name: "Palm",
  20207. image: {
  20208. source: "./media/characters/typhek/palm.svg"
  20209. }
  20210. },
  20211. fist: {
  20212. height: math.unit(1.1, "feet"),
  20213. name: "Fist",
  20214. image: {
  20215. source: "./media/characters/typhek/fist.svg"
  20216. }
  20217. },
  20218. foot: {
  20219. height: math.unit(1.57, "feet"),
  20220. name: "Foot",
  20221. image: {
  20222. source: "./media/characters/typhek/foot.svg"
  20223. }
  20224. },
  20225. sole: {
  20226. height: math.unit(2.05, "feet"),
  20227. name: "Sole",
  20228. image: {
  20229. source: "./media/characters/typhek/sole.svg"
  20230. }
  20231. },
  20232. },
  20233. [
  20234. {
  20235. name: "Macro",
  20236. height: math.unit(40, "stories"),
  20237. default: true
  20238. },
  20239. {
  20240. name: "Megamacro",
  20241. height: math.unit(1, "mile")
  20242. },
  20243. {
  20244. name: "Gigamacro",
  20245. height: math.unit(4000, "solarradii")
  20246. },
  20247. {
  20248. name: "Universal",
  20249. height: math.unit(1.1, "universes")
  20250. }
  20251. ]
  20252. ))
  20253. characterMakers.push(() => makeCharacter(
  20254. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20255. {
  20256. side: {
  20257. height: math.unit(5 + 7 / 12, "feet"),
  20258. weight: math.unit(150, "lb"),
  20259. name: "Side",
  20260. image: {
  20261. source: "./media/characters/kassy/side.svg",
  20262. extra: 1280 / 1225,
  20263. bottom: 0.002
  20264. }
  20265. },
  20266. front: {
  20267. height: math.unit(5 + 7 / 12, "feet"),
  20268. weight: math.unit(150, "lb"),
  20269. name: "Front",
  20270. image: {
  20271. source: "./media/characters/kassy/front.svg",
  20272. extra: 1280 / 1225,
  20273. bottom: 0.025
  20274. }
  20275. },
  20276. back: {
  20277. height: math.unit(5 + 7 / 12, "feet"),
  20278. weight: math.unit(150, "lb"),
  20279. name: "Back",
  20280. image: {
  20281. source: "./media/characters/kassy/back.svg",
  20282. extra: 1280 / 1225,
  20283. bottom: 0.002
  20284. }
  20285. },
  20286. foot: {
  20287. height: math.unit(1.266, "feet"),
  20288. name: "Foot",
  20289. image: {
  20290. source: "./media/characters/kassy/foot.svg"
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(5 + 7 / 12, "feet")
  20298. },
  20299. {
  20300. name: "Macro",
  20301. height: math.unit(137, "feet"),
  20302. default: true
  20303. },
  20304. {
  20305. name: "Megamacro",
  20306. height: math.unit(1, "mile")
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20312. {
  20313. front: {
  20314. height: math.unit(6 + 1 / 12, "feet"),
  20315. weight: math.unit(200, "lb"),
  20316. name: "Front",
  20317. image: {
  20318. source: "./media/characters/neil/front.svg",
  20319. extra: 1326 / 1250,
  20320. bottom: 0.023
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Normal",
  20327. height: math.unit(6 + 1 / 12, "feet"),
  20328. default: true
  20329. },
  20330. {
  20331. name: "Macro",
  20332. height: math.unit(200, "feet")
  20333. },
  20334. ]
  20335. ))
  20336. characterMakers.push(() => makeCharacter(
  20337. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20338. {
  20339. front: {
  20340. height: math.unit(5 + 9 / 12, "feet"),
  20341. weight: math.unit(190, "lb"),
  20342. name: "Front",
  20343. image: {
  20344. source: "./media/characters/atticus/front.svg",
  20345. extra: 2934 / 2785,
  20346. bottom: 0.025
  20347. }
  20348. },
  20349. },
  20350. [
  20351. {
  20352. name: "Normal",
  20353. height: math.unit(5 + 9 / 12, "feet"),
  20354. default: true
  20355. },
  20356. {
  20357. name: "Macro",
  20358. height: math.unit(180, "feet")
  20359. },
  20360. ]
  20361. ))
  20362. characterMakers.push(() => makeCharacter(
  20363. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20364. {
  20365. side: {
  20366. height: math.unit(9, "feet"),
  20367. weight: math.unit(650, "lb"),
  20368. name: "Side",
  20369. image: {
  20370. source: "./media/characters/milo/side.svg",
  20371. extra: 2644 / 2310,
  20372. bottom: 0.032
  20373. }
  20374. },
  20375. },
  20376. [
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(9, "feet"),
  20380. default: true
  20381. },
  20382. {
  20383. name: "Macro",
  20384. height: math.unit(300, "feet")
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20390. {
  20391. side: {
  20392. height: math.unit(8, "meters"),
  20393. weight: math.unit(90000, "kg"),
  20394. name: "Side",
  20395. image: {
  20396. source: "./media/characters/ijzer/side.svg",
  20397. extra: 2756 / 1600,
  20398. bottom: 0.01
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Small",
  20405. height: math.unit(3, "meters")
  20406. },
  20407. {
  20408. name: "Normal",
  20409. height: math.unit(8, "meters"),
  20410. default: true
  20411. },
  20412. {
  20413. name: "Normal+",
  20414. height: math.unit(10, "meters")
  20415. },
  20416. {
  20417. name: "Bigger",
  20418. height: math.unit(24, "meters")
  20419. },
  20420. {
  20421. name: "Huge",
  20422. height: math.unit(80, "meters")
  20423. },
  20424. ]
  20425. ))
  20426. characterMakers.push(() => makeCharacter(
  20427. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20428. {
  20429. front: {
  20430. height: math.unit(6 + 2 / 12, "feet"),
  20431. weight: math.unit(153, "lb"),
  20432. name: "Front",
  20433. image: {
  20434. source: "./media/characters/luca-cervicum/front.svg",
  20435. extra: 370 / 327,
  20436. bottom: 0.015
  20437. }
  20438. },
  20439. back: {
  20440. height: math.unit(6 + 2 / 12, "feet"),
  20441. weight: math.unit(153, "lb"),
  20442. name: "Back",
  20443. image: {
  20444. source: "./media/characters/luca-cervicum/back.svg",
  20445. extra: 367 / 333,
  20446. bottom: 0.005
  20447. }
  20448. },
  20449. frontGear: {
  20450. height: math.unit(6 + 2 / 12, "feet"),
  20451. weight: math.unit(173, "lb"),
  20452. name: "Front (Gear)",
  20453. image: {
  20454. source: "./media/characters/luca-cervicum/front-gear.svg",
  20455. extra: 377 / 333,
  20456. bottom: 0.006
  20457. }
  20458. },
  20459. },
  20460. [
  20461. {
  20462. name: "Normal",
  20463. height: math.unit(6 + 2 / 12, "feet"),
  20464. default: true
  20465. },
  20466. ]
  20467. ))
  20468. characterMakers.push(() => makeCharacter(
  20469. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20470. {
  20471. front: {
  20472. height: math.unit(6 + 1 / 12, "feet"),
  20473. weight: math.unit(304, "lb"),
  20474. name: "Front",
  20475. image: {
  20476. source: "./media/characters/oliver/front.svg",
  20477. extra: 157 / 143,
  20478. bottom: 0.08
  20479. }
  20480. },
  20481. },
  20482. [
  20483. {
  20484. name: "Normal",
  20485. height: math.unit(6 + 1 / 12, "feet"),
  20486. default: true
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20492. {
  20493. front: {
  20494. height: math.unit(5 + 7 / 12, "feet"),
  20495. weight: math.unit(140, "lb"),
  20496. name: "Front",
  20497. image: {
  20498. source: "./media/characters/shane/front.svg",
  20499. extra: 304 / 289,
  20500. bottom: 0.005
  20501. }
  20502. },
  20503. },
  20504. [
  20505. {
  20506. name: "Normal",
  20507. height: math.unit(5 + 7 / 12, "feet"),
  20508. default: true
  20509. },
  20510. ]
  20511. ))
  20512. characterMakers.push(() => makeCharacter(
  20513. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20514. {
  20515. front: {
  20516. height: math.unit(5 + 9 / 12, "feet"),
  20517. weight: math.unit(178, "lb"),
  20518. name: "Front",
  20519. image: {
  20520. source: "./media/characters/shin/front.svg",
  20521. extra: 159 / 151,
  20522. bottom: 0.015
  20523. }
  20524. },
  20525. },
  20526. [
  20527. {
  20528. name: "Normal",
  20529. height: math.unit(5 + 9 / 12, "feet"),
  20530. default: true
  20531. },
  20532. ]
  20533. ))
  20534. characterMakers.push(() => makeCharacter(
  20535. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20536. {
  20537. front: {
  20538. height: math.unit(5 + 10 / 12, "feet"),
  20539. weight: math.unit(168, "lb"),
  20540. name: "Front",
  20541. image: {
  20542. source: "./media/characters/xerxes/front.svg",
  20543. extra: 282 / 260,
  20544. bottom: 0.045
  20545. }
  20546. },
  20547. },
  20548. [
  20549. {
  20550. name: "Normal",
  20551. height: math.unit(5 + 10 / 12, "feet"),
  20552. default: true
  20553. },
  20554. ]
  20555. ))
  20556. characterMakers.push(() => makeCharacter(
  20557. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20558. {
  20559. front: {
  20560. height: math.unit(6 + 7 / 12, "feet"),
  20561. weight: math.unit(208, "lb"),
  20562. name: "Front",
  20563. image: {
  20564. source: "./media/characters/chaska/front.svg",
  20565. extra: 332 / 319,
  20566. bottom: 0.015
  20567. }
  20568. },
  20569. },
  20570. [
  20571. {
  20572. name: "Normal",
  20573. height: math.unit(6 + 7 / 12, "feet"),
  20574. default: true
  20575. },
  20576. ]
  20577. ))
  20578. characterMakers.push(() => makeCharacter(
  20579. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20580. {
  20581. front: {
  20582. height: math.unit(5 + 8 / 12, "feet"),
  20583. weight: math.unit(208, "lb"),
  20584. name: "Front",
  20585. image: {
  20586. source: "./media/characters/enuk/front.svg",
  20587. extra: 437 / 406,
  20588. bottom: 0.02
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Normal",
  20595. height: math.unit(5 + 8 / 12, "feet"),
  20596. default: true
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20602. {
  20603. front: {
  20604. height: math.unit(5 + 10 / 12, "feet"),
  20605. weight: math.unit(252, "lb"),
  20606. name: "Front",
  20607. image: {
  20608. source: "./media/characters/bruun/front.svg",
  20609. extra: 197 / 187,
  20610. bottom: 0.012
  20611. }
  20612. },
  20613. },
  20614. [
  20615. {
  20616. name: "Normal",
  20617. height: math.unit(5 + 10 / 12, "feet"),
  20618. default: true
  20619. },
  20620. ]
  20621. ))
  20622. characterMakers.push(() => makeCharacter(
  20623. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20624. {
  20625. front: {
  20626. height: math.unit(6 + 10 / 12, "feet"),
  20627. weight: math.unit(255, "lb"),
  20628. name: "Front",
  20629. image: {
  20630. source: "./media/characters/alexeev/front.svg",
  20631. extra: 213 / 200,
  20632. bottom: 0.05
  20633. }
  20634. },
  20635. },
  20636. [
  20637. {
  20638. name: "Normal",
  20639. height: math.unit(6 + 10 / 12, "feet"),
  20640. default: true
  20641. },
  20642. ]
  20643. ))
  20644. characterMakers.push(() => makeCharacter(
  20645. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20646. {
  20647. front: {
  20648. height: math.unit(2 + 8 / 12, "feet"),
  20649. weight: math.unit(22, "lb"),
  20650. name: "Front",
  20651. image: {
  20652. source: "./media/characters/evelyn/front.svg",
  20653. extra: 208 / 180
  20654. }
  20655. },
  20656. },
  20657. [
  20658. {
  20659. name: "Normal",
  20660. height: math.unit(2 + 8 / 12, "feet"),
  20661. default: true
  20662. },
  20663. ]
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20667. {
  20668. front: {
  20669. height: math.unit(5 + 9 / 12, "feet"),
  20670. weight: math.unit(139, "lb"),
  20671. name: "Front",
  20672. image: {
  20673. source: "./media/characters/inca/front.svg",
  20674. extra: 294 / 291,
  20675. bottom: 0.03
  20676. }
  20677. },
  20678. },
  20679. [
  20680. {
  20681. name: "Normal",
  20682. height: math.unit(5 + 9 / 12, "feet"),
  20683. default: true
  20684. },
  20685. ]
  20686. ))
  20687. characterMakers.push(() => makeCharacter(
  20688. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20689. {
  20690. front: {
  20691. height: math.unit(6 + 3 / 12, "feet"),
  20692. weight: math.unit(185, "lb"),
  20693. name: "Front",
  20694. image: {
  20695. source: "./media/characters/mera/front.svg",
  20696. extra: 291 / 277,
  20697. bottom: 0.03
  20698. }
  20699. },
  20700. },
  20701. [
  20702. {
  20703. name: "Normal",
  20704. height: math.unit(6 + 3 / 12, "feet"),
  20705. default: true
  20706. },
  20707. ]
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20711. {
  20712. front: {
  20713. height: math.unit(6 + 7 / 12, "feet"),
  20714. weight: math.unit(160, "lb"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/ceres/front.svg",
  20718. extra: 1023 / 950,
  20719. bottom: 0.027
  20720. }
  20721. },
  20722. back: {
  20723. height: math.unit(6 + 7 / 12, "feet"),
  20724. weight: math.unit(160, "lb"),
  20725. name: "Back",
  20726. image: {
  20727. source: "./media/characters/ceres/back.svg",
  20728. extra: 1023 / 950
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Normal",
  20735. height: math.unit(6 + 7 / 12, "feet"),
  20736. default: true
  20737. },
  20738. ]
  20739. ))
  20740. characterMakers.push(() => makeCharacter(
  20741. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20742. {
  20743. front: {
  20744. height: math.unit(5 + 10 / 12, "feet"),
  20745. weight: math.unit(150, "lb"),
  20746. name: "Front",
  20747. image: {
  20748. source: "./media/characters/kris/front.svg",
  20749. extra: 885 / 803,
  20750. bottom: 0.03
  20751. }
  20752. },
  20753. },
  20754. [
  20755. {
  20756. name: "Normal",
  20757. height: math.unit(5 + 10 / 12, "feet"),
  20758. default: true
  20759. },
  20760. ]
  20761. ))
  20762. characterMakers.push(() => makeCharacter(
  20763. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20764. {
  20765. front: {
  20766. height: math.unit(7, "feet"),
  20767. weight: math.unit(120, "kg"),
  20768. name: "Front",
  20769. image: {
  20770. source: "./media/characters/taluthus/front.svg",
  20771. extra: 903 / 833,
  20772. bottom: 0.015
  20773. }
  20774. },
  20775. },
  20776. [
  20777. {
  20778. name: "Normal",
  20779. height: math.unit(7, "feet"),
  20780. default: true
  20781. },
  20782. {
  20783. name: "Macro",
  20784. height: math.unit(300, "feet")
  20785. },
  20786. ]
  20787. ))
  20788. characterMakers.push(() => makeCharacter(
  20789. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20790. {
  20791. front: {
  20792. height: math.unit(5 + 9 / 12, "feet"),
  20793. weight: math.unit(145, "lb"),
  20794. name: "Front",
  20795. image: {
  20796. source: "./media/characters/dawn/front.svg",
  20797. extra: 2094 / 2016,
  20798. bottom: 0.025
  20799. }
  20800. },
  20801. back: {
  20802. height: math.unit(5 + 9 / 12, "feet"),
  20803. weight: math.unit(160, "lb"),
  20804. name: "Back",
  20805. image: {
  20806. source: "./media/characters/dawn/back.svg",
  20807. extra: 2112 / 2080,
  20808. bottom: 0.005
  20809. }
  20810. },
  20811. },
  20812. [
  20813. {
  20814. name: "Normal",
  20815. height: math.unit(6 + 7 / 12, "feet"),
  20816. default: true
  20817. },
  20818. ]
  20819. ))
  20820. characterMakers.push(() => makeCharacter(
  20821. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20822. {
  20823. anthro: {
  20824. height: math.unit(8 + 3 / 12, "feet"),
  20825. weight: math.unit(450, "lb"),
  20826. name: "Anthro",
  20827. image: {
  20828. source: "./media/characters/arador/anthro.svg",
  20829. extra: 1835 / 1718,
  20830. bottom: 0.025
  20831. }
  20832. },
  20833. feral: {
  20834. height: math.unit(4, "feet"),
  20835. weight: math.unit(200, "lb"),
  20836. name: "Feral",
  20837. image: {
  20838. source: "./media/characters/arador/feral.svg",
  20839. extra: 1683 / 1514,
  20840. bottom: 0.07
  20841. }
  20842. },
  20843. },
  20844. [
  20845. {
  20846. name: "Normal",
  20847. height: math.unit(8 + 3 / 12, "feet")
  20848. },
  20849. {
  20850. name: "Macro",
  20851. height: math.unit(82.5, "feet"),
  20852. default: true
  20853. },
  20854. ]
  20855. ))
  20856. characterMakers.push(() => makeCharacter(
  20857. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20858. {
  20859. front: {
  20860. height: math.unit(5 + 10 / 12, "feet"),
  20861. weight: math.unit(125, "lb"),
  20862. name: "Front",
  20863. image: {
  20864. source: "./media/characters/dharsi/front.svg",
  20865. extra: 716 / 630,
  20866. bottom: 0.035
  20867. }
  20868. },
  20869. },
  20870. [
  20871. {
  20872. name: "Nano",
  20873. height: math.unit(100, "nm")
  20874. },
  20875. {
  20876. name: "Micro",
  20877. height: math.unit(2, "inches")
  20878. },
  20879. {
  20880. name: "Normal",
  20881. height: math.unit(5 + 10 / 12, "feet"),
  20882. default: true
  20883. },
  20884. {
  20885. name: "Macro",
  20886. height: math.unit(1000, "feet")
  20887. },
  20888. {
  20889. name: "Megamacro",
  20890. height: math.unit(10, "miles")
  20891. },
  20892. {
  20893. name: "Gigamacro",
  20894. height: math.unit(3000, "miles")
  20895. },
  20896. {
  20897. name: "Teramacro",
  20898. height: math.unit(500000, "miles")
  20899. },
  20900. {
  20901. name: "Teramacro+",
  20902. height: math.unit(30, "galaxies")
  20903. },
  20904. ]
  20905. ))
  20906. characterMakers.push(() => makeCharacter(
  20907. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20908. {
  20909. front: {
  20910. height: math.unit(6, "feet"),
  20911. weight: math.unit(150, "lb"),
  20912. name: "Front",
  20913. image: {
  20914. source: "./media/characters/deathy/front.svg",
  20915. extra: 1552 / 1463,
  20916. bottom: 0.025
  20917. }
  20918. },
  20919. side: {
  20920. height: math.unit(6, "feet"),
  20921. weight: math.unit(150, "lb"),
  20922. name: "Side",
  20923. image: {
  20924. source: "./media/characters/deathy/side.svg",
  20925. extra: 1604 / 1455,
  20926. bottom: 0.025
  20927. }
  20928. },
  20929. back: {
  20930. height: math.unit(6, "feet"),
  20931. weight: math.unit(150, "lb"),
  20932. name: "Back",
  20933. image: {
  20934. source: "./media/characters/deathy/back.svg",
  20935. extra: 1580 / 1463,
  20936. bottom: 0.005
  20937. }
  20938. },
  20939. },
  20940. [
  20941. {
  20942. name: "Micro",
  20943. height: math.unit(5, "millimeters")
  20944. },
  20945. {
  20946. name: "Normal",
  20947. height: math.unit(6 + 5 / 12, "feet"),
  20948. default: true
  20949. },
  20950. ]
  20951. ))
  20952. characterMakers.push(() => makeCharacter(
  20953. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20954. {
  20955. front: {
  20956. height: math.unit(16, "feet"),
  20957. weight: math.unit(4000, "lb"),
  20958. name: "Front",
  20959. image: {
  20960. source: "./media/characters/juniper/front.svg",
  20961. bottom: 0.04
  20962. }
  20963. },
  20964. },
  20965. [
  20966. {
  20967. name: "Normal",
  20968. height: math.unit(16, "feet"),
  20969. default: true
  20970. },
  20971. ]
  20972. ))
  20973. characterMakers.push(() => makeCharacter(
  20974. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20975. {
  20976. front: {
  20977. height: math.unit(6, "feet"),
  20978. weight: math.unit(150, "lb"),
  20979. name: "Front",
  20980. image: {
  20981. source: "./media/characters/hipster/front.svg",
  20982. extra: 1312 / 1209,
  20983. bottom: 0.025
  20984. }
  20985. },
  20986. back: {
  20987. height: math.unit(6, "feet"),
  20988. weight: math.unit(150, "lb"),
  20989. name: "Back",
  20990. image: {
  20991. source: "./media/characters/hipster/back.svg",
  20992. extra: 1281 / 1196,
  20993. bottom: 0.01
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Micro",
  21000. height: math.unit(1, "mm")
  21001. },
  21002. {
  21003. name: "Normal",
  21004. height: math.unit(4, "inches"),
  21005. default: true
  21006. },
  21007. {
  21008. name: "Macro",
  21009. height: math.unit(500, "feet")
  21010. },
  21011. {
  21012. name: "Megamacro",
  21013. height: math.unit(1000, "miles")
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21019. {
  21020. front: {
  21021. height: math.unit(6, "feet"),
  21022. weight: math.unit(150, "lb"),
  21023. name: "Front",
  21024. image: {
  21025. source: "./media/characters/tendirmuldr/front.svg",
  21026. extra: 1878 / 1772,
  21027. bottom: 0.015
  21028. }
  21029. },
  21030. },
  21031. [
  21032. {
  21033. name: "Megamacro",
  21034. height: math.unit(1500, "miles"),
  21035. default: true
  21036. },
  21037. ]
  21038. ))
  21039. characterMakers.push(() => makeCharacter(
  21040. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21041. {
  21042. front: {
  21043. height: math.unit(14, "feet"),
  21044. weight: math.unit(12000, "lb"),
  21045. name: "Front",
  21046. image: {
  21047. source: "./media/characters/mort/front.svg",
  21048. extra: 365 / 318,
  21049. bottom: 0.01
  21050. }
  21051. },
  21052. side: {
  21053. height: math.unit(14, "feet"),
  21054. weight: math.unit(12000, "lb"),
  21055. name: "Side",
  21056. image: {
  21057. source: "./media/characters/mort/side.svg",
  21058. extra: 365 / 318,
  21059. bottom: 0.052
  21060. },
  21061. default: true
  21062. },
  21063. back: {
  21064. height: math.unit(14, "feet"),
  21065. weight: math.unit(12000, "lb"),
  21066. name: "Back",
  21067. image: {
  21068. source: "./media/characters/mort/back.svg",
  21069. extra: 371 / 332,
  21070. bottom: 0.18
  21071. }
  21072. },
  21073. },
  21074. [
  21075. {
  21076. name: "Normal",
  21077. height: math.unit(14, "feet"),
  21078. default: true
  21079. },
  21080. ]
  21081. ))
  21082. characterMakers.push(() => makeCharacter(
  21083. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21084. {
  21085. front: {
  21086. height: math.unit(8, "feet"),
  21087. weight: math.unit(1, "ton"),
  21088. name: "Front",
  21089. image: {
  21090. source: "./media/characters/lycoa/front.svg",
  21091. extra: 1836/1728,
  21092. bottom: 81/1917
  21093. }
  21094. },
  21095. back: {
  21096. height: math.unit(8, "feet"),
  21097. weight: math.unit(1, "ton"),
  21098. name: "Back",
  21099. image: {
  21100. source: "./media/characters/lycoa/back.svg",
  21101. extra: 1785/1720,
  21102. bottom: 91/1876
  21103. }
  21104. },
  21105. head: {
  21106. height: math.unit(1.6243, "feet"),
  21107. name: "Head",
  21108. image: {
  21109. source: "./media/characters/lycoa/head.svg",
  21110. extra: 1011/782,
  21111. bottom: 0/1011
  21112. }
  21113. },
  21114. tailmaw: {
  21115. height: math.unit(1.9, "feet"),
  21116. name: "Tailmaw",
  21117. image: {
  21118. source: "./media/characters/lycoa/tailmaw.svg"
  21119. }
  21120. },
  21121. tentacles: {
  21122. height: math.unit(2.1, "feet"),
  21123. name: "Tentacles",
  21124. image: {
  21125. source: "./media/characters/lycoa/tentacles.svg"
  21126. }
  21127. },
  21128. dick: {
  21129. height: math.unit(1.73, "feet"),
  21130. name: "Dick",
  21131. image: {
  21132. source: "./media/characters/lycoa/dick.svg"
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Normal",
  21139. height: math.unit(8, "feet"),
  21140. default: true
  21141. },
  21142. {
  21143. name: "Macro",
  21144. height: math.unit(30, "feet")
  21145. },
  21146. ]
  21147. ))
  21148. characterMakers.push(() => makeCharacter(
  21149. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21150. {
  21151. front: {
  21152. height: math.unit(4 + 2 / 12, "feet"),
  21153. weight: math.unit(70, "lb"),
  21154. name: "Front",
  21155. image: {
  21156. source: "./media/characters/naldara/front.svg",
  21157. extra: 1664/1387,
  21158. bottom: 81/1745
  21159. },
  21160. form: "anthro",
  21161. default: true
  21162. },
  21163. naga: {
  21164. height: math.unit(20, "feet"),
  21165. weight: math.unit(15000, "kg"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/naldara/naga.svg",
  21169. extra: 1590/1396,
  21170. bottom: 285/1875
  21171. },
  21172. form: "naga",
  21173. default: true
  21174. },
  21175. },
  21176. [
  21177. {
  21178. name: "Normal",
  21179. height: math.unit(4 + 2 / 12, "feet"),
  21180. form: "anthro",
  21181. default: true
  21182. },
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(20, "feet"),
  21186. form: "naga",
  21187. default: true
  21188. },
  21189. ],
  21190. {
  21191. "anthro": {
  21192. name: "Anthro",
  21193. default: true
  21194. },
  21195. "naga": {
  21196. name: "Naga"
  21197. }
  21198. }
  21199. ))
  21200. characterMakers.push(() => makeCharacter(
  21201. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21202. {
  21203. front: {
  21204. height: math.unit(13 + 7 / 12, "feet"),
  21205. weight: math.unit(1500, "lb"),
  21206. name: "Front",
  21207. image: {
  21208. source: "./media/characters/briar/front.svg",
  21209. extra: 1223/1157,
  21210. bottom: 123/1346
  21211. }
  21212. },
  21213. },
  21214. [
  21215. {
  21216. name: "Normal",
  21217. height: math.unit(13 + 7 / 12, "feet"),
  21218. default: true
  21219. },
  21220. ]
  21221. ))
  21222. characterMakers.push(() => makeCharacter(
  21223. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21224. {
  21225. side: {
  21226. height: math.unit(16, "feet"),
  21227. weight: math.unit(500, "lb"),
  21228. name: "Side",
  21229. image: {
  21230. source: "./media/characters/vanguard/side.svg",
  21231. extra: 1022/914,
  21232. bottom: 30/1052
  21233. }
  21234. },
  21235. sideAlt: {
  21236. height: math.unit(10, "feet"),
  21237. weight: math.unit(500, "lb"),
  21238. name: "Side (Alt)",
  21239. image: {
  21240. source: "./media/characters/vanguard/side-alt.svg",
  21241. extra: 502 / 425,
  21242. bottom: 0.087
  21243. }
  21244. },
  21245. },
  21246. [
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(17.71, "feet"),
  21250. default: true
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(7.5, "feet"),
  21259. weight: math.unit(2, "lb"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/artemis/work-safe-front.svg",
  21263. extra: 1192 / 1075,
  21264. bottom: 0.07
  21265. },
  21266. form: "work-safe",
  21267. default: true
  21268. },
  21269. frontNsfw: {
  21270. height: math.unit(7.5, "feet"),
  21271. weight: math.unit(2, "lb"),
  21272. name: "Front",
  21273. image: {
  21274. source: "./media/characters/artemis/calibrating-front.svg",
  21275. extra: 1192 / 1075,
  21276. bottom: 0.07
  21277. },
  21278. form: "calibrating",
  21279. default: true
  21280. },
  21281. frontNsfwer: {
  21282. height: math.unit(7.5, "feet"),
  21283. weight: math.unit(2, "lb"),
  21284. name: "Front",
  21285. image: {
  21286. source: "./media/characters/artemis/oversize-load-front.svg",
  21287. extra: 1192 / 1075,
  21288. bottom: 0.07
  21289. },
  21290. form: "oversize-load",
  21291. default: true
  21292. },
  21293. side: {
  21294. height: math.unit(7.5, "feet"),
  21295. weight: math.unit(2, "lb"),
  21296. name: "Side",
  21297. image: {
  21298. source: "./media/characters/artemis/work-safe-side.svg",
  21299. extra: 1192 / 1075,
  21300. bottom: 0.07
  21301. },
  21302. form: "work-safe"
  21303. },
  21304. sideNsfw: {
  21305. height: math.unit(7.5, "feet"),
  21306. weight: math.unit(2, "lb"),
  21307. name: "Side",
  21308. image: {
  21309. source: "./media/characters/artemis/calibrating-side.svg",
  21310. extra: 1192 / 1075,
  21311. bottom: 0.07
  21312. },
  21313. form: "calibrating"
  21314. },
  21315. sideNsfwer: {
  21316. height: math.unit(7.5, "feet"),
  21317. weight: math.unit(2, "lb"),
  21318. name: "Side",
  21319. image: {
  21320. source: "./media/characters/artemis/oversize-load-side.svg",
  21321. extra: 1192 / 1075,
  21322. bottom: 0.07
  21323. },
  21324. form: "oversize-load"
  21325. },
  21326. maw: {
  21327. height: math.unit(1.1, "feet"),
  21328. name: "Maw",
  21329. image: {
  21330. source: "./media/characters/artemis/maw.svg"
  21331. },
  21332. form: "work-safe"
  21333. },
  21334. stomach: {
  21335. height: math.unit(0.95, "feet"),
  21336. name: "Stomach",
  21337. image: {
  21338. source: "./media/characters/artemis/stomach.svg"
  21339. },
  21340. form: "work-safe"
  21341. },
  21342. dickCanine: {
  21343. height: math.unit(1, "feet"),
  21344. name: "Dick (Canine)",
  21345. image: {
  21346. source: "./media/characters/artemis/dick-canine.svg"
  21347. },
  21348. form: "calibrating"
  21349. },
  21350. dickEquine: {
  21351. height: math.unit(0.85, "feet"),
  21352. name: "Dick (Equine)",
  21353. image: {
  21354. source: "./media/characters/artemis/dick-equine.svg"
  21355. },
  21356. form: "calibrating"
  21357. },
  21358. dickExotic: {
  21359. height: math.unit(0.85, "feet"),
  21360. name: "Dick (Exotic)",
  21361. image: {
  21362. source: "./media/characters/artemis/dick-exotic.svg"
  21363. },
  21364. form: "calibrating"
  21365. },
  21366. dickCanineBigger: {
  21367. height: math.unit(1 * 1.33, "feet"),
  21368. name: "Dick (Canine)",
  21369. image: {
  21370. source: "./media/characters/artemis/dick-canine.svg"
  21371. },
  21372. form: "oversize-load"
  21373. },
  21374. dickEquineBigger: {
  21375. height: math.unit(0.85 * 1.33, "feet"),
  21376. name: "Dick (Equine)",
  21377. image: {
  21378. source: "./media/characters/artemis/dick-equine.svg"
  21379. },
  21380. form: "oversize-load"
  21381. },
  21382. dickExoticBigger: {
  21383. height: math.unit(0.85 * 1.33, "feet"),
  21384. name: "Dick (Exotic)",
  21385. image: {
  21386. source: "./media/characters/artemis/dick-exotic.svg"
  21387. },
  21388. form: "oversize-load"
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(7.5, "feet"),
  21395. form: "work-safe",
  21396. default: true
  21397. },
  21398. {
  21399. name: "Normal",
  21400. height: math.unit(7.5, "feet"),
  21401. form: "calibrating",
  21402. default: true
  21403. },
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(7.5, "feet"),
  21407. form: "oversize-load",
  21408. default: true
  21409. },
  21410. {
  21411. name: "Enlarged",
  21412. height: math.unit(12, "feet"),
  21413. form: "work-safe",
  21414. },
  21415. {
  21416. name: "Enlarged",
  21417. height: math.unit(12, "feet"),
  21418. form: "calibrating",
  21419. },
  21420. {
  21421. name: "Enlarged",
  21422. height: math.unit(12, "feet"),
  21423. form: "oversize-load",
  21424. },
  21425. ],
  21426. {
  21427. "work-safe": {
  21428. name: "Work-Safe",
  21429. default: true
  21430. },
  21431. "calibrating": {
  21432. name: "Calibrating"
  21433. },
  21434. "oversize-load": {
  21435. name: "Oversize Load"
  21436. }
  21437. }
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21441. {
  21442. front: {
  21443. height: math.unit(5 + 3 / 12, "feet"),
  21444. weight: math.unit(160, "lb"),
  21445. name: "Front",
  21446. image: {
  21447. source: "./media/characters/kira/front.svg",
  21448. extra: 906 / 786,
  21449. bottom: 0.01
  21450. }
  21451. },
  21452. back: {
  21453. height: math.unit(5 + 3 / 12, "feet"),
  21454. weight: math.unit(160, "lb"),
  21455. name: "Back",
  21456. image: {
  21457. source: "./media/characters/kira/back.svg",
  21458. extra: 882 / 757,
  21459. bottom: 0.005
  21460. }
  21461. },
  21462. frontDressed: {
  21463. height: math.unit(5 + 3 / 12, "feet"),
  21464. weight: math.unit(160, "lb"),
  21465. name: "Front (Dressed)",
  21466. image: {
  21467. source: "./media/characters/kira/front-dressed.svg",
  21468. extra: 906 / 786,
  21469. bottom: 0.01
  21470. }
  21471. },
  21472. beans: {
  21473. height: math.unit(0.92, "feet"),
  21474. name: "Beans",
  21475. image: {
  21476. source: "./media/characters/kira/beans.svg"
  21477. }
  21478. },
  21479. },
  21480. [
  21481. {
  21482. name: "Normal",
  21483. height: math.unit(5 + 3 / 12, "feet"),
  21484. default: true
  21485. },
  21486. ]
  21487. ))
  21488. characterMakers.push(() => makeCharacter(
  21489. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21490. {
  21491. front: {
  21492. height: math.unit(5 + 4 / 12, "feet"),
  21493. weight: math.unit(145, "lb"),
  21494. name: "Front",
  21495. image: {
  21496. source: "./media/characters/scramble/front.svg",
  21497. extra: 763 / 727,
  21498. bottom: 0.05
  21499. }
  21500. },
  21501. back: {
  21502. height: math.unit(5 + 4 / 12, "feet"),
  21503. weight: math.unit(145, "lb"),
  21504. name: "Back",
  21505. image: {
  21506. source: "./media/characters/scramble/back.svg",
  21507. extra: 826 / 737,
  21508. bottom: 0.002
  21509. }
  21510. },
  21511. },
  21512. [
  21513. {
  21514. name: "Normal",
  21515. height: math.unit(5 + 4 / 12, "feet"),
  21516. default: true
  21517. },
  21518. ]
  21519. ))
  21520. characterMakers.push(() => makeCharacter(
  21521. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21522. {
  21523. side: {
  21524. height: math.unit(6 + 2 / 12, "feet"),
  21525. weight: math.unit(190, "lb"),
  21526. name: "Side",
  21527. image: {
  21528. source: "./media/characters/biscuit/side.svg",
  21529. extra: 858 / 791,
  21530. bottom: 0.044
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Normal",
  21537. height: math.unit(6 + 2 / 12, "feet"),
  21538. default: true
  21539. },
  21540. ]
  21541. ))
  21542. characterMakers.push(() => makeCharacter(
  21543. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21544. {
  21545. front: {
  21546. height: math.unit(5 + 2 / 12, "feet"),
  21547. weight: math.unit(120, "lb"),
  21548. name: "Front",
  21549. image: {
  21550. source: "./media/characters/poffin/front.svg",
  21551. extra: 786 / 680,
  21552. bottom: 0.005
  21553. }
  21554. },
  21555. },
  21556. [
  21557. {
  21558. name: "Normal",
  21559. height: math.unit(5 + 2 / 12, "feet"),
  21560. default: true
  21561. },
  21562. ]
  21563. ))
  21564. characterMakers.push(() => makeCharacter(
  21565. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21566. {
  21567. front: {
  21568. height: math.unit(6 + 3 / 12, "feet"),
  21569. weight: math.unit(519, "lb"),
  21570. name: "Front",
  21571. image: {
  21572. source: "./media/characters/dhari/front.svg",
  21573. extra: 1048 / 946,
  21574. bottom: 0.015
  21575. }
  21576. },
  21577. back: {
  21578. height: math.unit(6 + 3 / 12, "feet"),
  21579. weight: math.unit(519, "lb"),
  21580. name: "Back",
  21581. image: {
  21582. source: "./media/characters/dhari/back.svg",
  21583. extra: 1048 / 931,
  21584. bottom: 0.005
  21585. }
  21586. },
  21587. frontDressed: {
  21588. height: math.unit(6 + 3 / 12, "feet"),
  21589. weight: math.unit(519, "lb"),
  21590. name: "Front (Dressed)",
  21591. image: {
  21592. source: "./media/characters/dhari/front-dressed.svg",
  21593. extra: 1713 / 1546,
  21594. bottom: 0.02
  21595. }
  21596. },
  21597. backDressed: {
  21598. height: math.unit(6 + 3 / 12, "feet"),
  21599. weight: math.unit(519, "lb"),
  21600. name: "Back (Dressed)",
  21601. image: {
  21602. source: "./media/characters/dhari/back-dressed.svg",
  21603. extra: 1699 / 1537,
  21604. bottom: 0.01
  21605. }
  21606. },
  21607. maw: {
  21608. height: math.unit(0.95, "feet"),
  21609. name: "Maw",
  21610. image: {
  21611. source: "./media/characters/dhari/maw.svg"
  21612. }
  21613. },
  21614. wereFront: {
  21615. height: math.unit(12 + 8 / 12, "feet"),
  21616. weight: math.unit(4000, "lb"),
  21617. name: "Front (Were)",
  21618. image: {
  21619. source: "./media/characters/dhari/were-front.svg",
  21620. extra: 1065 / 969,
  21621. bottom: 0.015
  21622. }
  21623. },
  21624. wereBack: {
  21625. height: math.unit(12 + 8 / 12, "feet"),
  21626. weight: math.unit(4000, "lb"),
  21627. name: "Back (Were)",
  21628. image: {
  21629. source: "./media/characters/dhari/were-back.svg",
  21630. extra: 1065 / 969,
  21631. bottom: 0.012
  21632. }
  21633. },
  21634. wereMaw: {
  21635. height: math.unit(0.625, "meters"),
  21636. name: "Maw (Were)",
  21637. image: {
  21638. source: "./media/characters/dhari/were-maw.svg"
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(6 + 3 / 12, "feet"),
  21646. default: true
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21652. {
  21653. anthro: {
  21654. height: math.unit(5 + 7 / 12, "feet"),
  21655. weight: math.unit(175, "lb"),
  21656. name: "Anthro",
  21657. image: {
  21658. source: "./media/characters/rena-dyne/anthro.svg",
  21659. extra: 1849 / 1785,
  21660. bottom: 0.005
  21661. }
  21662. },
  21663. taur: {
  21664. height: math.unit(15 + 6 / 12, "feet"),
  21665. weight: math.unit(8000, "lb"),
  21666. name: "Taur",
  21667. image: {
  21668. source: "./media/characters/rena-dyne/taur.svg",
  21669. extra: 2315 / 2234,
  21670. bottom: 0.033
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(5 + 7 / 12, "feet"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21684. {
  21685. front: {
  21686. height: math.unit(8, "feet"),
  21687. weight: math.unit(600, "lb"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/weremeep/front.svg",
  21691. extra: 967 / 862,
  21692. bottom: 0.01
  21693. }
  21694. },
  21695. },
  21696. [
  21697. {
  21698. name: "Normal",
  21699. height: math.unit(8, "feet"),
  21700. default: true
  21701. },
  21702. {
  21703. name: "Lorg",
  21704. height: math.unit(12, "feet")
  21705. },
  21706. {
  21707. name: "Oh Lawd She Comin'",
  21708. height: math.unit(20, "feet")
  21709. },
  21710. ]
  21711. ))
  21712. characterMakers.push(() => makeCharacter(
  21713. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21714. {
  21715. front: {
  21716. height: math.unit(4, "feet"),
  21717. weight: math.unit(90, "lb"),
  21718. name: "Front",
  21719. image: {
  21720. source: "./media/characters/reza/front.svg",
  21721. extra: 1183 / 1111,
  21722. bottom: 0.017
  21723. }
  21724. },
  21725. back: {
  21726. height: math.unit(4, "feet"),
  21727. weight: math.unit(90, "lb"),
  21728. name: "Back",
  21729. image: {
  21730. source: "./media/characters/reza/back.svg",
  21731. extra: 1183 / 1111,
  21732. bottom: 0.01
  21733. }
  21734. },
  21735. drake: {
  21736. height: math.unit(30, "feet"),
  21737. weight: math.unit(246960, "lb"),
  21738. name: "Drake",
  21739. image: {
  21740. source: "./media/characters/reza/drake.svg",
  21741. extra: 2350 / 2024,
  21742. bottom: 60.7 / 2403
  21743. }
  21744. },
  21745. },
  21746. [
  21747. {
  21748. name: "Normal",
  21749. height: math.unit(4, "feet"),
  21750. default: true
  21751. },
  21752. ]
  21753. ))
  21754. characterMakers.push(() => makeCharacter(
  21755. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21756. {
  21757. side: {
  21758. height: math.unit(15, "feet"),
  21759. weight: math.unit(14, "tons"),
  21760. name: "Side",
  21761. image: {
  21762. source: "./media/characters/athea/side.svg",
  21763. extra: 960 / 540,
  21764. bottom: 0.003
  21765. }
  21766. },
  21767. sitting: {
  21768. height: math.unit(6 * 2.85, "feet"),
  21769. weight: math.unit(14, "tons"),
  21770. name: "Sitting",
  21771. image: {
  21772. source: "./media/characters/athea/sitting.svg",
  21773. extra: 621 / 581,
  21774. bottom: 0.075
  21775. }
  21776. },
  21777. maw: {
  21778. height: math.unit(7.59498031496063, "feet"),
  21779. name: "Maw",
  21780. image: {
  21781. source: "./media/characters/athea/maw.svg"
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Lap Cat",
  21788. height: math.unit(2.5, "feet")
  21789. },
  21790. {
  21791. name: "Minimacro",
  21792. height: math.unit(15, "feet"),
  21793. default: true
  21794. },
  21795. {
  21796. name: "Macro",
  21797. height: math.unit(120, "feet")
  21798. },
  21799. {
  21800. name: "Macro+",
  21801. height: math.unit(640, "feet")
  21802. },
  21803. {
  21804. name: "Colossus",
  21805. height: math.unit(2.2, "miles")
  21806. },
  21807. ]
  21808. ))
  21809. characterMakers.push(() => makeCharacter(
  21810. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21811. {
  21812. front: {
  21813. height: math.unit(8 + 8 / 12, "feet"),
  21814. weight: math.unit(130, "kg"),
  21815. name: "Front",
  21816. image: {
  21817. source: "./media/characters/seroko/front.svg",
  21818. extra: 1385 / 1280,
  21819. bottom: 0.025
  21820. }
  21821. },
  21822. back: {
  21823. height: math.unit(8 + 8 / 12, "feet"),
  21824. weight: math.unit(130, "kg"),
  21825. name: "Back",
  21826. image: {
  21827. source: "./media/characters/seroko/back.svg",
  21828. extra: 1369 / 1238,
  21829. bottom: 0.018
  21830. }
  21831. },
  21832. frontDressed: {
  21833. height: math.unit(8 + 8 / 12, "feet"),
  21834. weight: math.unit(130, "kg"),
  21835. name: "Front (Dressed)",
  21836. image: {
  21837. source: "./media/characters/seroko/front-dressed.svg",
  21838. extra: 1366 / 1275,
  21839. bottom: 0.03
  21840. }
  21841. },
  21842. },
  21843. [
  21844. {
  21845. name: "Normal",
  21846. height: math.unit(8 + 8 / 12, "feet"),
  21847. default: true
  21848. },
  21849. ]
  21850. ))
  21851. characterMakers.push(() => makeCharacter(
  21852. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21853. {
  21854. front: {
  21855. height: math.unit(5.5, "feet"),
  21856. weight: math.unit(160, "lb"),
  21857. name: "Front",
  21858. image: {
  21859. source: "./media/characters/quatzi/front.svg",
  21860. extra: 2346 / 2242,
  21861. bottom: 0.015
  21862. }
  21863. },
  21864. },
  21865. [
  21866. {
  21867. name: "Normal",
  21868. height: math.unit(5.5, "feet"),
  21869. default: true
  21870. },
  21871. {
  21872. name: "Big",
  21873. height: math.unit(7.7, "feet")
  21874. },
  21875. ]
  21876. ))
  21877. characterMakers.push(() => makeCharacter(
  21878. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21879. {
  21880. front: {
  21881. height: math.unit(5 + 11 / 12, "feet"),
  21882. weight: math.unit(180, "lb"),
  21883. name: "Front",
  21884. image: {
  21885. source: "./media/characters/sen/front.svg",
  21886. extra: 1321 / 1254,
  21887. bottom: 0.015
  21888. }
  21889. },
  21890. side: {
  21891. height: math.unit(5 + 11 / 12, "feet"),
  21892. weight: math.unit(180, "lb"),
  21893. name: "Side",
  21894. image: {
  21895. source: "./media/characters/sen/side.svg",
  21896. extra: 1321 / 1254,
  21897. bottom: 0.007
  21898. }
  21899. },
  21900. back: {
  21901. height: math.unit(5 + 11 / 12, "feet"),
  21902. weight: math.unit(180, "lb"),
  21903. name: "Back",
  21904. image: {
  21905. source: "./media/characters/sen/back.svg",
  21906. extra: 1321 / 1254
  21907. }
  21908. },
  21909. },
  21910. [
  21911. {
  21912. name: "Normal",
  21913. height: math.unit(5 + 11 / 12, "feet"),
  21914. default: true
  21915. },
  21916. ]
  21917. ))
  21918. characterMakers.push(() => makeCharacter(
  21919. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21920. {
  21921. front: {
  21922. height: math.unit(166.6, "cm"),
  21923. weight: math.unit(66.6, "kg"),
  21924. name: "Front",
  21925. image: {
  21926. source: "./media/characters/fruity/front.svg",
  21927. extra: 1510 / 1386,
  21928. bottom: 0.04
  21929. }
  21930. },
  21931. back: {
  21932. height: math.unit(166.6, "cm"),
  21933. weight: math.unit(66.6, "lb"),
  21934. name: "Back",
  21935. image: {
  21936. source: "./media/characters/fruity/back.svg",
  21937. extra: 1563 / 1435,
  21938. bottom: 0.005
  21939. }
  21940. },
  21941. },
  21942. [
  21943. {
  21944. name: "Normal",
  21945. height: math.unit(166.6, "cm"),
  21946. default: true
  21947. },
  21948. {
  21949. name: "Demonic",
  21950. height: math.unit(166.6, "feet")
  21951. },
  21952. ]
  21953. ))
  21954. characterMakers.push(() => makeCharacter(
  21955. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21956. {
  21957. side: {
  21958. height: math.unit(10, "feet"),
  21959. weight: math.unit(500, "lb"),
  21960. name: "Side",
  21961. image: {
  21962. source: "./media/characters/zost/side.svg",
  21963. extra: 2870/2533,
  21964. bottom: 252/3122
  21965. }
  21966. },
  21967. mawFront: {
  21968. height: math.unit(1.08, "meters"),
  21969. name: "Maw (Front)",
  21970. image: {
  21971. source: "./media/characters/zost/maw-front.svg"
  21972. }
  21973. },
  21974. mawSide: {
  21975. height: math.unit(2.66, "feet"),
  21976. name: "Maw (Side)",
  21977. image: {
  21978. source: "./media/characters/zost/maw-side.svg"
  21979. }
  21980. },
  21981. wingspan: {
  21982. height: math.unit(7.4, "feet"),
  21983. name: "Wingspan",
  21984. image: {
  21985. source: "./media/characters/zost/wingspan.svg"
  21986. }
  21987. },
  21988. },
  21989. [
  21990. {
  21991. name: "Normal",
  21992. height: math.unit(10, "feet"),
  21993. default: true
  21994. },
  21995. ]
  21996. ))
  21997. characterMakers.push(() => makeCharacter(
  21998. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21999. {
  22000. front: {
  22001. height: math.unit(5 + 4 / 12, "feet"),
  22002. weight: math.unit(120, "lb"),
  22003. name: "Front",
  22004. image: {
  22005. source: "./media/characters/luci/front.svg",
  22006. extra: 1985 / 1884,
  22007. bottom: 0.04
  22008. }
  22009. },
  22010. back: {
  22011. height: math.unit(5 + 4 / 12, "feet"),
  22012. weight: math.unit(120, "lb"),
  22013. name: "Back",
  22014. image: {
  22015. source: "./media/characters/luci/back.svg",
  22016. extra: 1892 / 1791,
  22017. bottom: 0.002
  22018. }
  22019. },
  22020. },
  22021. [
  22022. {
  22023. name: "Normal",
  22024. height: math.unit(5 + 4 / 12, "feet"),
  22025. default: true
  22026. },
  22027. ]
  22028. ))
  22029. characterMakers.push(() => makeCharacter(
  22030. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22031. {
  22032. front: {
  22033. height: math.unit(1500, "feet"),
  22034. weight: math.unit(3.8e6, "tons"),
  22035. name: "Front",
  22036. image: {
  22037. source: "./media/characters/2th/front.svg",
  22038. extra: 3489 / 3350,
  22039. bottom: 0.1
  22040. }
  22041. },
  22042. foot: {
  22043. height: math.unit(461, "feet"),
  22044. name: "Foot",
  22045. image: {
  22046. source: "./media/characters/2th/foot.svg"
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "\"Micro\"",
  22053. height: math.unit(15 + 7 / 12, "feet")
  22054. },
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(1500, "feet"),
  22058. default: true
  22059. },
  22060. {
  22061. name: "Macro",
  22062. height: math.unit(5000, "feet")
  22063. },
  22064. {
  22065. name: "Megamacro",
  22066. height: math.unit(15, "miles")
  22067. },
  22068. {
  22069. name: "Gigamacro",
  22070. height: math.unit(4000, "miles")
  22071. },
  22072. {
  22073. name: "Galactic",
  22074. height: math.unit(50, "AU")
  22075. },
  22076. ]
  22077. ))
  22078. characterMakers.push(() => makeCharacter(
  22079. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22080. {
  22081. front: {
  22082. height: math.unit(5 + 6 / 12, "feet"),
  22083. weight: math.unit(220, "lb"),
  22084. name: "Front",
  22085. image: {
  22086. source: "./media/characters/amethyst/front.svg",
  22087. extra: 2078 / 2040,
  22088. bottom: 0.045
  22089. }
  22090. },
  22091. back: {
  22092. height: math.unit(5 + 6 / 12, "feet"),
  22093. weight: math.unit(220, "lb"),
  22094. name: "Back",
  22095. image: {
  22096. source: "./media/characters/amethyst/back.svg",
  22097. extra: 2021 / 1989,
  22098. bottom: 0.02
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Normal",
  22105. height: math.unit(5 + 6 / 12, "feet"),
  22106. default: true
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22112. {
  22113. front: {
  22114. height: math.unit(4 + 11 / 12, "feet"),
  22115. weight: math.unit(120, "lb"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/yumi-akiyama/front.svg",
  22119. extra: 1327 / 1235,
  22120. bottom: 0.02
  22121. }
  22122. },
  22123. back: {
  22124. height: math.unit(4 + 11 / 12, "feet"),
  22125. weight: math.unit(120, "lb"),
  22126. name: "Back",
  22127. image: {
  22128. source: "./media/characters/yumi-akiyama/back.svg",
  22129. extra: 1287 / 1245,
  22130. bottom: 0.002
  22131. }
  22132. },
  22133. },
  22134. [
  22135. {
  22136. name: "Galactic",
  22137. height: math.unit(50, "galaxies"),
  22138. default: true
  22139. },
  22140. {
  22141. name: "Universal",
  22142. height: math.unit(100, "universes")
  22143. },
  22144. ]
  22145. ))
  22146. characterMakers.push(() => makeCharacter(
  22147. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22148. {
  22149. front: {
  22150. height: math.unit(8, "feet"),
  22151. weight: math.unit(500, "lb"),
  22152. name: "Front",
  22153. image: {
  22154. source: "./media/characters/rifter-yrmori/front.svg",
  22155. extra: 1180 / 1125,
  22156. bottom: 0.02
  22157. }
  22158. },
  22159. back: {
  22160. height: math.unit(8, "feet"),
  22161. weight: math.unit(500, "lb"),
  22162. name: "Back",
  22163. image: {
  22164. source: "./media/characters/rifter-yrmori/back.svg",
  22165. extra: 1190 / 1145,
  22166. bottom: 0.001
  22167. }
  22168. },
  22169. wings: {
  22170. height: math.unit(7.75, "feet"),
  22171. weight: math.unit(500, "lb"),
  22172. name: "Wings",
  22173. image: {
  22174. source: "./media/characters/rifter-yrmori/wings.svg",
  22175. extra: 1357 / 1285
  22176. }
  22177. },
  22178. maw: {
  22179. height: math.unit(0.8, "feet"),
  22180. name: "Maw",
  22181. image: {
  22182. source: "./media/characters/rifter-yrmori/maw.svg"
  22183. }
  22184. },
  22185. mawfront: {
  22186. height: math.unit(1.45, "feet"),
  22187. name: "Maw (Front)",
  22188. image: {
  22189. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22190. }
  22191. },
  22192. },
  22193. [
  22194. {
  22195. name: "Normal",
  22196. height: math.unit(8, "feet"),
  22197. default: true
  22198. },
  22199. {
  22200. name: "Macro",
  22201. height: math.unit(42, "meters")
  22202. },
  22203. ]
  22204. ))
  22205. characterMakers.push(() => makeCharacter(
  22206. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22207. {
  22208. were: {
  22209. height: math.unit(25 + 6 / 12, "feet"),
  22210. weight: math.unit(10000, "lb"),
  22211. name: "Were",
  22212. image: {
  22213. source: "./media/characters/tahajin/were.svg",
  22214. extra: 801 / 770,
  22215. bottom: 0.042
  22216. }
  22217. },
  22218. aquatic: {
  22219. height: math.unit(6 + 4 / 12, "feet"),
  22220. weight: math.unit(160, "lb"),
  22221. name: "Aquatic",
  22222. image: {
  22223. source: "./media/characters/tahajin/aquatic.svg",
  22224. extra: 572 / 542,
  22225. bottom: 0.04
  22226. }
  22227. },
  22228. chow: {
  22229. height: math.unit(8 + 11 / 12, "feet"),
  22230. weight: math.unit(450, "lb"),
  22231. name: "Chow",
  22232. image: {
  22233. source: "./media/characters/tahajin/chow.svg",
  22234. extra: 660 / 640,
  22235. bottom: 0.015
  22236. }
  22237. },
  22238. demiNaga: {
  22239. height: math.unit(6 + 8 / 12, "feet"),
  22240. weight: math.unit(300, "lb"),
  22241. name: "Demi Naga",
  22242. image: {
  22243. source: "./media/characters/tahajin/demi-naga.svg",
  22244. extra: 643 / 615,
  22245. bottom: 0.1
  22246. }
  22247. },
  22248. data: {
  22249. height: math.unit(5, "inches"),
  22250. weight: math.unit(0.1, "lb"),
  22251. name: "Data",
  22252. image: {
  22253. source: "./media/characters/tahajin/data.svg"
  22254. }
  22255. },
  22256. fluu: {
  22257. height: math.unit(5 + 7 / 12, "feet"),
  22258. weight: math.unit(140, "lb"),
  22259. name: "Fluu",
  22260. image: {
  22261. source: "./media/characters/tahajin/fluu.svg",
  22262. extra: 628 / 592,
  22263. bottom: 0.02
  22264. }
  22265. },
  22266. starWarrior: {
  22267. height: math.unit(4 + 5 / 12, "feet"),
  22268. weight: math.unit(50, "lb"),
  22269. name: "Star Warrior",
  22270. image: {
  22271. source: "./media/characters/tahajin/star-warrior.svg"
  22272. }
  22273. },
  22274. },
  22275. [
  22276. {
  22277. name: "Normal",
  22278. height: math.unit(25 + 6 / 12, "feet"),
  22279. default: true
  22280. },
  22281. ]
  22282. ))
  22283. characterMakers.push(() => makeCharacter(
  22284. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22285. {
  22286. front: {
  22287. height: math.unit(8, "feet"),
  22288. weight: math.unit(350, "lb"),
  22289. name: "Front",
  22290. image: {
  22291. source: "./media/characters/gabira/front.svg",
  22292. extra: 608 / 580,
  22293. bottom: 0.03
  22294. }
  22295. },
  22296. back: {
  22297. height: math.unit(8, "feet"),
  22298. weight: math.unit(350, "lb"),
  22299. name: "Back",
  22300. image: {
  22301. source: "./media/characters/gabira/back.svg",
  22302. extra: 608 / 580,
  22303. bottom: 0.03
  22304. }
  22305. },
  22306. },
  22307. [
  22308. {
  22309. name: "Normal",
  22310. height: math.unit(8, "feet"),
  22311. default: true
  22312. },
  22313. ]
  22314. ))
  22315. characterMakers.push(() => makeCharacter(
  22316. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22317. {
  22318. front: {
  22319. height: math.unit(5 + 3 / 12, "feet"),
  22320. weight: math.unit(137, "lb"),
  22321. name: "Front",
  22322. image: {
  22323. source: "./media/characters/sasha-katraine/front.svg",
  22324. extra: 1745/1694,
  22325. bottom: 37/1782
  22326. }
  22327. },
  22328. back: {
  22329. height: math.unit(5 + 3 / 12, "feet"),
  22330. weight: math.unit(137, "lb"),
  22331. name: "Back",
  22332. image: {
  22333. source: "./media/characters/sasha-katraine/back.svg",
  22334. extra: 1776/1699,
  22335. bottom: 26/1802
  22336. }
  22337. },
  22338. },
  22339. [
  22340. {
  22341. name: "Micro",
  22342. height: math.unit(5, "inches")
  22343. },
  22344. {
  22345. name: "Normal",
  22346. height: math.unit(5 + 3 / 12, "feet"),
  22347. default: true
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22353. {
  22354. side: {
  22355. height: math.unit(4, "inches"),
  22356. weight: math.unit(200, "grams"),
  22357. name: "Side",
  22358. image: {
  22359. source: "./media/characters/der/side.svg",
  22360. extra: 719 / 400,
  22361. bottom: 30.6 / 749.9187
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Micro",
  22368. height: math.unit(4, "inches"),
  22369. default: true
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22375. {
  22376. side: {
  22377. height: math.unit(30, "meters"),
  22378. weight: math.unit(700, "tonnes"),
  22379. name: "Side",
  22380. image: {
  22381. source: "./media/characters/fixerdragon/side.svg",
  22382. extra: (1293.0514 - 116.03) / 1106.86,
  22383. bottom: 116.03 / 1293.0514
  22384. }
  22385. },
  22386. },
  22387. [
  22388. {
  22389. name: "Planck",
  22390. height: math.unit(1.6e-35, "meters")
  22391. },
  22392. {
  22393. name: "Micro",
  22394. height: math.unit(0.4, "meters")
  22395. },
  22396. {
  22397. name: "Normal",
  22398. height: math.unit(30, "meters"),
  22399. default: true
  22400. },
  22401. {
  22402. name: "Megamacro",
  22403. height: math.unit(1.2, "megameters")
  22404. },
  22405. {
  22406. name: "Teramacro",
  22407. height: math.unit(130, "terameters")
  22408. },
  22409. {
  22410. name: "Yottamacro",
  22411. height: math.unit(6200, "yottameters")
  22412. },
  22413. ]
  22414. ));
  22415. characterMakers.push(() => makeCharacter(
  22416. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22417. {
  22418. front: {
  22419. height: math.unit(8, "feet"),
  22420. weight: math.unit(250, "lb"),
  22421. name: "Front",
  22422. image: {
  22423. source: "./media/characters/kite/front.svg",
  22424. extra: 2796 / 2659,
  22425. bottom: 0.002
  22426. }
  22427. },
  22428. },
  22429. [
  22430. {
  22431. name: "Normal",
  22432. height: math.unit(8, "feet"),
  22433. default: true
  22434. },
  22435. {
  22436. name: "Macro",
  22437. height: math.unit(360, "feet")
  22438. },
  22439. {
  22440. name: "Megamacro",
  22441. height: math.unit(1500, "feet")
  22442. },
  22443. ]
  22444. ))
  22445. characterMakers.push(() => makeCharacter(
  22446. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22447. {
  22448. front: {
  22449. height: math.unit(5 + 11/12, "feet"),
  22450. weight: math.unit(170, "lb"),
  22451. name: "Front",
  22452. image: {
  22453. source: "./media/characters/poojawa-vynar/front.svg",
  22454. extra: 1735/1585,
  22455. bottom: 96/1831
  22456. }
  22457. },
  22458. back: {
  22459. height: math.unit(5 + 11/12, "feet"),
  22460. weight: math.unit(170, "lb"),
  22461. name: "Back",
  22462. image: {
  22463. source: "./media/characters/poojawa-vynar/back.svg",
  22464. extra: 1749/1607,
  22465. bottom: 28/1777
  22466. }
  22467. },
  22468. male: {
  22469. height: math.unit(5 + 11/12, "feet"),
  22470. weight: math.unit(170, "lb"),
  22471. name: "Male",
  22472. image: {
  22473. source: "./media/characters/poojawa-vynar/male.svg",
  22474. extra: 1855/1713,
  22475. bottom: 63/1918
  22476. }
  22477. },
  22478. taur: {
  22479. height: math.unit(5 + 11/12, "feet"),
  22480. weight: math.unit(170, "lb"),
  22481. name: "Taur",
  22482. image: {
  22483. source: "./media/characters/poojawa-vynar/taur.svg",
  22484. extra: 1151/1059,
  22485. bottom: 356/1507
  22486. }
  22487. },
  22488. frontDressed: {
  22489. height: math.unit(5 + 11/12, "feet"),
  22490. weight: math.unit(170, "lb"),
  22491. name: "Front (Dressed)",
  22492. image: {
  22493. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22494. extra: 1735/1585,
  22495. bottom: 96/1831
  22496. }
  22497. },
  22498. backDressed: {
  22499. height: math.unit(5 + 11/12, "feet"),
  22500. weight: math.unit(170, "lb"),
  22501. name: "Back (Dressed)",
  22502. image: {
  22503. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22504. extra: 1749/1607,
  22505. bottom: 28/1777
  22506. }
  22507. },
  22508. maleDressed: {
  22509. height: math.unit(5 + 11/12, "feet"),
  22510. weight: math.unit(170, "lb"),
  22511. name: "Male (Dressed)",
  22512. image: {
  22513. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22514. extra: 1855/1713,
  22515. bottom: 63/1918
  22516. }
  22517. },
  22518. taurDressed: {
  22519. height: math.unit(5 + 11/12, "feet"),
  22520. weight: math.unit(170, "lb"),
  22521. name: "Taur (Dressed)",
  22522. image: {
  22523. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22524. extra: 1151/1059,
  22525. bottom: 356/1507
  22526. }
  22527. },
  22528. maw: {
  22529. height: math.unit(1.46, "feet"),
  22530. name: "Maw",
  22531. image: {
  22532. source: "./media/characters/poojawa-vynar/maw.svg"
  22533. }
  22534. },
  22535. head: {
  22536. height: math.unit(2.34, "feet"),
  22537. name: "Head",
  22538. image: {
  22539. source: "./media/characters/poojawa-vynar/head.svg"
  22540. }
  22541. },
  22542. paw: {
  22543. height: math.unit(1.61, "feet"),
  22544. name: "Paw",
  22545. image: {
  22546. source: "./media/characters/poojawa-vynar/paw.svg"
  22547. }
  22548. },
  22549. pawToering: {
  22550. height: math.unit(1.72, "feet"),
  22551. name: "Paw (Toering)",
  22552. image: {
  22553. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22554. }
  22555. },
  22556. toering: {
  22557. height: math.unit(2.9, "inches"),
  22558. name: "Toering",
  22559. image: {
  22560. source: "./media/characters/poojawa-vynar/toering.svg"
  22561. }
  22562. },
  22563. shaft: {
  22564. height: math.unit(0.625, "feet"),
  22565. name: "Shaft",
  22566. image: {
  22567. source: "./media/characters/poojawa-vynar/shaft.svg"
  22568. }
  22569. },
  22570. spade: {
  22571. height: math.unit(0.42, "feet"),
  22572. name: "Spade",
  22573. image: {
  22574. source: "./media/characters/poojawa-vynar/spade.svg"
  22575. }
  22576. },
  22577. },
  22578. [
  22579. {
  22580. name: "Shortstack",
  22581. height: math.unit(4, "feet")
  22582. },
  22583. {
  22584. name: "Normal",
  22585. height: math.unit(5 + 11 / 12, "feet"),
  22586. default: true
  22587. },
  22588. {
  22589. name: "Tauric",
  22590. height: math.unit(4, "meters")
  22591. },
  22592. ]
  22593. ))
  22594. characterMakers.push(() => makeCharacter(
  22595. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22596. {
  22597. front: {
  22598. height: math.unit(293, "meters"),
  22599. weight: math.unit(70400, "tons"),
  22600. name: "Front",
  22601. image: {
  22602. source: "./media/characters/violette/front.svg",
  22603. extra: 1227 / 1180,
  22604. bottom: 0.005
  22605. }
  22606. },
  22607. back: {
  22608. height: math.unit(293, "meters"),
  22609. weight: math.unit(70400, "tons"),
  22610. name: "Back",
  22611. image: {
  22612. source: "./media/characters/violette/back.svg",
  22613. extra: 1227 / 1180,
  22614. bottom: 0.005
  22615. }
  22616. },
  22617. },
  22618. [
  22619. {
  22620. name: "Macro",
  22621. height: math.unit(293, "meters"),
  22622. default: true
  22623. },
  22624. ]
  22625. ))
  22626. characterMakers.push(() => makeCharacter(
  22627. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22628. {
  22629. front: {
  22630. height: math.unit(1050, "feet"),
  22631. weight: math.unit(200000, "tons"),
  22632. name: "Front",
  22633. image: {
  22634. source: "./media/characters/alessandra/front.svg",
  22635. extra: 960 / 912,
  22636. bottom: 0.06
  22637. }
  22638. },
  22639. },
  22640. [
  22641. {
  22642. name: "Macro",
  22643. height: math.unit(1050, "feet")
  22644. },
  22645. {
  22646. name: "Macro+",
  22647. height: math.unit(900, "meters"),
  22648. default: true
  22649. },
  22650. ]
  22651. ))
  22652. characterMakers.push(() => makeCharacter(
  22653. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22654. {
  22655. front: {
  22656. height: math.unit(5, "feet"),
  22657. weight: math.unit(187, "lb"),
  22658. name: "Front",
  22659. image: {
  22660. source: "./media/characters/person/front.svg",
  22661. extra: 3087 / 2945,
  22662. bottom: 91 / 3181
  22663. }
  22664. },
  22665. },
  22666. [
  22667. {
  22668. name: "Micro",
  22669. height: math.unit(3, "inches")
  22670. },
  22671. {
  22672. name: "Normal",
  22673. height: math.unit(5, "feet"),
  22674. default: true
  22675. },
  22676. {
  22677. name: "Macro",
  22678. height: math.unit(90, "feet")
  22679. },
  22680. {
  22681. name: "Max Size",
  22682. height: math.unit(280, "feet")
  22683. },
  22684. ]
  22685. ))
  22686. characterMakers.push(() => makeCharacter(
  22687. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22688. {
  22689. front: {
  22690. height: math.unit(4.5, "meters"),
  22691. weight: math.unit(3200, "lb"),
  22692. name: "Front",
  22693. image: {
  22694. source: "./media/characters/ty/front.svg",
  22695. extra: 1038 / 960,
  22696. bottom: 31.156 / 1068
  22697. }
  22698. },
  22699. back: {
  22700. height: math.unit(4.5, "meters"),
  22701. weight: math.unit(3200, "lb"),
  22702. name: "Back",
  22703. image: {
  22704. source: "./media/characters/ty/back.svg",
  22705. extra: 1044 / 966,
  22706. bottom: 7.48 / 1049
  22707. }
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Normal",
  22713. height: math.unit(4.5, "meters"),
  22714. default: true
  22715. },
  22716. ]
  22717. ))
  22718. characterMakers.push(() => makeCharacter(
  22719. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22720. {
  22721. front: {
  22722. height: math.unit(5 + 4 / 12, "feet"),
  22723. weight: math.unit(115, "lb"),
  22724. name: "Front",
  22725. image: {
  22726. source: "./media/characters/rocky/front.svg",
  22727. extra: 1012 / 975,
  22728. bottom: 54 / 1066
  22729. }
  22730. },
  22731. },
  22732. [
  22733. {
  22734. name: "Normal",
  22735. height: math.unit(5 + 4 / 12, "feet"),
  22736. default: true
  22737. },
  22738. ]
  22739. ))
  22740. characterMakers.push(() => makeCharacter(
  22741. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22742. {
  22743. upright: {
  22744. height: math.unit(6, "meters"),
  22745. weight: math.unit(4000, "kg"),
  22746. name: "Upright",
  22747. image: {
  22748. source: "./media/characters/ruin/upright.svg",
  22749. extra: 668 / 661,
  22750. bottom: 42 / 799.8396
  22751. }
  22752. },
  22753. },
  22754. [
  22755. {
  22756. name: "Normal",
  22757. height: math.unit(6, "meters"),
  22758. default: true
  22759. },
  22760. ]
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22764. {
  22765. front: {
  22766. height: math.unit(5, "feet"),
  22767. weight: math.unit(106, "lb"),
  22768. name: "Front",
  22769. image: {
  22770. source: "./media/characters/robin/front.svg",
  22771. extra: 862 / 799,
  22772. bottom: 42.4 / 914.8856
  22773. }
  22774. },
  22775. },
  22776. [
  22777. {
  22778. name: "Normal",
  22779. height: math.unit(5, "feet"),
  22780. default: true
  22781. },
  22782. ]
  22783. ))
  22784. characterMakers.push(() => makeCharacter(
  22785. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22786. {
  22787. side: {
  22788. height: math.unit(3, "feet"),
  22789. weight: math.unit(225, "lb"),
  22790. name: "Side",
  22791. image: {
  22792. source: "./media/characters/saian/side.svg",
  22793. extra: 566 / 356,
  22794. bottom: 79.7 / 643
  22795. }
  22796. },
  22797. maw: {
  22798. height: math.unit(2.85, "feet"),
  22799. name: "Maw",
  22800. image: {
  22801. source: "./media/characters/saian/maw.svg"
  22802. }
  22803. },
  22804. },
  22805. [
  22806. {
  22807. name: "Normal",
  22808. height: math.unit(3, "feet"),
  22809. default: true
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22815. {
  22816. side: {
  22817. height: math.unit(8, "feet"),
  22818. weight: math.unit(300, "lb"),
  22819. name: "Side",
  22820. image: {
  22821. source: "./media/characters/equus-silvermane/side.svg",
  22822. extra: 2176 / 2050,
  22823. bottom: 65.7 / 2245
  22824. }
  22825. },
  22826. front: {
  22827. height: math.unit(8, "feet"),
  22828. weight: math.unit(300, "lb"),
  22829. name: "Front",
  22830. image: {
  22831. source: "./media/characters/equus-silvermane/front.svg",
  22832. extra: 4633 / 4400,
  22833. bottom: 71.3 / 4706.915
  22834. }
  22835. },
  22836. sideStepping: {
  22837. height: math.unit(8, "feet"),
  22838. weight: math.unit(300, "lb"),
  22839. name: "Side (Stepping)",
  22840. image: {
  22841. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22842. extra: 1968 / 1860,
  22843. bottom: 16.4 / 1989
  22844. }
  22845. },
  22846. },
  22847. [
  22848. {
  22849. name: "Normal",
  22850. height: math.unit(8, "feet")
  22851. },
  22852. {
  22853. name: "Minimacro",
  22854. height: math.unit(75, "feet"),
  22855. default: true
  22856. },
  22857. {
  22858. name: "Macro",
  22859. height: math.unit(150, "feet")
  22860. },
  22861. {
  22862. name: "Macro+",
  22863. height: math.unit(1000, "feet")
  22864. },
  22865. {
  22866. name: "Megamacro",
  22867. height: math.unit(1, "mile")
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22873. {
  22874. side: {
  22875. height: math.unit(20, "feet"),
  22876. weight: math.unit(30000, "kg"),
  22877. name: "Side",
  22878. image: {
  22879. source: "./media/characters/windar/side.svg",
  22880. extra: 1491 / 1248,
  22881. bottom: 82.56 / 1568
  22882. }
  22883. },
  22884. },
  22885. [
  22886. {
  22887. name: "Normal",
  22888. height: math.unit(20, "feet"),
  22889. default: true
  22890. },
  22891. ]
  22892. ))
  22893. characterMakers.push(() => makeCharacter(
  22894. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22895. {
  22896. side: {
  22897. height: math.unit(15.66, "feet"),
  22898. weight: math.unit(150, "lb"),
  22899. name: "Side",
  22900. image: {
  22901. source: "./media/characters/melody/side.svg",
  22902. extra: 1097 / 944,
  22903. bottom: 11.8 / 1109
  22904. }
  22905. },
  22906. sideOutfit: {
  22907. height: math.unit(15.66, "feet"),
  22908. weight: math.unit(150, "lb"),
  22909. name: "Side (Outfit)",
  22910. image: {
  22911. source: "./media/characters/melody/side-outfit.svg",
  22912. extra: 1097 / 944,
  22913. bottom: 11.8 / 1109
  22914. }
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Normal",
  22920. height: math.unit(15.66, "feet"),
  22921. default: true
  22922. },
  22923. ]
  22924. ))
  22925. characterMakers.push(() => makeCharacter(
  22926. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22927. {
  22928. front: {
  22929. height: math.unit(8, "feet"),
  22930. weight: math.unit(325, "lb"),
  22931. name: "Front",
  22932. image: {
  22933. source: "./media/characters/windera/front.svg",
  22934. extra: 3180 / 2845,
  22935. bottom: 178 / 3365
  22936. }
  22937. },
  22938. },
  22939. [
  22940. {
  22941. name: "Normal",
  22942. height: math.unit(8, "feet"),
  22943. default: true
  22944. },
  22945. ]
  22946. ))
  22947. characterMakers.push(() => makeCharacter(
  22948. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22949. {
  22950. front: {
  22951. height: math.unit(28.75, "feet"),
  22952. weight: math.unit(2000, "kg"),
  22953. name: "Front",
  22954. image: {
  22955. source: "./media/characters/sonear/front.svg",
  22956. extra: 1041.1 / 964.9,
  22957. bottom: 53.7 / 1096.6
  22958. }
  22959. },
  22960. },
  22961. [
  22962. {
  22963. name: "Normal",
  22964. height: math.unit(28.75, "feet"),
  22965. default: true
  22966. },
  22967. ]
  22968. ))
  22969. characterMakers.push(() => makeCharacter(
  22970. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22971. {
  22972. side: {
  22973. height: math.unit(25.5, "feet"),
  22974. weight: math.unit(23000, "kg"),
  22975. name: "Side",
  22976. image: {
  22977. source: "./media/characters/kanara/side.svg"
  22978. }
  22979. },
  22980. },
  22981. [
  22982. {
  22983. name: "Normal",
  22984. height: math.unit(25.5, "feet"),
  22985. default: true
  22986. },
  22987. ]
  22988. ))
  22989. characterMakers.push(() => makeCharacter(
  22990. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22991. {
  22992. side: {
  22993. height: math.unit(10, "feet"),
  22994. weight: math.unit(1000, "kg"),
  22995. name: "Side",
  22996. image: {
  22997. source: "./media/characters/ereus/side.svg",
  22998. extra: 1157 / 959,
  22999. bottom: 153 / 1312.5
  23000. }
  23001. },
  23002. },
  23003. [
  23004. {
  23005. name: "Normal",
  23006. height: math.unit(10, "feet"),
  23007. default: true
  23008. },
  23009. ]
  23010. ))
  23011. characterMakers.push(() => makeCharacter(
  23012. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23013. {
  23014. side: {
  23015. height: math.unit(4.5, "feet"),
  23016. weight: math.unit(500, "lb"),
  23017. name: "Side",
  23018. image: {
  23019. source: "./media/characters/e-ter/side.svg",
  23020. extra: 1550 / 1248,
  23021. bottom: 146 / 1694
  23022. }
  23023. },
  23024. },
  23025. [
  23026. {
  23027. name: "Normal",
  23028. height: math.unit(4.5, "feet"),
  23029. default: true
  23030. },
  23031. ]
  23032. ))
  23033. characterMakers.push(() => makeCharacter(
  23034. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23035. {
  23036. side: {
  23037. height: math.unit(9.7, "feet"),
  23038. weight: math.unit(4000, "kg"),
  23039. name: "Side",
  23040. image: {
  23041. source: "./media/characters/yamie/side.svg"
  23042. }
  23043. },
  23044. },
  23045. [
  23046. {
  23047. name: "Normal",
  23048. height: math.unit(9.7, "feet"),
  23049. default: true
  23050. },
  23051. ]
  23052. ))
  23053. characterMakers.push(() => makeCharacter(
  23054. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23055. {
  23056. front: {
  23057. height: math.unit(50, "feet"),
  23058. weight: math.unit(50000, "kg"),
  23059. name: "Front",
  23060. image: {
  23061. source: "./media/characters/anders/front.svg",
  23062. extra: 570 / 539,
  23063. bottom: 14.7 / 586.7
  23064. }
  23065. },
  23066. },
  23067. [
  23068. {
  23069. name: "Large",
  23070. height: math.unit(50, "feet")
  23071. },
  23072. {
  23073. name: "Macro",
  23074. height: math.unit(2000, "feet"),
  23075. default: true
  23076. },
  23077. {
  23078. name: "Megamacro",
  23079. height: math.unit(12, "miles")
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23085. {
  23086. front: {
  23087. height: math.unit(7 + 2 / 12, "feet"),
  23088. weight: math.unit(300, "lb"),
  23089. name: "Front",
  23090. image: {
  23091. source: "./media/characters/reban/front.svg",
  23092. extra: 1287/1212,
  23093. bottom: 148/1435
  23094. }
  23095. },
  23096. head: {
  23097. height: math.unit(1.95, "feet"),
  23098. name: "Head",
  23099. image: {
  23100. source: "./media/characters/reban/head.svg"
  23101. }
  23102. },
  23103. maw: {
  23104. height: math.unit(0.95, "feet"),
  23105. name: "Maw",
  23106. image: {
  23107. source: "./media/characters/reban/maw.svg"
  23108. }
  23109. },
  23110. foot: {
  23111. height: math.unit(1.65, "feet"),
  23112. name: "Foot",
  23113. image: {
  23114. source: "./media/characters/reban/foot.svg"
  23115. }
  23116. },
  23117. dick: {
  23118. height: math.unit(7 / 5, "feet"),
  23119. name: "Dick",
  23120. image: {
  23121. source: "./media/characters/reban/dick.svg"
  23122. }
  23123. },
  23124. },
  23125. [
  23126. {
  23127. name: "Natural Height",
  23128. height: math.unit(7 + 2 / 12, "feet")
  23129. },
  23130. {
  23131. name: "Macro",
  23132. height: math.unit(500, "feet"),
  23133. default: true
  23134. },
  23135. {
  23136. name: "Canon Height",
  23137. height: math.unit(50, "AU")
  23138. },
  23139. ]
  23140. ))
  23141. characterMakers.push(() => makeCharacter(
  23142. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23143. {
  23144. front: {
  23145. height: math.unit(6, "feet"),
  23146. weight: math.unit(150, "lb"),
  23147. name: "Front",
  23148. image: {
  23149. source: "./media/characters/terrance-keayes/front.svg",
  23150. extra: 1.005,
  23151. bottom: 151 / 1615
  23152. }
  23153. },
  23154. side: {
  23155. height: math.unit(6, "feet"),
  23156. weight: math.unit(150, "lb"),
  23157. name: "Side",
  23158. image: {
  23159. source: "./media/characters/terrance-keayes/side.svg",
  23160. extra: 1.005,
  23161. bottom: 129.4 / 1544
  23162. }
  23163. },
  23164. back: {
  23165. height: math.unit(6, "feet"),
  23166. weight: math.unit(150, "lb"),
  23167. name: "Back",
  23168. image: {
  23169. source: "./media/characters/terrance-keayes/back.svg",
  23170. extra: 1.005,
  23171. bottom: 58.4 / 1557.3
  23172. }
  23173. },
  23174. dick: {
  23175. height: math.unit(6 * 0.208, "feet"),
  23176. name: "Dick",
  23177. image: {
  23178. source: "./media/characters/terrance-keayes/dick.svg"
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Canon Height",
  23185. height: math.unit(35, "miles"),
  23186. default: true
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23192. {
  23193. front: {
  23194. height: math.unit(6, "feet"),
  23195. weight: math.unit(150, "lb"),
  23196. name: "Front",
  23197. image: {
  23198. source: "./media/characters/ofelia/front.svg",
  23199. extra: 1130/1117,
  23200. bottom: 91/1221
  23201. }
  23202. },
  23203. back: {
  23204. height: math.unit(6, "feet"),
  23205. weight: math.unit(150, "lb"),
  23206. name: "Back",
  23207. image: {
  23208. source: "./media/characters/ofelia/back.svg",
  23209. extra: 1172/1159,
  23210. bottom: 28/1200
  23211. }
  23212. },
  23213. maw: {
  23214. height: math.unit(1, "feet"),
  23215. name: "Maw",
  23216. image: {
  23217. source: "./media/characters/ofelia/maw.svg"
  23218. }
  23219. },
  23220. foot: {
  23221. height: math.unit(1.949, "feet"),
  23222. name: "Foot",
  23223. image: {
  23224. source: "./media/characters/ofelia/foot.svg"
  23225. }
  23226. },
  23227. },
  23228. [
  23229. {
  23230. name: "Canon Height",
  23231. height: math.unit(2000, "miles"),
  23232. default: true
  23233. },
  23234. ]
  23235. ))
  23236. characterMakers.push(() => makeCharacter(
  23237. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23238. {
  23239. front: {
  23240. height: math.unit(6, "feet"),
  23241. weight: math.unit(150, "lb"),
  23242. name: "Front",
  23243. image: {
  23244. source: "./media/characters/samuel/front.svg",
  23245. extra: 265 / 258,
  23246. bottom: 2 / 266.1566
  23247. }
  23248. },
  23249. },
  23250. [
  23251. {
  23252. name: "Macro",
  23253. height: math.unit(100, "feet"),
  23254. default: true
  23255. },
  23256. {
  23257. name: "Full Size",
  23258. height: math.unit(1000, "miles")
  23259. },
  23260. ]
  23261. ))
  23262. characterMakers.push(() => makeCharacter(
  23263. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23264. {
  23265. front: {
  23266. height: math.unit(6, "feet"),
  23267. weight: math.unit(300, "lb"),
  23268. name: "Front",
  23269. image: {
  23270. source: "./media/characters/beishir-kiel/front.svg",
  23271. extra: 569 / 547,
  23272. bottom: 41.9 / 609
  23273. }
  23274. },
  23275. maw: {
  23276. height: math.unit(6 * 0.202, "feet"),
  23277. name: "Maw",
  23278. image: {
  23279. source: "./media/characters/beishir-kiel/maw.svg"
  23280. }
  23281. },
  23282. },
  23283. [
  23284. {
  23285. name: "Macro",
  23286. height: math.unit(300, "feet"),
  23287. default: true
  23288. },
  23289. ]
  23290. ))
  23291. characterMakers.push(() => makeCharacter(
  23292. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23293. {
  23294. front: {
  23295. height: math.unit(5 + 7/12, "feet"),
  23296. weight: math.unit(120, "lb"),
  23297. name: "Front",
  23298. image: {
  23299. source: "./media/characters/logan-grey/front.svg",
  23300. extra: 1836/1738,
  23301. bottom: 108/1944
  23302. }
  23303. },
  23304. back: {
  23305. height: math.unit(5 + 7/12, "feet"),
  23306. weight: math.unit(120, "lb"),
  23307. name: "Back",
  23308. image: {
  23309. source: "./media/characters/logan-grey/back.svg",
  23310. extra: 1880/1794,
  23311. bottom: 24/1904
  23312. }
  23313. },
  23314. frontSfw: {
  23315. height: math.unit(5 + 7/12, "feet"),
  23316. weight: math.unit(120, "lb"),
  23317. name: "Front (SFW)",
  23318. image: {
  23319. source: "./media/characters/logan-grey/front-sfw.svg",
  23320. extra: 1836/1738,
  23321. bottom: 108/1944
  23322. }
  23323. },
  23324. backSfw: {
  23325. height: math.unit(5 + 7/12, "feet"),
  23326. weight: math.unit(120, "lb"),
  23327. name: "Back (SFW)",
  23328. image: {
  23329. source: "./media/characters/logan-grey/back-sfw.svg",
  23330. extra: 1880/1794,
  23331. bottom: 24/1904
  23332. }
  23333. },
  23334. hands: {
  23335. height: math.unit(0.84, "feet"),
  23336. name: "Hands",
  23337. image: {
  23338. source: "./media/characters/logan-grey/hands.svg"
  23339. }
  23340. },
  23341. paws: {
  23342. height: math.unit(0.72, "feet"),
  23343. name: "Paws",
  23344. image: {
  23345. source: "./media/characters/logan-grey/paws.svg"
  23346. }
  23347. },
  23348. cock: {
  23349. height: math.unit(1.45, "feet"),
  23350. name: "Cock",
  23351. image: {
  23352. source: "./media/characters/logan-grey/cock.svg"
  23353. }
  23354. },
  23355. cockAlt: {
  23356. height: math.unit(1.437, "feet"),
  23357. name: "Cock (alt)",
  23358. image: {
  23359. source: "./media/characters/logan-grey/cock-alt.svg"
  23360. }
  23361. },
  23362. },
  23363. [
  23364. {
  23365. name: "Normal",
  23366. height: math.unit(5 + 8 / 12, "feet")
  23367. },
  23368. {
  23369. name: "The 500 Foot Femboy",
  23370. height: math.unit(500, "feet"),
  23371. default: true
  23372. },
  23373. {
  23374. name: "Megmacro",
  23375. height: math.unit(20, "miles")
  23376. },
  23377. ]
  23378. ))
  23379. characterMakers.push(() => makeCharacter(
  23380. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23381. {
  23382. front: {
  23383. height: math.unit(8 + 2 / 12, "feet"),
  23384. weight: math.unit(275, "lb"),
  23385. name: "Front",
  23386. image: {
  23387. source: "./media/characters/draganta/front.svg",
  23388. extra: 1177 / 1135,
  23389. bottom: 33.46 / 1212.1
  23390. }
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Normal",
  23396. height: math.unit(8 + 6 / 12, "feet"),
  23397. default: true
  23398. },
  23399. {
  23400. name: "Macro",
  23401. height: math.unit(150, "feet")
  23402. },
  23403. {
  23404. name: "Megamacro",
  23405. height: math.unit(1000, "miles")
  23406. },
  23407. ]
  23408. ))
  23409. characterMakers.push(() => makeCharacter(
  23410. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23411. {
  23412. front: {
  23413. height: math.unit(1.72, "m"),
  23414. weight: math.unit(80, "lb"),
  23415. name: "Front",
  23416. image: {
  23417. source: "./media/characters/voski/front.svg",
  23418. extra: 2076.22 / 2022.4,
  23419. bottom: 102.7 / 2177.3866
  23420. }
  23421. },
  23422. frontFlaccid: {
  23423. height: math.unit(1.72, "m"),
  23424. weight: math.unit(80, "lb"),
  23425. name: "Front (Flaccid)",
  23426. image: {
  23427. source: "./media/characters/voski/front-flaccid.svg",
  23428. extra: 2076.22 / 2022.4,
  23429. bottom: 102.7 / 2177.3866
  23430. }
  23431. },
  23432. frontErect: {
  23433. height: math.unit(1.72, "m"),
  23434. weight: math.unit(80, "lb"),
  23435. name: "Front (Erect)",
  23436. image: {
  23437. source: "./media/characters/voski/front-erect.svg",
  23438. extra: 2076.22 / 2022.4,
  23439. bottom: 102.7 / 2177.3866
  23440. }
  23441. },
  23442. back: {
  23443. height: math.unit(1.72, "m"),
  23444. weight: math.unit(80, "lb"),
  23445. name: "Back",
  23446. image: {
  23447. source: "./media/characters/voski/back.svg",
  23448. extra: 2104 / 2051,
  23449. bottom: 10.45 / 2113.63
  23450. }
  23451. },
  23452. },
  23453. [
  23454. {
  23455. name: "Normal",
  23456. height: math.unit(1.72, "m")
  23457. },
  23458. {
  23459. name: "Macro",
  23460. height: math.unit(55, "m"),
  23461. default: true
  23462. },
  23463. {
  23464. name: "Macro+",
  23465. height: math.unit(300, "m")
  23466. },
  23467. {
  23468. name: "Macro++",
  23469. height: math.unit(700, "m")
  23470. },
  23471. {
  23472. name: "Macro+++",
  23473. height: math.unit(4500, "m")
  23474. },
  23475. {
  23476. name: "Macro++++",
  23477. height: math.unit(45, "km")
  23478. },
  23479. {
  23480. name: "Macro+++++",
  23481. height: math.unit(1220, "km")
  23482. },
  23483. ]
  23484. ))
  23485. characterMakers.push(() => makeCharacter(
  23486. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23487. {
  23488. front: {
  23489. height: math.unit(2.3, "m"),
  23490. weight: math.unit(304, "kg"),
  23491. name: "Front",
  23492. image: {
  23493. source: "./media/characters/icowom-lee/front.svg",
  23494. extra: 985 / 955,
  23495. bottom: 25.4 / 1012
  23496. }
  23497. },
  23498. fronttentacles: {
  23499. height: math.unit(2.3, "m"),
  23500. weight: math.unit(304, "kg"),
  23501. name: "Front-tentacles",
  23502. image: {
  23503. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23504. extra: 985 / 955,
  23505. bottom: 25.4 / 1012
  23506. }
  23507. },
  23508. back: {
  23509. height: math.unit(2.3, "m"),
  23510. weight: math.unit(304, "kg"),
  23511. name: "Back",
  23512. image: {
  23513. source: "./media/characters/icowom-lee/back.svg",
  23514. extra: 975 / 954,
  23515. bottom: 9.5 / 985
  23516. }
  23517. },
  23518. backtentacles: {
  23519. height: math.unit(2.3, "m"),
  23520. weight: math.unit(304, "kg"),
  23521. name: "Back-tentacles",
  23522. image: {
  23523. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23524. extra: 975 / 954,
  23525. bottom: 9.5 / 985
  23526. }
  23527. },
  23528. frontDressed: {
  23529. height: math.unit(2.3, "m"),
  23530. weight: math.unit(304, "kg"),
  23531. name: "Front (Dressed)",
  23532. image: {
  23533. source: "./media/characters/icowom-lee/front-dressed.svg",
  23534. extra: 3076 / 2933,
  23535. bottom: 51.4 / 3125.1889
  23536. }
  23537. },
  23538. rump: {
  23539. height: math.unit(0.776, "meters"),
  23540. name: "Rump",
  23541. image: {
  23542. source: "./media/characters/icowom-lee/rump.svg"
  23543. }
  23544. },
  23545. genitals: {
  23546. height: math.unit(0.78, "meters"),
  23547. name: "Genitals",
  23548. image: {
  23549. source: "./media/characters/icowom-lee/genitals.svg"
  23550. }
  23551. },
  23552. },
  23553. [
  23554. {
  23555. name: "Normal",
  23556. height: math.unit(2.3, "meters"),
  23557. default: true
  23558. },
  23559. {
  23560. name: "Macro",
  23561. height: math.unit(94, "meters"),
  23562. default: true
  23563. },
  23564. ]
  23565. ))
  23566. characterMakers.push(() => makeCharacter(
  23567. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23568. {
  23569. front: {
  23570. height: math.unit(22, "meters"),
  23571. weight: math.unit(21000, "kg"),
  23572. name: "Front",
  23573. image: {
  23574. source: "./media/characters/shock-diamond/front.svg",
  23575. extra: 2204 / 2053,
  23576. bottom: 65 / 2239.47
  23577. }
  23578. },
  23579. frontNude: {
  23580. height: math.unit(22, "meters"),
  23581. weight: math.unit(21000, "kg"),
  23582. name: "Front (Nude)",
  23583. image: {
  23584. source: "./media/characters/shock-diamond/front-nude.svg",
  23585. extra: 2514 / 2285,
  23586. bottom: 13 / 2527.56
  23587. }
  23588. },
  23589. },
  23590. [
  23591. {
  23592. name: "Normal",
  23593. height: math.unit(3, "meters")
  23594. },
  23595. {
  23596. name: "Macro",
  23597. height: math.unit(22, "meters"),
  23598. default: true
  23599. },
  23600. ]
  23601. ))
  23602. characterMakers.push(() => makeCharacter(
  23603. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23604. {
  23605. front: {
  23606. height: math.unit(5 + 4 / 12, "feet"),
  23607. weight: math.unit(120, "lb"),
  23608. name: "Front",
  23609. image: {
  23610. source: "./media/characters/rory/front.svg",
  23611. extra: 1318/1241,
  23612. bottom: 42/1360
  23613. }
  23614. },
  23615. back: {
  23616. height: math.unit(5 + 4 / 12, "feet"),
  23617. weight: math.unit(120, "lb"),
  23618. name: "Back",
  23619. image: {
  23620. source: "./media/characters/rory/back.svg",
  23621. extra: 1318/1241,
  23622. bottom: 42/1360
  23623. }
  23624. },
  23625. butt: {
  23626. height: math.unit(1.74, "feet"),
  23627. name: "Butt",
  23628. image: {
  23629. source: "./media/characters/rory/butt.svg"
  23630. }
  23631. },
  23632. dick: {
  23633. height: math.unit(1.02, "feet"),
  23634. name: "Dick",
  23635. image: {
  23636. source: "./media/characters/rory/dick.svg"
  23637. }
  23638. },
  23639. paws: {
  23640. height: math.unit(1, "feet"),
  23641. name: "Paws",
  23642. image: {
  23643. source: "./media/characters/rory/paws.svg"
  23644. }
  23645. },
  23646. frontAlt: {
  23647. height: math.unit(5 + 4 / 12, "feet"),
  23648. weight: math.unit(120, "lb"),
  23649. name: "Front (Alt)",
  23650. image: {
  23651. source: "./media/characters/rory/front-alt.svg",
  23652. extra: 589 / 556,
  23653. bottom: 45.7 / 635.76
  23654. }
  23655. },
  23656. frontAltNude: {
  23657. height: math.unit(5 + 4 / 12, "feet"),
  23658. weight: math.unit(120, "lb"),
  23659. name: "Front (Alt, Nude)",
  23660. image: {
  23661. source: "./media/characters/rory/front-alt-nude.svg",
  23662. extra: 589 / 556,
  23663. bottom: 45.7 / 635.76
  23664. }
  23665. },
  23666. side: {
  23667. height: math.unit(5 + 4 / 12, "feet"),
  23668. weight: math.unit(120, "lb"),
  23669. name: "Side",
  23670. image: {
  23671. source: "./media/characters/rory/side.svg",
  23672. extra: 597 / 564,
  23673. bottom: 55 / 653
  23674. }
  23675. },
  23676. backAlt: {
  23677. height: math.unit(5 + 4 / 12, "feet"),
  23678. weight: math.unit(120, "lb"),
  23679. name: "Back (Alt)",
  23680. image: {
  23681. source: "./media/characters/rory/back-alt.svg",
  23682. extra: 620 / 585,
  23683. bottom: 8.86 / 630.43
  23684. }
  23685. },
  23686. dickAlt: {
  23687. height: math.unit(0.86, "feet"),
  23688. name: "Dick (Alt)",
  23689. image: {
  23690. source: "./media/characters/rory/dick-alt.svg"
  23691. }
  23692. },
  23693. },
  23694. [
  23695. {
  23696. name: "Normal",
  23697. height: math.unit(5 + 4 / 12, "feet"),
  23698. default: true
  23699. },
  23700. {
  23701. name: "Macro",
  23702. height: math.unit(100, "feet")
  23703. },
  23704. {
  23705. name: "Macro+",
  23706. height: math.unit(140, "feet")
  23707. },
  23708. {
  23709. name: "Macro++",
  23710. height: math.unit(300, "feet")
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23716. {
  23717. front: {
  23718. height: math.unit(5 + 9 / 12, "feet"),
  23719. weight: math.unit(190, "lb"),
  23720. name: "Front",
  23721. image: {
  23722. source: "./media/characters/sprisk/front.svg",
  23723. extra: 1225 / 1180,
  23724. bottom: 42.7 / 1266.4
  23725. }
  23726. },
  23727. frontNsfw: {
  23728. height: math.unit(5 + 9 / 12, "feet"),
  23729. weight: math.unit(190, "lb"),
  23730. name: "Front (NSFW)",
  23731. image: {
  23732. source: "./media/characters/sprisk/front-nsfw.svg",
  23733. extra: 1225 / 1180,
  23734. bottom: 42.7 / 1266.4
  23735. }
  23736. },
  23737. back: {
  23738. height: math.unit(5 + 9 / 12, "feet"),
  23739. weight: math.unit(190, "lb"),
  23740. name: "Back",
  23741. image: {
  23742. source: "./media/characters/sprisk/back.svg",
  23743. extra: 1247 / 1200,
  23744. bottom: 5.6 / 1253.04
  23745. }
  23746. },
  23747. },
  23748. [
  23749. {
  23750. name: "Tiny",
  23751. height: math.unit(2, "inches")
  23752. },
  23753. {
  23754. name: "Normal",
  23755. height: math.unit(5 + 9 / 12, "feet"),
  23756. default: true
  23757. },
  23758. {
  23759. name: "Mini Macro",
  23760. height: math.unit(18, "feet")
  23761. },
  23762. {
  23763. name: "Macro",
  23764. height: math.unit(100, "feet")
  23765. },
  23766. {
  23767. name: "MACRO",
  23768. height: math.unit(50, "miles")
  23769. },
  23770. {
  23771. name: "M A C R O",
  23772. height: math.unit(300, "miles")
  23773. },
  23774. ]
  23775. ))
  23776. characterMakers.push(() => makeCharacter(
  23777. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23778. {
  23779. side: {
  23780. height: math.unit(15.6, "meters"),
  23781. weight: math.unit(700000, "kg"),
  23782. name: "Side",
  23783. image: {
  23784. source: "./media/characters/bunsen/side.svg",
  23785. extra: 1644 / 358
  23786. }
  23787. },
  23788. foot: {
  23789. height: math.unit(1.611 * 1644 / 358, "meter"),
  23790. name: "Foot",
  23791. image: {
  23792. source: "./media/characters/bunsen/foot.svg"
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Small",
  23799. height: math.unit(10, "feet")
  23800. },
  23801. {
  23802. name: "Normal",
  23803. height: math.unit(15.6, "meters"),
  23804. default: true
  23805. },
  23806. ]
  23807. ))
  23808. characterMakers.push(() => makeCharacter(
  23809. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23810. {
  23811. front: {
  23812. height: math.unit(4 + 11 / 12, "feet"),
  23813. weight: math.unit(140, "lb"),
  23814. name: "Front",
  23815. image: {
  23816. source: "./media/characters/sesh/front.svg",
  23817. extra: 3420 / 3231,
  23818. bottom: 72 / 3949.5
  23819. }
  23820. },
  23821. },
  23822. [
  23823. {
  23824. name: "Normal",
  23825. height: math.unit(4 + 11 / 12, "feet")
  23826. },
  23827. {
  23828. name: "Grown",
  23829. height: math.unit(15, "feet"),
  23830. default: true
  23831. },
  23832. {
  23833. name: "Macro",
  23834. height: math.unit(1500, "feet")
  23835. },
  23836. {
  23837. name: "Megamacro",
  23838. height: math.unit(30, "miles")
  23839. },
  23840. {
  23841. name: "Continental",
  23842. height: math.unit(3000, "miles")
  23843. },
  23844. {
  23845. name: "Gravity Mass",
  23846. height: math.unit(300000, "miles")
  23847. },
  23848. {
  23849. name: "Planet Buster",
  23850. height: math.unit(30000000, "miles")
  23851. },
  23852. {
  23853. name: "Big",
  23854. height: math.unit(3000000000, "miles")
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23860. {
  23861. front: {
  23862. height: math.unit(9, "feet"),
  23863. weight: math.unit(350, "lb"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/pepper/front.svg",
  23867. extra: 1448 / 1312,
  23868. bottom: 9.4 / 1457.88
  23869. }
  23870. },
  23871. back: {
  23872. height: math.unit(9, "feet"),
  23873. weight: math.unit(350, "lb"),
  23874. name: "Back",
  23875. image: {
  23876. source: "./media/characters/pepper/back.svg",
  23877. extra: 1423 / 1300,
  23878. bottom: 4.6 / 1429
  23879. }
  23880. },
  23881. maw: {
  23882. height: math.unit(0.932, "feet"),
  23883. name: "Maw",
  23884. image: {
  23885. source: "./media/characters/pepper/maw.svg"
  23886. }
  23887. },
  23888. },
  23889. [
  23890. {
  23891. name: "Normal",
  23892. height: math.unit(9, "feet"),
  23893. default: true
  23894. },
  23895. ]
  23896. ))
  23897. characterMakers.push(() => makeCharacter(
  23898. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23899. {
  23900. front: {
  23901. height: math.unit(6, "feet"),
  23902. weight: math.unit(150, "lb"),
  23903. name: "Front",
  23904. image: {
  23905. source: "./media/characters/maelstrom/front.svg",
  23906. extra: 2100 / 1883,
  23907. bottom: 94 / 2196.7
  23908. }
  23909. },
  23910. },
  23911. [
  23912. {
  23913. name: "Less Kaiju",
  23914. height: math.unit(200, "feet")
  23915. },
  23916. {
  23917. name: "Kaiju",
  23918. height: math.unit(400, "feet"),
  23919. default: true
  23920. },
  23921. {
  23922. name: "Kaiju-er",
  23923. height: math.unit(600, "feet")
  23924. },
  23925. ]
  23926. ))
  23927. characterMakers.push(() => makeCharacter(
  23928. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23929. {
  23930. front: {
  23931. height: math.unit(6 + 5 / 12, "feet"),
  23932. weight: math.unit(180, "lb"),
  23933. name: "Front",
  23934. image: {
  23935. source: "./media/characters/lexir/front.svg",
  23936. extra: 180 / 172,
  23937. bottom: 12 / 192
  23938. }
  23939. },
  23940. back: {
  23941. height: math.unit(6 + 5 / 12, "feet"),
  23942. weight: math.unit(180, "lb"),
  23943. name: "Back",
  23944. image: {
  23945. source: "./media/characters/lexir/back.svg",
  23946. extra: 1273/1201,
  23947. bottom: 39/1312
  23948. }
  23949. },
  23950. },
  23951. [
  23952. {
  23953. name: "Very Smal",
  23954. height: math.unit(1, "nm")
  23955. },
  23956. {
  23957. name: "Normal",
  23958. height: math.unit(6 + 5 / 12, "feet"),
  23959. default: true
  23960. },
  23961. {
  23962. name: "Macro",
  23963. height: math.unit(1, "mile")
  23964. },
  23965. {
  23966. name: "Megamacro",
  23967. height: math.unit(50, "miles")
  23968. },
  23969. ]
  23970. ))
  23971. characterMakers.push(() => makeCharacter(
  23972. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23973. {
  23974. front: {
  23975. height: math.unit(1.5, "meters"),
  23976. weight: math.unit(100, "lb"),
  23977. name: "Front",
  23978. image: {
  23979. source: "./media/characters/maksio/front.svg",
  23980. extra: 1549 / 1531,
  23981. bottom: 123.7 / 1674.5429
  23982. }
  23983. },
  23984. back: {
  23985. height: math.unit(1.5, "meters"),
  23986. weight: math.unit(100, "lb"),
  23987. name: "Back",
  23988. image: {
  23989. source: "./media/characters/maksio/back.svg",
  23990. extra: 1541 / 1509,
  23991. bottom: 97 / 1639
  23992. }
  23993. },
  23994. hand: {
  23995. height: math.unit(0.621, "feet"),
  23996. name: "Hand",
  23997. image: {
  23998. source: "./media/characters/maksio/hand.svg"
  23999. }
  24000. },
  24001. foot: {
  24002. height: math.unit(1.611, "feet"),
  24003. name: "Foot",
  24004. image: {
  24005. source: "./media/characters/maksio/foot.svg"
  24006. }
  24007. },
  24008. },
  24009. [
  24010. {
  24011. name: "Shrunken",
  24012. height: math.unit(10, "cm")
  24013. },
  24014. {
  24015. name: "Normal",
  24016. height: math.unit(150, "cm"),
  24017. default: true
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24023. {
  24024. front: {
  24025. height: math.unit(100, "feet"),
  24026. name: "Front",
  24027. image: {
  24028. source: "./media/characters/erza-bear/front.svg",
  24029. extra: 2449 / 2390,
  24030. bottom: 46 / 2494
  24031. }
  24032. },
  24033. back: {
  24034. height: math.unit(100, "feet"),
  24035. name: "Back",
  24036. image: {
  24037. source: "./media/characters/erza-bear/back.svg",
  24038. extra: 2489 / 2430,
  24039. bottom: 85.4 / 2480
  24040. }
  24041. },
  24042. tail: {
  24043. height: math.unit(42, "feet"),
  24044. name: "Tail",
  24045. image: {
  24046. source: "./media/characters/erza-bear/tail.svg"
  24047. }
  24048. },
  24049. tongue: {
  24050. height: math.unit(8, "feet"),
  24051. name: "Tongue",
  24052. image: {
  24053. source: "./media/characters/erza-bear/tongue.svg"
  24054. }
  24055. },
  24056. dick: {
  24057. height: math.unit(10.5, "feet"),
  24058. name: "Dick",
  24059. image: {
  24060. source: "./media/characters/erza-bear/dick.svg"
  24061. }
  24062. },
  24063. dickVertical: {
  24064. height: math.unit(16.9, "feet"),
  24065. name: "Dick (Vertical)",
  24066. image: {
  24067. source: "./media/characters/erza-bear/dick-vertical.svg"
  24068. }
  24069. },
  24070. },
  24071. [
  24072. {
  24073. name: "Macro",
  24074. height: math.unit(100, "feet"),
  24075. default: true
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24081. {
  24082. front: {
  24083. height: math.unit(172, "cm"),
  24084. weight: math.unit(73, "kg"),
  24085. name: "Front",
  24086. image: {
  24087. source: "./media/characters/violet-flor/front.svg",
  24088. extra: 1530 / 1442,
  24089. bottom: 61.9 / 1588.8
  24090. }
  24091. },
  24092. back: {
  24093. height: math.unit(180, "cm"),
  24094. weight: math.unit(73, "kg"),
  24095. name: "Back",
  24096. image: {
  24097. source: "./media/characters/violet-flor/back.svg",
  24098. extra: 1692 / 1630,
  24099. bottom: 20 / 1712
  24100. }
  24101. },
  24102. },
  24103. [
  24104. {
  24105. name: "Normal",
  24106. height: math.unit(172, "cm"),
  24107. default: true
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24113. {
  24114. front: {
  24115. height: math.unit(6, "feet"),
  24116. weight: math.unit(220, "lb"),
  24117. name: "Front",
  24118. image: {
  24119. source: "./media/characters/lynn-rhea/front.svg",
  24120. extra: 310 / 273
  24121. }
  24122. },
  24123. back: {
  24124. height: math.unit(6, "feet"),
  24125. weight: math.unit(220, "lb"),
  24126. name: "Back",
  24127. image: {
  24128. source: "./media/characters/lynn-rhea/back.svg",
  24129. extra: 310 / 273
  24130. }
  24131. },
  24132. dicks: {
  24133. height: math.unit(0.9, "feet"),
  24134. name: "Dicks",
  24135. image: {
  24136. source: "./media/characters/lynn-rhea/dicks.svg"
  24137. }
  24138. },
  24139. slit: {
  24140. height: math.unit(0.4, "feet"),
  24141. name: "Slit",
  24142. image: {
  24143. source: "./media/characters/lynn-rhea/slit.svg"
  24144. }
  24145. },
  24146. },
  24147. [
  24148. {
  24149. name: "Micro",
  24150. height: math.unit(1, "inch")
  24151. },
  24152. {
  24153. name: "Macro",
  24154. height: math.unit(60, "feet"),
  24155. default: true
  24156. },
  24157. {
  24158. name: "Megamacro",
  24159. height: math.unit(2, "miles")
  24160. },
  24161. {
  24162. name: "Gigamacro",
  24163. height: math.unit(3, "earths")
  24164. },
  24165. {
  24166. name: "Galactic",
  24167. height: math.unit(0.8, "galaxies")
  24168. },
  24169. ]
  24170. ))
  24171. characterMakers.push(() => makeCharacter(
  24172. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24173. {
  24174. front: {
  24175. height: math.unit(1600, "feet"),
  24176. weight: math.unit(85758785169, "kg"),
  24177. name: "Front",
  24178. image: {
  24179. source: "./media/characters/valathos/front.svg",
  24180. extra: 1451 / 1339
  24181. }
  24182. },
  24183. },
  24184. [
  24185. {
  24186. name: "Macro",
  24187. height: math.unit(1600, "feet"),
  24188. default: true
  24189. },
  24190. ]
  24191. ))
  24192. characterMakers.push(() => makeCharacter(
  24193. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24194. {
  24195. front: {
  24196. height: math.unit(7 + 5 / 12, "feet"),
  24197. weight: math.unit(300, "lb"),
  24198. name: "Front",
  24199. image: {
  24200. source: "./media/characters/azula/front.svg",
  24201. extra: 3208 / 2880,
  24202. bottom: 80.2 / 3277
  24203. }
  24204. },
  24205. back: {
  24206. height: math.unit(7 + 5 / 12, "feet"),
  24207. weight: math.unit(300, "lb"),
  24208. name: "Back",
  24209. image: {
  24210. source: "./media/characters/azula/back.svg",
  24211. extra: 3169 / 2822,
  24212. bottom: 150.6 / 3321
  24213. }
  24214. },
  24215. },
  24216. [
  24217. {
  24218. name: "Normal",
  24219. height: math.unit(7 + 5 / 12, "feet"),
  24220. default: true
  24221. },
  24222. {
  24223. name: "Big",
  24224. height: math.unit(20, "feet")
  24225. },
  24226. ]
  24227. ))
  24228. characterMakers.push(() => makeCharacter(
  24229. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24230. {
  24231. front: {
  24232. height: math.unit(5 + 1 / 12, "feet"),
  24233. weight: math.unit(110, "lb"),
  24234. name: "Front",
  24235. image: {
  24236. source: "./media/characters/rupert/front.svg",
  24237. extra: 1549 / 1495,
  24238. bottom: 54.2 / 1604.4
  24239. }
  24240. },
  24241. },
  24242. [
  24243. {
  24244. name: "Normal",
  24245. height: math.unit(5 + 1 / 12, "feet"),
  24246. default: true
  24247. },
  24248. ]
  24249. ))
  24250. characterMakers.push(() => makeCharacter(
  24251. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24252. {
  24253. front: {
  24254. height: math.unit(8 + 4 / 12, "feet"),
  24255. weight: math.unit(350, "lb"),
  24256. name: "Front",
  24257. image: {
  24258. source: "./media/characters/sheera-castellar/front.svg",
  24259. extra: 1957 / 1894,
  24260. bottom: 26.97 / 1975.017
  24261. }
  24262. },
  24263. side: {
  24264. height: math.unit(8 + 4 / 12, "feet"),
  24265. weight: math.unit(350, "lb"),
  24266. name: "Side",
  24267. image: {
  24268. source: "./media/characters/sheera-castellar/side.svg",
  24269. extra: 1957 / 1894
  24270. }
  24271. },
  24272. back: {
  24273. height: math.unit(8 + 4 / 12, "feet"),
  24274. weight: math.unit(350, "lb"),
  24275. name: "Back",
  24276. image: {
  24277. source: "./media/characters/sheera-castellar/back.svg",
  24278. extra: 1957 / 1894
  24279. }
  24280. },
  24281. angled: {
  24282. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24283. weight: math.unit(350, "lb"),
  24284. name: "Angled",
  24285. image: {
  24286. source: "./media/characters/sheera-castellar/angled.svg",
  24287. extra: 1807 / 1707,
  24288. bottom: 68 / 1875
  24289. }
  24290. },
  24291. genitals: {
  24292. height: math.unit(2.2, "feet"),
  24293. name: "Genitals",
  24294. image: {
  24295. source: "./media/characters/sheera-castellar/genitals.svg"
  24296. }
  24297. },
  24298. taur: {
  24299. height: math.unit(10 + 6/12, "feet"),
  24300. name: "Taur",
  24301. image: {
  24302. source: "./media/characters/sheera-castellar/taur.svg",
  24303. extra: 2017/1909,
  24304. bottom: 185/2202
  24305. }
  24306. },
  24307. },
  24308. [
  24309. {
  24310. name: "Normal",
  24311. height: math.unit(8 + 4 / 12, "feet")
  24312. },
  24313. {
  24314. name: "Macro",
  24315. height: math.unit(150, "feet"),
  24316. default: true
  24317. },
  24318. {
  24319. name: "Macro+",
  24320. height: math.unit(800, "feet")
  24321. },
  24322. ]
  24323. ))
  24324. characterMakers.push(() => makeCharacter(
  24325. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24326. {
  24327. front: {
  24328. height: math.unit(6, "feet"),
  24329. weight: math.unit(150, "lb"),
  24330. name: "Front",
  24331. image: {
  24332. source: "./media/characters/jaipur/front.svg",
  24333. extra: 3860 / 3731,
  24334. bottom: 287 / 4140
  24335. }
  24336. },
  24337. back: {
  24338. height: math.unit(6, "feet"),
  24339. weight: math.unit(150, "lb"),
  24340. name: "Back",
  24341. image: {
  24342. source: "./media/characters/jaipur/back.svg",
  24343. extra: 1637/1561,
  24344. bottom: 154/1791
  24345. }
  24346. },
  24347. },
  24348. [
  24349. {
  24350. name: "Normal",
  24351. height: math.unit(1.85, "meters"),
  24352. default: true
  24353. },
  24354. {
  24355. name: "Macro",
  24356. height: math.unit(150, "meters")
  24357. },
  24358. {
  24359. name: "Macro+",
  24360. height: math.unit(0.5, "miles")
  24361. },
  24362. {
  24363. name: "Macro++",
  24364. height: math.unit(2.5, "miles")
  24365. },
  24366. {
  24367. name: "Macro+++",
  24368. height: math.unit(12, "miles")
  24369. },
  24370. {
  24371. name: "Macro++++",
  24372. height: math.unit(120, "miles")
  24373. },
  24374. {
  24375. name: "Macro+++++",
  24376. height: math.unit(1200, "miles")
  24377. },
  24378. ]
  24379. ))
  24380. characterMakers.push(() => makeCharacter(
  24381. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24382. {
  24383. front: {
  24384. height: math.unit(6, "feet"),
  24385. weight: math.unit(150, "lb"),
  24386. name: "Front",
  24387. image: {
  24388. source: "./media/characters/sheila-wolf/front.svg",
  24389. extra: 1931 / 1808,
  24390. bottom: 29.5 / 1960
  24391. }
  24392. },
  24393. dick: {
  24394. height: math.unit(1.464, "feet"),
  24395. name: "Dick",
  24396. image: {
  24397. source: "./media/characters/sheila-wolf/dick.svg"
  24398. }
  24399. },
  24400. muzzle: {
  24401. height: math.unit(0.513, "feet"),
  24402. name: "Muzzle",
  24403. image: {
  24404. source: "./media/characters/sheila-wolf/muzzle.svg"
  24405. }
  24406. },
  24407. },
  24408. [
  24409. {
  24410. name: "Macro",
  24411. height: math.unit(70, "feet"),
  24412. default: true
  24413. },
  24414. ]
  24415. ))
  24416. characterMakers.push(() => makeCharacter(
  24417. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24418. {
  24419. front: {
  24420. height: math.unit(32, "meters"),
  24421. weight: math.unit(300000, "kg"),
  24422. name: "Front",
  24423. image: {
  24424. source: "./media/characters/almor/front.svg",
  24425. extra: 1408 / 1322,
  24426. bottom: 94.6 / 1506.5
  24427. }
  24428. },
  24429. },
  24430. [
  24431. {
  24432. name: "Macro",
  24433. height: math.unit(32, "meters"),
  24434. default: true
  24435. },
  24436. ]
  24437. ))
  24438. characterMakers.push(() => makeCharacter(
  24439. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24440. {
  24441. front: {
  24442. height: math.unit(7, "feet"),
  24443. weight: math.unit(200, "lb"),
  24444. name: "Front",
  24445. image: {
  24446. source: "./media/characters/silver/front.svg",
  24447. extra: 472.1 / 450.5,
  24448. bottom: 26.5 / 499.424
  24449. }
  24450. },
  24451. },
  24452. [
  24453. {
  24454. name: "Normal",
  24455. height: math.unit(7, "feet"),
  24456. default: true
  24457. },
  24458. {
  24459. name: "Macro",
  24460. height: math.unit(800, "feet")
  24461. },
  24462. {
  24463. name: "Megamacro",
  24464. height: math.unit(250, "miles")
  24465. },
  24466. ]
  24467. ))
  24468. characterMakers.push(() => makeCharacter(
  24469. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24470. {
  24471. front: {
  24472. height: math.unit(6, "feet"),
  24473. weight: math.unit(150, "lb"),
  24474. name: "Front",
  24475. image: {
  24476. source: "./media/characters/pliskin/front.svg",
  24477. extra: 1469 / 1359,
  24478. bottom: 70 / 1540
  24479. }
  24480. },
  24481. },
  24482. [
  24483. {
  24484. name: "Micro",
  24485. height: math.unit(3, "inches")
  24486. },
  24487. {
  24488. name: "Normal",
  24489. height: math.unit(5 + 11 / 12, "feet"),
  24490. default: true
  24491. },
  24492. {
  24493. name: "Macro",
  24494. height: math.unit(120, "feet")
  24495. },
  24496. ]
  24497. ))
  24498. characterMakers.push(() => makeCharacter(
  24499. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24500. {
  24501. front: {
  24502. height: math.unit(6, "feet"),
  24503. weight: math.unit(150, "lb"),
  24504. name: "Front",
  24505. image: {
  24506. source: "./media/characters/sammy/front.svg",
  24507. extra: 1193 / 1089,
  24508. bottom: 30.5 / 1226
  24509. }
  24510. },
  24511. },
  24512. [
  24513. {
  24514. name: "Macro",
  24515. height: math.unit(1700, "feet"),
  24516. default: true
  24517. },
  24518. {
  24519. name: "Examacro",
  24520. height: math.unit(2.5e9, "lightyears")
  24521. },
  24522. ]
  24523. ))
  24524. characterMakers.push(() => makeCharacter(
  24525. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24526. {
  24527. front: {
  24528. height: math.unit(21, "meters"),
  24529. weight: math.unit(12, "tonnes"),
  24530. name: "Front",
  24531. image: {
  24532. source: "./media/characters/kuru/front.svg",
  24533. extra: 4301 / 3785,
  24534. bottom: 371.3 / 4691
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Macro",
  24541. height: math.unit(21, "meters"),
  24542. default: true
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24548. {
  24549. front: {
  24550. height: math.unit(23, "meters"),
  24551. weight: math.unit(12.2, "tonnes"),
  24552. name: "Front",
  24553. image: {
  24554. source: "./media/characters/rakka/front.svg",
  24555. extra: 4670 / 4169,
  24556. bottom: 301 / 4968.7
  24557. }
  24558. },
  24559. },
  24560. [
  24561. {
  24562. name: "Macro",
  24563. height: math.unit(23, "meters"),
  24564. default: true
  24565. },
  24566. ]
  24567. ))
  24568. characterMakers.push(() => makeCharacter(
  24569. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24570. {
  24571. front: {
  24572. height: math.unit(6, "feet"),
  24573. weight: math.unit(150, "lb"),
  24574. name: "Front",
  24575. image: {
  24576. source: "./media/characters/rhys-feline/front.svg",
  24577. extra: 2488 / 2308,
  24578. bottom: 35.67 / 2519.19
  24579. }
  24580. },
  24581. },
  24582. [
  24583. {
  24584. name: "Really Small",
  24585. height: math.unit(1, "nm")
  24586. },
  24587. {
  24588. name: "Micro",
  24589. height: math.unit(4, "inches")
  24590. },
  24591. {
  24592. name: "Normal",
  24593. height: math.unit(4 + 10 / 12, "feet"),
  24594. default: true
  24595. },
  24596. {
  24597. name: "Macro",
  24598. height: math.unit(100, "feet")
  24599. },
  24600. {
  24601. name: "Megamacto",
  24602. height: math.unit(50, "miles")
  24603. },
  24604. ]
  24605. ))
  24606. characterMakers.push(() => makeCharacter(
  24607. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24608. {
  24609. side: {
  24610. height: math.unit(30, "feet"),
  24611. weight: math.unit(35000, "kg"),
  24612. name: "Side",
  24613. image: {
  24614. source: "./media/characters/alydar/side.svg",
  24615. extra: 234 / 222,
  24616. bottom: 6.5 / 241
  24617. }
  24618. },
  24619. front: {
  24620. height: math.unit(30, "feet"),
  24621. weight: math.unit(35000, "kg"),
  24622. name: "Front",
  24623. image: {
  24624. source: "./media/characters/alydar/front.svg",
  24625. extra: 223.37 / 210.2,
  24626. bottom: 22.3 / 246.76
  24627. }
  24628. },
  24629. top: {
  24630. height: math.unit(64.54, "feet"),
  24631. weight: math.unit(35000, "kg"),
  24632. name: "Top",
  24633. image: {
  24634. source: "./media/characters/alydar/top.svg"
  24635. }
  24636. },
  24637. anthro: {
  24638. height: math.unit(30, "feet"),
  24639. weight: math.unit(9000, "kg"),
  24640. name: "Anthro",
  24641. image: {
  24642. source: "./media/characters/alydar/anthro.svg",
  24643. extra: 432 / 421,
  24644. bottom: 7.18 / 440
  24645. }
  24646. },
  24647. maw: {
  24648. height: math.unit(11.693, "feet"),
  24649. name: "Maw",
  24650. image: {
  24651. source: "./media/characters/alydar/maw.svg"
  24652. }
  24653. },
  24654. head: {
  24655. height: math.unit(11.693, "feet"),
  24656. name: "Head",
  24657. image: {
  24658. source: "./media/characters/alydar/head.svg"
  24659. }
  24660. },
  24661. headAlt: {
  24662. height: math.unit(12.861, "feet"),
  24663. name: "Head (Alt)",
  24664. image: {
  24665. source: "./media/characters/alydar/head-alt.svg"
  24666. }
  24667. },
  24668. wing: {
  24669. height: math.unit(20.712, "feet"),
  24670. name: "Wing",
  24671. image: {
  24672. source: "./media/characters/alydar/wing.svg"
  24673. }
  24674. },
  24675. wingFeather: {
  24676. height: math.unit(9.662, "feet"),
  24677. name: "Wing Feather",
  24678. image: {
  24679. source: "./media/characters/alydar/wing-feather.svg"
  24680. }
  24681. },
  24682. countourFeather: {
  24683. height: math.unit(4.154, "feet"),
  24684. name: "Contour Feather",
  24685. image: {
  24686. source: "./media/characters/alydar/contour-feather.svg"
  24687. }
  24688. },
  24689. },
  24690. [
  24691. {
  24692. name: "Diplomatic",
  24693. height: math.unit(13, "feet"),
  24694. default: true
  24695. },
  24696. {
  24697. name: "Small",
  24698. height: math.unit(30, "feet")
  24699. },
  24700. {
  24701. name: "Normal",
  24702. height: math.unit(95, "feet"),
  24703. default: true
  24704. },
  24705. {
  24706. name: "Large",
  24707. height: math.unit(285, "feet")
  24708. },
  24709. {
  24710. name: "Incomprehensible",
  24711. height: math.unit(450, "megameters")
  24712. },
  24713. ]
  24714. ))
  24715. characterMakers.push(() => makeCharacter(
  24716. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24717. {
  24718. side: {
  24719. height: math.unit(11, "feet"),
  24720. weight: math.unit(1750, "kg"),
  24721. name: "Side",
  24722. image: {
  24723. source: "./media/characters/selicia/side.svg",
  24724. extra: 440 / 396,
  24725. bottom: 24.8 / 465.979
  24726. }
  24727. },
  24728. maw: {
  24729. height: math.unit(4.665, "feet"),
  24730. name: "Maw",
  24731. image: {
  24732. source: "./media/characters/selicia/maw.svg"
  24733. }
  24734. },
  24735. },
  24736. [
  24737. {
  24738. name: "Normal",
  24739. height: math.unit(11, "feet"),
  24740. default: true
  24741. },
  24742. ]
  24743. ))
  24744. characterMakers.push(() => makeCharacter(
  24745. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24746. {
  24747. side: {
  24748. height: math.unit(2 + 6 / 12, "feet"),
  24749. weight: math.unit(30, "lb"),
  24750. name: "Side",
  24751. image: {
  24752. source: "./media/characters/layla/side.svg",
  24753. extra: 244 / 188,
  24754. bottom: 18.2 / 262.1
  24755. }
  24756. },
  24757. back: {
  24758. height: math.unit(2 + 6 / 12, "feet"),
  24759. weight: math.unit(30, "lb"),
  24760. name: "Back",
  24761. image: {
  24762. source: "./media/characters/layla/back.svg",
  24763. extra: 308 / 241.5,
  24764. bottom: 8.9 / 316.8
  24765. }
  24766. },
  24767. cumming: {
  24768. height: math.unit(2 + 6 / 12, "feet"),
  24769. weight: math.unit(30, "lb"),
  24770. name: "Cumming",
  24771. image: {
  24772. source: "./media/characters/layla/cumming.svg",
  24773. extra: 342 / 279,
  24774. bottom: 595 / 938
  24775. }
  24776. },
  24777. dickFlaccid: {
  24778. height: math.unit(2.595, "feet"),
  24779. name: "Flaccid Genitals",
  24780. image: {
  24781. source: "./media/characters/layla/dick-flaccid.svg"
  24782. }
  24783. },
  24784. dickErect: {
  24785. height: math.unit(2.359, "feet"),
  24786. name: "Erect Genitals",
  24787. image: {
  24788. source: "./media/characters/layla/dick-erect.svg"
  24789. }
  24790. },
  24791. dragon: {
  24792. height: math.unit(40, "feet"),
  24793. name: "Dragon",
  24794. image: {
  24795. source: "./media/characters/layla/dragon.svg",
  24796. extra: 610/535,
  24797. bottom: 367/977
  24798. }
  24799. },
  24800. taur: {
  24801. height: math.unit(30, "feet"),
  24802. name: "Taur",
  24803. image: {
  24804. source: "./media/characters/layla/taur.svg",
  24805. extra: 1268/1199,
  24806. bottom: 112/1380
  24807. }
  24808. },
  24809. },
  24810. [
  24811. {
  24812. name: "Micro",
  24813. height: math.unit(1, "inch")
  24814. },
  24815. {
  24816. name: "Small",
  24817. height: math.unit(1, "foot")
  24818. },
  24819. {
  24820. name: "Normal",
  24821. height: math.unit(2 + 6 / 12, "feet"),
  24822. default: true
  24823. },
  24824. {
  24825. name: "Macro",
  24826. height: math.unit(200, "feet")
  24827. },
  24828. {
  24829. name: "Megamacro",
  24830. height: math.unit(1000, "miles")
  24831. },
  24832. {
  24833. name: "Planetary",
  24834. height: math.unit(8000, "miles")
  24835. },
  24836. {
  24837. name: "True Layla",
  24838. height: math.unit(200000 * 7, "multiverses")
  24839. },
  24840. ]
  24841. ))
  24842. characterMakers.push(() => makeCharacter(
  24843. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24844. {
  24845. back: {
  24846. height: math.unit(10.5, "feet"),
  24847. weight: math.unit(800, "lb"),
  24848. name: "Back",
  24849. image: {
  24850. source: "./media/characters/knox/back.svg",
  24851. extra: 1486 / 1089,
  24852. bottom: 107 / 1601.4
  24853. }
  24854. },
  24855. side: {
  24856. height: math.unit(10.5, "feet"),
  24857. weight: math.unit(800, "lb"),
  24858. name: "Side",
  24859. image: {
  24860. source: "./media/characters/knox/side.svg",
  24861. extra: 244 / 218,
  24862. bottom: 14 / 260
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Compact",
  24869. height: math.unit(10.5, "feet"),
  24870. default: true
  24871. },
  24872. {
  24873. name: "Dynamax",
  24874. height: math.unit(210, "feet")
  24875. },
  24876. {
  24877. name: "Full Macro",
  24878. height: math.unit(850, "feet")
  24879. },
  24880. ]
  24881. ))
  24882. characterMakers.push(() => makeCharacter(
  24883. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24884. {
  24885. front: {
  24886. height: math.unit(28, "feet"),
  24887. weight: math.unit(10500, "lb"),
  24888. name: "Front",
  24889. image: {
  24890. source: "./media/characters/kayda/front.svg",
  24891. extra: 1536 / 1428,
  24892. bottom: 68.7 / 1603
  24893. }
  24894. },
  24895. back: {
  24896. height: math.unit(28, "feet"),
  24897. weight: math.unit(10500, "lb"),
  24898. name: "Back",
  24899. image: {
  24900. source: "./media/characters/kayda/back.svg",
  24901. extra: 1557 / 1464,
  24902. bottom: 39.5 / 1597.49
  24903. }
  24904. },
  24905. dick: {
  24906. height: math.unit(3.858, "feet"),
  24907. name: "Dick",
  24908. image: {
  24909. source: "./media/characters/kayda/dick.svg"
  24910. }
  24911. },
  24912. },
  24913. [
  24914. {
  24915. name: "Macro",
  24916. height: math.unit(28, "feet"),
  24917. default: true
  24918. },
  24919. ]
  24920. ))
  24921. characterMakers.push(() => makeCharacter(
  24922. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24923. {
  24924. front: {
  24925. height: math.unit(10 + 11 / 12, "feet"),
  24926. weight: math.unit(1400, "lb"),
  24927. name: "Front",
  24928. image: {
  24929. source: "./media/characters/brian/front.svg",
  24930. extra: 737 / 692,
  24931. bottom: 55.4 / 785
  24932. }
  24933. },
  24934. },
  24935. [
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(10 + 11 / 12, "feet"),
  24939. default: true
  24940. },
  24941. ]
  24942. ))
  24943. characterMakers.push(() => makeCharacter(
  24944. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24945. {
  24946. front: {
  24947. height: math.unit(5 + 8 / 12, "feet"),
  24948. weight: math.unit(140, "lb"),
  24949. name: "Front",
  24950. image: {
  24951. source: "./media/characters/khemri/front.svg",
  24952. extra: 4780 / 4059,
  24953. bottom: 80.1 / 4859.25
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Micro",
  24960. height: math.unit(6, "inches")
  24961. },
  24962. {
  24963. name: "Normal",
  24964. height: math.unit(5 + 8 / 12, "feet"),
  24965. default: true
  24966. },
  24967. ]
  24968. ))
  24969. characterMakers.push(() => makeCharacter(
  24970. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24971. {
  24972. front: {
  24973. height: math.unit(13, "feet"),
  24974. weight: math.unit(1700, "lb"),
  24975. name: "Front",
  24976. image: {
  24977. source: "./media/characters/felix-braveheart/front.svg",
  24978. extra: 1222 / 1157,
  24979. bottom: 53.2 / 1280
  24980. }
  24981. },
  24982. back: {
  24983. height: math.unit(13, "feet"),
  24984. weight: math.unit(1700, "lb"),
  24985. name: "Back",
  24986. image: {
  24987. source: "./media/characters/felix-braveheart/back.svg",
  24988. extra: 1277 / 1203,
  24989. bottom: 50.2 / 1327
  24990. }
  24991. },
  24992. feral: {
  24993. height: math.unit(6, "feet"),
  24994. weight: math.unit(400, "lb"),
  24995. name: "Feral",
  24996. image: {
  24997. source: "./media/characters/felix-braveheart/feral.svg",
  24998. extra: 682 / 625,
  24999. bottom: 6.9 / 688
  25000. }
  25001. },
  25002. },
  25003. [
  25004. {
  25005. name: "Normal",
  25006. height: math.unit(13, "feet"),
  25007. default: true
  25008. },
  25009. ]
  25010. ))
  25011. characterMakers.push(() => makeCharacter(
  25012. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25013. {
  25014. side: {
  25015. height: math.unit(5 + 11 / 12, "feet"),
  25016. weight: math.unit(1400, "lb"),
  25017. name: "Side",
  25018. image: {
  25019. source: "./media/characters/shadow-blade/side.svg",
  25020. extra: 1726 / 1267,
  25021. bottom: 58.4 / 1785
  25022. }
  25023. },
  25024. },
  25025. [
  25026. {
  25027. name: "Normal",
  25028. height: math.unit(5 + 11 / 12, "feet"),
  25029. default: true
  25030. },
  25031. ]
  25032. ))
  25033. characterMakers.push(() => makeCharacter(
  25034. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25035. {
  25036. front: {
  25037. height: math.unit(1 + 6 / 12, "feet"),
  25038. weight: math.unit(25, "lb"),
  25039. name: "Front",
  25040. image: {
  25041. source: "./media/characters/karla-halldor/front.svg",
  25042. extra: 1459 / 1383,
  25043. bottom: 12 / 1472
  25044. }
  25045. },
  25046. },
  25047. [
  25048. {
  25049. name: "Normal",
  25050. height: math.unit(1 + 6 / 12, "feet"),
  25051. default: true
  25052. },
  25053. ]
  25054. ))
  25055. characterMakers.push(() => makeCharacter(
  25056. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25057. {
  25058. front: {
  25059. height: math.unit(6 + 2 / 12, "feet"),
  25060. weight: math.unit(160, "lb"),
  25061. name: "Front",
  25062. image: {
  25063. source: "./media/characters/ariam/front.svg",
  25064. extra: 1073/976,
  25065. bottom: 52/1125
  25066. }
  25067. },
  25068. back: {
  25069. height: math.unit(6 + 2/12, "feet"),
  25070. weight: math.unit(160, "lb"),
  25071. name: "Back",
  25072. image: {
  25073. source: "./media/characters/ariam/back.svg",
  25074. extra: 1103/1023,
  25075. bottom: 9/1112
  25076. }
  25077. },
  25078. dressed: {
  25079. height: math.unit(6 + 2/12, "feet"),
  25080. weight: math.unit(160, "lb"),
  25081. name: "Dressed",
  25082. image: {
  25083. source: "./media/characters/ariam/dressed.svg",
  25084. extra: 1099/1009,
  25085. bottom: 25/1124
  25086. }
  25087. },
  25088. squatting: {
  25089. height: math.unit(4.1, "feet"),
  25090. weight: math.unit(160, "lb"),
  25091. name: "Squatting",
  25092. image: {
  25093. source: "./media/characters/ariam/squatting.svg",
  25094. extra: 2617 / 2112,
  25095. bottom: 61.2 / 2681,
  25096. }
  25097. },
  25098. },
  25099. [
  25100. {
  25101. name: "Normal",
  25102. height: math.unit(6 + 2 / 12, "feet"),
  25103. default: true
  25104. },
  25105. {
  25106. name: "Normal+",
  25107. height: math.unit(4, "meters")
  25108. },
  25109. {
  25110. name: "Macro",
  25111. height: math.unit(50, "meters")
  25112. },
  25113. {
  25114. name: "Macro+",
  25115. height: math.unit(100, "meters")
  25116. },
  25117. {
  25118. name: "Megamacro",
  25119. height: math.unit(20, "km")
  25120. },
  25121. {
  25122. name: "Caretaker",
  25123. height: math.unit(444, "megameters")
  25124. },
  25125. ]
  25126. ))
  25127. characterMakers.push(() => makeCharacter(
  25128. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25129. {
  25130. front: {
  25131. height: math.unit(1.67, "meters"),
  25132. weight: math.unit(140, "lb"),
  25133. name: "Front",
  25134. image: {
  25135. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25136. extra: 438 / 410,
  25137. bottom: 0.75 / 439
  25138. }
  25139. },
  25140. },
  25141. [
  25142. {
  25143. name: "Shrunken",
  25144. height: math.unit(7.6, "cm")
  25145. },
  25146. {
  25147. name: "Human Scale",
  25148. height: math.unit(1.67, "meters")
  25149. },
  25150. {
  25151. name: "Wolxi Scale",
  25152. height: math.unit(36.7, "meters"),
  25153. default: true
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25159. {
  25160. front: {
  25161. height: math.unit(1.73, "meters"),
  25162. weight: math.unit(240, "lb"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/izue-two-mothers/front.svg",
  25166. extra: 469 / 437,
  25167. bottom: 1.24 / 470.6
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Shrunken",
  25174. height: math.unit(7.86, "cm")
  25175. },
  25176. {
  25177. name: "Human Scale",
  25178. height: math.unit(1.73, "meters")
  25179. },
  25180. {
  25181. name: "Wolxi Scale",
  25182. height: math.unit(38, "meters"),
  25183. default: true
  25184. },
  25185. ]
  25186. ))
  25187. characterMakers.push(() => makeCharacter(
  25188. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25189. {
  25190. front: {
  25191. height: math.unit(1.55, "meters"),
  25192. weight: math.unit(120, "lb"),
  25193. name: "Front",
  25194. image: {
  25195. source: "./media/characters/teeku-love-shack/front.svg",
  25196. extra: 387 / 362,
  25197. bottom: 1.51 / 388
  25198. }
  25199. },
  25200. },
  25201. [
  25202. {
  25203. name: "Shrunken",
  25204. height: math.unit(7, "cm")
  25205. },
  25206. {
  25207. name: "Human Scale",
  25208. height: math.unit(1.55, "meters")
  25209. },
  25210. {
  25211. name: "Wolxi Scale",
  25212. height: math.unit(34.1, "meters"),
  25213. default: true
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25219. {
  25220. front: {
  25221. height: math.unit(1.83, "meters"),
  25222. weight: math.unit(135, "lb"),
  25223. name: "Front",
  25224. image: {
  25225. source: "./media/characters/dejma-the-red/front.svg",
  25226. extra: 480 / 458,
  25227. bottom: 1.8 / 482
  25228. }
  25229. },
  25230. },
  25231. [
  25232. {
  25233. name: "Shrunken",
  25234. height: math.unit(8.3, "cm")
  25235. },
  25236. {
  25237. name: "Human Scale",
  25238. height: math.unit(1.83, "meters")
  25239. },
  25240. {
  25241. name: "Wolxi Scale",
  25242. height: math.unit(40, "meters"),
  25243. default: true
  25244. },
  25245. ]
  25246. ))
  25247. characterMakers.push(() => makeCharacter(
  25248. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25249. {
  25250. front: {
  25251. height: math.unit(1.78, "meters"),
  25252. weight: math.unit(65, "kg"),
  25253. name: "Front",
  25254. image: {
  25255. source: "./media/characters/aki/front.svg",
  25256. extra: 452 / 415
  25257. }
  25258. },
  25259. frontNsfw: {
  25260. height: math.unit(1.78, "meters"),
  25261. weight: math.unit(65, "kg"),
  25262. name: "Front (NSFW)",
  25263. image: {
  25264. source: "./media/characters/aki/front-nsfw.svg",
  25265. extra: 452 / 415
  25266. }
  25267. },
  25268. back: {
  25269. height: math.unit(1.78, "meters"),
  25270. weight: math.unit(65, "kg"),
  25271. name: "Back",
  25272. image: {
  25273. source: "./media/characters/aki/back.svg",
  25274. extra: 452 / 415
  25275. }
  25276. },
  25277. rump: {
  25278. height: math.unit(2.05, "feet"),
  25279. name: "Rump",
  25280. image: {
  25281. source: "./media/characters/aki/rump.svg"
  25282. }
  25283. },
  25284. dick: {
  25285. height: math.unit(0.95, "feet"),
  25286. name: "Dick",
  25287. image: {
  25288. source: "./media/characters/aki/dick.svg"
  25289. }
  25290. },
  25291. },
  25292. [
  25293. {
  25294. name: "Micro",
  25295. height: math.unit(15, "cm")
  25296. },
  25297. {
  25298. name: "Normal",
  25299. height: math.unit(178, "cm"),
  25300. default: true
  25301. },
  25302. {
  25303. name: "Macro",
  25304. height: math.unit(214, "m")
  25305. },
  25306. {
  25307. name: "Macro+",
  25308. height: math.unit(534, "m")
  25309. },
  25310. ]
  25311. ))
  25312. characterMakers.push(() => makeCharacter(
  25313. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25314. {
  25315. front: {
  25316. height: math.unit(5 + 5 / 12, "feet"),
  25317. weight: math.unit(120, "lb"),
  25318. name: "Front",
  25319. image: {
  25320. source: "./media/characters/ari/front.svg",
  25321. extra: 1550/1471,
  25322. bottom: 39/1589
  25323. }
  25324. },
  25325. },
  25326. [
  25327. {
  25328. name: "Normal",
  25329. height: math.unit(5 + 5 / 12, "feet")
  25330. },
  25331. {
  25332. name: "Macro",
  25333. height: math.unit(100, "feet"),
  25334. default: true
  25335. },
  25336. {
  25337. name: "Megamacro",
  25338. height: math.unit(100, "miles")
  25339. },
  25340. {
  25341. name: "Gigamacro",
  25342. height: math.unit(80000, "miles")
  25343. },
  25344. ]
  25345. ))
  25346. characterMakers.push(() => makeCharacter(
  25347. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25348. {
  25349. side: {
  25350. height: math.unit(9, "feet"),
  25351. weight: math.unit(400, "kg"),
  25352. name: "Side",
  25353. image: {
  25354. source: "./media/characters/bolt/side.svg",
  25355. extra: 1126 / 896,
  25356. bottom: 60 / 1187.3,
  25357. }
  25358. },
  25359. },
  25360. [
  25361. {
  25362. name: "Micro",
  25363. height: math.unit(5, "inches")
  25364. },
  25365. {
  25366. name: "Normal",
  25367. height: math.unit(9, "feet"),
  25368. default: true
  25369. },
  25370. {
  25371. name: "Macro",
  25372. height: math.unit(700, "feet")
  25373. },
  25374. {
  25375. name: "Max Size",
  25376. height: math.unit(1.52e22, "yottameters")
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25382. {
  25383. front: {
  25384. height: math.unit(4.3, "meters"),
  25385. weight: math.unit(3, "tons"),
  25386. name: "Front",
  25387. image: {
  25388. source: "./media/characters/draekon-sylviar/front.svg",
  25389. extra: 2072/1512,
  25390. bottom: 74/2146
  25391. }
  25392. },
  25393. back: {
  25394. height: math.unit(4.3, "meters"),
  25395. weight: math.unit(3, "tons"),
  25396. name: "Back",
  25397. image: {
  25398. source: "./media/characters/draekon-sylviar/back.svg",
  25399. extra: 1639/1483,
  25400. bottom: 41/1680
  25401. }
  25402. },
  25403. feral: {
  25404. height: math.unit(1.15, "meters"),
  25405. weight: math.unit(3, "tons"),
  25406. name: "Feral",
  25407. image: {
  25408. source: "./media/characters/draekon-sylviar/feral.svg",
  25409. extra: 1033/395,
  25410. bottom: 130/1163
  25411. }
  25412. },
  25413. maw: {
  25414. height: math.unit(1.3, "meters"),
  25415. name: "Maw",
  25416. image: {
  25417. source: "./media/characters/draekon-sylviar/maw.svg"
  25418. }
  25419. },
  25420. mawSeparated: {
  25421. height: math.unit(1.53, "meters"),
  25422. name: "Separated Maw",
  25423. image: {
  25424. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25425. }
  25426. },
  25427. tail: {
  25428. height: math.unit(1.15, "meters"),
  25429. name: "Tail",
  25430. image: {
  25431. source: "./media/characters/draekon-sylviar/tail.svg"
  25432. }
  25433. },
  25434. tailDick: {
  25435. height: math.unit(1.15, "meters"),
  25436. name: "Tail (Dick)",
  25437. image: {
  25438. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25439. }
  25440. },
  25441. tailDickSeparated: {
  25442. height: math.unit(1.19, "meters"),
  25443. name: "Tail (Separated Dick)",
  25444. image: {
  25445. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25446. }
  25447. },
  25448. slit: {
  25449. height: math.unit(1, "meters"),
  25450. name: "Slit",
  25451. image: {
  25452. source: "./media/characters/draekon-sylviar/slit.svg"
  25453. }
  25454. },
  25455. dick: {
  25456. height: math.unit(1.15, "meters"),
  25457. name: "Dick",
  25458. image: {
  25459. source: "./media/characters/draekon-sylviar/dick.svg"
  25460. }
  25461. },
  25462. dickSeparated: {
  25463. height: math.unit(1.1, "meters"),
  25464. name: "Separated Dick",
  25465. image: {
  25466. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25467. }
  25468. },
  25469. sheath: {
  25470. height: math.unit(1.15, "meters"),
  25471. name: "Sheath",
  25472. image: {
  25473. source: "./media/characters/draekon-sylviar/sheath.svg"
  25474. }
  25475. },
  25476. },
  25477. [
  25478. {
  25479. name: "Small",
  25480. height: math.unit(4.53 / 2, "meters"),
  25481. default: true
  25482. },
  25483. {
  25484. name: "Normal",
  25485. height: math.unit(4.53, "meters"),
  25486. default: true
  25487. },
  25488. {
  25489. name: "Large",
  25490. height: math.unit(4.53 * 2, "meters"),
  25491. },
  25492. ]
  25493. ))
  25494. characterMakers.push(() => makeCharacter(
  25495. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25496. {
  25497. front: {
  25498. height: math.unit(6 + 2 / 12, "feet"),
  25499. weight: math.unit(180, "lb"),
  25500. name: "Front",
  25501. image: {
  25502. source: "./media/characters/brawler/front.svg",
  25503. extra: 3301 / 3027,
  25504. bottom: 138 / 3439
  25505. }
  25506. },
  25507. },
  25508. [
  25509. {
  25510. name: "Normal",
  25511. height: math.unit(6 + 2 / 12, "feet"),
  25512. default: true
  25513. },
  25514. ]
  25515. ))
  25516. characterMakers.push(() => makeCharacter(
  25517. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25518. {
  25519. front: {
  25520. height: math.unit(11, "feet"),
  25521. weight: math.unit(1000, "lb"),
  25522. name: "Front",
  25523. image: {
  25524. source: "./media/characters/alex/front.svg",
  25525. bottom: 44.5 / 620
  25526. }
  25527. },
  25528. },
  25529. [
  25530. {
  25531. name: "Micro",
  25532. height: math.unit(5, "inches")
  25533. },
  25534. {
  25535. name: "Normal",
  25536. height: math.unit(11, "feet"),
  25537. default: true
  25538. },
  25539. {
  25540. name: "Macro",
  25541. height: math.unit(9.5e9, "feet")
  25542. },
  25543. {
  25544. name: "Max Size",
  25545. height: math.unit(1.4e283, "yottameters")
  25546. },
  25547. ]
  25548. ))
  25549. characterMakers.push(() => makeCharacter(
  25550. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25551. {
  25552. female: {
  25553. height: math.unit(29.9, "m"),
  25554. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25555. name: "Female",
  25556. image: {
  25557. source: "./media/characters/zenari/female.svg",
  25558. extra: 3281.6 / 3217,
  25559. bottom: 72.2 / 3353
  25560. }
  25561. },
  25562. male: {
  25563. height: math.unit(27.7, "m"),
  25564. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25565. name: "Male",
  25566. image: {
  25567. source: "./media/characters/zenari/male.svg",
  25568. extra: 3008 / 2991,
  25569. bottom: 54.6 / 3069
  25570. }
  25571. },
  25572. },
  25573. [
  25574. {
  25575. name: "Macro",
  25576. height: math.unit(29.7, "meters"),
  25577. default: true
  25578. },
  25579. ]
  25580. ))
  25581. characterMakers.push(() => makeCharacter(
  25582. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25583. {
  25584. female: {
  25585. height: math.unit(23.8, "m"),
  25586. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25587. name: "Female",
  25588. image: {
  25589. source: "./media/characters/mactarian/female.svg",
  25590. extra: 2662 / 2569,
  25591. bottom: 73 / 2736
  25592. }
  25593. },
  25594. male: {
  25595. height: math.unit(23.8, "m"),
  25596. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25597. name: "Male",
  25598. image: {
  25599. source: "./media/characters/mactarian/male.svg",
  25600. extra: 2673 / 2600,
  25601. bottom: 76 / 2750
  25602. }
  25603. },
  25604. },
  25605. [
  25606. {
  25607. name: "Macro",
  25608. height: math.unit(23.8, "meters"),
  25609. default: true
  25610. },
  25611. ]
  25612. ))
  25613. characterMakers.push(() => makeCharacter(
  25614. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25615. {
  25616. female: {
  25617. height: math.unit(19.3, "m"),
  25618. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25619. name: "Female",
  25620. image: {
  25621. source: "./media/characters/umok/female.svg",
  25622. extra: 2186 / 2078,
  25623. bottom: 87 / 2277
  25624. }
  25625. },
  25626. male: {
  25627. height: math.unit(19.5, "m"),
  25628. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25629. name: "Male",
  25630. image: {
  25631. source: "./media/characters/umok/male.svg",
  25632. extra: 2233 / 2140,
  25633. bottom: 24.4 / 2258
  25634. }
  25635. },
  25636. },
  25637. [
  25638. {
  25639. name: "Macro",
  25640. height: math.unit(19.3, "meters"),
  25641. default: true
  25642. },
  25643. ]
  25644. ))
  25645. characterMakers.push(() => makeCharacter(
  25646. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25647. {
  25648. female: {
  25649. height: math.unit(26.15, "m"),
  25650. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25651. name: "Female",
  25652. image: {
  25653. source: "./media/characters/joraxian/female.svg",
  25654. extra: 2912 / 2824,
  25655. bottom: 36 / 2956
  25656. }
  25657. },
  25658. male: {
  25659. height: math.unit(25.4, "m"),
  25660. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25661. name: "Male",
  25662. image: {
  25663. source: "./media/characters/joraxian/male.svg",
  25664. extra: 2877 / 2721,
  25665. bottom: 82 / 2967
  25666. }
  25667. },
  25668. },
  25669. [
  25670. {
  25671. name: "Macro",
  25672. height: math.unit(26.15, "meters"),
  25673. default: true
  25674. },
  25675. ]
  25676. ))
  25677. characterMakers.push(() => makeCharacter(
  25678. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25679. {
  25680. female: {
  25681. height: math.unit(21.6, "m"),
  25682. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25683. name: "Female",
  25684. image: {
  25685. source: "./media/characters/sthara/female.svg",
  25686. extra: 2516 / 2347,
  25687. bottom: 21.5 / 2537
  25688. }
  25689. },
  25690. male: {
  25691. height: math.unit(24, "m"),
  25692. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25693. name: "Male",
  25694. image: {
  25695. source: "./media/characters/sthara/male.svg",
  25696. extra: 2732 / 2607,
  25697. bottom: 23 / 2732
  25698. }
  25699. },
  25700. },
  25701. [
  25702. {
  25703. name: "Macro",
  25704. height: math.unit(21.6, "meters"),
  25705. default: true
  25706. },
  25707. ]
  25708. ))
  25709. characterMakers.push(() => makeCharacter(
  25710. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25711. {
  25712. front: {
  25713. height: math.unit(6 + 4 / 12, "feet"),
  25714. weight: math.unit(175, "lb"),
  25715. name: "Front",
  25716. image: {
  25717. source: "./media/characters/luka-bryzant/front.svg",
  25718. extra: 311 / 289,
  25719. bottom: 4 / 315
  25720. }
  25721. },
  25722. back: {
  25723. height: math.unit(6 + 4 / 12, "feet"),
  25724. weight: math.unit(175, "lb"),
  25725. name: "Back",
  25726. image: {
  25727. source: "./media/characters/luka-bryzant/back.svg",
  25728. extra: 311 / 289,
  25729. bottom: 3.8 / 313.7
  25730. }
  25731. },
  25732. },
  25733. [
  25734. {
  25735. name: "Micro",
  25736. height: math.unit(10, "inches")
  25737. },
  25738. {
  25739. name: "Normal",
  25740. height: math.unit(6 + 4 / 12, "feet"),
  25741. default: true
  25742. },
  25743. {
  25744. name: "Large",
  25745. height: math.unit(12, "feet")
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25751. {
  25752. front: {
  25753. height: math.unit(5 + 7 / 12, "feet"),
  25754. weight: math.unit(185, "lb"),
  25755. name: "Front",
  25756. image: {
  25757. source: "./media/characters/aman-aquila/front.svg",
  25758. extra: 1013 / 976,
  25759. bottom: 45.6 / 1057
  25760. }
  25761. },
  25762. side: {
  25763. height: math.unit(5 + 7 / 12, "feet"),
  25764. weight: math.unit(185, "lb"),
  25765. name: "Side",
  25766. image: {
  25767. source: "./media/characters/aman-aquila/side.svg",
  25768. extra: 1054 / 1011,
  25769. bottom: 15 / 1070
  25770. }
  25771. },
  25772. back: {
  25773. height: math.unit(5 + 7 / 12, "feet"),
  25774. weight: math.unit(185, "lb"),
  25775. name: "Back",
  25776. image: {
  25777. source: "./media/characters/aman-aquila/back.svg",
  25778. extra: 1026 / 970,
  25779. bottom: 12 / 1039
  25780. }
  25781. },
  25782. head: {
  25783. height: math.unit(1.211, "feet"),
  25784. name: "Head",
  25785. image: {
  25786. source: "./media/characters/aman-aquila/head.svg",
  25787. }
  25788. },
  25789. },
  25790. [
  25791. {
  25792. name: "Minimicro",
  25793. height: math.unit(0.057, "inches")
  25794. },
  25795. {
  25796. name: "Micro",
  25797. height: math.unit(7, "inches")
  25798. },
  25799. {
  25800. name: "Mini",
  25801. height: math.unit(3 + 7 / 12, "feet")
  25802. },
  25803. {
  25804. name: "Normal",
  25805. height: math.unit(5 + 7 / 12, "feet"),
  25806. default: true
  25807. },
  25808. {
  25809. name: "Macro",
  25810. height: math.unit(157 + 7 / 12, "feet")
  25811. },
  25812. {
  25813. name: "Megamacro",
  25814. height: math.unit(1557 + 7 / 12, "feet")
  25815. },
  25816. {
  25817. name: "Gigamacro",
  25818. height: math.unit(15557 + 7 / 12, "feet")
  25819. },
  25820. ]
  25821. ))
  25822. characterMakers.push(() => makeCharacter(
  25823. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25824. {
  25825. front: {
  25826. height: math.unit(3 + 2 / 12, "inches"),
  25827. weight: math.unit(0.3, "ounces"),
  25828. name: "Front",
  25829. image: {
  25830. source: "./media/characters/hiphae/front.svg",
  25831. extra: 1931 / 1683,
  25832. bottom: 24 / 1955
  25833. }
  25834. },
  25835. },
  25836. [
  25837. {
  25838. name: "Normal",
  25839. height: math.unit(3 + 1 / 2, "inches"),
  25840. default: true
  25841. },
  25842. ]
  25843. ))
  25844. characterMakers.push(() => makeCharacter(
  25845. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25846. {
  25847. front: {
  25848. height: math.unit(5 + 10 / 12, "feet"),
  25849. weight: math.unit(165, "lb"),
  25850. name: "Front",
  25851. image: {
  25852. source: "./media/characters/nicky/front.svg",
  25853. extra: 3144 / 2886,
  25854. bottom: 45.6 / 3192
  25855. }
  25856. },
  25857. back: {
  25858. height: math.unit(5 + 10 / 12, "feet"),
  25859. weight: math.unit(165, "lb"),
  25860. name: "Back",
  25861. image: {
  25862. source: "./media/characters/nicky/back.svg",
  25863. extra: 3055 / 2804,
  25864. bottom: 28.4 / 3087
  25865. }
  25866. },
  25867. frontclothed: {
  25868. height: math.unit(5 + 10 / 12, "feet"),
  25869. weight: math.unit(165, "lb"),
  25870. name: "Front-clothed",
  25871. image: {
  25872. source: "./media/characters/nicky/front-clothed.svg",
  25873. extra: 3184.9 / 2926.9,
  25874. bottom: 86.5 / 3239.9
  25875. }
  25876. },
  25877. foot: {
  25878. height: math.unit(1.16, "feet"),
  25879. name: "Foot",
  25880. image: {
  25881. source: "./media/characters/nicky/foot.svg"
  25882. }
  25883. },
  25884. feet: {
  25885. height: math.unit(1.34, "feet"),
  25886. name: "Feet",
  25887. image: {
  25888. source: "./media/characters/nicky/feet.svg"
  25889. }
  25890. },
  25891. maw: {
  25892. height: math.unit(0.9, "feet"),
  25893. name: "Maw",
  25894. image: {
  25895. source: "./media/characters/nicky/maw.svg"
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Normal",
  25902. height: math.unit(5 + 10 / 12, "feet"),
  25903. default: true
  25904. },
  25905. {
  25906. name: "Macro",
  25907. height: math.unit(60, "feet")
  25908. },
  25909. {
  25910. name: "Megamacro",
  25911. height: math.unit(1, "mile")
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25917. {
  25918. side: {
  25919. height: math.unit(10, "feet"),
  25920. weight: math.unit(600, "lb"),
  25921. name: "Side",
  25922. image: {
  25923. source: "./media/characters/blair/side.svg",
  25924. bottom: 16.6 / 475,
  25925. extra: 458 / 431
  25926. }
  25927. },
  25928. },
  25929. [
  25930. {
  25931. name: "Micro",
  25932. height: math.unit(8, "inches")
  25933. },
  25934. {
  25935. name: "Normal",
  25936. height: math.unit(10, "feet"),
  25937. default: true
  25938. },
  25939. {
  25940. name: "Macro",
  25941. height: math.unit(180, "feet")
  25942. },
  25943. ]
  25944. ))
  25945. characterMakers.push(() => makeCharacter(
  25946. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25947. {
  25948. front: {
  25949. height: math.unit(5 + 4 / 12, "feet"),
  25950. weight: math.unit(125, "lb"),
  25951. name: "Front",
  25952. image: {
  25953. source: "./media/characters/fisher/front.svg",
  25954. extra: 444 / 390,
  25955. bottom: 2 / 444.8
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Micro",
  25962. height: math.unit(4, "inches")
  25963. },
  25964. {
  25965. name: "Normal",
  25966. height: math.unit(5 + 4 / 12, "feet"),
  25967. default: true
  25968. },
  25969. {
  25970. name: "Macro",
  25971. height: math.unit(100, "feet")
  25972. },
  25973. ]
  25974. ))
  25975. characterMakers.push(() => makeCharacter(
  25976. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25977. {
  25978. front: {
  25979. height: math.unit(6.71, "feet"),
  25980. weight: math.unit(200, "lb"),
  25981. capacity: math.unit(1000000, "people"),
  25982. name: "Front",
  25983. image: {
  25984. source: "./media/characters/gliss/front.svg",
  25985. extra: 2347 / 2231,
  25986. bottom: 113 / 2462
  25987. }
  25988. },
  25989. hammerspaceSize: {
  25990. height: math.unit(6.71 * 717, "feet"),
  25991. weight: math.unit(200, "lb"),
  25992. capacity: math.unit(1000000, "people"),
  25993. name: "Hammerspace Size",
  25994. image: {
  25995. source: "./media/characters/gliss/front.svg",
  25996. extra: 2347 / 2231,
  25997. bottom: 113 / 2462
  25998. }
  25999. },
  26000. },
  26001. [
  26002. {
  26003. name: "Normal",
  26004. height: math.unit(6.71, "feet"),
  26005. default: true
  26006. },
  26007. ]
  26008. ))
  26009. characterMakers.push(() => makeCharacter(
  26010. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26011. {
  26012. side: {
  26013. height: math.unit(1.44, "m"),
  26014. weight: math.unit(80, "kg"),
  26015. name: "Side",
  26016. image: {
  26017. source: "./media/characters/dune-anderson/side.svg",
  26018. bottom: 49 / 1426
  26019. }
  26020. },
  26021. },
  26022. [
  26023. {
  26024. name: "Wolf-sized",
  26025. height: math.unit(1.44, "meters")
  26026. },
  26027. {
  26028. name: "Normal",
  26029. height: math.unit(5.05, "meters"),
  26030. default: true
  26031. },
  26032. {
  26033. name: "Big",
  26034. height: math.unit(14.4, "meters")
  26035. },
  26036. {
  26037. name: "Huge",
  26038. height: math.unit(144, "meters")
  26039. },
  26040. ]
  26041. ))
  26042. characterMakers.push(() => makeCharacter(
  26043. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26044. {
  26045. front: {
  26046. height: math.unit(7, "feet"),
  26047. weight: math.unit(425, "lb"),
  26048. name: "Front",
  26049. image: {
  26050. source: "./media/characters/hind/front.svg",
  26051. extra: 2091 / 1860,
  26052. bottom: 129 / 2220
  26053. }
  26054. },
  26055. back: {
  26056. height: math.unit(7, "feet"),
  26057. weight: math.unit(425, "lb"),
  26058. name: "Back",
  26059. image: {
  26060. source: "./media/characters/hind/back.svg",
  26061. extra: 2091 / 1860,
  26062. bottom: 24.6 / 2309
  26063. }
  26064. },
  26065. tail: {
  26066. height: math.unit(2.8, "feet"),
  26067. name: "Tail",
  26068. image: {
  26069. source: "./media/characters/hind/tail.svg"
  26070. }
  26071. },
  26072. head: {
  26073. height: math.unit(2.55, "feet"),
  26074. name: "Head",
  26075. image: {
  26076. source: "./media/characters/hind/head.svg"
  26077. }
  26078. },
  26079. },
  26080. [
  26081. {
  26082. name: "XS",
  26083. height: math.unit(0.7, "feet")
  26084. },
  26085. {
  26086. name: "Normal",
  26087. height: math.unit(7, "feet"),
  26088. default: true
  26089. },
  26090. {
  26091. name: "XL",
  26092. height: math.unit(70, "feet")
  26093. },
  26094. ]
  26095. ))
  26096. characterMakers.push(() => makeCharacter(
  26097. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26098. {
  26099. front: {
  26100. height: math.unit(2.1, "meters"),
  26101. weight: math.unit(150, "lb"),
  26102. name: "Front",
  26103. image: {
  26104. source: "./media/characters/tharquench-sizestealer/front.svg",
  26105. extra: 1605/1470,
  26106. bottom: 36/1641
  26107. }
  26108. },
  26109. frontAlt: {
  26110. height: math.unit(2.1, "meters"),
  26111. weight: math.unit(150, "lb"),
  26112. name: "Front (Alt)",
  26113. image: {
  26114. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26115. extra: 2318 / 2063,
  26116. bottom: 93.4 / 2410
  26117. }
  26118. },
  26119. },
  26120. [
  26121. {
  26122. name: "Nano",
  26123. height: math.unit(1, "mm")
  26124. },
  26125. {
  26126. name: "Micro",
  26127. height: math.unit(1, "cm")
  26128. },
  26129. {
  26130. name: "Normal",
  26131. height: math.unit(2.1, "meters"),
  26132. default: true
  26133. },
  26134. ]
  26135. ))
  26136. characterMakers.push(() => makeCharacter(
  26137. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26138. {
  26139. front: {
  26140. height: math.unit(7 + 5 / 12, "feet"),
  26141. weight: math.unit(357, "lb"),
  26142. name: "Front",
  26143. image: {
  26144. source: "./media/characters/solex-draconov/front.svg",
  26145. extra: 1993 / 1865,
  26146. bottom: 117 / 2111
  26147. }
  26148. },
  26149. },
  26150. [
  26151. {
  26152. name: "Natural Height",
  26153. height: math.unit(7 + 5 / 12, "feet"),
  26154. default: true
  26155. },
  26156. {
  26157. name: "Macro",
  26158. height: math.unit(350, "feet")
  26159. },
  26160. {
  26161. name: "Macro+",
  26162. height: math.unit(1000, "feet")
  26163. },
  26164. {
  26165. name: "Megamacro",
  26166. height: math.unit(20, "km")
  26167. },
  26168. {
  26169. name: "Megamacro+",
  26170. height: math.unit(1000, "km")
  26171. },
  26172. {
  26173. name: "Gigamacro",
  26174. height: math.unit(2.5, "Gm")
  26175. },
  26176. {
  26177. name: "Teramacro",
  26178. height: math.unit(15, "Tm")
  26179. },
  26180. {
  26181. name: "Galactic",
  26182. height: math.unit(30, "Zm")
  26183. },
  26184. {
  26185. name: "Universal",
  26186. height: math.unit(21000, "Ym")
  26187. },
  26188. {
  26189. name: "Omniversal",
  26190. height: math.unit(9.861e50, "Ym")
  26191. },
  26192. {
  26193. name: "Existential",
  26194. height: math.unit(1e300, "meters")
  26195. },
  26196. ]
  26197. ))
  26198. characterMakers.push(() => makeCharacter(
  26199. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26200. {
  26201. side: {
  26202. height: math.unit(25, "feet"),
  26203. weight: math.unit(90000, "lb"),
  26204. name: "Side",
  26205. image: {
  26206. source: "./media/characters/mandarax/side.svg",
  26207. extra: 614 / 332,
  26208. bottom: 55 / 630
  26209. }
  26210. },
  26211. lounging: {
  26212. height: math.unit(15.4, "feet"),
  26213. weight: math.unit(90000, "lb"),
  26214. name: "Lounging",
  26215. image: {
  26216. source: "./media/characters/mandarax/lounging.svg",
  26217. extra: 817/609,
  26218. bottom: 685/1502
  26219. }
  26220. },
  26221. head: {
  26222. height: math.unit(11.4, "feet"),
  26223. name: "Head",
  26224. image: {
  26225. source: "./media/characters/mandarax/head.svg"
  26226. }
  26227. },
  26228. belly: {
  26229. height: math.unit(33, "feet"),
  26230. name: "Belly",
  26231. capacity: math.unit(500, "people"),
  26232. image: {
  26233. source: "./media/characters/mandarax/belly.svg"
  26234. }
  26235. },
  26236. dick: {
  26237. height: math.unit(8.46, "feet"),
  26238. name: "Dick",
  26239. image: {
  26240. source: "./media/characters/mandarax/dick.svg"
  26241. }
  26242. },
  26243. top: {
  26244. height: math.unit(28, "meters"),
  26245. name: "Top",
  26246. image: {
  26247. source: "./media/characters/mandarax/top.svg"
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Normal",
  26254. height: math.unit(25, "feet"),
  26255. default: true
  26256. },
  26257. ]
  26258. ))
  26259. characterMakers.push(() => makeCharacter(
  26260. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26261. {
  26262. front: {
  26263. height: math.unit(5, "feet"),
  26264. weight: math.unit(90, "lb"),
  26265. name: "Front",
  26266. image: {
  26267. source: "./media/characters/pixil/front.svg",
  26268. extra: 2000 / 1618,
  26269. bottom: 12.3 / 2011
  26270. }
  26271. },
  26272. },
  26273. [
  26274. {
  26275. name: "Normal",
  26276. height: math.unit(5, "feet"),
  26277. default: true
  26278. },
  26279. {
  26280. name: "Megamacro",
  26281. height: math.unit(10, "miles"),
  26282. },
  26283. ]
  26284. ))
  26285. characterMakers.push(() => makeCharacter(
  26286. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26287. {
  26288. front: {
  26289. height: math.unit(7 + 2 / 12, "feet"),
  26290. weight: math.unit(200, "lb"),
  26291. name: "Front",
  26292. image: {
  26293. source: "./media/characters/angel/front.svg",
  26294. extra: 1830 / 1737,
  26295. bottom: 22.6 / 1854,
  26296. }
  26297. },
  26298. },
  26299. [
  26300. {
  26301. name: "Normal",
  26302. height: math.unit(7 + 2 / 12, "feet"),
  26303. default: true
  26304. },
  26305. {
  26306. name: "Macro",
  26307. height: math.unit(1000, "feet")
  26308. },
  26309. {
  26310. name: "Megamacro",
  26311. height: math.unit(2, "miles")
  26312. },
  26313. {
  26314. name: "Gigamacro",
  26315. height: math.unit(20, "earths")
  26316. },
  26317. ]
  26318. ))
  26319. characterMakers.push(() => makeCharacter(
  26320. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26321. {
  26322. front: {
  26323. height: math.unit(5, "feet"),
  26324. weight: math.unit(180, "lb"),
  26325. name: "Front",
  26326. image: {
  26327. source: "./media/characters/mekana/front.svg",
  26328. extra: 1671 / 1605,
  26329. bottom: 3.5 / 1691
  26330. }
  26331. },
  26332. side: {
  26333. height: math.unit(5, "feet"),
  26334. weight: math.unit(180, "lb"),
  26335. name: "Side",
  26336. image: {
  26337. source: "./media/characters/mekana/side.svg",
  26338. extra: 1671 / 1605,
  26339. bottom: 3.5 / 1691
  26340. }
  26341. },
  26342. back: {
  26343. height: math.unit(5, "feet"),
  26344. weight: math.unit(180, "lb"),
  26345. name: "Back",
  26346. image: {
  26347. source: "./media/characters/mekana/back.svg",
  26348. extra: 1671 / 1605,
  26349. bottom: 3.5 / 1691
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Normal",
  26356. height: math.unit(5, "feet"),
  26357. default: true
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(4 + 6 / 12, "feet"),
  26366. weight: math.unit(80, "lb"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/pixie/front.svg",
  26370. extra: 1924 / 1825,
  26371. bottom: 22.4 / 1946
  26372. }
  26373. },
  26374. },
  26375. [
  26376. {
  26377. name: "Normal",
  26378. height: math.unit(4 + 6 / 12, "feet"),
  26379. default: true
  26380. },
  26381. {
  26382. name: "Macro",
  26383. height: math.unit(40, "feet")
  26384. },
  26385. ]
  26386. ))
  26387. characterMakers.push(() => makeCharacter(
  26388. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26389. {
  26390. front: {
  26391. height: math.unit(2.1, "meters"),
  26392. weight: math.unit(200, "lb"),
  26393. name: "Front",
  26394. image: {
  26395. source: "./media/characters/the-lascivious/front.svg",
  26396. extra: 1 / 0.893,
  26397. bottom: 3.5 / 573.7
  26398. }
  26399. },
  26400. },
  26401. [
  26402. {
  26403. name: "Human Scale",
  26404. height: math.unit(2.1, "meters")
  26405. },
  26406. {
  26407. name: "Wolxi Scale",
  26408. height: math.unit(46.2, "m"),
  26409. default: true
  26410. },
  26411. {
  26412. name: "Boinker of Buildings",
  26413. height: math.unit(10, "km")
  26414. },
  26415. {
  26416. name: "Shagger of Skyscrapers",
  26417. height: math.unit(40, "km")
  26418. },
  26419. {
  26420. name: "Banger of Boroughs",
  26421. height: math.unit(4000, "km")
  26422. },
  26423. {
  26424. name: "Screwer of States",
  26425. height: math.unit(100000, "km")
  26426. },
  26427. {
  26428. name: "Pounder of Planets",
  26429. height: math.unit(2000000, "km")
  26430. },
  26431. ]
  26432. ))
  26433. characterMakers.push(() => makeCharacter(
  26434. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26435. {
  26436. front: {
  26437. height: math.unit(6, "feet"),
  26438. weight: math.unit(150, "lb"),
  26439. name: "Front",
  26440. image: {
  26441. source: "./media/characters/aj/front.svg",
  26442. extra: 2039 / 1562,
  26443. bottom: 40 / 2079
  26444. }
  26445. },
  26446. },
  26447. [
  26448. {
  26449. name: "Normal",
  26450. height: math.unit(11 + 6 / 12, "feet"),
  26451. default: true
  26452. },
  26453. {
  26454. name: "Megamacro",
  26455. height: math.unit(60, "megameters")
  26456. },
  26457. ]
  26458. ))
  26459. characterMakers.push(() => makeCharacter(
  26460. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26461. {
  26462. side: {
  26463. height: math.unit(31 + 8 / 12, "feet"),
  26464. weight: math.unit(75000, "kg"),
  26465. name: "Side",
  26466. image: {
  26467. source: "./media/characters/koros/side.svg",
  26468. extra: 1442 / 1297,
  26469. bottom: 122.7 / 1562
  26470. }
  26471. },
  26472. dicksKingsCrown: {
  26473. height: math.unit(6, "feet"),
  26474. name: "Dicks (King's Crown)",
  26475. image: {
  26476. source: "./media/characters/koros/dicks-kings-crown.svg"
  26477. }
  26478. },
  26479. dicksTailSet: {
  26480. height: math.unit(3, "feet"),
  26481. name: "Dicks (Tail Set)",
  26482. image: {
  26483. source: "./media/characters/koros/dicks-tail-set.svg"
  26484. }
  26485. },
  26486. dickCumming: {
  26487. height: math.unit(7.98, "feet"),
  26488. name: "Dick (Cumming)",
  26489. image: {
  26490. source: "./media/characters/koros/dick-cumming.svg"
  26491. }
  26492. },
  26493. dicksBack: {
  26494. height: math.unit(5.9, "feet"),
  26495. name: "Dicks (Back)",
  26496. image: {
  26497. source: "./media/characters/koros/dicks-back.svg"
  26498. }
  26499. },
  26500. dicksFront: {
  26501. height: math.unit(3.72, "feet"),
  26502. name: "Dicks (Front)",
  26503. image: {
  26504. source: "./media/characters/koros/dicks-front.svg"
  26505. }
  26506. },
  26507. dicksPeeking: {
  26508. height: math.unit(3.0, "feet"),
  26509. name: "Dicks (Peeking)",
  26510. image: {
  26511. source: "./media/characters/koros/dicks-peeking.svg"
  26512. }
  26513. },
  26514. eye: {
  26515. height: math.unit(1.7, "feet"),
  26516. name: "Eye",
  26517. image: {
  26518. source: "./media/characters/koros/eye.svg"
  26519. }
  26520. },
  26521. headFront: {
  26522. height: math.unit(11.69, "feet"),
  26523. name: "Head (Front)",
  26524. image: {
  26525. source: "./media/characters/koros/head-front.svg"
  26526. }
  26527. },
  26528. headSide: {
  26529. height: math.unit(14, "feet"),
  26530. name: "Head (Side)",
  26531. image: {
  26532. source: "./media/characters/koros/head-side.svg"
  26533. }
  26534. },
  26535. leg: {
  26536. height: math.unit(17, "feet"),
  26537. name: "Leg",
  26538. image: {
  26539. source: "./media/characters/koros/leg.svg"
  26540. }
  26541. },
  26542. mawSide: {
  26543. height: math.unit(12.8, "feet"),
  26544. name: "Maw (Side)",
  26545. image: {
  26546. source: "./media/characters/koros/maw-side.svg"
  26547. }
  26548. },
  26549. mawSpitting: {
  26550. height: math.unit(17, "feet"),
  26551. name: "Maw (Spitting)",
  26552. image: {
  26553. source: "./media/characters/koros/maw-spitting.svg"
  26554. }
  26555. },
  26556. slit: {
  26557. height: math.unit(2.8, "feet"),
  26558. name: "Slit",
  26559. image: {
  26560. source: "./media/characters/koros/slit.svg"
  26561. }
  26562. },
  26563. stomach: {
  26564. height: math.unit(6.8, "feet"),
  26565. capacity: math.unit(20, "people"),
  26566. name: "Stomach",
  26567. image: {
  26568. source: "./media/characters/koros/stomach.svg"
  26569. }
  26570. },
  26571. wingspanBottom: {
  26572. height: math.unit(114, "feet"),
  26573. name: "Wingspan (Bottom)",
  26574. image: {
  26575. source: "./media/characters/koros/wingspan-bottom.svg"
  26576. }
  26577. },
  26578. wingspanTop: {
  26579. height: math.unit(104, "feet"),
  26580. name: "Wingspan (Top)",
  26581. image: {
  26582. source: "./media/characters/koros/wingspan-top.svg"
  26583. }
  26584. },
  26585. },
  26586. [
  26587. {
  26588. name: "Normal",
  26589. height: math.unit(31 + 8 / 12, "feet"),
  26590. default: true
  26591. },
  26592. ]
  26593. ))
  26594. characterMakers.push(() => makeCharacter(
  26595. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26596. {
  26597. front: {
  26598. height: math.unit(18 + 5 / 12, "feet"),
  26599. weight: math.unit(3750, "kg"),
  26600. name: "Front",
  26601. image: {
  26602. source: "./media/characters/vexx/front.svg",
  26603. extra: 426 / 396,
  26604. bottom: 31.5 / 458
  26605. }
  26606. },
  26607. maw: {
  26608. height: math.unit(6, "feet"),
  26609. name: "Maw",
  26610. image: {
  26611. source: "./media/characters/vexx/maw.svg"
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Normal",
  26618. height: math.unit(18 + 5 / 12, "feet"),
  26619. default: true
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26625. {
  26626. front: {
  26627. height: math.unit(17 + 6 / 12, "feet"),
  26628. weight: math.unit(150, "lb"),
  26629. name: "Front",
  26630. image: {
  26631. source: "./media/characters/baadra/front.svg",
  26632. extra: 1694/1553,
  26633. bottom: 179/1873
  26634. }
  26635. },
  26636. frontAlt: {
  26637. height: math.unit(17 + 6 / 12, "feet"),
  26638. weight: math.unit(150, "lb"),
  26639. name: "Front (Alt)",
  26640. image: {
  26641. source: "./media/characters/baadra/front-alt.svg",
  26642. extra: 3137 / 2890,
  26643. bottom: 168.4 / 3305
  26644. }
  26645. },
  26646. back: {
  26647. height: math.unit(17 + 6 / 12, "feet"),
  26648. weight: math.unit(150, "lb"),
  26649. name: "Back",
  26650. image: {
  26651. source: "./media/characters/baadra/back.svg",
  26652. extra: 3142 / 2890,
  26653. bottom: 220 / 3371
  26654. }
  26655. },
  26656. head: {
  26657. height: math.unit(5.45, "feet"),
  26658. name: "Head",
  26659. image: {
  26660. source: "./media/characters/baadra/head.svg"
  26661. }
  26662. },
  26663. headAngry: {
  26664. height: math.unit(4.95, "feet"),
  26665. name: "Head (Angry)",
  26666. image: {
  26667. source: "./media/characters/baadra/head-angry.svg"
  26668. }
  26669. },
  26670. headOpen: {
  26671. height: math.unit(6, "feet"),
  26672. name: "Head (Open)",
  26673. image: {
  26674. source: "./media/characters/baadra/head-open.svg"
  26675. }
  26676. },
  26677. },
  26678. [
  26679. {
  26680. name: "Normal",
  26681. height: math.unit(17 + 6 / 12, "feet"),
  26682. default: true
  26683. },
  26684. ]
  26685. ))
  26686. characterMakers.push(() => makeCharacter(
  26687. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26688. {
  26689. front: {
  26690. height: math.unit(7 + 3 / 12, "feet"),
  26691. weight: math.unit(180, "lb"),
  26692. name: "Front",
  26693. image: {
  26694. source: "./media/characters/juri/front.svg",
  26695. extra: 1401 / 1237,
  26696. bottom: 18.5 / 1418
  26697. }
  26698. },
  26699. side: {
  26700. height: math.unit(7 + 3 / 12, "feet"),
  26701. weight: math.unit(180, "lb"),
  26702. name: "Side",
  26703. image: {
  26704. source: "./media/characters/juri/side.svg",
  26705. extra: 1424 / 1242,
  26706. bottom: 18.5 / 1447
  26707. }
  26708. },
  26709. sitting: {
  26710. height: math.unit(6, "feet"),
  26711. weight: math.unit(180, "lb"),
  26712. name: "Sitting",
  26713. image: {
  26714. source: "./media/characters/juri/sitting.svg",
  26715. extra: 1270 / 1143,
  26716. bottom: 100 / 1343
  26717. }
  26718. },
  26719. back: {
  26720. height: math.unit(7 + 3 / 12, "feet"),
  26721. weight: math.unit(180, "lb"),
  26722. name: "Back",
  26723. image: {
  26724. source: "./media/characters/juri/back.svg",
  26725. extra: 1377 / 1240,
  26726. bottom: 23.7 / 1405
  26727. }
  26728. },
  26729. maw: {
  26730. height: math.unit(2.8, "feet"),
  26731. name: "Maw",
  26732. image: {
  26733. source: "./media/characters/juri/maw.svg"
  26734. }
  26735. },
  26736. stomach: {
  26737. height: math.unit(0.89, "feet"),
  26738. capacity: math.unit(4, "liters"),
  26739. name: "Stomach",
  26740. image: {
  26741. source: "./media/characters/juri/stomach.svg"
  26742. }
  26743. },
  26744. },
  26745. [
  26746. {
  26747. name: "Normal",
  26748. height: math.unit(7 + 3 / 12, "feet"),
  26749. default: true
  26750. },
  26751. ]
  26752. ))
  26753. characterMakers.push(() => makeCharacter(
  26754. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26755. {
  26756. fox: {
  26757. height: math.unit(5 + 6 / 12, "feet"),
  26758. weight: math.unit(140, "lb"),
  26759. name: "Fox",
  26760. image: {
  26761. source: "./media/characters/maxene-sita/fox.svg",
  26762. extra: 146 / 138,
  26763. bottom: 2.1 / 148.19
  26764. }
  26765. },
  26766. foxLaying: {
  26767. height: math.unit(1.70, "feet"),
  26768. weight: math.unit(140, "lb"),
  26769. name: "Fox (Laying)",
  26770. image: {
  26771. source: "./media/characters/maxene-sita/fox-laying.svg",
  26772. extra: 910 / 572,
  26773. bottom: 71 / 981
  26774. }
  26775. },
  26776. kitsune: {
  26777. height: math.unit(10, "feet"),
  26778. weight: math.unit(800, "lb"),
  26779. name: "Kitsune",
  26780. image: {
  26781. source: "./media/characters/maxene-sita/kitsune.svg",
  26782. extra: 185 / 176,
  26783. bottom: 4.7 / 189.9
  26784. }
  26785. },
  26786. hellhound: {
  26787. height: math.unit(10, "feet"),
  26788. weight: math.unit(700, "lb"),
  26789. name: "Hellhound",
  26790. image: {
  26791. source: "./media/characters/maxene-sita/hellhound.svg",
  26792. extra: 1600 / 1545,
  26793. bottom: 81 / 1681
  26794. }
  26795. },
  26796. },
  26797. [
  26798. {
  26799. name: "Normal",
  26800. height: math.unit(5 + 6 / 12, "feet"),
  26801. default: true
  26802. },
  26803. ]
  26804. ))
  26805. characterMakers.push(() => makeCharacter(
  26806. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26807. {
  26808. front: {
  26809. height: math.unit(3 + 4 / 12, "feet"),
  26810. weight: math.unit(70, "lb"),
  26811. name: "Front",
  26812. image: {
  26813. source: "./media/characters/maia/front.svg",
  26814. extra: 227 / 219.5,
  26815. bottom: 40 / 267
  26816. }
  26817. },
  26818. back: {
  26819. height: math.unit(3 + 4 / 12, "feet"),
  26820. weight: math.unit(70, "lb"),
  26821. name: "Back",
  26822. image: {
  26823. source: "./media/characters/maia/back.svg",
  26824. extra: 237 / 225
  26825. }
  26826. },
  26827. },
  26828. [
  26829. {
  26830. name: "Normal",
  26831. height: math.unit(3 + 4 / 12, "feet"),
  26832. default: true
  26833. },
  26834. ]
  26835. ))
  26836. characterMakers.push(() => makeCharacter(
  26837. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26838. {
  26839. front: {
  26840. height: math.unit(5 + 10 / 12, "feet"),
  26841. weight: math.unit(197, "lb"),
  26842. name: "Front",
  26843. image: {
  26844. source: "./media/characters/jabaro/front.svg",
  26845. extra: 225 / 216,
  26846. bottom: 5.06 / 230
  26847. }
  26848. },
  26849. back: {
  26850. height: math.unit(5 + 10 / 12, "feet"),
  26851. weight: math.unit(197, "lb"),
  26852. name: "Back",
  26853. image: {
  26854. source: "./media/characters/jabaro/back.svg",
  26855. extra: 225 / 219,
  26856. bottom: 1.9 / 227
  26857. }
  26858. },
  26859. },
  26860. [
  26861. {
  26862. name: "Normal",
  26863. height: math.unit(5 + 10 / 12, "feet"),
  26864. default: true
  26865. },
  26866. ]
  26867. ))
  26868. characterMakers.push(() => makeCharacter(
  26869. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26870. {
  26871. front: {
  26872. height: math.unit(5 + 8 / 12, "feet"),
  26873. weight: math.unit(139, "lb"),
  26874. name: "Front",
  26875. image: {
  26876. source: "./media/characters/risa/front.svg",
  26877. extra: 270 / 260,
  26878. bottom: 11.2 / 282
  26879. }
  26880. },
  26881. back: {
  26882. height: math.unit(5 + 8 / 12, "feet"),
  26883. weight: math.unit(139, "lb"),
  26884. name: "Back",
  26885. image: {
  26886. source: "./media/characters/risa/back.svg",
  26887. extra: 264 / 255,
  26888. bottom: 4 / 268
  26889. }
  26890. },
  26891. },
  26892. [
  26893. {
  26894. name: "Normal",
  26895. height: math.unit(5 + 8 / 12, "feet"),
  26896. default: true
  26897. },
  26898. ]
  26899. ))
  26900. characterMakers.push(() => makeCharacter(
  26901. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26902. {
  26903. front: {
  26904. height: math.unit(2 + 11 / 12, "feet"),
  26905. weight: math.unit(30, "lb"),
  26906. name: "Front",
  26907. image: {
  26908. source: "./media/characters/weatley/front.svg",
  26909. bottom: 10.7 / 414,
  26910. extra: 403.5 / 362
  26911. }
  26912. },
  26913. back: {
  26914. height: math.unit(2 + 11 / 12, "feet"),
  26915. weight: math.unit(30, "lb"),
  26916. name: "Back",
  26917. image: {
  26918. source: "./media/characters/weatley/back.svg",
  26919. bottom: 10.7 / 414,
  26920. extra: 403.5 / 362
  26921. }
  26922. },
  26923. },
  26924. [
  26925. {
  26926. name: "Normal",
  26927. height: math.unit(2 + 11 / 12, "feet"),
  26928. default: true
  26929. },
  26930. ]
  26931. ))
  26932. characterMakers.push(() => makeCharacter(
  26933. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26934. {
  26935. front: {
  26936. height: math.unit(5 + 2 / 12, "feet"),
  26937. weight: math.unit(50, "kg"),
  26938. name: "Front",
  26939. image: {
  26940. source: "./media/characters/mercury-crescent/front.svg",
  26941. extra: 1088 / 1033,
  26942. bottom: 18.9 / 1109
  26943. }
  26944. },
  26945. },
  26946. [
  26947. {
  26948. name: "Normal",
  26949. height: math.unit(5 + 2 / 12, "feet"),
  26950. default: true
  26951. },
  26952. ]
  26953. ))
  26954. characterMakers.push(() => makeCharacter(
  26955. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26956. {
  26957. front: {
  26958. height: math.unit(2, "feet"),
  26959. weight: math.unit(15, "kg"),
  26960. name: "Front",
  26961. image: {
  26962. source: "./media/characters/diamond-jones/front.svg",
  26963. extra: 727/723,
  26964. bottom: 46/773
  26965. }
  26966. },
  26967. },
  26968. [
  26969. {
  26970. name: "Normal",
  26971. height: math.unit(2, "feet"),
  26972. default: true
  26973. },
  26974. ]
  26975. ))
  26976. characterMakers.push(() => makeCharacter(
  26977. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26978. {
  26979. front: {
  26980. height: math.unit(3, "feet"),
  26981. weight: math.unit(30, "kg"),
  26982. name: "Front",
  26983. image: {
  26984. source: "./media/characters/sweet-bit/front.svg",
  26985. extra: 675 / 567,
  26986. bottom: 27.7 / 703
  26987. }
  26988. },
  26989. },
  26990. [
  26991. {
  26992. name: "Normal",
  26993. height: math.unit(3, "feet"),
  26994. default: true
  26995. },
  26996. ]
  26997. ))
  26998. characterMakers.push(() => makeCharacter(
  26999. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27000. {
  27001. side: {
  27002. height: math.unit(9.178, "feet"),
  27003. weight: math.unit(500, "lb"),
  27004. name: "Side",
  27005. image: {
  27006. source: "./media/characters/umbrazen/side.svg",
  27007. extra: 1730 / 1473,
  27008. bottom: 34.6 / 1765
  27009. }
  27010. },
  27011. },
  27012. [
  27013. {
  27014. name: "Normal",
  27015. height: math.unit(9.178, "feet"),
  27016. default: true
  27017. },
  27018. ]
  27019. ))
  27020. characterMakers.push(() => makeCharacter(
  27021. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27022. {
  27023. front: {
  27024. height: math.unit(10, "feet"),
  27025. weight: math.unit(750, "lb"),
  27026. name: "Front",
  27027. image: {
  27028. source: "./media/characters/arlist/front.svg",
  27029. extra: 961 / 778,
  27030. bottom: 6.2 / 986
  27031. }
  27032. },
  27033. },
  27034. [
  27035. {
  27036. name: "Normal",
  27037. height: math.unit(10, "feet"),
  27038. default: true
  27039. },
  27040. ]
  27041. ))
  27042. characterMakers.push(() => makeCharacter(
  27043. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27044. {
  27045. front: {
  27046. height: math.unit(5 + 1 / 12, "feet"),
  27047. weight: math.unit(110, "lb"),
  27048. name: "Front",
  27049. image: {
  27050. source: "./media/characters/aradel/front.svg",
  27051. extra: 324 / 303,
  27052. bottom: 3.6 / 329.4
  27053. }
  27054. },
  27055. },
  27056. [
  27057. {
  27058. name: "Normal",
  27059. height: math.unit(5 + 1 / 12, "feet"),
  27060. default: true
  27061. },
  27062. ]
  27063. ))
  27064. characterMakers.push(() => makeCharacter(
  27065. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27066. {
  27067. dressed: {
  27068. height: math.unit(3 + 8 / 12, "feet"),
  27069. weight: math.unit(50, "lb"),
  27070. name: "Dressed",
  27071. image: {
  27072. source: "./media/characters/serryn/dressed.svg",
  27073. extra: 1792 / 1656,
  27074. bottom: 43.5 / 1840
  27075. }
  27076. },
  27077. nude: {
  27078. height: math.unit(3 + 8 / 12, "feet"),
  27079. weight: math.unit(50, "lb"),
  27080. name: "Nude",
  27081. image: {
  27082. source: "./media/characters/serryn/nude.svg",
  27083. extra: 1792 / 1656,
  27084. bottom: 43.5 / 1840
  27085. }
  27086. },
  27087. },
  27088. [
  27089. {
  27090. name: "Normal",
  27091. height: math.unit(3 + 8 / 12, "feet"),
  27092. default: true
  27093. },
  27094. ]
  27095. ))
  27096. characterMakers.push(() => makeCharacter(
  27097. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27098. {
  27099. front: {
  27100. height: math.unit(7 + 10 / 12, "feet"),
  27101. weight: math.unit(255, "lb"),
  27102. name: "Front",
  27103. image: {
  27104. source: "./media/characters/xavier-thyme/front.svg",
  27105. extra: 3733 / 3642,
  27106. bottom: 131 / 3869
  27107. }
  27108. },
  27109. frontRaven: {
  27110. height: math.unit(7 + 10 / 12, "feet"),
  27111. weight: math.unit(255, "lb"),
  27112. name: "Front (Raven)",
  27113. image: {
  27114. source: "./media/characters/xavier-thyme/front-raven.svg",
  27115. extra: 4385 / 3642,
  27116. bottom: 131 / 4517
  27117. }
  27118. },
  27119. },
  27120. [
  27121. {
  27122. name: "Normal",
  27123. height: math.unit(7 + 10 / 12, "feet"),
  27124. default: true
  27125. },
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27130. {
  27131. front: {
  27132. height: math.unit(1.6, "m"),
  27133. weight: math.unit(50, "kg"),
  27134. name: "Front",
  27135. image: {
  27136. source: "./media/characters/kiki/front.svg",
  27137. extra: 4682 / 3610,
  27138. bottom: 115 / 4777
  27139. }
  27140. },
  27141. },
  27142. [
  27143. {
  27144. name: "Normal",
  27145. height: math.unit(1.6, "meters"),
  27146. default: true
  27147. },
  27148. ]
  27149. ))
  27150. characterMakers.push(() => makeCharacter(
  27151. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27152. {
  27153. front: {
  27154. height: math.unit(50, "m"),
  27155. weight: math.unit(500, "tonnes"),
  27156. name: "Front",
  27157. image: {
  27158. source: "./media/characters/ryoko/front.svg",
  27159. extra: 4632 / 3926,
  27160. bottom: 193 / 4823
  27161. }
  27162. },
  27163. },
  27164. [
  27165. {
  27166. name: "Normal",
  27167. height: math.unit(50, "meters"),
  27168. default: true
  27169. },
  27170. ]
  27171. ))
  27172. characterMakers.push(() => makeCharacter(
  27173. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27174. {
  27175. front: {
  27176. height: math.unit(30, "m"),
  27177. weight: math.unit(22, "tonnes"),
  27178. name: "Front",
  27179. image: {
  27180. source: "./media/characters/elio/front.svg",
  27181. extra: 4582 / 3720,
  27182. bottom: 236 / 4828
  27183. }
  27184. },
  27185. },
  27186. [
  27187. {
  27188. name: "Normal",
  27189. height: math.unit(30, "meters"),
  27190. default: true
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(6 + 3 / 12, "feet"),
  27199. weight: math.unit(120, "lb"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/azura/front.svg",
  27203. extra: 1149 / 1135,
  27204. bottom: 45 / 1194
  27205. }
  27206. },
  27207. frontClothed: {
  27208. height: math.unit(6 + 3 / 12, "feet"),
  27209. weight: math.unit(120, "lb"),
  27210. name: "Front (Clothed)",
  27211. image: {
  27212. source: "./media/characters/azura/front-clothed.svg",
  27213. extra: 1149 / 1135,
  27214. bottom: 45 / 1194
  27215. }
  27216. },
  27217. },
  27218. [
  27219. {
  27220. name: "Normal",
  27221. height: math.unit(6 + 3 / 12, "feet"),
  27222. default: true
  27223. },
  27224. {
  27225. name: "Macro",
  27226. height: math.unit(20 + 6 / 12, "feet")
  27227. },
  27228. {
  27229. name: "Megamacro",
  27230. height: math.unit(12, "miles")
  27231. },
  27232. {
  27233. name: "Gigamacro",
  27234. height: math.unit(10000, "miles")
  27235. },
  27236. {
  27237. name: "Teramacro",
  27238. height: math.unit(900000, "miles")
  27239. },
  27240. ]
  27241. ))
  27242. characterMakers.push(() => makeCharacter(
  27243. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27244. {
  27245. front: {
  27246. height: math.unit(12, "feet"),
  27247. weight: math.unit(1, "ton"),
  27248. capacity: math.unit(660000, "gallons"),
  27249. name: "Front",
  27250. image: {
  27251. source: "./media/characters/zeus/front.svg",
  27252. extra: 5005 / 4717,
  27253. bottom: 363 / 5388
  27254. }
  27255. },
  27256. },
  27257. [
  27258. {
  27259. name: "Normal",
  27260. height: math.unit(12, "feet")
  27261. },
  27262. {
  27263. name: "Preferred Size",
  27264. height: math.unit(0.5, "miles"),
  27265. default: true
  27266. },
  27267. {
  27268. name: "Giga Horse",
  27269. height: math.unit(300, "miles")
  27270. },
  27271. {
  27272. name: "Riding Planets",
  27273. height: math.unit(30, "megameters")
  27274. },
  27275. {
  27276. name: "Cosmic Giant",
  27277. height: math.unit(3, "zettameters")
  27278. },
  27279. {
  27280. name: "Breeding God",
  27281. height: math.unit(9.92e22, "yottameters")
  27282. },
  27283. ]
  27284. ))
  27285. characterMakers.push(() => makeCharacter(
  27286. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27287. {
  27288. side: {
  27289. height: math.unit(9, "feet"),
  27290. weight: math.unit(1500, "kg"),
  27291. name: "Side",
  27292. image: {
  27293. source: "./media/characters/fang/side.svg",
  27294. extra: 924 / 866,
  27295. bottom: 47.5 / 972.3
  27296. }
  27297. },
  27298. },
  27299. [
  27300. {
  27301. name: "Normal",
  27302. height: math.unit(9, "feet"),
  27303. default: true
  27304. },
  27305. {
  27306. name: "Macro",
  27307. height: math.unit(75 + 6 / 12, "feet")
  27308. },
  27309. {
  27310. name: "Teramacro",
  27311. height: math.unit(50000, "miles")
  27312. },
  27313. ]
  27314. ))
  27315. characterMakers.push(() => makeCharacter(
  27316. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27317. {
  27318. front: {
  27319. height: math.unit(10, "feet"),
  27320. weight: math.unit(2, "tons"),
  27321. name: "Front",
  27322. image: {
  27323. source: "./media/characters/rekhit/front.svg",
  27324. extra: 2796 / 2590,
  27325. bottom: 225 / 3022
  27326. }
  27327. },
  27328. },
  27329. [
  27330. {
  27331. name: "Normal",
  27332. height: math.unit(10, "feet"),
  27333. default: true
  27334. },
  27335. {
  27336. name: "Macro",
  27337. height: math.unit(500, "feet")
  27338. },
  27339. ]
  27340. ))
  27341. characterMakers.push(() => makeCharacter(
  27342. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27343. {
  27344. front: {
  27345. height: math.unit(7 + 6.451 / 12, "feet"),
  27346. weight: math.unit(310, "lb"),
  27347. name: "Front",
  27348. image: {
  27349. source: "./media/characters/dahlia-verrick/front.svg",
  27350. extra: 1488 / 1365,
  27351. bottom: 6.2 / 1495
  27352. }
  27353. },
  27354. back: {
  27355. height: math.unit(7 + 6.451 / 12, "feet"),
  27356. weight: math.unit(310, "lb"),
  27357. name: "Back",
  27358. image: {
  27359. source: "./media/characters/dahlia-verrick/back.svg",
  27360. extra: 1472 / 1351,
  27361. bottom: 5.28 / 1477
  27362. }
  27363. },
  27364. frontBusiness: {
  27365. height: math.unit(7 + 6.451 / 12, "feet"),
  27366. weight: math.unit(200, "lb"),
  27367. name: "Front (Business)",
  27368. image: {
  27369. source: "./media/characters/dahlia-verrick/front-business.svg",
  27370. extra: 1478 / 1381,
  27371. bottom: 5.5 / 1484
  27372. }
  27373. },
  27374. frontCasual: {
  27375. height: math.unit(7 + 6.451 / 12, "feet"),
  27376. weight: math.unit(200, "lb"),
  27377. name: "Front (Casual)",
  27378. image: {
  27379. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27380. extra: 1478 / 1381,
  27381. bottom: 5.5 / 1484
  27382. }
  27383. },
  27384. },
  27385. [
  27386. {
  27387. name: "Travel-Sized",
  27388. height: math.unit(7.45, "inches")
  27389. },
  27390. {
  27391. name: "Normal",
  27392. height: math.unit(7 + 6.451 / 12, "feet"),
  27393. default: true
  27394. },
  27395. {
  27396. name: "Hitting the Town",
  27397. height: math.unit(37 + 8 / 12, "feet")
  27398. },
  27399. {
  27400. name: "Stomp in the Suburbs",
  27401. height: math.unit(964 + 9.728 / 12, "feet")
  27402. },
  27403. {
  27404. name: "Sit on the City",
  27405. height: math.unit(61747 + 10.592 / 12, "feet")
  27406. },
  27407. {
  27408. name: "Glomp the Globe",
  27409. height: math.unit(252919327 + 4.832 / 12, "feet")
  27410. },
  27411. ]
  27412. ))
  27413. characterMakers.push(() => makeCharacter(
  27414. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27415. {
  27416. front: {
  27417. height: math.unit(6 + 4 / 12, "feet"),
  27418. weight: math.unit(320, "lb"),
  27419. name: "Front",
  27420. image: {
  27421. source: "./media/characters/balina-mahigan/front.svg",
  27422. extra: 447 / 428,
  27423. bottom: 18 / 466
  27424. }
  27425. },
  27426. back: {
  27427. height: math.unit(6 + 4 / 12, "feet"),
  27428. weight: math.unit(320, "lb"),
  27429. name: "Back",
  27430. image: {
  27431. source: "./media/characters/balina-mahigan/back.svg",
  27432. extra: 445 / 428,
  27433. bottom: 4.07 / 448
  27434. }
  27435. },
  27436. arm: {
  27437. height: math.unit(1.88, "feet"),
  27438. name: "Arm",
  27439. image: {
  27440. source: "./media/characters/balina-mahigan/arm.svg"
  27441. }
  27442. },
  27443. backPort: {
  27444. height: math.unit(0.685, "feet"),
  27445. name: "Back Port",
  27446. image: {
  27447. source: "./media/characters/balina-mahigan/back-port.svg"
  27448. }
  27449. },
  27450. hoofpaw: {
  27451. height: math.unit(1.41, "feet"),
  27452. name: "Hoofpaw",
  27453. image: {
  27454. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27455. }
  27456. },
  27457. leftHandBack: {
  27458. height: math.unit(0.938, "feet"),
  27459. name: "Left Hand (Back)",
  27460. image: {
  27461. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27462. }
  27463. },
  27464. leftHandFront: {
  27465. height: math.unit(0.938, "feet"),
  27466. name: "Left Hand (Front)",
  27467. image: {
  27468. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27469. }
  27470. },
  27471. rightHandBack: {
  27472. height: math.unit(0.95, "feet"),
  27473. name: "Right Hand (Back)",
  27474. image: {
  27475. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27476. }
  27477. },
  27478. rightHandFront: {
  27479. height: math.unit(0.95, "feet"),
  27480. name: "Right Hand (Front)",
  27481. image: {
  27482. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27483. }
  27484. },
  27485. },
  27486. [
  27487. {
  27488. name: "Normal",
  27489. height: math.unit(6 + 4 / 12, "feet"),
  27490. default: true
  27491. },
  27492. ]
  27493. ))
  27494. characterMakers.push(() => makeCharacter(
  27495. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27496. {
  27497. front: {
  27498. height: math.unit(6, "feet"),
  27499. weight: math.unit(320, "lb"),
  27500. name: "Front",
  27501. image: {
  27502. source: "./media/characters/balina-mejeri/front.svg",
  27503. extra: 517 / 488,
  27504. bottom: 44.2 / 561
  27505. }
  27506. },
  27507. },
  27508. [
  27509. {
  27510. name: "Normal",
  27511. height: math.unit(6 + 4 / 12, "feet")
  27512. },
  27513. {
  27514. name: "Business",
  27515. height: math.unit(155, "feet"),
  27516. default: true
  27517. },
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27522. {
  27523. kneeling: {
  27524. height: math.unit(6 + 4 / 12, "feet"),
  27525. weight: math.unit(300 * 20, "lb"),
  27526. name: "Kneeling",
  27527. image: {
  27528. source: "./media/characters/balbarian/kneeling.svg",
  27529. extra: 922 / 862,
  27530. bottom: 42.4 / 965
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Normal",
  27537. height: math.unit(6 + 4 / 12, "feet")
  27538. },
  27539. {
  27540. name: "Treasured",
  27541. height: math.unit(18 + 9 / 12, "feet"),
  27542. default: true
  27543. },
  27544. {
  27545. name: "Macro",
  27546. height: math.unit(900, "feet")
  27547. },
  27548. ]
  27549. ))
  27550. characterMakers.push(() => makeCharacter(
  27551. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27552. {
  27553. front: {
  27554. height: math.unit(6 + 4 / 12, "feet"),
  27555. weight: math.unit(325, "lb"),
  27556. name: "Front",
  27557. image: {
  27558. source: "./media/characters/balina-amarini/front.svg",
  27559. extra: 415 / 403,
  27560. bottom: 19 / 433.4
  27561. }
  27562. },
  27563. back: {
  27564. height: math.unit(6 + 4 / 12, "feet"),
  27565. weight: math.unit(325, "lb"),
  27566. name: "Back",
  27567. image: {
  27568. source: "./media/characters/balina-amarini/back.svg",
  27569. extra: 415 / 403,
  27570. bottom: 13.5 / 432
  27571. }
  27572. },
  27573. overdrive: {
  27574. height: math.unit(6 + 4 / 12, "feet"),
  27575. weight: math.unit(400, "lb"),
  27576. name: "Overdrive",
  27577. image: {
  27578. source: "./media/characters/balina-amarini/overdrive.svg",
  27579. extra: 269 / 259,
  27580. bottom: 12 / 282
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Boom",
  27587. height: math.unit(9 + 10 / 12, "feet"),
  27588. default: true
  27589. },
  27590. {
  27591. name: "Macro",
  27592. height: math.unit(280, "feet")
  27593. },
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27598. {
  27599. goddess: {
  27600. height: math.unit(600, "feet"),
  27601. weight: math.unit(2000000, "tons"),
  27602. name: "Goddess",
  27603. image: {
  27604. source: "./media/characters/lady-kubwa/goddess.svg",
  27605. extra: 1240.5 / 1223,
  27606. bottom: 22 / 1263
  27607. }
  27608. },
  27609. goddesser: {
  27610. height: math.unit(900, "feet"),
  27611. weight: math.unit(20000000, "lb"),
  27612. name: "Goddess-er",
  27613. image: {
  27614. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27615. extra: 899 / 888,
  27616. bottom: 12.6 / 912
  27617. }
  27618. },
  27619. },
  27620. [
  27621. {
  27622. name: "Macro",
  27623. height: math.unit(600, "feet"),
  27624. default: true
  27625. },
  27626. {
  27627. name: "Megamacro",
  27628. height: math.unit(250, "miles")
  27629. },
  27630. ]
  27631. ))
  27632. characterMakers.push(() => makeCharacter(
  27633. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27634. {
  27635. front: {
  27636. height: math.unit(7 + 7 / 12, "feet"),
  27637. weight: math.unit(250, "lb"),
  27638. name: "Front",
  27639. image: {
  27640. source: "./media/characters/tala-grovehorn/front.svg",
  27641. extra: 2636 / 2525,
  27642. bottom: 147 / 2781
  27643. }
  27644. },
  27645. back: {
  27646. height: math.unit(7 + 7 / 12, "feet"),
  27647. weight: math.unit(250, "lb"),
  27648. name: "Back",
  27649. image: {
  27650. source: "./media/characters/tala-grovehorn/back.svg",
  27651. extra: 2635 / 2539,
  27652. bottom: 100 / 2732.8
  27653. }
  27654. },
  27655. mouth: {
  27656. height: math.unit(1.15, "feet"),
  27657. name: "Mouth",
  27658. image: {
  27659. source: "./media/characters/tala-grovehorn/mouth.svg"
  27660. }
  27661. },
  27662. dick: {
  27663. height: math.unit(2.36, "feet"),
  27664. name: "Dick",
  27665. image: {
  27666. source: "./media/characters/tala-grovehorn/dick.svg"
  27667. }
  27668. },
  27669. slit: {
  27670. height: math.unit(0.61, "feet"),
  27671. name: "Slit",
  27672. image: {
  27673. source: "./media/characters/tala-grovehorn/slit.svg"
  27674. }
  27675. },
  27676. },
  27677. [
  27678. ]
  27679. ))
  27680. characterMakers.push(() => makeCharacter(
  27681. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27682. {
  27683. front: {
  27684. height: math.unit(7 + 7 / 12, "feet"),
  27685. weight: math.unit(225, "lb"),
  27686. name: "Front",
  27687. image: {
  27688. source: "./media/characters/epona/front.svg",
  27689. extra: 2445 / 2290,
  27690. bottom: 251 / 2696
  27691. }
  27692. },
  27693. back: {
  27694. height: math.unit(7 + 7 / 12, "feet"),
  27695. weight: math.unit(225, "lb"),
  27696. name: "Back",
  27697. image: {
  27698. source: "./media/characters/epona/back.svg",
  27699. extra: 2546 / 2408,
  27700. bottom: 44 / 2589
  27701. }
  27702. },
  27703. genitals: {
  27704. height: math.unit(1.5, "feet"),
  27705. name: "Genitals",
  27706. image: {
  27707. source: "./media/characters/epona/genitals.svg"
  27708. }
  27709. },
  27710. },
  27711. [
  27712. {
  27713. name: "Normal",
  27714. height: math.unit(7 + 7 / 12, "feet"),
  27715. default: true
  27716. },
  27717. ]
  27718. ))
  27719. characterMakers.push(() => makeCharacter(
  27720. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27721. {
  27722. front: {
  27723. height: math.unit(7, "feet"),
  27724. weight: math.unit(518, "lb"),
  27725. name: "Front",
  27726. image: {
  27727. source: "./media/characters/avia-bloodbourn/front.svg",
  27728. extra: 1466 / 1350,
  27729. bottom: 65 / 1527
  27730. }
  27731. },
  27732. },
  27733. [
  27734. ]
  27735. ))
  27736. characterMakers.push(() => makeCharacter(
  27737. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27738. {
  27739. front: {
  27740. height: math.unit(9.35, "feet"),
  27741. weight: math.unit(600, "lb"),
  27742. name: "Front",
  27743. image: {
  27744. source: "./media/characters/amera/front.svg",
  27745. extra: 891 / 818,
  27746. bottom: 30 / 922.7
  27747. }
  27748. },
  27749. back: {
  27750. height: math.unit(9.35, "feet"),
  27751. weight: math.unit(600, "lb"),
  27752. name: "Back",
  27753. image: {
  27754. source: "./media/characters/amera/back.svg",
  27755. extra: 876 / 824,
  27756. bottom: 6.8 / 884
  27757. }
  27758. },
  27759. dick: {
  27760. height: math.unit(2.14, "feet"),
  27761. name: "Dick",
  27762. image: {
  27763. source: "./media/characters/amera/dick.svg"
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(9.35, "feet"),
  27771. default: true
  27772. },
  27773. ]
  27774. ))
  27775. characterMakers.push(() => makeCharacter(
  27776. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27777. {
  27778. kneeling: {
  27779. height: math.unit(3 + 4 / 12, "feet"),
  27780. weight: math.unit(90, "lb"),
  27781. name: "Kneeling",
  27782. image: {
  27783. source: "./media/characters/rosewen/kneeling.svg",
  27784. extra: 1835 / 1571,
  27785. bottom: 27.7 / 1862
  27786. }
  27787. },
  27788. },
  27789. [
  27790. {
  27791. name: "Normal",
  27792. height: math.unit(3 + 4 / 12, "feet"),
  27793. default: true
  27794. },
  27795. ]
  27796. ))
  27797. characterMakers.push(() => makeCharacter(
  27798. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27799. {
  27800. front: {
  27801. height: math.unit(5 + 10 / 12, "feet"),
  27802. weight: math.unit(200, "lb"),
  27803. name: "Front",
  27804. image: {
  27805. source: "./media/characters/sabah/front.svg",
  27806. extra: 849 / 763,
  27807. bottom: 33.9 / 881
  27808. }
  27809. },
  27810. },
  27811. [
  27812. {
  27813. name: "Normal",
  27814. height: math.unit(5 + 10 / 12, "feet"),
  27815. default: true
  27816. },
  27817. ]
  27818. ))
  27819. characterMakers.push(() => makeCharacter(
  27820. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27821. {
  27822. front: {
  27823. height: math.unit(3 + 5 / 12, "feet"),
  27824. weight: math.unit(40, "kg"),
  27825. name: "Front",
  27826. image: {
  27827. source: "./media/characters/purple-flame/front.svg",
  27828. extra: 1577 / 1412,
  27829. bottom: 97 / 1694
  27830. }
  27831. },
  27832. frontDressed: {
  27833. height: math.unit(3 + 5 / 12, "feet"),
  27834. weight: math.unit(40, "kg"),
  27835. name: "Front (Dressed)",
  27836. image: {
  27837. source: "./media/characters/purple-flame/front-dressed.svg",
  27838. extra: 1577 / 1412,
  27839. bottom: 97 / 1694
  27840. }
  27841. },
  27842. headphones: {
  27843. height: math.unit(0.85, "feet"),
  27844. name: "Headphones",
  27845. image: {
  27846. source: "./media/characters/purple-flame/headphones.svg"
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Really Small",
  27853. height: math.unit(5, "cm")
  27854. },
  27855. {
  27856. name: "Micro",
  27857. height: math.unit(1 + 5 / 12, "feet")
  27858. },
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(3 + 5 / 12, "feet"),
  27862. default: true
  27863. },
  27864. {
  27865. name: "Minimacro",
  27866. height: math.unit(125, "feet")
  27867. },
  27868. {
  27869. name: "Macro",
  27870. height: math.unit(0.5, "miles")
  27871. },
  27872. {
  27873. name: "Megamacro",
  27874. height: math.unit(50, "miles")
  27875. },
  27876. {
  27877. name: "Gigantic",
  27878. height: math.unit(750, "miles")
  27879. },
  27880. {
  27881. name: "Planetary",
  27882. height: math.unit(15000, "miles")
  27883. },
  27884. ]
  27885. ))
  27886. characterMakers.push(() => makeCharacter(
  27887. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27888. {
  27889. front: {
  27890. height: math.unit(14, "feet"),
  27891. weight: math.unit(959, "lb"),
  27892. name: "Front",
  27893. image: {
  27894. source: "./media/characters/arsenal/front.svg",
  27895. extra: 2357 / 2157,
  27896. bottom: 93 / 2458
  27897. }
  27898. },
  27899. },
  27900. [
  27901. {
  27902. name: "Normal",
  27903. height: math.unit(14, "feet"),
  27904. default: true
  27905. },
  27906. ]
  27907. ))
  27908. characterMakers.push(() => makeCharacter(
  27909. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27910. {
  27911. front: {
  27912. height: math.unit(6, "feet"),
  27913. weight: math.unit(150, "lb"),
  27914. name: "Front",
  27915. image: {
  27916. source: "./media/characters/adira/front.svg",
  27917. extra: 1078 / 1029,
  27918. bottom: 87 / 1166
  27919. }
  27920. },
  27921. },
  27922. [
  27923. {
  27924. name: "Micro",
  27925. height: math.unit(4, "inches"),
  27926. default: true
  27927. },
  27928. {
  27929. name: "Macro",
  27930. height: math.unit(50, "feet")
  27931. },
  27932. ]
  27933. ))
  27934. characterMakers.push(() => makeCharacter(
  27935. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27936. {
  27937. front: {
  27938. height: math.unit(16, "feet"),
  27939. weight: math.unit(1000, "lb"),
  27940. name: "Front",
  27941. image: {
  27942. source: "./media/characters/grim/front.svg",
  27943. extra: 622 / 614,
  27944. bottom: 18.1 / 642
  27945. }
  27946. },
  27947. back: {
  27948. height: math.unit(16, "feet"),
  27949. weight: math.unit(1000, "lb"),
  27950. name: "Back",
  27951. image: {
  27952. source: "./media/characters/grim/back.svg",
  27953. extra: 610.6 / 602,
  27954. bottom: 40.8 / 652
  27955. }
  27956. },
  27957. hunched: {
  27958. height: math.unit(9.75, "feet"),
  27959. weight: math.unit(1000, "lb"),
  27960. name: "Hunched",
  27961. image: {
  27962. source: "./media/characters/grim/hunched.svg",
  27963. extra: 304 / 297,
  27964. bottom: 35.4 / 394
  27965. }
  27966. },
  27967. },
  27968. [
  27969. {
  27970. name: "Normal",
  27971. height: math.unit(16, "feet"),
  27972. default: true
  27973. },
  27974. ]
  27975. ))
  27976. characterMakers.push(() => makeCharacter(
  27977. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27978. {
  27979. front: {
  27980. height: math.unit(2.3, "meters"),
  27981. weight: math.unit(300, "lb"),
  27982. name: "Front",
  27983. image: {
  27984. source: "./media/characters/sinja/front-sfw.svg",
  27985. extra: 1393 / 1294,
  27986. bottom: 70 / 1463
  27987. }
  27988. },
  27989. frontNsfw: {
  27990. height: math.unit(2.3, "meters"),
  27991. weight: math.unit(300, "lb"),
  27992. name: "Front (NSFW)",
  27993. image: {
  27994. source: "./media/characters/sinja/front-nsfw.svg",
  27995. extra: 1393 / 1294,
  27996. bottom: 70 / 1463
  27997. }
  27998. },
  27999. back: {
  28000. height: math.unit(2.3, "meters"),
  28001. weight: math.unit(300, "lb"),
  28002. name: "Back",
  28003. image: {
  28004. source: "./media/characters/sinja/back.svg",
  28005. extra: 1393 / 1294,
  28006. bottom: 70 / 1463
  28007. }
  28008. },
  28009. head: {
  28010. height: math.unit(1.771, "feet"),
  28011. name: "Head",
  28012. image: {
  28013. source: "./media/characters/sinja/head.svg"
  28014. }
  28015. },
  28016. slit: {
  28017. height: math.unit(0.8, "feet"),
  28018. name: "Slit",
  28019. image: {
  28020. source: "./media/characters/sinja/slit.svg"
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(2.3, "meters")
  28028. },
  28029. {
  28030. name: "Macro",
  28031. height: math.unit(91, "meters"),
  28032. default: true
  28033. },
  28034. {
  28035. name: "Megamacro",
  28036. height: math.unit(91440, "meters")
  28037. },
  28038. {
  28039. name: "Gigamacro",
  28040. height: math.unit(60960000, "meters")
  28041. },
  28042. {
  28043. name: "Teramacro",
  28044. height: math.unit(9144000000, "meters")
  28045. },
  28046. ]
  28047. ))
  28048. characterMakers.push(() => makeCharacter(
  28049. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28050. {
  28051. front: {
  28052. height: math.unit(1.7, "meters"),
  28053. weight: math.unit(130, "lb"),
  28054. name: "Front",
  28055. image: {
  28056. source: "./media/characters/kyu/front.svg",
  28057. extra: 415 / 395,
  28058. bottom: 5 / 420
  28059. }
  28060. },
  28061. head: {
  28062. height: math.unit(1.75, "feet"),
  28063. name: "Head",
  28064. image: {
  28065. source: "./media/characters/kyu/head.svg"
  28066. }
  28067. },
  28068. foot: {
  28069. height: math.unit(0.81, "feet"),
  28070. name: "Foot",
  28071. image: {
  28072. source: "./media/characters/kyu/foot.svg"
  28073. }
  28074. },
  28075. },
  28076. [
  28077. {
  28078. name: "Normal",
  28079. height: math.unit(1.7, "meters")
  28080. },
  28081. {
  28082. name: "Macro",
  28083. height: math.unit(131, "feet"),
  28084. default: true
  28085. },
  28086. {
  28087. name: "Megamacro",
  28088. height: math.unit(91440, "meters")
  28089. },
  28090. {
  28091. name: "Gigamacro",
  28092. height: math.unit(60960000, "meters")
  28093. },
  28094. {
  28095. name: "Teramacro",
  28096. height: math.unit(9144000000, "meters")
  28097. },
  28098. ]
  28099. ))
  28100. characterMakers.push(() => makeCharacter(
  28101. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28102. {
  28103. front: {
  28104. height: math.unit(7 + 1 / 12, "feet"),
  28105. weight: math.unit(250, "lb"),
  28106. name: "Front",
  28107. image: {
  28108. source: "./media/characters/joey/front.svg",
  28109. extra: 1791 / 1537,
  28110. bottom: 28 / 1816
  28111. }
  28112. },
  28113. },
  28114. [
  28115. {
  28116. name: "Micro",
  28117. height: math.unit(3, "inches")
  28118. },
  28119. {
  28120. name: "Normal",
  28121. height: math.unit(7 + 1 / 12, "feet"),
  28122. default: true
  28123. },
  28124. ]
  28125. ))
  28126. characterMakers.push(() => makeCharacter(
  28127. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28128. {
  28129. front: {
  28130. height: math.unit(165, "cm"),
  28131. weight: math.unit(140, "lb"),
  28132. name: "Front",
  28133. image: {
  28134. source: "./media/characters/sam-evans/front.svg",
  28135. extra: 3417 / 3230,
  28136. bottom: 41.3 / 3417
  28137. }
  28138. },
  28139. frontSixTails: {
  28140. height: math.unit(165, "cm"),
  28141. weight: math.unit(140, "lb"),
  28142. name: "Front-six-tails",
  28143. image: {
  28144. source: "./media/characters/sam-evans/front-six-tails.svg",
  28145. extra: 3417 / 3230,
  28146. bottom: 41.3 / 3417
  28147. }
  28148. },
  28149. back: {
  28150. height: math.unit(165, "cm"),
  28151. weight: math.unit(140, "lb"),
  28152. name: "Back",
  28153. image: {
  28154. source: "./media/characters/sam-evans/back.svg",
  28155. extra: 3227 / 3032,
  28156. bottom: 6.8 / 3234
  28157. }
  28158. },
  28159. face: {
  28160. height: math.unit(0.68, "feet"),
  28161. name: "Face",
  28162. image: {
  28163. source: "./media/characters/sam-evans/face.svg"
  28164. }
  28165. },
  28166. },
  28167. [
  28168. {
  28169. name: "Normal",
  28170. height: math.unit(165, "cm"),
  28171. default: true
  28172. },
  28173. {
  28174. name: "Macro",
  28175. height: math.unit(100, "meters")
  28176. },
  28177. {
  28178. name: "Macro+",
  28179. height: math.unit(800, "meters")
  28180. },
  28181. {
  28182. name: "Macro++",
  28183. height: math.unit(3, "km")
  28184. },
  28185. {
  28186. name: "Macro+++",
  28187. height: math.unit(30, "km")
  28188. },
  28189. ]
  28190. ))
  28191. characterMakers.push(() => makeCharacter(
  28192. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28193. {
  28194. front: {
  28195. height: math.unit(10, "feet"),
  28196. weight: math.unit(750, "lb"),
  28197. name: "Front",
  28198. image: {
  28199. source: "./media/characters/juliet-a/front.svg",
  28200. extra: 1766 / 1720,
  28201. bottom: 43 / 1809
  28202. }
  28203. },
  28204. back: {
  28205. height: math.unit(10, "feet"),
  28206. weight: math.unit(750, "lb"),
  28207. name: "Back",
  28208. image: {
  28209. source: "./media/characters/juliet-a/back.svg",
  28210. extra: 1781 / 1734,
  28211. bottom: 35 / 1810,
  28212. }
  28213. },
  28214. },
  28215. [
  28216. {
  28217. name: "Normal",
  28218. height: math.unit(10, "feet"),
  28219. default: true
  28220. },
  28221. {
  28222. name: "Dragon Form",
  28223. height: math.unit(250, "feet")
  28224. },
  28225. {
  28226. name: "Macro",
  28227. height: math.unit(1000, "feet")
  28228. },
  28229. {
  28230. name: "Megamacro",
  28231. height: math.unit(10000, "feet")
  28232. }
  28233. ]
  28234. ))
  28235. characterMakers.push(() => makeCharacter(
  28236. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28237. {
  28238. regular: {
  28239. height: math.unit(7 + 3 / 12, "feet"),
  28240. weight: math.unit(260, "lb"),
  28241. name: "Regular",
  28242. image: {
  28243. source: "./media/characters/wild/regular.svg",
  28244. extra: 97.45 / 92,
  28245. bottom: 6.8 / 104.3
  28246. }
  28247. },
  28248. biggums: {
  28249. height: math.unit(8 + 6 / 12, "feet"),
  28250. weight: math.unit(425, "lb"),
  28251. name: "Biggums",
  28252. image: {
  28253. source: "./media/characters/wild/biggums.svg",
  28254. extra: 97.45 / 92,
  28255. bottom: 7.5 / 132.34
  28256. }
  28257. },
  28258. mawRegular: {
  28259. height: math.unit(1.24, "feet"),
  28260. name: "Maw (Regular)",
  28261. image: {
  28262. source: "./media/characters/wild/maw.svg"
  28263. }
  28264. },
  28265. mawBiggums: {
  28266. height: math.unit(1.47, "feet"),
  28267. name: "Maw (Biggums)",
  28268. image: {
  28269. source: "./media/characters/wild/maw.svg"
  28270. }
  28271. },
  28272. },
  28273. [
  28274. {
  28275. name: "Normal",
  28276. height: math.unit(7 + 3 / 12, "feet"),
  28277. default: true
  28278. },
  28279. ]
  28280. ))
  28281. characterMakers.push(() => makeCharacter(
  28282. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28283. {
  28284. front: {
  28285. height: math.unit(2.5, "meters"),
  28286. weight: math.unit(200, "kg"),
  28287. name: "Front",
  28288. image: {
  28289. source: "./media/characters/vidar/front.svg",
  28290. extra: 2994 / 2795,
  28291. bottom: 56 / 3061
  28292. }
  28293. },
  28294. back: {
  28295. height: math.unit(2.5, "meters"),
  28296. weight: math.unit(200, "kg"),
  28297. name: "Back",
  28298. image: {
  28299. source: "./media/characters/vidar/back.svg",
  28300. extra: 3131 / 2928,
  28301. bottom: 13.5 / 3141.5
  28302. }
  28303. },
  28304. feral: {
  28305. height: math.unit(2.5, "meters"),
  28306. weight: math.unit(2000, "kg"),
  28307. name: "Feral",
  28308. image: {
  28309. source: "./media/characters/vidar/feral.svg",
  28310. extra: 2790 / 1765,
  28311. bottom: 6 / 2796
  28312. }
  28313. },
  28314. },
  28315. [
  28316. {
  28317. name: "Normal",
  28318. height: math.unit(2.5, "meters"),
  28319. default: true
  28320. },
  28321. {
  28322. name: "Macro",
  28323. height: math.unit(100, "meters")
  28324. },
  28325. ]
  28326. ))
  28327. characterMakers.push(() => makeCharacter(
  28328. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28329. {
  28330. front: {
  28331. height: math.unit(5 + 9 / 12, "feet"),
  28332. weight: math.unit(120, "lb"),
  28333. name: "Front",
  28334. image: {
  28335. source: "./media/characters/ash/front.svg",
  28336. extra: 2189 / 1961,
  28337. bottom: 5.2 / 2194
  28338. }
  28339. },
  28340. },
  28341. [
  28342. {
  28343. name: "Normal",
  28344. height: math.unit(5 + 9 / 12, "feet"),
  28345. default: true
  28346. },
  28347. ]
  28348. ))
  28349. characterMakers.push(() => makeCharacter(
  28350. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28351. {
  28352. front: {
  28353. height: math.unit(9, "feet"),
  28354. weight: math.unit(10000, "lb"),
  28355. name: "Front",
  28356. image: {
  28357. source: "./media/characters/gygabite/front.svg",
  28358. bottom: 31.7 / 537.8,
  28359. extra: 505 / 370
  28360. }
  28361. },
  28362. },
  28363. [
  28364. {
  28365. name: "Normal",
  28366. height: math.unit(9, "feet"),
  28367. default: true
  28368. },
  28369. ]
  28370. ))
  28371. characterMakers.push(() => makeCharacter(
  28372. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28373. {
  28374. front: {
  28375. height: math.unit(12, "feet"),
  28376. weight: math.unit(35000, "lb"),
  28377. name: "Front",
  28378. image: {
  28379. source: "./media/characters/p0tat0/front.svg",
  28380. extra: 1065 / 921,
  28381. bottom: 55.7 / 1121.25
  28382. }
  28383. },
  28384. },
  28385. [
  28386. {
  28387. name: "Normal",
  28388. height: math.unit(12, "feet"),
  28389. default: true
  28390. },
  28391. ]
  28392. ))
  28393. characterMakers.push(() => makeCharacter(
  28394. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28395. {
  28396. side: {
  28397. height: math.unit(6.5, "feet"),
  28398. weight: math.unit(800, "lb"),
  28399. name: "Side",
  28400. image: {
  28401. source: "./media/characters/dusk/side.svg",
  28402. extra: 615 / 373,
  28403. bottom: 53 / 664
  28404. }
  28405. },
  28406. sitting: {
  28407. height: math.unit(7, "feet"),
  28408. weight: math.unit(800, "lb"),
  28409. name: "Sitting",
  28410. image: {
  28411. source: "./media/characters/dusk/sitting.svg",
  28412. extra: 753 / 425,
  28413. bottom: 33 / 774
  28414. }
  28415. },
  28416. head: {
  28417. height: math.unit(6.1, "feet"),
  28418. name: "Head",
  28419. image: {
  28420. source: "./media/characters/dusk/head.svg"
  28421. }
  28422. },
  28423. },
  28424. [
  28425. {
  28426. name: "Normal",
  28427. height: math.unit(7, "feet"),
  28428. default: true
  28429. },
  28430. ]
  28431. ))
  28432. characterMakers.push(() => makeCharacter(
  28433. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28434. {
  28435. front: {
  28436. height: math.unit(15, "feet"),
  28437. weight: math.unit(7000, "lb"),
  28438. name: "Front",
  28439. image: {
  28440. source: "./media/characters/jay-direwolf/front.svg",
  28441. extra: 1810 / 1732,
  28442. bottom: 66 / 1892
  28443. }
  28444. },
  28445. },
  28446. [
  28447. {
  28448. name: "Normal",
  28449. height: math.unit(15, "feet"),
  28450. default: true
  28451. },
  28452. ]
  28453. ))
  28454. characterMakers.push(() => makeCharacter(
  28455. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28456. {
  28457. front: {
  28458. height: math.unit(4 + 9 / 12, "feet"),
  28459. weight: math.unit(130, "lb"),
  28460. name: "Front",
  28461. image: {
  28462. source: "./media/characters/anchovie/front.svg",
  28463. extra: 382 / 350,
  28464. bottom: 25 / 409
  28465. }
  28466. },
  28467. back: {
  28468. height: math.unit(4 + 9 / 12, "feet"),
  28469. weight: math.unit(130, "lb"),
  28470. name: "Back",
  28471. image: {
  28472. source: "./media/characters/anchovie/back.svg",
  28473. extra: 385 / 352,
  28474. bottom: 16.6 / 402
  28475. }
  28476. },
  28477. frontDressed: {
  28478. height: math.unit(4 + 9 / 12, "feet"),
  28479. weight: math.unit(130, "lb"),
  28480. name: "Front (Dressed)",
  28481. image: {
  28482. source: "./media/characters/anchovie/front-dressed.svg",
  28483. extra: 382 / 350,
  28484. bottom: 25 / 409
  28485. }
  28486. },
  28487. backDressed: {
  28488. height: math.unit(4 + 9 / 12, "feet"),
  28489. weight: math.unit(130, "lb"),
  28490. name: "Back (Dressed)",
  28491. image: {
  28492. source: "./media/characters/anchovie/back-dressed.svg",
  28493. extra: 385 / 352,
  28494. bottom: 16.6 / 402
  28495. }
  28496. },
  28497. },
  28498. [
  28499. {
  28500. name: "Micro",
  28501. height: math.unit(6.4, "inches")
  28502. },
  28503. {
  28504. name: "Normal",
  28505. height: math.unit(4 + 9 / 12, "feet"),
  28506. default: true
  28507. },
  28508. ]
  28509. ))
  28510. characterMakers.push(() => makeCharacter(
  28511. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28512. {
  28513. front: {
  28514. height: math.unit(2, "meters"),
  28515. weight: math.unit(180, "lb"),
  28516. name: "Front",
  28517. image: {
  28518. source: "./media/characters/acidrenamon/front.svg",
  28519. extra: 987 / 890,
  28520. bottom: 22.8 / 1009
  28521. }
  28522. },
  28523. back: {
  28524. height: math.unit(2, "meters"),
  28525. weight: math.unit(180, "lb"),
  28526. name: "Back",
  28527. image: {
  28528. source: "./media/characters/acidrenamon/back.svg",
  28529. extra: 983 / 891,
  28530. bottom: 8.4 / 992
  28531. }
  28532. },
  28533. head: {
  28534. height: math.unit(1.92, "feet"),
  28535. name: "Head",
  28536. image: {
  28537. source: "./media/characters/acidrenamon/head.svg"
  28538. }
  28539. },
  28540. rump: {
  28541. height: math.unit(1.72, "feet"),
  28542. name: "Rump",
  28543. image: {
  28544. source: "./media/characters/acidrenamon/rump.svg"
  28545. }
  28546. },
  28547. tail: {
  28548. height: math.unit(4.2, "feet"),
  28549. name: "Tail",
  28550. image: {
  28551. source: "./media/characters/acidrenamon/tail.svg"
  28552. }
  28553. },
  28554. },
  28555. [
  28556. {
  28557. name: "Normal",
  28558. height: math.unit(2, "meters"),
  28559. default: true
  28560. },
  28561. {
  28562. name: "Minimacro",
  28563. height: math.unit(7, "meters")
  28564. },
  28565. {
  28566. name: "Macro",
  28567. height: math.unit(200, "meters")
  28568. },
  28569. {
  28570. name: "Gigamacro",
  28571. height: math.unit(0.2, "earths")
  28572. },
  28573. ]
  28574. ))
  28575. characterMakers.push(() => makeCharacter(
  28576. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28577. {
  28578. front: {
  28579. height: math.unit(152, "feet"),
  28580. name: "Front",
  28581. image: {
  28582. source: "./media/characters/kenzie-lee/front.svg",
  28583. extra: 1869/1774,
  28584. bottom: 128/1997
  28585. }
  28586. },
  28587. side: {
  28588. height: math.unit(86, "feet"),
  28589. name: "Side",
  28590. image: {
  28591. source: "./media/characters/kenzie-lee/side.svg",
  28592. extra: 930/815,
  28593. bottom: 177/1107
  28594. }
  28595. },
  28596. paw: {
  28597. height: math.unit(15, "feet"),
  28598. name: "Paw",
  28599. image: {
  28600. source: "./media/characters/kenzie-lee/paw.svg"
  28601. }
  28602. },
  28603. },
  28604. [
  28605. {
  28606. name: "Kenzie Flea",
  28607. height: math.unit(2, "mm"),
  28608. default: true
  28609. },
  28610. {
  28611. name: "Micro",
  28612. height: math.unit(2, "inches")
  28613. },
  28614. {
  28615. name: "Normal",
  28616. height: math.unit(152, "feet")
  28617. },
  28618. {
  28619. name: "Megamacro",
  28620. height: math.unit(7, "miles")
  28621. },
  28622. {
  28623. name: "Gigamacro",
  28624. height: math.unit(8000, "miles")
  28625. },
  28626. ]
  28627. ))
  28628. characterMakers.push(() => makeCharacter(
  28629. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28630. {
  28631. front: {
  28632. height: math.unit(6, "feet"),
  28633. name: "Front",
  28634. image: {
  28635. source: "./media/characters/withers/front.svg",
  28636. extra: 1935/1760,
  28637. bottom: 72/2007
  28638. }
  28639. },
  28640. back: {
  28641. height: math.unit(6, "feet"),
  28642. name: "Back",
  28643. image: {
  28644. source: "./media/characters/withers/back.svg",
  28645. extra: 1944/1792,
  28646. bottom: 12/1956
  28647. }
  28648. },
  28649. dressed: {
  28650. height: math.unit(6, "feet"),
  28651. name: "Dressed",
  28652. image: {
  28653. source: "./media/characters/withers/dressed.svg",
  28654. extra: 1937/1765,
  28655. bottom: 73/2010
  28656. }
  28657. },
  28658. phase1: {
  28659. height: math.unit(1.1, "feet"),
  28660. name: "Phase 1",
  28661. image: {
  28662. source: "./media/characters/withers/phase-1.svg",
  28663. extra: 1885/1232,
  28664. bottom: 0/1885
  28665. }
  28666. },
  28667. phase2: {
  28668. height: math.unit(1.05, "feet"),
  28669. name: "Phase 2",
  28670. image: {
  28671. source: "./media/characters/withers/phase-2.svg",
  28672. extra: 1792/1090,
  28673. bottom: 0/1792
  28674. }
  28675. },
  28676. partyWipe: {
  28677. height: math.unit(1.1, "feet"),
  28678. name: "Party Wipe",
  28679. image: {
  28680. source: "./media/characters/withers/party-wipe.svg",
  28681. extra: 1864/1207,
  28682. bottom: 0/1864
  28683. }
  28684. },
  28685. },
  28686. [
  28687. {
  28688. name: "Macro",
  28689. height: math.unit(167, "feet"),
  28690. default: true
  28691. },
  28692. {
  28693. name: "Megamacro",
  28694. height: math.unit(15, "miles")
  28695. }
  28696. ]
  28697. ))
  28698. characterMakers.push(() => makeCharacter(
  28699. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28700. {
  28701. front: {
  28702. height: math.unit(6 + 7 / 12, "feet"),
  28703. weight: math.unit(250, "lb"),
  28704. name: "Front",
  28705. image: {
  28706. source: "./media/characters/nemoskii/front.svg",
  28707. extra: 2270 / 1734,
  28708. bottom: 86 / 2354
  28709. }
  28710. },
  28711. back: {
  28712. height: math.unit(6 + 7 / 12, "feet"),
  28713. weight: math.unit(250, "lb"),
  28714. name: "Back",
  28715. image: {
  28716. source: "./media/characters/nemoskii/back.svg",
  28717. extra: 1845 / 1788,
  28718. bottom: 10.5 / 1852
  28719. }
  28720. },
  28721. head: {
  28722. height: math.unit(1.31, "feet"),
  28723. name: "Head",
  28724. image: {
  28725. source: "./media/characters/nemoskii/head.svg"
  28726. }
  28727. },
  28728. },
  28729. [
  28730. {
  28731. name: "Micro",
  28732. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28733. },
  28734. {
  28735. name: "Normal",
  28736. height: math.unit(6 + 7 / 12, "feet"),
  28737. default: true
  28738. },
  28739. {
  28740. name: "Macro",
  28741. height: math.unit((6 + 7 / 12) * 150, "feet")
  28742. },
  28743. {
  28744. name: "Macro+",
  28745. height: math.unit((6 + 7 / 12) * 500, "feet")
  28746. },
  28747. {
  28748. name: "Megamacro",
  28749. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28750. },
  28751. ]
  28752. ))
  28753. characterMakers.push(() => makeCharacter(
  28754. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28755. {
  28756. front: {
  28757. height: math.unit(1, "mile"),
  28758. weight: math.unit(265261.9, "lb"),
  28759. name: "Front",
  28760. image: {
  28761. source: "./media/characters/shui/front.svg",
  28762. extra: 1633 / 1564,
  28763. bottom: 91.5 / 1726
  28764. }
  28765. },
  28766. },
  28767. [
  28768. {
  28769. name: "Macro",
  28770. height: math.unit(1, "mile"),
  28771. default: true
  28772. },
  28773. ]
  28774. ))
  28775. characterMakers.push(() => makeCharacter(
  28776. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28777. {
  28778. front: {
  28779. height: math.unit(12 + 6 / 12, "feet"),
  28780. weight: math.unit(1342, "lb"),
  28781. name: "Front",
  28782. image: {
  28783. source: "./media/characters/arokh-takakura/front.svg",
  28784. extra: 1089 / 1043,
  28785. bottom: 77.4 / 1176.7
  28786. }
  28787. },
  28788. back: {
  28789. height: math.unit(12 + 6 / 12, "feet"),
  28790. weight: math.unit(1342, "lb"),
  28791. name: "Back",
  28792. image: {
  28793. source: "./media/characters/arokh-takakura/back.svg",
  28794. extra: 1046 / 1019,
  28795. bottom: 102 / 1150
  28796. }
  28797. },
  28798. },
  28799. [
  28800. {
  28801. name: "Big",
  28802. height: math.unit(12 + 6 / 12, "feet"),
  28803. default: true
  28804. },
  28805. ]
  28806. ))
  28807. characterMakers.push(() => makeCharacter(
  28808. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28809. {
  28810. front: {
  28811. height: math.unit(5 + 6 / 12, "feet"),
  28812. weight: math.unit(150, "lb"),
  28813. name: "Front",
  28814. image: {
  28815. source: "./media/characters/theo/front.svg",
  28816. extra: 1184 / 1131,
  28817. bottom: 7.4 / 1191
  28818. }
  28819. },
  28820. },
  28821. [
  28822. {
  28823. name: "Micro",
  28824. height: math.unit(5, "inches")
  28825. },
  28826. {
  28827. name: "Normal",
  28828. height: math.unit(5 + 6 / 12, "feet"),
  28829. default: true
  28830. },
  28831. ]
  28832. ))
  28833. characterMakers.push(() => makeCharacter(
  28834. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28835. {
  28836. front: {
  28837. height: math.unit(5 + 9 / 12, "feet"),
  28838. weight: math.unit(130, "lb"),
  28839. name: "Front",
  28840. image: {
  28841. source: "./media/characters/cecelia-swift/front.svg",
  28842. extra: 502 / 484,
  28843. bottom: 23 / 523
  28844. }
  28845. },
  28846. back: {
  28847. height: math.unit(5 + 9 / 12, "feet"),
  28848. weight: math.unit(130, "lb"),
  28849. name: "Back",
  28850. image: {
  28851. source: "./media/characters/cecelia-swift/back.svg",
  28852. extra: 499 / 485,
  28853. bottom: 12 / 511
  28854. }
  28855. },
  28856. head: {
  28857. height: math.unit(0.90, "feet"),
  28858. name: "Head",
  28859. image: {
  28860. source: "./media/characters/cecelia-swift/head.svg"
  28861. }
  28862. },
  28863. rump: {
  28864. height: math.unit(1.75, "feet"),
  28865. name: "Rump",
  28866. image: {
  28867. source: "./media/characters/cecelia-swift/rump.svg"
  28868. }
  28869. },
  28870. },
  28871. [
  28872. {
  28873. name: "Normal",
  28874. height: math.unit(5 + 9 / 12, "feet"),
  28875. default: true
  28876. },
  28877. {
  28878. name: "Big",
  28879. height: math.unit(50, "feet")
  28880. },
  28881. {
  28882. name: "Macro",
  28883. height: math.unit(100, "feet")
  28884. },
  28885. {
  28886. name: "Macro+",
  28887. height: math.unit(500, "feet")
  28888. },
  28889. {
  28890. name: "Macro++",
  28891. height: math.unit(1000, "feet")
  28892. },
  28893. ]
  28894. ))
  28895. characterMakers.push(() => makeCharacter(
  28896. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28897. {
  28898. front: {
  28899. height: math.unit(6, "feet"),
  28900. weight: math.unit(150, "lb"),
  28901. name: "Front",
  28902. image: {
  28903. source: "./media/characters/kaunan/front.svg",
  28904. extra: 2890 / 2523,
  28905. bottom: 49 / 2939
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Macro",
  28912. height: math.unit(150, "feet"),
  28913. default: true
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28919. {
  28920. front: {
  28921. height: math.unit(175, "cm"),
  28922. weight: math.unit(60, "kg"),
  28923. name: "Front",
  28924. image: {
  28925. source: "./media/characters/fei/front.svg",
  28926. extra: 1873/1723,
  28927. bottom: 53/1926
  28928. }
  28929. },
  28930. },
  28931. [
  28932. {
  28933. name: "Mortal",
  28934. height: math.unit(175, "cm")
  28935. },
  28936. {
  28937. name: "Normal",
  28938. height: math.unit(3500, "m"),
  28939. default: true
  28940. },
  28941. {
  28942. name: "Stroll",
  28943. height: math.unit(17.5, "km")
  28944. },
  28945. {
  28946. name: "Showoff",
  28947. height: math.unit(175, "km")
  28948. },
  28949. ]
  28950. ))
  28951. characterMakers.push(() => makeCharacter(
  28952. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28953. {
  28954. front: {
  28955. height: math.unit(7, "feet"),
  28956. weight: math.unit(1000, "kg"),
  28957. name: "Front",
  28958. image: {
  28959. source: "./media/characters/edrax/front.svg",
  28960. extra: 2838 / 2550,
  28961. bottom: 130 / 2968
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Small",
  28968. height: math.unit(7, "feet")
  28969. },
  28970. {
  28971. name: "Normal",
  28972. height: math.unit(1500, "meters")
  28973. },
  28974. {
  28975. name: "Mega",
  28976. height: math.unit(12000000, "km"),
  28977. default: true
  28978. },
  28979. {
  28980. name: "Megamacro",
  28981. height: math.unit(10600000, "lightyears")
  28982. },
  28983. {
  28984. name: "Hypermacro",
  28985. height: math.unit(256, "yottameters")
  28986. },
  28987. ]
  28988. ))
  28989. characterMakers.push(() => makeCharacter(
  28990. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28991. {
  28992. front: {
  28993. height: math.unit(10, "feet"),
  28994. weight: math.unit(750, "lb"),
  28995. name: "Front",
  28996. image: {
  28997. source: "./media/characters/clove/front.svg",
  28998. extra: 1918/1751,
  28999. bottom: 52/1970
  29000. }
  29001. },
  29002. back: {
  29003. height: math.unit(10, "feet"),
  29004. weight: math.unit(750, "lb"),
  29005. name: "Back",
  29006. image: {
  29007. source: "./media/characters/clove/back.svg",
  29008. extra: 1912/1747,
  29009. bottom: 50/1962
  29010. }
  29011. },
  29012. },
  29013. [
  29014. {
  29015. name: "Normal",
  29016. height: math.unit(10, "feet"),
  29017. default: true
  29018. },
  29019. ]
  29020. ))
  29021. characterMakers.push(() => makeCharacter(
  29022. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29023. {
  29024. front: {
  29025. height: math.unit(4, "feet"),
  29026. weight: math.unit(50, "lb"),
  29027. name: "Front",
  29028. image: {
  29029. source: "./media/characters/alex-rabbit/front.svg",
  29030. extra: 507 / 458,
  29031. bottom: 18.5 / 527
  29032. }
  29033. },
  29034. back: {
  29035. height: math.unit(4, "feet"),
  29036. weight: math.unit(50, "lb"),
  29037. name: "Back",
  29038. image: {
  29039. source: "./media/characters/alex-rabbit/back.svg",
  29040. extra: 502 / 460,
  29041. bottom: 18.9 / 521
  29042. }
  29043. },
  29044. },
  29045. [
  29046. {
  29047. name: "Normal",
  29048. height: math.unit(4, "feet"),
  29049. default: true
  29050. },
  29051. ]
  29052. ))
  29053. characterMakers.push(() => makeCharacter(
  29054. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29055. {
  29056. front: {
  29057. height: math.unit(1 + 3 / 12, "feet"),
  29058. weight: math.unit(80, "lb"),
  29059. name: "Front",
  29060. image: {
  29061. source: "./media/characters/zander-rose/front.svg",
  29062. extra: 916 / 797,
  29063. bottom: 17 / 933
  29064. }
  29065. },
  29066. back: {
  29067. height: math.unit(1 + 3 / 12, "feet"),
  29068. weight: math.unit(80, "lb"),
  29069. name: "Back",
  29070. image: {
  29071. source: "./media/characters/zander-rose/back.svg",
  29072. extra: 903 / 779,
  29073. bottom: 31 / 934
  29074. }
  29075. },
  29076. },
  29077. [
  29078. {
  29079. name: "Normal",
  29080. height: math.unit(1 + 3 / 12, "feet"),
  29081. default: true
  29082. },
  29083. ]
  29084. ))
  29085. characterMakers.push(() => makeCharacter(
  29086. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29087. {
  29088. anthro: {
  29089. height: math.unit(6, "feet"),
  29090. weight: math.unit(150, "lb"),
  29091. name: "Anthro",
  29092. image: {
  29093. source: "./media/characters/razz/anthro.svg",
  29094. extra: 1437 / 1343,
  29095. bottom: 48 / 1485
  29096. }
  29097. },
  29098. feral: {
  29099. height: math.unit(6, "feet"),
  29100. weight: math.unit(150, "lb"),
  29101. name: "Feral",
  29102. image: {
  29103. source: "./media/characters/razz/feral.svg",
  29104. extra: 2569 / 1385,
  29105. bottom: 95 / 2664
  29106. }
  29107. },
  29108. },
  29109. [
  29110. {
  29111. name: "Normal",
  29112. height: math.unit(6, "feet"),
  29113. default: true
  29114. },
  29115. ]
  29116. ))
  29117. characterMakers.push(() => makeCharacter(
  29118. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29119. {
  29120. front: {
  29121. height: math.unit(9 + 4 / 12, "feet"),
  29122. weight: math.unit(500, "lb"),
  29123. name: "Front",
  29124. image: {
  29125. source: "./media/characters/morrigan/front.svg",
  29126. extra: 2707 / 2579,
  29127. bottom: 156 / 2863
  29128. }
  29129. },
  29130. },
  29131. [
  29132. {
  29133. name: "Normal",
  29134. height: math.unit(9 + 4 / 12, "feet"),
  29135. default: true
  29136. },
  29137. ]
  29138. ))
  29139. characterMakers.push(() => makeCharacter(
  29140. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29141. {
  29142. front: {
  29143. height: math.unit(5, "stories"),
  29144. weight: math.unit(4000, "lb"),
  29145. name: "Front",
  29146. image: {
  29147. source: "./media/characters/jenene/front.svg",
  29148. extra: 1780 / 1710,
  29149. bottom: 57 / 1837
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Normal",
  29156. height: math.unit(5, "stories"),
  29157. default: true
  29158. },
  29159. ]
  29160. ))
  29161. characterMakers.push(() => makeCharacter(
  29162. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29163. {
  29164. taurSfw: {
  29165. height: math.unit(10, "meters"),
  29166. weight: math.unit(17500, "kg"),
  29167. name: "Taur",
  29168. image: {
  29169. source: "./media/characters/faey/taur-sfw.svg",
  29170. extra: 1200 / 968,
  29171. bottom: 41 / 1241
  29172. }
  29173. },
  29174. chestmaw: {
  29175. height: math.unit(2.01, "meters"),
  29176. name: "Chestmaw",
  29177. image: {
  29178. source: "./media/characters/faey/chestmaw.svg"
  29179. }
  29180. },
  29181. foot: {
  29182. height: math.unit(2.43, "meters"),
  29183. name: "Foot",
  29184. image: {
  29185. source: "./media/characters/faey/foot.svg"
  29186. }
  29187. },
  29188. jaws: {
  29189. height: math.unit(1.66, "meters"),
  29190. name: "Jaws",
  29191. image: {
  29192. source: "./media/characters/faey/jaws.svg"
  29193. }
  29194. },
  29195. tongues: {
  29196. height: math.unit(2.01, "meters"),
  29197. name: "Tongues",
  29198. image: {
  29199. source: "./media/characters/faey/tongues.svg"
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Small",
  29206. height: math.unit(10, "meters"),
  29207. default: true
  29208. },
  29209. {
  29210. name: "Big",
  29211. height: math.unit(500000, "km")
  29212. },
  29213. ]
  29214. ))
  29215. characterMakers.push(() => makeCharacter(
  29216. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29217. {
  29218. front: {
  29219. height: math.unit(7, "feet"),
  29220. weight: math.unit(275, "lb"),
  29221. name: "Front",
  29222. image: {
  29223. source: "./media/characters/roku/front.svg",
  29224. extra: 903 / 878,
  29225. bottom: 37 / 940
  29226. }
  29227. },
  29228. },
  29229. [
  29230. {
  29231. name: "Normal",
  29232. height: math.unit(7, "feet"),
  29233. default: true
  29234. },
  29235. {
  29236. name: "Macro",
  29237. height: math.unit(500, "feet")
  29238. },
  29239. {
  29240. name: "Megamacro",
  29241. height: math.unit(200, "miles")
  29242. },
  29243. ]
  29244. ))
  29245. characterMakers.push(() => makeCharacter(
  29246. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29247. {
  29248. front: {
  29249. height: math.unit(6 + 2 / 12, "feet"),
  29250. weight: math.unit(150, "lb"),
  29251. name: "Front",
  29252. image: {
  29253. source: "./media/characters/lira/front.svg",
  29254. extra: 1727 / 1605,
  29255. bottom: 26 / 1753
  29256. }
  29257. },
  29258. back: {
  29259. height: math.unit(6 + 2 / 12, "feet"),
  29260. weight: math.unit(150, "lb"),
  29261. name: "Back",
  29262. image: {
  29263. source: "./media/characters/lira/back.svg",
  29264. extra: 1713/1621,
  29265. bottom: 20/1733
  29266. }
  29267. },
  29268. hand: {
  29269. height: math.unit(0.75, "feet"),
  29270. name: "Hand",
  29271. image: {
  29272. source: "./media/characters/lira/hand.svg"
  29273. }
  29274. },
  29275. maw: {
  29276. height: math.unit(0.65, "feet"),
  29277. name: "Maw",
  29278. image: {
  29279. source: "./media/characters/lira/maw.svg"
  29280. }
  29281. },
  29282. pawDigi: {
  29283. height: math.unit(1.6, "feet"),
  29284. name: "Paw Digi",
  29285. image: {
  29286. source: "./media/characters/lira/paw-digi.svg"
  29287. }
  29288. },
  29289. pawPlanti: {
  29290. height: math.unit(1.4, "feet"),
  29291. name: "Paw Planti",
  29292. image: {
  29293. source: "./media/characters/lira/paw-planti.svg"
  29294. }
  29295. },
  29296. },
  29297. [
  29298. {
  29299. name: "Normal",
  29300. height: math.unit(6 + 2 / 12, "feet"),
  29301. default: true
  29302. },
  29303. {
  29304. name: "Macro",
  29305. height: math.unit(100, "feet")
  29306. },
  29307. {
  29308. name: "Macro²",
  29309. height: math.unit(1600, "feet")
  29310. },
  29311. {
  29312. name: "Planetary",
  29313. height: math.unit(20, "earths")
  29314. },
  29315. ]
  29316. ))
  29317. characterMakers.push(() => makeCharacter(
  29318. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29319. {
  29320. front: {
  29321. height: math.unit(6, "feet"),
  29322. weight: math.unit(150, "lb"),
  29323. name: "Front",
  29324. image: {
  29325. source: "./media/characters/hadjet/front.svg",
  29326. extra: 1480 / 1346,
  29327. bottom: 26 / 1506
  29328. }
  29329. },
  29330. frontNsfw: {
  29331. height: math.unit(6, "feet"),
  29332. weight: math.unit(150, "lb"),
  29333. name: "Front (NSFW)",
  29334. image: {
  29335. source: "./media/characters/hadjet/front-nsfw.svg",
  29336. extra: 1440 / 1358,
  29337. bottom: 52 / 1492
  29338. }
  29339. },
  29340. },
  29341. [
  29342. {
  29343. name: "Macro",
  29344. height: math.unit(10, "stories"),
  29345. default: true
  29346. },
  29347. {
  29348. name: "Megamacro",
  29349. height: math.unit(1.5, "miles")
  29350. },
  29351. {
  29352. name: "Megamacro+",
  29353. height: math.unit(5, "miles")
  29354. },
  29355. ]
  29356. ))
  29357. characterMakers.push(() => makeCharacter(
  29358. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29359. {
  29360. side: {
  29361. height: math.unit(106, "feet"),
  29362. weight: math.unit(500, "tonnes"),
  29363. name: "Side",
  29364. image: {
  29365. source: "./media/characters/kodran/side.svg",
  29366. extra: 553 / 480,
  29367. bottom: 33 / 586
  29368. }
  29369. },
  29370. front: {
  29371. height: math.unit(132, "feet"),
  29372. weight: math.unit(500, "tonnes"),
  29373. name: "Front",
  29374. image: {
  29375. source: "./media/characters/kodran/front.svg",
  29376. extra: 667 / 643,
  29377. bottom: 42 / 709
  29378. }
  29379. },
  29380. flying: {
  29381. height: math.unit(350, "feet"),
  29382. weight: math.unit(500, "tonnes"),
  29383. name: "Flying",
  29384. image: {
  29385. source: "./media/characters/kodran/flying.svg"
  29386. }
  29387. },
  29388. foot: {
  29389. height: math.unit(33, "feet"),
  29390. name: "Foot",
  29391. image: {
  29392. source: "./media/characters/kodran/foot.svg"
  29393. }
  29394. },
  29395. footFront: {
  29396. height: math.unit(19, "feet"),
  29397. name: "Foot (Front)",
  29398. image: {
  29399. source: "./media/characters/kodran/foot-front.svg",
  29400. extra: 261 / 261,
  29401. bottom: 91 / 352
  29402. }
  29403. },
  29404. headFront: {
  29405. height: math.unit(53, "feet"),
  29406. name: "Head (Front)",
  29407. image: {
  29408. source: "./media/characters/kodran/head-front.svg"
  29409. }
  29410. },
  29411. headSide: {
  29412. height: math.unit(65, "feet"),
  29413. name: "Head (Side)",
  29414. image: {
  29415. source: "./media/characters/kodran/head-side.svg"
  29416. }
  29417. },
  29418. throat: {
  29419. height: math.unit(79, "feet"),
  29420. name: "Throat",
  29421. image: {
  29422. source: "./media/characters/kodran/throat.svg"
  29423. }
  29424. },
  29425. },
  29426. [
  29427. {
  29428. name: "Large",
  29429. height: math.unit(106, "feet"),
  29430. default: true
  29431. },
  29432. ]
  29433. ))
  29434. characterMakers.push(() => makeCharacter(
  29435. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29436. {
  29437. side: {
  29438. height: math.unit(11, "feet"),
  29439. weight: math.unit(150, "lb"),
  29440. name: "Side",
  29441. image: {
  29442. source: "./media/characters/pyxaron/side.svg",
  29443. extra: 305 / 195,
  29444. bottom: 17 / 322
  29445. }
  29446. },
  29447. },
  29448. [
  29449. {
  29450. name: "Normal",
  29451. height: math.unit(11, "feet"),
  29452. default: true
  29453. },
  29454. ]
  29455. ))
  29456. characterMakers.push(() => makeCharacter(
  29457. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29458. {
  29459. front: {
  29460. height: math.unit(6, "feet"),
  29461. weight: math.unit(150, "lb"),
  29462. name: "Front",
  29463. image: {
  29464. source: "./media/characters/meep/front.svg",
  29465. extra: 88 / 80,
  29466. bottom: 6 / 94
  29467. }
  29468. },
  29469. },
  29470. [
  29471. {
  29472. name: "Fun Sized",
  29473. height: math.unit(2, "inches"),
  29474. default: true
  29475. },
  29476. {
  29477. name: "Friend Sized",
  29478. height: math.unit(8, "inches")
  29479. },
  29480. ]
  29481. ))
  29482. characterMakers.push(() => makeCharacter(
  29483. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29484. {
  29485. front: {
  29486. height: math.unit(15, "feet"),
  29487. weight: math.unit(2500, "lb"),
  29488. name: "Front",
  29489. image: {
  29490. source: "./media/characters/holly-rabbit/front.svg",
  29491. extra: 1433 / 1233,
  29492. bottom: 125 / 1558
  29493. }
  29494. },
  29495. dick: {
  29496. height: math.unit(4.6, "feet"),
  29497. name: "Dick",
  29498. image: {
  29499. source: "./media/characters/holly-rabbit/dick.svg"
  29500. }
  29501. },
  29502. },
  29503. [
  29504. {
  29505. name: "Normal",
  29506. height: math.unit(15, "feet"),
  29507. default: true
  29508. },
  29509. {
  29510. name: "Macro",
  29511. height: math.unit(250, "feet")
  29512. },
  29513. {
  29514. name: "Macro+",
  29515. height: math.unit(2500, "feet")
  29516. },
  29517. ]
  29518. ))
  29519. characterMakers.push(() => makeCharacter(
  29520. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29521. {
  29522. front: {
  29523. height: math.unit(3.02, "meters"),
  29524. weight: math.unit(500, "kg"),
  29525. name: "Front",
  29526. image: {
  29527. source: "./media/characters/drena/front.svg",
  29528. extra: 282 / 243,
  29529. bottom: 8 / 290
  29530. }
  29531. },
  29532. side: {
  29533. height: math.unit(3.02, "meters"),
  29534. weight: math.unit(500, "kg"),
  29535. name: "Side",
  29536. image: {
  29537. source: "./media/characters/drena/side.svg",
  29538. extra: 280 / 245,
  29539. bottom: 10 / 290
  29540. }
  29541. },
  29542. back: {
  29543. height: math.unit(3.02, "meters"),
  29544. weight: math.unit(500, "kg"),
  29545. name: "Back",
  29546. image: {
  29547. source: "./media/characters/drena/back.svg",
  29548. extra: 278 / 243,
  29549. bottom: 2 / 280
  29550. }
  29551. },
  29552. foot: {
  29553. height: math.unit(0.75, "meters"),
  29554. name: "Foot",
  29555. image: {
  29556. source: "./media/characters/drena/foot.svg"
  29557. }
  29558. },
  29559. maw: {
  29560. height: math.unit(0.82, "meters"),
  29561. name: "Maw",
  29562. image: {
  29563. source: "./media/characters/drena/maw.svg"
  29564. }
  29565. },
  29566. eating: {
  29567. height: math.unit(0.75, "meters"),
  29568. name: "Eating",
  29569. image: {
  29570. source: "./media/characters/drena/eating.svg"
  29571. }
  29572. },
  29573. rump: {
  29574. height: math.unit(0.93, "meters"),
  29575. name: "Rump",
  29576. image: {
  29577. source: "./media/characters/drena/rump.svg"
  29578. }
  29579. },
  29580. },
  29581. [
  29582. {
  29583. name: "Normal",
  29584. height: math.unit(3.02, "meters"),
  29585. default: true
  29586. },
  29587. ]
  29588. ))
  29589. characterMakers.push(() => makeCharacter(
  29590. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29591. {
  29592. front: {
  29593. height: math.unit(6 + 4 / 12, "feet"),
  29594. weight: math.unit(250, "lb"),
  29595. name: "Front",
  29596. image: {
  29597. source: "./media/characters/remmyzilla/front.svg",
  29598. extra: 4033 / 3588,
  29599. bottom: 123 / 4156
  29600. }
  29601. },
  29602. back: {
  29603. height: math.unit(6 + 4 / 12, "feet"),
  29604. weight: math.unit(250, "lb"),
  29605. name: "Back",
  29606. image: {
  29607. source: "./media/characters/remmyzilla/back.svg",
  29608. extra: 2687 / 2555,
  29609. bottom: 48 / 2735
  29610. }
  29611. },
  29612. paw: {
  29613. height: math.unit(1.73, "feet"),
  29614. name: "Paw",
  29615. image: {
  29616. source: "./media/characters/remmyzilla/paw.svg"
  29617. }
  29618. },
  29619. maw: {
  29620. height: math.unit(1.73, "feet"),
  29621. name: "Maw",
  29622. image: {
  29623. source: "./media/characters/remmyzilla/maw.svg"
  29624. }
  29625. },
  29626. },
  29627. [
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(6 + 4 / 12, "feet")
  29631. },
  29632. {
  29633. name: "Minimacro",
  29634. height: math.unit(12 + 8 / 12, "feet")
  29635. },
  29636. {
  29637. name: "Normal",
  29638. height: math.unit(640, "feet"),
  29639. default: true
  29640. },
  29641. {
  29642. name: "Megamacro",
  29643. height: math.unit(6400, "feet")
  29644. },
  29645. {
  29646. name: "Gigamacro",
  29647. height: math.unit(64000, "miles")
  29648. },
  29649. ]
  29650. ))
  29651. characterMakers.push(() => makeCharacter(
  29652. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29653. {
  29654. front: {
  29655. height: math.unit(2.5, "meters"),
  29656. weight: math.unit(300, "lb"),
  29657. name: "Front",
  29658. image: {
  29659. source: "./media/characters/lawrence/front.svg",
  29660. extra: 357 / 335,
  29661. bottom: 30 / 387
  29662. }
  29663. },
  29664. back: {
  29665. height: math.unit(2.5, "meters"),
  29666. weight: math.unit(300, "lb"),
  29667. name: "Back",
  29668. image: {
  29669. source: "./media/characters/lawrence/back.svg",
  29670. extra: 357 / 338,
  29671. bottom: 16 / 373
  29672. }
  29673. },
  29674. head: {
  29675. height: math.unit(0.9, "meter"),
  29676. name: "Head",
  29677. image: {
  29678. source: "./media/characters/lawrence/head.svg"
  29679. }
  29680. },
  29681. maw: {
  29682. height: math.unit(0.7, "meter"),
  29683. name: "Maw",
  29684. image: {
  29685. source: "./media/characters/lawrence/maw.svg"
  29686. }
  29687. },
  29688. footBottom: {
  29689. height: math.unit(0.5, "meter"),
  29690. name: "Foot (Bottom)",
  29691. image: {
  29692. source: "./media/characters/lawrence/foot-bottom.svg"
  29693. }
  29694. },
  29695. footTop: {
  29696. height: math.unit(0.5, "meter"),
  29697. name: "Foot (Top)",
  29698. image: {
  29699. source: "./media/characters/lawrence/foot-top.svg"
  29700. }
  29701. },
  29702. },
  29703. [
  29704. {
  29705. name: "Normal",
  29706. height: math.unit(2.5, "meters"),
  29707. default: true
  29708. },
  29709. {
  29710. name: "Macro",
  29711. height: math.unit(95, "meters")
  29712. },
  29713. {
  29714. name: "Megamacro",
  29715. height: math.unit(150, "km")
  29716. },
  29717. ]
  29718. ))
  29719. characterMakers.push(() => makeCharacter(
  29720. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29721. {
  29722. front: {
  29723. height: math.unit(4.2, "meters"),
  29724. name: "Front",
  29725. image: {
  29726. source: "./media/characters/sydney/front.svg",
  29727. extra: 1323 / 1277,
  29728. bottom: 111 / 1434
  29729. }
  29730. },
  29731. },
  29732. [
  29733. {
  29734. name: "Normal",
  29735. height: math.unit(4.2, "meters"),
  29736. default: true
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29742. {
  29743. back: {
  29744. height: math.unit(201, "feet"),
  29745. name: "Back",
  29746. image: {
  29747. source: "./media/characters/jessica/back.svg",
  29748. extra: 273 / 259,
  29749. bottom: 7 / 280
  29750. }
  29751. },
  29752. },
  29753. [
  29754. {
  29755. name: "Normal",
  29756. height: math.unit(201, "feet"),
  29757. default: true
  29758. },
  29759. {
  29760. name: "Megamacro",
  29761. height: math.unit(8, "miles")
  29762. },
  29763. ]
  29764. ))
  29765. characterMakers.push(() => makeCharacter(
  29766. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29767. {
  29768. side: {
  29769. height: math.unit(5.6, "m"),
  29770. weight: math.unit(8000, "kg"),
  29771. name: "Side",
  29772. image: {
  29773. source: "./media/characters/victoria/side.svg",
  29774. extra: 1542/1229,
  29775. bottom: 124/1666
  29776. }
  29777. },
  29778. maw: {
  29779. height: math.unit(7.14, "feet"),
  29780. name: "Maw",
  29781. image: {
  29782. source: "./media/characters/victoria/maw.svg"
  29783. }
  29784. },
  29785. },
  29786. [
  29787. {
  29788. name: "Normal",
  29789. height: math.unit(5.6, "m"),
  29790. default: true
  29791. },
  29792. ]
  29793. ))
  29794. characterMakers.push(() => makeCharacter(
  29795. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29796. {
  29797. front: {
  29798. height: math.unit(5 + 6 / 12, "feet"),
  29799. name: "Front",
  29800. image: {
  29801. source: "./media/characters/cat/front.svg",
  29802. extra: 1449/1295,
  29803. bottom: 34/1483
  29804. },
  29805. form: "cat",
  29806. default: true
  29807. },
  29808. back: {
  29809. height: math.unit(5 + 6 / 12, "feet"),
  29810. name: "Back",
  29811. image: {
  29812. source: "./media/characters/cat/back.svg",
  29813. extra: 1466/1301,
  29814. bottom: 19/1485
  29815. },
  29816. form: "cat"
  29817. },
  29818. taur: {
  29819. height: math.unit(7, "feet"),
  29820. name: "Taur",
  29821. image: {
  29822. source: "./media/characters/cat/taur.svg",
  29823. extra: 1389/1233,
  29824. bottom: 83/1472
  29825. },
  29826. form: "taur",
  29827. default: true
  29828. },
  29829. lucarioFront: {
  29830. height: math.unit(4, "feet"),
  29831. name: "Lucario (Front)",
  29832. image: {
  29833. source: "./media/characters/cat/lucario-front.svg",
  29834. extra: 1149/1019,
  29835. bottom: 84/1233
  29836. },
  29837. form: "lucario",
  29838. default: true
  29839. },
  29840. lucarioBack: {
  29841. height: math.unit(4, "feet"),
  29842. name: "Lucario (Back)",
  29843. image: {
  29844. source: "./media/characters/cat/lucario-back.svg",
  29845. extra: 1190/1059,
  29846. bottom: 33/1223
  29847. },
  29848. form: "lucario"
  29849. },
  29850. megaLucario: {
  29851. height: math.unit(4, "feet"),
  29852. name: "Mega Lucario",
  29853. image: {
  29854. source: "./media/characters/cat/mega-lucario.svg",
  29855. extra: 1515 / 1319,
  29856. bottom: 63 / 1578
  29857. },
  29858. form: "lucario"
  29859. },
  29860. nickit: {
  29861. height: math.unit(2, "feet"),
  29862. name: "Nickit",
  29863. image: {
  29864. source: "./media/characters/cat/nickit.svg",
  29865. extra: 1980 / 1585,
  29866. bottom: 102 / 2082
  29867. },
  29868. form: "nickit",
  29869. default: true
  29870. },
  29871. lopunnyFront: {
  29872. height: math.unit(5, "feet"),
  29873. name: "Lopunny (Front)",
  29874. image: {
  29875. source: "./media/characters/cat/lopunny-front.svg",
  29876. extra: 1782 / 1469,
  29877. bottom: 38 / 1820
  29878. },
  29879. form: "lopunny",
  29880. default: true
  29881. },
  29882. lopunnyBack: {
  29883. height: math.unit(5, "feet"),
  29884. name: "Lopunny (Back)",
  29885. image: {
  29886. source: "./media/characters/cat/lopunny-back.svg",
  29887. extra: 1660 / 1490,
  29888. bottom: 25 / 1685
  29889. },
  29890. form: "lopunny"
  29891. },
  29892. },
  29893. [
  29894. {
  29895. name: "Really small",
  29896. height: math.unit(1, "nm")
  29897. },
  29898. {
  29899. name: "Micro",
  29900. height: math.unit(5, "inches")
  29901. },
  29902. {
  29903. name: "Normal",
  29904. height: math.unit(5 + 6 / 12, "feet"),
  29905. default: true
  29906. },
  29907. {
  29908. name: "Macro",
  29909. height: math.unit(50, "feet")
  29910. },
  29911. {
  29912. name: "Macro+",
  29913. height: math.unit(150, "feet")
  29914. },
  29915. {
  29916. name: "Megamacro",
  29917. height: math.unit(100, "miles")
  29918. },
  29919. ]
  29920. ))
  29921. characterMakers.push(() => makeCharacter(
  29922. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29923. {
  29924. front: {
  29925. height: math.unit(63.4, "meters"),
  29926. weight: math.unit(3.28349e+6, "kilograms"),
  29927. name: "Front",
  29928. image: {
  29929. source: "./media/characters/kirina-violet/front.svg",
  29930. extra: 2812 / 2725,
  29931. bottom: 0 / 2812
  29932. }
  29933. },
  29934. back: {
  29935. height: math.unit(63.4, "meters"),
  29936. weight: math.unit(3.28349e+6, "kilograms"),
  29937. name: "Back",
  29938. image: {
  29939. source: "./media/characters/kirina-violet/back.svg",
  29940. extra: 2812 / 2725,
  29941. bottom: 0 / 2812
  29942. }
  29943. },
  29944. mouth: {
  29945. height: math.unit(4.35, "meters"),
  29946. name: "Mouth",
  29947. image: {
  29948. source: "./media/characters/kirina-violet/mouth.svg"
  29949. }
  29950. },
  29951. paw: {
  29952. height: math.unit(5.6, "meters"),
  29953. name: "Paw",
  29954. image: {
  29955. source: "./media/characters/kirina-violet/paw.svg"
  29956. }
  29957. },
  29958. tail: {
  29959. height: math.unit(18, "meters"),
  29960. name: "Tail",
  29961. image: {
  29962. source: "./media/characters/kirina-violet/tail.svg"
  29963. }
  29964. },
  29965. },
  29966. [
  29967. {
  29968. name: "Macro",
  29969. height: math.unit(63.4, "meters"),
  29970. default: true
  29971. },
  29972. ]
  29973. ))
  29974. characterMakers.push(() => makeCharacter(
  29975. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29976. {
  29977. front: {
  29978. height: math.unit(75, "feet"),
  29979. name: "Front",
  29980. image: {
  29981. source: "./media/characters/cat-gigachu/front.svg",
  29982. extra: 1239/1027,
  29983. bottom: 32/1271
  29984. }
  29985. },
  29986. back: {
  29987. height: math.unit(75, "feet"),
  29988. name: "Back",
  29989. image: {
  29990. source: "./media/characters/cat-gigachu/back.svg",
  29991. extra: 1229/1030,
  29992. bottom: 9/1238
  29993. }
  29994. },
  29995. },
  29996. [
  29997. {
  29998. name: "Dynamax",
  29999. height: math.unit(75, "feet"),
  30000. default: true
  30001. },
  30002. ]
  30003. ))
  30004. characterMakers.push(() => makeCharacter(
  30005. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30006. {
  30007. front: {
  30008. height: math.unit(6, "feet"),
  30009. weight: math.unit(150, "lb"),
  30010. name: "Front",
  30011. image: {
  30012. source: "./media/characters/sfaiyan/front.svg",
  30013. extra: 999 / 978,
  30014. bottom: 5 / 1004
  30015. }
  30016. },
  30017. },
  30018. [
  30019. {
  30020. name: "Normal",
  30021. height: math.unit(1.82, "meters")
  30022. },
  30023. {
  30024. name: "Giant",
  30025. height: math.unit(2.27, "km"),
  30026. default: true
  30027. },
  30028. ]
  30029. ))
  30030. characterMakers.push(() => makeCharacter(
  30031. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30032. {
  30033. front: {
  30034. height: math.unit(179, "cm"),
  30035. weight: math.unit(100, "kg"),
  30036. name: "Front",
  30037. image: {
  30038. source: "./media/characters/raunehkeli/front.svg",
  30039. extra: 1934 / 1926,
  30040. bottom: 0 / 1934
  30041. }
  30042. },
  30043. },
  30044. [
  30045. {
  30046. name: "Normal",
  30047. height: math.unit(179, "cm")
  30048. },
  30049. {
  30050. name: "Maximum",
  30051. height: math.unit(575, "meters"),
  30052. default: true
  30053. },
  30054. ]
  30055. ))
  30056. characterMakers.push(() => makeCharacter(
  30057. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30058. {
  30059. front: {
  30060. height: math.unit(6, "feet"),
  30061. weight: math.unit(150, "lb"),
  30062. name: "Front",
  30063. image: {
  30064. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30065. extra: 2625 / 2518,
  30066. bottom: 60 / 2685
  30067. }
  30068. },
  30069. },
  30070. [
  30071. {
  30072. name: "Normal",
  30073. height: math.unit(6 + 2 / 12, "feet")
  30074. },
  30075. {
  30076. name: "Macro",
  30077. height: math.unit(1180, "feet"),
  30078. default: true
  30079. },
  30080. ]
  30081. ))
  30082. characterMakers.push(() => makeCharacter(
  30083. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30084. {
  30085. front: {
  30086. height: math.unit(5 + 6 / 12, "feet"),
  30087. weight: math.unit(108, "lb"),
  30088. name: "Front",
  30089. image: {
  30090. source: "./media/characters/lilith-zott/front.svg",
  30091. extra: 2510 / 2238,
  30092. bottom: 100 / 2610
  30093. }
  30094. },
  30095. frontDressed: {
  30096. height: math.unit(5 + 6 / 12, "feet"),
  30097. weight: math.unit(108, "lb"),
  30098. name: "Front (Dressed)",
  30099. image: {
  30100. source: "./media/characters/lilith-zott/front-dressed.svg",
  30101. extra: 2510 / 2238,
  30102. bottom: 100 / 2610
  30103. }
  30104. },
  30105. },
  30106. [
  30107. {
  30108. name: "Normal",
  30109. height: math.unit(5 + 6 / 12, "feet")
  30110. },
  30111. {
  30112. name: "Macro",
  30113. height: math.unit(1030, "feet"),
  30114. default: true
  30115. },
  30116. ]
  30117. ))
  30118. characterMakers.push(() => makeCharacter(
  30119. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30120. {
  30121. front: {
  30122. height: math.unit(6, "feet"),
  30123. weight: math.unit(150, "lb"),
  30124. name: "Front",
  30125. image: {
  30126. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30127. extra: 2567 / 2435,
  30128. bottom: 39 / 2606
  30129. }
  30130. },
  30131. frontSuper: {
  30132. height: math.unit(6, "feet"),
  30133. name: "Front (Super)",
  30134. image: {
  30135. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30136. extra: 2567 / 2435,
  30137. bottom: 39 / 2606
  30138. }
  30139. },
  30140. },
  30141. [
  30142. {
  30143. name: "Normal",
  30144. height: math.unit(5 + 10 / 12, "feet")
  30145. },
  30146. {
  30147. name: "Macro",
  30148. height: math.unit(1100, "feet"),
  30149. default: true
  30150. },
  30151. ]
  30152. ))
  30153. characterMakers.push(() => makeCharacter(
  30154. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30155. {
  30156. front: {
  30157. height: math.unit(100, "miles"),
  30158. name: "Front",
  30159. image: {
  30160. source: "./media/characters/sona/front.svg",
  30161. extra: 2433 / 2201,
  30162. bottom: 53 / 2486
  30163. }
  30164. },
  30165. foot: {
  30166. height: math.unit(16.1, "miles"),
  30167. name: "Foot",
  30168. image: {
  30169. source: "./media/characters/sona/foot.svg"
  30170. }
  30171. },
  30172. },
  30173. [
  30174. {
  30175. name: "Macro",
  30176. height: math.unit(100, "miles"),
  30177. default: true
  30178. },
  30179. ]
  30180. ))
  30181. characterMakers.push(() => makeCharacter(
  30182. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30183. {
  30184. front: {
  30185. height: math.unit(6, "feet"),
  30186. weight: math.unit(150, "lb"),
  30187. name: "Front",
  30188. image: {
  30189. source: "./media/characters/bailey/front.svg",
  30190. extra: 1778 / 1724,
  30191. bottom: 30 / 1808
  30192. }
  30193. },
  30194. },
  30195. [
  30196. {
  30197. name: "Micro",
  30198. height: math.unit(4, "inches")
  30199. },
  30200. {
  30201. name: "Normal",
  30202. height: math.unit(5 + 5 / 12, "feet"),
  30203. default: true
  30204. },
  30205. {
  30206. name: "Macro",
  30207. height: math.unit(250, "feet")
  30208. },
  30209. {
  30210. name: "Megamacro",
  30211. height: math.unit(100, "miles")
  30212. },
  30213. ]
  30214. ))
  30215. characterMakers.push(() => makeCharacter(
  30216. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30217. {
  30218. front: {
  30219. height: math.unit(5 + 2 / 12, "feet"),
  30220. weight: math.unit(120, "lb"),
  30221. name: "Front",
  30222. image: {
  30223. source: "./media/characters/snaps/front.svg",
  30224. extra: 2370 / 2177,
  30225. bottom: 48 / 2418
  30226. }
  30227. },
  30228. back: {
  30229. height: math.unit(5 + 2 / 12, "feet"),
  30230. weight: math.unit(120, "lb"),
  30231. name: "Back",
  30232. image: {
  30233. source: "./media/characters/snaps/back.svg",
  30234. extra: 2408 / 2258,
  30235. bottom: 15 / 2423
  30236. }
  30237. },
  30238. },
  30239. [
  30240. {
  30241. name: "Micro",
  30242. height: math.unit(9, "inches")
  30243. },
  30244. {
  30245. name: "Normal",
  30246. height: math.unit(5 + 2 / 12, "feet"),
  30247. default: true
  30248. },
  30249. {
  30250. name: "Mini Macro",
  30251. height: math.unit(10, "feet")
  30252. },
  30253. ]
  30254. ))
  30255. characterMakers.push(() => makeCharacter(
  30256. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30257. {
  30258. front: {
  30259. height: math.unit(1.8, "meters"),
  30260. weight: math.unit(85, "kg"),
  30261. name: "Front",
  30262. image: {
  30263. source: "./media/characters/azteck/front.svg",
  30264. extra: 2815 / 2625,
  30265. bottom: 89 / 2904
  30266. }
  30267. },
  30268. back: {
  30269. height: math.unit(1.8, "meters"),
  30270. weight: math.unit(85, "kg"),
  30271. name: "Back",
  30272. image: {
  30273. source: "./media/characters/azteck/back.svg",
  30274. extra: 2856 / 2648,
  30275. bottom: 85 / 2941
  30276. }
  30277. },
  30278. frontDressed: {
  30279. height: math.unit(1.8, "meters"),
  30280. weight: math.unit(85, "kg"),
  30281. name: "Front (Dressed)",
  30282. image: {
  30283. source: "./media/characters/azteck/front-dressed.svg",
  30284. extra: 2147 / 2003,
  30285. bottom: 68 / 2215
  30286. }
  30287. },
  30288. head: {
  30289. height: math.unit(0.47, "meters"),
  30290. weight: math.unit(85, "kg"),
  30291. name: "Head",
  30292. image: {
  30293. source: "./media/characters/azteck/head.svg"
  30294. }
  30295. },
  30296. },
  30297. [
  30298. {
  30299. name: "Bite sized",
  30300. height: math.unit(16, "cm")
  30301. },
  30302. {
  30303. name: "Normal",
  30304. height: math.unit(1.8, "meters"),
  30305. default: true
  30306. },
  30307. ]
  30308. ))
  30309. characterMakers.push(() => makeCharacter(
  30310. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30311. {
  30312. front: {
  30313. height: math.unit(6, "feet"),
  30314. weight: math.unit(150, "lb"),
  30315. name: "Front",
  30316. image: {
  30317. source: "./media/characters/pidge/front.svg",
  30318. extra: 1936/1820,
  30319. bottom: 0/1936
  30320. }
  30321. },
  30322. back: {
  30323. height: math.unit(6, "feet"),
  30324. weight: math.unit(150, "lb"),
  30325. name: "Back",
  30326. image: {
  30327. source: "./media/characters/pidge/back.svg",
  30328. extra: 1938/1843,
  30329. bottom: 0/1938
  30330. }
  30331. },
  30332. casual: {
  30333. height: math.unit(6, "feet"),
  30334. weight: math.unit(150, "lb"),
  30335. name: "Casual",
  30336. image: {
  30337. source: "./media/characters/pidge/casual.svg",
  30338. extra: 1936/1820,
  30339. bottom: 0/1936
  30340. }
  30341. },
  30342. tech: {
  30343. height: math.unit(6, "feet"),
  30344. weight: math.unit(150, "lb"),
  30345. name: "Tech",
  30346. image: {
  30347. source: "./media/characters/pidge/tech.svg",
  30348. extra: 1802/1682,
  30349. bottom: 0/1802
  30350. }
  30351. },
  30352. head: {
  30353. height: math.unit(1.61, "feet"),
  30354. name: "Head",
  30355. image: {
  30356. source: "./media/characters/pidge/head.svg"
  30357. }
  30358. },
  30359. collar: {
  30360. height: math.unit(0.82, "feet"),
  30361. name: "Collar",
  30362. image: {
  30363. source: "./media/characters/pidge/collar.svg"
  30364. }
  30365. },
  30366. },
  30367. [
  30368. {
  30369. name: "Macro",
  30370. height: math.unit(2, "mile"),
  30371. default: true
  30372. },
  30373. {
  30374. name: "PUPPY",
  30375. height: math.unit(20, "miles")
  30376. },
  30377. ]
  30378. ))
  30379. characterMakers.push(() => makeCharacter(
  30380. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30381. {
  30382. front: {
  30383. height: math.unit(6, "feet"),
  30384. weight: math.unit(150, "lb"),
  30385. name: "Front",
  30386. image: {
  30387. source: "./media/characters/en/front.svg",
  30388. extra: 1697 / 1563,
  30389. bottom: 103 / 1800
  30390. }
  30391. },
  30392. back: {
  30393. height: math.unit(6, "feet"),
  30394. weight: math.unit(150, "lb"),
  30395. name: "Back",
  30396. image: {
  30397. source: "./media/characters/en/back.svg",
  30398. extra: 1700 / 1570,
  30399. bottom: 51 / 1751
  30400. }
  30401. },
  30402. frontDressed: {
  30403. height: math.unit(6, "feet"),
  30404. weight: math.unit(150, "lb"),
  30405. name: "Front (Dressed)",
  30406. image: {
  30407. source: "./media/characters/en/front-dressed.svg",
  30408. extra: 1697 / 1563,
  30409. bottom: 103 / 1800
  30410. }
  30411. },
  30412. backDressed: {
  30413. height: math.unit(6, "feet"),
  30414. weight: math.unit(150, "lb"),
  30415. name: "Back (Dressed)",
  30416. image: {
  30417. source: "./media/characters/en/back-dressed.svg",
  30418. extra: 1700 / 1570,
  30419. bottom: 51 / 1751
  30420. }
  30421. },
  30422. },
  30423. [
  30424. {
  30425. name: "Macro",
  30426. height: math.unit(210, "feet"),
  30427. default: true
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30433. {
  30434. front: {
  30435. height: math.unit(6, "feet"),
  30436. weight: math.unit(150, "lb"),
  30437. name: "Front",
  30438. image: {
  30439. source: "./media/characters/haze-orris/front.svg",
  30440. extra: 3975 / 3525,
  30441. bottom: 137 / 4112
  30442. }
  30443. },
  30444. },
  30445. [
  30446. {
  30447. name: "Micro",
  30448. height: math.unit(150, "mm"),
  30449. default: true
  30450. },
  30451. ]
  30452. ))
  30453. characterMakers.push(() => makeCharacter(
  30454. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30455. {
  30456. front: {
  30457. height: math.unit(6, "feet"),
  30458. weight: math.unit(150, "lb"),
  30459. name: "Front",
  30460. image: {
  30461. source: "./media/characters/casselene-yaro/front.svg",
  30462. extra: 4721 / 4541,
  30463. bottom: 82 / 4803
  30464. }
  30465. },
  30466. back: {
  30467. height: math.unit(6, "feet"),
  30468. weight: math.unit(150, "lb"),
  30469. name: "Back",
  30470. image: {
  30471. source: "./media/characters/casselene-yaro/back.svg",
  30472. extra: 4569 / 4377,
  30473. bottom: 69 / 4638
  30474. }
  30475. },
  30476. dressed: {
  30477. height: math.unit(6, "feet"),
  30478. weight: math.unit(150, "lb"),
  30479. name: "Dressed",
  30480. image: {
  30481. source: "./media/characters/casselene-yaro/dressed.svg",
  30482. extra: 4721 / 4541,
  30483. bottom: 82 / 4803
  30484. }
  30485. },
  30486. maw: {
  30487. height: math.unit(1, "feet"),
  30488. name: "Maw",
  30489. image: {
  30490. source: "./media/characters/casselene-yaro/maw.svg"
  30491. }
  30492. },
  30493. },
  30494. [
  30495. {
  30496. name: "Macro",
  30497. height: math.unit(190, "feet"),
  30498. default: true
  30499. },
  30500. ]
  30501. ))
  30502. characterMakers.push(() => makeCharacter(
  30503. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30504. {
  30505. front: {
  30506. height: math.unit(10, "feet"),
  30507. weight: math.unit(15015, "lb"),
  30508. name: "Front",
  30509. image: {
  30510. source: "./media/characters/platine/front.svg",
  30511. extra: 1428/1353,
  30512. bottom: 31/1459
  30513. }
  30514. },
  30515. },
  30516. [
  30517. {
  30518. name: "Normal",
  30519. height: math.unit(10, "feet"),
  30520. default: true
  30521. },
  30522. {
  30523. name: "Macro",
  30524. height: math.unit(100, "feet")
  30525. },
  30526. {
  30527. name: "Megamacro",
  30528. height: math.unit(1000, "feet")
  30529. },
  30530. ]
  30531. ))
  30532. characterMakers.push(() => makeCharacter(
  30533. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30534. {
  30535. front: {
  30536. height: math.unit(15 + 5 / 12, "feet"),
  30537. weight: math.unit(4600, "lb"),
  30538. name: "Front",
  30539. image: {
  30540. source: "./media/characters/neapolitan-ananassa/front.svg",
  30541. extra: 2903 / 2736,
  30542. bottom: 0 / 2903
  30543. }
  30544. },
  30545. side: {
  30546. height: math.unit(15 + 5 / 12, "feet"),
  30547. weight: math.unit(4600, "lb"),
  30548. name: "Side",
  30549. image: {
  30550. source: "./media/characters/neapolitan-ananassa/side.svg",
  30551. extra: 2925 / 2719,
  30552. bottom: 0 / 2925
  30553. }
  30554. },
  30555. back: {
  30556. height: math.unit(15 + 5 / 12, "feet"),
  30557. weight: math.unit(4600, "lb"),
  30558. name: "Back",
  30559. image: {
  30560. source: "./media/characters/neapolitan-ananassa/back.svg",
  30561. extra: 2903 / 2736,
  30562. bottom: 0 / 2903
  30563. }
  30564. },
  30565. },
  30566. [
  30567. {
  30568. name: "Normal",
  30569. height: math.unit(15 + 5 / 12, "feet"),
  30570. default: true
  30571. },
  30572. {
  30573. name: "Post-Millenium",
  30574. height: math.unit(35 + 5 / 12, "feet")
  30575. },
  30576. {
  30577. name: "Post-Era",
  30578. height: math.unit(450 + 5 / 12, "feet")
  30579. },
  30580. ]
  30581. ))
  30582. characterMakers.push(() => makeCharacter(
  30583. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30584. {
  30585. front: {
  30586. height: math.unit(300, "meters"),
  30587. weight: math.unit(125000, "tonnes"),
  30588. name: "Front",
  30589. image: {
  30590. source: "./media/characters/pazuzu/front.svg",
  30591. extra: 877 / 794,
  30592. bottom: 47 / 924
  30593. }
  30594. },
  30595. },
  30596. [
  30597. {
  30598. name: "Macro",
  30599. height: math.unit(300, "meters"),
  30600. default: true
  30601. },
  30602. ]
  30603. ))
  30604. characterMakers.push(() => makeCharacter(
  30605. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30606. {
  30607. side: {
  30608. height: math.unit(10 + 7 / 12, "feet"),
  30609. weight: math.unit(2.5, "tons"),
  30610. name: "Side",
  30611. image: {
  30612. source: "./media/characters/aasha/side.svg",
  30613. extra: 1345 / 1245,
  30614. bottom: 111 / 1456
  30615. }
  30616. },
  30617. back: {
  30618. height: math.unit(10 + 7 / 12, "feet"),
  30619. weight: math.unit(2.5, "tons"),
  30620. name: "Back",
  30621. image: {
  30622. source: "./media/characters/aasha/back.svg",
  30623. extra: 1133 / 1057,
  30624. bottom: 257 / 1390
  30625. }
  30626. },
  30627. },
  30628. [
  30629. {
  30630. name: "Normal",
  30631. height: math.unit(10 + 7 / 12, "feet"),
  30632. default: true
  30633. },
  30634. ]
  30635. ))
  30636. characterMakers.push(() => makeCharacter(
  30637. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30638. {
  30639. front: {
  30640. height: math.unit(6 + 3 / 12, "feet"),
  30641. name: "Front",
  30642. image: {
  30643. source: "./media/characters/nevan/front.svg",
  30644. extra: 704 / 704,
  30645. bottom: 28 / 732
  30646. }
  30647. },
  30648. back: {
  30649. height: math.unit(6 + 3 / 12, "feet"),
  30650. name: "Back",
  30651. image: {
  30652. source: "./media/characters/nevan/back.svg",
  30653. extra: 714 / 714,
  30654. bottom: 21 / 735
  30655. }
  30656. },
  30657. frontFlaccid: {
  30658. height: math.unit(6 + 3 / 12, "feet"),
  30659. name: "Front (Flaccid)",
  30660. image: {
  30661. source: "./media/characters/nevan/front-flaccid.svg",
  30662. extra: 704 / 704,
  30663. bottom: 28 / 732
  30664. }
  30665. },
  30666. frontErect: {
  30667. height: math.unit(6 + 3 / 12, "feet"),
  30668. name: "Front (Erect)",
  30669. image: {
  30670. source: "./media/characters/nevan/front-erect.svg",
  30671. extra: 704 / 704,
  30672. bottom: 28 / 732
  30673. }
  30674. },
  30675. backFlaccid: {
  30676. height: math.unit(6 + 3 / 12, "feet"),
  30677. name: "Back (Flaccid)",
  30678. image: {
  30679. source: "./media/characters/nevan/back-flaccid.svg",
  30680. extra: 714 / 714,
  30681. bottom: 21 / 735
  30682. }
  30683. },
  30684. },
  30685. [
  30686. {
  30687. name: "Normal",
  30688. height: math.unit(6 + 3 / 12, "feet"),
  30689. default: true
  30690. },
  30691. ]
  30692. ))
  30693. characterMakers.push(() => makeCharacter(
  30694. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30695. {
  30696. front: {
  30697. height: math.unit(4, "feet"),
  30698. name: "Front",
  30699. image: {
  30700. source: "./media/characters/arhan/front.svg",
  30701. extra: 3368 / 3133,
  30702. bottom: 0 / 3368
  30703. }
  30704. },
  30705. side: {
  30706. height: math.unit(4, "feet"),
  30707. name: "Side",
  30708. image: {
  30709. source: "./media/characters/arhan/side.svg",
  30710. extra: 3347 / 3105,
  30711. bottom: 0 / 3347
  30712. }
  30713. },
  30714. tongue: {
  30715. height: math.unit(1.42, "feet"),
  30716. name: "Tongue",
  30717. image: {
  30718. source: "./media/characters/arhan/tongue.svg"
  30719. }
  30720. },
  30721. head: {
  30722. height: math.unit(0.85, "feet"),
  30723. name: "Head",
  30724. image: {
  30725. source: "./media/characters/arhan/head.svg"
  30726. }
  30727. },
  30728. },
  30729. [
  30730. {
  30731. name: "Normal",
  30732. height: math.unit(4, "feet"),
  30733. default: true
  30734. },
  30735. ]
  30736. ))
  30737. characterMakers.push(() => makeCharacter(
  30738. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30739. {
  30740. front: {
  30741. height: math.unit(5 + 7.5 / 12, "feet"),
  30742. weight: math.unit(120, "lb"),
  30743. name: "Front",
  30744. image: {
  30745. source: "./media/characters/digi-duncan/front.svg",
  30746. extra: 330 / 326,
  30747. bottom: 16 / 346
  30748. }
  30749. },
  30750. side: {
  30751. height: math.unit(5 + 7.5 / 12, "feet"),
  30752. weight: math.unit(120, "lb"),
  30753. name: "Side",
  30754. image: {
  30755. source: "./media/characters/digi-duncan/side.svg",
  30756. extra: 341 / 337,
  30757. bottom: 1 / 342
  30758. }
  30759. },
  30760. back: {
  30761. height: math.unit(5 + 7.5 / 12, "feet"),
  30762. weight: math.unit(120, "lb"),
  30763. name: "Back",
  30764. image: {
  30765. source: "./media/characters/digi-duncan/back.svg",
  30766. extra: 330 / 326,
  30767. bottom: 12 / 342
  30768. }
  30769. },
  30770. },
  30771. [
  30772. {
  30773. name: "Speck",
  30774. height: math.unit(0.25, "mm")
  30775. },
  30776. {
  30777. name: "Micro",
  30778. height: math.unit(5, "mm")
  30779. },
  30780. {
  30781. name: "Tiny",
  30782. height: math.unit(0.5, "inches"),
  30783. default: true
  30784. },
  30785. {
  30786. name: "Human",
  30787. height: math.unit(5 + 7.5 / 12, "feet")
  30788. },
  30789. {
  30790. name: "Minigiant",
  30791. height: math.unit(8 + 5.25, "feet")
  30792. },
  30793. {
  30794. name: "Giant",
  30795. height: math.unit(2000, "feet")
  30796. },
  30797. {
  30798. name: "Mega",
  30799. height: math.unit(371.1, "miles")
  30800. },
  30801. ]
  30802. ))
  30803. characterMakers.push(() => makeCharacter(
  30804. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30805. {
  30806. front: {
  30807. height: math.unit(2, "meters"),
  30808. weight: math.unit(350, "kg"),
  30809. name: "Front",
  30810. image: {
  30811. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30812. extra: 898 / 838,
  30813. bottom: 9 / 907
  30814. }
  30815. },
  30816. },
  30817. [
  30818. {
  30819. name: "Micro",
  30820. height: math.unit(8, "meters")
  30821. },
  30822. {
  30823. name: "Normal",
  30824. height: math.unit(50, "meters"),
  30825. default: true
  30826. },
  30827. {
  30828. name: "Macro",
  30829. height: math.unit(500, "meters")
  30830. },
  30831. ]
  30832. ))
  30833. characterMakers.push(() => makeCharacter(
  30834. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30835. {
  30836. front: {
  30837. height: math.unit(6 + 6 / 12, "feet"),
  30838. name: "Front",
  30839. image: {
  30840. source: "./media/characters/khardesh/front.svg",
  30841. extra: 1788/1596,
  30842. bottom: 66/1854
  30843. }
  30844. },
  30845. back: {
  30846. height: math.unit(6 + 6 / 12, "feet"),
  30847. name: "Back",
  30848. image: {
  30849. source: "./media/characters/khardesh/back.svg",
  30850. extra: 1781/1584,
  30851. bottom: 68/1849
  30852. }
  30853. },
  30854. },
  30855. [
  30856. {
  30857. name: "Normal",
  30858. height: math.unit(6 + 6 / 12, "feet"),
  30859. default: true
  30860. },
  30861. {
  30862. name: "Normal+",
  30863. height: math.unit(4, "meters")
  30864. },
  30865. {
  30866. name: "Macro",
  30867. height: math.unit(50, "meters")
  30868. },
  30869. {
  30870. name: "Macro+",
  30871. height: math.unit(100, "meters")
  30872. },
  30873. {
  30874. name: "Megamacro",
  30875. height: math.unit(20, "km")
  30876. },
  30877. ]
  30878. ))
  30879. characterMakers.push(() => makeCharacter(
  30880. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30881. {
  30882. front: {
  30883. height: math.unit(6, "feet"),
  30884. weight: math.unit(150, "lb"),
  30885. name: "Front",
  30886. image: {
  30887. source: "./media/characters/kosho/front.svg",
  30888. extra: 1847 / 1847,
  30889. bottom: 86 / 1933
  30890. }
  30891. },
  30892. },
  30893. [
  30894. {
  30895. name: "Second-stage micro",
  30896. height: math.unit(0.5, "inches")
  30897. },
  30898. {
  30899. name: "First-stage micro",
  30900. height: math.unit(6, "inches")
  30901. },
  30902. {
  30903. name: "Normal",
  30904. height: math.unit(6, "feet"),
  30905. default: true
  30906. },
  30907. {
  30908. name: "First-stage macro",
  30909. height: math.unit(72, "feet")
  30910. },
  30911. {
  30912. name: "Second-stage macro",
  30913. height: math.unit(864, "feet")
  30914. },
  30915. ]
  30916. ))
  30917. characterMakers.push(() => makeCharacter(
  30918. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30919. {
  30920. normal: {
  30921. height: math.unit(4 + 6 / 12, "feet"),
  30922. name: "Normal",
  30923. image: {
  30924. source: "./media/characters/hydra/normal.svg",
  30925. extra: 2833 / 2634,
  30926. bottom: 68 / 2901
  30927. }
  30928. },
  30929. smol: {
  30930. height: math.unit(0.705, "inches"),
  30931. name: "Smol",
  30932. image: {
  30933. source: "./media/characters/hydra/smol.svg",
  30934. extra: 2715 / 2540,
  30935. bottom: 0 / 2715
  30936. }
  30937. },
  30938. },
  30939. [
  30940. {
  30941. name: "Normal",
  30942. height: math.unit(4 + 6 / 12, "feet"),
  30943. default: true
  30944. }
  30945. ]
  30946. ))
  30947. characterMakers.push(() => makeCharacter(
  30948. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30949. {
  30950. front: {
  30951. height: math.unit(0.6, "cm"),
  30952. name: "Front",
  30953. image: {
  30954. source: "./media/characters/daz/front.svg",
  30955. extra: 1682 / 1164,
  30956. bottom: 42 / 1724
  30957. }
  30958. },
  30959. },
  30960. [
  30961. {
  30962. name: "Normal",
  30963. height: math.unit(0.6, "cm"),
  30964. default: true
  30965. },
  30966. ]
  30967. ))
  30968. characterMakers.push(() => makeCharacter(
  30969. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30970. {
  30971. front: {
  30972. height: math.unit(6, "feet"),
  30973. weight: math.unit(235, "lb"),
  30974. name: "Front",
  30975. image: {
  30976. source: "./media/characters/theo-pangolin/front.svg",
  30977. extra: 1996 / 1969,
  30978. bottom: 115 / 2111
  30979. }
  30980. },
  30981. back: {
  30982. height: math.unit(6, "feet"),
  30983. weight: math.unit(235, "lb"),
  30984. name: "Back",
  30985. image: {
  30986. source: "./media/characters/theo-pangolin/back.svg",
  30987. extra: 1979 / 1979,
  30988. bottom: 40 / 2019
  30989. }
  30990. },
  30991. feral: {
  30992. height: math.unit(2, "feet"),
  30993. weight: math.unit(30, "lb"),
  30994. name: "Feral",
  30995. image: {
  30996. source: "./media/characters/theo-pangolin/feral.svg",
  30997. extra: 803 / 791,
  30998. bottom: 181 / 984
  30999. }
  31000. },
  31001. footFive: {
  31002. height: math.unit(1.43, "feet"),
  31003. name: "Foot (Five Toes)",
  31004. image: {
  31005. source: "./media/characters/theo-pangolin/foot-five.svg"
  31006. }
  31007. },
  31008. footFour: {
  31009. height: math.unit(1.43, "feet"),
  31010. name: "Foot (Four Toes)",
  31011. image: {
  31012. source: "./media/characters/theo-pangolin/foot-four.svg"
  31013. }
  31014. },
  31015. handFour: {
  31016. height: math.unit(0.81, "feet"),
  31017. name: "Hand (Four Fingers)",
  31018. image: {
  31019. source: "./media/characters/theo-pangolin/hand-four.svg"
  31020. }
  31021. },
  31022. handThree: {
  31023. height: math.unit(0.81, "feet"),
  31024. name: "Hand (Three Fingers)",
  31025. image: {
  31026. source: "./media/characters/theo-pangolin/hand-three.svg"
  31027. }
  31028. },
  31029. headFront: {
  31030. height: math.unit(1.37, "feet"),
  31031. name: "Head (Front)",
  31032. image: {
  31033. source: "./media/characters/theo-pangolin/head-front.svg"
  31034. }
  31035. },
  31036. headSide: {
  31037. height: math.unit(1.43, "feet"),
  31038. name: "Head (Side)",
  31039. image: {
  31040. source: "./media/characters/theo-pangolin/head-side.svg"
  31041. }
  31042. },
  31043. tongue: {
  31044. height: math.unit(2.29, "feet"),
  31045. name: "Tongue",
  31046. image: {
  31047. source: "./media/characters/theo-pangolin/tongue.svg"
  31048. }
  31049. },
  31050. },
  31051. [
  31052. {
  31053. name: "Normal",
  31054. height: math.unit(6, "feet")
  31055. },
  31056. {
  31057. name: "Macro",
  31058. height: math.unit(400, "feet"),
  31059. default: true
  31060. },
  31061. ]
  31062. ))
  31063. characterMakers.push(() => makeCharacter(
  31064. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31065. {
  31066. front: {
  31067. height: math.unit(6, "inches"),
  31068. weight: math.unit(0.036, "kg"),
  31069. name: "Front",
  31070. image: {
  31071. source: "./media/characters/renée/front.svg",
  31072. extra: 900 / 886,
  31073. bottom: 8 / 908
  31074. }
  31075. },
  31076. },
  31077. [
  31078. {
  31079. name: "Nano",
  31080. height: math.unit(1, "nm")
  31081. },
  31082. {
  31083. name: "Micro",
  31084. height: math.unit(1, "mm")
  31085. },
  31086. {
  31087. name: "Normal",
  31088. height: math.unit(6, "inches")
  31089. },
  31090. {
  31091. name: "Macro",
  31092. height: math.unit(2000, "feet"),
  31093. default: true
  31094. },
  31095. {
  31096. name: "Megamacro",
  31097. height: math.unit(2, "km")
  31098. },
  31099. {
  31100. name: "Gigamacro",
  31101. height: math.unit(2000, "km")
  31102. },
  31103. {
  31104. name: "Teramacro",
  31105. height: math.unit(250000, "km")
  31106. },
  31107. ]
  31108. ))
  31109. characterMakers.push(() => makeCharacter(
  31110. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31111. {
  31112. front: {
  31113. height: math.unit(4, "meters"),
  31114. weight: math.unit(150, "kg"),
  31115. name: "Front",
  31116. image: {
  31117. source: "./media/characters/caledvwlch/front.svg",
  31118. extra: 1760 / 1551,
  31119. bottom: 28 / 1788
  31120. }
  31121. },
  31122. side: {
  31123. height: math.unit(4, "meters"),
  31124. weight: math.unit(150, "kg"),
  31125. name: "Side",
  31126. image: {
  31127. source: "./media/characters/caledvwlch/side.svg",
  31128. extra: 1605 / 1536,
  31129. bottom: 31 / 1636
  31130. }
  31131. },
  31132. back: {
  31133. height: math.unit(4, "meters"),
  31134. weight: math.unit(150, "kg"),
  31135. name: "Back",
  31136. image: {
  31137. source: "./media/characters/caledvwlch/back.svg",
  31138. extra: 1635 / 1565,
  31139. bottom: 27 / 1662
  31140. }
  31141. },
  31142. },
  31143. [
  31144. {
  31145. name: "\"Incognito\"",
  31146. height: math.unit(4, "meters")
  31147. },
  31148. {
  31149. name: "Small rampage",
  31150. height: math.unit(600, "meters")
  31151. },
  31152. {
  31153. name: "Mega",
  31154. height: math.unit(30, "km")
  31155. },
  31156. {
  31157. name: "Home-size",
  31158. height: math.unit(50, "km"),
  31159. default: true
  31160. },
  31161. {
  31162. name: "Giga",
  31163. height: math.unit(300, "km")
  31164. },
  31165. {
  31166. name: "Lounging",
  31167. height: math.unit(11000, "km")
  31168. },
  31169. {
  31170. name: "Planet snacking",
  31171. height: math.unit(2000000, "km")
  31172. },
  31173. ]
  31174. ))
  31175. characterMakers.push(() => makeCharacter(
  31176. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31177. {
  31178. front: {
  31179. height: math.unit(6, "feet"),
  31180. weight: math.unit(215, "lb"),
  31181. name: "Front",
  31182. image: {
  31183. source: "./media/characters/sapphire-svell/front.svg",
  31184. extra: 495 / 455,
  31185. bottom: 20 / 515
  31186. }
  31187. },
  31188. back: {
  31189. height: math.unit(6, "feet"),
  31190. weight: math.unit(216, "lb"),
  31191. name: "Back",
  31192. image: {
  31193. source: "./media/characters/sapphire-svell/back.svg",
  31194. extra: 497 / 477,
  31195. bottom: 7 / 504
  31196. }
  31197. },
  31198. maw: {
  31199. height: math.unit(1.57, "feet"),
  31200. name: "Maw",
  31201. image: {
  31202. source: "./media/characters/sapphire-svell/maw.svg"
  31203. }
  31204. },
  31205. foot: {
  31206. height: math.unit(1.07, "feet"),
  31207. name: "Foot",
  31208. image: {
  31209. source: "./media/characters/sapphire-svell/foot.svg"
  31210. }
  31211. },
  31212. toering: {
  31213. height: math.unit(1.7, "inch"),
  31214. name: "Toering",
  31215. image: {
  31216. source: "./media/characters/sapphire-svell/toering.svg"
  31217. }
  31218. },
  31219. },
  31220. [
  31221. {
  31222. name: "Normal",
  31223. height: math.unit(300, "feet"),
  31224. default: true
  31225. },
  31226. {
  31227. name: "Augmented",
  31228. height: math.unit(1250, "feet")
  31229. },
  31230. {
  31231. name: "Unleashed",
  31232. height: math.unit(3000, "feet")
  31233. },
  31234. ]
  31235. ))
  31236. characterMakers.push(() => makeCharacter(
  31237. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31238. {
  31239. side: {
  31240. height: math.unit(2 + 3 / 12, "feet"),
  31241. weight: math.unit(110, "lb"),
  31242. name: "Side",
  31243. image: {
  31244. source: "./media/characters/glitch-flux/side.svg",
  31245. extra: 997 / 805,
  31246. bottom: 20 / 1017
  31247. }
  31248. },
  31249. },
  31250. [
  31251. {
  31252. name: "Normal",
  31253. height: math.unit(2 + 3 / 12, "feet"),
  31254. default: true
  31255. },
  31256. ]
  31257. ))
  31258. characterMakers.push(() => makeCharacter(
  31259. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31260. {
  31261. front: {
  31262. height: math.unit(4, "meters"),
  31263. name: "Front",
  31264. image: {
  31265. source: "./media/characters/mid/front.svg",
  31266. extra: 507 / 476,
  31267. bottom: 17 / 524
  31268. }
  31269. },
  31270. back: {
  31271. height: math.unit(4, "meters"),
  31272. name: "Back",
  31273. image: {
  31274. source: "./media/characters/mid/back.svg",
  31275. extra: 519 / 487,
  31276. bottom: 7 / 526
  31277. }
  31278. },
  31279. stuck: {
  31280. height: math.unit(2.2, "meters"),
  31281. name: "Stuck",
  31282. image: {
  31283. source: "./media/characters/mid/stuck.svg",
  31284. extra: 1951 / 1869,
  31285. bottom: 88 / 2039
  31286. }
  31287. }
  31288. },
  31289. [
  31290. {
  31291. name: "Normal",
  31292. height: math.unit(4, "meters"),
  31293. default: true
  31294. },
  31295. {
  31296. name: "Big",
  31297. height: math.unit(10, "meters")
  31298. },
  31299. {
  31300. name: "Macro",
  31301. height: math.unit(800, "meters")
  31302. },
  31303. {
  31304. name: "Megamacro",
  31305. height: math.unit(100, "km")
  31306. },
  31307. {
  31308. name: "Overgrown",
  31309. height: math.unit(1, "parsec")
  31310. },
  31311. ]
  31312. ))
  31313. characterMakers.push(() => makeCharacter(
  31314. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31315. {
  31316. front: {
  31317. height: math.unit(2.5, "meters"),
  31318. weight: math.unit(225, "kg"),
  31319. name: "Front",
  31320. image: {
  31321. source: "./media/characters/iris/front.svg",
  31322. extra: 3348 / 3251,
  31323. bottom: 205 / 3553
  31324. }
  31325. },
  31326. maw: {
  31327. height: math.unit(0.56, "meter"),
  31328. name: "Maw",
  31329. image: {
  31330. source: "./media/characters/iris/maw.svg"
  31331. }
  31332. },
  31333. },
  31334. [
  31335. {
  31336. name: "Mewter cat",
  31337. height: math.unit(1.2, "meters")
  31338. },
  31339. {
  31340. name: "Minimacro",
  31341. height: math.unit(2.5, "meters"),
  31342. default: true
  31343. },
  31344. {
  31345. name: "Macro",
  31346. height: math.unit(180, "meters")
  31347. },
  31348. {
  31349. name: "Megamacro",
  31350. height: math.unit(2746, "meters")
  31351. },
  31352. ]
  31353. ))
  31354. characterMakers.push(() => makeCharacter(
  31355. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31356. {
  31357. front: {
  31358. height: math.unit(6, "feet"),
  31359. weight: math.unit(135, "lb"),
  31360. name: "Front",
  31361. image: {
  31362. source: "./media/characters/axel/front.svg",
  31363. extra: 908 / 908,
  31364. bottom: 58 / 966
  31365. }
  31366. },
  31367. side: {
  31368. height: math.unit(6, "feet"),
  31369. weight: math.unit(135, "lb"),
  31370. name: "Side",
  31371. image: {
  31372. source: "./media/characters/axel/side.svg",
  31373. extra: 958 / 958,
  31374. bottom: 11 / 969
  31375. }
  31376. },
  31377. back: {
  31378. height: math.unit(6, "feet"),
  31379. weight: math.unit(135, "lb"),
  31380. name: "Back",
  31381. image: {
  31382. source: "./media/characters/axel/back.svg",
  31383. extra: 887 / 887,
  31384. bottom: 34 / 921
  31385. }
  31386. },
  31387. head: {
  31388. height: math.unit(1.07, "feet"),
  31389. name: "Head",
  31390. image: {
  31391. source: "./media/characters/axel/head.svg"
  31392. }
  31393. },
  31394. beak: {
  31395. height: math.unit(1.4, "feet"),
  31396. name: "Beak",
  31397. image: {
  31398. source: "./media/characters/axel/beak.svg"
  31399. }
  31400. },
  31401. beakSide: {
  31402. height: math.unit(1.4, "feet"),
  31403. name: "Beak Side",
  31404. image: {
  31405. source: "./media/characters/axel/beak-side.svg"
  31406. }
  31407. },
  31408. sheath: {
  31409. height: math.unit(0.5, "feet"),
  31410. name: "Sheath",
  31411. image: {
  31412. source: "./media/characters/axel/sheath.svg"
  31413. }
  31414. },
  31415. dick: {
  31416. height: math.unit(0.98, "feet"),
  31417. name: "Dick",
  31418. image: {
  31419. source: "./media/characters/axel/dick.svg"
  31420. }
  31421. },
  31422. },
  31423. [
  31424. {
  31425. name: "Macro",
  31426. height: math.unit(68, "meters"),
  31427. default: true
  31428. },
  31429. ]
  31430. ))
  31431. characterMakers.push(() => makeCharacter(
  31432. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31433. {
  31434. front: {
  31435. height: math.unit(3.5, "meters"),
  31436. weight: math.unit(1200, "kg"),
  31437. name: "Front",
  31438. image: {
  31439. source: "./media/characters/joanna/front.svg",
  31440. extra: 1596 / 1488,
  31441. bottom: 29 / 1625
  31442. }
  31443. },
  31444. back: {
  31445. height: math.unit(3.5, "meters"),
  31446. weight: math.unit(1200, "kg"),
  31447. name: "Back",
  31448. image: {
  31449. source: "./media/characters/joanna/back.svg",
  31450. extra: 1594 / 1495,
  31451. bottom: 26 / 1620
  31452. }
  31453. },
  31454. frontShorts: {
  31455. height: math.unit(3.5, "meters"),
  31456. weight: math.unit(1200, "kg"),
  31457. name: "Front (Shorts)",
  31458. image: {
  31459. source: "./media/characters/joanna/front-shorts.svg",
  31460. extra: 1596 / 1488,
  31461. bottom: 29 / 1625
  31462. }
  31463. },
  31464. frontBiker: {
  31465. height: math.unit(3.5, "meters"),
  31466. weight: math.unit(1200, "kg"),
  31467. name: "Front (Biker)",
  31468. image: {
  31469. source: "./media/characters/joanna/front-biker.svg",
  31470. extra: 1596 / 1488,
  31471. bottom: 29 / 1625
  31472. }
  31473. },
  31474. backBiker: {
  31475. height: math.unit(3.5, "meters"),
  31476. weight: math.unit(1200, "kg"),
  31477. name: "Back (Biker)",
  31478. image: {
  31479. source: "./media/characters/joanna/back-biker.svg",
  31480. extra: 1594 / 1495,
  31481. bottom: 88 / 1682
  31482. }
  31483. },
  31484. bikeLeft: {
  31485. height: math.unit(2.4, "meters"),
  31486. weight: math.unit(1600, "kg"),
  31487. name: "Bike (Left)",
  31488. image: {
  31489. source: "./media/characters/joanna/bike-left.svg",
  31490. extra: 720 / 720,
  31491. bottom: 8 / 728
  31492. }
  31493. },
  31494. bikeRight: {
  31495. height: math.unit(2.4, "meters"),
  31496. weight: math.unit(1600, "kg"),
  31497. name: "Bike (Right)",
  31498. image: {
  31499. source: "./media/characters/joanna/bike-right.svg",
  31500. extra: 720 / 720,
  31501. bottom: 8 / 728
  31502. }
  31503. },
  31504. },
  31505. [
  31506. {
  31507. name: "Incognito",
  31508. height: math.unit(3.5, "meters")
  31509. },
  31510. {
  31511. name: "Casual Big",
  31512. height: math.unit(200, "meters")
  31513. },
  31514. {
  31515. name: "Macro",
  31516. height: math.unit(600, "meters")
  31517. },
  31518. {
  31519. name: "Original",
  31520. height: math.unit(20, "km"),
  31521. default: true
  31522. },
  31523. {
  31524. name: "Giga",
  31525. height: math.unit(400, "km")
  31526. },
  31527. {
  31528. name: "Lounging",
  31529. height: math.unit(1500, "km")
  31530. },
  31531. {
  31532. name: "Planetary",
  31533. height: math.unit(200000, "km")
  31534. },
  31535. ]
  31536. ))
  31537. characterMakers.push(() => makeCharacter(
  31538. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31539. {
  31540. front: {
  31541. height: math.unit(6, "feet"),
  31542. weight: math.unit(150, "lb"),
  31543. name: "Front",
  31544. image: {
  31545. source: "./media/characters/hugo-sigil/front.svg",
  31546. extra: 522 / 500,
  31547. bottom: 2 / 524
  31548. }
  31549. },
  31550. back: {
  31551. height: math.unit(6, "feet"),
  31552. weight: math.unit(150, "lb"),
  31553. name: "Back",
  31554. image: {
  31555. source: "./media/characters/hugo-sigil/back.svg",
  31556. extra: 519 / 495,
  31557. bottom: 5 / 524
  31558. }
  31559. },
  31560. maw: {
  31561. height: math.unit(1.4, "feet"),
  31562. weight: math.unit(150, "lb"),
  31563. name: "Maw",
  31564. image: {
  31565. source: "./media/characters/hugo-sigil/maw.svg"
  31566. }
  31567. },
  31568. feet: {
  31569. height: math.unit(1.56, "feet"),
  31570. weight: math.unit(150, "lb"),
  31571. name: "Feet",
  31572. image: {
  31573. source: "./media/characters/hugo-sigil/feet.svg",
  31574. extra: 177 / 177,
  31575. bottom: 12 / 189
  31576. }
  31577. },
  31578. },
  31579. [
  31580. {
  31581. name: "Normal",
  31582. height: math.unit(6, "feet")
  31583. },
  31584. {
  31585. name: "Macro",
  31586. height: math.unit(200, "feet"),
  31587. default: true
  31588. },
  31589. ]
  31590. ))
  31591. characterMakers.push(() => makeCharacter(
  31592. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31593. {
  31594. front: {
  31595. height: math.unit(6, "feet"),
  31596. weight: math.unit(150, "lb"),
  31597. name: "Front",
  31598. image: {
  31599. source: "./media/characters/peri/front.svg",
  31600. extra: 2354 / 2233,
  31601. bottom: 49 / 2403
  31602. }
  31603. },
  31604. },
  31605. [
  31606. {
  31607. name: "Really Small",
  31608. height: math.unit(1, "nm")
  31609. },
  31610. {
  31611. name: "Micro",
  31612. height: math.unit(4, "inches")
  31613. },
  31614. {
  31615. name: "Normal",
  31616. height: math.unit(7, "inches"),
  31617. default: true
  31618. },
  31619. {
  31620. name: "Macro",
  31621. height: math.unit(400, "feet")
  31622. },
  31623. {
  31624. name: "Megamacro",
  31625. height: math.unit(100, "miles")
  31626. },
  31627. ]
  31628. ))
  31629. characterMakers.push(() => makeCharacter(
  31630. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31631. {
  31632. frontSlim: {
  31633. height: math.unit(7, "feet"),
  31634. name: "Front (Slim)",
  31635. image: {
  31636. source: "./media/characters/issilora/front-slim.svg",
  31637. extra: 529 / 449,
  31638. bottom: 53 / 582
  31639. }
  31640. },
  31641. sideSlim: {
  31642. height: math.unit(7, "feet"),
  31643. name: "Side (Slim)",
  31644. image: {
  31645. source: "./media/characters/issilora/side-slim.svg",
  31646. extra: 570 / 480,
  31647. bottom: 30 / 600
  31648. }
  31649. },
  31650. backSlim: {
  31651. height: math.unit(7, "feet"),
  31652. name: "Back (Slim)",
  31653. image: {
  31654. source: "./media/characters/issilora/back-slim.svg",
  31655. extra: 537 / 455,
  31656. bottom: 46 / 583
  31657. }
  31658. },
  31659. frontBuff: {
  31660. height: math.unit(7, "feet"),
  31661. name: "Front (Buff)",
  31662. image: {
  31663. source: "./media/characters/issilora/front-buff.svg",
  31664. extra: 2310 / 2035,
  31665. bottom: 335 / 2645
  31666. }
  31667. },
  31668. head: {
  31669. height: math.unit(1.94, "feet"),
  31670. name: "Head",
  31671. image: {
  31672. source: "./media/characters/issilora/head.svg"
  31673. }
  31674. },
  31675. },
  31676. [
  31677. {
  31678. name: "Minimum",
  31679. height: math.unit(7, "feet")
  31680. },
  31681. {
  31682. name: "Comfortable",
  31683. height: math.unit(17, "feet")
  31684. },
  31685. {
  31686. name: "Fun Size",
  31687. height: math.unit(47, "feet")
  31688. },
  31689. {
  31690. name: "Natural Macro",
  31691. height: math.unit(137, "feet"),
  31692. default: true
  31693. },
  31694. {
  31695. name: "Maximum Kaiju",
  31696. height: math.unit(397, "feet")
  31697. },
  31698. ]
  31699. ))
  31700. characterMakers.push(() => makeCharacter(
  31701. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31702. {
  31703. front: {
  31704. height: math.unit(50 + 9/12, "feet"),
  31705. weight: math.unit(32.8, "tons"),
  31706. name: "Front",
  31707. image: {
  31708. source: "./media/characters/irb'iiritaahn/front.svg",
  31709. extra: 1878/1826,
  31710. bottom: 326/2204
  31711. }
  31712. },
  31713. back: {
  31714. height: math.unit(50 + 9/12, "feet"),
  31715. weight: math.unit(32.8, "tons"),
  31716. name: "Back",
  31717. image: {
  31718. source: "./media/characters/irb'iiritaahn/back.svg",
  31719. extra: 2052/2018,
  31720. bottom: 152/2204
  31721. }
  31722. },
  31723. head: {
  31724. height: math.unit(12.86, "feet"),
  31725. name: "Head",
  31726. image: {
  31727. source: "./media/characters/irb'iiritaahn/head.svg"
  31728. }
  31729. },
  31730. maw: {
  31731. height: math.unit(9.66, "feet"),
  31732. name: "Maw",
  31733. image: {
  31734. source: "./media/characters/irb'iiritaahn/maw.svg"
  31735. }
  31736. },
  31737. frontDick: {
  31738. height: math.unit(8.78461, "feet"),
  31739. name: "Front Dick",
  31740. image: {
  31741. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31742. }
  31743. },
  31744. rearDick: {
  31745. height: math.unit(8.78461, "feet"),
  31746. name: "Rear Dick",
  31747. image: {
  31748. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31749. }
  31750. },
  31751. rearDickUnfolded: {
  31752. height: math.unit(8.78, "feet"),
  31753. name: "Rear Dick (Unfolded)",
  31754. image: {
  31755. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31756. }
  31757. },
  31758. wings: {
  31759. height: math.unit(43, "feet"),
  31760. name: "Wings",
  31761. image: {
  31762. source: "./media/characters/irb'iiritaahn/wings.svg"
  31763. }
  31764. },
  31765. },
  31766. [
  31767. {
  31768. name: "Macro",
  31769. height: math.unit(50 + 9/12, "feet"),
  31770. default: true
  31771. },
  31772. ]
  31773. ))
  31774. characterMakers.push(() => makeCharacter(
  31775. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31776. {
  31777. front: {
  31778. height: math.unit(205, "cm"),
  31779. weight: math.unit(102, "kg"),
  31780. name: "Front",
  31781. image: {
  31782. source: "./media/characters/irbisgreif/front.svg",
  31783. extra: 785/706,
  31784. bottom: 13/798
  31785. }
  31786. },
  31787. back: {
  31788. height: math.unit(205, "cm"),
  31789. weight: math.unit(102, "kg"),
  31790. name: "Back",
  31791. image: {
  31792. source: "./media/characters/irbisgreif/back.svg",
  31793. extra: 713/701,
  31794. bottom: 26/739
  31795. }
  31796. },
  31797. frontDressed: {
  31798. height: math.unit(216, "cm"),
  31799. weight: math.unit(102, "kg"),
  31800. name: "Front-dressed",
  31801. image: {
  31802. source: "./media/characters/irbisgreif/front-dressed.svg",
  31803. extra: 902/776,
  31804. bottom: 14/916
  31805. }
  31806. },
  31807. sideDressed: {
  31808. height: math.unit(195, "cm"),
  31809. weight: math.unit(102, "kg"),
  31810. name: "Side-dressed",
  31811. image: {
  31812. source: "./media/characters/irbisgreif/side-dressed.svg",
  31813. extra: 788/688,
  31814. bottom: 21/809
  31815. }
  31816. },
  31817. backDressed: {
  31818. height: math.unit(216, "cm"),
  31819. weight: math.unit(102, "kg"),
  31820. name: "Back-dressed",
  31821. image: {
  31822. source: "./media/characters/irbisgreif/back-dressed.svg",
  31823. extra: 901/783,
  31824. bottom: 10/911
  31825. }
  31826. },
  31827. dick: {
  31828. height: math.unit(0.49, "feet"),
  31829. name: "Dick",
  31830. image: {
  31831. source: "./media/characters/irbisgreif/dick.svg"
  31832. }
  31833. },
  31834. wingTop: {
  31835. height: math.unit(1.93 , "feet"),
  31836. name: "Wing-top",
  31837. image: {
  31838. source: "./media/characters/irbisgreif/wing-top.svg"
  31839. }
  31840. },
  31841. wingBottom: {
  31842. height: math.unit(1.93 , "feet"),
  31843. name: "Wing-bottom",
  31844. image: {
  31845. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31846. }
  31847. },
  31848. },
  31849. [
  31850. {
  31851. name: "Normal",
  31852. height: math.unit(216, "cm"),
  31853. default: true
  31854. },
  31855. ]
  31856. ))
  31857. characterMakers.push(() => makeCharacter(
  31858. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31859. {
  31860. front: {
  31861. height: math.unit(6, "feet"),
  31862. weight: math.unit(150, "lb"),
  31863. name: "Front",
  31864. image: {
  31865. source: "./media/characters/pride/front.svg",
  31866. extra: 1299/1230,
  31867. bottom: 18/1317
  31868. }
  31869. },
  31870. },
  31871. [
  31872. {
  31873. name: "Normal",
  31874. height: math.unit(7, "feet")
  31875. },
  31876. {
  31877. name: "Mini-macro",
  31878. height: math.unit(11, "feet")
  31879. },
  31880. {
  31881. name: "Macro",
  31882. height: math.unit(15, "meters"),
  31883. default: true
  31884. },
  31885. {
  31886. name: "Macro+",
  31887. height: math.unit(40, "meters")
  31888. },
  31889. ]
  31890. ))
  31891. characterMakers.push(() => makeCharacter(
  31892. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31893. {
  31894. front: {
  31895. height: math.unit(4 + 2 / 12, "feet"),
  31896. weight: math.unit(95, "lb"),
  31897. name: "Front",
  31898. image: {
  31899. source: "./media/characters/vaelophis-nyx/front.svg",
  31900. extra: 2532/2330,
  31901. bottom: 0/2532
  31902. }
  31903. },
  31904. back: {
  31905. height: math.unit(4 + 2 / 12, "feet"),
  31906. weight: math.unit(95, "lb"),
  31907. name: "Back",
  31908. image: {
  31909. source: "./media/characters/vaelophis-nyx/back.svg",
  31910. extra: 2484/2361,
  31911. bottom: 0/2484
  31912. }
  31913. },
  31914. feralSide: {
  31915. height: math.unit(2 + 1/12, "feet"),
  31916. weight: math.unit(20, "lb"),
  31917. name: "Feral (Side)",
  31918. image: {
  31919. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31920. extra: 1721/1581,
  31921. bottom: 70/1791
  31922. }
  31923. },
  31924. feralLazing: {
  31925. height: math.unit(1.08, "feet"),
  31926. weight: math.unit(20, "lb"),
  31927. name: "Feral (Lazing)",
  31928. image: {
  31929. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31930. extra: 822/822,
  31931. bottom: 248/1070
  31932. }
  31933. },
  31934. ear: {
  31935. height: math.unit(0.416, "feet"),
  31936. name: "Ear",
  31937. image: {
  31938. source: "./media/characters/vaelophis-nyx/ear.svg"
  31939. }
  31940. },
  31941. eye: {
  31942. height: math.unit(0.0748, "feet"),
  31943. name: "Eye",
  31944. image: {
  31945. source: "./media/characters/vaelophis-nyx/eye.svg"
  31946. }
  31947. },
  31948. mouth: {
  31949. height: math.unit(0.378, "feet"),
  31950. name: "Mouth",
  31951. image: {
  31952. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31953. }
  31954. },
  31955. spade: {
  31956. height: math.unit(0.55, "feet"),
  31957. name: "Spade",
  31958. image: {
  31959. source: "./media/characters/vaelophis-nyx/spade.svg"
  31960. }
  31961. },
  31962. },
  31963. [
  31964. {
  31965. name: "Normal",
  31966. height: math.unit(4 + 2/12, "feet"),
  31967. default: true
  31968. },
  31969. ]
  31970. ))
  31971. characterMakers.push(() => makeCharacter(
  31972. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31973. {
  31974. front: {
  31975. height: math.unit(7, "feet"),
  31976. weight: math.unit(231, "lb"),
  31977. name: "Front",
  31978. image: {
  31979. source: "./media/characters/flux/front.svg",
  31980. extra: 919/871,
  31981. bottom: 0/919
  31982. }
  31983. },
  31984. back: {
  31985. height: math.unit(7, "feet"),
  31986. weight: math.unit(231, "lb"),
  31987. name: "Back",
  31988. image: {
  31989. source: "./media/characters/flux/back.svg",
  31990. extra: 1040/992,
  31991. bottom: 0/1040
  31992. }
  31993. },
  31994. frontDressed: {
  31995. height: math.unit(7, "feet"),
  31996. weight: math.unit(231, "lb"),
  31997. name: "Front (Dressed)",
  31998. image: {
  31999. source: "./media/characters/flux/front-dressed.svg",
  32000. extra: 919/871,
  32001. bottom: 0/919
  32002. }
  32003. },
  32004. feralSide: {
  32005. height: math.unit(5, "feet"),
  32006. weight: math.unit(150, "lb"),
  32007. name: "Feral (Side)",
  32008. image: {
  32009. source: "./media/characters/flux/feral-side.svg",
  32010. extra: 598/528,
  32011. bottom: 28/626
  32012. }
  32013. },
  32014. head: {
  32015. height: math.unit(1.585, "feet"),
  32016. name: "Head",
  32017. image: {
  32018. source: "./media/characters/flux/head.svg"
  32019. }
  32020. },
  32021. headSide: {
  32022. height: math.unit(1.74, "feet"),
  32023. name: "Head (Side)",
  32024. image: {
  32025. source: "./media/characters/flux/head-side.svg"
  32026. }
  32027. },
  32028. headSideFire: {
  32029. height: math.unit(1.76, "feet"),
  32030. name: "Head (Side, Fire)",
  32031. image: {
  32032. source: "./media/characters/flux/head-side-fire.svg"
  32033. }
  32034. },
  32035. },
  32036. [
  32037. {
  32038. name: "Normal",
  32039. height: math.unit(7, "feet"),
  32040. default: true
  32041. },
  32042. ]
  32043. ))
  32044. characterMakers.push(() => makeCharacter(
  32045. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32046. {
  32047. front: {
  32048. height: math.unit(9, "feet"),
  32049. weight: math.unit(1012, "lb"),
  32050. name: "Front",
  32051. image: {
  32052. source: "./media/characters/ulfra-lupae/front.svg",
  32053. extra: 1083/1011,
  32054. bottom: 67/1150
  32055. }
  32056. },
  32057. },
  32058. [
  32059. {
  32060. name: "Micro",
  32061. height: math.unit(6, "inches")
  32062. },
  32063. {
  32064. name: "Socializing",
  32065. height: math.unit(6 + 5/12, "feet")
  32066. },
  32067. {
  32068. name: "Normal",
  32069. height: math.unit(9, "feet"),
  32070. default: true
  32071. },
  32072. {
  32073. name: "Macro",
  32074. height: math.unit(150, "feet")
  32075. },
  32076. ]
  32077. ))
  32078. characterMakers.push(() => makeCharacter(
  32079. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32080. {
  32081. front: {
  32082. height: math.unit(5 + 2/12, "feet"),
  32083. weight: math.unit(120, "lb"),
  32084. name: "Front",
  32085. image: {
  32086. source: "./media/characters/timber/front.svg",
  32087. extra: 2814/2705,
  32088. bottom: 181/2995
  32089. }
  32090. },
  32091. },
  32092. [
  32093. {
  32094. name: "Normal",
  32095. height: math.unit(5 + 2/12, "feet"),
  32096. default: true
  32097. },
  32098. ]
  32099. ))
  32100. characterMakers.push(() => makeCharacter(
  32101. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32102. {
  32103. front: {
  32104. height: math.unit(9, "feet"),
  32105. name: "Front",
  32106. image: {
  32107. source: "./media/characters/nicki/front.svg",
  32108. extra: 1240/990,
  32109. bottom: 45/1285
  32110. },
  32111. form: "anthro",
  32112. default: true
  32113. },
  32114. side: {
  32115. height: math.unit(9, "feet"),
  32116. name: "Side",
  32117. image: {
  32118. source: "./media/characters/nicki/side.svg",
  32119. extra: 1047/973,
  32120. bottom: 61/1108
  32121. },
  32122. form: "anthro"
  32123. },
  32124. back: {
  32125. height: math.unit(9, "feet"),
  32126. name: "Back",
  32127. image: {
  32128. source: "./media/characters/nicki/back.svg",
  32129. extra: 1006/965,
  32130. bottom: 39/1045
  32131. },
  32132. form: "anthro"
  32133. },
  32134. taur: {
  32135. height: math.unit(15, "feet"),
  32136. name: "Taur",
  32137. image: {
  32138. source: "./media/characters/nicki/taur.svg",
  32139. extra: 1592/1347,
  32140. bottom: 0/1592
  32141. },
  32142. form: "taur",
  32143. default: true
  32144. },
  32145. },
  32146. [
  32147. {
  32148. name: "Normal",
  32149. height: math.unit(9, "feet"),
  32150. form: "anthro",
  32151. default: true
  32152. },
  32153. {
  32154. name: "Normal",
  32155. height: math.unit(15, "feet"),
  32156. form: "taur",
  32157. default: true
  32158. }
  32159. ],
  32160. {
  32161. "anthro": {
  32162. name: "Anthro",
  32163. default: true
  32164. },
  32165. "taur": {
  32166. name: "Taur"
  32167. }
  32168. }
  32169. ))
  32170. characterMakers.push(() => makeCharacter(
  32171. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32172. {
  32173. front: {
  32174. height: math.unit(7 + 10/12, "feet"),
  32175. weight: math.unit(3.5, "tons"),
  32176. name: "Front",
  32177. image: {
  32178. source: "./media/characters/lee/front.svg",
  32179. extra: 1773/1615,
  32180. bottom: 86/1859
  32181. }
  32182. },
  32183. hand: {
  32184. height: math.unit(1.78, "feet"),
  32185. name: "Hand",
  32186. image: {
  32187. source: "./media/characters/lee/hand.svg"
  32188. }
  32189. },
  32190. maw: {
  32191. height: math.unit(1.18, "feet"),
  32192. name: "Maw",
  32193. image: {
  32194. source: "./media/characters/lee/maw.svg"
  32195. }
  32196. },
  32197. },
  32198. [
  32199. {
  32200. name: "Normal",
  32201. height: math.unit(7 + 10/12, "feet"),
  32202. default: true
  32203. },
  32204. ]
  32205. ))
  32206. characterMakers.push(() => makeCharacter(
  32207. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32208. {
  32209. front: {
  32210. height: math.unit(9, "feet"),
  32211. name: "Front",
  32212. image: {
  32213. source: "./media/characters/guti/front.svg",
  32214. extra: 4551/4355,
  32215. bottom: 123/4674
  32216. }
  32217. },
  32218. tongue: {
  32219. height: math.unit(1, "feet"),
  32220. name: "Tongue",
  32221. image: {
  32222. source: "./media/characters/guti/tongue.svg"
  32223. }
  32224. },
  32225. paw: {
  32226. height: math.unit(1.18, "feet"),
  32227. name: "Paw",
  32228. image: {
  32229. source: "./media/characters/guti/paw.svg"
  32230. }
  32231. },
  32232. },
  32233. [
  32234. {
  32235. name: "Normal",
  32236. height: math.unit(9, "feet"),
  32237. default: true
  32238. },
  32239. ]
  32240. ))
  32241. characterMakers.push(() => makeCharacter(
  32242. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32243. {
  32244. side: {
  32245. height: math.unit(5, "meters"),
  32246. name: "Side",
  32247. image: {
  32248. source: "./media/characters/vesper/side.svg",
  32249. extra: 1605/1518,
  32250. bottom: 0/1605
  32251. }
  32252. },
  32253. },
  32254. [
  32255. {
  32256. name: "Small",
  32257. height: math.unit(5, "meters")
  32258. },
  32259. {
  32260. name: "Sage",
  32261. height: math.unit(100, "meters"),
  32262. default: true
  32263. },
  32264. {
  32265. name: "Fun Size",
  32266. height: math.unit(600, "meters")
  32267. },
  32268. {
  32269. name: "Goddess",
  32270. height: math.unit(20000, "km")
  32271. },
  32272. {
  32273. name: "Maximum",
  32274. height: math.unit(5, "galaxies")
  32275. },
  32276. ]
  32277. ))
  32278. characterMakers.push(() => makeCharacter(
  32279. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32280. {
  32281. front: {
  32282. height: math.unit(6 + 3/12, "feet"),
  32283. weight: math.unit(190, "lb"),
  32284. name: "Front",
  32285. image: {
  32286. source: "./media/characters/gawain/front.svg",
  32287. extra: 2222/2139,
  32288. bottom: 90/2312
  32289. }
  32290. },
  32291. back: {
  32292. height: math.unit(6 + 3/12, "feet"),
  32293. weight: math.unit(190, "lb"),
  32294. name: "Back",
  32295. image: {
  32296. source: "./media/characters/gawain/back.svg",
  32297. extra: 2199/2111,
  32298. bottom: 73/2272
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Normal",
  32305. height: math.unit(6 + 3/12, "feet"),
  32306. default: true
  32307. },
  32308. ]
  32309. ))
  32310. characterMakers.push(() => makeCharacter(
  32311. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32312. {
  32313. side: {
  32314. height: math.unit(3.5, "meters"),
  32315. weight: math.unit(16000, "lb"),
  32316. name: "Side",
  32317. image: {
  32318. source: "./media/characters/dascalti/side.svg",
  32319. extra: 392/273,
  32320. bottom: 47/439
  32321. }
  32322. },
  32323. breath: {
  32324. height: math.unit(7.4, "feet"),
  32325. name: "Breath",
  32326. image: {
  32327. source: "./media/characters/dascalti/breath.svg"
  32328. }
  32329. },
  32330. fed: {
  32331. height: math.unit(3.6, "meters"),
  32332. weight: math.unit(16000, "lb"),
  32333. name: "Fed",
  32334. image: {
  32335. source: "./media/characters/dascalti/fed.svg",
  32336. extra: 1419/820,
  32337. bottom: 95/1514
  32338. }
  32339. },
  32340. },
  32341. [
  32342. {
  32343. name: "Normal",
  32344. height: math.unit(3.5, "meters"),
  32345. default: true
  32346. },
  32347. ]
  32348. ))
  32349. characterMakers.push(() => makeCharacter(
  32350. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32351. {
  32352. front: {
  32353. height: math.unit(3 + 5/12, "feet"),
  32354. name: "Front",
  32355. image: {
  32356. source: "./media/characters/mauve/front.svg",
  32357. extra: 1126/1033,
  32358. bottom: 65/1191
  32359. }
  32360. },
  32361. side: {
  32362. height: math.unit(3 + 5/12, "feet"),
  32363. name: "Side",
  32364. image: {
  32365. source: "./media/characters/mauve/side.svg",
  32366. extra: 1089/1001,
  32367. bottom: 29/1118
  32368. }
  32369. },
  32370. back: {
  32371. height: math.unit(3 + 5/12, "feet"),
  32372. name: "Back",
  32373. image: {
  32374. source: "./media/characters/mauve/back.svg",
  32375. extra: 1173/1053,
  32376. bottom: 109/1282
  32377. }
  32378. },
  32379. },
  32380. [
  32381. {
  32382. name: "Normal",
  32383. height: math.unit(3 + 5/12, "feet"),
  32384. default: true
  32385. },
  32386. ]
  32387. ))
  32388. characterMakers.push(() => makeCharacter(
  32389. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32390. {
  32391. front: {
  32392. height: math.unit(6 + 3/12, "feet"),
  32393. weight: math.unit(430, "lb"),
  32394. name: "Front",
  32395. image: {
  32396. source: "./media/characters/carlos/front.svg",
  32397. extra: 1964/1913,
  32398. bottom: 70/2034
  32399. }
  32400. },
  32401. },
  32402. [
  32403. {
  32404. name: "Normal",
  32405. height: math.unit(6 + 3/12, "feet"),
  32406. default: true
  32407. },
  32408. ]
  32409. ))
  32410. characterMakers.push(() => makeCharacter(
  32411. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32412. {
  32413. back: {
  32414. height: math.unit(5 + 10/12, "feet"),
  32415. weight: math.unit(200, "lb"),
  32416. name: "Back",
  32417. image: {
  32418. source: "./media/characters/jax/back.svg",
  32419. extra: 764/739,
  32420. bottom: 25/789
  32421. }
  32422. },
  32423. },
  32424. [
  32425. {
  32426. name: "Normal",
  32427. height: math.unit(5 + 10/12, "feet"),
  32428. default: true
  32429. },
  32430. ]
  32431. ))
  32432. characterMakers.push(() => makeCharacter(
  32433. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32434. {
  32435. front: {
  32436. height: math.unit(8, "feet"),
  32437. weight: math.unit(250, "lb"),
  32438. name: "Front",
  32439. image: {
  32440. source: "./media/characters/eikthynir/front.svg",
  32441. extra: 1332/1166,
  32442. bottom: 82/1414
  32443. }
  32444. },
  32445. back: {
  32446. height: math.unit(8, "feet"),
  32447. weight: math.unit(250, "lb"),
  32448. name: "Back",
  32449. image: {
  32450. source: "./media/characters/eikthynir/back.svg",
  32451. extra: 1342/1190,
  32452. bottom: 19/1361
  32453. }
  32454. },
  32455. dick: {
  32456. height: math.unit(2.35, "feet"),
  32457. name: "Dick",
  32458. image: {
  32459. source: "./media/characters/eikthynir/dick.svg"
  32460. }
  32461. },
  32462. },
  32463. [
  32464. {
  32465. name: "Normal",
  32466. height: math.unit(8, "feet"),
  32467. default: true
  32468. },
  32469. ]
  32470. ))
  32471. characterMakers.push(() => makeCharacter(
  32472. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32473. {
  32474. front: {
  32475. height: math.unit(99, "meters"),
  32476. weight: math.unit(13000, "tons"),
  32477. name: "Front",
  32478. image: {
  32479. source: "./media/characters/zlmos/front.svg",
  32480. extra: 2202/1992,
  32481. bottom: 315/2517
  32482. }
  32483. },
  32484. },
  32485. [
  32486. {
  32487. name: "Macro",
  32488. height: math.unit(99, "meters"),
  32489. default: true
  32490. },
  32491. ]
  32492. ))
  32493. characterMakers.push(() => makeCharacter(
  32494. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32495. {
  32496. front: {
  32497. height: math.unit(6 + 5/12, "feet"),
  32498. name: "Front",
  32499. image: {
  32500. source: "./media/characters/purri/front.svg",
  32501. extra: 1698/1610,
  32502. bottom: 32/1730
  32503. }
  32504. },
  32505. frontAlt: {
  32506. height: math.unit(6 + 5/12, "feet"),
  32507. name: "Front (Alt)",
  32508. image: {
  32509. source: "./media/characters/purri/front-alt.svg",
  32510. extra: 450/420,
  32511. bottom: 26/476
  32512. }
  32513. },
  32514. boots: {
  32515. height: math.unit(5.5, "feet"),
  32516. name: "Boots",
  32517. image: {
  32518. source: "./media/characters/purri/boots.svg",
  32519. extra: 905/853,
  32520. bottom: 18/923
  32521. }
  32522. },
  32523. lying: {
  32524. height: math.unit(2, "feet"),
  32525. name: "Lying",
  32526. image: {
  32527. source: "./media/characters/purri/lying.svg",
  32528. extra: 940/843,
  32529. bottom: 146/1086
  32530. }
  32531. },
  32532. devious: {
  32533. height: math.unit(1.77, "feet"),
  32534. name: "Devious",
  32535. image: {
  32536. source: "./media/characters/purri/devious.svg",
  32537. extra: 1440/1155,
  32538. bottom: 147/1587
  32539. }
  32540. },
  32541. bean: {
  32542. height: math.unit(1.94, "feet"),
  32543. name: "Bean",
  32544. image: {
  32545. source: "./media/characters/purri/bean.svg"
  32546. }
  32547. },
  32548. },
  32549. [
  32550. {
  32551. name: "Micro",
  32552. height: math.unit(1, "mm")
  32553. },
  32554. {
  32555. name: "Normal",
  32556. height: math.unit(6 + 5/12, "feet"),
  32557. default: true
  32558. },
  32559. {
  32560. name: "Macro :3c",
  32561. height: math.unit(2, "miles")
  32562. },
  32563. ]
  32564. ))
  32565. characterMakers.push(() => makeCharacter(
  32566. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32567. {
  32568. front: {
  32569. height: math.unit(6 + 2/12, "feet"),
  32570. weight: math.unit(250, "lb"),
  32571. name: "Front",
  32572. image: {
  32573. source: "./media/characters/moonlight/front.svg",
  32574. extra: 1044/908,
  32575. bottom: 56/1100
  32576. }
  32577. },
  32578. feral: {
  32579. height: math.unit(3 + 1/12, "feet"),
  32580. weight: math.unit(50, "kg"),
  32581. name: "Feral",
  32582. image: {
  32583. source: "./media/characters/moonlight/feral.svg",
  32584. extra: 3705/2791,
  32585. bottom: 145/3850
  32586. }
  32587. },
  32588. paw: {
  32589. height: math.unit(1, "feet"),
  32590. name: "Paw",
  32591. image: {
  32592. source: "./media/characters/moonlight/paw.svg"
  32593. }
  32594. },
  32595. paws: {
  32596. height: math.unit(0.98, "feet"),
  32597. name: "Paws",
  32598. image: {
  32599. source: "./media/characters/moonlight/paws.svg",
  32600. extra: 939/939,
  32601. bottom: 50/989
  32602. }
  32603. },
  32604. mouth: {
  32605. height: math.unit(0.48, "feet"),
  32606. name: "Mouth",
  32607. image: {
  32608. source: "./media/characters/moonlight/mouth.svg"
  32609. }
  32610. },
  32611. dick: {
  32612. height: math.unit(1.46, "feet"),
  32613. name: "Dick",
  32614. image: {
  32615. source: "./media/characters/moonlight/dick.svg"
  32616. }
  32617. },
  32618. },
  32619. [
  32620. {
  32621. name: "Normal",
  32622. height: math.unit(6 + 2/12, "feet"),
  32623. default: true
  32624. },
  32625. {
  32626. name: "Macro",
  32627. height: math.unit(300, "feet")
  32628. },
  32629. {
  32630. name: "Macro+",
  32631. height: math.unit(1, "mile")
  32632. },
  32633. {
  32634. name: "Mt. Moon",
  32635. height: math.unit(5, "miles")
  32636. },
  32637. {
  32638. name: "Megamacro",
  32639. height: math.unit(15, "miles")
  32640. },
  32641. ]
  32642. ))
  32643. characterMakers.push(() => makeCharacter(
  32644. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32645. {
  32646. back: {
  32647. height: math.unit(6, "feet"),
  32648. weight: math.unit(150, "lb"),
  32649. name: "Back",
  32650. image: {
  32651. source: "./media/characters/sylen/back.svg",
  32652. extra: 1335/1273,
  32653. bottom: 107/1442
  32654. }
  32655. },
  32656. },
  32657. [
  32658. {
  32659. name: "Normal",
  32660. height: math.unit(5 + 5/12, "feet")
  32661. },
  32662. {
  32663. name: "Megamacro",
  32664. height: math.unit(3, "miles"),
  32665. default: true
  32666. },
  32667. ]
  32668. ))
  32669. characterMakers.push(() => makeCharacter(
  32670. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32671. {
  32672. front: {
  32673. height: math.unit(6, "feet"),
  32674. weight: math.unit(190, "lb"),
  32675. name: "Front",
  32676. image: {
  32677. source: "./media/characters/huttser/front.svg",
  32678. extra: 1152/1058,
  32679. bottom: 23/1175
  32680. }
  32681. },
  32682. side: {
  32683. height: math.unit(6, "feet"),
  32684. weight: math.unit(190, "lb"),
  32685. name: "Side",
  32686. image: {
  32687. source: "./media/characters/huttser/side.svg",
  32688. extra: 1174/1065,
  32689. bottom: 18/1192
  32690. }
  32691. },
  32692. back: {
  32693. height: math.unit(6, "feet"),
  32694. weight: math.unit(190, "lb"),
  32695. name: "Back",
  32696. image: {
  32697. source: "./media/characters/huttser/back.svg",
  32698. extra: 1158/1056,
  32699. bottom: 12/1170
  32700. }
  32701. },
  32702. },
  32703. [
  32704. ]
  32705. ))
  32706. characterMakers.push(() => makeCharacter(
  32707. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32708. {
  32709. side: {
  32710. height: math.unit(12 + 9/12, "feet"),
  32711. weight: math.unit(15000, "lb"),
  32712. name: "Side",
  32713. image: {
  32714. source: "./media/characters/faan/side.svg",
  32715. extra: 2747/2697,
  32716. bottom: 0/2747
  32717. }
  32718. },
  32719. front: {
  32720. height: math.unit(12 + 9/12, "feet"),
  32721. weight: math.unit(15000, "lb"),
  32722. name: "Front",
  32723. image: {
  32724. source: "./media/characters/faan/front.svg",
  32725. extra: 607/571,
  32726. bottom: 24/631
  32727. }
  32728. },
  32729. head: {
  32730. height: math.unit(2.85, "feet"),
  32731. name: "Head",
  32732. image: {
  32733. source: "./media/characters/faan/head.svg"
  32734. }
  32735. },
  32736. headAlt: {
  32737. height: math.unit(3.13, "feet"),
  32738. name: "Head-alt",
  32739. image: {
  32740. source: "./media/characters/faan/head-alt.svg"
  32741. }
  32742. },
  32743. },
  32744. [
  32745. {
  32746. name: "Normal",
  32747. height: math.unit(12 + 9/12, "feet"),
  32748. default: true
  32749. },
  32750. ]
  32751. ))
  32752. characterMakers.push(() => makeCharacter(
  32753. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32754. {
  32755. front: {
  32756. height: math.unit(6, "feet"),
  32757. weight: math.unit(300, "lb"),
  32758. name: "Front",
  32759. image: {
  32760. source: "./media/characters/tanio/front.svg",
  32761. extra: 711/673,
  32762. bottom: 25/736
  32763. }
  32764. },
  32765. },
  32766. [
  32767. {
  32768. name: "Normal",
  32769. height: math.unit(6, "feet"),
  32770. default: true
  32771. },
  32772. ]
  32773. ))
  32774. characterMakers.push(() => makeCharacter(
  32775. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32776. {
  32777. front: {
  32778. height: math.unit(3, "inches"),
  32779. name: "Front",
  32780. image: {
  32781. source: "./media/characters/noboru/front.svg",
  32782. extra: 1039/932,
  32783. bottom: 18/1057
  32784. }
  32785. },
  32786. },
  32787. [
  32788. {
  32789. name: "Micro",
  32790. height: math.unit(3, "inches"),
  32791. default: true
  32792. },
  32793. ]
  32794. ))
  32795. characterMakers.push(() => makeCharacter(
  32796. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32797. {
  32798. front: {
  32799. height: math.unit(1.85, "meters"),
  32800. weight: math.unit(80, "kg"),
  32801. name: "Front",
  32802. image: {
  32803. source: "./media/characters/daniel-barrett/front.svg",
  32804. extra: 355/337,
  32805. bottom: 9/364
  32806. }
  32807. },
  32808. },
  32809. [
  32810. {
  32811. name: "Pico",
  32812. height: math.unit(0.0433, "mm")
  32813. },
  32814. {
  32815. name: "Nano",
  32816. height: math.unit(1.5, "mm")
  32817. },
  32818. {
  32819. name: "Micro",
  32820. height: math.unit(5.3, "cm"),
  32821. default: true
  32822. },
  32823. {
  32824. name: "Normal",
  32825. height: math.unit(1.85, "meters")
  32826. },
  32827. {
  32828. name: "Macro",
  32829. height: math.unit(64.7, "meters")
  32830. },
  32831. {
  32832. name: "Megamacro",
  32833. height: math.unit(2.26, "km")
  32834. },
  32835. {
  32836. name: "Gigamacro",
  32837. height: math.unit(79, "km")
  32838. },
  32839. {
  32840. name: "Teramacro",
  32841. height: math.unit(2765, "km")
  32842. },
  32843. {
  32844. name: "Petamacro",
  32845. height: math.unit(96678, "km")
  32846. },
  32847. ]
  32848. ))
  32849. characterMakers.push(() => makeCharacter(
  32850. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32851. {
  32852. front: {
  32853. height: math.unit(30, "meters"),
  32854. weight: math.unit(400, "tons"),
  32855. name: "Front",
  32856. image: {
  32857. source: "./media/characters/zeel/front.svg",
  32858. extra: 2599/2599,
  32859. bottom: 226/2825
  32860. }
  32861. },
  32862. },
  32863. [
  32864. {
  32865. name: "Macro",
  32866. height: math.unit(30, "meters"),
  32867. default: true
  32868. },
  32869. ]
  32870. ))
  32871. characterMakers.push(() => makeCharacter(
  32872. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32873. {
  32874. front: {
  32875. height: math.unit(6 + 7/12, "feet"),
  32876. weight: math.unit(210, "lb"),
  32877. name: "Front",
  32878. image: {
  32879. source: "./media/characters/tarn/front.svg",
  32880. extra: 3517/3220,
  32881. bottom: 91/3608
  32882. }
  32883. },
  32884. back: {
  32885. height: math.unit(6 + 7/12, "feet"),
  32886. weight: math.unit(210, "lb"),
  32887. name: "Back",
  32888. image: {
  32889. source: "./media/characters/tarn/back.svg",
  32890. extra: 3566/3241,
  32891. bottom: 34/3600
  32892. }
  32893. },
  32894. dick: {
  32895. height: math.unit(1.65, "feet"),
  32896. name: "Dick",
  32897. image: {
  32898. source: "./media/characters/tarn/dick.svg"
  32899. }
  32900. },
  32901. paw: {
  32902. height: math.unit(1.80, "feet"),
  32903. name: "Paw",
  32904. image: {
  32905. source: "./media/characters/tarn/paw.svg"
  32906. }
  32907. },
  32908. tongue: {
  32909. height: math.unit(0.97, "feet"),
  32910. name: "Tongue",
  32911. image: {
  32912. source: "./media/characters/tarn/tongue.svg"
  32913. }
  32914. },
  32915. },
  32916. [
  32917. {
  32918. name: "Micro",
  32919. height: math.unit(4, "inches")
  32920. },
  32921. {
  32922. name: "Normal",
  32923. height: math.unit(6 + 7/12, "feet"),
  32924. default: true
  32925. },
  32926. {
  32927. name: "Macro",
  32928. height: math.unit(300, "feet")
  32929. },
  32930. ]
  32931. ))
  32932. characterMakers.push(() => makeCharacter(
  32933. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32934. {
  32935. front: {
  32936. height: math.unit(5 + 7/12, "feet"),
  32937. weight: math.unit(80, "kg"),
  32938. name: "Front",
  32939. image: {
  32940. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32941. extra: 3023/2865,
  32942. bottom: 33/3056
  32943. }
  32944. },
  32945. back: {
  32946. height: math.unit(5 + 7/12, "feet"),
  32947. weight: math.unit(80, "kg"),
  32948. name: "Back",
  32949. image: {
  32950. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32951. extra: 3020/2886,
  32952. bottom: 30/3050
  32953. }
  32954. },
  32955. dick: {
  32956. height: math.unit(0.98, "feet"),
  32957. name: "Dick",
  32958. image: {
  32959. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32960. }
  32961. },
  32962. anatomy: {
  32963. height: math.unit(2.86, "feet"),
  32964. name: "Anatomy",
  32965. image: {
  32966. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32967. }
  32968. },
  32969. },
  32970. [
  32971. {
  32972. name: "Really Small",
  32973. height: math.unit(2, "inches")
  32974. },
  32975. {
  32976. name: "Micro",
  32977. height: math.unit(5.583, "inches")
  32978. },
  32979. {
  32980. name: "Normal",
  32981. height: math.unit(5 + 7/12, "feet"),
  32982. default: true
  32983. },
  32984. {
  32985. name: "Macro",
  32986. height: math.unit(67, "feet")
  32987. },
  32988. {
  32989. name: "Megamacro",
  32990. height: math.unit(134, "feet")
  32991. },
  32992. ]
  32993. ))
  32994. characterMakers.push(() => makeCharacter(
  32995. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32996. {
  32997. front: {
  32998. height: math.unit(9, "feet"),
  32999. weight: math.unit(120, "lb"),
  33000. name: "Front",
  33001. image: {
  33002. source: "./media/characters/sally/front.svg",
  33003. extra: 1506/1349,
  33004. bottom: 66/1572
  33005. }
  33006. },
  33007. },
  33008. [
  33009. {
  33010. name: "Normal",
  33011. height: math.unit(9, "feet"),
  33012. default: true
  33013. },
  33014. ]
  33015. ))
  33016. characterMakers.push(() => makeCharacter(
  33017. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33018. {
  33019. front: {
  33020. height: math.unit(8, "feet"),
  33021. weight: math.unit(900, "lb"),
  33022. name: "Front",
  33023. image: {
  33024. source: "./media/characters/owen/front.svg",
  33025. extra: 1761/1657,
  33026. bottom: 74/1835
  33027. }
  33028. },
  33029. side: {
  33030. height: math.unit(8, "feet"),
  33031. weight: math.unit(900, "lb"),
  33032. name: "Side",
  33033. image: {
  33034. source: "./media/characters/owen/side.svg",
  33035. extra: 1797/1734,
  33036. bottom: 30/1827
  33037. }
  33038. },
  33039. back: {
  33040. height: math.unit(8, "feet"),
  33041. weight: math.unit(900, "lb"),
  33042. name: "Back",
  33043. image: {
  33044. source: "./media/characters/owen/back.svg",
  33045. extra: 1796/1706,
  33046. bottom: 59/1855
  33047. }
  33048. },
  33049. maw: {
  33050. height: math.unit(1.76, "feet"),
  33051. name: "Maw",
  33052. image: {
  33053. source: "./media/characters/owen/maw.svg"
  33054. }
  33055. },
  33056. },
  33057. [
  33058. {
  33059. name: "Normal",
  33060. height: math.unit(8, "feet"),
  33061. default: true
  33062. },
  33063. ]
  33064. ))
  33065. characterMakers.push(() => makeCharacter(
  33066. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33067. {
  33068. front: {
  33069. height: math.unit(4, "feet"),
  33070. weight: math.unit(400, "lb"),
  33071. name: "Front",
  33072. image: {
  33073. source: "./media/characters/ryth/front.svg",
  33074. extra: 1920/1748,
  33075. bottom: 42/1962
  33076. }
  33077. },
  33078. back: {
  33079. height: math.unit(4, "feet"),
  33080. weight: math.unit(400, "lb"),
  33081. name: "Back",
  33082. image: {
  33083. source: "./media/characters/ryth/back.svg",
  33084. extra: 1897/1690,
  33085. bottom: 89/1986
  33086. }
  33087. },
  33088. mouth: {
  33089. height: math.unit(1.39, "feet"),
  33090. name: "Mouth",
  33091. image: {
  33092. source: "./media/characters/ryth/mouth.svg"
  33093. }
  33094. },
  33095. tailmaw: {
  33096. height: math.unit(1.23, "feet"),
  33097. name: "Tailmaw",
  33098. image: {
  33099. source: "./media/characters/ryth/tailmaw.svg"
  33100. }
  33101. },
  33102. goia: {
  33103. height: math.unit(4, "meters"),
  33104. weight: math.unit(10800, "lb"),
  33105. name: "Goia",
  33106. image: {
  33107. source: "./media/characters/ryth/goia.svg",
  33108. extra: 745/640,
  33109. bottom: 107/852
  33110. }
  33111. },
  33112. goiaFront: {
  33113. height: math.unit(4, "meters"),
  33114. weight: math.unit(10800, "lb"),
  33115. name: "Goia (Front)",
  33116. image: {
  33117. source: "./media/characters/ryth/goia-front.svg",
  33118. extra: 750/586,
  33119. bottom: 114/864
  33120. }
  33121. },
  33122. goiaMaw: {
  33123. height: math.unit(5.55, "feet"),
  33124. name: "Goia Maw",
  33125. image: {
  33126. source: "./media/characters/ryth/goia-maw.svg"
  33127. }
  33128. },
  33129. goiaForepaw: {
  33130. height: math.unit(3.5, "feet"),
  33131. name: "Goia Forepaw",
  33132. image: {
  33133. source: "./media/characters/ryth/goia-forepaw.svg"
  33134. }
  33135. },
  33136. goiaHindpaw: {
  33137. height: math.unit(5.55, "feet"),
  33138. name: "Goia Hindpaw",
  33139. image: {
  33140. source: "./media/characters/ryth/goia-hindpaw.svg"
  33141. }
  33142. },
  33143. },
  33144. [
  33145. {
  33146. name: "Normal",
  33147. height: math.unit(4, "feet"),
  33148. default: true
  33149. },
  33150. ]
  33151. ))
  33152. characterMakers.push(() => makeCharacter(
  33153. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33154. {
  33155. front: {
  33156. height: math.unit(7, "feet"),
  33157. weight: math.unit(180, "lb"),
  33158. name: "Front",
  33159. image: {
  33160. source: "./media/characters/necrolance/front.svg",
  33161. extra: 1062/947,
  33162. bottom: 41/1103
  33163. }
  33164. },
  33165. back: {
  33166. height: math.unit(7, "feet"),
  33167. weight: math.unit(180, "lb"),
  33168. name: "Back",
  33169. image: {
  33170. source: "./media/characters/necrolance/back.svg",
  33171. extra: 1045/984,
  33172. bottom: 14/1059
  33173. }
  33174. },
  33175. wing: {
  33176. height: math.unit(2.67, "feet"),
  33177. name: "Wing",
  33178. image: {
  33179. source: "./media/characters/necrolance/wing.svg"
  33180. }
  33181. },
  33182. },
  33183. [
  33184. {
  33185. name: "Normal",
  33186. height: math.unit(7, "feet"),
  33187. default: true
  33188. },
  33189. ]
  33190. ))
  33191. characterMakers.push(() => makeCharacter(
  33192. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33193. {
  33194. front: {
  33195. height: math.unit(76, "meters"),
  33196. weight: math.unit(30000, "tons"),
  33197. name: "Front",
  33198. image: {
  33199. source: "./media/characters/tyler/front.svg",
  33200. extra: 1640/1640,
  33201. bottom: 114/1754
  33202. }
  33203. },
  33204. },
  33205. [
  33206. {
  33207. name: "Macro",
  33208. height: math.unit(76, "meters"),
  33209. default: true
  33210. },
  33211. ]
  33212. ))
  33213. characterMakers.push(() => makeCharacter(
  33214. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33215. {
  33216. front: {
  33217. height: math.unit(4 + 11/12, "feet"),
  33218. weight: math.unit(132, "lb"),
  33219. name: "Front",
  33220. image: {
  33221. source: "./media/characters/icey/front.svg",
  33222. extra: 2750/2550,
  33223. bottom: 33/2783
  33224. }
  33225. },
  33226. back: {
  33227. height: math.unit(4 + 11/12, "feet"),
  33228. weight: math.unit(132, "lb"),
  33229. name: "Back",
  33230. image: {
  33231. source: "./media/characters/icey/back.svg",
  33232. extra: 2624/2481,
  33233. bottom: 35/2659
  33234. }
  33235. },
  33236. },
  33237. [
  33238. {
  33239. name: "Normal",
  33240. height: math.unit(4 + 11/12, "feet"),
  33241. default: true
  33242. },
  33243. ]
  33244. ))
  33245. characterMakers.push(() => makeCharacter(
  33246. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33247. {
  33248. front: {
  33249. height: math.unit(100, "feet"),
  33250. weight: math.unit(0, "lb"),
  33251. name: "Front",
  33252. image: {
  33253. source: "./media/characters/smile/front.svg",
  33254. extra: 2983/2912,
  33255. bottom: 162/3145
  33256. }
  33257. },
  33258. back: {
  33259. height: math.unit(100, "feet"),
  33260. weight: math.unit(0, "lb"),
  33261. name: "Back",
  33262. image: {
  33263. source: "./media/characters/smile/back.svg",
  33264. extra: 3143/3031,
  33265. bottom: 91/3234
  33266. }
  33267. },
  33268. head: {
  33269. height: math.unit(26.3, "feet"),
  33270. weight: math.unit(0, "lb"),
  33271. name: "Head",
  33272. image: {
  33273. source: "./media/characters/smile/head.svg"
  33274. }
  33275. },
  33276. collar: {
  33277. height: math.unit(5.3, "feet"),
  33278. weight: math.unit(0, "lb"),
  33279. name: "Collar",
  33280. image: {
  33281. source: "./media/characters/smile/collar.svg"
  33282. }
  33283. },
  33284. },
  33285. [
  33286. {
  33287. name: "Macro",
  33288. height: math.unit(100, "feet"),
  33289. default: true
  33290. },
  33291. ]
  33292. ))
  33293. characterMakers.push(() => makeCharacter(
  33294. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33295. {
  33296. dragon: {
  33297. height: math.unit(26, "feet"),
  33298. weight: math.unit(36, "tons"),
  33299. name: "Dragon",
  33300. image: {
  33301. source: "./media/characters/arimphae/dragon.svg",
  33302. extra: 1574/983,
  33303. bottom: 357/1931
  33304. }
  33305. },
  33306. drake: {
  33307. height: math.unit(9, "feet"),
  33308. weight: math.unit(1.5, "tons"),
  33309. name: "Drake",
  33310. image: {
  33311. source: "./media/characters/arimphae/drake.svg",
  33312. extra: 1120/925,
  33313. bottom: 435/1555
  33314. }
  33315. },
  33316. },
  33317. [
  33318. {
  33319. name: "Small",
  33320. height: math.unit(26*5/9, "feet")
  33321. },
  33322. {
  33323. name: "Normal",
  33324. height: math.unit(26, "feet"),
  33325. default: true
  33326. },
  33327. ]
  33328. ))
  33329. characterMakers.push(() => makeCharacter(
  33330. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33331. {
  33332. front: {
  33333. height: math.unit(8 + 9/12, "feet"),
  33334. name: "Front",
  33335. image: {
  33336. source: "./media/characters/xander/front.svg",
  33337. extra: 1237/974,
  33338. bottom: 94/1331
  33339. }
  33340. },
  33341. },
  33342. [
  33343. {
  33344. name: "Normal",
  33345. height: math.unit(8 + 9/12, "feet"),
  33346. default: true
  33347. },
  33348. {
  33349. name: "Gaze Grabber",
  33350. height: math.unit(13 + 8/12, "feet")
  33351. },
  33352. {
  33353. name: "Jaw Dropper",
  33354. height: math.unit(27, "feet")
  33355. },
  33356. {
  33357. name: "Show Stopper",
  33358. height: math.unit(136, "feet")
  33359. },
  33360. {
  33361. name: "Superstar",
  33362. height: math.unit(1.9e6, "miles")
  33363. },
  33364. ]
  33365. ))
  33366. characterMakers.push(() => makeCharacter(
  33367. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33368. {
  33369. side: {
  33370. height: math.unit(2100, "feet"),
  33371. name: "Side",
  33372. image: {
  33373. source: "./media/characters/osiris/side.svg",
  33374. extra: 1105/939,
  33375. bottom: 167/1272
  33376. }
  33377. },
  33378. },
  33379. [
  33380. {
  33381. name: "Macro",
  33382. height: math.unit(2100, "feet"),
  33383. default: true
  33384. },
  33385. ]
  33386. ))
  33387. characterMakers.push(() => makeCharacter(
  33388. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33389. {
  33390. front: {
  33391. height: math.unit(6 + 8/12, "feet"),
  33392. weight: math.unit(225, "lb"),
  33393. name: "Front",
  33394. image: {
  33395. source: "./media/characters/rhys-londe/front.svg",
  33396. extra: 2258/2141,
  33397. bottom: 188/2446
  33398. }
  33399. },
  33400. back: {
  33401. height: math.unit(6 + 8/12, "feet"),
  33402. weight: math.unit(225, "lb"),
  33403. name: "Back",
  33404. image: {
  33405. source: "./media/characters/rhys-londe/back.svg",
  33406. extra: 2237/2137,
  33407. bottom: 63/2300
  33408. }
  33409. },
  33410. frontNsfw: {
  33411. height: math.unit(6 + 8/12, "feet"),
  33412. weight: math.unit(225, "lb"),
  33413. name: "Front (NSFW)",
  33414. image: {
  33415. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33416. extra: 2258/2141,
  33417. bottom: 188/2446
  33418. }
  33419. },
  33420. backNsfw: {
  33421. height: math.unit(6 + 8/12, "feet"),
  33422. weight: math.unit(225, "lb"),
  33423. name: "Back (NSFW)",
  33424. image: {
  33425. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33426. extra: 2237/2137,
  33427. bottom: 63/2300
  33428. }
  33429. },
  33430. dick: {
  33431. height: math.unit(30, "inches"),
  33432. name: "Dick",
  33433. image: {
  33434. source: "./media/characters/rhys-londe/dick.svg"
  33435. }
  33436. },
  33437. maw: {
  33438. height: math.unit(1.6, "feet"),
  33439. name: "Maw",
  33440. image: {
  33441. source: "./media/characters/rhys-londe/maw.svg"
  33442. }
  33443. },
  33444. },
  33445. [
  33446. {
  33447. name: "Normal",
  33448. height: math.unit(6 + 8/12, "feet"),
  33449. default: true
  33450. },
  33451. ]
  33452. ))
  33453. characterMakers.push(() => makeCharacter(
  33454. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33455. {
  33456. front: {
  33457. height: math.unit(3 + 10/12, "feet"),
  33458. weight: math.unit(90, "lb"),
  33459. name: "Front",
  33460. image: {
  33461. source: "./media/characters/taivas-ensim/front.svg",
  33462. extra: 1327/1216,
  33463. bottom: 96/1423
  33464. }
  33465. },
  33466. back: {
  33467. height: math.unit(3 + 10/12, "feet"),
  33468. weight: math.unit(90, "lb"),
  33469. name: "Back",
  33470. image: {
  33471. source: "./media/characters/taivas-ensim/back.svg",
  33472. extra: 1355/1247,
  33473. bottom: 11/1366
  33474. }
  33475. },
  33476. frontNsfw: {
  33477. height: math.unit(3 + 10/12, "feet"),
  33478. weight: math.unit(90, "lb"),
  33479. name: "Front (NSFW)",
  33480. image: {
  33481. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33482. extra: 1327/1216,
  33483. bottom: 96/1423
  33484. }
  33485. },
  33486. backNsfw: {
  33487. height: math.unit(3 + 10/12, "feet"),
  33488. weight: math.unit(90, "lb"),
  33489. name: "Back (NSFW)",
  33490. image: {
  33491. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33492. extra: 1355/1247,
  33493. bottom: 11/1366
  33494. }
  33495. },
  33496. },
  33497. [
  33498. {
  33499. name: "Normal",
  33500. height: math.unit(3 + 10/12, "feet"),
  33501. default: true
  33502. },
  33503. ]
  33504. ))
  33505. characterMakers.push(() => makeCharacter(
  33506. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33507. {
  33508. front: {
  33509. height: math.unit(9 + 6/12, "feet"),
  33510. weight: math.unit(940, "lb"),
  33511. name: "Front",
  33512. image: {
  33513. source: "./media/characters/byliss/front.svg",
  33514. extra: 1327/1290,
  33515. bottom: 82/1409
  33516. }
  33517. },
  33518. back: {
  33519. height: math.unit(9 + 6/12, "feet"),
  33520. weight: math.unit(940, "lb"),
  33521. name: "Back",
  33522. image: {
  33523. source: "./media/characters/byliss/back.svg",
  33524. extra: 1376/1349,
  33525. bottom: 9/1385
  33526. }
  33527. },
  33528. frontNsfw: {
  33529. height: math.unit(9 + 6/12, "feet"),
  33530. weight: math.unit(940, "lb"),
  33531. name: "Front (NSFW)",
  33532. image: {
  33533. source: "./media/characters/byliss/front-nsfw.svg",
  33534. extra: 1327/1290,
  33535. bottom: 82/1409
  33536. }
  33537. },
  33538. backNsfw: {
  33539. height: math.unit(9 + 6/12, "feet"),
  33540. weight: math.unit(940, "lb"),
  33541. name: "Back (NSFW)",
  33542. image: {
  33543. source: "./media/characters/byliss/back-nsfw.svg",
  33544. extra: 1376/1349,
  33545. bottom: 9/1385
  33546. }
  33547. },
  33548. },
  33549. [
  33550. {
  33551. name: "Normal",
  33552. height: math.unit(9 + 6/12, "feet"),
  33553. default: true
  33554. },
  33555. ]
  33556. ))
  33557. characterMakers.push(() => makeCharacter(
  33558. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33559. {
  33560. front: {
  33561. height: math.unit(5 + 2/12, "feet"),
  33562. weight: math.unit(200, "lb"),
  33563. name: "Front",
  33564. image: {
  33565. source: "./media/characters/noraly/front.svg",
  33566. extra: 4985/4773,
  33567. bottom: 150/5135
  33568. }
  33569. },
  33570. full: {
  33571. height: math.unit(5 + 2/12, "feet"),
  33572. weight: math.unit(164, "lb"),
  33573. name: "Full",
  33574. image: {
  33575. source: "./media/characters/noraly/full.svg",
  33576. extra: 1114/1059,
  33577. bottom: 35/1149
  33578. }
  33579. },
  33580. fuller: {
  33581. height: math.unit(5 + 2/12, "feet"),
  33582. weight: math.unit(230, "lb"),
  33583. name: "Fuller",
  33584. image: {
  33585. source: "./media/characters/noraly/fuller.svg",
  33586. extra: 1114/1059,
  33587. bottom: 35/1149
  33588. }
  33589. },
  33590. fullest: {
  33591. height: math.unit(5 + 2/12, "feet"),
  33592. weight: math.unit(300, "lb"),
  33593. name: "Fullest",
  33594. image: {
  33595. source: "./media/characters/noraly/fullest.svg",
  33596. extra: 1114/1059,
  33597. bottom: 35/1149
  33598. }
  33599. },
  33600. },
  33601. [
  33602. {
  33603. name: "Normal",
  33604. height: math.unit(5 + 2/12, "feet"),
  33605. default: true
  33606. },
  33607. ]
  33608. ))
  33609. characterMakers.push(() => makeCharacter(
  33610. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33611. {
  33612. front: {
  33613. height: math.unit(5 + 2/12, "feet"),
  33614. weight: math.unit(210, "lb"),
  33615. name: "Front",
  33616. image: {
  33617. source: "./media/characters/pera/front.svg",
  33618. extra: 1560/1531,
  33619. bottom: 165/1725
  33620. }
  33621. },
  33622. back: {
  33623. height: math.unit(5 + 2/12, "feet"),
  33624. weight: math.unit(210, "lb"),
  33625. name: "Back",
  33626. image: {
  33627. source: "./media/characters/pera/back.svg",
  33628. extra: 1523/1493,
  33629. bottom: 152/1675
  33630. }
  33631. },
  33632. dick: {
  33633. height: math.unit(2.4, "feet"),
  33634. name: "Dick",
  33635. image: {
  33636. source: "./media/characters/pera/dick.svg"
  33637. }
  33638. },
  33639. },
  33640. [
  33641. {
  33642. name: "Normal",
  33643. height: math.unit(5 + 2/12, "feet"),
  33644. default: true
  33645. },
  33646. ]
  33647. ))
  33648. characterMakers.push(() => makeCharacter(
  33649. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33650. {
  33651. front: {
  33652. height: math.unit(12, "feet"),
  33653. weight: math.unit(3200, "lb"),
  33654. name: "Front",
  33655. image: {
  33656. source: "./media/characters/julian/front.svg",
  33657. extra: 2962/2701,
  33658. bottom: 184/3146
  33659. }
  33660. },
  33661. maw: {
  33662. height: math.unit(5.35, "feet"),
  33663. name: "Maw",
  33664. image: {
  33665. source: "./media/characters/julian/maw.svg"
  33666. }
  33667. },
  33668. paw: {
  33669. height: math.unit(3.07, "feet"),
  33670. name: "Paw",
  33671. image: {
  33672. source: "./media/characters/julian/paw.svg"
  33673. }
  33674. },
  33675. },
  33676. [
  33677. {
  33678. name: "Default",
  33679. height: math.unit(12, "feet"),
  33680. default: true
  33681. },
  33682. {
  33683. name: "Big",
  33684. height: math.unit(50, "feet")
  33685. },
  33686. {
  33687. name: "Really Big",
  33688. height: math.unit(1, "mile")
  33689. },
  33690. {
  33691. name: "Extremely Big",
  33692. height: math.unit(100, "miles")
  33693. },
  33694. {
  33695. name: "Planet Hugger",
  33696. height: math.unit(200, "megameters")
  33697. },
  33698. {
  33699. name: "Unreasonably Big",
  33700. height: math.unit(1e300, "meters")
  33701. },
  33702. ]
  33703. ))
  33704. characterMakers.push(() => makeCharacter(
  33705. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33706. {
  33707. solgooleo: {
  33708. height: math.unit(4, "meters"),
  33709. weight: math.unit(6000*1.5, "kg"),
  33710. volume: math.unit(6000, "liters"),
  33711. name: "Solgooleo",
  33712. image: {
  33713. source: "./media/characters/pi/solgooleo.svg",
  33714. extra: 388/331,
  33715. bottom: 29/417
  33716. }
  33717. },
  33718. },
  33719. [
  33720. {
  33721. name: "Normal",
  33722. height: math.unit(4, "meters"),
  33723. default: true
  33724. },
  33725. ]
  33726. ))
  33727. characterMakers.push(() => makeCharacter(
  33728. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33729. {
  33730. front: {
  33731. height: math.unit(8, "feet"),
  33732. weight: math.unit(4, "tons"),
  33733. name: "Front",
  33734. image: {
  33735. source: "./media/characters/shaun/front.svg",
  33736. extra: 503/495,
  33737. bottom: 20/523
  33738. }
  33739. },
  33740. back: {
  33741. height: math.unit(8, "feet"),
  33742. weight: math.unit(4, "tons"),
  33743. name: "Back",
  33744. image: {
  33745. source: "./media/characters/shaun/back.svg",
  33746. extra: 487/480,
  33747. bottom: 20/507
  33748. }
  33749. },
  33750. },
  33751. [
  33752. {
  33753. name: "Lorg",
  33754. height: math.unit(8, "feet"),
  33755. default: true
  33756. },
  33757. ]
  33758. ))
  33759. characterMakers.push(() => makeCharacter(
  33760. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33761. {
  33762. frontAnthro: {
  33763. height: math.unit(7, "feet"),
  33764. name: "Front",
  33765. image: {
  33766. source: "./media/characters/sini/front-anthro.svg",
  33767. extra: 726/678,
  33768. bottom: 35/761
  33769. },
  33770. form: "anthro",
  33771. default: true
  33772. },
  33773. backAnthro: {
  33774. height: math.unit(7, "feet"),
  33775. name: "Back",
  33776. image: {
  33777. source: "./media/characters/sini/back-anthro.svg",
  33778. extra: 743/701,
  33779. bottom: 12/755
  33780. },
  33781. form: "anthro",
  33782. },
  33783. frontAnthroNsfw: {
  33784. height: math.unit(7, "feet"),
  33785. name: "Front (NSFW)",
  33786. image: {
  33787. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33788. extra: 726/678,
  33789. bottom: 35/761
  33790. },
  33791. form: "anthro"
  33792. },
  33793. backAnthroNsfw: {
  33794. height: math.unit(7, "feet"),
  33795. name: "Back (NSFW)",
  33796. image: {
  33797. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33798. extra: 743/701,
  33799. bottom: 12/755
  33800. },
  33801. form: "anthro",
  33802. },
  33803. mawAnthro: {
  33804. height: math.unit(2.14, "feet"),
  33805. name: "Maw",
  33806. image: {
  33807. source: "./media/characters/sini/maw-anthro.svg"
  33808. },
  33809. form: "anthro"
  33810. },
  33811. dick: {
  33812. height: math.unit(1.45, "feet"),
  33813. name: "Dick",
  33814. image: {
  33815. source: "./media/characters/sini/dick-anthro.svg"
  33816. },
  33817. form: "anthro"
  33818. },
  33819. feral: {
  33820. height: math.unit(16, "feet"),
  33821. name: "Feral",
  33822. image: {
  33823. source: "./media/characters/sini/feral.svg",
  33824. extra: 814/605,
  33825. bottom: 11/825
  33826. },
  33827. form: "feral",
  33828. default: true
  33829. },
  33830. feralNsfw: {
  33831. height: math.unit(16, "feet"),
  33832. name: "Feral (NSFW)",
  33833. image: {
  33834. source: "./media/characters/sini/feral-nsfw.svg",
  33835. extra: 814/605,
  33836. bottom: 11/825
  33837. },
  33838. form: "feral"
  33839. },
  33840. mawFeral: {
  33841. height: math.unit(5.66, "feet"),
  33842. name: "Maw",
  33843. image: {
  33844. source: "./media/characters/sini/maw-feral.svg"
  33845. },
  33846. form: "feral",
  33847. },
  33848. pawFeral: {
  33849. height: math.unit(5.17, "feet"),
  33850. name: "Paw",
  33851. image: {
  33852. source: "./media/characters/sini/paw-feral.svg"
  33853. },
  33854. form: "feral",
  33855. },
  33856. rumpFeral: {
  33857. height: math.unit(13.11, "feet"),
  33858. name: "Rump",
  33859. image: {
  33860. source: "./media/characters/sini/rump-feral.svg"
  33861. },
  33862. form: "feral",
  33863. },
  33864. dickFeral: {
  33865. height: math.unit(1, "feet"),
  33866. name: "Dick",
  33867. image: {
  33868. source: "./media/characters/sini/dick-feral.svg"
  33869. },
  33870. form: "feral",
  33871. },
  33872. eyeFeral: {
  33873. height: math.unit(1.23, "feet"),
  33874. name: "Eye",
  33875. image: {
  33876. source: "./media/characters/sini/eye-feral.svg"
  33877. },
  33878. form: "feral",
  33879. },
  33880. },
  33881. [
  33882. {
  33883. name: "Normal",
  33884. height: math.unit(7, "feet"),
  33885. default: true,
  33886. form: "anthro"
  33887. },
  33888. {
  33889. name: "Normal",
  33890. height: math.unit(16, "feet"),
  33891. default: true,
  33892. form: "feral"
  33893. },
  33894. ],
  33895. {
  33896. "anthro": {
  33897. name: "Anthro",
  33898. default: true
  33899. },
  33900. "feral": {
  33901. name: "Feral",
  33902. }
  33903. }
  33904. ))
  33905. characterMakers.push(() => makeCharacter(
  33906. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33907. {
  33908. side: {
  33909. height: math.unit(47.2, "meters"),
  33910. weight: math.unit(10000, "tons"),
  33911. name: "Side",
  33912. image: {
  33913. source: "./media/characters/raylldo/side.svg",
  33914. extra: 2363/642,
  33915. bottom: 221/2584
  33916. }
  33917. },
  33918. top: {
  33919. height: math.unit(240, "meters"),
  33920. weight: math.unit(10000, "tons"),
  33921. name: "Top",
  33922. image: {
  33923. source: "./media/characters/raylldo/top.svg"
  33924. }
  33925. },
  33926. bottom: {
  33927. height: math.unit(240, "meters"),
  33928. weight: math.unit(10000, "tons"),
  33929. name: "Bottom",
  33930. image: {
  33931. source: "./media/characters/raylldo/bottom.svg"
  33932. }
  33933. },
  33934. head: {
  33935. height: math.unit(38.6, "meters"),
  33936. name: "Head",
  33937. image: {
  33938. source: "./media/characters/raylldo/head.svg",
  33939. extra: 1335/1112,
  33940. bottom: 0/1335
  33941. }
  33942. },
  33943. maw: {
  33944. height: math.unit(16.37, "meters"),
  33945. name: "Maw",
  33946. image: {
  33947. source: "./media/characters/raylldo/maw.svg",
  33948. extra: 883/660,
  33949. bottom: 0/883
  33950. },
  33951. extraAttributes: {
  33952. preyCapacity: {
  33953. name: "Capacity",
  33954. power: 3,
  33955. type: "volume",
  33956. base: math.unit(1000, "people")
  33957. },
  33958. tongueSize: {
  33959. name: "Tongue Size",
  33960. power: 2,
  33961. type: "area",
  33962. base: math.unit(21, "m^2")
  33963. }
  33964. }
  33965. },
  33966. forepaw: {
  33967. height: math.unit(18, "meters"),
  33968. name: "Forepaw",
  33969. image: {
  33970. source: "./media/characters/raylldo/forepaw.svg"
  33971. }
  33972. },
  33973. hindpaw: {
  33974. height: math.unit(23, "meters"),
  33975. name: "Hindpaw",
  33976. image: {
  33977. source: "./media/characters/raylldo/hindpaw.svg"
  33978. }
  33979. },
  33980. genitals: {
  33981. height: math.unit(42, "meters"),
  33982. name: "Genitals",
  33983. image: {
  33984. source: "./media/characters/raylldo/genitals.svg"
  33985. }
  33986. },
  33987. },
  33988. [
  33989. {
  33990. name: "Normal",
  33991. height: math.unit(47.2, "meters"),
  33992. default: true
  33993. },
  33994. ]
  33995. ))
  33996. characterMakers.push(() => makeCharacter(
  33997. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33998. {
  33999. anthroFront: {
  34000. height: math.unit(9, "feet"),
  34001. weight: math.unit(600, "lb"),
  34002. name: "Anthro (Front)",
  34003. image: {
  34004. source: "./media/characters/glint/anthro-front.svg",
  34005. extra: 1097/1018,
  34006. bottom: 28/1125
  34007. }
  34008. },
  34009. anthroBack: {
  34010. height: math.unit(9, "feet"),
  34011. weight: math.unit(600, "lb"),
  34012. name: "Anthro (Back)",
  34013. image: {
  34014. source: "./media/characters/glint/anthro-back.svg",
  34015. extra: 1154/997,
  34016. bottom: 36/1190
  34017. }
  34018. },
  34019. feral: {
  34020. height: math.unit(11, "feet"),
  34021. weight: math.unit(50000, "lb"),
  34022. name: "Feral",
  34023. image: {
  34024. source: "./media/characters/glint/feral.svg",
  34025. extra: 3035/1585,
  34026. bottom: 1169/4204
  34027. }
  34028. },
  34029. dickAnthro: {
  34030. height: math.unit(0.7, "meters"),
  34031. name: "Dick (Anthro)",
  34032. image: {
  34033. source: "./media/characters/glint/dick-anthro.svg"
  34034. }
  34035. },
  34036. dickFeral: {
  34037. height: math.unit(2.65, "meters"),
  34038. name: "Dick (Feral)",
  34039. image: {
  34040. source: "./media/characters/glint/dick-feral.svg"
  34041. }
  34042. },
  34043. slitHidden: {
  34044. height: math.unit(5.85, "meters"),
  34045. name: "Slit (Hidden)",
  34046. image: {
  34047. source: "./media/characters/glint/slit-hidden.svg"
  34048. }
  34049. },
  34050. slitErect: {
  34051. height: math.unit(5.85, "meters"),
  34052. name: "Slit (Erect)",
  34053. image: {
  34054. source: "./media/characters/glint/slit-erect.svg"
  34055. }
  34056. },
  34057. mawAnthro: {
  34058. height: math.unit(0.63, "meters"),
  34059. name: "Maw (Anthro)",
  34060. image: {
  34061. source: "./media/characters/glint/maw.svg"
  34062. }
  34063. },
  34064. mawFeral: {
  34065. height: math.unit(2.89, "meters"),
  34066. name: "Maw (Feral)",
  34067. image: {
  34068. source: "./media/characters/glint/maw.svg"
  34069. }
  34070. },
  34071. },
  34072. [
  34073. {
  34074. name: "Normal",
  34075. height: math.unit(9, "feet"),
  34076. default: true
  34077. },
  34078. ]
  34079. ))
  34080. characterMakers.push(() => makeCharacter(
  34081. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34082. {
  34083. side: {
  34084. height: math.unit(15, "feet"),
  34085. weight: math.unit(5000, "kg"),
  34086. name: "Side",
  34087. image: {
  34088. source: "./media/characters/kairne/side.svg",
  34089. extra: 979/811,
  34090. bottom: 13/992
  34091. }
  34092. },
  34093. front: {
  34094. height: math.unit(15, "feet"),
  34095. weight: math.unit(5000, "kg"),
  34096. name: "Front",
  34097. image: {
  34098. source: "./media/characters/kairne/front.svg",
  34099. extra: 908/814,
  34100. bottom: 26/934
  34101. }
  34102. },
  34103. sideNsfw: {
  34104. height: math.unit(15, "feet"),
  34105. weight: math.unit(5000, "kg"),
  34106. name: "Side (NSFW)",
  34107. image: {
  34108. source: "./media/characters/kairne/side-nsfw.svg",
  34109. extra: 979/811,
  34110. bottom: 13/992
  34111. }
  34112. },
  34113. frontNsfw: {
  34114. height: math.unit(15, "feet"),
  34115. weight: math.unit(5000, "kg"),
  34116. name: "Front (NSFW)",
  34117. image: {
  34118. source: "./media/characters/kairne/front-nsfw.svg",
  34119. extra: 908/814,
  34120. bottom: 26/934
  34121. }
  34122. },
  34123. dickCaged: {
  34124. height: math.unit(0.65, "meters"),
  34125. name: "Dick-caged",
  34126. image: {
  34127. source: "./media/characters/kairne/dick-caged.svg"
  34128. }
  34129. },
  34130. dick: {
  34131. height: math.unit(0.79, "meters"),
  34132. name: "Dick",
  34133. image: {
  34134. source: "./media/characters/kairne/dick.svg"
  34135. }
  34136. },
  34137. genitals: {
  34138. height: math.unit(1.29, "meters"),
  34139. name: "Genitals",
  34140. image: {
  34141. source: "./media/characters/kairne/genitals.svg"
  34142. }
  34143. },
  34144. maw: {
  34145. height: math.unit(1.73, "meters"),
  34146. name: "Maw",
  34147. image: {
  34148. source: "./media/characters/kairne/maw.svg"
  34149. }
  34150. },
  34151. },
  34152. [
  34153. {
  34154. name: "Normal",
  34155. height: math.unit(15, "feet"),
  34156. default: true
  34157. },
  34158. ]
  34159. ))
  34160. characterMakers.push(() => makeCharacter(
  34161. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34162. {
  34163. front: {
  34164. height: math.unit(5 + 8/12, "feet"),
  34165. weight: math.unit(139, "lb"),
  34166. name: "Front",
  34167. image: {
  34168. source: "./media/characters/biscuit-jackal/front.svg",
  34169. extra: 2106/1961,
  34170. bottom: 58/2164
  34171. }
  34172. },
  34173. back: {
  34174. height: math.unit(5 + 8/12, "feet"),
  34175. weight: math.unit(139, "lb"),
  34176. name: "Back",
  34177. image: {
  34178. source: "./media/characters/biscuit-jackal/back.svg",
  34179. extra: 2132/1976,
  34180. bottom: 57/2189
  34181. }
  34182. },
  34183. werejackal: {
  34184. height: math.unit(6 + 3/12, "feet"),
  34185. weight: math.unit(188, "lb"),
  34186. name: "Werejackal",
  34187. image: {
  34188. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34189. extra: 2373/2178,
  34190. bottom: 53/2426
  34191. }
  34192. },
  34193. },
  34194. [
  34195. {
  34196. name: "Normal",
  34197. height: math.unit(5 + 8/12, "feet"),
  34198. default: true
  34199. },
  34200. ]
  34201. ))
  34202. characterMakers.push(() => makeCharacter(
  34203. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34204. {
  34205. front: {
  34206. height: math.unit(140, "cm"),
  34207. weight: math.unit(45, "kg"),
  34208. name: "Front",
  34209. image: {
  34210. source: "./media/characters/tayra-white/front.svg",
  34211. extra: 2229/2192,
  34212. bottom: 75/2304
  34213. }
  34214. },
  34215. },
  34216. [
  34217. {
  34218. name: "Normal",
  34219. height: math.unit(140, "cm"),
  34220. default: true
  34221. },
  34222. ]
  34223. ))
  34224. characterMakers.push(() => makeCharacter(
  34225. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34226. {
  34227. front: {
  34228. height: math.unit(4 + 5/12, "feet"),
  34229. name: "Front",
  34230. image: {
  34231. source: "./media/characters/scoop/front.svg",
  34232. extra: 1257/1136,
  34233. bottom: 69/1326
  34234. }
  34235. },
  34236. back: {
  34237. height: math.unit(4 + 5/12, "feet"),
  34238. name: "Back",
  34239. image: {
  34240. source: "./media/characters/scoop/back.svg",
  34241. extra: 1321/1152,
  34242. bottom: 32/1353
  34243. }
  34244. },
  34245. maw: {
  34246. height: math.unit(0.68, "feet"),
  34247. name: "Maw",
  34248. image: {
  34249. source: "./media/characters/scoop/maw.svg"
  34250. }
  34251. },
  34252. },
  34253. [
  34254. {
  34255. name: "Really Small",
  34256. height: math.unit(1, "mm")
  34257. },
  34258. {
  34259. name: "Micro",
  34260. height: math.unit(1, "inch")
  34261. },
  34262. {
  34263. name: "Normal",
  34264. height: math.unit(4 + 5/12, "feet"),
  34265. default: true
  34266. },
  34267. {
  34268. name: "Macro",
  34269. height: math.unit(200, "feet")
  34270. },
  34271. {
  34272. name: "Megamacro",
  34273. height: math.unit(3240, "feet")
  34274. },
  34275. {
  34276. name: "Teramacro",
  34277. height: math.unit(2500, "miles")
  34278. },
  34279. ]
  34280. ))
  34281. characterMakers.push(() => makeCharacter(
  34282. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34283. {
  34284. front: {
  34285. height: math.unit(15 + 7/12, "feet"),
  34286. weight: math.unit(1150, "tons"),
  34287. name: "Front",
  34288. image: {
  34289. source: "./media/characters/saphinara/front.svg",
  34290. extra: 1837/1643,
  34291. bottom: 84/1921
  34292. },
  34293. form: "normal",
  34294. default: true
  34295. },
  34296. side: {
  34297. height: math.unit(15 + 7/12, "feet"),
  34298. weight: math.unit(1150, "tons"),
  34299. name: "Side",
  34300. image: {
  34301. source: "./media/characters/saphinara/side.svg",
  34302. extra: 605/547,
  34303. bottom: 6/611
  34304. },
  34305. form: "normal"
  34306. },
  34307. back: {
  34308. height: math.unit(15 + 7/12, "feet"),
  34309. weight: math.unit(1150, "tons"),
  34310. name: "Back",
  34311. image: {
  34312. source: "./media/characters/saphinara/back.svg",
  34313. extra: 591/531,
  34314. bottom: 13/604
  34315. },
  34316. form: "normal"
  34317. },
  34318. frontTail: {
  34319. height: math.unit(15 + 7/12, "feet"),
  34320. weight: math.unit(1150, "tons"),
  34321. name: "Front (Full Tail)",
  34322. image: {
  34323. source: "./media/characters/saphinara/front-tail.svg",
  34324. extra: 2256/1630,
  34325. bottom: 261/2517
  34326. },
  34327. form: "normal"
  34328. },
  34329. insides: {
  34330. height: math.unit(11.92, "feet"),
  34331. name: "Insides",
  34332. image: {
  34333. source: "./media/characters/saphinara/insides.svg"
  34334. },
  34335. form: "normal"
  34336. },
  34337. head: {
  34338. height: math.unit(4.17, "feet"),
  34339. name: "Head",
  34340. image: {
  34341. source: "./media/characters/saphinara/head.svg"
  34342. },
  34343. form: "normal"
  34344. },
  34345. tongue: {
  34346. height: math.unit(4.60, "feet"),
  34347. name: "Tongue",
  34348. image: {
  34349. source: "./media/characters/saphinara/tongue.svg"
  34350. },
  34351. form: "normal"
  34352. },
  34353. headEnraged: {
  34354. height: math.unit(5.55, "feet"),
  34355. name: "Head (Enraged)",
  34356. image: {
  34357. source: "./media/characters/saphinara/head-enraged.svg"
  34358. },
  34359. form: "normal"
  34360. },
  34361. wings: {
  34362. height: math.unit(11.95, "feet"),
  34363. name: "Wings",
  34364. image: {
  34365. source: "./media/characters/saphinara/wings.svg"
  34366. },
  34367. form: "normal"
  34368. },
  34369. feathers: {
  34370. height: math.unit(8.92, "feet"),
  34371. name: "Feathers",
  34372. image: {
  34373. source: "./media/characters/saphinara/feathers.svg"
  34374. },
  34375. form: "normal"
  34376. },
  34377. shackles: {
  34378. height: math.unit(2, "feet"),
  34379. name: "Shackles",
  34380. image: {
  34381. source: "./media/characters/saphinara/shackles.svg"
  34382. },
  34383. form: "normal"
  34384. },
  34385. eyes: {
  34386. height: math.unit(1.331, "feet"),
  34387. name: "Eyes",
  34388. image: {
  34389. source: "./media/characters/saphinara/eyes.svg"
  34390. },
  34391. form: "normal"
  34392. },
  34393. eyesEnraged: {
  34394. height: math.unit(1.331, "feet"),
  34395. name: "Eyes (Enraged)",
  34396. image: {
  34397. source: "./media/characters/saphinara/eyes-enraged.svg"
  34398. },
  34399. form: "normal"
  34400. },
  34401. trueFormSide: {
  34402. height: math.unit(200, "feet"),
  34403. weight: math.unit(1e7, "tons"),
  34404. name: "Side",
  34405. image: {
  34406. source: "./media/characters/saphinara/true-form-side.svg",
  34407. extra: 1399/770,
  34408. bottom: 97/1496
  34409. },
  34410. form: "true-form",
  34411. default: true
  34412. },
  34413. trueFormMaw: {
  34414. height: math.unit(71.5, "feet"),
  34415. name: "Maw",
  34416. image: {
  34417. source: "./media/characters/saphinara/true-form-maw.svg",
  34418. extra: 2302/1453,
  34419. bottom: 0/2302
  34420. },
  34421. form: "true-form"
  34422. },
  34423. },
  34424. [
  34425. {
  34426. name: "Normal",
  34427. height: math.unit(15 + 7/12, "feet"),
  34428. default: true,
  34429. form: "normal"
  34430. },
  34431. {
  34432. name: "Angry",
  34433. height: math.unit(30 + 6/12, "feet"),
  34434. form: "normal"
  34435. },
  34436. {
  34437. name: "Enraged",
  34438. height: math.unit(102 + 1/12, "feet"),
  34439. form: "normal"
  34440. },
  34441. {
  34442. name: "True",
  34443. height: math.unit(200, "feet"),
  34444. default: true,
  34445. form: "true-form"
  34446. }
  34447. ],
  34448. {
  34449. "normal": {
  34450. name: "Normal",
  34451. default: true
  34452. },
  34453. "true-form": {
  34454. name: "True Form"
  34455. }
  34456. }
  34457. ))
  34458. characterMakers.push(() => makeCharacter(
  34459. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34460. {
  34461. front: {
  34462. height: math.unit(6 + 8/12, "feet"),
  34463. weight: math.unit(300, "lb"),
  34464. name: "Front",
  34465. image: {
  34466. source: "./media/characters/jrain/front.svg",
  34467. extra: 3039/2865,
  34468. bottom: 399/3438
  34469. }
  34470. },
  34471. back: {
  34472. height: math.unit(6 + 8/12, "feet"),
  34473. weight: math.unit(300, "lb"),
  34474. name: "Back",
  34475. image: {
  34476. source: "./media/characters/jrain/back.svg",
  34477. extra: 3089/2938,
  34478. bottom: 172/3261
  34479. }
  34480. },
  34481. head: {
  34482. height: math.unit(2.14, "feet"),
  34483. name: "Head",
  34484. image: {
  34485. source: "./media/characters/jrain/head.svg"
  34486. }
  34487. },
  34488. maw: {
  34489. height: math.unit(1.77, "feet"),
  34490. name: "Maw",
  34491. image: {
  34492. source: "./media/characters/jrain/maw.svg"
  34493. }
  34494. },
  34495. leftHand: {
  34496. height: math.unit(1.1, "feet"),
  34497. name: "Left Hand",
  34498. image: {
  34499. source: "./media/characters/jrain/left-hand.svg"
  34500. }
  34501. },
  34502. rightHand: {
  34503. height: math.unit(1.1, "feet"),
  34504. name: "Right Hand",
  34505. image: {
  34506. source: "./media/characters/jrain/right-hand.svg"
  34507. }
  34508. },
  34509. eye: {
  34510. height: math.unit(0.35, "feet"),
  34511. name: "Eye",
  34512. image: {
  34513. source: "./media/characters/jrain/eye.svg"
  34514. }
  34515. },
  34516. },
  34517. [
  34518. {
  34519. name: "Normal",
  34520. height: math.unit(6 + 8/12, "feet"),
  34521. default: true
  34522. },
  34523. {
  34524. name: "Casually Large",
  34525. height: math.unit(25, "feet")
  34526. },
  34527. {
  34528. name: "Giant",
  34529. height: math.unit(100, "feet")
  34530. },
  34531. {
  34532. name: "Kaiju",
  34533. height: math.unit(300, "feet")
  34534. },
  34535. ]
  34536. ))
  34537. characterMakers.push(() => makeCharacter(
  34538. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34539. {
  34540. dragon: {
  34541. height: math.unit(5, "meters"),
  34542. name: "Dragon",
  34543. image: {
  34544. source: "./media/characters/sabrina/dragon.svg",
  34545. extra: 3670 / 2365,
  34546. bottom: 333 / 4003
  34547. }
  34548. },
  34549. gryphon: {
  34550. height: math.unit(3, "meters"),
  34551. name: "Gryphon",
  34552. image: {
  34553. source: "./media/characters/sabrina/gryphon.svg",
  34554. extra: 1576 / 945,
  34555. bottom: 71 / 1647
  34556. }
  34557. },
  34558. snake: {
  34559. height: math.unit(12, "meters"),
  34560. name: "Snake",
  34561. image: {
  34562. source: "./media/characters/sabrina/snake.svg",
  34563. extra: 1758 / 1320,
  34564. bottom: 186 / 1944
  34565. }
  34566. },
  34567. collar: {
  34568. height: math.unit(1.86, "meters"),
  34569. name: "Collar",
  34570. image: {
  34571. source: "./media/characters/sabrina/collar.svg"
  34572. }
  34573. },
  34574. eye: {
  34575. height: math.unit(0.53, "meters"),
  34576. name: "Eye",
  34577. image: {
  34578. source: "./media/characters/sabrina/eye.svg"
  34579. }
  34580. },
  34581. foot: {
  34582. height: math.unit(1.86, "meters"),
  34583. name: "Foot",
  34584. image: {
  34585. source: "./media/characters/sabrina/foot.svg"
  34586. }
  34587. },
  34588. hand: {
  34589. height: math.unit(1.32, "meters"),
  34590. name: "Hand",
  34591. image: {
  34592. source: "./media/characters/sabrina/hand.svg"
  34593. }
  34594. },
  34595. head: {
  34596. height: math.unit(2.44, "meters"),
  34597. name: "Head",
  34598. image: {
  34599. source: "./media/characters/sabrina/head.svg"
  34600. }
  34601. },
  34602. headAngry: {
  34603. height: math.unit(2.44, "meters"),
  34604. name: "Head (Angry))",
  34605. image: {
  34606. source: "./media/characters/sabrina/head-angry.svg"
  34607. }
  34608. },
  34609. maw: {
  34610. height: math.unit(1.65, "meters"),
  34611. name: "Maw",
  34612. image: {
  34613. source: "./media/characters/sabrina/maw.svg"
  34614. }
  34615. },
  34616. spikes: {
  34617. height: math.unit(1.69, "meters"),
  34618. name: "Spikes",
  34619. image: {
  34620. source: "./media/characters/sabrina/spikes.svg"
  34621. }
  34622. },
  34623. stomach: {
  34624. height: math.unit(1.15, "meters"),
  34625. name: "Stomach",
  34626. image: {
  34627. source: "./media/characters/sabrina/stomach.svg"
  34628. }
  34629. },
  34630. tongue: {
  34631. height: math.unit(1.27, "meters"),
  34632. name: "Tongue",
  34633. image: {
  34634. source: "./media/characters/sabrina/tongue.svg"
  34635. }
  34636. },
  34637. wingDorsal: {
  34638. height: math.unit(4.85, "meters"),
  34639. name: "Wing (Dorsal)",
  34640. image: {
  34641. source: "./media/characters/sabrina/wing-dorsal.svg"
  34642. }
  34643. },
  34644. wingVentral: {
  34645. height: math.unit(4.85, "meters"),
  34646. name: "Wing (Ventral)",
  34647. image: {
  34648. source: "./media/characters/sabrina/wing-ventral.svg"
  34649. }
  34650. },
  34651. },
  34652. [
  34653. {
  34654. name: "Normal",
  34655. height: math.unit(5, "meters"),
  34656. default: true
  34657. },
  34658. ]
  34659. ))
  34660. characterMakers.push(() => makeCharacter(
  34661. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34662. {
  34663. frontMaid: {
  34664. height: math.unit(5 + 5/12, "feet"),
  34665. weight: math.unit(130, "lb"),
  34666. name: "Front (Maid)",
  34667. image: {
  34668. source: "./media/characters/midnight-tales/front-maid.svg",
  34669. extra: 489/454,
  34670. bottom: 61/550
  34671. }
  34672. },
  34673. frontFormal: {
  34674. height: math.unit(5 + 5/12, "feet"),
  34675. weight: math.unit(130, "lb"),
  34676. name: "Front (Formal)",
  34677. image: {
  34678. source: "./media/characters/midnight-tales/front-formal.svg",
  34679. extra: 489/454,
  34680. bottom: 61/550
  34681. }
  34682. },
  34683. back: {
  34684. height: math.unit(5 + 5/12, "feet"),
  34685. weight: math.unit(130, "lb"),
  34686. name: "Back",
  34687. image: {
  34688. source: "./media/characters/midnight-tales/back.svg",
  34689. extra: 498/456,
  34690. bottom: 33/531
  34691. }
  34692. },
  34693. frontBeast: {
  34694. height: math.unit(40, "feet"),
  34695. weight: math.unit(64000, "lb"),
  34696. name: "Front (Beast)",
  34697. image: {
  34698. source: "./media/characters/midnight-tales/front-beast.svg",
  34699. extra: 927/860,
  34700. bottom: 53/980
  34701. }
  34702. },
  34703. backBeast: {
  34704. height: math.unit(40, "feet"),
  34705. weight: math.unit(64000, "lb"),
  34706. name: "Back (Beast)",
  34707. image: {
  34708. source: "./media/characters/midnight-tales/back-beast.svg",
  34709. extra: 929/855,
  34710. bottom: 16/945
  34711. }
  34712. },
  34713. footBeast: {
  34714. height: math.unit(6.7, "feet"),
  34715. name: "Foot (Beast)",
  34716. image: {
  34717. source: "./media/characters/midnight-tales/foot-beast.svg"
  34718. }
  34719. },
  34720. headBeast: {
  34721. height: math.unit(8, "feet"),
  34722. name: "Head (Beast)",
  34723. image: {
  34724. source: "./media/characters/midnight-tales/head-beast.svg"
  34725. }
  34726. },
  34727. },
  34728. [
  34729. {
  34730. name: "Normal",
  34731. height: math.unit(5 + 5 / 12, "feet"),
  34732. default: true
  34733. },
  34734. {
  34735. name: "Macro",
  34736. height: math.unit(25, "feet")
  34737. },
  34738. ]
  34739. ))
  34740. characterMakers.push(() => makeCharacter(
  34741. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34742. {
  34743. front: {
  34744. height: math.unit(5 + 10/12, "feet"),
  34745. name: "Front",
  34746. image: {
  34747. source: "./media/characters/argon/front.svg",
  34748. extra: 2009/1935,
  34749. bottom: 118/2127
  34750. }
  34751. },
  34752. back: {
  34753. height: math.unit(5 + 10/12, "feet"),
  34754. name: "Back",
  34755. image: {
  34756. source: "./media/characters/argon/back.svg",
  34757. extra: 2047/1992,
  34758. bottom: 20/2067
  34759. }
  34760. },
  34761. frontDressed: {
  34762. height: math.unit(5 + 10/12, "feet"),
  34763. name: "Front (Dressed)",
  34764. image: {
  34765. source: "./media/characters/argon/front-dressed.svg",
  34766. extra: 2009/1935,
  34767. bottom: 118/2127
  34768. }
  34769. },
  34770. },
  34771. [
  34772. {
  34773. name: "Normal",
  34774. height: math.unit(5 + 10/12, "feet"),
  34775. default: true
  34776. },
  34777. ]
  34778. ))
  34779. characterMakers.push(() => makeCharacter(
  34780. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34781. {
  34782. front: {
  34783. height: math.unit(8 + 6/12, "feet"),
  34784. weight: math.unit(1150, "lb"),
  34785. name: "Front",
  34786. image: {
  34787. source: "./media/characters/kichi/front.svg",
  34788. extra: 1267/1164,
  34789. bottom: 61/1328
  34790. }
  34791. },
  34792. back: {
  34793. height: math.unit(8 + 6/12, "feet"),
  34794. weight: math.unit(1150, "lb"),
  34795. name: "Back",
  34796. image: {
  34797. source: "./media/characters/kichi/back.svg",
  34798. extra: 1273/1166,
  34799. bottom: 33/1306
  34800. }
  34801. },
  34802. },
  34803. [
  34804. {
  34805. name: "Normal",
  34806. height: math.unit(8 + 6/12, "feet"),
  34807. default: true
  34808. },
  34809. ]
  34810. ))
  34811. characterMakers.push(() => makeCharacter(
  34812. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34813. {
  34814. front: {
  34815. height: math.unit(6, "feet"),
  34816. weight: math.unit(210, "lb"),
  34817. name: "Front",
  34818. image: {
  34819. source: "./media/characters/manetel-greyscale/front.svg",
  34820. extra: 350/312,
  34821. bottom: 8/358
  34822. }
  34823. },
  34824. },
  34825. [
  34826. {
  34827. name: "Micro",
  34828. height: math.unit(2, "inches")
  34829. },
  34830. {
  34831. name: "Normal",
  34832. height: math.unit(6, "feet"),
  34833. default: true
  34834. },
  34835. {
  34836. name: "Minimacro",
  34837. height: math.unit(17, "feet")
  34838. },
  34839. {
  34840. name: "Macro",
  34841. height: math.unit(117, "feet")
  34842. },
  34843. ]
  34844. ))
  34845. characterMakers.push(() => makeCharacter(
  34846. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34847. {
  34848. side: {
  34849. height: math.unit(5 + 1/12, "feet"),
  34850. weight: math.unit(418, "lb"),
  34851. name: "Side",
  34852. image: {
  34853. source: "./media/characters/softpurr/side.svg",
  34854. extra: 1993/1945,
  34855. bottom: 134/2127
  34856. }
  34857. },
  34858. front: {
  34859. height: math.unit(5 + 1/12, "feet"),
  34860. weight: math.unit(418, "lb"),
  34861. name: "Front",
  34862. image: {
  34863. source: "./media/characters/softpurr/front.svg",
  34864. extra: 1950/1856,
  34865. bottom: 174/2124
  34866. }
  34867. },
  34868. paw: {
  34869. height: math.unit(1, "feet"),
  34870. name: "Paw",
  34871. image: {
  34872. source: "./media/characters/softpurr/paw.svg"
  34873. }
  34874. },
  34875. },
  34876. [
  34877. {
  34878. name: "Normal",
  34879. height: math.unit(5 + 1/12, "feet"),
  34880. default: true
  34881. },
  34882. ]
  34883. ))
  34884. characterMakers.push(() => makeCharacter(
  34885. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34886. {
  34887. front: {
  34888. height: math.unit(260, "meters"),
  34889. name: "Front",
  34890. image: {
  34891. source: "./media/characters/anahita/front.svg",
  34892. extra: 665/635,
  34893. bottom: 89/754
  34894. }
  34895. },
  34896. },
  34897. [
  34898. {
  34899. name: "Macro",
  34900. height: math.unit(260, "meters"),
  34901. default: true
  34902. },
  34903. ]
  34904. ))
  34905. characterMakers.push(() => makeCharacter(
  34906. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34907. {
  34908. front: {
  34909. height: math.unit(4 + 10/12, "feet"),
  34910. weight: math.unit(160, "lb"),
  34911. name: "Front",
  34912. image: {
  34913. source: "./media/characters/chip-mouse/front.svg",
  34914. extra: 3528/3408,
  34915. bottom: 0/3528
  34916. }
  34917. },
  34918. frontNsfw: {
  34919. height: math.unit(4 + 10/12, "feet"),
  34920. weight: math.unit(160, "lb"),
  34921. name: "Front (NSFW)",
  34922. image: {
  34923. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34924. extra: 3528/3408,
  34925. bottom: 0/3528
  34926. }
  34927. },
  34928. },
  34929. [
  34930. {
  34931. name: "Normal",
  34932. height: math.unit(4 + 10/12, "feet"),
  34933. default: true
  34934. },
  34935. ]
  34936. ))
  34937. characterMakers.push(() => makeCharacter(
  34938. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34939. {
  34940. side: {
  34941. height: math.unit(10, "feet"),
  34942. weight: math.unit(14000, "lb"),
  34943. name: "Side",
  34944. image: {
  34945. source: "./media/characters/kremm/side.svg",
  34946. extra: 1390/1053,
  34947. bottom: 90/1480
  34948. }
  34949. },
  34950. gut: {
  34951. height: math.unit(5.8, "feet"),
  34952. name: "Gut",
  34953. image: {
  34954. source: "./media/characters/kremm/gut.svg"
  34955. }
  34956. },
  34957. ass: {
  34958. height: math.unit(6.1, "feet"),
  34959. name: "Ass",
  34960. image: {
  34961. source: "./media/characters/kremm/ass.svg"
  34962. }
  34963. },
  34964. jaws: {
  34965. height: math.unit(2.2, "feet"),
  34966. name: "Jaws",
  34967. image: {
  34968. source: "./media/characters/kremm/jaws.svg"
  34969. }
  34970. },
  34971. dick: {
  34972. height: math.unit(4.26, "feet"),
  34973. name: "Dick",
  34974. image: {
  34975. source: "./media/characters/kremm/dick.svg"
  34976. }
  34977. },
  34978. },
  34979. [
  34980. {
  34981. name: "Normal",
  34982. height: math.unit(10, "feet"),
  34983. default: true
  34984. },
  34985. ]
  34986. ))
  34987. characterMakers.push(() => makeCharacter(
  34988. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34989. {
  34990. front: {
  34991. height: math.unit(30, "stories"),
  34992. name: "Front",
  34993. image: {
  34994. source: "./media/characters/kai/front.svg",
  34995. extra: 1892/1718,
  34996. bottom: 162/2054
  34997. }
  34998. },
  34999. },
  35000. [
  35001. {
  35002. name: "Macro",
  35003. height: math.unit(30, "stories"),
  35004. default: true
  35005. },
  35006. ]
  35007. ))
  35008. characterMakers.push(() => makeCharacter(
  35009. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35010. {
  35011. front: {
  35012. height: math.unit(6 + 4/12, "feet"),
  35013. weight: math.unit(145, "lb"),
  35014. name: "Front",
  35015. image: {
  35016. source: "./media/characters/sykes/front.svg",
  35017. extra: 1321 / 1187,
  35018. bottom: 66 / 1387
  35019. }
  35020. },
  35021. back: {
  35022. height: math.unit(6 + 4/12, "feet"),
  35023. weight: math.unit(145, "lb"),
  35024. name: "Back",
  35025. image: {
  35026. source: "./media/characters/sykes/back.svg",
  35027. extra: 1326/1181,
  35028. bottom: 31/1357
  35029. }
  35030. },
  35031. traditionalOutfit: {
  35032. height: math.unit(6 + 4/12, "feet"),
  35033. weight: math.unit(145, "lb"),
  35034. name: "Traditional Outfit",
  35035. image: {
  35036. source: "./media/characters/sykes/traditional-outfit.svg",
  35037. extra: 1321 / 1187,
  35038. bottom: 66 / 1387
  35039. }
  35040. },
  35041. adventureOutfit: {
  35042. height: math.unit(6 + 4/12, "feet"),
  35043. weight: math.unit(145, "lb"),
  35044. name: "Adventure Outfit",
  35045. image: {
  35046. source: "./media/characters/sykes/adventure-outfit.svg",
  35047. extra: 1321 / 1187,
  35048. bottom: 66 / 1387
  35049. }
  35050. },
  35051. handLeft: {
  35052. height: math.unit(0.9, "feet"),
  35053. name: "Hand (Left)",
  35054. image: {
  35055. source: "./media/characters/sykes/hand-left.svg"
  35056. }
  35057. },
  35058. handRight: {
  35059. height: math.unit(0.839, "feet"),
  35060. name: "Hand (Right)",
  35061. image: {
  35062. source: "./media/characters/sykes/hand-right.svg"
  35063. }
  35064. },
  35065. leftFoot: {
  35066. height: math.unit(1.2, "feet"),
  35067. name: "Foot (Left)",
  35068. image: {
  35069. source: "./media/characters/sykes/foot-left.svg"
  35070. }
  35071. },
  35072. rightFoot: {
  35073. height: math.unit(1.2, "feet"),
  35074. name: "Foot (Right)",
  35075. image: {
  35076. source: "./media/characters/sykes/foot-right.svg"
  35077. }
  35078. },
  35079. maw: {
  35080. height: math.unit(1.93, "feet"),
  35081. name: "Maw",
  35082. image: {
  35083. source: "./media/characters/sykes/maw.svg"
  35084. }
  35085. },
  35086. teeth: {
  35087. height: math.unit(0.51, "feet"),
  35088. name: "Teeth",
  35089. image: {
  35090. source: "./media/characters/sykes/teeth.svg"
  35091. }
  35092. },
  35093. tongue: {
  35094. height: math.unit(2.13, "feet"),
  35095. name: "Tongue",
  35096. image: {
  35097. source: "./media/characters/sykes/tongue.svg"
  35098. }
  35099. },
  35100. uvula: {
  35101. height: math.unit(0.16, "feet"),
  35102. name: "Uvula",
  35103. image: {
  35104. source: "./media/characters/sykes/uvula.svg"
  35105. }
  35106. },
  35107. collar: {
  35108. height: math.unit(0.287, "feet"),
  35109. name: "Collar",
  35110. image: {
  35111. source: "./media/characters/sykes/collar.svg"
  35112. }
  35113. },
  35114. tail: {
  35115. height: math.unit(3.8, "feet"),
  35116. name: "Tail",
  35117. image: {
  35118. source: "./media/characters/sykes/tail.svg"
  35119. }
  35120. },
  35121. },
  35122. [
  35123. {
  35124. name: "Shrunken",
  35125. height: math.unit(5, "inches")
  35126. },
  35127. {
  35128. name: "Normal",
  35129. height: math.unit(6 + 4 / 12, "feet"),
  35130. default: true
  35131. },
  35132. {
  35133. name: "Big",
  35134. height: math.unit(15, "feet")
  35135. },
  35136. ]
  35137. ))
  35138. characterMakers.push(() => makeCharacter(
  35139. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35140. {
  35141. front: {
  35142. height: math.unit(5 + 8/12, "feet"),
  35143. weight: math.unit(190, "lb"),
  35144. name: "Front",
  35145. image: {
  35146. source: "./media/characters/oven-otter/front.svg",
  35147. extra: 1809/1740,
  35148. bottom: 181/1990
  35149. }
  35150. },
  35151. back: {
  35152. height: math.unit(5 + 8/12, "feet"),
  35153. weight: math.unit(190, "lb"),
  35154. name: "Back",
  35155. image: {
  35156. source: "./media/characters/oven-otter/back.svg",
  35157. extra: 1709/1635,
  35158. bottom: 118/1827
  35159. }
  35160. },
  35161. hand: {
  35162. height: math.unit(1.07, "feet"),
  35163. name: "Hand",
  35164. image: {
  35165. source: "./media/characters/oven-otter/hand.svg"
  35166. }
  35167. },
  35168. beans: {
  35169. height: math.unit(1.74, "feet"),
  35170. name: "Beans",
  35171. image: {
  35172. source: "./media/characters/oven-otter/beans.svg"
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Micro",
  35179. height: math.unit(0.5, "inches")
  35180. },
  35181. {
  35182. name: "Normal",
  35183. height: math.unit(5 + 8/12, "feet"),
  35184. default: true
  35185. },
  35186. {
  35187. name: "Macro",
  35188. height: math.unit(250, "feet")
  35189. },
  35190. {
  35191. name: "Really High",
  35192. height: math.unit(420, "feet")
  35193. },
  35194. ]
  35195. ))
  35196. characterMakers.push(() => makeCharacter(
  35197. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35198. {
  35199. front: {
  35200. height: math.unit(5, "meters"),
  35201. weight: math.unit(292000000000000, "kg"),
  35202. name: "Front",
  35203. image: {
  35204. source: "./media/characters/devourer/front.svg",
  35205. extra: 1800/1733,
  35206. bottom: 211/2011
  35207. }
  35208. },
  35209. maw: {
  35210. height: math.unit(1.1, "meter"),
  35211. name: "Maw",
  35212. image: {
  35213. source: "./media/characters/devourer/maw.svg"
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Small",
  35220. height: math.unit(3, "meters")
  35221. },
  35222. {
  35223. name: "Large",
  35224. height: math.unit(5, "meters"),
  35225. default: true
  35226. },
  35227. ]
  35228. ))
  35229. characterMakers.push(() => makeCharacter(
  35230. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35231. {
  35232. front: {
  35233. height: math.unit(6, "feet"),
  35234. weight: math.unit(400, "lb"),
  35235. name: "Front",
  35236. image: {
  35237. source: "./media/characters/ellarby/front.svg",
  35238. extra: 1909/1763,
  35239. bottom: 80/1989
  35240. }
  35241. },
  35242. back: {
  35243. height: math.unit(6, "feet"),
  35244. weight: math.unit(400, "lb"),
  35245. name: "Back",
  35246. image: {
  35247. source: "./media/characters/ellarby/back.svg",
  35248. extra: 1914/1784,
  35249. bottom: 172/2086
  35250. }
  35251. },
  35252. },
  35253. [
  35254. {
  35255. name: "Mischief",
  35256. height: math.unit(18, "inches")
  35257. },
  35258. {
  35259. name: "Trouble",
  35260. height: math.unit(12, "feet")
  35261. },
  35262. {
  35263. name: "Havoc",
  35264. height: math.unit(200, "feet"),
  35265. default: true
  35266. },
  35267. {
  35268. name: "Pandemonium",
  35269. height: math.unit(1, "mile")
  35270. },
  35271. {
  35272. name: "Catastrophe",
  35273. height: math.unit(100, "miles")
  35274. },
  35275. ]
  35276. ))
  35277. characterMakers.push(() => makeCharacter(
  35278. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35279. {
  35280. front: {
  35281. height: math.unit(4.7, "meters"),
  35282. weight: math.unit(6500, "kg"),
  35283. name: "Front",
  35284. image: {
  35285. source: "./media/characters/vex/front.svg",
  35286. extra: 1288/1140,
  35287. bottom: 100/1388
  35288. }
  35289. },
  35290. },
  35291. [
  35292. {
  35293. name: "Normal",
  35294. height: math.unit(4.7, "meters"),
  35295. default: true
  35296. },
  35297. ]
  35298. ))
  35299. characterMakers.push(() => makeCharacter(
  35300. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35301. {
  35302. normal: {
  35303. height: math.unit(6, "feet"),
  35304. weight: math.unit(350, "lb"),
  35305. name: "Normal",
  35306. image: {
  35307. source: "./media/characters/teshy/normal.svg",
  35308. extra: 1795/1735,
  35309. bottom: 16/1811
  35310. }
  35311. },
  35312. monsterFront: {
  35313. height: math.unit(12, "feet"),
  35314. weight: math.unit(4700, "lb"),
  35315. name: "Monster (Front)",
  35316. image: {
  35317. source: "./media/characters/teshy/monster-front.svg",
  35318. extra: 2042/2034,
  35319. bottom: 128/2170
  35320. }
  35321. },
  35322. monsterSide: {
  35323. height: math.unit(12, "feet"),
  35324. weight: math.unit(4700, "lb"),
  35325. name: "Monster (Side)",
  35326. image: {
  35327. source: "./media/characters/teshy/monster-side.svg",
  35328. extra: 2067/2056,
  35329. bottom: 70/2137
  35330. }
  35331. },
  35332. monsterBack: {
  35333. height: math.unit(12, "feet"),
  35334. weight: math.unit(4700, "lb"),
  35335. name: "Monster (Back)",
  35336. image: {
  35337. source: "./media/characters/teshy/monster-back.svg",
  35338. extra: 1921/1914,
  35339. bottom: 171/2092
  35340. }
  35341. },
  35342. },
  35343. [
  35344. {
  35345. name: "Normal",
  35346. height: math.unit(6, "feet"),
  35347. default: true
  35348. },
  35349. ]
  35350. ))
  35351. characterMakers.push(() => makeCharacter(
  35352. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35353. {
  35354. front: {
  35355. height: math.unit(6, "feet"),
  35356. name: "Front",
  35357. image: {
  35358. source: "./media/characters/ramey/front.svg",
  35359. extra: 790/787,
  35360. bottom: 27/817
  35361. }
  35362. },
  35363. },
  35364. [
  35365. {
  35366. name: "Normal",
  35367. height: math.unit(6, "feet"),
  35368. default: true
  35369. },
  35370. ]
  35371. ))
  35372. characterMakers.push(() => makeCharacter(
  35373. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35374. {
  35375. front: {
  35376. height: math.unit(5 + 5/12, "feet"),
  35377. weight: math.unit(120, "lb"),
  35378. name: "Front",
  35379. image: {
  35380. source: "./media/characters/phirae/front.svg",
  35381. extra: 2491/2436,
  35382. bottom: 38/2529
  35383. }
  35384. },
  35385. },
  35386. [
  35387. {
  35388. name: "Normal",
  35389. height: math.unit(5 + 5/12, "feet"),
  35390. default: true
  35391. },
  35392. ]
  35393. ))
  35394. characterMakers.push(() => makeCharacter(
  35395. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35396. {
  35397. front: {
  35398. height: math.unit(5 + 3/12, "feet"),
  35399. name: "Front",
  35400. image: {
  35401. source: "./media/characters/stagglas/front.svg",
  35402. extra: 962/882,
  35403. bottom: 53/1015
  35404. }
  35405. },
  35406. feral: {
  35407. height: math.unit(335, "cm"),
  35408. name: "Feral",
  35409. image: {
  35410. source: "./media/characters/stagglas/feral.svg",
  35411. extra: 1732/1090,
  35412. bottom: 48/1780
  35413. }
  35414. },
  35415. },
  35416. [
  35417. {
  35418. name: "Normal",
  35419. height: math.unit(5 + 3/12, "feet"),
  35420. default: true
  35421. },
  35422. ]
  35423. ))
  35424. characterMakers.push(() => makeCharacter(
  35425. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35426. {
  35427. front: {
  35428. height: math.unit(5 + 4/12, "feet"),
  35429. weight: math.unit(145, "lb"),
  35430. name: "Front",
  35431. image: {
  35432. source: "./media/characters/starra/front.svg",
  35433. extra: 1790/1691,
  35434. bottom: 91/1881
  35435. }
  35436. },
  35437. },
  35438. [
  35439. {
  35440. name: "Normal",
  35441. height: math.unit(5 + 4/12, "feet"),
  35442. default: true
  35443. },
  35444. ]
  35445. ))
  35446. characterMakers.push(() => makeCharacter(
  35447. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35448. {
  35449. front: {
  35450. height: math.unit(2.2, "meters"),
  35451. name: "Front",
  35452. image: {
  35453. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35454. extra: 1194/1005,
  35455. bottom: 25/1219
  35456. }
  35457. },
  35458. },
  35459. [
  35460. {
  35461. name: "Normal",
  35462. height: math.unit(2.2, "meters"),
  35463. default: true
  35464. },
  35465. ]
  35466. ))
  35467. characterMakers.push(() => makeCharacter(
  35468. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35469. {
  35470. side: {
  35471. height: math.unit(8 + 2/12, "feet"),
  35472. weight: math.unit(1240, "lb"),
  35473. name: "Side",
  35474. image: {
  35475. source: "./media/characters/mika-valentine/side.svg",
  35476. extra: 2670/2501,
  35477. bottom: 250/2920
  35478. }
  35479. },
  35480. },
  35481. [
  35482. {
  35483. name: "Normal",
  35484. height: math.unit(8 + 2/12, "feet"),
  35485. default: true
  35486. },
  35487. ]
  35488. ))
  35489. characterMakers.push(() => makeCharacter(
  35490. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35491. {
  35492. front: {
  35493. height: math.unit(7 + 2/12, "feet"),
  35494. name: "Front",
  35495. image: {
  35496. source: "./media/characters/xoltol/front.svg",
  35497. extra: 2212/2124,
  35498. bottom: 84/2296
  35499. }
  35500. },
  35501. side: {
  35502. height: math.unit(7 + 2/12, "feet"),
  35503. name: "Side",
  35504. image: {
  35505. source: "./media/characters/xoltol/side.svg",
  35506. extra: 2273/2197,
  35507. bottom: 26/2299
  35508. }
  35509. },
  35510. hand: {
  35511. height: math.unit(2.5, "feet"),
  35512. name: "Hand",
  35513. image: {
  35514. source: "./media/characters/xoltol/hand.svg"
  35515. }
  35516. },
  35517. },
  35518. [
  35519. {
  35520. name: "Small-ish",
  35521. height: math.unit(5 + 11/12, "feet")
  35522. },
  35523. {
  35524. name: "Normal",
  35525. height: math.unit(7 + 2/12, "feet")
  35526. },
  35527. {
  35528. name: "\"Macro\"",
  35529. height: math.unit(14 + 9/12, "feet"),
  35530. default: true
  35531. },
  35532. {
  35533. name: "Alternate Height",
  35534. height: math.unit(20, "feet")
  35535. },
  35536. {
  35537. name: "Actually Macro",
  35538. height: math.unit(100, "feet")
  35539. },
  35540. ]
  35541. ))
  35542. characterMakers.push(() => makeCharacter(
  35543. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35544. {
  35545. front: {
  35546. height: math.unit(5 + 2/12, "feet"),
  35547. name: "Front",
  35548. image: {
  35549. source: "./media/characters/kotetsu-redwood/front.svg",
  35550. extra: 1053/942,
  35551. bottom: 60/1113
  35552. }
  35553. },
  35554. },
  35555. [
  35556. {
  35557. name: "Normal",
  35558. height: math.unit(5 + 2/12, "feet"),
  35559. default: true
  35560. },
  35561. ]
  35562. ))
  35563. characterMakers.push(() => makeCharacter(
  35564. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35565. {
  35566. front: {
  35567. height: math.unit(2.4, "meters"),
  35568. weight: math.unit(125, "kg"),
  35569. name: "Front",
  35570. image: {
  35571. source: "./media/characters/lilith/front.svg",
  35572. extra: 1590/1513,
  35573. bottom: 203/1793
  35574. }
  35575. },
  35576. },
  35577. [
  35578. {
  35579. name: "Humanoid",
  35580. height: math.unit(2.4, "meters")
  35581. },
  35582. {
  35583. name: "Normal",
  35584. height: math.unit(6, "meters"),
  35585. default: true
  35586. },
  35587. {
  35588. name: "Largest",
  35589. height: math.unit(55, "meters")
  35590. },
  35591. ]
  35592. ))
  35593. characterMakers.push(() => makeCharacter(
  35594. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35595. {
  35596. front: {
  35597. height: math.unit(8 + 4/12, "feet"),
  35598. weight: math.unit(535, "lb"),
  35599. name: "Front",
  35600. image: {
  35601. source: "./media/characters/beh'kah-bolger/front.svg",
  35602. extra: 1660/1603,
  35603. bottom: 37/1697
  35604. }
  35605. },
  35606. },
  35607. [
  35608. {
  35609. name: "Normal",
  35610. height: math.unit(8 + 4/12, "feet"),
  35611. default: true
  35612. },
  35613. {
  35614. name: "Kaiju",
  35615. height: math.unit(250, "feet")
  35616. },
  35617. {
  35618. name: "Still Growing",
  35619. height: math.unit(10, "miles")
  35620. },
  35621. {
  35622. name: "Continental",
  35623. height: math.unit(5000, "miles")
  35624. },
  35625. {
  35626. name: "Final Form",
  35627. height: math.unit(2500000, "miles")
  35628. },
  35629. ]
  35630. ))
  35631. characterMakers.push(() => makeCharacter(
  35632. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35633. {
  35634. front: {
  35635. height: math.unit(7 + 2/12, "feet"),
  35636. weight: math.unit(230, "kg"),
  35637. name: "Front",
  35638. image: {
  35639. source: "./media/characters/tatyana-milewska/front.svg",
  35640. extra: 1199/1150,
  35641. bottom: 86/1285
  35642. }
  35643. },
  35644. },
  35645. [
  35646. {
  35647. name: "Normal",
  35648. height: math.unit(7 + 2/12, "feet"),
  35649. default: true
  35650. },
  35651. {
  35652. name: "Big",
  35653. height: math.unit(12, "feet")
  35654. },
  35655. {
  35656. name: "Minimacro",
  35657. height: math.unit(20, "feet")
  35658. },
  35659. {
  35660. name: "Macro",
  35661. height: math.unit(120, "feet")
  35662. },
  35663. ]
  35664. ))
  35665. characterMakers.push(() => makeCharacter(
  35666. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35667. {
  35668. front: {
  35669. height: math.unit(7 + 8/12, "feet"),
  35670. weight: math.unit(152, "kg"),
  35671. name: "Front",
  35672. image: {
  35673. source: "./media/characters/helen-arri/front.svg",
  35674. extra: 440/423,
  35675. bottom: 14/454
  35676. }
  35677. },
  35678. back: {
  35679. height: math.unit(7 + 8/12, "feet"),
  35680. weight: math.unit(152, "kg"),
  35681. name: "Back",
  35682. image: {
  35683. source: "./media/characters/helen-arri/back.svg",
  35684. extra: 443/426,
  35685. bottom: 8/451
  35686. }
  35687. },
  35688. },
  35689. [
  35690. {
  35691. name: "Normal",
  35692. height: math.unit(7 + 8/12, "feet"),
  35693. default: true
  35694. },
  35695. {
  35696. name: "Big",
  35697. height: math.unit(14, "feet")
  35698. },
  35699. {
  35700. name: "Minimacro",
  35701. height: math.unit(24, "feet")
  35702. },
  35703. {
  35704. name: "Macro",
  35705. height: math.unit(140, "feet")
  35706. },
  35707. ]
  35708. ))
  35709. characterMakers.push(() => makeCharacter(
  35710. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35711. {
  35712. front: {
  35713. height: math.unit(6, "meters"),
  35714. name: "Front",
  35715. image: {
  35716. source: "./media/characters/ehanu-rehu/front.svg",
  35717. extra: 1800/1800,
  35718. bottom: 59/1859
  35719. }
  35720. },
  35721. },
  35722. [
  35723. {
  35724. name: "Normal",
  35725. height: math.unit(6, "meters"),
  35726. default: true
  35727. },
  35728. ]
  35729. ))
  35730. characterMakers.push(() => makeCharacter(
  35731. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35732. {
  35733. front: {
  35734. height: math.unit(7 + 3/12, "feet"),
  35735. name: "Front",
  35736. image: {
  35737. source: "./media/characters/renholder/front.svg",
  35738. extra: 3096/2960,
  35739. bottom: 250/3346
  35740. }
  35741. },
  35742. },
  35743. [
  35744. {
  35745. name: "Normal Bat",
  35746. height: math.unit(7 + 3/12, "feet"),
  35747. default: true
  35748. },
  35749. {
  35750. name: "Slightly Tall Bat",
  35751. height: math.unit(100, "feet")
  35752. },
  35753. {
  35754. name: "Big Bat",
  35755. height: math.unit(1000, "feet")
  35756. },
  35757. {
  35758. name: "City-Sized Bat",
  35759. height: math.unit(200000, "feet")
  35760. },
  35761. {
  35762. name: "Bigger Bat",
  35763. height: math.unit(10000, "miles")
  35764. },
  35765. {
  35766. name: "Solar Sized Bat",
  35767. height: math.unit(100, "AU")
  35768. },
  35769. {
  35770. name: "Galactic Bat",
  35771. height: math.unit(200000, "lightyears")
  35772. },
  35773. {
  35774. name: "Universally Known Bat",
  35775. height: math.unit(1, "universe")
  35776. },
  35777. ]
  35778. ))
  35779. characterMakers.push(() => makeCharacter(
  35780. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35781. {
  35782. front: {
  35783. height: math.unit(6 + 11/12, "feet"),
  35784. weight: math.unit(250, "lb"),
  35785. name: "Front",
  35786. image: {
  35787. source: "./media/characters/cookiecat/front.svg",
  35788. extra: 893/827,
  35789. bottom: 14/907
  35790. }
  35791. },
  35792. },
  35793. [
  35794. {
  35795. name: "Micro",
  35796. height: math.unit(3, "inches")
  35797. },
  35798. {
  35799. name: "Normal",
  35800. height: math.unit(6 + 11/12, "feet"),
  35801. default: true
  35802. },
  35803. {
  35804. name: "Macro",
  35805. height: math.unit(100, "feet")
  35806. },
  35807. {
  35808. name: "Macro+",
  35809. height: math.unit(404, "feet")
  35810. },
  35811. {
  35812. name: "Megamacro",
  35813. height: math.unit(165, "miles")
  35814. },
  35815. {
  35816. name: "Planetary",
  35817. height: math.unit(4600, "miles")
  35818. },
  35819. ]
  35820. ))
  35821. characterMakers.push(() => makeCharacter(
  35822. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35823. {
  35824. front: {
  35825. height: math.unit(10 + 3/12, "feet"),
  35826. weight: math.unit(1500, "lb"),
  35827. name: "Front",
  35828. image: {
  35829. source: "./media/characters/tux-kusanagi/front.svg",
  35830. extra: 944/840,
  35831. bottom: 39/983
  35832. }
  35833. },
  35834. back: {
  35835. height: math.unit(10 + 3/12, "feet"),
  35836. weight: math.unit(1500, "lb"),
  35837. name: "Back",
  35838. image: {
  35839. source: "./media/characters/tux-kusanagi/back.svg",
  35840. extra: 941/842,
  35841. bottom: 28/969
  35842. }
  35843. },
  35844. rump: {
  35845. height: math.unit(5.25, "feet"),
  35846. name: "Rump",
  35847. image: {
  35848. source: "./media/characters/tux-kusanagi/rump.svg"
  35849. }
  35850. },
  35851. beak: {
  35852. height: math.unit(1.54, "feet"),
  35853. name: "Beak",
  35854. image: {
  35855. source: "./media/characters/tux-kusanagi/beak.svg"
  35856. }
  35857. },
  35858. },
  35859. [
  35860. {
  35861. name: "Normal",
  35862. height: math.unit(10 + 3/12, "feet"),
  35863. default: true
  35864. },
  35865. ]
  35866. ))
  35867. characterMakers.push(() => makeCharacter(
  35868. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35869. {
  35870. front: {
  35871. height: math.unit(58, "feet"),
  35872. weight: math.unit(200, "tons"),
  35873. name: "Front",
  35874. image: {
  35875. source: "./media/characters/uzarmazari/front.svg",
  35876. extra: 1575/1455,
  35877. bottom: 152/1727
  35878. }
  35879. },
  35880. back: {
  35881. height: math.unit(58, "feet"),
  35882. weight: math.unit(200, "tons"),
  35883. name: "Back",
  35884. image: {
  35885. source: "./media/characters/uzarmazari/back.svg",
  35886. extra: 1585/1510,
  35887. bottom: 157/1742
  35888. }
  35889. },
  35890. head: {
  35891. height: math.unit(26, "feet"),
  35892. name: "Head",
  35893. image: {
  35894. source: "./media/characters/uzarmazari/head.svg"
  35895. }
  35896. },
  35897. },
  35898. [
  35899. {
  35900. name: "Normal",
  35901. height: math.unit(58, "feet"),
  35902. default: true
  35903. },
  35904. ]
  35905. ))
  35906. characterMakers.push(() => makeCharacter(
  35907. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35908. {
  35909. side: {
  35910. height: math.unit(15, "feet"),
  35911. name: "Side",
  35912. image: {
  35913. source: "./media/characters/akitu/side.svg",
  35914. extra: 1421/1321,
  35915. bottom: 157/1578
  35916. }
  35917. },
  35918. front: {
  35919. height: math.unit(15, "feet"),
  35920. name: "Front",
  35921. image: {
  35922. source: "./media/characters/akitu/front.svg",
  35923. extra: 1435/1326,
  35924. bottom: 232/1667
  35925. }
  35926. },
  35927. },
  35928. [
  35929. {
  35930. name: "Normal",
  35931. height: math.unit(15, "feet"),
  35932. default: true
  35933. },
  35934. ]
  35935. ))
  35936. characterMakers.push(() => makeCharacter(
  35937. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35938. {
  35939. front: {
  35940. height: math.unit(10 + 8/12, "feet"),
  35941. name: "Front",
  35942. image: {
  35943. source: "./media/characters/azalie-croixland/front.svg",
  35944. extra: 1972/1856,
  35945. bottom: 31/2003
  35946. }
  35947. },
  35948. },
  35949. [
  35950. {
  35951. name: "Original Height",
  35952. height: math.unit(5 + 4/12, "feet")
  35953. },
  35954. {
  35955. name: "Normal Height",
  35956. height: math.unit(10 + 8/12, "feet"),
  35957. default: true
  35958. },
  35959. ]
  35960. ))
  35961. characterMakers.push(() => makeCharacter(
  35962. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35963. {
  35964. side: {
  35965. height: math.unit(7 + 1/12, "feet"),
  35966. weight: math.unit(245, "lb"),
  35967. name: "Side",
  35968. image: {
  35969. source: "./media/characters/kavus-kazian/side.svg",
  35970. extra: 349/342,
  35971. bottom: 15/364
  35972. }
  35973. },
  35974. },
  35975. [
  35976. {
  35977. name: "Normal",
  35978. height: math.unit(7 + 1/12, "feet"),
  35979. default: true
  35980. },
  35981. ]
  35982. ))
  35983. characterMakers.push(() => makeCharacter(
  35984. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35985. {
  35986. normalFront: {
  35987. height: math.unit(5 + 11/12, "feet"),
  35988. name: "Front",
  35989. image: {
  35990. source: "./media/characters/moonlight-rose/normal-front.svg",
  35991. extra: 1980/1825,
  35992. bottom: 18/1998
  35993. },
  35994. form: "normal",
  35995. default: true
  35996. },
  35997. normalBack: {
  35998. height: math.unit(5 + 11/12, "feet"),
  35999. name: "Back",
  36000. image: {
  36001. source: "./media/characters/moonlight-rose/normal-back.svg",
  36002. extra: 2010/1839,
  36003. bottom: 10/2020
  36004. },
  36005. form: "normal"
  36006. },
  36007. demonFront: {
  36008. height: math.unit(1.5, "earths"),
  36009. name: "Front",
  36010. image: {
  36011. source: "./media/characters/moonlight-rose/demon.svg",
  36012. extra: 1400/1294,
  36013. bottom: 45/1445
  36014. },
  36015. form: "demon",
  36016. default: true
  36017. },
  36018. terraFront: {
  36019. height: math.unit(1.5, "earths"),
  36020. name: "Front",
  36021. image: {
  36022. source: "./media/characters/moonlight-rose/terra.svg"
  36023. },
  36024. form: "terra",
  36025. default: true
  36026. },
  36027. jupiterFront: {
  36028. height: math.unit(69911*2, "km"),
  36029. name: "Front",
  36030. image: {
  36031. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36032. extra: 1367/1286,
  36033. bottom: 55/1422
  36034. },
  36035. form: "jupiter",
  36036. default: true
  36037. },
  36038. neptuneFront: {
  36039. height: math.unit(24622*2, "feet"),
  36040. name: "Front",
  36041. image: {
  36042. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36043. extra: 1851/1712,
  36044. bottom: 0/1851
  36045. },
  36046. form: "neptune",
  36047. default: true
  36048. },
  36049. },
  36050. [
  36051. {
  36052. name: "\"Natural\" Height",
  36053. height: math.unit(5 + 11/12, "feet"),
  36054. form: "normal"
  36055. },
  36056. {
  36057. name: "Smallest comfortable size",
  36058. height: math.unit(40, "meters"),
  36059. form: "normal"
  36060. },
  36061. {
  36062. name: "Common size",
  36063. height: math.unit(50, "km"),
  36064. form: "normal",
  36065. default: true
  36066. },
  36067. {
  36068. name: "Normal",
  36069. height: math.unit(1.5, "earths"),
  36070. form: "demon",
  36071. default: true
  36072. },
  36073. {
  36074. name: "Universal",
  36075. height: math.unit(15, "universes"),
  36076. form: "demon"
  36077. },
  36078. {
  36079. name: "Earth",
  36080. height: math.unit(1.5, "earths"),
  36081. form: "terra",
  36082. default: true
  36083. },
  36084. {
  36085. name: "Super Earth",
  36086. height: math.unit(67.5, "earths"),
  36087. form: "terra"
  36088. },
  36089. {
  36090. name: "Doesn't fit in a solar system...",
  36091. height: math.unit(1, "galaxy"),
  36092. form: "terra"
  36093. },
  36094. {
  36095. name: "Saturn",
  36096. height: math.unit(58232*2, "km"),
  36097. form: "jupiter"
  36098. },
  36099. {
  36100. name: "Jupiter",
  36101. height: math.unit(69911*2, "km"),
  36102. form: "jupiter",
  36103. default: true
  36104. },
  36105. {
  36106. name: "HD 100546 b",
  36107. height: math.unit(482938, "km"),
  36108. form: "jupiter"
  36109. },
  36110. {
  36111. name: "Enceladus",
  36112. height: math.unit(513*2, "km"),
  36113. form: "neptune"
  36114. },
  36115. {
  36116. name: "Europe",
  36117. height: math.unit(1560*2, "km"),
  36118. form: "neptune"
  36119. },
  36120. {
  36121. name: "Neptune",
  36122. height: math.unit(24622*2, "km"),
  36123. form: "neptune",
  36124. default: true
  36125. },
  36126. {
  36127. name: "CoRoT-9b",
  36128. height: math.unit(75067*2, "km"),
  36129. form: "neptune"
  36130. },
  36131. ],
  36132. {
  36133. "normal": {
  36134. name: "Normal",
  36135. default: true
  36136. },
  36137. "demon": {
  36138. name: "Demon"
  36139. },
  36140. "terra": {
  36141. name: "Terra"
  36142. },
  36143. "jupiter": {
  36144. name: "Jupiter"
  36145. },
  36146. "neptune": {
  36147. name: "Neptune"
  36148. }
  36149. }
  36150. ))
  36151. characterMakers.push(() => makeCharacter(
  36152. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36153. {
  36154. front: {
  36155. height: math.unit(16, "feet"),
  36156. weight: math.unit(610, "kg"),
  36157. name: "Front",
  36158. image: {
  36159. source: "./media/characters/huckle/front.svg",
  36160. extra: 1731/1625,
  36161. bottom: 33/1764
  36162. }
  36163. },
  36164. back: {
  36165. height: math.unit(16, "feet"),
  36166. weight: math.unit(610, "kg"),
  36167. name: "Back",
  36168. image: {
  36169. source: "./media/characters/huckle/back.svg",
  36170. extra: 1738/1651,
  36171. bottom: 37/1775
  36172. }
  36173. },
  36174. laughing: {
  36175. height: math.unit(3.75, "feet"),
  36176. name: "Laughing",
  36177. image: {
  36178. source: "./media/characters/huckle/laughing.svg"
  36179. }
  36180. },
  36181. angry: {
  36182. height: math.unit(4.15, "feet"),
  36183. name: "Angry",
  36184. image: {
  36185. source: "./media/characters/huckle/angry.svg"
  36186. }
  36187. },
  36188. },
  36189. [
  36190. {
  36191. name: "Normal",
  36192. height: math.unit(16, "feet"),
  36193. default: true
  36194. },
  36195. {
  36196. name: "Mini Macro",
  36197. height: math.unit(463, "feet")
  36198. },
  36199. {
  36200. name: "Macro",
  36201. height: math.unit(1680, "meters")
  36202. },
  36203. {
  36204. name: "Mega Macro",
  36205. height: math.unit(175, "km")
  36206. },
  36207. {
  36208. name: "Terra Macro",
  36209. height: math.unit(32, "gigameters")
  36210. },
  36211. {
  36212. name: "Multiverse+",
  36213. height: math.unit(2.56e23, "yottameters")
  36214. },
  36215. ]
  36216. ))
  36217. characterMakers.push(() => makeCharacter(
  36218. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36219. {
  36220. front: {
  36221. height: math.unit(6 + 9/12, "feet"),
  36222. weight: math.unit(280, "lb"),
  36223. name: "Front",
  36224. image: {
  36225. source: "./media/characters/candy/front.svg",
  36226. extra: 234/217,
  36227. bottom: 11/245
  36228. }
  36229. },
  36230. },
  36231. [
  36232. {
  36233. name: "Really Small",
  36234. height: math.unit(0.1, "nm")
  36235. },
  36236. {
  36237. name: "Micro",
  36238. height: math.unit(2, "inches")
  36239. },
  36240. {
  36241. name: "Normal",
  36242. height: math.unit(6 + 9/12, "feet"),
  36243. default: true
  36244. },
  36245. {
  36246. name: "Small Macro",
  36247. height: math.unit(69, "feet")
  36248. },
  36249. {
  36250. name: "Macro",
  36251. height: math.unit(160, "feet")
  36252. },
  36253. {
  36254. name: "Megamacro",
  36255. height: math.unit(22000, "miles")
  36256. },
  36257. {
  36258. name: "Gigamacro",
  36259. height: math.unit(50000, "miles")
  36260. },
  36261. ]
  36262. ))
  36263. characterMakers.push(() => makeCharacter(
  36264. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36265. {
  36266. front: {
  36267. height: math.unit(4, "feet"),
  36268. weight: math.unit(90, "lb"),
  36269. name: "Front",
  36270. image: {
  36271. source: "./media/characters/joey-mcdonald/front.svg",
  36272. extra: 1059/852,
  36273. bottom: 33/1092
  36274. }
  36275. },
  36276. back: {
  36277. height: math.unit(4, "feet"),
  36278. weight: math.unit(90, "lb"),
  36279. name: "Back",
  36280. image: {
  36281. source: "./media/characters/joey-mcdonald/back.svg",
  36282. extra: 1077/879,
  36283. bottom: 5/1082
  36284. }
  36285. },
  36286. frontKobold: {
  36287. height: math.unit(4, "feet"),
  36288. weight: math.unit(100, "lb"),
  36289. name: "Front-kobold",
  36290. image: {
  36291. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36292. extra: 1480/1367,
  36293. bottom: 0/1480
  36294. }
  36295. },
  36296. backKobold: {
  36297. height: math.unit(4, "feet"),
  36298. weight: math.unit(100, "lb"),
  36299. name: "Back-kobold",
  36300. image: {
  36301. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36302. extra: 1449/1361,
  36303. bottom: 0/1449
  36304. }
  36305. },
  36306. },
  36307. [
  36308. {
  36309. name: "Normal",
  36310. height: math.unit(4, "feet"),
  36311. default: true
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36317. {
  36318. front: {
  36319. height: math.unit(12 + 6/12, "feet"),
  36320. name: "Front",
  36321. image: {
  36322. source: "./media/characters/kass-lockheed/front.svg",
  36323. extra: 354/343,
  36324. bottom: 9/363
  36325. }
  36326. },
  36327. back: {
  36328. height: math.unit(12 + 6/12, "feet"),
  36329. name: "Back",
  36330. image: {
  36331. source: "./media/characters/kass-lockheed/back.svg",
  36332. extra: 364/352,
  36333. bottom: 3/367
  36334. }
  36335. },
  36336. dick: {
  36337. height: math.unit(3.12, "feet"),
  36338. name: "Dick",
  36339. image: {
  36340. source: "./media/characters/kass-lockheed/dick.svg"
  36341. }
  36342. },
  36343. head: {
  36344. height: math.unit(2.6, "feet"),
  36345. name: "Head",
  36346. image: {
  36347. source: "./media/characters/kass-lockheed/head.svg"
  36348. }
  36349. },
  36350. bleh: {
  36351. height: math.unit(2.85, "feet"),
  36352. name: "Bleh",
  36353. image: {
  36354. source: "./media/characters/kass-lockheed/bleh.svg"
  36355. }
  36356. },
  36357. smug: {
  36358. height: math.unit(2.85, "feet"),
  36359. name: "Smug",
  36360. image: {
  36361. source: "./media/characters/kass-lockheed/smug.svg"
  36362. }
  36363. },
  36364. },
  36365. [
  36366. {
  36367. name: "Normal",
  36368. height: math.unit(12 + 6/12, "feet"),
  36369. default: true
  36370. },
  36371. ]
  36372. ))
  36373. characterMakers.push(() => makeCharacter(
  36374. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36375. {
  36376. front: {
  36377. height: math.unit(6 + 2/12, "feet"),
  36378. name: "Front",
  36379. image: {
  36380. source: "./media/characters/taylor/front.svg",
  36381. extra: 639/495,
  36382. bottom: 12/651
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Normal",
  36389. height: math.unit(6 + 2/12, "feet"),
  36390. default: true
  36391. },
  36392. {
  36393. name: "Big",
  36394. height: math.unit(15, "feet")
  36395. },
  36396. {
  36397. name: "Lorg",
  36398. height: math.unit(80, "feet")
  36399. },
  36400. {
  36401. name: "Too Lorg",
  36402. height: math.unit(120, "feet")
  36403. },
  36404. ]
  36405. ))
  36406. characterMakers.push(() => makeCharacter(
  36407. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36408. {
  36409. front: {
  36410. height: math.unit(15, "feet"),
  36411. name: "Front",
  36412. image: {
  36413. source: "./media/characters/kaizer/front.svg",
  36414. extra: 1612/1436,
  36415. bottom: 43/1655
  36416. }
  36417. },
  36418. },
  36419. [
  36420. {
  36421. name: "Normal",
  36422. height: math.unit(15, "feet"),
  36423. default: true
  36424. },
  36425. ]
  36426. ))
  36427. characterMakers.push(() => makeCharacter(
  36428. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36429. {
  36430. front: {
  36431. height: math.unit(2, "feet"),
  36432. weight: math.unit(30, "lb"),
  36433. name: "Front",
  36434. image: {
  36435. source: "./media/characters/sandy/front.svg",
  36436. extra: 1439/1307,
  36437. bottom: 194/1633
  36438. }
  36439. },
  36440. },
  36441. [
  36442. {
  36443. name: "Normal",
  36444. height: math.unit(2, "feet"),
  36445. default: true
  36446. },
  36447. ]
  36448. ))
  36449. characterMakers.push(() => makeCharacter(
  36450. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36451. {
  36452. front: {
  36453. height: math.unit(3, "feet"),
  36454. name: "Front",
  36455. image: {
  36456. source: "./media/characters/mellvi/front.svg",
  36457. extra: 1831/1630,
  36458. bottom: 58/1889
  36459. }
  36460. },
  36461. },
  36462. [
  36463. {
  36464. name: "Normal",
  36465. height: math.unit(3, "feet"),
  36466. default: true
  36467. },
  36468. ]
  36469. ))
  36470. characterMakers.push(() => makeCharacter(
  36471. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36472. {
  36473. front: {
  36474. height: math.unit(5 + 11/12, "feet"),
  36475. weight: math.unit(200, "lb"),
  36476. name: "Front",
  36477. image: {
  36478. source: "./media/characters/shirou/front.svg",
  36479. extra: 2491/2383,
  36480. bottom: 189/2680
  36481. }
  36482. },
  36483. back: {
  36484. height: math.unit(5 + 11/12, "feet"),
  36485. weight: math.unit(200, "lb"),
  36486. name: "Back",
  36487. image: {
  36488. source: "./media/characters/shirou/back.svg",
  36489. extra: 2554/2450,
  36490. bottom: 76/2630
  36491. }
  36492. },
  36493. },
  36494. [
  36495. {
  36496. name: "Normal",
  36497. height: math.unit(5 + 11/12, "feet"),
  36498. default: true
  36499. },
  36500. ]
  36501. ))
  36502. characterMakers.push(() => makeCharacter(
  36503. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36504. {
  36505. front: {
  36506. height: math.unit(6 + 3/12, "feet"),
  36507. weight: math.unit(177, "lb"),
  36508. name: "Front",
  36509. image: {
  36510. source: "./media/characters/noryu/front.svg",
  36511. extra: 973/885,
  36512. bottom: 10/983
  36513. }
  36514. },
  36515. },
  36516. [
  36517. {
  36518. name: "Normal",
  36519. height: math.unit(6 + 3/12, "feet"),
  36520. default: true
  36521. },
  36522. ]
  36523. ))
  36524. characterMakers.push(() => makeCharacter(
  36525. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36526. {
  36527. front: {
  36528. height: math.unit(5 + 6/12, "feet"),
  36529. weight: math.unit(170, "lb"),
  36530. name: "Front",
  36531. image: {
  36532. source: "./media/characters/mevolas-rubenido/front.svg",
  36533. extra: 2109/1901,
  36534. bottom: 96/2205
  36535. }
  36536. },
  36537. },
  36538. [
  36539. {
  36540. name: "Normal",
  36541. height: math.unit(5 + 6/12, "feet"),
  36542. default: true
  36543. },
  36544. ]
  36545. ))
  36546. characterMakers.push(() => makeCharacter(
  36547. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36548. {
  36549. front: {
  36550. height: math.unit(100, "feet"),
  36551. name: "Front",
  36552. image: {
  36553. source: "./media/characters/dee/front.svg",
  36554. extra: 2153/2036,
  36555. bottom: 59/2212
  36556. }
  36557. },
  36558. back: {
  36559. height: math.unit(100, "feet"),
  36560. name: "Back",
  36561. image: {
  36562. source: "./media/characters/dee/back.svg",
  36563. extra: 2183/2058,
  36564. bottom: 75/2258
  36565. }
  36566. },
  36567. foot: {
  36568. height: math.unit(19.43, "feet"),
  36569. name: "Foot",
  36570. image: {
  36571. source: "./media/characters/dee/foot.svg"
  36572. }
  36573. },
  36574. hoof: {
  36575. height: math.unit(20.6, "feet"),
  36576. name: "Hoof",
  36577. image: {
  36578. source: "./media/characters/dee/hoof.svg"
  36579. }
  36580. },
  36581. },
  36582. [
  36583. {
  36584. name: "Macro",
  36585. height: math.unit(100, "feet"),
  36586. default: true
  36587. },
  36588. ]
  36589. ))
  36590. characterMakers.push(() => makeCharacter(
  36591. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36592. {
  36593. front: {
  36594. height: math.unit(5 + 6/12, "feet"),
  36595. name: "Front",
  36596. image: {
  36597. source: "./media/characters/teh/front.svg",
  36598. extra: 1002/847,
  36599. bottom: 62/1064
  36600. }
  36601. },
  36602. },
  36603. [
  36604. {
  36605. name: "Normal",
  36606. height: math.unit(5 + 6/12, "feet"),
  36607. default: true
  36608. },
  36609. ]
  36610. ))
  36611. characterMakers.push(() => makeCharacter(
  36612. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36613. {
  36614. side: {
  36615. height: math.unit(6 + 1/12, "feet"),
  36616. weight: math.unit(204, "lb"),
  36617. name: "Side",
  36618. image: {
  36619. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36620. extra: 974/775,
  36621. bottom: 169/1143
  36622. }
  36623. },
  36624. sitting: {
  36625. height: math.unit(6 + 2/12, "feet"),
  36626. weight: math.unit(204, "lb"),
  36627. name: "Sitting",
  36628. image: {
  36629. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36630. extra: 1175/964,
  36631. bottom: 378/1553
  36632. }
  36633. },
  36634. },
  36635. [
  36636. {
  36637. name: "Normal",
  36638. height: math.unit(6 + 1/12, "feet"),
  36639. default: true
  36640. },
  36641. ]
  36642. ))
  36643. characterMakers.push(() => makeCharacter(
  36644. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36645. {
  36646. front: {
  36647. height: math.unit(6, "inches"),
  36648. name: "Front",
  36649. image: {
  36650. source: "./media/characters/tululi/front.svg",
  36651. extra: 1997/1876,
  36652. bottom: 20/2017
  36653. }
  36654. },
  36655. },
  36656. [
  36657. {
  36658. name: "Normal",
  36659. height: math.unit(6, "inches"),
  36660. default: true
  36661. },
  36662. ]
  36663. ))
  36664. characterMakers.push(() => makeCharacter(
  36665. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36666. {
  36667. front: {
  36668. height: math.unit(4 + 1/12, "feet"),
  36669. name: "Front",
  36670. image: {
  36671. source: "./media/characters/star/front.svg",
  36672. extra: 1493/1189,
  36673. bottom: 48/1541
  36674. }
  36675. },
  36676. },
  36677. [
  36678. {
  36679. name: "Normal",
  36680. height: math.unit(4 + 1/12, "feet"),
  36681. default: true
  36682. },
  36683. ]
  36684. ))
  36685. characterMakers.push(() => makeCharacter(
  36686. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36687. {
  36688. front: {
  36689. height: math.unit(6 + 3/12, "feet"),
  36690. name: "Front",
  36691. image: {
  36692. source: "./media/characters/comet/front.svg",
  36693. extra: 1681/1462,
  36694. bottom: 26/1707
  36695. }
  36696. },
  36697. },
  36698. [
  36699. {
  36700. name: "Normal",
  36701. height: math.unit(6 + 3/12, "feet"),
  36702. default: true
  36703. },
  36704. ]
  36705. ))
  36706. characterMakers.push(() => makeCharacter(
  36707. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36708. {
  36709. front: {
  36710. height: math.unit(950, "feet"),
  36711. name: "Front",
  36712. image: {
  36713. source: "./media/characters/vortex/front.svg",
  36714. extra: 1497/1434,
  36715. bottom: 56/1553
  36716. }
  36717. },
  36718. maw: {
  36719. height: math.unit(285, "feet"),
  36720. name: "Maw",
  36721. image: {
  36722. source: "./media/characters/vortex/maw.svg"
  36723. }
  36724. },
  36725. },
  36726. [
  36727. {
  36728. name: "Macro",
  36729. height: math.unit(950, "feet"),
  36730. default: true
  36731. },
  36732. ]
  36733. ))
  36734. characterMakers.push(() => makeCharacter(
  36735. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36736. {
  36737. front: {
  36738. height: math.unit(600, "feet"),
  36739. weight: math.unit(0.02, "grams"),
  36740. name: "Front",
  36741. image: {
  36742. source: "./media/characters/doodle/front.svg",
  36743. extra: 1578/1413,
  36744. bottom: 37/1615
  36745. }
  36746. },
  36747. },
  36748. [
  36749. {
  36750. name: "Macro",
  36751. height: math.unit(600, "feet"),
  36752. default: true
  36753. },
  36754. ]
  36755. ))
  36756. characterMakers.push(() => makeCharacter(
  36757. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36758. {
  36759. front: {
  36760. height: math.unit(6 + 6/12, "feet"),
  36761. name: "Front",
  36762. image: {
  36763. source: "./media/characters/jai/front.svg",
  36764. extra: 1645/1534,
  36765. bottom: 115/1760
  36766. }
  36767. },
  36768. },
  36769. [
  36770. {
  36771. name: "Normal",
  36772. height: math.unit(6 + 6/12, "feet"),
  36773. default: true
  36774. },
  36775. ]
  36776. ))
  36777. characterMakers.push(() => makeCharacter(
  36778. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36779. {
  36780. front: {
  36781. height: math.unit(6 + 8/12, "feet"),
  36782. name: "Front",
  36783. image: {
  36784. source: "./media/characters/pixel/front.svg",
  36785. extra: 1900/1735,
  36786. bottom: 63/1963
  36787. }
  36788. },
  36789. },
  36790. [
  36791. {
  36792. name: "Normal",
  36793. height: math.unit(6 + 8/12, "feet"),
  36794. default: true
  36795. },
  36796. ]
  36797. ))
  36798. characterMakers.push(() => makeCharacter(
  36799. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36800. {
  36801. back: {
  36802. height: math.unit(4 + 1/12, "feet"),
  36803. weight: math.unit(75, "lb"),
  36804. name: "Back",
  36805. image: {
  36806. source: "./media/characters/rhett/back.svg",
  36807. extra: 930/878,
  36808. bottom: 25/955
  36809. }
  36810. },
  36811. front: {
  36812. height: math.unit(4 + 1/12, "feet"),
  36813. weight: math.unit(75, "lb"),
  36814. name: "Front",
  36815. image: {
  36816. source: "./media/characters/rhett/front.svg",
  36817. extra: 1682/1586,
  36818. bottom: 92/1774
  36819. }
  36820. },
  36821. },
  36822. [
  36823. {
  36824. name: "Micro",
  36825. height: math.unit(8, "inches")
  36826. },
  36827. {
  36828. name: "Tiny",
  36829. height: math.unit(2, "feet")
  36830. },
  36831. {
  36832. name: "Normal",
  36833. height: math.unit(4 + 1/12, "feet"),
  36834. default: true
  36835. },
  36836. ]
  36837. ))
  36838. characterMakers.push(() => makeCharacter(
  36839. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36840. {
  36841. front: {
  36842. height: math.unit(3 + 3/12, "feet"),
  36843. name: "Front",
  36844. image: {
  36845. source: "./media/characters/penny/front.svg",
  36846. extra: 1406/1311,
  36847. bottom: 26/1432
  36848. }
  36849. },
  36850. },
  36851. [
  36852. {
  36853. name: "Normal",
  36854. height: math.unit(3 + 3/12, "feet"),
  36855. default: true
  36856. },
  36857. ]
  36858. ))
  36859. characterMakers.push(() => makeCharacter(
  36860. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36861. {
  36862. front: {
  36863. height: math.unit(4 + 11/12, "feet"),
  36864. name: "Front",
  36865. image: {
  36866. source: "./media/characters/monty/front.svg",
  36867. extra: 1479/1209,
  36868. bottom: 0/1479
  36869. }
  36870. },
  36871. },
  36872. [
  36873. {
  36874. name: "Normal",
  36875. height: math.unit(4 + 11/12, "feet"),
  36876. default: true
  36877. },
  36878. ]
  36879. ))
  36880. characterMakers.push(() => makeCharacter(
  36881. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36882. {
  36883. front: {
  36884. height: math.unit(8 + 4/12, "feet"),
  36885. name: "Front",
  36886. image: {
  36887. source: "./media/characters/sterling/front.svg",
  36888. extra: 1420/1236,
  36889. bottom: 27/1447
  36890. }
  36891. },
  36892. },
  36893. [
  36894. {
  36895. name: "Normal",
  36896. height: math.unit(8 + 4/12, "feet"),
  36897. default: true
  36898. },
  36899. ]
  36900. ))
  36901. characterMakers.push(() => makeCharacter(
  36902. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36903. {
  36904. front: {
  36905. height: math.unit(15, "feet"),
  36906. name: "Front",
  36907. image: {
  36908. source: "./media/characters/marble/front.svg",
  36909. extra: 973/937,
  36910. bottom: 32/1005
  36911. }
  36912. },
  36913. },
  36914. [
  36915. {
  36916. name: "Normal",
  36917. height: math.unit(15, "feet"),
  36918. default: true
  36919. },
  36920. ]
  36921. ))
  36922. characterMakers.push(() => makeCharacter(
  36923. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36924. {
  36925. front: {
  36926. height: math.unit(3, "inches"),
  36927. name: "Front",
  36928. image: {
  36929. source: "./media/characters/powder/front.svg",
  36930. extra: 1504/1334,
  36931. bottom: 518/2022
  36932. }
  36933. },
  36934. },
  36935. [
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(3, "inches"),
  36939. default: true
  36940. },
  36941. ]
  36942. ))
  36943. characterMakers.push(() => makeCharacter(
  36944. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36945. {
  36946. front: {
  36947. height: math.unit(4 + 5/12, "feet"),
  36948. name: "Front",
  36949. image: {
  36950. source: "./media/characters/joey-raccoon/front.svg",
  36951. extra: 1273/1197,
  36952. bottom: 0/1273
  36953. }
  36954. },
  36955. },
  36956. [
  36957. {
  36958. name: "Normal",
  36959. height: math.unit(4 + 5/12, "feet"),
  36960. default: true
  36961. },
  36962. ]
  36963. ))
  36964. characterMakers.push(() => makeCharacter(
  36965. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36966. {
  36967. front: {
  36968. height: math.unit(8 + 4/12, "feet"),
  36969. name: "Front",
  36970. image: {
  36971. source: "./media/characters/vick/front.svg",
  36972. extra: 2187/2118,
  36973. bottom: 47/2234
  36974. }
  36975. },
  36976. },
  36977. [
  36978. {
  36979. name: "Normal",
  36980. height: math.unit(8 + 4/12, "feet"),
  36981. default: true
  36982. },
  36983. ]
  36984. ))
  36985. characterMakers.push(() => makeCharacter(
  36986. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36987. {
  36988. front: {
  36989. height: math.unit(5 + 5/12, "feet"),
  36990. name: "Front",
  36991. image: {
  36992. source: "./media/characters/mitsy/front.svg",
  36993. extra: 1842/1695,
  36994. bottom: 0/1842
  36995. }
  36996. },
  36997. },
  36998. [
  36999. {
  37000. name: "Normal",
  37001. height: math.unit(5 + 5/12, "feet"),
  37002. default: true
  37003. },
  37004. ]
  37005. ))
  37006. characterMakers.push(() => makeCharacter(
  37007. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37008. {
  37009. front: {
  37010. height: math.unit(6 + 3/12, "feet"),
  37011. name: "Front",
  37012. image: {
  37013. source: "./media/characters/silvy/front.svg",
  37014. extra: 1995/1836,
  37015. bottom: 225/2220
  37016. }
  37017. },
  37018. },
  37019. [
  37020. {
  37021. name: "Normal",
  37022. height: math.unit(6 + 3/12, "feet"),
  37023. default: true
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(3 + 8/12, "feet"),
  37032. name: "Front",
  37033. image: {
  37034. source: "./media/characters/rodney/front.svg",
  37035. extra: 1956/1747,
  37036. bottom: 31/1987
  37037. }
  37038. },
  37039. frontDressed: {
  37040. height: math.unit(2.9, "feet"),
  37041. name: "Front (Dressed)",
  37042. image: {
  37043. source: "./media/characters/rodney/front-dressed.svg",
  37044. extra: 1382/1241,
  37045. bottom: 385/1767
  37046. }
  37047. },
  37048. },
  37049. [
  37050. {
  37051. name: "Normal",
  37052. height: math.unit(3 + 8/12, "feet"),
  37053. default: true
  37054. },
  37055. ]
  37056. ))
  37057. characterMakers.push(() => makeCharacter(
  37058. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37059. {
  37060. front: {
  37061. height: math.unit(5 + 9/12, "feet"),
  37062. weight: math.unit(194, "lbs"),
  37063. name: "Front",
  37064. image: {
  37065. source: "./media/characters/zakail-sudekai/front.svg",
  37066. extra: 2696/2533,
  37067. bottom: 248/2944
  37068. }
  37069. },
  37070. maw: {
  37071. height: math.unit(1.35, "feet"),
  37072. name: "Maw",
  37073. image: {
  37074. source: "./media/characters/zakail-sudekai/maw.svg"
  37075. }
  37076. },
  37077. },
  37078. [
  37079. {
  37080. name: "Normal",
  37081. height: math.unit(5 + 9/12, "feet"),
  37082. default: true
  37083. },
  37084. ]
  37085. ))
  37086. characterMakers.push(() => makeCharacter(
  37087. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37088. {
  37089. front: {
  37090. height: math.unit(8 + 4/12, "feet"),
  37091. weight: math.unit(1200, "lb"),
  37092. name: "Front",
  37093. image: {
  37094. source: "./media/characters/eleanor/front.svg",
  37095. extra: 1226/1192,
  37096. bottom: 52/1278
  37097. }
  37098. },
  37099. back: {
  37100. height: math.unit(8 + 4/12, "feet"),
  37101. weight: math.unit(1200, "lb"),
  37102. name: "Back",
  37103. image: {
  37104. source: "./media/characters/eleanor/back.svg",
  37105. extra: 1242/1184,
  37106. bottom: 60/1302
  37107. }
  37108. },
  37109. head: {
  37110. height: math.unit(2.62, "feet"),
  37111. name: "Head",
  37112. image: {
  37113. source: "./media/characters/eleanor/head.svg"
  37114. }
  37115. },
  37116. },
  37117. [
  37118. {
  37119. name: "Normal",
  37120. height: math.unit(8 + 4/12, "feet"),
  37121. default: true
  37122. },
  37123. ]
  37124. ))
  37125. characterMakers.push(() => makeCharacter(
  37126. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37127. {
  37128. front: {
  37129. height: math.unit(8 + 4/12, "feet"),
  37130. weight: math.unit(750, "lb"),
  37131. name: "Front",
  37132. image: {
  37133. source: "./media/characters/tanya/front.svg",
  37134. extra: 1749/1615,
  37135. bottom: 33/1782
  37136. }
  37137. },
  37138. },
  37139. [
  37140. {
  37141. name: "Normal",
  37142. height: math.unit(8 + 4/12, "feet"),
  37143. default: true
  37144. },
  37145. ]
  37146. ))
  37147. characterMakers.push(() => makeCharacter(
  37148. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37149. {
  37150. front: {
  37151. height: math.unit(5, "feet"),
  37152. weight: math.unit(225, "lb"),
  37153. name: "Front",
  37154. image: {
  37155. source: "./media/characters/cindy/front.svg",
  37156. extra: 1320/1250,
  37157. bottom: 42/1362
  37158. }
  37159. },
  37160. frontDressed: {
  37161. height: math.unit(5, "feet"),
  37162. weight: math.unit(225, "lb"),
  37163. name: "Front (Dressed)",
  37164. image: {
  37165. source: "./media/characters/cindy/front-dressed.svg",
  37166. extra: 1320/1250,
  37167. bottom: 42/1362
  37168. }
  37169. },
  37170. back: {
  37171. height: math.unit(5, "feet"),
  37172. weight: math.unit(225, "lb"),
  37173. name: "Back",
  37174. image: {
  37175. source: "./media/characters/cindy/back.svg",
  37176. extra: 1384/1346,
  37177. bottom: 14/1398
  37178. }
  37179. },
  37180. },
  37181. [
  37182. {
  37183. name: "Normal",
  37184. height: math.unit(5, "feet"),
  37185. default: true
  37186. },
  37187. ]
  37188. ))
  37189. characterMakers.push(() => makeCharacter(
  37190. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37191. {
  37192. front: {
  37193. height: math.unit(6 + 9/12, "feet"),
  37194. weight: math.unit(440, "lb"),
  37195. name: "Front",
  37196. image: {
  37197. source: "./media/characters/wilbur-owen/front.svg",
  37198. extra: 1575/1448,
  37199. bottom: 72/1647
  37200. }
  37201. },
  37202. back: {
  37203. height: math.unit(6 + 9/12, "feet"),
  37204. weight: math.unit(440, "lb"),
  37205. name: "Back",
  37206. image: {
  37207. source: "./media/characters/wilbur-owen/back.svg",
  37208. extra: 1578/1445,
  37209. bottom: 36/1614
  37210. }
  37211. },
  37212. },
  37213. [
  37214. {
  37215. name: "Normal",
  37216. height: math.unit(6 + 9/12, "feet"),
  37217. default: true
  37218. },
  37219. ]
  37220. ))
  37221. characterMakers.push(() => makeCharacter(
  37222. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37223. {
  37224. front: {
  37225. height: math.unit(6 + 5/12, "feet"),
  37226. weight: math.unit(650, "lb"),
  37227. name: "Front",
  37228. image: {
  37229. source: "./media/characters/keegan/front.svg",
  37230. extra: 2387/2198,
  37231. bottom: 33/2420
  37232. }
  37233. },
  37234. side: {
  37235. height: math.unit(6 + 5/12, "feet"),
  37236. weight: math.unit(650, "lb"),
  37237. name: "Side",
  37238. image: {
  37239. source: "./media/characters/keegan/side.svg",
  37240. extra: 2390/2202,
  37241. bottom: 47/2437
  37242. }
  37243. },
  37244. back: {
  37245. height: math.unit(6 + 5/12, "feet"),
  37246. weight: math.unit(650, "lb"),
  37247. name: "Back",
  37248. image: {
  37249. source: "./media/characters/keegan/back.svg",
  37250. extra: 2418/2268,
  37251. bottom: 15/2433
  37252. }
  37253. },
  37254. frontSfw: {
  37255. height: math.unit(6 + 5/12, "feet"),
  37256. weight: math.unit(650, "lb"),
  37257. name: "Front (SFW)",
  37258. image: {
  37259. source: "./media/characters/keegan/front-sfw.svg",
  37260. extra: 2387/2198,
  37261. bottom: 33/2420
  37262. }
  37263. },
  37264. beans: {
  37265. height: math.unit(1.85, "feet"),
  37266. name: "Beans",
  37267. image: {
  37268. source: "./media/characters/keegan/beans.svg"
  37269. }
  37270. },
  37271. },
  37272. [
  37273. {
  37274. name: "Normal",
  37275. height: math.unit(6 + 5/12, "feet"),
  37276. default: true
  37277. },
  37278. ]
  37279. ))
  37280. characterMakers.push(() => makeCharacter(
  37281. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37282. {
  37283. front: {
  37284. height: math.unit(9, "feet"),
  37285. name: "Front",
  37286. image: {
  37287. source: "./media/characters/colton/front.svg",
  37288. extra: 1589/1326,
  37289. bottom: 139/1728
  37290. }
  37291. },
  37292. },
  37293. [
  37294. {
  37295. name: "Normal",
  37296. height: math.unit(9, "feet"),
  37297. default: true
  37298. },
  37299. ]
  37300. ))
  37301. characterMakers.push(() => makeCharacter(
  37302. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37303. {
  37304. front: {
  37305. height: math.unit(2 + 9/12, "feet"),
  37306. name: "Front",
  37307. image: {
  37308. source: "./media/characters/bora/front.svg",
  37309. extra: 1265/1250,
  37310. bottom: 24/1289
  37311. }
  37312. },
  37313. },
  37314. [
  37315. {
  37316. name: "Normal",
  37317. height: math.unit(2 + 9/12, "feet"),
  37318. default: true
  37319. },
  37320. ]
  37321. ))
  37322. characterMakers.push(() => makeCharacter(
  37323. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37324. {
  37325. front: {
  37326. height: math.unit(8, "feet"),
  37327. name: "Front",
  37328. image: {
  37329. source: "./media/characters/myu-myu/front.svg",
  37330. extra: 1949/1857,
  37331. bottom: 90/2039
  37332. }
  37333. },
  37334. },
  37335. [
  37336. {
  37337. name: "Normal",
  37338. height: math.unit(8, "feet"),
  37339. default: true
  37340. },
  37341. {
  37342. name: "Big",
  37343. height: math.unit(15, "feet")
  37344. },
  37345. {
  37346. name: "BIG",
  37347. height: math.unit(25, "feet")
  37348. },
  37349. ]
  37350. ))
  37351. characterMakers.push(() => makeCharacter(
  37352. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37353. {
  37354. side: {
  37355. height: math.unit(7 + 5/12, "feet"),
  37356. weight: math.unit(2800, "lb"),
  37357. name: "Side",
  37358. image: {
  37359. source: "./media/characters/haloren/side.svg",
  37360. extra: 1793/409,
  37361. bottom: 59/1852
  37362. }
  37363. },
  37364. frontPaw: {
  37365. height: math.unit(2.36, "feet"),
  37366. name: "Front paw",
  37367. image: {
  37368. source: "./media/characters/haloren/front-paw.svg"
  37369. }
  37370. },
  37371. hindPaw: {
  37372. height: math.unit(3.18, "feet"),
  37373. name: "Hind paw",
  37374. image: {
  37375. source: "./media/characters/haloren/hind-paw.svg"
  37376. }
  37377. },
  37378. maw: {
  37379. height: math.unit(5.05, "feet"),
  37380. name: "Maw",
  37381. image: {
  37382. source: "./media/characters/haloren/maw.svg"
  37383. }
  37384. },
  37385. dick: {
  37386. height: math.unit(2.90, "feet"),
  37387. name: "Dick",
  37388. image: {
  37389. source: "./media/characters/haloren/dick.svg"
  37390. }
  37391. },
  37392. },
  37393. [
  37394. {
  37395. name: "Normal",
  37396. height: math.unit(7 + 5/12, "feet"),
  37397. default: true
  37398. },
  37399. {
  37400. name: "Enhanced",
  37401. height: math.unit(14 + 3/12, "feet")
  37402. },
  37403. ]
  37404. ))
  37405. characterMakers.push(() => makeCharacter(
  37406. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37407. {
  37408. front: {
  37409. height: math.unit(171, "cm"),
  37410. name: "Front",
  37411. image: {
  37412. source: "./media/characters/kimmy/front.svg",
  37413. extra: 1491/1435,
  37414. bottom: 53/1544
  37415. }
  37416. },
  37417. },
  37418. [
  37419. {
  37420. name: "Small",
  37421. height: math.unit(9, "cm")
  37422. },
  37423. {
  37424. name: "Normal",
  37425. height: math.unit(171, "cm"),
  37426. default: true
  37427. },
  37428. ]
  37429. ))
  37430. characterMakers.push(() => makeCharacter(
  37431. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37432. {
  37433. front: {
  37434. height: math.unit(8, "feet"),
  37435. weight: math.unit(300, "lb"),
  37436. name: "Front",
  37437. image: {
  37438. source: "./media/characters/galeboomer/front.svg",
  37439. extra: 4651/4415,
  37440. bottom: 162/4813
  37441. }
  37442. },
  37443. back: {
  37444. height: math.unit(8, "feet"),
  37445. weight: math.unit(300, "lb"),
  37446. name: "Back",
  37447. image: {
  37448. source: "./media/characters/galeboomer/back.svg",
  37449. extra: 4544/4314,
  37450. bottom: 16/4560
  37451. }
  37452. },
  37453. frontAlt: {
  37454. height: math.unit(8, "feet"),
  37455. weight: math.unit(300, "lb"),
  37456. name: "Front (Alt)",
  37457. image: {
  37458. source: "./media/characters/galeboomer/front-alt.svg",
  37459. extra: 4458/4228,
  37460. bottom: 68/4526
  37461. }
  37462. },
  37463. maw: {
  37464. height: math.unit(1.2, "feet"),
  37465. name: "Maw",
  37466. image: {
  37467. source: "./media/characters/galeboomer/maw.svg"
  37468. }
  37469. },
  37470. },
  37471. [
  37472. {
  37473. name: "Normal",
  37474. height: math.unit(8, "feet"),
  37475. default: true
  37476. },
  37477. ]
  37478. ))
  37479. characterMakers.push(() => makeCharacter(
  37480. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37481. {
  37482. front: {
  37483. height: math.unit(5 + 9/12, "feet"),
  37484. weight: math.unit(120, "lb"),
  37485. name: "Front",
  37486. image: {
  37487. source: "./media/characters/chyr/front.svg",
  37488. extra: 1323/1254,
  37489. bottom: 63/1386
  37490. }
  37491. },
  37492. back: {
  37493. height: math.unit(5 + 9/12, "feet"),
  37494. weight: math.unit(120, "lb"),
  37495. name: "Back",
  37496. image: {
  37497. source: "./media/characters/chyr/back.svg",
  37498. extra: 1323/1252,
  37499. bottom: 48/1371
  37500. }
  37501. },
  37502. },
  37503. [
  37504. {
  37505. name: "Normal",
  37506. height: math.unit(5 + 9/12, "feet"),
  37507. default: true
  37508. },
  37509. ]
  37510. ))
  37511. characterMakers.push(() => makeCharacter(
  37512. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37513. {
  37514. front: {
  37515. height: math.unit(7, "feet"),
  37516. weight: math.unit(310, "lb"),
  37517. name: "Front",
  37518. image: {
  37519. source: "./media/characters/solarus/front.svg",
  37520. extra: 2415/2021,
  37521. bottom: 103/2518
  37522. }
  37523. },
  37524. back: {
  37525. height: math.unit(7, "feet"),
  37526. weight: math.unit(310, "lb"),
  37527. name: "Back",
  37528. image: {
  37529. source: "./media/characters/solarus/back.svg",
  37530. extra: 2463/2089,
  37531. bottom: 79/2542
  37532. }
  37533. },
  37534. },
  37535. [
  37536. {
  37537. name: "Normal",
  37538. height: math.unit(7, "feet"),
  37539. default: true
  37540. },
  37541. ]
  37542. ))
  37543. characterMakers.push(() => makeCharacter(
  37544. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37545. {
  37546. front: {
  37547. height: math.unit(16, "feet"),
  37548. name: "Front",
  37549. image: {
  37550. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37551. extra: 1844/1780,
  37552. bottom: 58/1902
  37553. }
  37554. },
  37555. winterCoat: {
  37556. height: math.unit(16, "feet"),
  37557. name: "Winter Coat",
  37558. image: {
  37559. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37560. extra: 1807/1775,
  37561. bottom: 69/1876
  37562. }
  37563. },
  37564. },
  37565. [
  37566. {
  37567. name: "Normal",
  37568. height: math.unit(16, "feet"),
  37569. default: true
  37570. },
  37571. {
  37572. name: "Chicago Size",
  37573. height: math.unit(560, "feet")
  37574. },
  37575. ]
  37576. ))
  37577. characterMakers.push(() => makeCharacter(
  37578. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37579. {
  37580. front: {
  37581. height: math.unit(11 + 6/12, "feet"),
  37582. weight: math.unit(1366, "lb"),
  37583. name: "Front",
  37584. image: {
  37585. source: "./media/characters/lexor/front.svg",
  37586. extra: 1560/1481,
  37587. bottom: 211/1771
  37588. }
  37589. },
  37590. back: {
  37591. height: math.unit(11 + 6/12, "feet"),
  37592. weight: math.unit(1366, "lb"),
  37593. name: "Back",
  37594. image: {
  37595. source: "./media/characters/lexor/back.svg",
  37596. extra: 1614/1533,
  37597. bottom: 76/1690
  37598. }
  37599. },
  37600. maw: {
  37601. height: math.unit(3, "feet"),
  37602. name: "Maw",
  37603. image: {
  37604. source: "./media/characters/lexor/maw.svg"
  37605. }
  37606. },
  37607. dick: {
  37608. height: math.unit(2.59, "feet"),
  37609. name: "Dick",
  37610. image: {
  37611. source: "./media/characters/lexor/dick.svg"
  37612. }
  37613. },
  37614. },
  37615. [
  37616. {
  37617. name: "Normal",
  37618. height: math.unit(11 + 6/12, "feet"),
  37619. default: true
  37620. },
  37621. ]
  37622. ))
  37623. characterMakers.push(() => makeCharacter(
  37624. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37625. {
  37626. front: {
  37627. height: math.unit(5 + 8/12, "feet"),
  37628. name: "Front",
  37629. image: {
  37630. source: "./media/characters/magnum/front.svg",
  37631. extra: 942/855,
  37632. bottom: 26/968
  37633. }
  37634. },
  37635. },
  37636. [
  37637. {
  37638. name: "Normal",
  37639. height: math.unit(5 + 8/12, "feet"),
  37640. default: true
  37641. },
  37642. ]
  37643. ))
  37644. characterMakers.push(() => makeCharacter(
  37645. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37646. {
  37647. front: {
  37648. height: math.unit(18 + 4/12, "feet"),
  37649. weight: math.unit(1500, "kg"),
  37650. name: "Front",
  37651. image: {
  37652. source: "./media/characters/solas-sharpsman/front.svg",
  37653. extra: 1698/1589,
  37654. bottom: 0/1698
  37655. }
  37656. },
  37657. },
  37658. [
  37659. {
  37660. name: "Normal",
  37661. height: math.unit(18 + 4/12, "feet"),
  37662. default: true
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37668. {
  37669. front: {
  37670. height: math.unit(5 + 5/12, "feet"),
  37671. weight: math.unit(180, "lb"),
  37672. name: "Front",
  37673. image: {
  37674. source: "./media/characters/october/front.svg",
  37675. extra: 1800/1650,
  37676. bottom: 0/1800
  37677. }
  37678. },
  37679. frontNsfw: {
  37680. height: math.unit(5 + 5/12, "feet"),
  37681. weight: math.unit(180, "lb"),
  37682. name: "Front (NSFW)",
  37683. image: {
  37684. source: "./media/characters/october/front-nsfw.svg",
  37685. extra: 1392/1307,
  37686. bottom: 42/1434
  37687. }
  37688. },
  37689. },
  37690. [
  37691. {
  37692. name: "Normal",
  37693. height: math.unit(5 + 5/12, "feet"),
  37694. default: true
  37695. },
  37696. ]
  37697. ))
  37698. characterMakers.push(() => makeCharacter(
  37699. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37700. {
  37701. front: {
  37702. height: math.unit(8 + 6/12, "feet"),
  37703. name: "Front",
  37704. image: {
  37705. source: "./media/characters/essynkardi/front.svg",
  37706. extra: 1914/1846,
  37707. bottom: 22/1936
  37708. }
  37709. },
  37710. },
  37711. [
  37712. {
  37713. name: "Normal",
  37714. height: math.unit(8 + 6/12, "feet"),
  37715. default: true
  37716. },
  37717. ]
  37718. ))
  37719. characterMakers.push(() => makeCharacter(
  37720. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37721. {
  37722. front: {
  37723. height: math.unit(6 + 6/12, "feet"),
  37724. weight: math.unit(7, "lb"),
  37725. name: "Front",
  37726. image: {
  37727. source: "./media/characters/icky/front.svg",
  37728. extra: 813/782,
  37729. bottom: 66/879
  37730. }
  37731. },
  37732. back: {
  37733. height: math.unit(6 + 6/12, "feet"),
  37734. weight: math.unit(7, "lb"),
  37735. name: "Back",
  37736. image: {
  37737. source: "./media/characters/icky/back.svg",
  37738. extra: 754/735,
  37739. bottom: 56/810
  37740. }
  37741. },
  37742. },
  37743. [
  37744. {
  37745. name: "Normal",
  37746. height: math.unit(6 + 6/12, "feet"),
  37747. default: true
  37748. },
  37749. ]
  37750. ))
  37751. characterMakers.push(() => makeCharacter(
  37752. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37753. {
  37754. front: {
  37755. height: math.unit(15, "feet"),
  37756. name: "Front",
  37757. image: {
  37758. source: "./media/characters/rojas/front.svg",
  37759. extra: 1462/1408,
  37760. bottom: 95/1557
  37761. }
  37762. },
  37763. back: {
  37764. height: math.unit(15, "feet"),
  37765. name: "Back",
  37766. image: {
  37767. source: "./media/characters/rojas/back.svg",
  37768. extra: 1023/954,
  37769. bottom: 28/1051
  37770. }
  37771. },
  37772. },
  37773. [
  37774. {
  37775. name: "Normal",
  37776. height: math.unit(15, "feet"),
  37777. default: true
  37778. },
  37779. ]
  37780. ))
  37781. characterMakers.push(() => makeCharacter(
  37782. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37783. {
  37784. frontHuman: {
  37785. height: math.unit(5 + 7/12, "feet"),
  37786. name: "Front (Human)",
  37787. image: {
  37788. source: "./media/characters/alek-dryagan/front-human.svg",
  37789. extra: 1687/1667,
  37790. bottom: 69/1756
  37791. }
  37792. },
  37793. backHuman: {
  37794. height: math.unit(5 + 7/12, "feet"),
  37795. name: "Back (Human)",
  37796. image: {
  37797. source: "./media/characters/alek-dryagan/back-human.svg",
  37798. extra: 1670/1649,
  37799. bottom: 65/1735
  37800. }
  37801. },
  37802. frontDemi: {
  37803. height: math.unit(65, "feet"),
  37804. name: "Front (Demi)",
  37805. image: {
  37806. source: "./media/characters/alek-dryagan/front-demi.svg",
  37807. extra: 1669/1642,
  37808. bottom: 49/1718
  37809. }
  37810. },
  37811. backDemi: {
  37812. height: math.unit(65, "feet"),
  37813. name: "Back (Demi)",
  37814. image: {
  37815. source: "./media/characters/alek-dryagan/back-demi.svg",
  37816. extra: 1658/1637,
  37817. bottom: 40/1698
  37818. }
  37819. },
  37820. mawHuman: {
  37821. height: math.unit(0.3, "feet"),
  37822. name: "Maw (Human)",
  37823. image: {
  37824. source: "./media/characters/alek-dryagan/maw-human.svg"
  37825. }
  37826. },
  37827. mawDemi: {
  37828. height: math.unit(3.8, "feet"),
  37829. name: "Maw (Demi)",
  37830. image: {
  37831. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37832. }
  37833. },
  37834. },
  37835. [
  37836. {
  37837. name: "Normal",
  37838. height: math.unit(5 + 7/12, "feet"),
  37839. default: true
  37840. },
  37841. ]
  37842. ))
  37843. characterMakers.push(() => makeCharacter(
  37844. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37845. {
  37846. frontHuman: {
  37847. height: math.unit(5 + 2/12, "feet"),
  37848. name: "Front (Human)",
  37849. image: {
  37850. source: "./media/characters/gen/front-human.svg",
  37851. extra: 1627/1538,
  37852. bottom: 71/1698
  37853. }
  37854. },
  37855. backHuman: {
  37856. height: math.unit(5 + 2/12, "feet"),
  37857. name: "Back (Human)",
  37858. image: {
  37859. source: "./media/characters/gen/back-human.svg",
  37860. extra: 1638/1548,
  37861. bottom: 69/1707
  37862. }
  37863. },
  37864. frontDemi: {
  37865. height: math.unit(5 + 2/12, "feet"),
  37866. name: "Front (Demi)",
  37867. image: {
  37868. source: "./media/characters/gen/front-demi.svg",
  37869. extra: 1627/1538,
  37870. bottom: 71/1698
  37871. }
  37872. },
  37873. backDemi: {
  37874. height: math.unit(5 + 2/12, "feet"),
  37875. name: "Back (Demi)",
  37876. image: {
  37877. source: "./media/characters/gen/back-demi.svg",
  37878. extra: 1638/1548,
  37879. bottom: 69/1707
  37880. }
  37881. },
  37882. },
  37883. [
  37884. {
  37885. name: "Normal",
  37886. height: math.unit(5 + 2/12, "feet"),
  37887. default: true
  37888. },
  37889. ]
  37890. ))
  37891. characterMakers.push(() => makeCharacter(
  37892. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37893. {
  37894. frontImp: {
  37895. height: math.unit(1 + 11/12, "feet"),
  37896. name: "Front (Imp)",
  37897. image: {
  37898. source: "./media/characters/max-kobold/front-imp.svg",
  37899. extra: 1238/1134,
  37900. bottom: 81/1319
  37901. }
  37902. },
  37903. backImp: {
  37904. height: math.unit(1 + 11/12, "feet"),
  37905. name: "Back (Imp)",
  37906. image: {
  37907. source: "./media/characters/max-kobold/back-imp.svg",
  37908. extra: 1334/1175,
  37909. bottom: 34/1368
  37910. }
  37911. },
  37912. frontDemi: {
  37913. height: math.unit(5 + 9/12, "feet"),
  37914. name: "Front (Demi)",
  37915. image: {
  37916. source: "./media/characters/max-kobold/front-demi.svg",
  37917. extra: 1715/1685,
  37918. bottom: 54/1769
  37919. }
  37920. },
  37921. backDemi: {
  37922. height: math.unit(5 + 9/12, "feet"),
  37923. name: "Back (Demi)",
  37924. image: {
  37925. source: "./media/characters/max-kobold/back-demi.svg",
  37926. extra: 1752/1729,
  37927. bottom: 41/1793
  37928. }
  37929. },
  37930. handImp: {
  37931. height: math.unit(0.45, "feet"),
  37932. name: "Hand (Imp)",
  37933. image: {
  37934. source: "./media/characters/max-kobold/hand.svg"
  37935. }
  37936. },
  37937. pawImp: {
  37938. height: math.unit(0.46, "feet"),
  37939. name: "Paw (Imp)",
  37940. image: {
  37941. source: "./media/characters/max-kobold/paw.svg"
  37942. }
  37943. },
  37944. handDemi: {
  37945. height: math.unit(0.80, "feet"),
  37946. name: "Hand (Demi)",
  37947. image: {
  37948. source: "./media/characters/max-kobold/hand.svg"
  37949. }
  37950. },
  37951. pawDemi: {
  37952. height: math.unit(1.1, "feet"),
  37953. name: "Paw (Demi)",
  37954. image: {
  37955. source: "./media/characters/max-kobold/paw.svg"
  37956. }
  37957. },
  37958. headImp: {
  37959. height: math.unit(1.33, "feet"),
  37960. name: "Head (Imp)",
  37961. image: {
  37962. source: "./media/characters/max-kobold/head-imp.svg"
  37963. }
  37964. },
  37965. mawImp: {
  37966. height: math.unit(0.75, "feet"),
  37967. name: "Maw (Imp)",
  37968. image: {
  37969. source: "./media/characters/max-kobold/maw-imp.svg"
  37970. }
  37971. },
  37972. mawDemi: {
  37973. height: math.unit(0.42, "feet"),
  37974. name: "Maw (Demi)",
  37975. image: {
  37976. source: "./media/characters/max-kobold/maw-demi.svg"
  37977. }
  37978. },
  37979. },
  37980. [
  37981. {
  37982. name: "Normal",
  37983. height: math.unit(1 + 11/12, "feet"),
  37984. default: true
  37985. },
  37986. ]
  37987. ))
  37988. characterMakers.push(() => makeCharacter(
  37989. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37990. {
  37991. front: {
  37992. height: math.unit(7 + 5/12, "feet"),
  37993. name: "Front",
  37994. image: {
  37995. source: "./media/characters/carbon/front.svg",
  37996. extra: 1754/1689,
  37997. bottom: 65/1819
  37998. }
  37999. },
  38000. back: {
  38001. height: math.unit(7 + 5/12, "feet"),
  38002. name: "Back",
  38003. image: {
  38004. source: "./media/characters/carbon/back.svg",
  38005. extra: 1762/1695,
  38006. bottom: 24/1786
  38007. }
  38008. },
  38009. frontGigantamax: {
  38010. height: math.unit(150, "feet"),
  38011. name: "Front (Gigantamax)",
  38012. image: {
  38013. source: "./media/characters/carbon/front-gigantamax.svg",
  38014. extra: 1826/1669,
  38015. bottom: 59/1885
  38016. }
  38017. },
  38018. backGigantamax: {
  38019. height: math.unit(150, "feet"),
  38020. name: "Back (Gigantamax)",
  38021. image: {
  38022. source: "./media/characters/carbon/back-gigantamax.svg",
  38023. extra: 1796/1653,
  38024. bottom: 53/1849
  38025. }
  38026. },
  38027. maw: {
  38028. height: math.unit(0.48, "feet"),
  38029. name: "Maw",
  38030. image: {
  38031. source: "./media/characters/carbon/maw.svg"
  38032. }
  38033. },
  38034. mawGigantamax: {
  38035. height: math.unit(7.5, "feet"),
  38036. name: "Maw (Gigantamax)",
  38037. image: {
  38038. source: "./media/characters/carbon/maw-gigantamax.svg"
  38039. }
  38040. },
  38041. },
  38042. [
  38043. {
  38044. name: "Normal",
  38045. height: math.unit(7 + 5/12, "feet"),
  38046. default: true
  38047. },
  38048. ]
  38049. ))
  38050. characterMakers.push(() => makeCharacter(
  38051. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38052. {
  38053. front: {
  38054. height: math.unit(6, "feet"),
  38055. name: "Front",
  38056. image: {
  38057. source: "./media/characters/maverick/front.svg",
  38058. extra: 1672/1661,
  38059. bottom: 85/1757
  38060. }
  38061. },
  38062. back: {
  38063. height: math.unit(6, "feet"),
  38064. name: "Back",
  38065. image: {
  38066. source: "./media/characters/maverick/back.svg",
  38067. extra: 1642/1631,
  38068. bottom: 38/1680
  38069. }
  38070. },
  38071. },
  38072. [
  38073. {
  38074. name: "Normal",
  38075. height: math.unit(6, "feet"),
  38076. default: true
  38077. },
  38078. ]
  38079. ))
  38080. characterMakers.push(() => makeCharacter(
  38081. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38082. {
  38083. front: {
  38084. height: math.unit(15, "feet"),
  38085. weight: math.unit(615, "lb"),
  38086. name: "Front",
  38087. image: {
  38088. source: "./media/characters/grockle/front.svg",
  38089. extra: 1535/1427,
  38090. bottom: 56/1591
  38091. }
  38092. },
  38093. },
  38094. [
  38095. {
  38096. name: "Normal",
  38097. height: math.unit(15, "feet"),
  38098. default: true
  38099. },
  38100. {
  38101. name: "Large",
  38102. height: math.unit(150, "feet")
  38103. },
  38104. {
  38105. name: "Macro",
  38106. height: math.unit(1876, "feet")
  38107. },
  38108. {
  38109. name: "Mega Macro",
  38110. height: math.unit(121940, "feet")
  38111. },
  38112. {
  38113. name: "Giga Macro",
  38114. height: math.unit(750, "km")
  38115. },
  38116. {
  38117. name: "Tera Macro",
  38118. height: math.unit(750000, "km")
  38119. },
  38120. {
  38121. name: "Galactic",
  38122. height: math.unit(1.4e5, "km")
  38123. },
  38124. {
  38125. name: "Godlike",
  38126. height: math.unit(9.8e280, "galaxies")
  38127. },
  38128. ]
  38129. ))
  38130. characterMakers.push(() => makeCharacter(
  38131. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38132. {
  38133. front: {
  38134. height: math.unit(11, "meters"),
  38135. weight: math.unit(20, "tonnes"),
  38136. name: "Front",
  38137. image: {
  38138. source: "./media/characters/alistair/front.svg",
  38139. extra: 1265/1009,
  38140. bottom: 93/1358
  38141. }
  38142. },
  38143. },
  38144. [
  38145. {
  38146. name: "Normal",
  38147. height: math.unit(11, "meters"),
  38148. default: true
  38149. },
  38150. ]
  38151. ))
  38152. characterMakers.push(() => makeCharacter(
  38153. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38154. {
  38155. front: {
  38156. height: math.unit(5 + 8/12, "feet"),
  38157. name: "Front",
  38158. image: {
  38159. source: "./media/characters/haruka/front.svg",
  38160. extra: 2012/1952,
  38161. bottom: 0/2012
  38162. }
  38163. },
  38164. },
  38165. [
  38166. {
  38167. name: "Normal",
  38168. height: math.unit(5 + 8/12, "feet"),
  38169. default: true
  38170. },
  38171. ]
  38172. ))
  38173. characterMakers.push(() => makeCharacter(
  38174. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38175. {
  38176. back: {
  38177. height: math.unit(9, "feet"),
  38178. name: "Back",
  38179. image: {
  38180. source: "./media/characters/vivian-sylveon/back.svg",
  38181. extra: 1853/1714,
  38182. bottom: 0/1853
  38183. }
  38184. },
  38185. },
  38186. [
  38187. {
  38188. name: "Normal",
  38189. height: math.unit(9, "feet"),
  38190. default: true
  38191. },
  38192. {
  38193. name: "Macro",
  38194. height: math.unit(500, "feet")
  38195. },
  38196. {
  38197. name: "Megamacro",
  38198. height: math.unit(600, "miles")
  38199. },
  38200. {
  38201. name: "Gigamacro",
  38202. height: math.unit(30000, "miles")
  38203. },
  38204. ]
  38205. ))
  38206. characterMakers.push(() => makeCharacter(
  38207. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38208. {
  38209. anthro: {
  38210. height: math.unit(5 + 10/12, "feet"),
  38211. weight: math.unit(100, "lb"),
  38212. name: "Anthro",
  38213. image: {
  38214. source: "./media/characters/daiki/anthro.svg",
  38215. extra: 1115/1027,
  38216. bottom: 69/1184
  38217. }
  38218. },
  38219. feral: {
  38220. height: math.unit(200, "feet"),
  38221. name: "Feral",
  38222. image: {
  38223. source: "./media/characters/daiki/feral.svg",
  38224. extra: 1256/313,
  38225. bottom: 39/1295
  38226. }
  38227. },
  38228. feralHead: {
  38229. height: math.unit(171, "feet"),
  38230. name: "Feral Head",
  38231. image: {
  38232. source: "./media/characters/daiki/feral-head.svg"
  38233. }
  38234. },
  38235. manaDragon: {
  38236. height: math.unit(170, "meters"),
  38237. name: "Mana-dragon",
  38238. image: {
  38239. source: "./media/characters/daiki/mana-dragon.svg",
  38240. extra: 763/420,
  38241. bottom: 97/860
  38242. }
  38243. },
  38244. },
  38245. [
  38246. {
  38247. name: "Normal",
  38248. height: math.unit(5 + 10/12, "feet"),
  38249. default: true
  38250. },
  38251. ]
  38252. ))
  38253. characterMakers.push(() => makeCharacter(
  38254. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38255. {
  38256. fullyEquippedFront: {
  38257. height: math.unit(3 + 1/12, "feet"),
  38258. weight: math.unit(24, "lb"),
  38259. name: "Fully Equipped (Front)",
  38260. image: {
  38261. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38262. extra: 687/605,
  38263. bottom: 18/705
  38264. }
  38265. },
  38266. fullyEquippedBack: {
  38267. height: math.unit(3 + 1/12, "feet"),
  38268. weight: math.unit(24, "lb"),
  38269. name: "Fully Equipped (Back)",
  38270. image: {
  38271. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38272. extra: 689/590,
  38273. bottom: 18/707
  38274. }
  38275. },
  38276. dailyWear: {
  38277. height: math.unit(3 + 1/12, "feet"),
  38278. weight: math.unit(24, "lb"),
  38279. name: "Daily Wear",
  38280. image: {
  38281. source: "./media/characters/tea-spot/daily-wear.svg",
  38282. extra: 701/620,
  38283. bottom: 21/722
  38284. }
  38285. },
  38286. maidWork: {
  38287. height: math.unit(3 + 1/12, "feet"),
  38288. weight: math.unit(24, "lb"),
  38289. name: "Maid Work",
  38290. image: {
  38291. source: "./media/characters/tea-spot/maid-work.svg",
  38292. extra: 693/609,
  38293. bottom: 15/708
  38294. }
  38295. },
  38296. },
  38297. [
  38298. {
  38299. name: "Normal",
  38300. height: math.unit(3 + 1/12, "feet"),
  38301. default: true
  38302. },
  38303. ]
  38304. ))
  38305. characterMakers.push(() => makeCharacter(
  38306. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38307. {
  38308. front: {
  38309. height: math.unit(175, "cm"),
  38310. weight: math.unit(75, "kg"),
  38311. name: "Front",
  38312. image: {
  38313. source: "./media/characters/chee/front.svg",
  38314. extra: 1796/1740,
  38315. bottom: 40/1836
  38316. }
  38317. },
  38318. },
  38319. [
  38320. {
  38321. name: "Micro-Micro",
  38322. height: math.unit(1, "nm")
  38323. },
  38324. {
  38325. name: "Micro-erst",
  38326. height: math.unit(1, "micrometer")
  38327. },
  38328. {
  38329. name: "Micro-er",
  38330. height: math.unit(1, "cm")
  38331. },
  38332. {
  38333. name: "Normal",
  38334. height: math.unit(175, "cm"),
  38335. default: true
  38336. },
  38337. {
  38338. name: "Macro",
  38339. height: math.unit(100, "m")
  38340. },
  38341. {
  38342. name: "Macro-er",
  38343. height: math.unit(1, "km")
  38344. },
  38345. {
  38346. name: "Macro-erst",
  38347. height: math.unit(10, "km")
  38348. },
  38349. {
  38350. name: "Macro-Macro",
  38351. height: math.unit(100, "km")
  38352. },
  38353. ]
  38354. ))
  38355. characterMakers.push(() => makeCharacter(
  38356. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38357. {
  38358. front: {
  38359. height: math.unit(11 + 9/12, "feet"),
  38360. weight: math.unit(935, "lb"),
  38361. name: "Front",
  38362. image: {
  38363. source: "./media/characters/kingsley/front.svg",
  38364. extra: 1803/1674,
  38365. bottom: 127/1930
  38366. }
  38367. },
  38368. frontNude: {
  38369. height: math.unit(11 + 9/12, "feet"),
  38370. weight: math.unit(935, "lb"),
  38371. name: "Front (Nude)",
  38372. image: {
  38373. source: "./media/characters/kingsley/front-nude.svg",
  38374. extra: 1803/1674,
  38375. bottom: 127/1930
  38376. }
  38377. },
  38378. },
  38379. [
  38380. {
  38381. name: "Normal",
  38382. height: math.unit(11 + 9/12, "feet"),
  38383. default: true
  38384. },
  38385. ]
  38386. ))
  38387. characterMakers.push(() => makeCharacter(
  38388. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38389. {
  38390. side: {
  38391. height: math.unit(9, "feet"),
  38392. name: "Side",
  38393. image: {
  38394. source: "./media/characters/rymel/side.svg",
  38395. extra: 792/469,
  38396. bottom: 121/913
  38397. }
  38398. },
  38399. maw: {
  38400. height: math.unit(2.4, "meters"),
  38401. name: "Maw",
  38402. image: {
  38403. source: "./media/characters/rymel/maw.svg"
  38404. }
  38405. },
  38406. },
  38407. [
  38408. {
  38409. name: "House Drake",
  38410. height: math.unit(2, "feet")
  38411. },
  38412. {
  38413. name: "Reduced",
  38414. height: math.unit(4.5, "feet")
  38415. },
  38416. {
  38417. name: "Normal",
  38418. height: math.unit(9, "feet"),
  38419. default: true
  38420. },
  38421. ]
  38422. ))
  38423. characterMakers.push(() => makeCharacter(
  38424. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38425. {
  38426. front: {
  38427. height: math.unit(1.74, "meters"),
  38428. weight: math.unit(55, "kg"),
  38429. name: "Front",
  38430. image: {
  38431. source: "./media/characters/rubus/front.svg",
  38432. extra: 1894/1742,
  38433. bottom: 44/1938
  38434. }
  38435. },
  38436. },
  38437. [
  38438. {
  38439. name: "Normal",
  38440. height: math.unit(1.74, "meters"),
  38441. default: true
  38442. },
  38443. ]
  38444. ))
  38445. characterMakers.push(() => makeCharacter(
  38446. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38447. {
  38448. front: {
  38449. height: math.unit(5 + 2/12, "feet"),
  38450. weight: math.unit(112, "lb"),
  38451. name: "Front",
  38452. image: {
  38453. source: "./media/characters/cassie-kingston/front.svg",
  38454. extra: 1438/1390,
  38455. bottom: 47/1485
  38456. }
  38457. },
  38458. },
  38459. [
  38460. {
  38461. name: "Normal",
  38462. height: math.unit(5 + 2/12, "feet"),
  38463. default: true
  38464. },
  38465. {
  38466. name: "Macro",
  38467. height: math.unit(128, "feet")
  38468. },
  38469. {
  38470. name: "Megamacro",
  38471. height: math.unit(2.56, "miles")
  38472. },
  38473. ]
  38474. ))
  38475. characterMakers.push(() => makeCharacter(
  38476. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38477. {
  38478. front: {
  38479. height: math.unit(7, "feet"),
  38480. name: "Front",
  38481. image: {
  38482. source: "./media/characters/fox/front.svg",
  38483. extra: 1798/1703,
  38484. bottom: 55/1853
  38485. }
  38486. },
  38487. back: {
  38488. height: math.unit(7, "feet"),
  38489. name: "Back",
  38490. image: {
  38491. source: "./media/characters/fox/back.svg",
  38492. extra: 1748/1649,
  38493. bottom: 32/1780
  38494. }
  38495. },
  38496. head: {
  38497. height: math.unit(1.95, "feet"),
  38498. name: "Head",
  38499. image: {
  38500. source: "./media/characters/fox/head.svg"
  38501. }
  38502. },
  38503. dick: {
  38504. height: math.unit(1.33, "feet"),
  38505. name: "Dick",
  38506. image: {
  38507. source: "./media/characters/fox/dick.svg"
  38508. }
  38509. },
  38510. foot: {
  38511. height: math.unit(1, "feet"),
  38512. name: "Foot",
  38513. image: {
  38514. source: "./media/characters/fox/foot.svg"
  38515. }
  38516. },
  38517. paw: {
  38518. height: math.unit(0.92, "feet"),
  38519. name: "Paw",
  38520. image: {
  38521. source: "./media/characters/fox/paw.svg"
  38522. }
  38523. },
  38524. },
  38525. [
  38526. {
  38527. name: "Small",
  38528. height: math.unit(3, "inches")
  38529. },
  38530. {
  38531. name: "\"Realistic\"",
  38532. height: math.unit(7, "feet")
  38533. },
  38534. {
  38535. name: "Normal",
  38536. height: math.unit(150, "feet"),
  38537. default: true
  38538. },
  38539. {
  38540. name: "BIG",
  38541. height: math.unit(1200, "feet")
  38542. },
  38543. {
  38544. name: "👀",
  38545. height: math.unit(5, "miles")
  38546. },
  38547. {
  38548. name: "👀👀👀",
  38549. height: math.unit(64, "miles")
  38550. },
  38551. ]
  38552. ))
  38553. characterMakers.push(() => makeCharacter(
  38554. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38555. {
  38556. front: {
  38557. height: math.unit(625, "feet"),
  38558. name: "Front",
  38559. image: {
  38560. source: "./media/characters/asonja-rossa/front.svg",
  38561. extra: 1833/1686,
  38562. bottom: 24/1857
  38563. }
  38564. },
  38565. back: {
  38566. height: math.unit(625, "feet"),
  38567. name: "Back",
  38568. image: {
  38569. source: "./media/characters/asonja-rossa/back.svg",
  38570. extra: 1852/1753,
  38571. bottom: 26/1878
  38572. }
  38573. },
  38574. },
  38575. [
  38576. {
  38577. name: "Macro",
  38578. height: math.unit(625, "feet"),
  38579. default: true
  38580. },
  38581. ]
  38582. ))
  38583. characterMakers.push(() => makeCharacter(
  38584. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38585. {
  38586. side: {
  38587. height: math.unit(8, "feet"),
  38588. name: "Side",
  38589. image: {
  38590. source: "./media/characters/rezukii/side.svg",
  38591. extra: 979/542,
  38592. bottom: 87/1066
  38593. }
  38594. },
  38595. sitting: {
  38596. height: math.unit(14.6, "feet"),
  38597. name: "Sitting",
  38598. image: {
  38599. source: "./media/characters/rezukii/sitting.svg",
  38600. extra: 1023/813,
  38601. bottom: 45/1068
  38602. }
  38603. },
  38604. },
  38605. [
  38606. {
  38607. name: "Tiny",
  38608. height: math.unit(2, "feet")
  38609. },
  38610. {
  38611. name: "Smol",
  38612. height: math.unit(4, "feet")
  38613. },
  38614. {
  38615. name: "Normal",
  38616. height: math.unit(8, "feet"),
  38617. default: true
  38618. },
  38619. {
  38620. name: "Big",
  38621. height: math.unit(12, "feet")
  38622. },
  38623. {
  38624. name: "Macro",
  38625. height: math.unit(30, "feet")
  38626. },
  38627. ]
  38628. ))
  38629. characterMakers.push(() => makeCharacter(
  38630. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38631. {
  38632. front: {
  38633. height: math.unit(14, "feet"),
  38634. weight: math.unit(9.5, "tonnes"),
  38635. name: "Front",
  38636. image: {
  38637. source: "./media/characters/dawnheart/front.svg",
  38638. extra: 2792/2675,
  38639. bottom: 64/2856
  38640. }
  38641. },
  38642. },
  38643. [
  38644. {
  38645. name: "Normal",
  38646. height: math.unit(14, "feet"),
  38647. default: true
  38648. },
  38649. ]
  38650. ))
  38651. characterMakers.push(() => makeCharacter(
  38652. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38653. {
  38654. front: {
  38655. height: math.unit(1.7, "m"),
  38656. name: "Front",
  38657. image: {
  38658. source: "./media/characters/gladi/front.svg",
  38659. extra: 1460/1362,
  38660. bottom: 19/1479
  38661. }
  38662. },
  38663. back: {
  38664. height: math.unit(1.7, "m"),
  38665. name: "Back",
  38666. image: {
  38667. source: "./media/characters/gladi/back.svg",
  38668. extra: 1459/1357,
  38669. bottom: 12/1471
  38670. }
  38671. },
  38672. feral: {
  38673. height: math.unit(2.05, "m"),
  38674. name: "Feral",
  38675. image: {
  38676. source: "./media/characters/gladi/feral.svg",
  38677. extra: 821/557,
  38678. bottom: 91/912
  38679. }
  38680. },
  38681. },
  38682. [
  38683. {
  38684. name: "Shortest",
  38685. height: math.unit(70, "cm")
  38686. },
  38687. {
  38688. name: "Normal",
  38689. height: math.unit(1.7, "m")
  38690. },
  38691. {
  38692. name: "Macro",
  38693. height: math.unit(10, "m"),
  38694. default: true
  38695. },
  38696. {
  38697. name: "Tallest",
  38698. height: math.unit(200, "m")
  38699. },
  38700. ]
  38701. ))
  38702. characterMakers.push(() => makeCharacter(
  38703. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38704. {
  38705. front: {
  38706. height: math.unit(5 + 7/12, "feet"),
  38707. weight: math.unit(2, "tons"),
  38708. name: "Front",
  38709. image: {
  38710. source: "./media/characters/erdno/front.svg",
  38711. extra: 1234/1129,
  38712. bottom: 35/1269
  38713. }
  38714. },
  38715. angled: {
  38716. height: math.unit(5 + 7/12, "feet"),
  38717. weight: math.unit(2, "tons"),
  38718. name: "Angled",
  38719. image: {
  38720. source: "./media/characters/erdno/angled.svg",
  38721. extra: 1185/1139,
  38722. bottom: 36/1221
  38723. }
  38724. },
  38725. side: {
  38726. height: math.unit(5 + 7/12, "feet"),
  38727. weight: math.unit(2, "tons"),
  38728. name: "Side",
  38729. image: {
  38730. source: "./media/characters/erdno/side.svg",
  38731. extra: 1191/1144,
  38732. bottom: 40/1231
  38733. }
  38734. },
  38735. back: {
  38736. height: math.unit(5 + 7/12, "feet"),
  38737. weight: math.unit(2, "tons"),
  38738. name: "Back",
  38739. image: {
  38740. source: "./media/characters/erdno/back.svg",
  38741. extra: 1202/1146,
  38742. bottom: 17/1219
  38743. }
  38744. },
  38745. frontNsfw: {
  38746. height: math.unit(5 + 7/12, "feet"),
  38747. weight: math.unit(2, "tons"),
  38748. name: "Front (NSFW)",
  38749. image: {
  38750. source: "./media/characters/erdno/front-nsfw.svg",
  38751. extra: 1234/1129,
  38752. bottom: 35/1269
  38753. }
  38754. },
  38755. angledNsfw: {
  38756. height: math.unit(5 + 7/12, "feet"),
  38757. weight: math.unit(2, "tons"),
  38758. name: "Angled (NSFW)",
  38759. image: {
  38760. source: "./media/characters/erdno/angled-nsfw.svg",
  38761. extra: 1185/1139,
  38762. bottom: 36/1221
  38763. }
  38764. },
  38765. sideNsfw: {
  38766. height: math.unit(5 + 7/12, "feet"),
  38767. weight: math.unit(2, "tons"),
  38768. name: "Side (NSFW)",
  38769. image: {
  38770. source: "./media/characters/erdno/side-nsfw.svg",
  38771. extra: 1191/1144,
  38772. bottom: 40/1231
  38773. }
  38774. },
  38775. backNsfw: {
  38776. height: math.unit(5 + 7/12, "feet"),
  38777. weight: math.unit(2, "tons"),
  38778. name: "Back (NSFW)",
  38779. image: {
  38780. source: "./media/characters/erdno/back-nsfw.svg",
  38781. extra: 1202/1146,
  38782. bottom: 17/1219
  38783. }
  38784. },
  38785. frontHyper: {
  38786. height: math.unit(5 + 7/12, "feet"),
  38787. weight: math.unit(2, "tons"),
  38788. name: "Front (Hyper)",
  38789. image: {
  38790. source: "./media/characters/erdno/front-hyper.svg",
  38791. extra: 1298/1136,
  38792. bottom: 35/1333
  38793. }
  38794. },
  38795. },
  38796. [
  38797. {
  38798. name: "Normal",
  38799. height: math.unit(5 + 7/12, "feet"),
  38800. default: true
  38801. },
  38802. {
  38803. name: "Big",
  38804. height: math.unit(5.7, "meters")
  38805. },
  38806. {
  38807. name: "Macro",
  38808. height: math.unit(5.7, "kilometers")
  38809. },
  38810. {
  38811. name: "Megamacro",
  38812. height: math.unit(5.7, "earths")
  38813. },
  38814. ]
  38815. ))
  38816. characterMakers.push(() => makeCharacter(
  38817. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38818. {
  38819. front: {
  38820. height: math.unit(5 + 10/12, "feet"),
  38821. weight: math.unit(150, "lb"),
  38822. name: "Front",
  38823. image: {
  38824. source: "./media/characters/jamie/front.svg",
  38825. extra: 1908/1768,
  38826. bottom: 19/1927
  38827. }
  38828. },
  38829. },
  38830. [
  38831. {
  38832. name: "Minimum",
  38833. height: math.unit(2, "cm")
  38834. },
  38835. {
  38836. name: "Micro",
  38837. height: math.unit(3, "inches")
  38838. },
  38839. {
  38840. name: "Normal",
  38841. height: math.unit(5 + 10/12, "feet"),
  38842. default: true
  38843. },
  38844. {
  38845. name: "Macro",
  38846. height: math.unit(150, "feet")
  38847. },
  38848. {
  38849. name: "Megamacro",
  38850. height: math.unit(10000, "m")
  38851. },
  38852. ]
  38853. ))
  38854. characterMakers.push(() => makeCharacter(
  38855. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38856. {
  38857. front: {
  38858. height: math.unit(2, "meters"),
  38859. weight: math.unit(100, "kg"),
  38860. name: "Front",
  38861. image: {
  38862. source: "./media/characters/shiron/front.svg",
  38863. extra: 2103/1985,
  38864. bottom: 98/2201
  38865. }
  38866. },
  38867. back: {
  38868. height: math.unit(2, "meters"),
  38869. weight: math.unit(100, "kg"),
  38870. name: "Back",
  38871. image: {
  38872. source: "./media/characters/shiron/back.svg",
  38873. extra: 2110/2015,
  38874. bottom: 89/2199
  38875. }
  38876. },
  38877. hand: {
  38878. height: math.unit(0.96, "feet"),
  38879. name: "Hand",
  38880. image: {
  38881. source: "./media/characters/shiron/hand.svg"
  38882. }
  38883. },
  38884. foot: {
  38885. height: math.unit(1.464, "feet"),
  38886. name: "Foot",
  38887. image: {
  38888. source: "./media/characters/shiron/foot.svg"
  38889. }
  38890. },
  38891. },
  38892. [
  38893. {
  38894. name: "Normal",
  38895. height: math.unit(2, "meters")
  38896. },
  38897. {
  38898. name: "Macro",
  38899. height: math.unit(500, "meters"),
  38900. default: true
  38901. },
  38902. {
  38903. name: "Megamacro",
  38904. height: math.unit(20, "km")
  38905. },
  38906. ]
  38907. ))
  38908. characterMakers.push(() => makeCharacter(
  38909. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38910. {
  38911. front: {
  38912. height: math.unit(6, "feet"),
  38913. name: "Front",
  38914. image: {
  38915. source: "./media/characters/sam/front.svg",
  38916. extra: 849/826,
  38917. bottom: 19/868
  38918. }
  38919. },
  38920. },
  38921. [
  38922. {
  38923. name: "Normal",
  38924. height: math.unit(6, "feet"),
  38925. default: true
  38926. },
  38927. ]
  38928. ))
  38929. characterMakers.push(() => makeCharacter(
  38930. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38931. {
  38932. front: {
  38933. height: math.unit(8 + 4/12, "feet"),
  38934. weight: math.unit(122, "kg"),
  38935. name: "Front",
  38936. image: {
  38937. source: "./media/characters/namori-kurogawa/front.svg",
  38938. extra: 1894/1576,
  38939. bottom: 34/1928
  38940. }
  38941. },
  38942. },
  38943. [
  38944. {
  38945. name: "Normal",
  38946. height: math.unit(8 + 4/12, "feet"),
  38947. default: true
  38948. },
  38949. ]
  38950. ))
  38951. characterMakers.push(() => makeCharacter(
  38952. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38953. {
  38954. front: {
  38955. height: math.unit(9, "feet"),
  38956. weight: math.unit(621, "lb"),
  38957. name: "Front",
  38958. image: {
  38959. source: "./media/characters/unmru/front.svg",
  38960. extra: 1853/1747,
  38961. bottom: 73/1926
  38962. }
  38963. },
  38964. side: {
  38965. height: math.unit(9, "feet"),
  38966. weight: math.unit(621, "lb"),
  38967. name: "Side",
  38968. image: {
  38969. source: "./media/characters/unmru/side.svg",
  38970. extra: 1781/1671,
  38971. bottom: 127/1908
  38972. }
  38973. },
  38974. back: {
  38975. height: math.unit(9, "feet"),
  38976. weight: math.unit(621, "lb"),
  38977. name: "Back",
  38978. image: {
  38979. source: "./media/characters/unmru/back.svg",
  38980. extra: 1894/1765,
  38981. bottom: 75/1969
  38982. }
  38983. },
  38984. dick: {
  38985. height: math.unit(3, "feet"),
  38986. weight: math.unit(35, "lb"),
  38987. name: "Dick",
  38988. image: {
  38989. source: "./media/characters/unmru/dick.svg"
  38990. }
  38991. },
  38992. },
  38993. [
  38994. {
  38995. name: "Normal",
  38996. height: math.unit(9, "feet")
  38997. },
  38998. {
  38999. name: "Natural",
  39000. height: math.unit(27, "feet"),
  39001. default: true
  39002. },
  39003. {
  39004. name: "Giant",
  39005. height: math.unit(90, "feet")
  39006. },
  39007. {
  39008. name: "Kaiju",
  39009. height: math.unit(270, "feet")
  39010. },
  39011. {
  39012. name: "Macro",
  39013. height: math.unit(900, "feet")
  39014. },
  39015. {
  39016. name: "Macro+",
  39017. height: math.unit(2700, "feet")
  39018. },
  39019. {
  39020. name: "Megamacro",
  39021. height: math.unit(9000, "feet")
  39022. },
  39023. {
  39024. name: "City-Crushing",
  39025. height: math.unit(27000, "feet")
  39026. },
  39027. {
  39028. name: "Mountain-Mashing",
  39029. height: math.unit(90000, "feet")
  39030. },
  39031. {
  39032. name: "Earth-Eclipsing",
  39033. height: math.unit(2.7e8, "feet")
  39034. },
  39035. {
  39036. name: "Sol-Swallowing",
  39037. height: math.unit(9e10, "feet")
  39038. },
  39039. {
  39040. name: "Majoris-Munching",
  39041. height: math.unit(2.7e13, "feet")
  39042. },
  39043. ]
  39044. ))
  39045. characterMakers.push(() => makeCharacter(
  39046. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39047. {
  39048. front: {
  39049. height: math.unit(1, "inch"),
  39050. name: "Front",
  39051. image: {
  39052. source: "./media/characters/squeaks-mouse/front.svg",
  39053. extra: 352/308,
  39054. bottom: 25/377
  39055. }
  39056. },
  39057. },
  39058. [
  39059. {
  39060. name: "Micro",
  39061. height: math.unit(1, "inch"),
  39062. default: true
  39063. },
  39064. ]
  39065. ))
  39066. characterMakers.push(() => makeCharacter(
  39067. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39068. {
  39069. side: {
  39070. height: math.unit(35, "feet"),
  39071. name: "Side",
  39072. image: {
  39073. source: "./media/characters/sayko/side.svg",
  39074. extra: 1697/1021,
  39075. bottom: 82/1779
  39076. }
  39077. },
  39078. head: {
  39079. height: math.unit(16, "feet"),
  39080. name: "Head",
  39081. image: {
  39082. source: "./media/characters/sayko/head.svg"
  39083. }
  39084. },
  39085. forepaw: {
  39086. height: math.unit(7.85, "feet"),
  39087. name: "Forepaw",
  39088. image: {
  39089. source: "./media/characters/sayko/forepaw.svg"
  39090. }
  39091. },
  39092. hindpaw: {
  39093. height: math.unit(8.8, "feet"),
  39094. name: "Hindpaw",
  39095. image: {
  39096. source: "./media/characters/sayko/hindpaw.svg"
  39097. }
  39098. },
  39099. },
  39100. [
  39101. {
  39102. name: "Normal",
  39103. height: math.unit(35, "feet"),
  39104. default: true
  39105. },
  39106. {
  39107. name: "Colossus",
  39108. height: math.unit(100, "meters")
  39109. },
  39110. {
  39111. name: "\"Small\" Deity",
  39112. height: math.unit(1, "km")
  39113. },
  39114. {
  39115. name: "\"Large\" Deity",
  39116. height: math.unit(15, "km")
  39117. },
  39118. ]
  39119. ))
  39120. characterMakers.push(() => makeCharacter(
  39121. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39122. {
  39123. front: {
  39124. height: math.unit(6, "feet"),
  39125. weight: math.unit(250, "lb"),
  39126. name: "Front",
  39127. image: {
  39128. source: "./media/characters/mukiro/front.svg",
  39129. extra: 1368/1310,
  39130. bottom: 34/1402
  39131. }
  39132. },
  39133. },
  39134. [
  39135. {
  39136. name: "Normal",
  39137. height: math.unit(6, "feet"),
  39138. default: true
  39139. },
  39140. ]
  39141. ))
  39142. characterMakers.push(() => makeCharacter(
  39143. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39144. {
  39145. front: {
  39146. height: math.unit(12 + 4/12, "feet"),
  39147. name: "Front",
  39148. image: {
  39149. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39150. extra: 1346/1311,
  39151. bottom: 65/1411
  39152. }
  39153. },
  39154. },
  39155. [
  39156. {
  39157. name: "Base",
  39158. height: math.unit(12 + 4/12, "feet"),
  39159. default: true
  39160. },
  39161. {
  39162. name: "Macro",
  39163. height: math.unit(150, "feet")
  39164. },
  39165. {
  39166. name: "Mega",
  39167. height: math.unit(2, "miles")
  39168. },
  39169. {
  39170. name: "Demi God",
  39171. height: math.unit(4, "AU")
  39172. },
  39173. {
  39174. name: "God Size",
  39175. height: math.unit(1, "universe")
  39176. },
  39177. ]
  39178. ))
  39179. characterMakers.push(() => makeCharacter(
  39180. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39181. {
  39182. front: {
  39183. height: math.unit(3 + 3/12, "feet"),
  39184. weight: math.unit(88, "lb"),
  39185. name: "Front",
  39186. image: {
  39187. source: "./media/characters/trey/front.svg",
  39188. extra: 1815/1509,
  39189. bottom: 60/1875
  39190. }
  39191. },
  39192. },
  39193. [
  39194. {
  39195. name: "Normal",
  39196. height: math.unit(3 + 3/12, "feet"),
  39197. default: true
  39198. },
  39199. ]
  39200. ))
  39201. characterMakers.push(() => makeCharacter(
  39202. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39203. {
  39204. front: {
  39205. height: math.unit(4, "meters"),
  39206. name: "Front",
  39207. image: {
  39208. source: "./media/characters/adelonda/front.svg",
  39209. extra: 1077/982,
  39210. bottom: 39/1116
  39211. }
  39212. },
  39213. back: {
  39214. height: math.unit(4, "meters"),
  39215. name: "Back",
  39216. image: {
  39217. source: "./media/characters/adelonda/back.svg",
  39218. extra: 1105/1003,
  39219. bottom: 25/1130
  39220. }
  39221. },
  39222. feral: {
  39223. height: math.unit(40/1.5, "meters"),
  39224. name: "Feral",
  39225. image: {
  39226. source: "./media/characters/adelonda/feral.svg",
  39227. extra: 597/271,
  39228. bottom: 387/984
  39229. }
  39230. },
  39231. },
  39232. [
  39233. {
  39234. name: "Normal",
  39235. height: math.unit(4, "meters"),
  39236. default: true
  39237. },
  39238. ]
  39239. ))
  39240. characterMakers.push(() => makeCharacter(
  39241. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39242. {
  39243. front: {
  39244. height: math.unit(8 + 4/12, "feet"),
  39245. weight: math.unit(670, "lb"),
  39246. name: "Front",
  39247. image: {
  39248. source: "./media/characters/acadiel/front.svg",
  39249. extra: 1901/1595,
  39250. bottom: 142/2043
  39251. }
  39252. },
  39253. },
  39254. [
  39255. {
  39256. name: "Normal",
  39257. height: math.unit(8 + 4/12, "feet"),
  39258. default: true
  39259. },
  39260. {
  39261. name: "Macro",
  39262. height: math.unit(200, "feet")
  39263. },
  39264. ]
  39265. ))
  39266. characterMakers.push(() => makeCharacter(
  39267. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39268. {
  39269. front: {
  39270. height: math.unit(6 + 2/12, "feet"),
  39271. weight: math.unit(185, "lb"),
  39272. name: "Front",
  39273. image: {
  39274. source: "./media/characters/kayne-ein/front.svg",
  39275. extra: 1780/1560,
  39276. bottom: 81/1861
  39277. }
  39278. },
  39279. },
  39280. [
  39281. {
  39282. name: "Normal",
  39283. height: math.unit(6 + 2/12, "feet"),
  39284. default: true
  39285. },
  39286. {
  39287. name: "Transformation Stage",
  39288. height: math.unit(15, "feet")
  39289. },
  39290. {
  39291. name: "Macro",
  39292. height: math.unit(150, "feet")
  39293. },
  39294. {
  39295. name: "Earth's Shadow",
  39296. height: math.unit(6200, "miles")
  39297. },
  39298. {
  39299. name: "Universal Demon",
  39300. height: math.unit(28e9, "parsecs")
  39301. },
  39302. {
  39303. name: "Multiverse God",
  39304. height: math.unit(3, "multiverses")
  39305. },
  39306. ]
  39307. ))
  39308. characterMakers.push(() => makeCharacter(
  39309. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39310. {
  39311. front: {
  39312. height: math.unit(5 + 5/12, "feet"),
  39313. name: "Front",
  39314. image: {
  39315. source: "./media/characters/fawn/front.svg",
  39316. extra: 1873/1731,
  39317. bottom: 95/1968
  39318. }
  39319. },
  39320. back: {
  39321. height: math.unit(5 + 5/12, "feet"),
  39322. name: "Back",
  39323. image: {
  39324. source: "./media/characters/fawn/back.svg",
  39325. extra: 1813/1700,
  39326. bottom: 14/1827
  39327. }
  39328. },
  39329. hoof: {
  39330. height: math.unit(1.45, "feet"),
  39331. name: "Hoof",
  39332. image: {
  39333. source: "./media/characters/fawn/hoof.svg"
  39334. }
  39335. },
  39336. },
  39337. [
  39338. {
  39339. name: "Normal",
  39340. height: math.unit(5 + 5/12, "feet"),
  39341. default: true
  39342. },
  39343. ]
  39344. ))
  39345. characterMakers.push(() => makeCharacter(
  39346. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39347. {
  39348. front: {
  39349. height: math.unit(2 + 5/12, "feet"),
  39350. name: "Front",
  39351. image: {
  39352. source: "./media/characters/orion/front.svg",
  39353. extra: 1366/1304,
  39354. bottom: 43/1409
  39355. }
  39356. },
  39357. paw: {
  39358. height: math.unit(0.52, "feet"),
  39359. name: "Paw",
  39360. image: {
  39361. source: "./media/characters/orion/paw.svg"
  39362. }
  39363. },
  39364. },
  39365. [
  39366. {
  39367. name: "Normal",
  39368. height: math.unit(2 + 5/12, "feet"),
  39369. default: true
  39370. },
  39371. ]
  39372. ))
  39373. characterMakers.push(() => makeCharacter(
  39374. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39375. {
  39376. front: {
  39377. height: math.unit(5 + 10/12, "feet"),
  39378. name: "Front",
  39379. image: {
  39380. source: "./media/characters/vera/front.svg",
  39381. extra: 1680/1575,
  39382. bottom: 49/1729
  39383. }
  39384. },
  39385. back: {
  39386. height: math.unit(5 + 10/12, "feet"),
  39387. name: "Back",
  39388. image: {
  39389. source: "./media/characters/vera/back.svg",
  39390. extra: 1700/1588,
  39391. bottom: 18/1718
  39392. }
  39393. },
  39394. arcanine: {
  39395. height: math.unit(6 + 8/12, "feet"),
  39396. name: "Arcanine",
  39397. image: {
  39398. source: "./media/characters/vera/arcanine.svg",
  39399. extra: 1590/1511,
  39400. bottom: 71/1661
  39401. }
  39402. },
  39403. maw: {
  39404. height: math.unit(0.82, "feet"),
  39405. name: "Maw",
  39406. image: {
  39407. source: "./media/characters/vera/maw.svg"
  39408. }
  39409. },
  39410. mawArcanine: {
  39411. height: math.unit(0.97, "feet"),
  39412. name: "Maw (Arcanine)",
  39413. image: {
  39414. source: "./media/characters/vera/maw-arcanine.svg"
  39415. }
  39416. },
  39417. paw: {
  39418. height: math.unit(0.75, "feet"),
  39419. name: "Paw",
  39420. image: {
  39421. source: "./media/characters/vera/paw.svg"
  39422. }
  39423. },
  39424. pawprint: {
  39425. height: math.unit(0.52, "feet"),
  39426. name: "Pawprint",
  39427. image: {
  39428. source: "./media/characters/vera/pawprint.svg"
  39429. }
  39430. },
  39431. },
  39432. [
  39433. {
  39434. name: "Normal",
  39435. height: math.unit(5 + 10/12, "feet"),
  39436. default: true
  39437. },
  39438. {
  39439. name: "Macro",
  39440. height: math.unit(75, "feet")
  39441. },
  39442. ]
  39443. ))
  39444. characterMakers.push(() => makeCharacter(
  39445. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39446. {
  39447. front: {
  39448. height: math.unit(4, "feet"),
  39449. weight: math.unit(40, "lb"),
  39450. name: "Front",
  39451. image: {
  39452. source: "./media/characters/orvan-rabbit/front.svg",
  39453. extra: 1896/1642,
  39454. bottom: 29/1925
  39455. }
  39456. },
  39457. },
  39458. [
  39459. {
  39460. name: "Normal",
  39461. height: math.unit(4, "feet"),
  39462. default: true
  39463. },
  39464. ]
  39465. ))
  39466. characterMakers.push(() => makeCharacter(
  39467. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39468. {
  39469. front: {
  39470. height: math.unit(6, "feet"),
  39471. weight: math.unit(168, "lb"),
  39472. name: "Front",
  39473. image: {
  39474. source: "./media/characters/lisa/front.svg",
  39475. extra: 2065/1867,
  39476. bottom: 46/2111
  39477. }
  39478. },
  39479. back: {
  39480. height: math.unit(6, "feet"),
  39481. weight: math.unit(168, "lb"),
  39482. name: "Back",
  39483. image: {
  39484. source: "./media/characters/lisa/back.svg",
  39485. extra: 1982/1838,
  39486. bottom: 29/2011
  39487. }
  39488. },
  39489. maw: {
  39490. height: math.unit(0.81, "feet"),
  39491. name: "Maw",
  39492. image: {
  39493. source: "./media/characters/lisa/maw.svg"
  39494. }
  39495. },
  39496. paw: {
  39497. height: math.unit(0.9, "feet"),
  39498. name: "Paw",
  39499. image: {
  39500. source: "./media/characters/lisa/paw.svg"
  39501. }
  39502. },
  39503. caribousune: {
  39504. height: math.unit(7 + 2/12, "feet"),
  39505. weight: math.unit(268, "lb"),
  39506. name: "Caribousune",
  39507. image: {
  39508. source: "./media/characters/lisa/caribousune.svg",
  39509. extra: 1843/1633,
  39510. bottom: 29/1872
  39511. }
  39512. },
  39513. frontCaribousune: {
  39514. height: math.unit(7 + 2/12, "feet"),
  39515. weight: math.unit(268, "lb"),
  39516. name: "Front (Caribousune)",
  39517. image: {
  39518. source: "./media/characters/lisa/front-caribousune.svg",
  39519. extra: 1818/1638,
  39520. bottom: 52/1870
  39521. }
  39522. },
  39523. sideCaribousune: {
  39524. height: math.unit(7 + 2/12, "feet"),
  39525. weight: math.unit(268, "lb"),
  39526. name: "Side (Caribousune)",
  39527. image: {
  39528. source: "./media/characters/lisa/side-caribousune.svg",
  39529. extra: 1851/1635,
  39530. bottom: 16/1867
  39531. }
  39532. },
  39533. backCaribousune: {
  39534. height: math.unit(7 + 2/12, "feet"),
  39535. weight: math.unit(268, "lb"),
  39536. name: "Back (Caribousune)",
  39537. image: {
  39538. source: "./media/characters/lisa/back-caribousune.svg",
  39539. extra: 1801/1604,
  39540. bottom: 44/1845
  39541. }
  39542. },
  39543. caribou: {
  39544. height: math.unit(7 + 2/12, "feet"),
  39545. weight: math.unit(268, "lb"),
  39546. name: "Caribou",
  39547. image: {
  39548. source: "./media/characters/lisa/caribou.svg",
  39549. extra: 1843/1633,
  39550. bottom: 29/1872
  39551. }
  39552. },
  39553. frontCaribou: {
  39554. height: math.unit(7 + 2/12, "feet"),
  39555. weight: math.unit(268, "lb"),
  39556. name: "Front (Caribou)",
  39557. image: {
  39558. source: "./media/characters/lisa/front-caribou.svg",
  39559. extra: 1818/1638,
  39560. bottom: 52/1870
  39561. }
  39562. },
  39563. sideCaribou: {
  39564. height: math.unit(7 + 2/12, "feet"),
  39565. weight: math.unit(268, "lb"),
  39566. name: "Side (Caribou)",
  39567. image: {
  39568. source: "./media/characters/lisa/side-caribou.svg",
  39569. extra: 1851/1635,
  39570. bottom: 16/1867
  39571. }
  39572. },
  39573. backCaribou: {
  39574. height: math.unit(7 + 2/12, "feet"),
  39575. weight: math.unit(268, "lb"),
  39576. name: "Back (Caribou)",
  39577. image: {
  39578. source: "./media/characters/lisa/back-caribou.svg",
  39579. extra: 1801/1604,
  39580. bottom: 44/1845
  39581. }
  39582. },
  39583. mawCaribou: {
  39584. height: math.unit(1.45, "feet"),
  39585. name: "Maw (Caribou)",
  39586. image: {
  39587. source: "./media/characters/lisa/maw-caribou.svg"
  39588. }
  39589. },
  39590. mawCaribousune: {
  39591. height: math.unit(1.45, "feet"),
  39592. name: "Maw (Caribousune)",
  39593. image: {
  39594. source: "./media/characters/lisa/maw-caribousune.svg"
  39595. }
  39596. },
  39597. pawCaribousune: {
  39598. height: math.unit(1.61, "feet"),
  39599. name: "Paw (Caribou)",
  39600. image: {
  39601. source: "./media/characters/lisa/paw-caribousune.svg"
  39602. }
  39603. },
  39604. },
  39605. [
  39606. {
  39607. name: "Normal",
  39608. height: math.unit(6, "feet")
  39609. },
  39610. {
  39611. name: "God Size",
  39612. height: math.unit(72, "feet"),
  39613. default: true
  39614. },
  39615. {
  39616. name: "Towering",
  39617. height: math.unit(288, "feet")
  39618. },
  39619. {
  39620. name: "City Size",
  39621. height: math.unit(48384, "feet")
  39622. },
  39623. {
  39624. name: "Continental",
  39625. height: math.unit(4200, "miles")
  39626. },
  39627. {
  39628. name: "Planet Eater",
  39629. height: math.unit(42, "earths")
  39630. },
  39631. {
  39632. name: "Star Swallower",
  39633. height: math.unit(42, "solarradii")
  39634. },
  39635. {
  39636. name: "System Swallower",
  39637. height: math.unit(84000, "AU")
  39638. },
  39639. {
  39640. name: "Galaxy Gobbler",
  39641. height: math.unit(42, "galaxies")
  39642. },
  39643. {
  39644. name: "Universe Devourer",
  39645. height: math.unit(42, "universes")
  39646. },
  39647. {
  39648. name: "Multiverse Muncher",
  39649. height: math.unit(42, "multiverses")
  39650. },
  39651. ]
  39652. ))
  39653. characterMakers.push(() => makeCharacter(
  39654. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39655. {
  39656. front: {
  39657. height: math.unit(36, "feet"),
  39658. name: "Front",
  39659. image: {
  39660. source: "./media/characters/shadow-rat/front.svg",
  39661. extra: 1845/1758,
  39662. bottom: 83/1928
  39663. }
  39664. },
  39665. },
  39666. [
  39667. {
  39668. name: "Macro",
  39669. height: math.unit(36, "feet"),
  39670. default: true
  39671. },
  39672. ]
  39673. ))
  39674. characterMakers.push(() => makeCharacter(
  39675. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39676. {
  39677. side: {
  39678. height: math.unit(8, "feet"),
  39679. weight: math.unit(2630, "lb"),
  39680. name: "Side",
  39681. image: {
  39682. source: "./media/characters/torallia/side.svg",
  39683. extra: 2164/2021,
  39684. bottom: 371/2535
  39685. }
  39686. },
  39687. },
  39688. [
  39689. {
  39690. name: "Mortal Interaction",
  39691. height: math.unit(8, "feet")
  39692. },
  39693. {
  39694. name: "Natural",
  39695. height: math.unit(24, "feet"),
  39696. default: true
  39697. },
  39698. {
  39699. name: "Giant",
  39700. height: math.unit(80, "feet")
  39701. },
  39702. {
  39703. name: "Kaiju",
  39704. height: math.unit(240, "feet")
  39705. },
  39706. {
  39707. name: "Macro",
  39708. height: math.unit(800, "feet")
  39709. },
  39710. {
  39711. name: "Macro+",
  39712. height: math.unit(2400, "feet")
  39713. },
  39714. {
  39715. name: "Macro++",
  39716. height: math.unit(8000, "feet")
  39717. },
  39718. {
  39719. name: "City-Crushing",
  39720. height: math.unit(24000, "feet")
  39721. },
  39722. {
  39723. name: "Mountain-Mashing",
  39724. height: math.unit(80000, "feet")
  39725. },
  39726. {
  39727. name: "District Demolisher",
  39728. height: math.unit(240000, "feet")
  39729. },
  39730. {
  39731. name: "Tri-County Terror",
  39732. height: math.unit(800000, "feet")
  39733. },
  39734. {
  39735. name: "State Smasher",
  39736. height: math.unit(2.4e6, "feet")
  39737. },
  39738. {
  39739. name: "Nation Nemesis",
  39740. height: math.unit(8e6, "feet")
  39741. },
  39742. {
  39743. name: "Continent Cracker",
  39744. height: math.unit(2.4e7, "feet")
  39745. },
  39746. {
  39747. name: "Planet-Pillaging",
  39748. height: math.unit(8e7, "feet")
  39749. },
  39750. {
  39751. name: "Earth-Eclipsing",
  39752. height: math.unit(2.4e8, "feet")
  39753. },
  39754. {
  39755. name: "Jovian-Jostling",
  39756. height: math.unit(8e8, "feet")
  39757. },
  39758. {
  39759. name: "Gas Giant Gulper",
  39760. height: math.unit(2.4e9, "feet")
  39761. },
  39762. {
  39763. name: "Astral Annihilator",
  39764. height: math.unit(8e9, "feet")
  39765. },
  39766. {
  39767. name: "Celestial Conqueror",
  39768. height: math.unit(2.4e10, "feet")
  39769. },
  39770. {
  39771. name: "Sol-Swallowing",
  39772. height: math.unit(8e10, "feet")
  39773. },
  39774. {
  39775. name: "Hunter of the Heavens",
  39776. height: math.unit(2.4e13, "feet")
  39777. },
  39778. ]
  39779. ))
  39780. characterMakers.push(() => makeCharacter(
  39781. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39782. {
  39783. front: {
  39784. height: math.unit(6 + 8/12, "feet"),
  39785. weight: math.unit(250, "kilograms"),
  39786. volume: math.unit(28, "liters"),
  39787. name: "Front",
  39788. image: {
  39789. source: "./media/characters/rebecca-pawlson/front.svg",
  39790. extra: 1737/1596,
  39791. bottom: 107/1844
  39792. }
  39793. },
  39794. back: {
  39795. height: math.unit(6 + 8/12, "feet"),
  39796. weight: math.unit(250, "kilograms"),
  39797. volume: math.unit(28, "liters"),
  39798. name: "Back",
  39799. image: {
  39800. source: "./media/characters/rebecca-pawlson/back.svg",
  39801. extra: 1702/1523,
  39802. bottom: 86/1788
  39803. }
  39804. },
  39805. },
  39806. [
  39807. {
  39808. name: "Normal",
  39809. height: math.unit(6 + 8/12, "feet")
  39810. },
  39811. {
  39812. name: "Mini Macro",
  39813. height: math.unit(10, "feet"),
  39814. default: true
  39815. },
  39816. {
  39817. name: "Macro",
  39818. height: math.unit(100, "feet")
  39819. },
  39820. {
  39821. name: "Mega Macro",
  39822. height: math.unit(2500, "feet")
  39823. },
  39824. {
  39825. name: "Giga Macro",
  39826. height: math.unit(50, "miles")
  39827. },
  39828. ]
  39829. ))
  39830. characterMakers.push(() => makeCharacter(
  39831. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39832. {
  39833. front: {
  39834. height: math.unit(7 + 6/12, "feet"),
  39835. weight: math.unit(600, "lb"),
  39836. name: "Front",
  39837. image: {
  39838. source: "./media/characters/moxie-nova/front.svg",
  39839. extra: 1734/1652,
  39840. bottom: 41/1775
  39841. }
  39842. },
  39843. },
  39844. [
  39845. {
  39846. name: "Normal",
  39847. height: math.unit(7 + 6/12, "feet"),
  39848. default: true
  39849. },
  39850. ]
  39851. ))
  39852. characterMakers.push(() => makeCharacter(
  39853. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39854. {
  39855. goat: {
  39856. height: math.unit(4, "feet"),
  39857. weight: math.unit(180, "lb"),
  39858. name: "Goat",
  39859. image: {
  39860. source: "./media/characters/tiffany/goat.svg",
  39861. extra: 1845/1595,
  39862. bottom: 106/1951
  39863. }
  39864. },
  39865. front: {
  39866. height: math.unit(5, "feet"),
  39867. weight: math.unit(150, "lb"),
  39868. name: "Foxcoon",
  39869. image: {
  39870. source: "./media/characters/tiffany/foxcoon.svg",
  39871. extra: 1941/1845,
  39872. bottom: 58/1999
  39873. }
  39874. },
  39875. },
  39876. [
  39877. {
  39878. name: "Normal",
  39879. height: math.unit(5, "feet"),
  39880. default: true
  39881. },
  39882. ]
  39883. ))
  39884. characterMakers.push(() => makeCharacter(
  39885. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39886. {
  39887. front: {
  39888. height: math.unit(8, "feet"),
  39889. weight: math.unit(300, "lb"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/raxinath/front.svg",
  39893. extra: 1407/1309,
  39894. bottom: 39/1446
  39895. }
  39896. },
  39897. back: {
  39898. height: math.unit(8, "feet"),
  39899. weight: math.unit(300, "lb"),
  39900. name: "Back",
  39901. image: {
  39902. source: "./media/characters/raxinath/back.svg",
  39903. extra: 1405/1315,
  39904. bottom: 9/1414
  39905. }
  39906. },
  39907. },
  39908. [
  39909. {
  39910. name: "Speck",
  39911. height: math.unit(0.5, "nm")
  39912. },
  39913. {
  39914. name: "Micro",
  39915. height: math.unit(3, "inches")
  39916. },
  39917. {
  39918. name: "Kobold",
  39919. height: math.unit(3, "feet")
  39920. },
  39921. {
  39922. name: "Normal",
  39923. height: math.unit(8, "feet"),
  39924. default: true
  39925. },
  39926. {
  39927. name: "Giant",
  39928. height: math.unit(50, "feet")
  39929. },
  39930. {
  39931. name: "Macro",
  39932. height: math.unit(1000, "feet")
  39933. },
  39934. {
  39935. name: "Megamacro",
  39936. height: math.unit(1, "mile")
  39937. },
  39938. ]
  39939. ))
  39940. characterMakers.push(() => makeCharacter(
  39941. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39942. {
  39943. front: {
  39944. height: math.unit(10, "feet"),
  39945. weight: math.unit(1442, "lb"),
  39946. name: "Front",
  39947. image: {
  39948. source: "./media/characters/mal-dragon/front.svg",
  39949. extra: 1515/1444,
  39950. bottom: 113/1628
  39951. }
  39952. },
  39953. back: {
  39954. height: math.unit(10, "feet"),
  39955. weight: math.unit(1442, "lb"),
  39956. name: "Back",
  39957. image: {
  39958. source: "./media/characters/mal-dragon/back.svg",
  39959. extra: 1527/1434,
  39960. bottom: 25/1552
  39961. }
  39962. },
  39963. },
  39964. [
  39965. {
  39966. name: "Mortal Interaction",
  39967. height: math.unit(10, "feet"),
  39968. default: true
  39969. },
  39970. {
  39971. name: "Large",
  39972. height: math.unit(30, "feet")
  39973. },
  39974. {
  39975. name: "Kaiju",
  39976. height: math.unit(300, "feet")
  39977. },
  39978. {
  39979. name: "Megamacro",
  39980. height: math.unit(10000, "feet")
  39981. },
  39982. {
  39983. name: "Continent Cracker",
  39984. height: math.unit(30000000, "feet")
  39985. },
  39986. {
  39987. name: "Sol-Swallowing",
  39988. height: math.unit(1e11, "feet")
  39989. },
  39990. {
  39991. name: "Light Universal",
  39992. height: math.unit(5, "universes")
  39993. },
  39994. {
  39995. name: "Universe Atoms",
  39996. height: math.unit(1.829e9, "universes")
  39997. },
  39998. {
  39999. name: "Light Multiversal",
  40000. height: math.unit(5, "multiverses")
  40001. },
  40002. {
  40003. name: "Multiverse Atoms",
  40004. height: math.unit(1.829e9, "multiverses")
  40005. },
  40006. {
  40007. name: "Fabric of Time",
  40008. height: math.unit(1e262, "multiverses")
  40009. },
  40010. ]
  40011. ))
  40012. characterMakers.push(() => makeCharacter(
  40013. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40014. {
  40015. front: {
  40016. height: math.unit(9, "feet"),
  40017. weight: math.unit(1050, "lb"),
  40018. name: "Front",
  40019. image: {
  40020. source: "./media/characters/tabitha/front.svg",
  40021. extra: 2083/1994,
  40022. bottom: 68/2151
  40023. }
  40024. },
  40025. },
  40026. [
  40027. {
  40028. name: "Baseline",
  40029. height: math.unit(9, "feet"),
  40030. default: true
  40031. },
  40032. {
  40033. name: "Giant",
  40034. height: math.unit(90, "feet")
  40035. },
  40036. {
  40037. name: "Macro",
  40038. height: math.unit(900, "feet")
  40039. },
  40040. {
  40041. name: "Megamacro",
  40042. height: math.unit(9000, "feet")
  40043. },
  40044. {
  40045. name: "City-Crushing",
  40046. height: math.unit(27000, "feet")
  40047. },
  40048. {
  40049. name: "Mountain-Mashing",
  40050. height: math.unit(90000, "feet")
  40051. },
  40052. {
  40053. name: "Nation Nemesis",
  40054. height: math.unit(9e6, "feet")
  40055. },
  40056. {
  40057. name: "Continent Cracker",
  40058. height: math.unit(27e6, "feet")
  40059. },
  40060. {
  40061. name: "Earth-Eclipsing",
  40062. height: math.unit(2.7e8, "feet")
  40063. },
  40064. {
  40065. name: "Gas Giant Gulper",
  40066. height: math.unit(2.7e9, "feet")
  40067. },
  40068. {
  40069. name: "Sol-Swallowing",
  40070. height: math.unit(9e10, "feet")
  40071. },
  40072. {
  40073. name: "Galaxy Gulper",
  40074. height: math.unit(9, "galaxies")
  40075. },
  40076. {
  40077. name: "Cosmos Churner",
  40078. height: math.unit(9, "universes")
  40079. },
  40080. ]
  40081. ))
  40082. characterMakers.push(() => makeCharacter(
  40083. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40084. {
  40085. front: {
  40086. height: math.unit(160, "cm"),
  40087. weight: math.unit(55, "kg"),
  40088. name: "Front",
  40089. image: {
  40090. source: "./media/characters/tow/front.svg",
  40091. extra: 1751/1722,
  40092. bottom: 74/1825
  40093. }
  40094. },
  40095. },
  40096. [
  40097. {
  40098. name: "Norm",
  40099. height: math.unit(160, "cm")
  40100. },
  40101. {
  40102. name: "Casual",
  40103. height: math.unit(3200, "m"),
  40104. default: true
  40105. },
  40106. {
  40107. name: "Show-Off",
  40108. height: math.unit(160, "km")
  40109. },
  40110. ]
  40111. ))
  40112. characterMakers.push(() => makeCharacter(
  40113. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40114. {
  40115. front: {
  40116. height: math.unit(7 + 11/12, "feet"),
  40117. weight: math.unit(342.8, "lb"),
  40118. name: "Front",
  40119. image: {
  40120. source: "./media/characters/vivian-orca-dragon/front.svg",
  40121. extra: 1890/1865,
  40122. bottom: 28/1918
  40123. }
  40124. },
  40125. },
  40126. [
  40127. {
  40128. name: "Micro",
  40129. height: math.unit(5, "inches")
  40130. },
  40131. {
  40132. name: "Normal",
  40133. height: math.unit(7 + 11/12, "feet"),
  40134. default: true
  40135. },
  40136. {
  40137. name: "Macro",
  40138. height: math.unit(395 + 7/12, "feet")
  40139. },
  40140. ]
  40141. ))
  40142. characterMakers.push(() => makeCharacter(
  40143. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40144. {
  40145. side: {
  40146. height: math.unit(10, "feet"),
  40147. weight: math.unit(1442, "lb"),
  40148. name: "Side",
  40149. image: {
  40150. source: "./media/characters/lotherakon/side.svg",
  40151. extra: 1604/1497,
  40152. bottom: 89/1693
  40153. }
  40154. },
  40155. },
  40156. [
  40157. {
  40158. name: "Mortal Interaction",
  40159. height: math.unit(10, "feet")
  40160. },
  40161. {
  40162. name: "Large",
  40163. height: math.unit(30, "feet"),
  40164. default: true
  40165. },
  40166. {
  40167. name: "Giant",
  40168. height: math.unit(100, "feet")
  40169. },
  40170. {
  40171. name: "Kaiju",
  40172. height: math.unit(300, "feet")
  40173. },
  40174. {
  40175. name: "Macro",
  40176. height: math.unit(1000, "feet")
  40177. },
  40178. {
  40179. name: "Macro+",
  40180. height: math.unit(3000, "feet")
  40181. },
  40182. {
  40183. name: "Megamacro",
  40184. height: math.unit(10000, "feet")
  40185. },
  40186. {
  40187. name: "City-Crushing",
  40188. height: math.unit(30000, "feet")
  40189. },
  40190. {
  40191. name: "Continent Cracker",
  40192. height: math.unit(30e6, "feet")
  40193. },
  40194. {
  40195. name: "Earth Eclipsing",
  40196. height: math.unit(3e8, "feet")
  40197. },
  40198. {
  40199. name: "Gas Giant Gulper",
  40200. height: math.unit(3e9, "feet")
  40201. },
  40202. {
  40203. name: "Sol-Swallowing",
  40204. height: math.unit(1e11, "feet")
  40205. },
  40206. {
  40207. name: "System Swallower",
  40208. height: math.unit(3e14, "feet")
  40209. },
  40210. {
  40211. name: "Galaxy Gulper",
  40212. height: math.unit(10, "galaxies")
  40213. },
  40214. {
  40215. name: "Light Universal",
  40216. height: math.unit(5, "universes")
  40217. },
  40218. {
  40219. name: "Universe Palm",
  40220. height: math.unit(20, "universes")
  40221. },
  40222. {
  40223. name: "Light Multiversal",
  40224. height: math.unit(5, "multiverses")
  40225. },
  40226. {
  40227. name: "Multiverse Palm",
  40228. height: math.unit(20, "multiverses")
  40229. },
  40230. {
  40231. name: "Inferno Incarnate",
  40232. height: math.unit(1e7, "multiverses")
  40233. },
  40234. ]
  40235. ))
  40236. characterMakers.push(() => makeCharacter(
  40237. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40238. {
  40239. front: {
  40240. height: math.unit(8, "feet"),
  40241. weight: math.unit(1200, "lb"),
  40242. name: "Front",
  40243. image: {
  40244. source: "./media/characters/malithee/front.svg",
  40245. extra: 1675/1640,
  40246. bottom: 162/1837
  40247. }
  40248. },
  40249. },
  40250. [
  40251. {
  40252. name: "Mortal Interaction",
  40253. height: math.unit(8, "feet"),
  40254. default: true
  40255. },
  40256. {
  40257. name: "Large",
  40258. height: math.unit(24, "feet")
  40259. },
  40260. {
  40261. name: "Kaiju",
  40262. height: math.unit(240, "feet")
  40263. },
  40264. {
  40265. name: "Megamacro",
  40266. height: math.unit(8000, "feet")
  40267. },
  40268. {
  40269. name: "Continent Cracker",
  40270. height: math.unit(24e6, "feet")
  40271. },
  40272. {
  40273. name: "Earth-Eclipsing",
  40274. height: math.unit(2.4e8, "feet")
  40275. },
  40276. {
  40277. name: "Sol-Swallowing",
  40278. height: math.unit(8e10, "feet")
  40279. },
  40280. {
  40281. name: "Galaxy Gulper",
  40282. height: math.unit(8, "galaxies")
  40283. },
  40284. {
  40285. name: "Light Universal",
  40286. height: math.unit(4, "universes")
  40287. },
  40288. {
  40289. name: "Universe Atoms",
  40290. height: math.unit(1.829e9, "universes")
  40291. },
  40292. {
  40293. name: "Light Multiversal",
  40294. height: math.unit(4, "multiverses")
  40295. },
  40296. {
  40297. name: "Multiverse Atoms",
  40298. height: math.unit(1.829e9, "multiverses")
  40299. },
  40300. {
  40301. name: "Nigh-Omnipresence",
  40302. height: math.unit(8e261, "multiverses")
  40303. },
  40304. ]
  40305. ))
  40306. characterMakers.push(() => makeCharacter(
  40307. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40308. {
  40309. front: {
  40310. height: math.unit(10, "feet"),
  40311. weight: math.unit(1500, "lb"),
  40312. name: "Front",
  40313. image: {
  40314. source: "./media/characters/miles-thestia/front.svg",
  40315. extra: 1812/1727,
  40316. bottom: 86/1898
  40317. }
  40318. },
  40319. back: {
  40320. height: math.unit(10, "feet"),
  40321. weight: math.unit(1500, "lb"),
  40322. name: "Back",
  40323. image: {
  40324. source: "./media/characters/miles-thestia/back.svg",
  40325. extra: 1799/1690,
  40326. bottom: 47/1846
  40327. }
  40328. },
  40329. frontNsfw: {
  40330. height: math.unit(10, "feet"),
  40331. weight: math.unit(1500, "lb"),
  40332. name: "Front (NSFW)",
  40333. image: {
  40334. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40335. extra: 1812/1727,
  40336. bottom: 86/1898
  40337. }
  40338. },
  40339. },
  40340. [
  40341. {
  40342. name: "Mini-Macro",
  40343. height: math.unit(10, "feet"),
  40344. default: true
  40345. },
  40346. ]
  40347. ))
  40348. characterMakers.push(() => makeCharacter(
  40349. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40350. {
  40351. front: {
  40352. height: math.unit(25, "feet"),
  40353. name: "Front",
  40354. image: {
  40355. source: "./media/characters/titan-s-wulf/front.svg",
  40356. extra: 1560/1484,
  40357. bottom: 76/1636
  40358. }
  40359. },
  40360. },
  40361. [
  40362. {
  40363. name: "Smallest",
  40364. height: math.unit(25, "feet"),
  40365. default: true
  40366. },
  40367. {
  40368. name: "Normal",
  40369. height: math.unit(200, "feet")
  40370. },
  40371. {
  40372. name: "Macro",
  40373. height: math.unit(200000, "feet")
  40374. },
  40375. {
  40376. name: "Multiversal Original",
  40377. height: math.unit(10000, "multiverses")
  40378. },
  40379. ]
  40380. ))
  40381. characterMakers.push(() => makeCharacter(
  40382. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40383. {
  40384. front: {
  40385. height: math.unit(8, "feet"),
  40386. weight: math.unit(553, "lb"),
  40387. name: "Front",
  40388. image: {
  40389. source: "./media/characters/tawendeh/front.svg",
  40390. extra: 2365/2268,
  40391. bottom: 83/2448
  40392. }
  40393. },
  40394. frontClothed: {
  40395. height: math.unit(8, "feet"),
  40396. weight: math.unit(553, "lb"),
  40397. name: "Front (Clothed)",
  40398. image: {
  40399. source: "./media/characters/tawendeh/front-clothed.svg",
  40400. extra: 2365/2268,
  40401. bottom: 83/2448
  40402. }
  40403. },
  40404. back: {
  40405. height: math.unit(8, "feet"),
  40406. weight: math.unit(553, "lb"),
  40407. name: "Back",
  40408. image: {
  40409. source: "./media/characters/tawendeh/back.svg",
  40410. extra: 2397/2294,
  40411. bottom: 42/2439
  40412. }
  40413. },
  40414. },
  40415. [
  40416. {
  40417. name: "Mortal Interaction",
  40418. height: math.unit(8, "feet"),
  40419. default: true
  40420. },
  40421. {
  40422. name: "Giant",
  40423. height: math.unit(80, "feet")
  40424. },
  40425. {
  40426. name: "Macro",
  40427. height: math.unit(800, "feet")
  40428. },
  40429. {
  40430. name: "Megamacro",
  40431. height: math.unit(8000, "feet")
  40432. },
  40433. {
  40434. name: "City-Crushing",
  40435. height: math.unit(24000, "feet")
  40436. },
  40437. {
  40438. name: "Mountain-Mashing",
  40439. height: math.unit(80000, "feet")
  40440. },
  40441. {
  40442. name: "Nation Nemesis",
  40443. height: math.unit(8e6, "feet")
  40444. },
  40445. {
  40446. name: "Continent Cracker",
  40447. height: math.unit(24e6, "feet")
  40448. },
  40449. {
  40450. name: "Earth-Eclipsing",
  40451. height: math.unit(2.4e8, "feet")
  40452. },
  40453. {
  40454. name: "Gas Giant Gulper",
  40455. height: math.unit(2.4e9, "feet")
  40456. },
  40457. {
  40458. name: "Sol-Swallowing",
  40459. height: math.unit(8e10, "feet")
  40460. },
  40461. {
  40462. name: "Galaxy Gulper",
  40463. height: math.unit(8, "galaxies")
  40464. },
  40465. {
  40466. name: "Cosmos Churner",
  40467. height: math.unit(8, "universes")
  40468. },
  40469. {
  40470. name: "Omnipotent Otter",
  40471. height: math.unit(80, "universes")
  40472. },
  40473. ]
  40474. ))
  40475. characterMakers.push(() => makeCharacter(
  40476. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40477. {
  40478. front: {
  40479. height: math.unit(2.6, "meters"),
  40480. weight: math.unit(900, "kg"),
  40481. name: "Front",
  40482. image: {
  40483. source: "./media/characters/neesha/front.svg",
  40484. extra: 1803/1653,
  40485. bottom: 128/1931
  40486. }
  40487. },
  40488. },
  40489. [
  40490. {
  40491. name: "Normal",
  40492. height: math.unit(2.6, "meters"),
  40493. default: true
  40494. },
  40495. {
  40496. name: "Macro",
  40497. height: math.unit(50, "meters")
  40498. },
  40499. ]
  40500. ))
  40501. characterMakers.push(() => makeCharacter(
  40502. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40503. {
  40504. front: {
  40505. height: math.unit(5, "feet"),
  40506. weight: math.unit(185, "lb"),
  40507. name: "Front",
  40508. image: {
  40509. source: "./media/characters/kyera/front.svg",
  40510. extra: 1875/1790,
  40511. bottom: 96/1971
  40512. }
  40513. },
  40514. },
  40515. [
  40516. {
  40517. name: "Normal",
  40518. height: math.unit(5, "feet"),
  40519. default: true
  40520. },
  40521. ]
  40522. ))
  40523. characterMakers.push(() => makeCharacter(
  40524. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40525. {
  40526. front: {
  40527. height: math.unit(7 + 6/12, "feet"),
  40528. weight: math.unit(540, "lb"),
  40529. name: "Front",
  40530. image: {
  40531. source: "./media/characters/yuko/front.svg",
  40532. extra: 1282/1222,
  40533. bottom: 101/1383
  40534. }
  40535. },
  40536. frontClothed: {
  40537. height: math.unit(7 + 6/12, "feet"),
  40538. weight: math.unit(540, "lb"),
  40539. name: "Front (Clothed)",
  40540. image: {
  40541. source: "./media/characters/yuko/front-clothed.svg",
  40542. extra: 1282/1222,
  40543. bottom: 101/1383
  40544. }
  40545. },
  40546. },
  40547. [
  40548. {
  40549. name: "Normal",
  40550. height: math.unit(7 + 6/12, "feet"),
  40551. default: true
  40552. },
  40553. {
  40554. name: "Macro",
  40555. height: math.unit(26 + 9/12, "feet")
  40556. },
  40557. {
  40558. name: "Megamacro",
  40559. height: math.unit(300, "feet")
  40560. },
  40561. {
  40562. name: "Gigamacro",
  40563. height: math.unit(5000, "feet")
  40564. },
  40565. {
  40566. name: "Planetary",
  40567. height: math.unit(10000, "miles")
  40568. },
  40569. ]
  40570. ))
  40571. characterMakers.push(() => makeCharacter(
  40572. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40573. {
  40574. front: {
  40575. height: math.unit(8 + 2/12, "feet"),
  40576. weight: math.unit(600, "lb"),
  40577. name: "Front",
  40578. image: {
  40579. source: "./media/characters/deam-nitrel/front.svg",
  40580. extra: 1308/1234,
  40581. bottom: 125/1433
  40582. }
  40583. },
  40584. },
  40585. [
  40586. {
  40587. name: "Normal",
  40588. height: math.unit(8 + 2/12, "feet"),
  40589. default: true
  40590. },
  40591. ]
  40592. ))
  40593. characterMakers.push(() => makeCharacter(
  40594. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40595. {
  40596. front: {
  40597. height: math.unit(6.1, "feet"),
  40598. weight: math.unit(180, "lb"),
  40599. name: "Front",
  40600. image: {
  40601. source: "./media/characters/skyress/front.svg",
  40602. extra: 1045/915,
  40603. bottom: 28/1073
  40604. }
  40605. },
  40606. maw: {
  40607. height: math.unit(1, "feet"),
  40608. name: "Maw",
  40609. image: {
  40610. source: "./media/characters/skyress/maw.svg"
  40611. }
  40612. },
  40613. },
  40614. [
  40615. {
  40616. name: "Normal",
  40617. height: math.unit(6.1, "feet"),
  40618. default: true
  40619. },
  40620. {
  40621. name: "Macro",
  40622. height: math.unit(200, "feet")
  40623. },
  40624. ]
  40625. ))
  40626. characterMakers.push(() => makeCharacter(
  40627. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40628. {
  40629. front: {
  40630. height: math.unit(4 + 2/12, "feet"),
  40631. weight: math.unit(40, "kg"),
  40632. name: "Front",
  40633. image: {
  40634. source: "./media/characters/amethyst-jones/front.svg",
  40635. extra: 1220/1150,
  40636. bottom: 101/1321
  40637. }
  40638. },
  40639. },
  40640. [
  40641. {
  40642. name: "Normal",
  40643. height: math.unit(4 + 2/12, "feet"),
  40644. default: true
  40645. },
  40646. ]
  40647. ))
  40648. characterMakers.push(() => makeCharacter(
  40649. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40650. {
  40651. front: {
  40652. height: math.unit(1.7, "m"),
  40653. weight: math.unit(135, "lb"),
  40654. name: "Front",
  40655. image: {
  40656. source: "./media/characters/jade/front.svg",
  40657. extra: 1818/1767,
  40658. bottom: 32/1850
  40659. }
  40660. },
  40661. back: {
  40662. height: math.unit(1.7, "m"),
  40663. weight: math.unit(135, "lb"),
  40664. name: "Back",
  40665. image: {
  40666. source: "./media/characters/jade/back.svg",
  40667. extra: 1869/1809,
  40668. bottom: 35/1904
  40669. }
  40670. },
  40671. hand: {
  40672. height: math.unit(0.24, "m"),
  40673. name: "Hand",
  40674. image: {
  40675. source: "./media/characters/jade/hand.svg"
  40676. }
  40677. },
  40678. foot: {
  40679. height: math.unit(0.263, "m"),
  40680. name: "Foot",
  40681. image: {
  40682. source: "./media/characters/jade/foot.svg"
  40683. }
  40684. },
  40685. dick: {
  40686. height: math.unit(0.47, "m"),
  40687. name: "Dick",
  40688. image: {
  40689. source: "./media/characters/jade/dick.svg"
  40690. }
  40691. },
  40692. },
  40693. [
  40694. {
  40695. name: "Micro",
  40696. height: math.unit(22, "cm")
  40697. },
  40698. {
  40699. name: "Normal",
  40700. height: math.unit(1.7, "m"),
  40701. default: true
  40702. },
  40703. {
  40704. name: "Macro",
  40705. height: math.unit(152, "m")
  40706. },
  40707. ]
  40708. ))
  40709. characterMakers.push(() => makeCharacter(
  40710. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40711. {
  40712. front: {
  40713. height: math.unit(100, "miles"),
  40714. weight: math.unit(20000, "tons"),
  40715. name: "Front",
  40716. image: {
  40717. source: "./media/characters/cookie/front.svg",
  40718. extra: 1125/1070,
  40719. bottom: 30/1155
  40720. }
  40721. },
  40722. },
  40723. [
  40724. {
  40725. name: "Big",
  40726. height: math.unit(50, "feet")
  40727. },
  40728. {
  40729. name: "Macro",
  40730. height: math.unit(100, "miles"),
  40731. default: true
  40732. },
  40733. {
  40734. name: "Megamacro",
  40735. height: math.unit(90000, "miles")
  40736. },
  40737. ]
  40738. ))
  40739. characterMakers.push(() => makeCharacter(
  40740. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40741. {
  40742. front: {
  40743. height: math.unit(6, "feet"),
  40744. weight: math.unit(145, "lb"),
  40745. name: "Front",
  40746. image: {
  40747. source: "./media/characters/farzian/front.svg",
  40748. extra: 1902/1693,
  40749. bottom: 108/2010
  40750. }
  40751. },
  40752. },
  40753. [
  40754. {
  40755. name: "Macro",
  40756. height: math.unit(500, "feet"),
  40757. default: true
  40758. },
  40759. ]
  40760. ))
  40761. characterMakers.push(() => makeCharacter(
  40762. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40763. {
  40764. front: {
  40765. height: math.unit(3 + 6/12, "feet"),
  40766. weight: math.unit(50, "lb"),
  40767. name: "Front",
  40768. image: {
  40769. source: "./media/characters/kimberly-tilson/front.svg",
  40770. extra: 1400/1322,
  40771. bottom: 36/1436
  40772. }
  40773. },
  40774. back: {
  40775. height: math.unit(3 + 6/12, "feet"),
  40776. weight: math.unit(50, "lb"),
  40777. name: "Back",
  40778. image: {
  40779. source: "./media/characters/kimberly-tilson/back.svg",
  40780. extra: 1370/1307,
  40781. bottom: 20/1390
  40782. }
  40783. },
  40784. },
  40785. [
  40786. {
  40787. name: "Normal",
  40788. height: math.unit(3 + 6/12, "feet"),
  40789. default: true
  40790. },
  40791. ]
  40792. ))
  40793. characterMakers.push(() => makeCharacter(
  40794. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40795. {
  40796. front: {
  40797. height: math.unit(1148, "feet"),
  40798. weight: math.unit(34057, "lb"),
  40799. name: "Front",
  40800. image: {
  40801. source: "./media/characters/harthos/front.svg",
  40802. extra: 1391/1339,
  40803. bottom: 13/1404
  40804. }
  40805. },
  40806. },
  40807. [
  40808. {
  40809. name: "Macro",
  40810. height: math.unit(1148, "feet"),
  40811. default: true
  40812. },
  40813. ]
  40814. ))
  40815. characterMakers.push(() => makeCharacter(
  40816. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40817. {
  40818. front: {
  40819. height: math.unit(15, "feet"),
  40820. name: "Front",
  40821. image: {
  40822. source: "./media/characters/hypatia/front.svg",
  40823. extra: 1653/1591,
  40824. bottom: 79/1732
  40825. }
  40826. },
  40827. },
  40828. [
  40829. {
  40830. name: "Normal",
  40831. height: math.unit(15, "feet")
  40832. },
  40833. {
  40834. name: "Small",
  40835. height: math.unit(300, "feet")
  40836. },
  40837. {
  40838. name: "Macro",
  40839. height: math.unit(2500, "feet"),
  40840. default: true
  40841. },
  40842. {
  40843. name: "Mega Macro",
  40844. height: math.unit(1500, "miles")
  40845. },
  40846. {
  40847. name: "Giga Macro",
  40848. height: math.unit(1.5e6, "miles")
  40849. },
  40850. ]
  40851. ))
  40852. characterMakers.push(() => makeCharacter(
  40853. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40854. {
  40855. front: {
  40856. height: math.unit(6, "feet"),
  40857. weight: math.unit(200, "lb"),
  40858. name: "Front",
  40859. image: {
  40860. source: "./media/characters/wulver/front.svg",
  40861. extra: 1724/1632,
  40862. bottom: 130/1854
  40863. }
  40864. },
  40865. frontNsfw: {
  40866. height: math.unit(6, "feet"),
  40867. weight: math.unit(200, "lb"),
  40868. name: "Front (NSFW)",
  40869. image: {
  40870. source: "./media/characters/wulver/front-nsfw.svg",
  40871. extra: 1724/1632,
  40872. bottom: 130/1854
  40873. }
  40874. },
  40875. },
  40876. [
  40877. {
  40878. name: "Human-Sized",
  40879. height: math.unit(6, "feet")
  40880. },
  40881. {
  40882. name: "Normal",
  40883. height: math.unit(4, "meters"),
  40884. default: true
  40885. },
  40886. {
  40887. name: "Large",
  40888. height: math.unit(6, "m")
  40889. },
  40890. ]
  40891. ))
  40892. characterMakers.push(() => makeCharacter(
  40893. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40894. {
  40895. front: {
  40896. height: math.unit(7, "feet"),
  40897. name: "Front",
  40898. image: {
  40899. source: "./media/characters/maru/front.svg",
  40900. extra: 1595/1570,
  40901. bottom: 0/1595
  40902. }
  40903. },
  40904. },
  40905. [
  40906. {
  40907. name: "Normal",
  40908. height: math.unit(7, "feet"),
  40909. default: true
  40910. },
  40911. {
  40912. name: "Macro",
  40913. height: math.unit(700, "feet")
  40914. },
  40915. {
  40916. name: "Mega Macro",
  40917. height: math.unit(25, "miles")
  40918. },
  40919. ]
  40920. ))
  40921. characterMakers.push(() => makeCharacter(
  40922. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40923. {
  40924. front: {
  40925. height: math.unit(6, "feet"),
  40926. weight: math.unit(170, "lb"),
  40927. name: "Front",
  40928. image: {
  40929. source: "./media/characters/xenon/front.svg",
  40930. extra: 1376/1305,
  40931. bottom: 56/1432
  40932. }
  40933. },
  40934. back: {
  40935. height: math.unit(6, "feet"),
  40936. weight: math.unit(170, "lb"),
  40937. name: "Back",
  40938. image: {
  40939. source: "./media/characters/xenon/back.svg",
  40940. extra: 1328/1259,
  40941. bottom: 95/1423
  40942. }
  40943. },
  40944. maw: {
  40945. height: math.unit(0.52, "feet"),
  40946. name: "Maw",
  40947. image: {
  40948. source: "./media/characters/xenon/maw.svg"
  40949. }
  40950. },
  40951. hand: {
  40952. height: math.unit(0.82, "feet"),
  40953. name: "Hand",
  40954. image: {
  40955. source: "./media/characters/xenon/hand.svg"
  40956. }
  40957. },
  40958. foot: {
  40959. height: math.unit(1.13, "feet"),
  40960. name: "Foot",
  40961. image: {
  40962. source: "./media/characters/xenon/foot.svg"
  40963. }
  40964. },
  40965. },
  40966. [
  40967. {
  40968. name: "Micro",
  40969. height: math.unit(0.8, "inches")
  40970. },
  40971. {
  40972. name: "Normal",
  40973. height: math.unit(6, "feet")
  40974. },
  40975. {
  40976. name: "Macro",
  40977. height: math.unit(50, "feet"),
  40978. default: true
  40979. },
  40980. {
  40981. name: "Macro+",
  40982. height: math.unit(250, "feet")
  40983. },
  40984. {
  40985. name: "Megamacro",
  40986. height: math.unit(1500, "feet")
  40987. },
  40988. ]
  40989. ))
  40990. characterMakers.push(() => makeCharacter(
  40991. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40992. {
  40993. front: {
  40994. height: math.unit(7 + 5/12, "feet"),
  40995. name: "Front",
  40996. image: {
  40997. source: "./media/characters/zane/front.svg",
  40998. extra: 1260/1203,
  40999. bottom: 94/1354
  41000. }
  41001. },
  41002. back: {
  41003. height: math.unit(5.05, "feet"),
  41004. name: "Back",
  41005. image: {
  41006. source: "./media/characters/zane/back.svg",
  41007. extra: 893/829,
  41008. bottom: 30/923
  41009. }
  41010. },
  41011. werewolf: {
  41012. height: math.unit(11, "feet"),
  41013. name: "Werewolf",
  41014. image: {
  41015. source: "./media/characters/zane/werewolf.svg",
  41016. extra: 1383/1323,
  41017. bottom: 89/1472
  41018. }
  41019. },
  41020. foot: {
  41021. height: math.unit(1.46, "feet"),
  41022. name: "Foot",
  41023. image: {
  41024. source: "./media/characters/zane/foot.svg"
  41025. }
  41026. },
  41027. footFront: {
  41028. height: math.unit(0.784, "feet"),
  41029. name: "Foot (Front)",
  41030. image: {
  41031. source: "./media/characters/zane/foot-front.svg"
  41032. }
  41033. },
  41034. dick: {
  41035. height: math.unit(1.95, "feet"),
  41036. name: "Dick",
  41037. image: {
  41038. source: "./media/characters/zane/dick.svg"
  41039. }
  41040. },
  41041. dickWerewolf: {
  41042. height: math.unit(3.77, "feet"),
  41043. name: "Dick (Werewolf)",
  41044. image: {
  41045. source: "./media/characters/zane/dick.svg"
  41046. }
  41047. },
  41048. },
  41049. [
  41050. {
  41051. name: "Normal",
  41052. height: math.unit(7 + 5/12, "feet"),
  41053. default: true
  41054. },
  41055. ]
  41056. ))
  41057. characterMakers.push(() => makeCharacter(
  41058. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41059. {
  41060. front: {
  41061. height: math.unit(6 + 2/12, "feet"),
  41062. weight: math.unit(284, "lb"),
  41063. name: "Front",
  41064. image: {
  41065. source: "./media/characters/benni-desparque/front.svg",
  41066. extra: 1353/1126,
  41067. bottom: 69/1422
  41068. }
  41069. },
  41070. },
  41071. [
  41072. {
  41073. name: "Civilian",
  41074. height: math.unit(6 + 2/12, "feet")
  41075. },
  41076. {
  41077. name: "Normal",
  41078. height: math.unit(98, "feet"),
  41079. default: true
  41080. },
  41081. {
  41082. name: "Kaiju Fighter",
  41083. height: math.unit(268, "feet")
  41084. },
  41085. ]
  41086. ))
  41087. characterMakers.push(() => makeCharacter(
  41088. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41089. {
  41090. front: {
  41091. height: math.unit(5, "feet"),
  41092. weight: math.unit(105, "lb"),
  41093. name: "Front",
  41094. image: {
  41095. source: "./media/characters/maxine/front.svg",
  41096. extra: 1386/1250,
  41097. bottom: 71/1457
  41098. }
  41099. },
  41100. },
  41101. [
  41102. {
  41103. name: "Normal",
  41104. height: math.unit(5, "feet"),
  41105. default: true
  41106. },
  41107. ]
  41108. ))
  41109. characterMakers.push(() => makeCharacter(
  41110. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41111. {
  41112. front: {
  41113. height: math.unit(11 + 7/12, "feet"),
  41114. weight: math.unit(9576, "lb"),
  41115. name: "Front",
  41116. image: {
  41117. source: "./media/characters/scaly/front.svg",
  41118. extra: 888/867,
  41119. bottom: 36/924
  41120. }
  41121. },
  41122. },
  41123. [
  41124. {
  41125. name: "Normal",
  41126. height: math.unit(11 + 7/12, "feet"),
  41127. default: true
  41128. },
  41129. ]
  41130. ))
  41131. characterMakers.push(() => makeCharacter(
  41132. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41133. {
  41134. front: {
  41135. height: math.unit(6 + 3/12, "feet"),
  41136. name: "Front",
  41137. image: {
  41138. source: "./media/characters/saelria/front.svg",
  41139. extra: 1243/1138,
  41140. bottom: 46/1289
  41141. }
  41142. },
  41143. },
  41144. [
  41145. {
  41146. name: "Micro",
  41147. height: math.unit(6, "inches"),
  41148. },
  41149. {
  41150. name: "Normal",
  41151. height: math.unit(6 + 3/12, "feet"),
  41152. default: true
  41153. },
  41154. {
  41155. name: "Macro",
  41156. height: math.unit(25, "feet")
  41157. },
  41158. ]
  41159. ))
  41160. characterMakers.push(() => makeCharacter(
  41161. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41162. {
  41163. front: {
  41164. height: math.unit(80, "meters"),
  41165. weight: math.unit(7000, "tonnes"),
  41166. name: "Front",
  41167. image: {
  41168. source: "./media/characters/tef/front.svg",
  41169. extra: 2036/1991,
  41170. bottom: 54/2090
  41171. }
  41172. },
  41173. back: {
  41174. height: math.unit(80, "meters"),
  41175. weight: math.unit(7000, "tonnes"),
  41176. name: "Back",
  41177. image: {
  41178. source: "./media/characters/tef/back.svg",
  41179. extra: 2036/1991,
  41180. bottom: 54/2090
  41181. }
  41182. },
  41183. },
  41184. [
  41185. {
  41186. name: "Macro",
  41187. height: math.unit(80, "meters"),
  41188. default: true
  41189. },
  41190. ]
  41191. ))
  41192. characterMakers.push(() => makeCharacter(
  41193. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41194. {
  41195. front: {
  41196. height: math.unit(13, "feet"),
  41197. weight: math.unit(6, "tons"),
  41198. name: "Front",
  41199. image: {
  41200. source: "./media/characters/rover/front.svg",
  41201. extra: 1233/1156,
  41202. bottom: 50/1283
  41203. }
  41204. },
  41205. back: {
  41206. height: math.unit(13, "feet"),
  41207. weight: math.unit(6, "tons"),
  41208. name: "Back",
  41209. image: {
  41210. source: "./media/characters/rover/back.svg",
  41211. extra: 1327/1258,
  41212. bottom: 39/1366
  41213. }
  41214. },
  41215. },
  41216. [
  41217. {
  41218. name: "Normal",
  41219. height: math.unit(13, "feet"),
  41220. default: true
  41221. },
  41222. {
  41223. name: "Macro",
  41224. height: math.unit(1300, "feet")
  41225. },
  41226. {
  41227. name: "Megamacro",
  41228. height: math.unit(1300, "miles")
  41229. },
  41230. {
  41231. name: "Gigamacro",
  41232. height: math.unit(1300000, "miles")
  41233. },
  41234. ]
  41235. ))
  41236. characterMakers.push(() => makeCharacter(
  41237. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41238. {
  41239. front: {
  41240. height: math.unit(6, "feet"),
  41241. weight: math.unit(150, "lb"),
  41242. name: "Front",
  41243. image: {
  41244. source: "./media/characters/ariz/front.svg",
  41245. extra: 1401/1346,
  41246. bottom: 5/1406
  41247. }
  41248. },
  41249. },
  41250. [
  41251. {
  41252. name: "Normal",
  41253. height: math.unit(10, "feet"),
  41254. default: true
  41255. },
  41256. ]
  41257. ))
  41258. characterMakers.push(() => makeCharacter(
  41259. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41260. {
  41261. front: {
  41262. height: math.unit(6, "feet"),
  41263. weight: math.unit(140, "lb"),
  41264. name: "Front",
  41265. image: {
  41266. source: "./media/characters/sigrun/front.svg",
  41267. extra: 1418/1359,
  41268. bottom: 27/1445
  41269. }
  41270. },
  41271. },
  41272. [
  41273. {
  41274. name: "Macro",
  41275. height: math.unit(35, "feet"),
  41276. default: true
  41277. },
  41278. ]
  41279. ))
  41280. characterMakers.push(() => makeCharacter(
  41281. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41282. {
  41283. front: {
  41284. height: math.unit(6, "feet"),
  41285. weight: math.unit(150, "lb"),
  41286. name: "Front",
  41287. image: {
  41288. source: "./media/characters/numin/front.svg",
  41289. extra: 1433/1388,
  41290. bottom: 12/1445
  41291. }
  41292. },
  41293. },
  41294. [
  41295. {
  41296. name: "Macro",
  41297. height: math.unit(21.5, "km"),
  41298. default: true
  41299. },
  41300. ]
  41301. ))
  41302. characterMakers.push(() => makeCharacter(
  41303. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41304. {
  41305. front: {
  41306. height: math.unit(6, "feet"),
  41307. weight: math.unit(463, "lb"),
  41308. name: "Front",
  41309. image: {
  41310. source: "./media/characters/melwa/front.svg",
  41311. extra: 1307/1248,
  41312. bottom: 93/1400
  41313. }
  41314. },
  41315. },
  41316. [
  41317. {
  41318. name: "Macro",
  41319. height: math.unit(50, "meters"),
  41320. default: true
  41321. },
  41322. ]
  41323. ))
  41324. characterMakers.push(() => makeCharacter(
  41325. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41326. {
  41327. front: {
  41328. height: math.unit(325, "feet"),
  41329. name: "Front",
  41330. image: {
  41331. source: "./media/characters/zorkaiju/front.svg",
  41332. extra: 1955/1814,
  41333. bottom: 40/1995
  41334. }
  41335. },
  41336. frontExtended: {
  41337. height: math.unit(325, "feet"),
  41338. name: "Front (Extended)",
  41339. image: {
  41340. source: "./media/characters/zorkaiju/front-extended.svg",
  41341. extra: 1955/1814,
  41342. bottom: 40/1995
  41343. }
  41344. },
  41345. side: {
  41346. height: math.unit(325, "feet"),
  41347. name: "Side",
  41348. image: {
  41349. source: "./media/characters/zorkaiju/side.svg",
  41350. extra: 1495/1396,
  41351. bottom: 17/1512
  41352. }
  41353. },
  41354. sideExtended: {
  41355. height: math.unit(325, "feet"),
  41356. name: "Side (Extended)",
  41357. image: {
  41358. source: "./media/characters/zorkaiju/side-extended.svg",
  41359. extra: 1495/1396,
  41360. bottom: 17/1512
  41361. }
  41362. },
  41363. back: {
  41364. height: math.unit(325, "feet"),
  41365. name: "Back",
  41366. image: {
  41367. source: "./media/characters/zorkaiju/back.svg",
  41368. extra: 1959/1821,
  41369. bottom: 31/1990
  41370. }
  41371. },
  41372. backExtended: {
  41373. height: math.unit(325, "feet"),
  41374. name: "Back (Extended)",
  41375. image: {
  41376. source: "./media/characters/zorkaiju/back-extended.svg",
  41377. extra: 1959/1821,
  41378. bottom: 31/1990
  41379. }
  41380. },
  41381. hand: {
  41382. height: math.unit(58.4, "feet"),
  41383. name: "Hand",
  41384. image: {
  41385. source: "./media/characters/zorkaiju/hand.svg"
  41386. }
  41387. },
  41388. handExtended: {
  41389. height: math.unit(61.4, "feet"),
  41390. name: "Hand (Extended)",
  41391. image: {
  41392. source: "./media/characters/zorkaiju/hand-extended.svg"
  41393. }
  41394. },
  41395. foot: {
  41396. height: math.unit(95, "feet"),
  41397. name: "Foot",
  41398. image: {
  41399. source: "./media/characters/zorkaiju/foot.svg"
  41400. }
  41401. },
  41402. leftArm: {
  41403. height: math.unit(59, "feet"),
  41404. name: "Left Arm",
  41405. image: {
  41406. source: "./media/characters/zorkaiju/left-arm.svg"
  41407. }
  41408. },
  41409. rightArm: {
  41410. height: math.unit(59, "feet"),
  41411. name: "Right Arm",
  41412. image: {
  41413. source: "./media/characters/zorkaiju/right-arm.svg"
  41414. }
  41415. },
  41416. tail: {
  41417. height: math.unit(104, "feet"),
  41418. name: "Tail",
  41419. image: {
  41420. source: "./media/characters/zorkaiju/tail.svg"
  41421. }
  41422. },
  41423. tailExtended: {
  41424. height: math.unit(104, "feet"),
  41425. name: "Tail (Extended)",
  41426. image: {
  41427. source: "./media/characters/zorkaiju/tail-extended.svg"
  41428. }
  41429. },
  41430. tailBottom: {
  41431. height: math.unit(104, "feet"),
  41432. name: "Tail Bottom",
  41433. image: {
  41434. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41435. }
  41436. },
  41437. crystal: {
  41438. height: math.unit(27.54, "feet"),
  41439. name: "Crystal",
  41440. image: {
  41441. source: "./media/characters/zorkaiju/crystal.svg"
  41442. }
  41443. },
  41444. },
  41445. [
  41446. {
  41447. name: "Kaiju",
  41448. height: math.unit(325, "feet"),
  41449. default: true
  41450. },
  41451. ]
  41452. ))
  41453. characterMakers.push(() => makeCharacter(
  41454. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41455. {
  41456. front: {
  41457. height: math.unit(6 + 1/12, "feet"),
  41458. weight: math.unit(115, "lb"),
  41459. name: "Front",
  41460. image: {
  41461. source: "./media/characters/bailey-belfry/front.svg",
  41462. extra: 1240/1121,
  41463. bottom: 101/1341
  41464. }
  41465. },
  41466. },
  41467. [
  41468. {
  41469. name: "Normal",
  41470. height: math.unit(6 + 1/12, "feet"),
  41471. default: true
  41472. },
  41473. ]
  41474. ))
  41475. characterMakers.push(() => makeCharacter(
  41476. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41477. {
  41478. side: {
  41479. height: math.unit(4, "meters"),
  41480. weight: math.unit(250, "kg"),
  41481. name: "Side",
  41482. image: {
  41483. source: "./media/characters/blacky/side.svg",
  41484. extra: 1027/919,
  41485. bottom: 43/1070
  41486. }
  41487. },
  41488. maw: {
  41489. height: math.unit(1, "meters"),
  41490. name: "Maw",
  41491. image: {
  41492. source: "./media/characters/blacky/maw.svg"
  41493. }
  41494. },
  41495. paw: {
  41496. height: math.unit(1, "meters"),
  41497. name: "Paw",
  41498. image: {
  41499. source: "./media/characters/blacky/paw.svg"
  41500. }
  41501. },
  41502. },
  41503. [
  41504. {
  41505. name: "Normal",
  41506. height: math.unit(4, "meters"),
  41507. default: true
  41508. },
  41509. ]
  41510. ))
  41511. characterMakers.push(() => makeCharacter(
  41512. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41513. {
  41514. front: {
  41515. height: math.unit(170, "cm"),
  41516. weight: math.unit(66, "kg"),
  41517. name: "Front",
  41518. image: {
  41519. source: "./media/characters/thux-ei/front.svg",
  41520. extra: 1109/1011,
  41521. bottom: 8/1117
  41522. }
  41523. },
  41524. },
  41525. [
  41526. {
  41527. name: "Normal",
  41528. height: math.unit(170, "cm"),
  41529. default: true
  41530. },
  41531. ]
  41532. ))
  41533. characterMakers.push(() => makeCharacter(
  41534. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41535. {
  41536. front: {
  41537. height: math.unit(5, "feet"),
  41538. weight: math.unit(120, "lb"),
  41539. name: "Front",
  41540. image: {
  41541. source: "./media/characters/roxanne-voltaire/front.svg",
  41542. extra: 1901/1779,
  41543. bottom: 53/1954
  41544. }
  41545. },
  41546. },
  41547. [
  41548. {
  41549. name: "Normal",
  41550. height: math.unit(5, "feet"),
  41551. default: true
  41552. },
  41553. {
  41554. name: "Giant",
  41555. height: math.unit(50, "feet")
  41556. },
  41557. {
  41558. name: "Titan",
  41559. height: math.unit(500, "feet")
  41560. },
  41561. {
  41562. name: "Macro",
  41563. height: math.unit(5000, "feet")
  41564. },
  41565. {
  41566. name: "Megamacro",
  41567. height: math.unit(50000, "feet")
  41568. },
  41569. {
  41570. name: "Gigamacro",
  41571. height: math.unit(500000, "feet")
  41572. },
  41573. {
  41574. name: "Teramacro",
  41575. height: math.unit(5e6, "feet")
  41576. },
  41577. ]
  41578. ))
  41579. characterMakers.push(() => makeCharacter(
  41580. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41581. {
  41582. front: {
  41583. height: math.unit(6 + 2/12, "feet"),
  41584. name: "Front",
  41585. image: {
  41586. source: "./media/characters/squeaks/front.svg",
  41587. extra: 1823/1768,
  41588. bottom: 138/1961
  41589. }
  41590. },
  41591. },
  41592. [
  41593. {
  41594. name: "Micro",
  41595. height: math.unit(0.5, "inches")
  41596. },
  41597. {
  41598. name: "Normal",
  41599. height: math.unit(6 + 2/12, "feet"),
  41600. default: true
  41601. },
  41602. {
  41603. name: "Macro",
  41604. height: math.unit(600, "feet")
  41605. },
  41606. ]
  41607. ))
  41608. characterMakers.push(() => makeCharacter(
  41609. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41610. {
  41611. front: {
  41612. height: math.unit(1.72, "meters"),
  41613. name: "Front",
  41614. image: {
  41615. source: "./media/characters/archinger/front.svg",
  41616. extra: 1861/1675,
  41617. bottom: 125/1986
  41618. }
  41619. },
  41620. back: {
  41621. height: math.unit(1.72, "meters"),
  41622. name: "Back",
  41623. image: {
  41624. source: "./media/characters/archinger/back.svg",
  41625. extra: 1844/1701,
  41626. bottom: 104/1948
  41627. }
  41628. },
  41629. cock: {
  41630. height: math.unit(0.59, "feet"),
  41631. name: "Cock",
  41632. image: {
  41633. source: "./media/characters/archinger/cock.svg"
  41634. }
  41635. },
  41636. },
  41637. [
  41638. {
  41639. name: "Normal",
  41640. height: math.unit(1.72, "meters"),
  41641. default: true
  41642. },
  41643. {
  41644. name: "Macro",
  41645. height: math.unit(84, "meters")
  41646. },
  41647. {
  41648. name: "Macro+",
  41649. height: math.unit(112, "meters")
  41650. },
  41651. {
  41652. name: "Macro++",
  41653. height: math.unit(960, "meters")
  41654. },
  41655. {
  41656. name: "Macro+++",
  41657. height: math.unit(4, "km")
  41658. },
  41659. {
  41660. name: "Macro++++",
  41661. height: math.unit(48, "km")
  41662. },
  41663. {
  41664. name: "Macro+++++",
  41665. height: math.unit(4500, "km")
  41666. },
  41667. ]
  41668. ))
  41669. characterMakers.push(() => makeCharacter(
  41670. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41671. {
  41672. front: {
  41673. height: math.unit(5 + 5/12, "feet"),
  41674. name: "Front",
  41675. image: {
  41676. source: "./media/characters/alsnapz/front.svg",
  41677. extra: 1157/1065,
  41678. bottom: 42/1199
  41679. }
  41680. },
  41681. },
  41682. [
  41683. {
  41684. name: "Normal",
  41685. height: math.unit(5 + 5/12, "feet"),
  41686. default: true
  41687. },
  41688. ]
  41689. ))
  41690. characterMakers.push(() => makeCharacter(
  41691. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41692. {
  41693. side: {
  41694. height: math.unit(3.2, "earths"),
  41695. name: "Side",
  41696. image: {
  41697. source: "./media/characters/mag/side.svg",
  41698. extra: 1331/1008,
  41699. bottom: 52/1383
  41700. }
  41701. },
  41702. wing: {
  41703. height: math.unit(1.94, "earths"),
  41704. name: "Wing",
  41705. image: {
  41706. source: "./media/characters/mag/wing.svg"
  41707. }
  41708. },
  41709. dick: {
  41710. height: math.unit(1.8, "earths"),
  41711. name: "Dick",
  41712. image: {
  41713. source: "./media/characters/mag/dick.svg"
  41714. }
  41715. },
  41716. ass: {
  41717. height: math.unit(1.33, "earths"),
  41718. name: "Ass",
  41719. image: {
  41720. source: "./media/characters/mag/ass.svg"
  41721. }
  41722. },
  41723. head: {
  41724. height: math.unit(1.1, "earths"),
  41725. name: "Head",
  41726. image: {
  41727. source: "./media/characters/mag/head.svg"
  41728. }
  41729. },
  41730. maw: {
  41731. height: math.unit(1.62, "earths"),
  41732. name: "Maw",
  41733. image: {
  41734. source: "./media/characters/mag/maw.svg"
  41735. }
  41736. },
  41737. },
  41738. [
  41739. {
  41740. name: "Small",
  41741. height: math.unit(162, "feet")
  41742. },
  41743. {
  41744. name: "Normal",
  41745. height: math.unit(3.2, "earths"),
  41746. default: true
  41747. },
  41748. ]
  41749. ))
  41750. characterMakers.push(() => makeCharacter(
  41751. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41752. {
  41753. front: {
  41754. height: math.unit(512, "feet"),
  41755. weight: math.unit(63509, "tonnes"),
  41756. name: "Front",
  41757. image: {
  41758. source: "./media/characters/vorrel-harroc/front.svg",
  41759. extra: 1075/1063,
  41760. bottom: 62/1137
  41761. }
  41762. },
  41763. },
  41764. [
  41765. {
  41766. name: "Normal",
  41767. height: math.unit(10, "feet")
  41768. },
  41769. {
  41770. name: "Macro",
  41771. height: math.unit(512, "feet"),
  41772. default: true
  41773. },
  41774. {
  41775. name: "Megamacro",
  41776. height: math.unit(256, "miles")
  41777. },
  41778. {
  41779. name: "Gigamacro",
  41780. height: math.unit(4096, "miles")
  41781. },
  41782. ]
  41783. ))
  41784. characterMakers.push(() => makeCharacter(
  41785. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41786. {
  41787. side: {
  41788. height: math.unit(50, "feet"),
  41789. name: "Side",
  41790. image: {
  41791. source: "./media/characters/froimar/side.svg",
  41792. extra: 855/638,
  41793. bottom: 99/954
  41794. }
  41795. },
  41796. },
  41797. [
  41798. {
  41799. name: "Macro",
  41800. height: math.unit(50, "feet"),
  41801. default: true
  41802. },
  41803. ]
  41804. ))
  41805. characterMakers.push(() => makeCharacter(
  41806. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41807. {
  41808. front: {
  41809. height: math.unit(210, "miles"),
  41810. name: "Front",
  41811. image: {
  41812. source: "./media/characters/timothy/front.svg",
  41813. extra: 1007/943,
  41814. bottom: 62/1069
  41815. }
  41816. },
  41817. frontSkirt: {
  41818. height: math.unit(210, "miles"),
  41819. name: "Front (Skirt)",
  41820. image: {
  41821. source: "./media/characters/timothy/front-skirt.svg",
  41822. extra: 1007/943,
  41823. bottom: 62/1069
  41824. }
  41825. },
  41826. frontCoat: {
  41827. height: math.unit(210, "miles"),
  41828. name: "Front (Coat)",
  41829. image: {
  41830. source: "./media/characters/timothy/front-coat.svg",
  41831. extra: 1007/943,
  41832. bottom: 62/1069
  41833. }
  41834. },
  41835. },
  41836. [
  41837. {
  41838. name: "Macro",
  41839. height: math.unit(210, "miles"),
  41840. default: true
  41841. },
  41842. {
  41843. name: "Megamacro",
  41844. height: math.unit(210000, "miles")
  41845. },
  41846. ]
  41847. ))
  41848. characterMakers.push(() => makeCharacter(
  41849. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41850. {
  41851. front: {
  41852. height: math.unit(188, "feet"),
  41853. name: "Front",
  41854. image: {
  41855. source: "./media/characters/pyotr/front.svg",
  41856. extra: 1912/1826,
  41857. bottom: 18/1930
  41858. }
  41859. },
  41860. },
  41861. [
  41862. {
  41863. name: "Macro",
  41864. height: math.unit(188, "feet"),
  41865. default: true
  41866. },
  41867. {
  41868. name: "Megamacro",
  41869. height: math.unit(8, "miles")
  41870. },
  41871. ]
  41872. ))
  41873. characterMakers.push(() => makeCharacter(
  41874. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41875. {
  41876. side: {
  41877. height: math.unit(10, "feet"),
  41878. weight: math.unit(4500, "lb"),
  41879. name: "Side",
  41880. image: {
  41881. source: "./media/characters/ackart/side.svg",
  41882. extra: 1776/1668,
  41883. bottom: 116/1892
  41884. }
  41885. },
  41886. },
  41887. [
  41888. {
  41889. name: "Normal",
  41890. height: math.unit(10, "feet"),
  41891. default: true
  41892. },
  41893. ]
  41894. ))
  41895. characterMakers.push(() => makeCharacter(
  41896. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41897. {
  41898. side: {
  41899. height: math.unit(21, "feet"),
  41900. name: "Side",
  41901. image: {
  41902. source: "./media/characters/nolow/side.svg",
  41903. extra: 1484/1434,
  41904. bottom: 85/1569
  41905. }
  41906. },
  41907. sideErect: {
  41908. height: math.unit(21, "feet"),
  41909. name: "Side-erect",
  41910. image: {
  41911. source: "./media/characters/nolow/side-erect.svg",
  41912. extra: 1484/1434,
  41913. bottom: 85/1569
  41914. }
  41915. },
  41916. },
  41917. [
  41918. {
  41919. name: "Regular",
  41920. height: math.unit(12, "feet")
  41921. },
  41922. {
  41923. name: "Big Chee",
  41924. height: math.unit(21, "feet"),
  41925. default: true
  41926. },
  41927. ]
  41928. ))
  41929. characterMakers.push(() => makeCharacter(
  41930. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41931. {
  41932. front: {
  41933. height: math.unit(7, "feet"),
  41934. weight: math.unit(250, "lb"),
  41935. name: "Front",
  41936. image: {
  41937. source: "./media/characters/nines/front.svg",
  41938. extra: 1741/1607,
  41939. bottom: 41/1782
  41940. }
  41941. },
  41942. side: {
  41943. height: math.unit(7, "feet"),
  41944. weight: math.unit(250, "lb"),
  41945. name: "Side",
  41946. image: {
  41947. source: "./media/characters/nines/side.svg",
  41948. extra: 1854/1735,
  41949. bottom: 93/1947
  41950. }
  41951. },
  41952. back: {
  41953. height: math.unit(7, "feet"),
  41954. weight: math.unit(250, "lb"),
  41955. name: "Back",
  41956. image: {
  41957. source: "./media/characters/nines/back.svg",
  41958. extra: 1748/1615,
  41959. bottom: 20/1768
  41960. }
  41961. },
  41962. },
  41963. [
  41964. {
  41965. name: "Megamacro",
  41966. height: math.unit(99, "km"),
  41967. default: true
  41968. },
  41969. ]
  41970. ))
  41971. characterMakers.push(() => makeCharacter(
  41972. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41973. {
  41974. front: {
  41975. height: math.unit(5 + 10/12, "feet"),
  41976. weight: math.unit(210, "lb"),
  41977. name: "Front",
  41978. image: {
  41979. source: "./media/characters/zenith/front.svg",
  41980. extra: 1531/1452,
  41981. bottom: 198/1729
  41982. }
  41983. },
  41984. back: {
  41985. height: math.unit(5 + 10/12, "feet"),
  41986. weight: math.unit(210, "lb"),
  41987. name: "Back",
  41988. image: {
  41989. source: "./media/characters/zenith/back.svg",
  41990. extra: 1571/1487,
  41991. bottom: 75/1646
  41992. }
  41993. },
  41994. },
  41995. [
  41996. {
  41997. name: "Normal",
  41998. height: math.unit(5 + 10/12, "feet"),
  41999. default: true
  42000. }
  42001. ]
  42002. ))
  42003. characterMakers.push(() => makeCharacter(
  42004. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42005. {
  42006. front: {
  42007. height: math.unit(4, "feet"),
  42008. weight: math.unit(60, "lb"),
  42009. name: "Front",
  42010. image: {
  42011. source: "./media/characters/jasper/front.svg",
  42012. extra: 1450/1379,
  42013. bottom: 19/1469
  42014. }
  42015. },
  42016. },
  42017. [
  42018. {
  42019. name: "Normal",
  42020. height: math.unit(4, "feet"),
  42021. default: true
  42022. },
  42023. ]
  42024. ))
  42025. characterMakers.push(() => makeCharacter(
  42026. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42027. {
  42028. front: {
  42029. height: math.unit(6 + 5/12, "feet"),
  42030. weight: math.unit(290, "lb"),
  42031. name: "Front",
  42032. image: {
  42033. source: "./media/characters/tiberius-thyben/front.svg",
  42034. extra: 757/739,
  42035. bottom: 39/796
  42036. }
  42037. },
  42038. },
  42039. [
  42040. {
  42041. name: "Micro",
  42042. height: math.unit(1.5, "inches")
  42043. },
  42044. {
  42045. name: "Normal",
  42046. height: math.unit(6 + 5/12, "feet"),
  42047. default: true
  42048. },
  42049. {
  42050. name: "Macro",
  42051. height: math.unit(300, "feet")
  42052. },
  42053. ]
  42054. ))
  42055. characterMakers.push(() => makeCharacter(
  42056. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42057. {
  42058. front: {
  42059. height: math.unit(5 + 6/12, "feet"),
  42060. weight: math.unit(60, "kg"),
  42061. name: "Front",
  42062. image: {
  42063. source: "./media/characters/sabre/front.svg",
  42064. extra: 738/671,
  42065. bottom: 27/765
  42066. }
  42067. },
  42068. },
  42069. [
  42070. {
  42071. name: "Teeny",
  42072. height: math.unit(2, "inches")
  42073. },
  42074. {
  42075. name: "Smol",
  42076. height: math.unit(8, "inches")
  42077. },
  42078. {
  42079. name: "Normal",
  42080. height: math.unit(5 + 6/12, "feet"),
  42081. default: true
  42082. },
  42083. {
  42084. name: "Mini-Macro",
  42085. height: math.unit(15, "feet")
  42086. },
  42087. {
  42088. name: "Macro",
  42089. height: math.unit(50, "feet")
  42090. },
  42091. ]
  42092. ))
  42093. characterMakers.push(() => makeCharacter(
  42094. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42095. {
  42096. front: {
  42097. height: math.unit(6 + 4/12, "feet"),
  42098. weight: math.unit(170, "lb"),
  42099. name: "Front",
  42100. image: {
  42101. source: "./media/characters/charlie/front.svg",
  42102. extra: 1348/1228,
  42103. bottom: 15/1363
  42104. }
  42105. },
  42106. },
  42107. [
  42108. {
  42109. name: "Macro",
  42110. height: math.unit(1700, "meters"),
  42111. default: true
  42112. },
  42113. {
  42114. name: "MegaMacro",
  42115. height: math.unit(20400, "meters")
  42116. },
  42117. ]
  42118. ))
  42119. characterMakers.push(() => makeCharacter(
  42120. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42121. {
  42122. front: {
  42123. height: math.unit(6 + 3/12, "feet"),
  42124. weight: math.unit(185, "lb"),
  42125. name: "Front",
  42126. image: {
  42127. source: "./media/characters/susan-grant/front.svg",
  42128. extra: 1351/1327,
  42129. bottom: 26/1377
  42130. }
  42131. },
  42132. },
  42133. [
  42134. {
  42135. name: "Normal",
  42136. height: math.unit(6 + 3/12, "feet"),
  42137. default: true
  42138. },
  42139. {
  42140. name: "Macro",
  42141. height: math.unit(225, "feet")
  42142. },
  42143. {
  42144. name: "Macro+",
  42145. height: math.unit(900, "feet")
  42146. },
  42147. {
  42148. name: "MegaMacro",
  42149. height: math.unit(14400, "feet")
  42150. },
  42151. ]
  42152. ))
  42153. characterMakers.push(() => makeCharacter(
  42154. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42155. {
  42156. front: {
  42157. height: math.unit(5 + 4/12, "feet"),
  42158. weight: math.unit(110, "lb"),
  42159. name: "Front",
  42160. image: {
  42161. source: "./media/characters/axel-isanov/front.svg",
  42162. extra: 1096/1065,
  42163. bottom: 13/1109
  42164. }
  42165. },
  42166. },
  42167. [
  42168. {
  42169. name: "Normal",
  42170. height: math.unit(5 + 4/12, "feet"),
  42171. default: true
  42172. },
  42173. ]
  42174. ))
  42175. characterMakers.push(() => makeCharacter(
  42176. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42177. {
  42178. front: {
  42179. height: math.unit(9, "feet"),
  42180. weight: math.unit(467, "lb"),
  42181. name: "Front",
  42182. image: {
  42183. source: "./media/characters/necahual/front.svg",
  42184. extra: 920/873,
  42185. bottom: 26/946
  42186. }
  42187. },
  42188. back: {
  42189. height: math.unit(9, "feet"),
  42190. weight: math.unit(467, "lb"),
  42191. name: "Back",
  42192. image: {
  42193. source: "./media/characters/necahual/back.svg",
  42194. extra: 930/884,
  42195. bottom: 16/946
  42196. }
  42197. },
  42198. frontUnderwear: {
  42199. height: math.unit(9, "feet"),
  42200. weight: math.unit(467, "lb"),
  42201. name: "Front (Underwear)",
  42202. image: {
  42203. source: "./media/characters/necahual/front-underwear.svg",
  42204. extra: 920/873,
  42205. bottom: 26/946
  42206. }
  42207. },
  42208. frontDressed: {
  42209. height: math.unit(9, "feet"),
  42210. weight: math.unit(467, "lb"),
  42211. name: "Front (Dressed)",
  42212. image: {
  42213. source: "./media/characters/necahual/front-dressed.svg",
  42214. extra: 920/873,
  42215. bottom: 26/946
  42216. }
  42217. },
  42218. },
  42219. [
  42220. {
  42221. name: "Comprsesed",
  42222. height: math.unit(9, "feet")
  42223. },
  42224. {
  42225. name: "Natural",
  42226. height: math.unit(15, "feet"),
  42227. default: true
  42228. },
  42229. {
  42230. name: "Boosted",
  42231. height: math.unit(50, "feet")
  42232. },
  42233. {
  42234. name: "Boosted+",
  42235. height: math.unit(150, "feet")
  42236. },
  42237. {
  42238. name: "Max",
  42239. height: math.unit(500, "feet")
  42240. },
  42241. ]
  42242. ))
  42243. characterMakers.push(() => makeCharacter(
  42244. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42245. {
  42246. front: {
  42247. height: math.unit(22 + 1/12, "feet"),
  42248. weight: math.unit(3200, "lb"),
  42249. name: "Front",
  42250. image: {
  42251. source: "./media/characters/theo-acacia/front.svg",
  42252. extra: 1796/1741,
  42253. bottom: 83/1879
  42254. }
  42255. },
  42256. frontUnderwear: {
  42257. height: math.unit(22 + 1/12, "feet"),
  42258. weight: math.unit(3200, "lb"),
  42259. name: "Front (Underwear)",
  42260. image: {
  42261. source: "./media/characters/theo-acacia/front-underwear.svg",
  42262. extra: 1796/1741,
  42263. bottom: 83/1879
  42264. }
  42265. },
  42266. frontNude: {
  42267. height: math.unit(22 + 1/12, "feet"),
  42268. weight: math.unit(3200, "lb"),
  42269. name: "Front (Nude)",
  42270. image: {
  42271. source: "./media/characters/theo-acacia/front-nude.svg",
  42272. extra: 1796/1741,
  42273. bottom: 83/1879
  42274. }
  42275. },
  42276. },
  42277. [
  42278. {
  42279. name: "Normal",
  42280. height: math.unit(22 + 1/12, "feet"),
  42281. default: true
  42282. },
  42283. ]
  42284. ))
  42285. characterMakers.push(() => makeCharacter(
  42286. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42287. {
  42288. front: {
  42289. height: math.unit(20, "feet"),
  42290. name: "Front",
  42291. image: {
  42292. source: "./media/characters/astra/front.svg",
  42293. extra: 1850/1714,
  42294. bottom: 106/1956
  42295. }
  42296. },
  42297. frontUndressed: {
  42298. height: math.unit(20, "feet"),
  42299. name: "Front (Undressed)",
  42300. image: {
  42301. source: "./media/characters/astra/front-undressed.svg",
  42302. extra: 1926/1749,
  42303. bottom: 0/1926
  42304. }
  42305. },
  42306. hand: {
  42307. height: math.unit(1.53, "feet"),
  42308. name: "Hand",
  42309. image: {
  42310. source: "./media/characters/astra/hand.svg"
  42311. }
  42312. },
  42313. paw: {
  42314. height: math.unit(1.53, "feet"),
  42315. name: "Paw",
  42316. image: {
  42317. source: "./media/characters/astra/paw.svg"
  42318. }
  42319. },
  42320. },
  42321. [
  42322. {
  42323. name: "Smallest",
  42324. height: math.unit(20, "feet")
  42325. },
  42326. {
  42327. name: "Normal",
  42328. height: math.unit(1e9, "miles"),
  42329. default: true
  42330. },
  42331. {
  42332. name: "Larger",
  42333. height: math.unit(5, "multiverses")
  42334. },
  42335. {
  42336. name: "Largest",
  42337. height: math.unit(1e9, "multiverses")
  42338. },
  42339. ]
  42340. ))
  42341. characterMakers.push(() => makeCharacter(
  42342. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42343. {
  42344. front: {
  42345. height: math.unit(8, "feet"),
  42346. name: "Front",
  42347. image: {
  42348. source: "./media/characters/breanna/front.svg",
  42349. extra: 1912/1632,
  42350. bottom: 33/1945
  42351. }
  42352. },
  42353. },
  42354. [
  42355. {
  42356. name: "Smallest",
  42357. height: math.unit(8, "feet")
  42358. },
  42359. {
  42360. name: "Normal",
  42361. height: math.unit(1, "mile"),
  42362. default: true
  42363. },
  42364. {
  42365. name: "Maximum",
  42366. height: math.unit(1500000000000, "lightyears")
  42367. },
  42368. ]
  42369. ))
  42370. characterMakers.push(() => makeCharacter(
  42371. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42372. {
  42373. front: {
  42374. height: math.unit(5 + 11/12, "feet"),
  42375. weight: math.unit(155, "lb"),
  42376. name: "Front",
  42377. image: {
  42378. source: "./media/characters/cai/front.svg",
  42379. extra: 1823/1702,
  42380. bottom: 32/1855
  42381. }
  42382. },
  42383. back: {
  42384. height: math.unit(5 + 11/12, "feet"),
  42385. weight: math.unit(155, "lb"),
  42386. name: "Back",
  42387. image: {
  42388. source: "./media/characters/cai/back.svg",
  42389. extra: 1809/1708,
  42390. bottom: 31/1840
  42391. }
  42392. },
  42393. },
  42394. [
  42395. {
  42396. name: "Normal",
  42397. height: math.unit(5 + 11/12, "feet"),
  42398. default: true
  42399. },
  42400. {
  42401. name: "Big",
  42402. height: math.unit(15, "feet")
  42403. },
  42404. {
  42405. name: "Macro",
  42406. height: math.unit(200, "feet")
  42407. },
  42408. ]
  42409. ))
  42410. characterMakers.push(() => makeCharacter(
  42411. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42412. {
  42413. front: {
  42414. height: math.unit(5 + 6/12, "feet"),
  42415. weight: math.unit(160, "lb"),
  42416. name: "Front",
  42417. image: {
  42418. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42419. extra: 1227/1174,
  42420. bottom: 37/1264
  42421. }
  42422. },
  42423. },
  42424. [
  42425. {
  42426. name: "Macro",
  42427. height: math.unit(444, "meters"),
  42428. default: true
  42429. },
  42430. ]
  42431. ))
  42432. characterMakers.push(() => makeCharacter(
  42433. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42434. {
  42435. front: {
  42436. height: math.unit(18 + 7/12, "feet"),
  42437. name: "Front",
  42438. image: {
  42439. source: "./media/characters/rex/front.svg",
  42440. extra: 1941/1807,
  42441. bottom: 66/2007
  42442. }
  42443. },
  42444. back: {
  42445. height: math.unit(18 + 7/12, "feet"),
  42446. name: "Back",
  42447. image: {
  42448. source: "./media/characters/rex/back.svg",
  42449. extra: 1937/1822,
  42450. bottom: 42/1979
  42451. }
  42452. },
  42453. boot: {
  42454. height: math.unit(3.45, "feet"),
  42455. name: "Boot",
  42456. image: {
  42457. source: "./media/characters/rex/boot.svg"
  42458. }
  42459. },
  42460. paw: {
  42461. height: math.unit(4.17, "feet"),
  42462. name: "Paw",
  42463. image: {
  42464. source: "./media/characters/rex/paw.svg"
  42465. }
  42466. },
  42467. head: {
  42468. height: math.unit(6.728, "feet"),
  42469. name: "Head",
  42470. image: {
  42471. source: "./media/characters/rex/head.svg"
  42472. }
  42473. },
  42474. },
  42475. [
  42476. {
  42477. name: "Nano",
  42478. height: math.unit(18 + 7/12, "feet")
  42479. },
  42480. {
  42481. name: "Micro",
  42482. height: math.unit(1.5, "megameters")
  42483. },
  42484. {
  42485. name: "Normal",
  42486. height: math.unit(440, "megameters"),
  42487. default: true
  42488. },
  42489. {
  42490. name: "Macro",
  42491. height: math.unit(2.5, "gigameters")
  42492. },
  42493. {
  42494. name: "Gigamacro",
  42495. height: math.unit(2, "galaxies")
  42496. },
  42497. ]
  42498. ))
  42499. characterMakers.push(() => makeCharacter(
  42500. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42501. {
  42502. side: {
  42503. height: math.unit(32, "feet"),
  42504. weight: math.unit(250000, "lb"),
  42505. name: "Side",
  42506. image: {
  42507. source: "./media/characters/silverwing/side.svg",
  42508. extra: 1100/1019,
  42509. bottom: 204/1304
  42510. }
  42511. },
  42512. },
  42513. [
  42514. {
  42515. name: "Normal",
  42516. height: math.unit(32, "feet"),
  42517. default: true
  42518. },
  42519. ]
  42520. ))
  42521. characterMakers.push(() => makeCharacter(
  42522. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42523. {
  42524. front: {
  42525. height: math.unit(6 + 6/12, "feet"),
  42526. weight: math.unit(350, "lb"),
  42527. name: "Front",
  42528. image: {
  42529. source: "./media/characters/tristan-hawthorne/front.svg",
  42530. extra: 1159/1124,
  42531. bottom: 37/1196
  42532. },
  42533. form: "labrador",
  42534. default: true
  42535. },
  42536. skunkFront: {
  42537. height: math.unit(4 + 6/12, "feet"),
  42538. weight: math.unit(120, "lb"),
  42539. name: "Front",
  42540. image: {
  42541. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42542. extra: 1609/1551,
  42543. bottom: 169/1778
  42544. },
  42545. form: "skunk",
  42546. default: true
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Normal",
  42552. height: math.unit(6 + 6/12, "feet"),
  42553. form: "labrador",
  42554. default: true
  42555. },
  42556. {
  42557. name: "Normal",
  42558. height: math.unit(4 + 6/12, "feet"),
  42559. form: "skunk",
  42560. default: true
  42561. },
  42562. ],
  42563. {
  42564. "labrador": {
  42565. name: "Labrador",
  42566. default: true
  42567. },
  42568. "skunk": {
  42569. name: "Skunk"
  42570. }
  42571. }
  42572. ))
  42573. characterMakers.push(() => makeCharacter(
  42574. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42575. {
  42576. front: {
  42577. height: math.unit(5 + 11/12, "feet"),
  42578. weight: math.unit(190, "lb"),
  42579. name: "Front",
  42580. image: {
  42581. source: "./media/characters/mizu/front.svg",
  42582. extra: 1988/1788,
  42583. bottom: 14/2002
  42584. }
  42585. },
  42586. },
  42587. [
  42588. {
  42589. name: "Normal",
  42590. height: math.unit(5 + 11/12, "feet"),
  42591. default: true
  42592. },
  42593. ]
  42594. ))
  42595. characterMakers.push(() => makeCharacter(
  42596. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42597. {
  42598. front: {
  42599. height: math.unit(1.7, "feet"),
  42600. weight: math.unit(50, "lb"),
  42601. name: "Front",
  42602. image: {
  42603. source: "./media/characters/dechroma/front.svg",
  42604. extra: 1095/859,
  42605. bottom: 64/1159
  42606. }
  42607. },
  42608. },
  42609. [
  42610. {
  42611. name: "Normal",
  42612. height: math.unit(1.7, "feet"),
  42613. default: true
  42614. },
  42615. ]
  42616. ))
  42617. characterMakers.push(() => makeCharacter(
  42618. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42619. {
  42620. side: {
  42621. height: math.unit(30, "feet"),
  42622. name: "Side",
  42623. image: {
  42624. source: "./media/characters/veluren-thanazel/side.svg",
  42625. extra: 1611/633,
  42626. bottom: 118/1729
  42627. }
  42628. },
  42629. front: {
  42630. height: math.unit(30, "feet"),
  42631. name: "Front",
  42632. image: {
  42633. source: "./media/characters/veluren-thanazel/front.svg",
  42634. extra: 1486/636,
  42635. bottom: 238/1724
  42636. }
  42637. },
  42638. head: {
  42639. height: math.unit(21.4, "feet"),
  42640. name: "Head",
  42641. image: {
  42642. source: "./media/characters/veluren-thanazel/head.svg"
  42643. }
  42644. },
  42645. genitals: {
  42646. height: math.unit(19.4, "feet"),
  42647. name: "Genitals",
  42648. image: {
  42649. source: "./media/characters/veluren-thanazel/genitals.svg"
  42650. }
  42651. },
  42652. },
  42653. [
  42654. {
  42655. name: "Social",
  42656. height: math.unit(6, "feet")
  42657. },
  42658. {
  42659. name: "Play",
  42660. height: math.unit(12, "feet")
  42661. },
  42662. {
  42663. name: "True",
  42664. height: math.unit(30, "feet"),
  42665. default: true
  42666. },
  42667. ]
  42668. ))
  42669. characterMakers.push(() => makeCharacter(
  42670. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42671. {
  42672. front: {
  42673. height: math.unit(7 + 6/12, "feet"),
  42674. weight: math.unit(500, "kg"),
  42675. name: "Front",
  42676. image: {
  42677. source: "./media/characters/arcturas/front.svg",
  42678. extra: 1700/1500,
  42679. bottom: 145/1845
  42680. }
  42681. },
  42682. },
  42683. [
  42684. {
  42685. name: "Normal",
  42686. height: math.unit(7 + 6/12, "feet"),
  42687. default: true
  42688. },
  42689. ]
  42690. ))
  42691. characterMakers.push(() => makeCharacter(
  42692. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42693. {
  42694. side: {
  42695. height: math.unit(6, "feet"),
  42696. weight: math.unit(2, "tons"),
  42697. name: "Side",
  42698. image: {
  42699. source: "./media/characters/vitaen/side.svg",
  42700. extra: 1157/617,
  42701. bottom: 122/1279
  42702. }
  42703. },
  42704. },
  42705. [
  42706. {
  42707. name: "Normal",
  42708. height: math.unit(6, "feet"),
  42709. default: true
  42710. },
  42711. ]
  42712. ))
  42713. characterMakers.push(() => makeCharacter(
  42714. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42715. {
  42716. front: {
  42717. height: math.unit(19, "feet"),
  42718. name: "Front",
  42719. image: {
  42720. source: "./media/characters/fia-dreamweaver/front.svg",
  42721. extra: 1630/1504,
  42722. bottom: 25/1655
  42723. }
  42724. },
  42725. },
  42726. [
  42727. {
  42728. name: "Normal",
  42729. height: math.unit(19, "feet"),
  42730. default: true
  42731. },
  42732. ]
  42733. ))
  42734. characterMakers.push(() => makeCharacter(
  42735. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42736. {
  42737. front: {
  42738. height: math.unit(5 + 4/12, "feet"),
  42739. name: "Front",
  42740. image: {
  42741. source: "./media/characters/artan/front.svg",
  42742. extra: 1618/1535,
  42743. bottom: 46/1664
  42744. }
  42745. },
  42746. back: {
  42747. height: math.unit(5 + 4/12, "feet"),
  42748. name: "Back",
  42749. image: {
  42750. source: "./media/characters/artan/back.svg",
  42751. extra: 1618/1543,
  42752. bottom: 31/1649
  42753. }
  42754. },
  42755. },
  42756. [
  42757. {
  42758. name: "Normal",
  42759. height: math.unit(5 + 4/12, "feet"),
  42760. default: true
  42761. },
  42762. ]
  42763. ))
  42764. characterMakers.push(() => makeCharacter(
  42765. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42766. {
  42767. side: {
  42768. height: math.unit(182, "cm"),
  42769. weight: math.unit(1000, "lb"),
  42770. name: "Side",
  42771. image: {
  42772. source: "./media/characters/silver-dragon/side.svg",
  42773. extra: 710/287,
  42774. bottom: 88/798
  42775. }
  42776. },
  42777. },
  42778. [
  42779. {
  42780. name: "Normal",
  42781. height: math.unit(182, "cm"),
  42782. default: true
  42783. },
  42784. ]
  42785. ))
  42786. characterMakers.push(() => makeCharacter(
  42787. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42788. {
  42789. side: {
  42790. height: math.unit(6 + 6/12, "feet"),
  42791. weight: math.unit(1.5, "tons"),
  42792. name: "Side",
  42793. image: {
  42794. source: "./media/characters/zephyr/side.svg",
  42795. extra: 1433/586,
  42796. bottom: 109/1542
  42797. }
  42798. },
  42799. },
  42800. [
  42801. {
  42802. name: "Normal",
  42803. height: math.unit(6 + 6/12, "feet"),
  42804. default: true
  42805. },
  42806. ]
  42807. ))
  42808. characterMakers.push(() => makeCharacter(
  42809. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42810. {
  42811. side: {
  42812. height: math.unit(1, "feet"),
  42813. name: "Side",
  42814. image: {
  42815. source: "./media/characters/vixye/side.svg",
  42816. extra: 632/541,
  42817. bottom: 0/632
  42818. }
  42819. },
  42820. },
  42821. [
  42822. {
  42823. name: "Normal",
  42824. height: math.unit(1, "feet"),
  42825. default: true
  42826. },
  42827. {
  42828. name: "True",
  42829. height: math.unit(1e15, "multiverses")
  42830. },
  42831. ]
  42832. ))
  42833. characterMakers.push(() => makeCharacter(
  42834. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42835. {
  42836. front: {
  42837. height: math.unit(8 + 2/12, "feet"),
  42838. weight: math.unit(650, "lb"),
  42839. name: "Front",
  42840. image: {
  42841. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42842. extra: 1174/1137,
  42843. bottom: 82/1256
  42844. }
  42845. },
  42846. back: {
  42847. height: math.unit(8 + 2/12, "feet"),
  42848. weight: math.unit(650, "lb"),
  42849. name: "Back",
  42850. image: {
  42851. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42852. extra: 1204/1157,
  42853. bottom: 46/1250
  42854. }
  42855. },
  42856. },
  42857. [
  42858. {
  42859. name: "Wildform",
  42860. height: math.unit(8 + 2/12, "feet"),
  42861. default: true
  42862. },
  42863. ]
  42864. ))
  42865. characterMakers.push(() => makeCharacter(
  42866. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42867. {
  42868. front: {
  42869. height: math.unit(18, "feet"),
  42870. name: "Front",
  42871. image: {
  42872. source: "./media/characters/cyphin/front.svg",
  42873. extra: 970/886,
  42874. bottom: 42/1012
  42875. }
  42876. },
  42877. back: {
  42878. height: math.unit(18, "feet"),
  42879. name: "Back",
  42880. image: {
  42881. source: "./media/characters/cyphin/back.svg",
  42882. extra: 1009/894,
  42883. bottom: 24/1033
  42884. }
  42885. },
  42886. head: {
  42887. height: math.unit(5.05, "feet"),
  42888. name: "Head",
  42889. image: {
  42890. source: "./media/characters/cyphin/head.svg"
  42891. }
  42892. },
  42893. tailbud: {
  42894. height: math.unit(5, "feet"),
  42895. name: "Tailbud",
  42896. image: {
  42897. source: "./media/characters/cyphin/tailbud.svg"
  42898. }
  42899. },
  42900. },
  42901. [
  42902. ]
  42903. ))
  42904. characterMakers.push(() => makeCharacter(
  42905. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42906. {
  42907. side: {
  42908. height: math.unit(10, "feet"),
  42909. weight: math.unit(6, "tons"),
  42910. name: "Side",
  42911. image: {
  42912. source: "./media/characters/raijin/side.svg",
  42913. extra: 1529/613,
  42914. bottom: 337/1866
  42915. }
  42916. },
  42917. },
  42918. [
  42919. {
  42920. name: "Normal",
  42921. height: math.unit(10, "feet"),
  42922. default: true
  42923. },
  42924. ]
  42925. ))
  42926. characterMakers.push(() => makeCharacter(
  42927. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42928. {
  42929. side: {
  42930. height: math.unit(9, "feet"),
  42931. name: "Side",
  42932. image: {
  42933. source: "./media/characters/nilghais/side.svg",
  42934. extra: 1047/744,
  42935. bottom: 91/1138
  42936. }
  42937. },
  42938. head: {
  42939. height: math.unit(3.14, "feet"),
  42940. name: "Head",
  42941. image: {
  42942. source: "./media/characters/nilghais/head.svg"
  42943. }
  42944. },
  42945. mouth: {
  42946. height: math.unit(4.6, "feet"),
  42947. name: "Mouth",
  42948. image: {
  42949. source: "./media/characters/nilghais/mouth.svg"
  42950. }
  42951. },
  42952. wings: {
  42953. height: math.unit(24, "feet"),
  42954. name: "Wings",
  42955. image: {
  42956. source: "./media/characters/nilghais/wings.svg"
  42957. }
  42958. },
  42959. ass: {
  42960. height: math.unit(6.12, "feet"),
  42961. name: "Ass",
  42962. image: {
  42963. source: "./media/characters/nilghais/ass.svg"
  42964. }
  42965. },
  42966. },
  42967. [
  42968. {
  42969. name: "Normal",
  42970. height: math.unit(9, "feet"),
  42971. default: true
  42972. },
  42973. ]
  42974. ))
  42975. characterMakers.push(() => makeCharacter(
  42976. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42977. {
  42978. regular: {
  42979. height: math.unit(16 + 2/12, "feet"),
  42980. weight: math.unit(2300, "lb"),
  42981. name: "Regular",
  42982. image: {
  42983. source: "./media/characters/zolgar/regular.svg",
  42984. extra: 1246/1004,
  42985. bottom: 124/1370
  42986. }
  42987. },
  42988. boxers: {
  42989. height: math.unit(16 + 2/12, "feet"),
  42990. weight: math.unit(2300, "lb"),
  42991. name: "Boxers",
  42992. image: {
  42993. source: "./media/characters/zolgar/boxers.svg",
  42994. extra: 1246/1004,
  42995. bottom: 124/1370
  42996. }
  42997. },
  42998. armored: {
  42999. height: math.unit(16 + 2/12, "feet"),
  43000. weight: math.unit(2300, "lb"),
  43001. name: "Armored",
  43002. image: {
  43003. source: "./media/characters/zolgar/armored.svg",
  43004. extra: 1246/1004,
  43005. bottom: 124/1370
  43006. }
  43007. },
  43008. goth: {
  43009. height: math.unit(16 + 2/12, "feet"),
  43010. weight: math.unit(2300, "lb"),
  43011. name: "Goth",
  43012. image: {
  43013. source: "./media/characters/zolgar/goth.svg",
  43014. extra: 1246/1004,
  43015. bottom: 124/1370
  43016. }
  43017. },
  43018. },
  43019. [
  43020. {
  43021. name: "Shrunken Down",
  43022. height: math.unit(9 + 2/12, "feet")
  43023. },
  43024. {
  43025. name: "Normal",
  43026. height: math.unit(16 + 2/12, "feet"),
  43027. default: true
  43028. },
  43029. ]
  43030. ))
  43031. characterMakers.push(() => makeCharacter(
  43032. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43033. {
  43034. front: {
  43035. height: math.unit(6, "feet"),
  43036. weight: math.unit(168, "lb"),
  43037. name: "Front",
  43038. image: {
  43039. source: "./media/characters/luca/front.svg",
  43040. extra: 841/667,
  43041. bottom: 102/943
  43042. }
  43043. },
  43044. },
  43045. [
  43046. {
  43047. name: "Normal",
  43048. height: math.unit(6, "feet"),
  43049. default: true
  43050. },
  43051. ]
  43052. ))
  43053. characterMakers.push(() => makeCharacter(
  43054. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43055. {
  43056. side: {
  43057. height: math.unit(7 + 3/12, "feet"),
  43058. weight: math.unit(312, "lb"),
  43059. name: "Side",
  43060. image: {
  43061. source: "./media/characters/zezo/side.svg",
  43062. extra: 1192/1067,
  43063. bottom: 63/1255
  43064. }
  43065. },
  43066. },
  43067. [
  43068. {
  43069. name: "Normal",
  43070. height: math.unit(7 + 3/12, "feet"),
  43071. default: true
  43072. },
  43073. ]
  43074. ))
  43075. characterMakers.push(() => makeCharacter(
  43076. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43077. {
  43078. front: {
  43079. height: math.unit(5 + 5/12, "feet"),
  43080. weight: math.unit(170, "lb"),
  43081. name: "Front",
  43082. image: {
  43083. source: "./media/characters/mayso/front.svg",
  43084. extra: 1215/1108,
  43085. bottom: 16/1231
  43086. }
  43087. },
  43088. },
  43089. [
  43090. {
  43091. name: "Normal",
  43092. height: math.unit(5 + 5/12, "feet"),
  43093. default: true
  43094. },
  43095. ]
  43096. ))
  43097. characterMakers.push(() => makeCharacter(
  43098. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43099. {
  43100. front: {
  43101. height: math.unit(4 + 3/12, "feet"),
  43102. weight: math.unit(80, "lb"),
  43103. name: "Front",
  43104. image: {
  43105. source: "./media/characters/hess/front.svg",
  43106. extra: 1200/1123,
  43107. bottom: 16/1216
  43108. }
  43109. },
  43110. },
  43111. [
  43112. {
  43113. name: "Normal",
  43114. height: math.unit(4 + 3/12, "feet"),
  43115. default: true
  43116. },
  43117. ]
  43118. ))
  43119. characterMakers.push(() => makeCharacter(
  43120. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43121. {
  43122. front: {
  43123. height: math.unit(1.9, "meters"),
  43124. name: "Front",
  43125. image: {
  43126. source: "./media/characters/ashgar/front.svg",
  43127. extra: 1177/1146,
  43128. bottom: 99/1276
  43129. }
  43130. },
  43131. back: {
  43132. height: math.unit(1.9, "meters"),
  43133. name: "Back",
  43134. image: {
  43135. source: "./media/characters/ashgar/back.svg",
  43136. extra: 1201/1183,
  43137. bottom: 53/1254
  43138. }
  43139. },
  43140. feral: {
  43141. height: math.unit(1.4, "meters"),
  43142. name: "Feral",
  43143. image: {
  43144. source: "./media/characters/ashgar/feral.svg",
  43145. extra: 370/345,
  43146. bottom: 45/415
  43147. }
  43148. },
  43149. },
  43150. [
  43151. {
  43152. name: "Normal",
  43153. height: math.unit(1.9, "meters"),
  43154. default: true
  43155. },
  43156. ]
  43157. ))
  43158. characterMakers.push(() => makeCharacter(
  43159. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43160. {
  43161. regular: {
  43162. height: math.unit(6, "feet"),
  43163. weight: math.unit(220, "lb"),
  43164. name: "Regular",
  43165. image: {
  43166. source: "./media/characters/phillip/regular.svg",
  43167. extra: 1373/1277,
  43168. bottom: 75/1448
  43169. }
  43170. },
  43171. dressed: {
  43172. height: math.unit(6, "feet"),
  43173. weight: math.unit(220, "lb"),
  43174. name: "Dressed",
  43175. image: {
  43176. source: "./media/characters/phillip/dressed.svg",
  43177. extra: 1373/1277,
  43178. bottom: 75/1448
  43179. }
  43180. },
  43181. paw: {
  43182. height: math.unit(1.44, "feet"),
  43183. name: "Paw",
  43184. image: {
  43185. source: "./media/characters/phillip/paw.svg"
  43186. }
  43187. },
  43188. },
  43189. [
  43190. {
  43191. name: "Normal",
  43192. height: math.unit(6, "feet"),
  43193. default: true
  43194. },
  43195. ]
  43196. ))
  43197. characterMakers.push(() => makeCharacter(
  43198. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43199. {
  43200. side: {
  43201. height: math.unit(42, "feet"),
  43202. name: "Side",
  43203. image: {
  43204. source: "./media/characters/uvula/side.svg",
  43205. extra: 683/586,
  43206. bottom: 60/743
  43207. }
  43208. },
  43209. front: {
  43210. height: math.unit(42, "feet"),
  43211. name: "Front",
  43212. image: {
  43213. source: "./media/characters/uvula/front.svg",
  43214. extra: 705/613,
  43215. bottom: 54/759
  43216. }
  43217. },
  43218. maw: {
  43219. height: math.unit(23.5, "feet"),
  43220. name: "Maw",
  43221. image: {
  43222. source: "./media/characters/uvula/maw.svg"
  43223. }
  43224. },
  43225. },
  43226. [
  43227. {
  43228. name: "Original Size",
  43229. height: math.unit(14, "inches")
  43230. },
  43231. {
  43232. name: "Human Size",
  43233. height: math.unit(6, "feet")
  43234. },
  43235. {
  43236. name: "Big",
  43237. height: math.unit(42, "feet"),
  43238. default: true
  43239. },
  43240. {
  43241. name: "Bigger",
  43242. height: math.unit(100, "feet")
  43243. },
  43244. ]
  43245. ))
  43246. characterMakers.push(() => makeCharacter(
  43247. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43248. {
  43249. front: {
  43250. height: math.unit(5 + 11/12, "feet"),
  43251. name: "Front",
  43252. image: {
  43253. source: "./media/characters/lannah/front.svg",
  43254. extra: 1208/1113,
  43255. bottom: 97/1305
  43256. }
  43257. },
  43258. },
  43259. [
  43260. {
  43261. name: "Normal",
  43262. height: math.unit(5 + 11/12, "feet"),
  43263. default: true
  43264. },
  43265. ]
  43266. ))
  43267. characterMakers.push(() => makeCharacter(
  43268. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43269. {
  43270. front: {
  43271. height: math.unit(6 + 3/12, "feet"),
  43272. weight: math.unit(3.5, "tons"),
  43273. name: "Front",
  43274. image: {
  43275. source: "./media/characters/emberflame/front.svg",
  43276. extra: 1198/672,
  43277. bottom: 82/1280
  43278. }
  43279. },
  43280. side: {
  43281. height: math.unit(6 + 3/12, "feet"),
  43282. weight: math.unit(3.5, "tons"),
  43283. name: "Side",
  43284. image: {
  43285. source: "./media/characters/emberflame/side.svg",
  43286. extra: 938/527,
  43287. bottom: 56/994
  43288. }
  43289. },
  43290. },
  43291. [
  43292. {
  43293. name: "Normal",
  43294. height: math.unit(6 + 3/12, "feet"),
  43295. default: true
  43296. },
  43297. ]
  43298. ))
  43299. characterMakers.push(() => makeCharacter(
  43300. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43301. {
  43302. side: {
  43303. height: math.unit(17.5, "feet"),
  43304. weight: math.unit(35, "tons"),
  43305. name: "Side",
  43306. image: {
  43307. source: "./media/characters/sophie-ambrose/side.svg",
  43308. extra: 1573/1242,
  43309. bottom: 71/1644
  43310. }
  43311. },
  43312. maw: {
  43313. height: math.unit(7.4, "feet"),
  43314. name: "Maw",
  43315. image: {
  43316. source: "./media/characters/sophie-ambrose/maw.svg"
  43317. }
  43318. },
  43319. },
  43320. [
  43321. {
  43322. name: "Normal",
  43323. height: math.unit(17.5, "feet"),
  43324. default: true
  43325. },
  43326. ]
  43327. ))
  43328. characterMakers.push(() => makeCharacter(
  43329. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43330. {
  43331. front: {
  43332. height: math.unit(280, "feet"),
  43333. weight: math.unit(550, "tons"),
  43334. name: "Front",
  43335. image: {
  43336. source: "./media/characters/king-mugi/front.svg",
  43337. extra: 1102/947,
  43338. bottom: 104/1206
  43339. }
  43340. },
  43341. },
  43342. [
  43343. {
  43344. name: "King Mugi",
  43345. height: math.unit(280, "feet"),
  43346. default: true
  43347. },
  43348. ]
  43349. ))
  43350. characterMakers.push(() => makeCharacter(
  43351. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43352. {
  43353. front: {
  43354. height: math.unit(64, "meters"),
  43355. name: "Front",
  43356. image: {
  43357. source: "./media/characters/nova-fox/front.svg",
  43358. extra: 1310/1246,
  43359. bottom: 65/1375
  43360. }
  43361. },
  43362. },
  43363. [
  43364. {
  43365. name: "Macro",
  43366. height: math.unit(64, "meters"),
  43367. default: true
  43368. },
  43369. ]
  43370. ))
  43371. characterMakers.push(() => makeCharacter(
  43372. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43373. {
  43374. front: {
  43375. height: math.unit(6 + 3/12, "feet"),
  43376. weight: math.unit(170, "lb"),
  43377. name: "Front",
  43378. image: {
  43379. source: "./media/characters/sam-bat/front.svg",
  43380. extra: 1601/1411,
  43381. bottom: 125/1726
  43382. }
  43383. },
  43384. back: {
  43385. height: math.unit(6 + 3/12, "feet"),
  43386. weight: math.unit(170, "lb"),
  43387. name: "Back",
  43388. image: {
  43389. source: "./media/characters/sam-bat/back.svg",
  43390. extra: 1577/1405,
  43391. bottom: 58/1635
  43392. }
  43393. },
  43394. },
  43395. [
  43396. {
  43397. name: "Normal",
  43398. height: math.unit(6 + 3/12, "feet"),
  43399. default: true
  43400. },
  43401. ]
  43402. ))
  43403. characterMakers.push(() => makeCharacter(
  43404. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43405. {
  43406. front: {
  43407. height: math.unit(59, "feet"),
  43408. weight: math.unit(40000, "lb"),
  43409. name: "Front",
  43410. image: {
  43411. source: "./media/characters/inari/front.svg",
  43412. extra: 1884/1350,
  43413. bottom: 95/1979
  43414. }
  43415. },
  43416. },
  43417. [
  43418. {
  43419. name: "Gigantamax",
  43420. height: math.unit(59, "feet"),
  43421. default: true
  43422. },
  43423. ]
  43424. ))
  43425. characterMakers.push(() => makeCharacter(
  43426. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43427. {
  43428. front: {
  43429. height: math.unit(5 + 8/12, "feet"),
  43430. name: "Front",
  43431. image: {
  43432. source: "./media/characters/elizabeth/front.svg",
  43433. extra: 1395/1298,
  43434. bottom: 54/1449
  43435. }
  43436. },
  43437. mouth: {
  43438. height: math.unit(1.97, "feet"),
  43439. name: "Mouth",
  43440. image: {
  43441. source: "./media/characters/elizabeth/mouth.svg"
  43442. }
  43443. },
  43444. foot: {
  43445. height: math.unit(1.17, "feet"),
  43446. name: "Foot",
  43447. image: {
  43448. source: "./media/characters/elizabeth/foot.svg"
  43449. }
  43450. },
  43451. },
  43452. [
  43453. {
  43454. name: "Normal",
  43455. height: math.unit(5 + 8/12, "feet"),
  43456. default: true
  43457. },
  43458. {
  43459. name: "Minimacro",
  43460. height: math.unit(18, "feet")
  43461. },
  43462. {
  43463. name: "Macro",
  43464. height: math.unit(180, "feet")
  43465. },
  43466. ]
  43467. ))
  43468. characterMakers.push(() => makeCharacter(
  43469. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43470. {
  43471. front: {
  43472. height: math.unit(5 + 2/12, "feet"),
  43473. name: "Front",
  43474. image: {
  43475. source: "./media/characters/october-gossamer/front.svg",
  43476. extra: 505/454,
  43477. bottom: 7/512
  43478. }
  43479. },
  43480. back: {
  43481. height: math.unit(5 + 2/12, "feet"),
  43482. name: "Back",
  43483. image: {
  43484. source: "./media/characters/october-gossamer/back.svg",
  43485. extra: 501/454,
  43486. bottom: 11/512
  43487. }
  43488. },
  43489. },
  43490. [
  43491. {
  43492. name: "Normal",
  43493. height: math.unit(5 + 2/12, "feet"),
  43494. default: true
  43495. },
  43496. ]
  43497. ))
  43498. characterMakers.push(() => makeCharacter(
  43499. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43500. {
  43501. front: {
  43502. height: math.unit(5, "feet"),
  43503. name: "Front",
  43504. image: {
  43505. source: "./media/characters/epiglottis/front.svg",
  43506. extra: 923/849,
  43507. bottom: 17/940
  43508. }
  43509. },
  43510. },
  43511. [
  43512. {
  43513. name: "Original Size",
  43514. height: math.unit(10, "inches")
  43515. },
  43516. {
  43517. name: "Human Size",
  43518. height: math.unit(5, "feet"),
  43519. default: true
  43520. },
  43521. {
  43522. name: "Big",
  43523. height: math.unit(25, "feet")
  43524. },
  43525. {
  43526. name: "Bigger",
  43527. height: math.unit(50, "feet")
  43528. },
  43529. {
  43530. name: "oh lawd",
  43531. height: math.unit(75, "feet")
  43532. },
  43533. ]
  43534. ))
  43535. characterMakers.push(() => makeCharacter(
  43536. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43537. {
  43538. front: {
  43539. height: math.unit(2 + 4/12, "feet"),
  43540. weight: math.unit(60, "lb"),
  43541. name: "Front",
  43542. image: {
  43543. source: "./media/characters/lerm/front.svg",
  43544. extra: 796/790,
  43545. bottom: 79/875
  43546. }
  43547. },
  43548. },
  43549. [
  43550. {
  43551. name: "Normal",
  43552. height: math.unit(2 + 4/12, "feet"),
  43553. default: true
  43554. },
  43555. ]
  43556. ))
  43557. characterMakers.push(() => makeCharacter(
  43558. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43559. {
  43560. front: {
  43561. height: math.unit(5.5, "feet"),
  43562. weight: math.unit(130, "lb"),
  43563. name: "Front",
  43564. image: {
  43565. source: "./media/characters/xena-nebadon/front.svg",
  43566. extra: 1828/1730,
  43567. bottom: 79/1907
  43568. }
  43569. },
  43570. },
  43571. [
  43572. {
  43573. name: "Tiny Puppy",
  43574. height: math.unit(3, "inches")
  43575. },
  43576. {
  43577. name: "Normal",
  43578. height: math.unit(5.5, "feet"),
  43579. default: true
  43580. },
  43581. {
  43582. name: "Lotta Lady",
  43583. height: math.unit(12, "feet")
  43584. },
  43585. {
  43586. name: "Pretty Big",
  43587. height: math.unit(100, "feet")
  43588. },
  43589. {
  43590. name: "Big",
  43591. height: math.unit(500, "feet")
  43592. },
  43593. {
  43594. name: "Skyscraper Toys",
  43595. height: math.unit(2500, "feet")
  43596. },
  43597. {
  43598. name: "Plane Catcher",
  43599. height: math.unit(8, "miles")
  43600. },
  43601. {
  43602. name: "Planet Toys",
  43603. height: math.unit(15, "earths")
  43604. },
  43605. {
  43606. name: "Stardust",
  43607. height: math.unit(0.25, "galaxies")
  43608. },
  43609. {
  43610. name: "Snacks",
  43611. height: math.unit(70, "universes")
  43612. },
  43613. ]
  43614. ))
  43615. characterMakers.push(() => makeCharacter(
  43616. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43617. {
  43618. front: {
  43619. height: math.unit(1.6, "meters"),
  43620. weight: math.unit(60, "kg"),
  43621. name: "Front",
  43622. image: {
  43623. source: "./media/characters/bounty/front.svg",
  43624. extra: 1426/1308,
  43625. bottom: 15/1441
  43626. }
  43627. },
  43628. back: {
  43629. height: math.unit(1.6, "meters"),
  43630. weight: math.unit(60, "kg"),
  43631. name: "Back",
  43632. image: {
  43633. source: "./media/characters/bounty/back.svg",
  43634. extra: 1417/1307,
  43635. bottom: 8/1425
  43636. }
  43637. },
  43638. },
  43639. [
  43640. {
  43641. name: "Normal",
  43642. height: math.unit(1.6, "meters"),
  43643. default: true
  43644. },
  43645. {
  43646. name: "Macro",
  43647. height: math.unit(300, "meters")
  43648. },
  43649. ]
  43650. ))
  43651. characterMakers.push(() => makeCharacter(
  43652. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43653. {
  43654. front: {
  43655. height: math.unit(2 + 8/12, "feet"),
  43656. weight: math.unit(15, "lb"),
  43657. name: "Front",
  43658. image: {
  43659. source: "./media/characters/mochi/front.svg",
  43660. extra: 1022/852,
  43661. bottom: 435/1457
  43662. }
  43663. },
  43664. back: {
  43665. height: math.unit(2 + 8/12, "feet"),
  43666. weight: math.unit(15, "lb"),
  43667. name: "Back",
  43668. image: {
  43669. source: "./media/characters/mochi/back.svg",
  43670. extra: 1335/1119,
  43671. bottom: 39/1374
  43672. }
  43673. },
  43674. bird: {
  43675. height: math.unit(2 + 8/12, "feet"),
  43676. weight: math.unit(15, "lb"),
  43677. name: "Bird",
  43678. image: {
  43679. source: "./media/characters/mochi/bird.svg",
  43680. extra: 1251/1113,
  43681. bottom: 178/1429
  43682. }
  43683. },
  43684. kaiju: {
  43685. height: math.unit(154, "feet"),
  43686. weight: math.unit(1e7, "lb"),
  43687. name: "Kaiju",
  43688. image: {
  43689. source: "./media/characters/mochi/kaiju.svg",
  43690. extra: 460/324,
  43691. bottom: 40/500
  43692. }
  43693. },
  43694. head: {
  43695. height: math.unit(1.21, "feet"),
  43696. name: "Head",
  43697. image: {
  43698. source: "./media/characters/mochi/head.svg"
  43699. }
  43700. },
  43701. alternateTail: {
  43702. height: math.unit(2 + 8/12, "feet"),
  43703. weight: math.unit(45, "lb"),
  43704. name: "Alternate Tail",
  43705. image: {
  43706. source: "./media/characters/mochi/alternate-tail.svg",
  43707. extra: 139/76,
  43708. bottom: 45/184
  43709. }
  43710. },
  43711. },
  43712. [
  43713. {
  43714. name: "Micro",
  43715. height: math.unit(2, "inches")
  43716. },
  43717. {
  43718. name: "Normal",
  43719. height: math.unit(2 + 8/12, "feet"),
  43720. default: true
  43721. },
  43722. {
  43723. name: "Macro",
  43724. height: math.unit(106, "feet")
  43725. },
  43726. ]
  43727. ))
  43728. characterMakers.push(() => makeCharacter(
  43729. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43730. {
  43731. front: {
  43732. height: math.unit(5.67, "feet"),
  43733. weight: math.unit(135, "lb"),
  43734. name: "Front",
  43735. image: {
  43736. source: "./media/characters/sarel/front.svg",
  43737. extra: 865/788,
  43738. bottom: 97/962
  43739. }
  43740. },
  43741. back: {
  43742. height: math.unit(5.67, "feet"),
  43743. weight: math.unit(135, "lb"),
  43744. name: "Back",
  43745. image: {
  43746. source: "./media/characters/sarel/back.svg",
  43747. extra: 857/777,
  43748. bottom: 32/889
  43749. }
  43750. },
  43751. chozoan: {
  43752. height: math.unit(5.67, "feet"),
  43753. weight: math.unit(135, "lb"),
  43754. name: "Chozoan",
  43755. image: {
  43756. source: "./media/characters/sarel/chozoan.svg",
  43757. extra: 865/788,
  43758. bottom: 97/962
  43759. }
  43760. },
  43761. current: {
  43762. height: math.unit(5.67, "feet"),
  43763. weight: math.unit(135, "lb"),
  43764. name: "Current",
  43765. image: {
  43766. source: "./media/characters/sarel/current.svg",
  43767. extra: 865/788,
  43768. bottom: 97/962
  43769. }
  43770. },
  43771. head: {
  43772. height: math.unit(1.77, "feet"),
  43773. name: "Head",
  43774. image: {
  43775. source: "./media/characters/sarel/head.svg"
  43776. }
  43777. },
  43778. claws: {
  43779. height: math.unit(1.8, "feet"),
  43780. name: "Claws",
  43781. image: {
  43782. source: "./media/characters/sarel/claws.svg"
  43783. }
  43784. },
  43785. clawsAlt: {
  43786. height: math.unit(1.8, "feet"),
  43787. name: "Claws-alt",
  43788. image: {
  43789. source: "./media/characters/sarel/claws-alt.svg"
  43790. }
  43791. },
  43792. },
  43793. [
  43794. {
  43795. name: "Normal",
  43796. height: math.unit(5.67, "feet"),
  43797. default: true
  43798. },
  43799. ]
  43800. ))
  43801. characterMakers.push(() => makeCharacter(
  43802. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43803. {
  43804. front: {
  43805. height: math.unit(5500, "feet"),
  43806. name: "Front",
  43807. image: {
  43808. source: "./media/characters/alyonia/front.svg",
  43809. extra: 1200/1135,
  43810. bottom: 29/1229
  43811. }
  43812. },
  43813. back: {
  43814. height: math.unit(5500, "feet"),
  43815. name: "Back",
  43816. image: {
  43817. source: "./media/characters/alyonia/back.svg",
  43818. extra: 1205/1138,
  43819. bottom: 10/1215
  43820. }
  43821. },
  43822. },
  43823. [
  43824. {
  43825. name: "Small",
  43826. height: math.unit(10, "feet")
  43827. },
  43828. {
  43829. name: "Macro",
  43830. height: math.unit(500, "feet")
  43831. },
  43832. {
  43833. name: "Mega Macro",
  43834. height: math.unit(5500, "feet"),
  43835. default: true
  43836. },
  43837. {
  43838. name: "Mega Macro+",
  43839. height: math.unit(500000, "feet")
  43840. },
  43841. {
  43842. name: "Giga Macro",
  43843. height: math.unit(3000, "miles")
  43844. },
  43845. {
  43846. name: "Tera Macro",
  43847. height: math.unit(2.8e6, "miles")
  43848. },
  43849. {
  43850. name: "Galactic",
  43851. height: math.unit(120000, "lightyears")
  43852. },
  43853. ]
  43854. ))
  43855. characterMakers.push(() => makeCharacter(
  43856. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43857. {
  43858. werewolf: {
  43859. height: math.unit(8, "feet"),
  43860. weight: math.unit(425, "lb"),
  43861. name: "Werewolf",
  43862. image: {
  43863. source: "./media/characters/autumn/werewolf.svg",
  43864. extra: 2154/2031,
  43865. bottom: 160/2314
  43866. }
  43867. },
  43868. human: {
  43869. height: math.unit(5 + 8/12, "feet"),
  43870. weight: math.unit(150, "lb"),
  43871. name: "Human",
  43872. image: {
  43873. source: "./media/characters/autumn/human.svg",
  43874. extra: 1200/1149,
  43875. bottom: 30/1230
  43876. }
  43877. },
  43878. },
  43879. [
  43880. {
  43881. name: "Normal",
  43882. height: math.unit(8, "feet"),
  43883. default: true
  43884. },
  43885. ]
  43886. ))
  43887. characterMakers.push(() => makeCharacter(
  43888. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43889. {
  43890. front: {
  43891. height: math.unit(8 + 5/12, "feet"),
  43892. weight: math.unit(825, "lb"),
  43893. name: "Front",
  43894. image: {
  43895. source: "./media/characters/cobalt-charizard/front.svg",
  43896. extra: 1268/1155,
  43897. bottom: 122/1390
  43898. }
  43899. },
  43900. side: {
  43901. height: math.unit(8 + 5/12, "feet"),
  43902. weight: math.unit(825, "lb"),
  43903. name: "Side",
  43904. image: {
  43905. source: "./media/characters/cobalt-charizard/side.svg",
  43906. extra: 1348/1257,
  43907. bottom: 58/1406
  43908. }
  43909. },
  43910. gMax: {
  43911. height: math.unit(134 + 11/12, "feet"),
  43912. name: "G-Max",
  43913. image: {
  43914. source: "./media/characters/cobalt-charizard/g-max.svg",
  43915. extra: 1835/1541,
  43916. bottom: 151/1986
  43917. }
  43918. },
  43919. },
  43920. [
  43921. {
  43922. name: "Normal",
  43923. height: math.unit(8 + 5/12, "feet"),
  43924. default: true
  43925. },
  43926. ]
  43927. ))
  43928. characterMakers.push(() => makeCharacter(
  43929. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43930. {
  43931. front: {
  43932. height: math.unit(6 + 3/12, "feet"),
  43933. weight: math.unit(210, "lb"),
  43934. name: "Front",
  43935. image: {
  43936. source: "./media/characters/stella/front.svg",
  43937. extra: 3549/3335,
  43938. bottom: 51/3600
  43939. }
  43940. },
  43941. },
  43942. [
  43943. {
  43944. name: "Normal",
  43945. height: math.unit(6 + 3/12, "feet"),
  43946. default: true
  43947. },
  43948. ]
  43949. ))
  43950. characterMakers.push(() => makeCharacter(
  43951. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43952. {
  43953. front: {
  43954. height: math.unit(5, "feet"),
  43955. weight: math.unit(90, "lb"),
  43956. name: "Front",
  43957. image: {
  43958. source: "./media/characters/riley-bishop/front.svg",
  43959. extra: 1450/1428,
  43960. bottom: 152/1602
  43961. }
  43962. },
  43963. },
  43964. [
  43965. {
  43966. name: "Normal",
  43967. height: math.unit(5, "feet"),
  43968. default: true
  43969. },
  43970. ]
  43971. ))
  43972. characterMakers.push(() => makeCharacter(
  43973. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43974. {
  43975. side: {
  43976. height: math.unit(8 + 2/12, "feet"),
  43977. weight: math.unit(500, "kg"),
  43978. name: "Side",
  43979. image: {
  43980. source: "./media/characters/theo-arcanine/side.svg",
  43981. extra: 1342/1074,
  43982. bottom: 111/1453
  43983. }
  43984. },
  43985. },
  43986. [
  43987. {
  43988. name: "Normal",
  43989. height: math.unit(8 + 2/12, "feet"),
  43990. default: true
  43991. },
  43992. ]
  43993. ))
  43994. characterMakers.push(() => makeCharacter(
  43995. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43996. {
  43997. front: {
  43998. height: math.unit(4, "feet"),
  43999. name: "Front",
  44000. image: {
  44001. source: "./media/characters/kali/front.svg",
  44002. extra: 1921/1357,
  44003. bottom: 70/1991
  44004. }
  44005. },
  44006. },
  44007. [
  44008. {
  44009. name: "Normal",
  44010. height: math.unit(4, "feet"),
  44011. default: true
  44012. },
  44013. {
  44014. name: "Macro",
  44015. height: math.unit(32, "meters")
  44016. },
  44017. {
  44018. name: "Macro+",
  44019. height: math.unit(150, "meters")
  44020. },
  44021. {
  44022. name: "Megamacro",
  44023. height: math.unit(7500, "meters")
  44024. },
  44025. {
  44026. name: "Megamacro+",
  44027. height: math.unit(80, "kilometers")
  44028. },
  44029. ]
  44030. ))
  44031. characterMakers.push(() => makeCharacter(
  44032. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44033. {
  44034. side: {
  44035. height: math.unit(5 + 11/12, "feet"),
  44036. weight: math.unit(236, "lb"),
  44037. name: "Side",
  44038. image: {
  44039. source: "./media/characters/gapp/side.svg",
  44040. extra: 775/340,
  44041. bottom: 58/833
  44042. }
  44043. },
  44044. mouth: {
  44045. height: math.unit(2.98, "feet"),
  44046. name: "Mouth",
  44047. image: {
  44048. source: "./media/characters/gapp/mouth.svg"
  44049. }
  44050. },
  44051. },
  44052. [
  44053. {
  44054. name: "Normal",
  44055. height: math.unit(5 + 1/12, "feet"),
  44056. default: true
  44057. },
  44058. ]
  44059. ))
  44060. characterMakers.push(() => makeCharacter(
  44061. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44062. {
  44063. front: {
  44064. height: math.unit(6, "feet"),
  44065. name: "Front",
  44066. image: {
  44067. source: "./media/characters/persephone/front.svg",
  44068. extra: 1895/1717,
  44069. bottom: 96/1991
  44070. }
  44071. },
  44072. back: {
  44073. height: math.unit(6, "feet"),
  44074. name: "Back",
  44075. image: {
  44076. source: "./media/characters/persephone/back.svg",
  44077. extra: 1868/1679,
  44078. bottom: 26/1894
  44079. }
  44080. },
  44081. casual: {
  44082. height: math.unit(6, "feet"),
  44083. name: "Casual",
  44084. image: {
  44085. source: "./media/characters/persephone/casual.svg",
  44086. extra: 1713/1541,
  44087. bottom: 76/1789
  44088. }
  44089. },
  44090. },
  44091. [
  44092. {
  44093. name: "Human Size",
  44094. height: math.unit(6, "feet")
  44095. },
  44096. {
  44097. name: "Big Steppy",
  44098. height: math.unit(600, "meters"),
  44099. default: true
  44100. },
  44101. {
  44102. name: "Galaxy Brain",
  44103. height: math.unit(1, "zettameter")
  44104. },
  44105. ]
  44106. ))
  44107. characterMakers.push(() => makeCharacter(
  44108. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44109. {
  44110. front: {
  44111. height: math.unit(1.85, "meters"),
  44112. name: "Front",
  44113. image: {
  44114. source: "./media/characters/riley-foxthing/front.svg",
  44115. extra: 1495/1354,
  44116. bottom: 122/1617
  44117. }
  44118. },
  44119. frontAlt: {
  44120. height: math.unit(1.85, "meters"),
  44121. name: "Front (Alt)",
  44122. image: {
  44123. source: "./media/characters/riley-foxthing/front-alt.svg",
  44124. extra: 1572/1389,
  44125. bottom: 116/1688
  44126. }
  44127. },
  44128. },
  44129. [
  44130. {
  44131. name: "Normal Sized",
  44132. height: math.unit(1.85, "meters"),
  44133. default: true
  44134. },
  44135. {
  44136. name: "Quite Sizable",
  44137. height: math.unit(5, "meters")
  44138. },
  44139. {
  44140. name: "Rather Large",
  44141. height: math.unit(20, "meters")
  44142. },
  44143. {
  44144. name: "Macro",
  44145. height: math.unit(450, "meters")
  44146. },
  44147. {
  44148. name: "Giga",
  44149. height: math.unit(5, "km")
  44150. },
  44151. ]
  44152. ))
  44153. characterMakers.push(() => makeCharacter(
  44154. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44155. {
  44156. front: {
  44157. height: math.unit(6, "feet"),
  44158. weight: math.unit(200, "lb"),
  44159. name: "Front",
  44160. image: {
  44161. source: "./media/characters/blizzard/front.svg",
  44162. extra: 1136/990,
  44163. bottom: 136/1272
  44164. }
  44165. },
  44166. back: {
  44167. height: math.unit(6, "feet"),
  44168. weight: math.unit(200, "lb"),
  44169. name: "Back",
  44170. image: {
  44171. source: "./media/characters/blizzard/back.svg",
  44172. extra: 1175/1034,
  44173. bottom: 97/1272
  44174. }
  44175. },
  44176. sitting: {
  44177. height: math.unit(3.725, "feet"),
  44178. weight: math.unit(200, "lb"),
  44179. name: "Sitting",
  44180. image: {
  44181. source: "./media/characters/blizzard/sitting.svg",
  44182. extra: 581/485,
  44183. bottom: 90/671
  44184. }
  44185. },
  44186. frontWizard: {
  44187. height: math.unit(7.9, "feet"),
  44188. weight: math.unit(200, "lb"),
  44189. name: "Front (Wizard)",
  44190. image: {
  44191. source: "./media/characters/blizzard/front-wizard.svg"
  44192. }
  44193. },
  44194. backWizard: {
  44195. height: math.unit(7.9, "feet"),
  44196. weight: math.unit(200, "lb"),
  44197. name: "Back (Wizard)",
  44198. image: {
  44199. source: "./media/characters/blizzard/back-wizard.svg"
  44200. }
  44201. },
  44202. frontNsfw: {
  44203. height: math.unit(6, "feet"),
  44204. weight: math.unit(200, "lb"),
  44205. name: "Front (NSFW)",
  44206. image: {
  44207. source: "./media/characters/blizzard/front-nsfw.svg",
  44208. extra: 1136/990,
  44209. bottom: 136/1272
  44210. }
  44211. },
  44212. backNsfw: {
  44213. height: math.unit(6, "feet"),
  44214. weight: math.unit(200, "lb"),
  44215. name: "Back (NSFW)",
  44216. image: {
  44217. source: "./media/characters/blizzard/back-nsfw.svg",
  44218. extra: 1175/1034,
  44219. bottom: 97/1272
  44220. }
  44221. },
  44222. sittingNsfw: {
  44223. height: math.unit(3.725, "feet"),
  44224. weight: math.unit(200, "lb"),
  44225. name: "Sitting (NSFW)",
  44226. image: {
  44227. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44228. extra: 581/485,
  44229. bottom: 90/671
  44230. }
  44231. },
  44232. wizardFrontNsfw: {
  44233. height: math.unit(7.9, "feet"),
  44234. weight: math.unit(200, "lb"),
  44235. name: "Wizard (Front, NSFW)",
  44236. image: {
  44237. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44238. }
  44239. },
  44240. },
  44241. [
  44242. {
  44243. name: "Normal",
  44244. height: math.unit(6, "feet"),
  44245. default: true
  44246. },
  44247. ]
  44248. ))
  44249. characterMakers.push(() => makeCharacter(
  44250. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44251. {
  44252. front: {
  44253. height: math.unit(5 + 2/12, "feet"),
  44254. name: "Front",
  44255. image: {
  44256. source: "./media/characters/lumi/front.svg",
  44257. extra: 1328/1268,
  44258. bottom: 103/1431
  44259. }
  44260. },
  44261. back: {
  44262. height: math.unit(5 + 2/12, "feet"),
  44263. name: "Back",
  44264. image: {
  44265. source: "./media/characters/lumi/back.svg",
  44266. extra: 1381/1327,
  44267. bottom: 43/1424
  44268. }
  44269. },
  44270. },
  44271. [
  44272. {
  44273. name: "Normal",
  44274. height: math.unit(5 + 2/12, "feet"),
  44275. default: true
  44276. },
  44277. ]
  44278. ))
  44279. characterMakers.push(() => makeCharacter(
  44280. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44281. {
  44282. front: {
  44283. height: math.unit(5 + 9/12, "feet"),
  44284. name: "Front",
  44285. image: {
  44286. source: "./media/characters/aliya-cotton/front.svg",
  44287. extra: 577/564,
  44288. bottom: 29/606
  44289. }
  44290. },
  44291. },
  44292. [
  44293. {
  44294. name: "Normal",
  44295. height: math.unit(5 + 9/12, "feet"),
  44296. default: true
  44297. },
  44298. ]
  44299. ))
  44300. characterMakers.push(() => makeCharacter(
  44301. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44302. {
  44303. front: {
  44304. height: math.unit(2.7, "meters"),
  44305. weight: math.unit(25000, "lb"),
  44306. name: "Front",
  44307. image: {
  44308. source: "./media/characters/noah-luxray/front.svg",
  44309. extra: 1644/825,
  44310. bottom: 339/1983
  44311. }
  44312. },
  44313. side: {
  44314. height: math.unit(2.97, "meters"),
  44315. weight: math.unit(25000, "lb"),
  44316. name: "Side",
  44317. image: {
  44318. source: "./media/characters/noah-luxray/side.svg",
  44319. extra: 1319/650,
  44320. bottom: 163/1482
  44321. }
  44322. },
  44323. dick: {
  44324. height: math.unit(7.4, "feet"),
  44325. weight: math.unit(2500, "lb"),
  44326. name: "Dick",
  44327. image: {
  44328. source: "./media/characters/noah-luxray/dick.svg"
  44329. }
  44330. },
  44331. dickAlt: {
  44332. height: math.unit(10.83, "feet"),
  44333. weight: math.unit(2500, "lb"),
  44334. name: "Dick-alt",
  44335. image: {
  44336. source: "./media/characters/noah-luxray/dick-alt.svg"
  44337. }
  44338. },
  44339. },
  44340. [
  44341. {
  44342. name: "BIG",
  44343. height: math.unit(2.7, "meters"),
  44344. default: true
  44345. },
  44346. ]
  44347. ))
  44348. characterMakers.push(() => makeCharacter(
  44349. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44350. {
  44351. standing: {
  44352. height: math.unit(183, "cm"),
  44353. weight: math.unit(68, "kg"),
  44354. name: "Standing",
  44355. image: {
  44356. source: "./media/characters/arion/standing.svg",
  44357. extra: 1869/1807,
  44358. bottom: 93/1962
  44359. }
  44360. },
  44361. reclining: {
  44362. height: math.unit(70.5, "cm"),
  44363. weight: math.unit(68, "lb"),
  44364. name: "Reclining",
  44365. image: {
  44366. source: "./media/characters/arion/reclining.svg",
  44367. extra: 937/870,
  44368. bottom: 63/1000
  44369. }
  44370. },
  44371. },
  44372. [
  44373. {
  44374. name: "Colossus Size, Low",
  44375. height: math.unit(33, "meters"),
  44376. default: true
  44377. },
  44378. {
  44379. name: "Colossus Size, Mid",
  44380. height: math.unit(52, "meters")
  44381. },
  44382. {
  44383. name: "Colossus Size, High",
  44384. height: math.unit(60, "meters")
  44385. },
  44386. {
  44387. name: "Titan Size, Low",
  44388. height: math.unit(91, "meters"),
  44389. },
  44390. {
  44391. name: "Titan Size, Mid",
  44392. height: math.unit(122, "meters")
  44393. },
  44394. {
  44395. name: "Titan Size, High",
  44396. height: math.unit(162, "meters")
  44397. },
  44398. ]
  44399. ))
  44400. characterMakers.push(() => makeCharacter(
  44401. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44402. {
  44403. front: {
  44404. height: math.unit(53, "meters"),
  44405. name: "Front",
  44406. image: {
  44407. source: "./media/characters/stellar-marbey/front.svg",
  44408. extra: 1913/1805,
  44409. bottom: 92/2005
  44410. }
  44411. },
  44412. back: {
  44413. height: math.unit(53, "meters"),
  44414. name: "Back",
  44415. image: {
  44416. source: "./media/characters/stellar-marbey/back.svg",
  44417. extra: 1960/1851,
  44418. bottom: 28/1988
  44419. }
  44420. },
  44421. mouth: {
  44422. height: math.unit(3.5, "meters"),
  44423. name: "Mouth",
  44424. image: {
  44425. source: "./media/characters/stellar-marbey/mouth.svg"
  44426. }
  44427. },
  44428. },
  44429. [
  44430. {
  44431. name: "Macro",
  44432. height: math.unit(53, "meters"),
  44433. default: true
  44434. },
  44435. ]
  44436. ))
  44437. characterMakers.push(() => makeCharacter(
  44438. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44439. {
  44440. front: {
  44441. height: math.unit(8 + 1/12, "feet"),
  44442. weight: math.unit(233, "lb"),
  44443. name: "Front",
  44444. image: {
  44445. source: "./media/characters/matsu/front.svg",
  44446. extra: 832/772,
  44447. bottom: 40/872
  44448. }
  44449. },
  44450. back: {
  44451. height: math.unit(8 + 1/12, "feet"),
  44452. weight: math.unit(233, "lb"),
  44453. name: "Back",
  44454. image: {
  44455. source: "./media/characters/matsu/back.svg",
  44456. extra: 839/780,
  44457. bottom: 47/886
  44458. }
  44459. },
  44460. },
  44461. [
  44462. {
  44463. name: "Normal",
  44464. height: math.unit(8 + 1/12, "feet"),
  44465. default: true
  44466. },
  44467. ]
  44468. ))
  44469. characterMakers.push(() => makeCharacter(
  44470. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44471. {
  44472. front: {
  44473. height: math.unit(4, "feet"),
  44474. weight: math.unit(148, "lb"),
  44475. name: "Front",
  44476. image: {
  44477. source: "./media/characters/thiz/front.svg",
  44478. extra: 1913/1748,
  44479. bottom: 62/1975
  44480. }
  44481. },
  44482. },
  44483. [
  44484. {
  44485. name: "Normal",
  44486. height: math.unit(4, "feet"),
  44487. default: true
  44488. },
  44489. ]
  44490. ))
  44491. characterMakers.push(() => makeCharacter(
  44492. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44493. {
  44494. front: {
  44495. height: math.unit(7 + 6/12, "feet"),
  44496. weight: math.unit(267, "lb"),
  44497. name: "Front",
  44498. image: {
  44499. source: "./media/characters/marcel/front.svg",
  44500. extra: 1221/1096,
  44501. bottom: 76/1297
  44502. }
  44503. },
  44504. },
  44505. [
  44506. {
  44507. name: "Normal",
  44508. height: math.unit(7 + 6/12, "feet"),
  44509. default: true
  44510. },
  44511. ]
  44512. ))
  44513. characterMakers.push(() => makeCharacter(
  44514. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44515. {
  44516. side: {
  44517. height: math.unit(42, "meters"),
  44518. name: "Side",
  44519. image: {
  44520. source: "./media/characters/flake/side.svg",
  44521. extra: 1525/1306,
  44522. bottom: 209/1734
  44523. }
  44524. },
  44525. },
  44526. [
  44527. {
  44528. name: "Normal",
  44529. height: math.unit(42, "meters"),
  44530. default: true
  44531. },
  44532. ]
  44533. ))
  44534. characterMakers.push(() => makeCharacter(
  44535. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44536. {
  44537. dressed: {
  44538. height: math.unit(6 + 4/12, "feet"),
  44539. weight: math.unit(520, "lb"),
  44540. name: "Dressed",
  44541. image: {
  44542. source: "./media/characters/someonne/dressed.svg",
  44543. extra: 1020/1010,
  44544. bottom: 178/1198
  44545. }
  44546. },
  44547. undressed: {
  44548. height: math.unit(6 + 4/12, "feet"),
  44549. weight: math.unit(520, "lb"),
  44550. name: "Undressed",
  44551. image: {
  44552. source: "./media/characters/someonne/undressed.svg",
  44553. extra: 1019/1014,
  44554. bottom: 169/1188
  44555. }
  44556. },
  44557. },
  44558. [
  44559. {
  44560. name: "Normal",
  44561. height: math.unit(6 + 4/12, "feet"),
  44562. default: true
  44563. },
  44564. ]
  44565. ))
  44566. characterMakers.push(() => makeCharacter(
  44567. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44568. {
  44569. front: {
  44570. height: math.unit(3, "feet"),
  44571. weight: math.unit(30, "lb"),
  44572. name: "Front",
  44573. image: {
  44574. source: "./media/characters/till/front.svg",
  44575. extra: 892/823,
  44576. bottom: 55/947
  44577. }
  44578. },
  44579. },
  44580. [
  44581. {
  44582. name: "Normal",
  44583. height: math.unit(3, "feet"),
  44584. default: true
  44585. },
  44586. ]
  44587. ))
  44588. characterMakers.push(() => makeCharacter(
  44589. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44590. {
  44591. front: {
  44592. height: math.unit(9 + 8/12, "feet"),
  44593. weight: math.unit(800, "lb"),
  44594. name: "Front",
  44595. image: {
  44596. source: "./media/characters/sydney-heki/front.svg",
  44597. extra: 1360/1300,
  44598. bottom: 22/1382
  44599. }
  44600. },
  44601. back: {
  44602. height: math.unit(9 + 8/12, "feet"),
  44603. weight: math.unit(800, "lb"),
  44604. name: "Back",
  44605. image: {
  44606. source: "./media/characters/sydney-heki/back.svg",
  44607. extra: 1356/1293,
  44608. bottom: 12/1368
  44609. }
  44610. },
  44611. frontDressed: {
  44612. height: math.unit(9 + 8/12, "feet"),
  44613. weight: math.unit(800, "lb"),
  44614. name: "Front-dressed",
  44615. image: {
  44616. source: "./media/characters/sydney-heki/front-dressed.svg",
  44617. extra: 1360/1300,
  44618. bottom: 22/1382
  44619. }
  44620. },
  44621. },
  44622. [
  44623. {
  44624. name: "Normal",
  44625. height: math.unit(9 + 8/12, "feet"),
  44626. default: true
  44627. },
  44628. {
  44629. name: "Macro",
  44630. height: math.unit(500, "feet")
  44631. },
  44632. {
  44633. name: "Megamacro",
  44634. height: math.unit(3.6, "miles")
  44635. },
  44636. ]
  44637. ))
  44638. characterMakers.push(() => makeCharacter(
  44639. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44640. {
  44641. front: {
  44642. height: math.unit(200, "cm"),
  44643. weight: math.unit(250, "lb"),
  44644. name: "Front",
  44645. image: {
  44646. source: "./media/characters/fowler-karlsson/front.svg",
  44647. extra: 897/845,
  44648. bottom: 123/1020
  44649. }
  44650. },
  44651. back: {
  44652. height: math.unit(200, "cm"),
  44653. weight: math.unit(250, "lb"),
  44654. name: "Back",
  44655. image: {
  44656. source: "./media/characters/fowler-karlsson/back.svg",
  44657. extra: 999/944,
  44658. bottom: 26/1025
  44659. }
  44660. },
  44661. dick: {
  44662. height: math.unit(1.92, "feet"),
  44663. weight: math.unit(150, "lb"),
  44664. name: "Dick",
  44665. image: {
  44666. source: "./media/characters/fowler-karlsson/dick.svg"
  44667. }
  44668. },
  44669. },
  44670. [
  44671. {
  44672. name: "Normal",
  44673. height: math.unit(200, "cm"),
  44674. default: true
  44675. },
  44676. {
  44677. name: "Smaller Macro",
  44678. height: math.unit(90, "m")
  44679. },
  44680. {
  44681. name: "Macro",
  44682. height: math.unit(150, "m")
  44683. },
  44684. {
  44685. name: "Bigger Macro",
  44686. height: math.unit(300, "m")
  44687. },
  44688. ]
  44689. ))
  44690. characterMakers.push(() => makeCharacter(
  44691. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44692. {
  44693. side: {
  44694. height: math.unit(8 + 2/12, "feet"),
  44695. weight: math.unit(1, "tonne"),
  44696. name: "Side",
  44697. image: {
  44698. source: "./media/characters/rylide/side.svg",
  44699. extra: 1318/1034,
  44700. bottom: 106/1424
  44701. }
  44702. },
  44703. sitting: {
  44704. height: math.unit(303, "cm"),
  44705. weight: math.unit(1, "tonne"),
  44706. name: "Sitting",
  44707. image: {
  44708. source: "./media/characters/rylide/sitting.svg",
  44709. extra: 1303/1103,
  44710. bottom: 36/1339
  44711. }
  44712. },
  44713. },
  44714. [
  44715. {
  44716. name: "Normal",
  44717. height: math.unit(8 + 2/12, "feet"),
  44718. default: true
  44719. },
  44720. ]
  44721. ))
  44722. characterMakers.push(() => makeCharacter(
  44723. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44724. {
  44725. front: {
  44726. height: math.unit(5 + 10/12, "feet"),
  44727. weight: math.unit(160, "lb"),
  44728. name: "Front",
  44729. image: {
  44730. source: "./media/characters/pudask/front.svg",
  44731. extra: 1616/1590,
  44732. bottom: 161/1777
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "Ferret Height",
  44739. height: math.unit(2 + 5/12, "feet")
  44740. },
  44741. {
  44742. name: "Canon Height",
  44743. height: math.unit(5 + 10/12, "feet"),
  44744. default: true
  44745. },
  44746. ]
  44747. ))
  44748. characterMakers.push(() => makeCharacter(
  44749. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44750. {
  44751. front: {
  44752. height: math.unit(3 + 6/12, "feet"),
  44753. weight: math.unit(60, "lb"),
  44754. name: "Front",
  44755. image: {
  44756. source: "./media/characters/ramita/front.svg",
  44757. extra: 1402/1232,
  44758. bottom: 62/1464
  44759. }
  44760. },
  44761. dressed: {
  44762. height: math.unit(3 + 6/12, "feet"),
  44763. weight: math.unit(60, "lb"),
  44764. name: "Dressed",
  44765. image: {
  44766. source: "./media/characters/ramita/dressed.svg",
  44767. extra: 1534/1249,
  44768. bottom: 50/1584
  44769. }
  44770. },
  44771. },
  44772. [
  44773. {
  44774. name: "Normal",
  44775. height: math.unit(3 + 6/12, "feet"),
  44776. default: true
  44777. },
  44778. ]
  44779. ))
  44780. characterMakers.push(() => makeCharacter(
  44781. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44782. {
  44783. front: {
  44784. height: math.unit(8, "feet"),
  44785. name: "Front",
  44786. image: {
  44787. source: "./media/characters/ark/front.svg",
  44788. extra: 772/693,
  44789. bottom: 45/817
  44790. }
  44791. },
  44792. },
  44793. [
  44794. {
  44795. name: "Normal",
  44796. height: math.unit(8, "feet"),
  44797. default: true
  44798. },
  44799. ]
  44800. ))
  44801. characterMakers.push(() => makeCharacter(
  44802. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44803. {
  44804. front: {
  44805. height: math.unit(6, "feet"),
  44806. weight: math.unit(250, "lb"),
  44807. volume: math.unit(5/8, "gallons"),
  44808. name: "Front",
  44809. image: {
  44810. source: "./media/characters/ludwig-horn/front.svg",
  44811. extra: 1782/1635,
  44812. bottom: 96/1878
  44813. }
  44814. },
  44815. back: {
  44816. height: math.unit(6, "feet"),
  44817. weight: math.unit(250, "lb"),
  44818. volume: math.unit(5/8, "gallons"),
  44819. name: "Back",
  44820. image: {
  44821. source: "./media/characters/ludwig-horn/back.svg",
  44822. extra: 1874/1729,
  44823. bottom: 27/1901
  44824. }
  44825. },
  44826. dick: {
  44827. height: math.unit(1.05, "feet"),
  44828. weight: math.unit(15, "lb"),
  44829. volume: math.unit(5/8, "gallons"),
  44830. name: "Dick",
  44831. image: {
  44832. source: "./media/characters/ludwig-horn/dick.svg"
  44833. }
  44834. },
  44835. },
  44836. [
  44837. {
  44838. name: "Small",
  44839. height: math.unit(6, "feet")
  44840. },
  44841. {
  44842. name: "Typical",
  44843. height: math.unit(12, "feet"),
  44844. default: true
  44845. },
  44846. {
  44847. name: "Building",
  44848. height: math.unit(80, "feet")
  44849. },
  44850. {
  44851. name: "Town",
  44852. height: math.unit(800, "feet")
  44853. },
  44854. {
  44855. name: "Kingdom",
  44856. height: math.unit(80000, "feet")
  44857. },
  44858. {
  44859. name: "Planet",
  44860. height: math.unit(8000000, "feet")
  44861. },
  44862. {
  44863. name: "Universe",
  44864. height: math.unit(8000000000, "feet")
  44865. },
  44866. {
  44867. name: "Transcended",
  44868. height: math.unit(8e27, "feet")
  44869. },
  44870. ]
  44871. ))
  44872. characterMakers.push(() => makeCharacter(
  44873. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44874. {
  44875. front: {
  44876. height: math.unit(5, "feet"),
  44877. weight: math.unit(50, "kg"),
  44878. name: "Front",
  44879. image: {
  44880. source: "./media/characters/biot-avery/front.svg",
  44881. extra: 1295/1232,
  44882. bottom: 86/1381
  44883. }
  44884. },
  44885. },
  44886. [
  44887. {
  44888. name: "Normal",
  44889. height: math.unit(5, "feet"),
  44890. default: true
  44891. },
  44892. ]
  44893. ))
  44894. characterMakers.push(() => makeCharacter(
  44895. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44896. {
  44897. front: {
  44898. height: math.unit(6, "feet"),
  44899. name: "Front",
  44900. image: {
  44901. source: "./media/characters/kitsune-kiro/front.svg",
  44902. extra: 1270/1158,
  44903. bottom: 42/1312
  44904. }
  44905. },
  44906. frontAlt: {
  44907. height: math.unit(6, "feet"),
  44908. name: "Front-alt",
  44909. image: {
  44910. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44911. extra: 1130/1081,
  44912. bottom: 36/1166
  44913. }
  44914. },
  44915. },
  44916. [
  44917. {
  44918. name: "Smol",
  44919. height: math.unit(3, "feet")
  44920. },
  44921. {
  44922. name: "Normal",
  44923. height: math.unit(6, "feet"),
  44924. default: true
  44925. },
  44926. ]
  44927. ))
  44928. characterMakers.push(() => makeCharacter(
  44929. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44930. {
  44931. front: {
  44932. height: math.unit(6, "feet"),
  44933. weight: math.unit(125, "lb"),
  44934. name: "Front",
  44935. image: {
  44936. source: "./media/characters/jack-thatcher/front.svg",
  44937. extra: 1474/1370,
  44938. bottom: 26/1500
  44939. }
  44940. },
  44941. back: {
  44942. height: math.unit(6, "feet"),
  44943. weight: math.unit(125, "lb"),
  44944. name: "Back",
  44945. image: {
  44946. source: "./media/characters/jack-thatcher/back.svg",
  44947. extra: 1489/1384,
  44948. bottom: 18/1507
  44949. }
  44950. },
  44951. },
  44952. [
  44953. {
  44954. name: "Normal",
  44955. height: math.unit(6, "feet"),
  44956. default: true
  44957. },
  44958. {
  44959. name: "Macro",
  44960. height: math.unit(75, "feet")
  44961. },
  44962. {
  44963. name: "Macro-er",
  44964. height: math.unit(250, "feet")
  44965. },
  44966. ]
  44967. ))
  44968. characterMakers.push(() => makeCharacter(
  44969. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44970. {
  44971. front: {
  44972. height: math.unit(7, "feet"),
  44973. weight: math.unit(110, "kg"),
  44974. name: "Front",
  44975. image: {
  44976. source: "./media/characters/max-hyper/front.svg",
  44977. extra: 1969/1881,
  44978. bottom: 49/2018
  44979. }
  44980. },
  44981. },
  44982. [
  44983. {
  44984. name: "Normal",
  44985. height: math.unit(7, "feet"),
  44986. default: true
  44987. },
  44988. ]
  44989. ))
  44990. characterMakers.push(() => makeCharacter(
  44991. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44992. {
  44993. front: {
  44994. height: math.unit(5 + 5/12, "feet"),
  44995. weight: math.unit(160, "lb"),
  44996. name: "Front",
  44997. image: {
  44998. source: "./media/characters/spook/front.svg",
  44999. extra: 794/791,
  45000. bottom: 54/848
  45001. }
  45002. },
  45003. back: {
  45004. height: math.unit(5 + 5/12, "feet"),
  45005. weight: math.unit(160, "lb"),
  45006. name: "Back",
  45007. image: {
  45008. source: "./media/characters/spook/back.svg",
  45009. extra: 812/798,
  45010. bottom: 32/844
  45011. }
  45012. },
  45013. },
  45014. [
  45015. {
  45016. name: "Normal",
  45017. height: math.unit(5 + 5/12, "feet"),
  45018. default: true
  45019. },
  45020. ]
  45021. ))
  45022. characterMakers.push(() => makeCharacter(
  45023. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45024. {
  45025. front: {
  45026. height: math.unit(18, "feet"),
  45027. name: "Front",
  45028. image: {
  45029. source: "./media/characters/xeaduulix/front.svg",
  45030. extra: 1380/1166,
  45031. bottom: 110/1490
  45032. }
  45033. },
  45034. back: {
  45035. height: math.unit(18, "feet"),
  45036. name: "Back",
  45037. image: {
  45038. source: "./media/characters/xeaduulix/back.svg",
  45039. extra: 1592/1170,
  45040. bottom: 128/1720
  45041. }
  45042. },
  45043. frontNsfw: {
  45044. height: math.unit(18, "feet"),
  45045. name: "Front (NSFW)",
  45046. image: {
  45047. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45048. extra: 1380/1166,
  45049. bottom: 110/1490
  45050. }
  45051. },
  45052. backNsfw: {
  45053. height: math.unit(18, "feet"),
  45054. name: "Back (NSFW)",
  45055. image: {
  45056. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45057. extra: 1592/1170,
  45058. bottom: 128/1720
  45059. }
  45060. },
  45061. },
  45062. [
  45063. {
  45064. name: "Normal",
  45065. height: math.unit(18, "feet"),
  45066. default: true
  45067. },
  45068. ]
  45069. ))
  45070. characterMakers.push(() => makeCharacter(
  45071. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45072. {
  45073. spreadWings: {
  45074. height: math.unit(20, "feet"),
  45075. name: "Spread Wings",
  45076. image: {
  45077. source: "./media/characters/fledge/spread-wings.svg",
  45078. extra: 693/635,
  45079. bottom: 26/719
  45080. }
  45081. },
  45082. front: {
  45083. height: math.unit(20, "feet"),
  45084. name: "Front",
  45085. image: {
  45086. source: "./media/characters/fledge/front.svg",
  45087. extra: 684/637,
  45088. bottom: 18/702
  45089. }
  45090. },
  45091. frontAlt: {
  45092. height: math.unit(20, "feet"),
  45093. name: "Front (Alt)",
  45094. image: {
  45095. source: "./media/characters/fledge/front-alt.svg",
  45096. extra: 708/664,
  45097. bottom: 13/721
  45098. }
  45099. },
  45100. back: {
  45101. height: math.unit(20, "feet"),
  45102. name: "Back",
  45103. image: {
  45104. source: "./media/characters/fledge/back.svg",
  45105. extra: 718/634,
  45106. bottom: 22/740
  45107. }
  45108. },
  45109. head: {
  45110. height: math.unit(5.55, "feet"),
  45111. name: "Head",
  45112. image: {
  45113. source: "./media/characters/fledge/head.svg"
  45114. }
  45115. },
  45116. headAlt: {
  45117. height: math.unit(5.1, "feet"),
  45118. name: "Head (Alt)",
  45119. image: {
  45120. source: "./media/characters/fledge/head-alt.svg"
  45121. }
  45122. },
  45123. },
  45124. [
  45125. {
  45126. name: "Small",
  45127. height: math.unit(6 + 2/12, "feet")
  45128. },
  45129. {
  45130. name: "Big",
  45131. height: math.unit(20, "feet"),
  45132. default: true
  45133. },
  45134. {
  45135. name: "Giant",
  45136. height: math.unit(100, "feet")
  45137. },
  45138. {
  45139. name: "Macro",
  45140. height: math.unit(200, "feet")
  45141. },
  45142. ]
  45143. ))
  45144. characterMakers.push(() => makeCharacter(
  45145. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45146. {
  45147. front: {
  45148. height: math.unit(1, "meter"),
  45149. name: "Front",
  45150. image: {
  45151. source: "./media/characters/atlas-morenai/front.svg",
  45152. extra: 1275/1043,
  45153. bottom: 19/1294
  45154. }
  45155. },
  45156. back: {
  45157. height: math.unit(1, "meter"),
  45158. name: "Back",
  45159. image: {
  45160. source: "./media/characters/atlas-morenai/back.svg",
  45161. extra: 1141/1001,
  45162. bottom: 25/1166
  45163. }
  45164. },
  45165. },
  45166. [
  45167. {
  45168. name: "Normal",
  45169. height: math.unit(1, "meter"),
  45170. default: true
  45171. },
  45172. {
  45173. name: "Magic-Infused",
  45174. height: math.unit(5, "meters")
  45175. },
  45176. ]
  45177. ))
  45178. characterMakers.push(() => makeCharacter(
  45179. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45180. {
  45181. front: {
  45182. height: math.unit(5, "meters"),
  45183. name: "Front",
  45184. image: {
  45185. source: "./media/characters/cintia/front.svg",
  45186. extra: 1312/1228,
  45187. bottom: 38/1350
  45188. }
  45189. },
  45190. back: {
  45191. height: math.unit(5, "meters"),
  45192. name: "Back",
  45193. image: {
  45194. source: "./media/characters/cintia/back.svg",
  45195. extra: 1260/1166,
  45196. bottom: 98/1358
  45197. }
  45198. },
  45199. frontDick: {
  45200. height: math.unit(5, "meters"),
  45201. name: "Front (Dick)",
  45202. image: {
  45203. source: "./media/characters/cintia/front-dick.svg",
  45204. extra: 1312/1228,
  45205. bottom: 38/1350
  45206. }
  45207. },
  45208. backDick: {
  45209. height: math.unit(5, "meters"),
  45210. name: "Back (Dick)",
  45211. image: {
  45212. source: "./media/characters/cintia/back-dick.svg",
  45213. extra: 1260/1166,
  45214. bottom: 98/1358
  45215. }
  45216. },
  45217. bust: {
  45218. height: math.unit(1.97, "meters"),
  45219. name: "Bust",
  45220. image: {
  45221. source: "./media/characters/cintia/bust.svg",
  45222. extra: 617/565,
  45223. bottom: 0/617
  45224. }
  45225. },
  45226. },
  45227. [
  45228. {
  45229. name: "Normal",
  45230. height: math.unit(5, "meters"),
  45231. default: true
  45232. },
  45233. ]
  45234. ))
  45235. characterMakers.push(() => makeCharacter(
  45236. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45237. {
  45238. side: {
  45239. height: math.unit(100, "feet"),
  45240. name: "Side",
  45241. image: {
  45242. source: "./media/characters/denora/side.svg",
  45243. extra: 875/803,
  45244. bottom: 9/884
  45245. }
  45246. },
  45247. },
  45248. [
  45249. {
  45250. name: "Standard",
  45251. height: math.unit(100, "feet"),
  45252. default: true
  45253. },
  45254. {
  45255. name: "Grand",
  45256. height: math.unit(1000, "feet")
  45257. },
  45258. {
  45259. name: "Conquering",
  45260. height: math.unit(10000, "feet")
  45261. },
  45262. ]
  45263. ))
  45264. characterMakers.push(() => makeCharacter(
  45265. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45266. {
  45267. dressed: {
  45268. height: math.unit(8 + 5/12, "feet"),
  45269. weight: math.unit(700, "lb"),
  45270. name: "Dressed",
  45271. image: {
  45272. source: "./media/characters/kiva/dressed.svg",
  45273. extra: 1102/1055,
  45274. bottom: 60/1162
  45275. }
  45276. },
  45277. nude: {
  45278. height: math.unit(8 + 5/12, "feet"),
  45279. weight: math.unit(700, "lb"),
  45280. name: "Nude",
  45281. image: {
  45282. source: "./media/characters/kiva/nude.svg",
  45283. extra: 1102/1055,
  45284. bottom: 60/1162
  45285. }
  45286. },
  45287. },
  45288. [
  45289. {
  45290. name: "Base Height",
  45291. height: math.unit(8 + 5/12, "feet"),
  45292. default: true
  45293. },
  45294. {
  45295. name: "Macro",
  45296. height: math.unit(100, "feet")
  45297. },
  45298. {
  45299. name: "Max",
  45300. height: math.unit(3280, "feet")
  45301. },
  45302. ]
  45303. ))
  45304. characterMakers.push(() => makeCharacter(
  45305. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45306. {
  45307. front: {
  45308. height: math.unit(6 + 8/12, "feet"),
  45309. weight: math.unit(250, "lb"),
  45310. name: "Front",
  45311. image: {
  45312. source: "./media/characters/ztragon/front.svg",
  45313. extra: 1825/1684,
  45314. bottom: 98/1923
  45315. }
  45316. },
  45317. },
  45318. [
  45319. {
  45320. name: "Normal",
  45321. height: math.unit(6 + 8/12, "feet"),
  45322. default: true
  45323. },
  45324. {
  45325. name: "Macro",
  45326. height: math.unit(80, "feet")
  45327. },
  45328. ]
  45329. ))
  45330. characterMakers.push(() => makeCharacter(
  45331. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45332. {
  45333. front: {
  45334. height: math.unit(10.4, "feet"),
  45335. weight: math.unit(2, "tons"),
  45336. name: "Front",
  45337. image: {
  45338. source: "./media/characters/yesenia/front.svg",
  45339. extra: 1479/1474,
  45340. bottom: 233/1712
  45341. }
  45342. },
  45343. },
  45344. [
  45345. {
  45346. name: "Normal",
  45347. height: math.unit(10.4, "feet"),
  45348. default: true
  45349. },
  45350. ]
  45351. ))
  45352. characterMakers.push(() => makeCharacter(
  45353. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45354. {
  45355. normal: {
  45356. height: math.unit(6 + 1/12, "feet"),
  45357. weight: math.unit(180, "lb"),
  45358. name: "Normal",
  45359. image: {
  45360. source: "./media/characters/leanne-lycheborne/normal.svg",
  45361. extra: 1748/1660,
  45362. bottom: 98/1846
  45363. }
  45364. },
  45365. were: {
  45366. height: math.unit(12, "feet"),
  45367. weight: math.unit(1600, "lb"),
  45368. name: "Were",
  45369. image: {
  45370. source: "./media/characters/leanne-lycheborne/were.svg",
  45371. extra: 1485/1432,
  45372. bottom: 66/1551
  45373. }
  45374. },
  45375. },
  45376. [
  45377. {
  45378. name: "Normal",
  45379. height: math.unit(6 + 1/12, "feet"),
  45380. default: true
  45381. },
  45382. ]
  45383. ))
  45384. characterMakers.push(() => makeCharacter(
  45385. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45386. {
  45387. side: {
  45388. height: math.unit(13, "feet"),
  45389. name: "Side",
  45390. image: {
  45391. source: "./media/characters/kira-tyler/side.svg",
  45392. extra: 693/393,
  45393. bottom: 58/751
  45394. }
  45395. },
  45396. },
  45397. [
  45398. {
  45399. name: "Normal",
  45400. height: math.unit(13, "feet"),
  45401. default: true
  45402. },
  45403. ]
  45404. ))
  45405. characterMakers.push(() => makeCharacter(
  45406. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45407. {
  45408. front: {
  45409. height: math.unit(10.3, "feet"),
  45410. weight: math.unit(150, "lb"),
  45411. name: "Front",
  45412. image: {
  45413. source: "./media/characters/blaze/front.svg",
  45414. extra: 1378/1286,
  45415. bottom: 172/1550
  45416. }
  45417. },
  45418. },
  45419. [
  45420. {
  45421. name: "Normal",
  45422. height: math.unit(10.3, "feet"),
  45423. default: true
  45424. },
  45425. ]
  45426. ))
  45427. characterMakers.push(() => makeCharacter(
  45428. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45429. {
  45430. side: {
  45431. height: math.unit(2, "meters"),
  45432. weight: math.unit(400, "kg"),
  45433. name: "Side",
  45434. image: {
  45435. source: "./media/characters/anu/side.svg",
  45436. extra: 506/394,
  45437. bottom: 18/524
  45438. }
  45439. },
  45440. },
  45441. [
  45442. {
  45443. name: "Humanoid",
  45444. height: math.unit(2, "meters")
  45445. },
  45446. {
  45447. name: "Normal",
  45448. height: math.unit(5, "meters"),
  45449. default: true
  45450. },
  45451. ]
  45452. ))
  45453. characterMakers.push(() => makeCharacter(
  45454. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45455. {
  45456. front: {
  45457. height: math.unit(5 + 5/12, "feet"),
  45458. weight: math.unit(170, "lb"),
  45459. name: "Front",
  45460. image: {
  45461. source: "./media/characters/synx-the-lynx/front.svg",
  45462. extra: 1893/1745,
  45463. bottom: 17/1910
  45464. }
  45465. },
  45466. side: {
  45467. height: math.unit(5 + 5/12, "feet"),
  45468. weight: math.unit(170, "lb"),
  45469. name: "Side",
  45470. image: {
  45471. source: "./media/characters/synx-the-lynx/side.svg",
  45472. extra: 1884/1740,
  45473. bottom: 39/1923
  45474. }
  45475. },
  45476. back: {
  45477. height: math.unit(5 + 5/12, "feet"),
  45478. weight: math.unit(170, "lb"),
  45479. name: "Back",
  45480. image: {
  45481. source: "./media/characters/synx-the-lynx/back.svg",
  45482. extra: 1903/1755,
  45483. bottom: 14/1917
  45484. }
  45485. },
  45486. },
  45487. [
  45488. {
  45489. name: "Normal",
  45490. height: math.unit(5 + 5/12, "feet"),
  45491. default: true
  45492. },
  45493. ]
  45494. ))
  45495. characterMakers.push(() => makeCharacter(
  45496. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45497. {
  45498. back: {
  45499. height: math.unit(15, "feet"),
  45500. name: "Back",
  45501. image: {
  45502. source: "./media/characters/nadezda-fex/back.svg",
  45503. extra: 1695/1481,
  45504. bottom: 25/1720
  45505. }
  45506. },
  45507. },
  45508. [
  45509. {
  45510. name: "Normal",
  45511. height: math.unit(15, "feet"),
  45512. default: true
  45513. },
  45514. {
  45515. name: "Macro",
  45516. height: math.unit(2.5, "miles")
  45517. },
  45518. {
  45519. name: "Goddess",
  45520. height: math.unit(2, "multiverses")
  45521. },
  45522. ]
  45523. ))
  45524. characterMakers.push(() => makeCharacter(
  45525. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45526. {
  45527. front: {
  45528. height: math.unit(216, "cm"),
  45529. name: "Front",
  45530. image: {
  45531. source: "./media/characters/lev/front.svg",
  45532. extra: 1728/1670,
  45533. bottom: 82/1810
  45534. }
  45535. },
  45536. back: {
  45537. height: math.unit(216, "cm"),
  45538. name: "Back",
  45539. image: {
  45540. source: "./media/characters/lev/back.svg",
  45541. extra: 1738/1675,
  45542. bottom: 24/1762
  45543. }
  45544. },
  45545. dressed: {
  45546. height: math.unit(216, "cm"),
  45547. name: "Dressed",
  45548. image: {
  45549. source: "./media/characters/lev/dressed.svg",
  45550. extra: 1397/1351,
  45551. bottom: 73/1470
  45552. }
  45553. },
  45554. head: {
  45555. height: math.unit(0.51, "meter"),
  45556. name: "Head",
  45557. image: {
  45558. source: "./media/characters/lev/head.svg"
  45559. }
  45560. },
  45561. },
  45562. [
  45563. {
  45564. name: "Normal",
  45565. height: math.unit(216, "cm"),
  45566. default: true
  45567. },
  45568. {
  45569. name: "Relatively Macro",
  45570. height: math.unit(80, "meters")
  45571. },
  45572. {
  45573. name: "Megamacro",
  45574. height: math.unit(21600, "meters")
  45575. },
  45576. {
  45577. name: "Megamacro+",
  45578. height: math.unit(64800, "meters")
  45579. },
  45580. ]
  45581. ))
  45582. characterMakers.push(() => makeCharacter(
  45583. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45584. {
  45585. front: {
  45586. height: math.unit(2, "meters"),
  45587. weight: math.unit(80, "kg"),
  45588. name: "Front",
  45589. image: {
  45590. source: "./media/characters/moka/front.svg",
  45591. extra: 1337/1255,
  45592. bottom: 58/1395
  45593. }
  45594. },
  45595. },
  45596. [
  45597. {
  45598. name: "Micro",
  45599. height: math.unit(15, "cm")
  45600. },
  45601. {
  45602. name: "Normal",
  45603. height: math.unit(2, "meters"),
  45604. default: true
  45605. },
  45606. {
  45607. name: "Macro",
  45608. height: math.unit(20, "meters"),
  45609. },
  45610. ]
  45611. ))
  45612. characterMakers.push(() => makeCharacter(
  45613. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45614. {
  45615. front: {
  45616. height: math.unit(9, "feet"),
  45617. weight: math.unit(240, "lb"),
  45618. name: "Front",
  45619. image: {
  45620. source: "./media/characters/kuzco/front.svg",
  45621. extra: 1593/1487,
  45622. bottom: 32/1625
  45623. }
  45624. },
  45625. side: {
  45626. height: math.unit(9, "feet"),
  45627. weight: math.unit(240, "lb"),
  45628. name: "Side",
  45629. image: {
  45630. source: "./media/characters/kuzco/side.svg",
  45631. extra: 1575/1485,
  45632. bottom: 30/1605
  45633. }
  45634. },
  45635. back: {
  45636. height: math.unit(9, "feet"),
  45637. weight: math.unit(240, "lb"),
  45638. name: "Back",
  45639. image: {
  45640. source: "./media/characters/kuzco/back.svg",
  45641. extra: 1603/1514,
  45642. bottom: 14/1617
  45643. }
  45644. },
  45645. },
  45646. [
  45647. {
  45648. name: "Normal",
  45649. height: math.unit(9, "feet"),
  45650. default: true
  45651. },
  45652. ]
  45653. ))
  45654. characterMakers.push(() => makeCharacter(
  45655. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45656. {
  45657. side: {
  45658. height: math.unit(2, "meters"),
  45659. weight: math.unit(300, "kg"),
  45660. name: "Side",
  45661. image: {
  45662. source: "./media/characters/ceruleus/side.svg",
  45663. extra: 1068/974,
  45664. bottom: 126/1194
  45665. }
  45666. },
  45667. },
  45668. [
  45669. {
  45670. name: "Normal",
  45671. height: math.unit(16, "meters"),
  45672. default: true
  45673. },
  45674. ]
  45675. ))
  45676. characterMakers.push(() => makeCharacter(
  45677. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45678. {
  45679. front: {
  45680. height: math.unit(9, "feet"),
  45681. weight: math.unit(500, "kg"),
  45682. name: "Front",
  45683. image: {
  45684. source: "./media/characters/acouya/front.svg",
  45685. extra: 1660/1473,
  45686. bottom: 28/1688
  45687. }
  45688. },
  45689. },
  45690. [
  45691. {
  45692. name: "Normal",
  45693. height: math.unit(9, "feet"),
  45694. default: true
  45695. },
  45696. ]
  45697. ))
  45698. characterMakers.push(() => makeCharacter(
  45699. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45700. {
  45701. front: {
  45702. height: math.unit(5 + 6/12, "feet"),
  45703. weight: math.unit(195, "lb"),
  45704. name: "Front",
  45705. image: {
  45706. source: "./media/characters/vant/front.svg",
  45707. extra: 1396/1320,
  45708. bottom: 20/1416
  45709. }
  45710. },
  45711. back: {
  45712. height: math.unit(5 + 6/12, "feet"),
  45713. weight: math.unit(195, "lb"),
  45714. name: "Back",
  45715. image: {
  45716. source: "./media/characters/vant/back.svg",
  45717. extra: 1396/1320,
  45718. bottom: 20/1416
  45719. }
  45720. },
  45721. maw: {
  45722. height: math.unit(0.75, "feet"),
  45723. name: "Maw",
  45724. image: {
  45725. source: "./media/characters/vant/maw.svg"
  45726. }
  45727. },
  45728. paw: {
  45729. height: math.unit(1.07, "feet"),
  45730. name: "Paw",
  45731. image: {
  45732. source: "./media/characters/vant/paw.svg"
  45733. }
  45734. },
  45735. },
  45736. [
  45737. {
  45738. name: "Micro",
  45739. height: math.unit(0.25, "inches")
  45740. },
  45741. {
  45742. name: "Normal",
  45743. height: math.unit(5 + 6/12, "feet"),
  45744. default: true
  45745. },
  45746. {
  45747. name: "Macro",
  45748. height: math.unit(75, "feet")
  45749. },
  45750. ]
  45751. ))
  45752. characterMakers.push(() => makeCharacter(
  45753. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45754. {
  45755. front: {
  45756. height: math.unit(30, "meters"),
  45757. weight: math.unit(363, "tons"),
  45758. name: "Front",
  45759. image: {
  45760. source: "./media/characters/ahra/front.svg",
  45761. extra: 1914/1814,
  45762. bottom: 46/1960
  45763. }
  45764. },
  45765. },
  45766. [
  45767. {
  45768. name: "Macro",
  45769. height: math.unit(30, "meters"),
  45770. default: true
  45771. },
  45772. ]
  45773. ))
  45774. characterMakers.push(() => makeCharacter(
  45775. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45776. {
  45777. undressed: {
  45778. height: math.unit(2, "m"),
  45779. weight: math.unit(250, "kg"),
  45780. name: "Undressed",
  45781. image: {
  45782. source: "./media/characters/coriander/undressed.svg",
  45783. extra: 1757/1606,
  45784. bottom: 107/1864
  45785. }
  45786. },
  45787. dressed: {
  45788. height: math.unit(2, "m"),
  45789. weight: math.unit(250, "kg"),
  45790. name: "Dressed",
  45791. image: {
  45792. source: "./media/characters/coriander/dressed.svg",
  45793. extra: 1757/1606,
  45794. bottom: 107/1864
  45795. }
  45796. },
  45797. },
  45798. [
  45799. {
  45800. name: "Normal",
  45801. height: math.unit(4, "meters"),
  45802. default: true
  45803. },
  45804. {
  45805. name: "XL",
  45806. height: math.unit(6, "meters")
  45807. },
  45808. {
  45809. name: "XXL",
  45810. height: math.unit(8, "meters")
  45811. },
  45812. ]
  45813. ))
  45814. characterMakers.push(() => makeCharacter(
  45815. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45816. {
  45817. front: {
  45818. height: math.unit(6, "feet"),
  45819. name: "Front",
  45820. image: {
  45821. source: "./media/characters/syrinx/front.svg",
  45822. extra: 1557/1259,
  45823. bottom: 171/1728
  45824. }
  45825. },
  45826. },
  45827. [
  45828. {
  45829. name: "Normal",
  45830. height: math.unit(6 + 3/12, "feet"),
  45831. default: true
  45832. },
  45833. ]
  45834. ))
  45835. characterMakers.push(() => makeCharacter(
  45836. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45837. {
  45838. front: {
  45839. height: math.unit(11 + 6/12, "feet"),
  45840. weight: math.unit(1.5, "tons"),
  45841. name: "Front",
  45842. image: {
  45843. source: "./media/characters/bor/front.svg",
  45844. extra: 1189/1109,
  45845. bottom: 170/1359
  45846. }
  45847. },
  45848. },
  45849. [
  45850. {
  45851. name: "Normal",
  45852. height: math.unit(11 + 6/12, "feet"),
  45853. default: true
  45854. },
  45855. {
  45856. name: "Macro",
  45857. height: math.unit(32 + 9/12, "feet")
  45858. },
  45859. ]
  45860. ))
  45861. characterMakers.push(() => makeCharacter(
  45862. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45863. {
  45864. anthro: {
  45865. height: math.unit(9, "feet"),
  45866. weight: math.unit(2076, "lb"),
  45867. name: "Anthro",
  45868. image: {
  45869. source: "./media/characters/abacus/anthro.svg",
  45870. extra: 1540/1494,
  45871. bottom: 233/1773
  45872. }
  45873. },
  45874. pigeon: {
  45875. height: math.unit(1, "feet"),
  45876. name: "Pigeon",
  45877. image: {
  45878. source: "./media/characters/abacus/pigeon.svg",
  45879. extra: 528/525,
  45880. bottom: 46/574
  45881. }
  45882. },
  45883. },
  45884. [
  45885. {
  45886. name: "Normal",
  45887. height: math.unit(9, "feet"),
  45888. default: true
  45889. },
  45890. ]
  45891. ))
  45892. characterMakers.push(() => makeCharacter(
  45893. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45894. {
  45895. side: {
  45896. height: math.unit(6, "feet"),
  45897. name: "Side",
  45898. image: {
  45899. source: "./media/characters/delkhan/side.svg",
  45900. extra: 1884/1786,
  45901. bottom: 308/2192
  45902. }
  45903. },
  45904. head: {
  45905. height: math.unit(3.38, "feet"),
  45906. name: "Head",
  45907. image: {
  45908. source: "./media/characters/delkhan/head.svg"
  45909. }
  45910. },
  45911. },
  45912. [
  45913. {
  45914. name: "Normal",
  45915. height: math.unit(72, "feet"),
  45916. default: true
  45917. },
  45918. {
  45919. name: "Giant",
  45920. height: math.unit(172, "feet")
  45921. },
  45922. ]
  45923. ))
  45924. characterMakers.push(() => makeCharacter(
  45925. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45926. {
  45927. standing: {
  45928. height: math.unit(6, "feet"),
  45929. name: "Standing",
  45930. image: {
  45931. source: "./media/characters/euchidat/standing.svg",
  45932. extra: 1612/1553,
  45933. bottom: 116/1728
  45934. }
  45935. },
  45936. leaning: {
  45937. height: math.unit(6, "feet"),
  45938. name: "Leaning",
  45939. image: {
  45940. source: "./media/characters/euchidat/leaning.svg",
  45941. extra: 1719/1674,
  45942. bottom: 27/1746
  45943. }
  45944. },
  45945. },
  45946. [
  45947. {
  45948. name: "Normal",
  45949. height: math.unit(175, "feet"),
  45950. default: true
  45951. },
  45952. {
  45953. name: "Megamacro",
  45954. height: math.unit(190, "miles")
  45955. },
  45956. {
  45957. name: "Gigamacro",
  45958. height: math.unit(190000, "miles")
  45959. },
  45960. ]
  45961. ))
  45962. characterMakers.push(() => makeCharacter(
  45963. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45964. {
  45965. front: {
  45966. height: math.unit(6, "feet"),
  45967. weight: math.unit(150, "lb"),
  45968. name: "Front",
  45969. image: {
  45970. source: "./media/characters/rebecca-stack/front.svg",
  45971. extra: 1256/1201,
  45972. bottom: 18/1274
  45973. }
  45974. },
  45975. },
  45976. [
  45977. {
  45978. name: "Normal",
  45979. height: math.unit(5 + 8/12, "feet"),
  45980. default: true
  45981. },
  45982. {
  45983. name: "Demolitionist",
  45984. height: math.unit(200, "feet")
  45985. },
  45986. {
  45987. name: "Out of Control",
  45988. height: math.unit(2, "miles")
  45989. },
  45990. {
  45991. name: "Giga",
  45992. height: math.unit(7200, "miles")
  45993. },
  45994. ]
  45995. ))
  45996. characterMakers.push(() => makeCharacter(
  45997. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45998. {
  45999. front: {
  46000. height: math.unit(6, "feet"),
  46001. weight: math.unit(150, "lb"),
  46002. name: "Front",
  46003. image: {
  46004. source: "./media/characters/jenny-cartwright/front.svg",
  46005. extra: 1384/1376,
  46006. bottom: 58/1442
  46007. }
  46008. },
  46009. },
  46010. [
  46011. {
  46012. name: "Normal",
  46013. height: math.unit(6 + 7/12, "feet"),
  46014. default: true
  46015. },
  46016. {
  46017. name: "Librarian",
  46018. height: math.unit(55, "feet")
  46019. },
  46020. {
  46021. name: "Sightseer",
  46022. height: math.unit(50, "miles")
  46023. },
  46024. {
  46025. name: "Giga",
  46026. height: math.unit(30000, "miles")
  46027. },
  46028. ]
  46029. ))
  46030. characterMakers.push(() => makeCharacter(
  46031. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46032. {
  46033. nude: {
  46034. height: math.unit(8, "feet"),
  46035. weight: math.unit(225, "lb"),
  46036. name: "Nude",
  46037. image: {
  46038. source: "./media/characters/marvy/nude.svg",
  46039. extra: 1900/1683,
  46040. bottom: 89/1989
  46041. }
  46042. },
  46043. dressed: {
  46044. height: math.unit(8, "feet"),
  46045. weight: math.unit(225, "lb"),
  46046. name: "Dressed",
  46047. image: {
  46048. source: "./media/characters/marvy/dressed.svg",
  46049. extra: 1900/1683,
  46050. bottom: 89/1989
  46051. }
  46052. },
  46053. head: {
  46054. height: math.unit(2.85, "feet"),
  46055. name: "Head",
  46056. image: {
  46057. source: "./media/characters/marvy/head.svg"
  46058. }
  46059. },
  46060. },
  46061. [
  46062. {
  46063. name: "Normal",
  46064. height: math.unit(8, "feet"),
  46065. default: true
  46066. },
  46067. ]
  46068. ))
  46069. characterMakers.push(() => makeCharacter(
  46070. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46071. {
  46072. front: {
  46073. height: math.unit(8, "feet"),
  46074. weight: math.unit(250, "lb"),
  46075. name: "Front",
  46076. image: {
  46077. source: "./media/characters/leah/front.svg",
  46078. extra: 1257/1149,
  46079. bottom: 109/1366
  46080. }
  46081. },
  46082. },
  46083. [
  46084. {
  46085. name: "Normal",
  46086. height: math.unit(8, "feet"),
  46087. default: true
  46088. },
  46089. {
  46090. name: "Minimacro",
  46091. height: math.unit(40, "feet")
  46092. },
  46093. {
  46094. name: "Macro",
  46095. height: math.unit(124, "feet")
  46096. },
  46097. {
  46098. name: "Megamacro",
  46099. height: math.unit(850, "feet")
  46100. },
  46101. ]
  46102. ))
  46103. characterMakers.push(() => makeCharacter(
  46104. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46105. {
  46106. side: {
  46107. height: math.unit(13 + 6/12, "feet"),
  46108. weight: math.unit(3200, "lb"),
  46109. name: "Side",
  46110. image: {
  46111. source: "./media/characters/alvir/side.svg",
  46112. extra: 896/589,
  46113. bottom: 26/922
  46114. }
  46115. },
  46116. },
  46117. [
  46118. {
  46119. name: "Normal",
  46120. height: math.unit(13 + 6/12, "feet"),
  46121. default: true
  46122. },
  46123. ]
  46124. ))
  46125. characterMakers.push(() => makeCharacter(
  46126. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46127. {
  46128. front: {
  46129. height: math.unit(5 + 4/12, "feet"),
  46130. weight: math.unit(236, "lb"),
  46131. name: "Front",
  46132. image: {
  46133. source: "./media/characters/zaina-khalil/front.svg",
  46134. extra: 1533/1485,
  46135. bottom: 94/1627
  46136. }
  46137. },
  46138. side: {
  46139. height: math.unit(5 + 4/12, "feet"),
  46140. weight: math.unit(236, "lb"),
  46141. name: "Side",
  46142. image: {
  46143. source: "./media/characters/zaina-khalil/side.svg",
  46144. extra: 1537/1498,
  46145. bottom: 66/1603
  46146. }
  46147. },
  46148. back: {
  46149. height: math.unit(5 + 4/12, "feet"),
  46150. weight: math.unit(236, "lb"),
  46151. name: "Back",
  46152. image: {
  46153. source: "./media/characters/zaina-khalil/back.svg",
  46154. extra: 1546/1494,
  46155. bottom: 89/1635
  46156. }
  46157. },
  46158. },
  46159. [
  46160. {
  46161. name: "Normal",
  46162. height: math.unit(5 + 4/12, "feet"),
  46163. default: true
  46164. },
  46165. ]
  46166. ))
  46167. characterMakers.push(() => makeCharacter(
  46168. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46169. {
  46170. side: {
  46171. height: math.unit(12, "feet"),
  46172. weight: math.unit(4000, "lb"),
  46173. name: "Side",
  46174. image: {
  46175. source: "./media/characters/terry/side.svg",
  46176. extra: 1518/1439,
  46177. bottom: 149/1667
  46178. }
  46179. },
  46180. },
  46181. [
  46182. {
  46183. name: "Normal",
  46184. height: math.unit(12, "feet"),
  46185. default: true
  46186. },
  46187. ]
  46188. ))
  46189. characterMakers.push(() => makeCharacter(
  46190. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46191. {
  46192. front: {
  46193. height: math.unit(12, "feet"),
  46194. weight: math.unit(1500, "lb"),
  46195. name: "Front",
  46196. image: {
  46197. source: "./media/characters/kahea/front.svg",
  46198. extra: 1722/1617,
  46199. bottom: 179/1901
  46200. }
  46201. },
  46202. },
  46203. [
  46204. {
  46205. name: "Normal",
  46206. height: math.unit(12, "feet"),
  46207. default: true
  46208. },
  46209. ]
  46210. ))
  46211. characterMakers.push(() => makeCharacter(
  46212. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46213. {
  46214. demonFront: {
  46215. height: math.unit(36, "feet"),
  46216. name: "Front",
  46217. image: {
  46218. source: "./media/characters/alex-xuria/demon-front.svg",
  46219. extra: 1705/1673,
  46220. bottom: 198/1903
  46221. },
  46222. form: "demon",
  46223. default: true
  46224. },
  46225. demonBack: {
  46226. height: math.unit(36, "feet"),
  46227. name: "Back",
  46228. image: {
  46229. source: "./media/characters/alex-xuria/demon-back.svg",
  46230. extra: 1725/1693,
  46231. bottom: 70/1795
  46232. },
  46233. form: "demon"
  46234. },
  46235. demonHead: {
  46236. height: math.unit(2.14, "meters"),
  46237. name: "Head",
  46238. image: {
  46239. source: "./media/characters/alex-xuria/demon-head.svg"
  46240. },
  46241. form: "demon"
  46242. },
  46243. demonHand: {
  46244. height: math.unit(1.61, "meters"),
  46245. name: "Hand",
  46246. image: {
  46247. source: "./media/characters/alex-xuria/demon-hand.svg"
  46248. },
  46249. form: "demon"
  46250. },
  46251. demonPaw: {
  46252. height: math.unit(1.35, "meters"),
  46253. name: "Paw",
  46254. image: {
  46255. source: "./media/characters/alex-xuria/demon-paw.svg"
  46256. },
  46257. form: "demon"
  46258. },
  46259. demonFoot: {
  46260. height: math.unit(2.2, "meters"),
  46261. name: "Foot",
  46262. image: {
  46263. source: "./media/characters/alex-xuria/demon-foot.svg"
  46264. },
  46265. form: "demon"
  46266. },
  46267. demonCock: {
  46268. height: math.unit(1.74, "meters"),
  46269. name: "Cock",
  46270. image: {
  46271. source: "./media/characters/alex-xuria/demon-cock.svg"
  46272. },
  46273. form: "demon"
  46274. },
  46275. demonTailClosed: {
  46276. height: math.unit(1.47, "meters"),
  46277. name: "Tail (Closed)",
  46278. image: {
  46279. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46280. },
  46281. form: "demon"
  46282. },
  46283. demonTailOpen: {
  46284. height: math.unit(2.85, "meters"),
  46285. name: "Tail (Open)",
  46286. image: {
  46287. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46288. },
  46289. form: "demon"
  46290. },
  46291. incubusFront: {
  46292. height: math.unit(12, "feet"),
  46293. name: "Front",
  46294. image: {
  46295. source: "./media/characters/alex-xuria/incubus-front.svg",
  46296. extra: 1754/1677,
  46297. bottom: 125/1879
  46298. },
  46299. form: "incubus",
  46300. default: true
  46301. },
  46302. incubusBack: {
  46303. height: math.unit(12, "feet"),
  46304. name: "Back",
  46305. image: {
  46306. source: "./media/characters/alex-xuria/incubus-back.svg",
  46307. extra: 1702/1647,
  46308. bottom: 30/1732
  46309. },
  46310. form: "incubus"
  46311. },
  46312. incubusHead: {
  46313. height: math.unit(3.45, "feet"),
  46314. name: "Head",
  46315. image: {
  46316. source: "./media/characters/alex-xuria/incubus-head.svg"
  46317. },
  46318. form: "incubus"
  46319. },
  46320. rabbitFront: {
  46321. height: math.unit(6, "feet"),
  46322. name: "Front",
  46323. image: {
  46324. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46325. extra: 1369/1349,
  46326. bottom: 45/1414
  46327. },
  46328. form: "rabbit",
  46329. default: true
  46330. },
  46331. rabbitSide: {
  46332. height: math.unit(6, "feet"),
  46333. name: "Side",
  46334. image: {
  46335. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46336. extra: 1370/1356,
  46337. bottom: 37/1407
  46338. },
  46339. form: "rabbit"
  46340. },
  46341. rabbitBack: {
  46342. height: math.unit(6, "feet"),
  46343. name: "Back",
  46344. image: {
  46345. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46346. extra: 1375/1358,
  46347. bottom: 43/1418
  46348. },
  46349. form: "rabbit"
  46350. },
  46351. },
  46352. [
  46353. {
  46354. name: "Normal",
  46355. height: math.unit(6, "feet"),
  46356. default: true,
  46357. form: "rabbit"
  46358. },
  46359. {
  46360. name: "Incubus",
  46361. height: math.unit(12, "feet"),
  46362. default: true,
  46363. form: "incubus"
  46364. },
  46365. {
  46366. name: "Demon",
  46367. height: math.unit(36, "feet"),
  46368. default: true,
  46369. form: "demon"
  46370. }
  46371. ],
  46372. {
  46373. "demon": {
  46374. name: "Demon",
  46375. default: true
  46376. },
  46377. "incubus": {
  46378. name: "Incubus",
  46379. },
  46380. "rabbit": {
  46381. name: "Rabbit"
  46382. }
  46383. }
  46384. ))
  46385. characterMakers.push(() => makeCharacter(
  46386. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46387. {
  46388. front: {
  46389. height: math.unit(7 + 5/12, "feet"),
  46390. weight: math.unit(510, "lb"),
  46391. name: "Front",
  46392. image: {
  46393. source: "./media/characters/syrup/front.svg",
  46394. extra: 932/916,
  46395. bottom: 26/958
  46396. }
  46397. },
  46398. },
  46399. [
  46400. {
  46401. name: "Normal",
  46402. height: math.unit(7 + 5/12, "feet"),
  46403. default: true
  46404. },
  46405. {
  46406. name: "Big",
  46407. height: math.unit(50, "feet")
  46408. },
  46409. {
  46410. name: "Macro",
  46411. height: math.unit(300, "feet")
  46412. },
  46413. {
  46414. name: "Megamacro",
  46415. height: math.unit(1, "mile")
  46416. },
  46417. ]
  46418. ))
  46419. characterMakers.push(() => makeCharacter(
  46420. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46421. {
  46422. front: {
  46423. height: math.unit(6 + 9/12, "feet"),
  46424. name: "Front",
  46425. image: {
  46426. source: "./media/characters/zeimne/front.svg",
  46427. extra: 1969/1806,
  46428. bottom: 53/2022
  46429. }
  46430. },
  46431. },
  46432. [
  46433. {
  46434. name: "Normal",
  46435. height: math.unit(6 + 9/12, "feet"),
  46436. default: true
  46437. },
  46438. {
  46439. name: "Giant",
  46440. height: math.unit(550, "feet")
  46441. },
  46442. {
  46443. name: "Mega",
  46444. height: math.unit(3, "miles")
  46445. },
  46446. {
  46447. name: "Giga",
  46448. height: math.unit(250, "miles")
  46449. },
  46450. {
  46451. name: "Tera",
  46452. height: math.unit(1, "AU")
  46453. },
  46454. ]
  46455. ))
  46456. characterMakers.push(() => makeCharacter(
  46457. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46458. {
  46459. front: {
  46460. height: math.unit(5 + 2/12, "feet"),
  46461. name: "Front",
  46462. image: {
  46463. source: "./media/characters/grar/front.svg",
  46464. extra: 1331/1119,
  46465. bottom: 60/1391
  46466. }
  46467. },
  46468. back: {
  46469. height: math.unit(5 + 2/12, "feet"),
  46470. name: "Back",
  46471. image: {
  46472. source: "./media/characters/grar/back.svg",
  46473. extra: 1385/1169,
  46474. bottom: 23/1408
  46475. }
  46476. },
  46477. },
  46478. [
  46479. {
  46480. name: "Normal",
  46481. height: math.unit(5 + 2/12, "feet"),
  46482. default: true
  46483. },
  46484. ]
  46485. ))
  46486. characterMakers.push(() => makeCharacter(
  46487. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46488. {
  46489. front: {
  46490. height: math.unit(13 + 7/12, "feet"),
  46491. weight: math.unit(2200, "lb"),
  46492. name: "Front",
  46493. image: {
  46494. source: "./media/characters/endraya/front.svg",
  46495. extra: 1289/1215,
  46496. bottom: 50/1339
  46497. }
  46498. },
  46499. nude: {
  46500. height: math.unit(13 + 7/12, "feet"),
  46501. weight: math.unit(2200, "lb"),
  46502. name: "Nude",
  46503. image: {
  46504. source: "./media/characters/endraya/nude.svg",
  46505. extra: 1247/1171,
  46506. bottom: 40/1287
  46507. }
  46508. },
  46509. head: {
  46510. height: math.unit(2.6, "feet"),
  46511. name: "Head",
  46512. image: {
  46513. source: "./media/characters/endraya/head.svg"
  46514. }
  46515. },
  46516. slit: {
  46517. height: math.unit(3.4, "feet"),
  46518. name: "Slit",
  46519. image: {
  46520. source: "./media/characters/endraya/slit.svg"
  46521. }
  46522. },
  46523. },
  46524. [
  46525. {
  46526. name: "Normal",
  46527. height: math.unit(13 + 7/12, "feet"),
  46528. default: true
  46529. },
  46530. {
  46531. name: "Macro",
  46532. height: math.unit(200, "feet")
  46533. },
  46534. ]
  46535. ))
  46536. characterMakers.push(() => makeCharacter(
  46537. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46538. {
  46539. front: {
  46540. height: math.unit(1.81, "meters"),
  46541. weight: math.unit(69, "kg"),
  46542. name: "Front",
  46543. image: {
  46544. source: "./media/characters/rodryana/front.svg",
  46545. extra: 2002/1921,
  46546. bottom: 53/2055
  46547. }
  46548. },
  46549. back: {
  46550. height: math.unit(1.81, "meters"),
  46551. weight: math.unit(69, "kg"),
  46552. name: "Back",
  46553. image: {
  46554. source: "./media/characters/rodryana/back.svg",
  46555. extra: 1993/1926,
  46556. bottom: 48/2041
  46557. }
  46558. },
  46559. maw: {
  46560. height: math.unit(0.19769417475, "meters"),
  46561. name: "Maw",
  46562. image: {
  46563. source: "./media/characters/rodryana/maw.svg"
  46564. }
  46565. },
  46566. slit: {
  46567. height: math.unit(0.31631067961, "meters"),
  46568. name: "Slit",
  46569. image: {
  46570. source: "./media/characters/rodryana/slit.svg"
  46571. }
  46572. },
  46573. },
  46574. [
  46575. {
  46576. name: "Normal",
  46577. height: math.unit(1.81, "meters")
  46578. },
  46579. {
  46580. name: "Mini Macro",
  46581. height: math.unit(181, "meters")
  46582. },
  46583. {
  46584. name: "Macro",
  46585. height: math.unit(452, "meters"),
  46586. default: true
  46587. },
  46588. {
  46589. name: "Mega Macro",
  46590. height: math.unit(1.375, "km")
  46591. },
  46592. {
  46593. name: "Giga Macro",
  46594. height: math.unit(13.575, "km")
  46595. },
  46596. ]
  46597. ))
  46598. characterMakers.push(() => makeCharacter(
  46599. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46600. {
  46601. front: {
  46602. height: math.unit(6, "feet"),
  46603. weight: math.unit(1000, "lb"),
  46604. name: "Front",
  46605. image: {
  46606. source: "./media/characters/asaya/front.svg",
  46607. extra: 1460/1200,
  46608. bottom: 71/1531
  46609. }
  46610. },
  46611. },
  46612. [
  46613. {
  46614. name: "Normal",
  46615. height: math.unit(8, "km"),
  46616. default: true
  46617. },
  46618. ]
  46619. ))
  46620. characterMakers.push(() => makeCharacter(
  46621. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46622. {
  46623. front: {
  46624. height: math.unit(3.5, "meters"),
  46625. name: "Front",
  46626. image: {
  46627. source: "./media/characters/sarzu-and-israz/front.svg",
  46628. extra: 1570/1558,
  46629. bottom: 150/1720
  46630. },
  46631. },
  46632. back: {
  46633. height: math.unit(3.5, "meters"),
  46634. name: "Back",
  46635. image: {
  46636. source: "./media/characters/sarzu-and-israz/back.svg",
  46637. extra: 1523/1509,
  46638. bottom: 132/1655
  46639. },
  46640. },
  46641. frontFemale: {
  46642. height: math.unit(3.5, "meters"),
  46643. name: "Front (Female)",
  46644. image: {
  46645. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46646. extra: 1570/1558,
  46647. bottom: 150/1720
  46648. },
  46649. },
  46650. frontHerm: {
  46651. height: math.unit(3.5, "meters"),
  46652. name: "Front (Herm)",
  46653. image: {
  46654. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46655. extra: 1570/1558,
  46656. bottom: 150/1720
  46657. },
  46658. },
  46659. },
  46660. [
  46661. {
  46662. name: "Normal",
  46663. height: math.unit(3.5, "meters"),
  46664. default: true,
  46665. },
  46666. {
  46667. name: "Macro",
  46668. height: math.unit(65.5, "meters"),
  46669. },
  46670. ],
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46674. {
  46675. front: {
  46676. height: math.unit(6, "feet"),
  46677. weight: math.unit(250, "lb"),
  46678. name: "Front",
  46679. image: {
  46680. source: "./media/characters/zenimma/front.svg",
  46681. extra: 1346/1320,
  46682. bottom: 58/1404
  46683. }
  46684. },
  46685. back: {
  46686. height: math.unit(6, "feet"),
  46687. weight: math.unit(250, "lb"),
  46688. name: "Back",
  46689. image: {
  46690. source: "./media/characters/zenimma/back.svg",
  46691. extra: 1324/1308,
  46692. bottom: 44/1368
  46693. }
  46694. },
  46695. dick: {
  46696. height: math.unit(1.44, "feet"),
  46697. name: "Dick",
  46698. image: {
  46699. source: "./media/characters/zenimma/dick.svg"
  46700. }
  46701. },
  46702. },
  46703. [
  46704. {
  46705. name: "Canon Height",
  46706. height: math.unit(66, "miles"),
  46707. default: true
  46708. },
  46709. ]
  46710. ))
  46711. characterMakers.push(() => makeCharacter(
  46712. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46713. {
  46714. nude: {
  46715. height: math.unit(6, "feet"),
  46716. weight: math.unit(150, "lb"),
  46717. name: "Nude",
  46718. image: {
  46719. source: "./media/characters/shavon/nude.svg",
  46720. extra: 1242/1096,
  46721. bottom: 98/1340
  46722. }
  46723. },
  46724. dressed: {
  46725. height: math.unit(6, "feet"),
  46726. weight: math.unit(150, "lb"),
  46727. name: "Dressed",
  46728. image: {
  46729. source: "./media/characters/shavon/dressed.svg",
  46730. extra: 1242/1096,
  46731. bottom: 98/1340
  46732. }
  46733. },
  46734. },
  46735. [
  46736. {
  46737. name: "Macro",
  46738. height: math.unit(255, "feet"),
  46739. default: true
  46740. },
  46741. ]
  46742. ))
  46743. characterMakers.push(() => makeCharacter(
  46744. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46745. {
  46746. front: {
  46747. height: math.unit(6, "feet"),
  46748. name: "Front",
  46749. image: {
  46750. source: "./media/characters/steph/front.svg",
  46751. extra: 1430/1330,
  46752. bottom: 54/1484
  46753. }
  46754. },
  46755. },
  46756. [
  46757. {
  46758. name: "Normal",
  46759. height: math.unit(6, "feet"),
  46760. default: true
  46761. },
  46762. ]
  46763. ))
  46764. characterMakers.push(() => makeCharacter(
  46765. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46766. {
  46767. front: {
  46768. height: math.unit(9, "feet"),
  46769. weight: math.unit(400, "lb"),
  46770. name: "Front",
  46771. image: {
  46772. source: "./media/characters/kil'aman/front.svg",
  46773. extra: 1210/1159,
  46774. bottom: 109/1319
  46775. }
  46776. },
  46777. head: {
  46778. height: math.unit(2.14, "feet"),
  46779. name: "Head",
  46780. image: {
  46781. source: "./media/characters/kil'aman/head.svg"
  46782. }
  46783. },
  46784. maw: {
  46785. height: math.unit(1.21, "feet"),
  46786. name: "Maw",
  46787. image: {
  46788. source: "./media/characters/kil'aman/maw.svg"
  46789. }
  46790. },
  46791. foot: {
  46792. height: math.unit(1.7, "feet"),
  46793. name: "Foot",
  46794. image: {
  46795. source: "./media/characters/kil'aman/foot.svg"
  46796. }
  46797. },
  46798. dick: {
  46799. height: math.unit(2.1, "feet"),
  46800. name: "Dick",
  46801. image: {
  46802. source: "./media/characters/kil'aman/dick.svg"
  46803. }
  46804. },
  46805. },
  46806. [
  46807. {
  46808. name: "Normal",
  46809. height: math.unit(9, "feet")
  46810. },
  46811. {
  46812. name: "Canon Height",
  46813. height: math.unit(10, "miles"),
  46814. default: true
  46815. },
  46816. {
  46817. name: "Maximum",
  46818. height: math.unit(6e9, "miles")
  46819. },
  46820. ]
  46821. ))
  46822. characterMakers.push(() => makeCharacter(
  46823. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46824. {
  46825. front: {
  46826. height: math.unit(90, "feet"),
  46827. weight: math.unit(675000, "lb"),
  46828. name: "Front",
  46829. image: {
  46830. source: "./media/characters/qadan/front.svg",
  46831. extra: 1012/1004,
  46832. bottom: 78/1090
  46833. }
  46834. },
  46835. back: {
  46836. height: math.unit(90, "feet"),
  46837. weight: math.unit(675000, "lb"),
  46838. name: "Back",
  46839. image: {
  46840. source: "./media/characters/qadan/back.svg",
  46841. extra: 1042/1031,
  46842. bottom: 55/1097
  46843. }
  46844. },
  46845. armored: {
  46846. height: math.unit(90, "feet"),
  46847. weight: math.unit(675000, "lb"),
  46848. name: "Armored",
  46849. image: {
  46850. source: "./media/characters/qadan/armored.svg",
  46851. extra: 1047/1037,
  46852. bottom: 48/1095
  46853. }
  46854. },
  46855. },
  46856. [
  46857. {
  46858. name: "Normal",
  46859. height: math.unit(90, "feet"),
  46860. default: true
  46861. },
  46862. ]
  46863. ))
  46864. characterMakers.push(() => makeCharacter(
  46865. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46866. {
  46867. front: {
  46868. height: math.unit(6, "feet"),
  46869. weight: math.unit(225, "lb"),
  46870. name: "Front",
  46871. image: {
  46872. source: "./media/characters/brooke/front.svg",
  46873. extra: 1050/1010,
  46874. bottom: 66/1116
  46875. }
  46876. },
  46877. back: {
  46878. height: math.unit(6, "feet"),
  46879. weight: math.unit(225, "lb"),
  46880. name: "Back",
  46881. image: {
  46882. source: "./media/characters/brooke/back.svg",
  46883. extra: 1053/1013,
  46884. bottom: 41/1094
  46885. }
  46886. },
  46887. dressed: {
  46888. height: math.unit(6, "feet"),
  46889. weight: math.unit(225, "lb"),
  46890. name: "Dressed",
  46891. image: {
  46892. source: "./media/characters/brooke/dressed.svg",
  46893. extra: 1050/1010,
  46894. bottom: 66/1116
  46895. }
  46896. },
  46897. },
  46898. [
  46899. {
  46900. name: "Canon Height",
  46901. height: math.unit(500, "miles"),
  46902. default: true
  46903. },
  46904. ]
  46905. ))
  46906. characterMakers.push(() => makeCharacter(
  46907. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46908. {
  46909. front: {
  46910. height: math.unit(6 + 2/12, "feet"),
  46911. weight: math.unit(210, "lb"),
  46912. name: "Front",
  46913. image: {
  46914. source: "./media/characters/wubs/front.svg",
  46915. extra: 1345/1325,
  46916. bottom: 70/1415
  46917. }
  46918. },
  46919. back: {
  46920. height: math.unit(6 + 2/12, "feet"),
  46921. weight: math.unit(210, "lb"),
  46922. name: "Back",
  46923. image: {
  46924. source: "./media/characters/wubs/back.svg",
  46925. extra: 1296/1275,
  46926. bottom: 58/1354
  46927. }
  46928. },
  46929. },
  46930. [
  46931. {
  46932. name: "Normal",
  46933. height: math.unit(6 + 2/12, "feet"),
  46934. default: true
  46935. },
  46936. {
  46937. name: "Macro",
  46938. height: math.unit(1000, "feet")
  46939. },
  46940. {
  46941. name: "Megamacro",
  46942. height: math.unit(1, "mile")
  46943. },
  46944. ]
  46945. ))
  46946. characterMakers.push(() => makeCharacter(
  46947. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46948. {
  46949. front: {
  46950. height: math.unit(4, "feet"),
  46951. weight: math.unit(120, "lb"),
  46952. name: "Front",
  46953. image: {
  46954. source: "./media/characters/blue/front.svg",
  46955. extra: 1636/1525,
  46956. bottom: 43/1679
  46957. }
  46958. },
  46959. back: {
  46960. height: math.unit(4, "feet"),
  46961. weight: math.unit(120, "lb"),
  46962. name: "Back",
  46963. image: {
  46964. source: "./media/characters/blue/back.svg",
  46965. extra: 1660/1560,
  46966. bottom: 57/1717
  46967. }
  46968. },
  46969. paws: {
  46970. height: math.unit(0.826, "feet"),
  46971. name: "Paws",
  46972. image: {
  46973. source: "./media/characters/blue/paws.svg"
  46974. }
  46975. },
  46976. },
  46977. [
  46978. {
  46979. name: "Micro",
  46980. height: math.unit(3, "inches")
  46981. },
  46982. {
  46983. name: "Normal",
  46984. height: math.unit(4, "feet"),
  46985. default: true
  46986. },
  46987. {
  46988. name: "Femenine Form",
  46989. height: math.unit(14, "feet")
  46990. },
  46991. {
  46992. name: "Werebat Form",
  46993. height: math.unit(18, "feet")
  46994. },
  46995. ]
  46996. ))
  46997. characterMakers.push(() => makeCharacter(
  46998. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46999. {
  47000. female: {
  47001. height: math.unit(7 + 4/12, "feet"),
  47002. weight: math.unit(243, "lb"),
  47003. name: "Female",
  47004. image: {
  47005. source: "./media/characters/kaya/female.svg",
  47006. extra: 975/898,
  47007. bottom: 34/1009
  47008. }
  47009. },
  47010. herm: {
  47011. height: math.unit(7 + 4/12, "feet"),
  47012. weight: math.unit(243, "lb"),
  47013. name: "Herm",
  47014. image: {
  47015. source: "./media/characters/kaya/herm.svg",
  47016. extra: 975/898,
  47017. bottom: 34/1009
  47018. }
  47019. },
  47020. },
  47021. [
  47022. {
  47023. name: "Normal",
  47024. height: math.unit(7 + 4/12, "feet"),
  47025. default: true
  47026. },
  47027. ]
  47028. ))
  47029. characterMakers.push(() => makeCharacter(
  47030. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47031. {
  47032. female: {
  47033. height: math.unit(9 + 4/12, "feet"),
  47034. weight: math.unit(398, "lb"),
  47035. name: "Female",
  47036. image: {
  47037. source: "./media/characters/kassandra/female.svg",
  47038. extra: 908/839,
  47039. bottom: 61/969
  47040. }
  47041. },
  47042. intersex: {
  47043. height: math.unit(9 + 4/12, "feet"),
  47044. weight: math.unit(398, "lb"),
  47045. name: "Intersex",
  47046. image: {
  47047. source: "./media/characters/kassandra/intersex.svg",
  47048. extra: 908/839,
  47049. bottom: 61/969
  47050. }
  47051. },
  47052. },
  47053. [
  47054. {
  47055. name: "Normal",
  47056. height: math.unit(9 + 4/12, "feet"),
  47057. default: true
  47058. },
  47059. ]
  47060. ))
  47061. characterMakers.push(() => makeCharacter(
  47062. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47063. {
  47064. front: {
  47065. height: math.unit(3, "meters"),
  47066. name: "Front",
  47067. image: {
  47068. source: "./media/characters/amy/front.svg",
  47069. extra: 1380/1343,
  47070. bottom: 70/1450
  47071. }
  47072. },
  47073. back: {
  47074. height: math.unit(3, "meters"),
  47075. name: "Back",
  47076. image: {
  47077. source: "./media/characters/amy/back.svg",
  47078. extra: 1380/1347,
  47079. bottom: 66/1446
  47080. }
  47081. },
  47082. },
  47083. [
  47084. {
  47085. name: "Normal",
  47086. height: math.unit(3, "meters"),
  47087. default: true
  47088. },
  47089. ]
  47090. ))
  47091. characterMakers.push(() => makeCharacter(
  47092. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47093. {
  47094. side: {
  47095. height: math.unit(47, "cm"),
  47096. weight: math.unit(10.8, "kg"),
  47097. name: "Side",
  47098. image: {
  47099. source: "./media/characters/alphaschakal/side.svg",
  47100. extra: 1058/568,
  47101. bottom: 62/1120
  47102. }
  47103. },
  47104. back: {
  47105. height: math.unit(78, "cm"),
  47106. weight: math.unit(10.8, "kg"),
  47107. name: "Back",
  47108. image: {
  47109. source: "./media/characters/alphaschakal/back.svg",
  47110. extra: 1102/942,
  47111. bottom: 185/1287
  47112. }
  47113. },
  47114. head: {
  47115. height: math.unit(28, "cm"),
  47116. name: "Head",
  47117. image: {
  47118. source: "./media/characters/alphaschakal/head.svg",
  47119. extra: 696/508,
  47120. bottom: 0/696
  47121. }
  47122. },
  47123. paw: {
  47124. height: math.unit(16, "cm"),
  47125. name: "Paw",
  47126. image: {
  47127. source: "./media/characters/alphaschakal/paw.svg"
  47128. }
  47129. },
  47130. },
  47131. [
  47132. {
  47133. name: "Normal",
  47134. height: math.unit(47, "cm"),
  47135. default: true
  47136. },
  47137. {
  47138. name: "Macro",
  47139. height: math.unit(340, "cm")
  47140. },
  47141. ]
  47142. ))
  47143. characterMakers.push(() => makeCharacter(
  47144. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47145. {
  47146. front: {
  47147. height: math.unit(36, "earths"),
  47148. name: "Front",
  47149. image: {
  47150. source: "./media/characters/ecobyss/front.svg",
  47151. extra: 1282/1215,
  47152. bottom: 11/1293
  47153. }
  47154. },
  47155. back: {
  47156. height: math.unit(36, "earths"),
  47157. name: "Back",
  47158. image: {
  47159. source: "./media/characters/ecobyss/back.svg",
  47160. extra: 1291/1222,
  47161. bottom: 8/1299
  47162. }
  47163. },
  47164. },
  47165. [
  47166. {
  47167. name: "Normal",
  47168. height: math.unit(36, "earths"),
  47169. default: true
  47170. },
  47171. ]
  47172. ))
  47173. characterMakers.push(() => makeCharacter(
  47174. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47175. {
  47176. front: {
  47177. height: math.unit(12, "feet"),
  47178. name: "Front",
  47179. image: {
  47180. source: "./media/characters/vasuk/front.svg",
  47181. extra: 1326/1207,
  47182. bottom: 64/1390
  47183. }
  47184. },
  47185. },
  47186. [
  47187. {
  47188. name: "Normal",
  47189. height: math.unit(12, "feet"),
  47190. default: true
  47191. },
  47192. ]
  47193. ))
  47194. characterMakers.push(() => makeCharacter(
  47195. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47196. {
  47197. side: {
  47198. height: math.unit(100, "feet"),
  47199. name: "Side",
  47200. image: {
  47201. source: "./media/characters/linneaus/side.svg",
  47202. extra: 987/807,
  47203. bottom: 47/1034
  47204. }
  47205. },
  47206. },
  47207. [
  47208. {
  47209. name: "Macro",
  47210. height: math.unit(100, "feet"),
  47211. default: true
  47212. },
  47213. ]
  47214. ))
  47215. characterMakers.push(() => makeCharacter(
  47216. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47217. {
  47218. front: {
  47219. height: math.unit(8, "feet"),
  47220. weight: math.unit(1200, "lb"),
  47221. name: "Front",
  47222. image: {
  47223. source: "./media/characters/nyterious-daligdig/front.svg",
  47224. extra: 1284/1094,
  47225. bottom: 84/1368
  47226. }
  47227. },
  47228. back: {
  47229. height: math.unit(8, "feet"),
  47230. weight: math.unit(1200, "lb"),
  47231. name: "Back",
  47232. image: {
  47233. source: "./media/characters/nyterious-daligdig/back.svg",
  47234. extra: 1301/1121,
  47235. bottom: 129/1430
  47236. }
  47237. },
  47238. mouth: {
  47239. height: math.unit(1.464, "feet"),
  47240. name: "Mouth",
  47241. image: {
  47242. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47243. }
  47244. },
  47245. },
  47246. [
  47247. {
  47248. name: "Small",
  47249. height: math.unit(8, "feet"),
  47250. default: true
  47251. },
  47252. {
  47253. name: "Normal",
  47254. height: math.unit(15, "feet")
  47255. },
  47256. {
  47257. name: "Macro",
  47258. height: math.unit(90, "feet")
  47259. },
  47260. ]
  47261. ))
  47262. characterMakers.push(() => makeCharacter(
  47263. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47264. {
  47265. front: {
  47266. height: math.unit(7 + 4/12, "feet"),
  47267. weight: math.unit(252, "lb"),
  47268. name: "Front",
  47269. image: {
  47270. source: "./media/characters/bandel/front.svg",
  47271. extra: 1946/1775,
  47272. bottom: 26/1972
  47273. }
  47274. },
  47275. back: {
  47276. height: math.unit(7 + 4/12, "feet"),
  47277. weight: math.unit(252, "lb"),
  47278. name: "Back",
  47279. image: {
  47280. source: "./media/characters/bandel/back.svg",
  47281. extra: 1940/1770,
  47282. bottom: 25/1965
  47283. }
  47284. },
  47285. maw: {
  47286. height: math.unit(2.15, "feet"),
  47287. name: "Maw",
  47288. image: {
  47289. source: "./media/characters/bandel/maw.svg"
  47290. }
  47291. },
  47292. stomach: {
  47293. height: math.unit(1.95, "feet"),
  47294. name: "Stomach",
  47295. image: {
  47296. source: "./media/characters/bandel/stomach.svg"
  47297. }
  47298. },
  47299. },
  47300. [
  47301. {
  47302. name: "Normal",
  47303. height: math.unit(7 + 4/12, "feet"),
  47304. default: true
  47305. },
  47306. ]
  47307. ))
  47308. characterMakers.push(() => makeCharacter(
  47309. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47310. {
  47311. front: {
  47312. height: math.unit(10 + 5/12, "feet"),
  47313. weight: math.unit(773.5, "kg"),
  47314. name: "Front",
  47315. image: {
  47316. source: "./media/characters/zed/front.svg",
  47317. extra: 987/941,
  47318. bottom: 52/1039
  47319. }
  47320. },
  47321. },
  47322. [
  47323. {
  47324. name: "Short",
  47325. height: math.unit(5 + 4/12, "feet")
  47326. },
  47327. {
  47328. name: "Average",
  47329. height: math.unit(10 + 5/12, "feet"),
  47330. default: true
  47331. },
  47332. {
  47333. name: "Mini-Macro",
  47334. height: math.unit(24 + 9/12, "feet")
  47335. },
  47336. {
  47337. name: "Macro",
  47338. height: math.unit(249, "feet")
  47339. },
  47340. {
  47341. name: "Mega-Macro",
  47342. height: math.unit(12490, "feet")
  47343. },
  47344. {
  47345. name: "Giga-Macro",
  47346. height: math.unit(24.9, "miles")
  47347. },
  47348. {
  47349. name: "Tera-Macro",
  47350. height: math.unit(24900, "miles")
  47351. },
  47352. {
  47353. name: "Cosmic Scale",
  47354. height: math.unit(38.9, "lightyears")
  47355. },
  47356. {
  47357. name: "Universal Scale",
  47358. height: math.unit(138e12, "lightyears")
  47359. },
  47360. ]
  47361. ))
  47362. characterMakers.push(() => makeCharacter(
  47363. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47364. {
  47365. front: {
  47366. height: math.unit(1561, "inches"),
  47367. name: "Front",
  47368. image: {
  47369. source: "./media/characters/ivan/front.svg",
  47370. extra: 1126/1071,
  47371. bottom: 26/1152
  47372. }
  47373. },
  47374. back: {
  47375. height: math.unit(1561, "inches"),
  47376. name: "Back",
  47377. image: {
  47378. source: "./media/characters/ivan/back.svg",
  47379. extra: 1134/1079,
  47380. bottom: 30/1164
  47381. }
  47382. },
  47383. },
  47384. [
  47385. {
  47386. name: "Normal",
  47387. height: math.unit(1561, "inches"),
  47388. default: true
  47389. },
  47390. ]
  47391. ))
  47392. characterMakers.push(() => makeCharacter(
  47393. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47394. {
  47395. front: {
  47396. height: math.unit(5 + 7/12, "feet"),
  47397. weight: math.unit(150, "lb"),
  47398. name: "Front",
  47399. image: {
  47400. source: "./media/characters/robin-arctic-hare/front.svg",
  47401. extra: 1148/974,
  47402. bottom: 20/1168
  47403. }
  47404. },
  47405. },
  47406. [
  47407. {
  47408. name: "Normal",
  47409. height: math.unit(5 + 7/12, "feet"),
  47410. default: true
  47411. },
  47412. ]
  47413. ))
  47414. characterMakers.push(() => makeCharacter(
  47415. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47416. {
  47417. side: {
  47418. height: math.unit(5, "feet"),
  47419. name: "Side",
  47420. image: {
  47421. source: "./media/characters/birch/side.svg",
  47422. extra: 985/796,
  47423. bottom: 111/1096
  47424. }
  47425. },
  47426. },
  47427. [
  47428. {
  47429. name: "Normal",
  47430. height: math.unit(5, "feet"),
  47431. default: true
  47432. },
  47433. ]
  47434. ))
  47435. characterMakers.push(() => makeCharacter(
  47436. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47437. {
  47438. front: {
  47439. height: math.unit(4, "feet"),
  47440. name: "Front",
  47441. image: {
  47442. source: "./media/characters/rasp/front.svg",
  47443. extra: 561/478,
  47444. bottom: 74/635
  47445. }
  47446. },
  47447. },
  47448. [
  47449. {
  47450. name: "Normal",
  47451. height: math.unit(4, "feet"),
  47452. default: true
  47453. },
  47454. ]
  47455. ))
  47456. characterMakers.push(() => makeCharacter(
  47457. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47458. {
  47459. front: {
  47460. height: math.unit(4 + 6/12, "feet"),
  47461. name: "Front",
  47462. image: {
  47463. source: "./media/characters/agatha/front.svg",
  47464. extra: 947/933,
  47465. bottom: 42/989
  47466. }
  47467. },
  47468. back: {
  47469. height: math.unit(4 + 6/12, "feet"),
  47470. name: "Back",
  47471. image: {
  47472. source: "./media/characters/agatha/back.svg",
  47473. extra: 935/922,
  47474. bottom: 48/983
  47475. }
  47476. },
  47477. },
  47478. [
  47479. {
  47480. name: "Normal",
  47481. height: math.unit(4 + 6 /12, "feet"),
  47482. default: true
  47483. },
  47484. {
  47485. name: "Max Size",
  47486. height: math.unit(500, "feet")
  47487. },
  47488. ]
  47489. ))
  47490. characterMakers.push(() => makeCharacter(
  47491. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47492. {
  47493. side: {
  47494. height: math.unit(30, "feet"),
  47495. name: "Side",
  47496. image: {
  47497. source: "./media/characters/roggy/side.svg",
  47498. extra: 909/643,
  47499. bottom: 63/972
  47500. }
  47501. },
  47502. lounging: {
  47503. height: math.unit(20, "feet"),
  47504. name: "Lounging",
  47505. image: {
  47506. source: "./media/characters/roggy/lounging.svg",
  47507. extra: 643/479,
  47508. bottom: 145/788
  47509. }
  47510. },
  47511. handpaw: {
  47512. height: math.unit(13.1, "feet"),
  47513. name: "Handpaw",
  47514. image: {
  47515. source: "./media/characters/roggy/handpaw.svg"
  47516. }
  47517. },
  47518. footpaw: {
  47519. height: math.unit(15.8, "feet"),
  47520. name: "Footpaw",
  47521. image: {
  47522. source: "./media/characters/roggy/footpaw.svg"
  47523. }
  47524. },
  47525. },
  47526. [
  47527. {
  47528. name: "Menacing",
  47529. height: math.unit(30, "feet"),
  47530. default: true
  47531. },
  47532. ]
  47533. ))
  47534. characterMakers.push(() => makeCharacter(
  47535. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47536. {
  47537. front: {
  47538. height: math.unit(5 + 7/12, "feet"),
  47539. weight: math.unit(135, "lb"),
  47540. name: "Front",
  47541. image: {
  47542. source: "./media/characters/naomi/front.svg",
  47543. extra: 1209/1154,
  47544. bottom: 129/1338
  47545. }
  47546. },
  47547. back: {
  47548. height: math.unit(5 + 7/12, "feet"),
  47549. weight: math.unit(135, "lb"),
  47550. name: "Back",
  47551. image: {
  47552. source: "./media/characters/naomi/back.svg",
  47553. extra: 1252/1190,
  47554. bottom: 23/1275
  47555. }
  47556. },
  47557. },
  47558. [
  47559. {
  47560. name: "Normal",
  47561. height: math.unit(5 + 7 /12, "feet"),
  47562. default: true
  47563. },
  47564. ]
  47565. ))
  47566. characterMakers.push(() => makeCharacter(
  47567. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47568. {
  47569. side: {
  47570. height: math.unit(35, "meters"),
  47571. name: "Side",
  47572. image: {
  47573. source: "./media/characters/kimpi/side.svg",
  47574. extra: 419/382,
  47575. bottom: 63/482
  47576. }
  47577. },
  47578. hand: {
  47579. height: math.unit(8.96, "meters"),
  47580. name: "Hand",
  47581. image: {
  47582. source: "./media/characters/kimpi/hand.svg"
  47583. }
  47584. },
  47585. },
  47586. [
  47587. {
  47588. name: "Normal",
  47589. height: math.unit(35, "meters"),
  47590. default: true
  47591. },
  47592. ]
  47593. ))
  47594. characterMakers.push(() => makeCharacter(
  47595. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47596. {
  47597. front: {
  47598. height: math.unit(4 + 4/12, "feet"),
  47599. name: "Front",
  47600. image: {
  47601. source: "./media/characters/pepper-purrloin/front.svg",
  47602. extra: 1141/1024,
  47603. bottom: 21/1162
  47604. }
  47605. },
  47606. },
  47607. [
  47608. {
  47609. name: "Normal",
  47610. height: math.unit(4 + 4/12, "feet"),
  47611. default: true
  47612. },
  47613. ]
  47614. ))
  47615. characterMakers.push(() => makeCharacter(
  47616. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47617. {
  47618. front: {
  47619. height: math.unit(6 + 2/12, "feet"),
  47620. name: "Front",
  47621. image: {
  47622. source: "./media/characters/raphael/front.svg",
  47623. extra: 1101/962,
  47624. bottom: 59/1160
  47625. }
  47626. },
  47627. },
  47628. [
  47629. {
  47630. name: "Normal",
  47631. height: math.unit(6 + 2/12, "feet"),
  47632. default: true
  47633. },
  47634. ]
  47635. ))
  47636. characterMakers.push(() => makeCharacter(
  47637. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47638. {
  47639. front: {
  47640. height: math.unit(6, "feet"),
  47641. weight: math.unit(150, "lb"),
  47642. name: "Front",
  47643. image: {
  47644. source: "./media/characters/victor-williams/front.svg",
  47645. extra: 1894/1825,
  47646. bottom: 67/1961
  47647. }
  47648. },
  47649. },
  47650. [
  47651. {
  47652. name: "Normal",
  47653. height: math.unit(6, "feet"),
  47654. default: true
  47655. },
  47656. ]
  47657. ))
  47658. characterMakers.push(() => makeCharacter(
  47659. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47660. {
  47661. front: {
  47662. height: math.unit(5 + 8/12, "feet"),
  47663. weight: math.unit(150, "lb"),
  47664. name: "Front",
  47665. image: {
  47666. source: "./media/characters/rachel/front.svg",
  47667. extra: 1902/1787,
  47668. bottom: 46/1948
  47669. }
  47670. },
  47671. },
  47672. [
  47673. {
  47674. name: "Base Height",
  47675. height: math.unit(5 + 8/12, "feet"),
  47676. default: true
  47677. },
  47678. {
  47679. name: "Macro",
  47680. height: math.unit(200, "feet")
  47681. },
  47682. {
  47683. name: "Mega Macro",
  47684. height: math.unit(1, "mile")
  47685. },
  47686. {
  47687. name: "Giga Macro",
  47688. height: math.unit(1500, "miles")
  47689. },
  47690. {
  47691. name: "Tera Macro",
  47692. height: math.unit(8000, "miles")
  47693. },
  47694. {
  47695. name: "Tera Macro+",
  47696. height: math.unit(2e5, "miles")
  47697. },
  47698. ]
  47699. ))
  47700. characterMakers.push(() => makeCharacter(
  47701. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47702. {
  47703. front: {
  47704. height: math.unit(6.5, "feet"),
  47705. name: "Front",
  47706. image: {
  47707. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47708. extra: 860/819,
  47709. bottom: 307/1167
  47710. }
  47711. },
  47712. back: {
  47713. height: math.unit(6.5, "feet"),
  47714. name: "Back",
  47715. image: {
  47716. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47717. extra: 880/837,
  47718. bottom: 395/1275
  47719. }
  47720. },
  47721. sleeping: {
  47722. height: math.unit(2.79, "feet"),
  47723. name: "Sleeping",
  47724. image: {
  47725. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47726. extra: 465/383,
  47727. bottom: 263/728
  47728. }
  47729. },
  47730. maw: {
  47731. height: math.unit(2.52, "feet"),
  47732. name: "Maw",
  47733. image: {
  47734. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47735. }
  47736. },
  47737. },
  47738. [
  47739. {
  47740. name: "Normal",
  47741. height: math.unit(6.5, "feet"),
  47742. default: true
  47743. },
  47744. ]
  47745. ))
  47746. characterMakers.push(() => makeCharacter(
  47747. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47748. {
  47749. front: {
  47750. height: math.unit(5, "feet"),
  47751. name: "Front",
  47752. image: {
  47753. source: "./media/characters/nova-nerium/front.svg",
  47754. extra: 1548/1392,
  47755. bottom: 374/1922
  47756. }
  47757. },
  47758. back: {
  47759. height: math.unit(5, "feet"),
  47760. name: "Back",
  47761. image: {
  47762. source: "./media/characters/nova-nerium/back.svg",
  47763. extra: 1658/1468,
  47764. bottom: 257/1915
  47765. }
  47766. },
  47767. },
  47768. [
  47769. {
  47770. name: "Normal",
  47771. height: math.unit(5, "feet"),
  47772. default: true
  47773. },
  47774. ]
  47775. ))
  47776. characterMakers.push(() => makeCharacter(
  47777. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47778. {
  47779. front: {
  47780. height: math.unit(5 + 4/12, "feet"),
  47781. name: "Front",
  47782. image: {
  47783. source: "./media/characters/ashe-pyriph/front.svg",
  47784. extra: 1935/1747,
  47785. bottom: 60/1995
  47786. }
  47787. },
  47788. },
  47789. [
  47790. {
  47791. name: "Normal",
  47792. height: math.unit(5 + 4/12, "feet"),
  47793. default: true
  47794. },
  47795. ]
  47796. ))
  47797. characterMakers.push(() => makeCharacter(
  47798. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47799. {
  47800. front: {
  47801. height: math.unit(8.7, "feet"),
  47802. name: "Front",
  47803. image: {
  47804. source: "./media/characters/flicker-wisp/front.svg",
  47805. extra: 1835/1613,
  47806. bottom: 449/2284
  47807. }
  47808. },
  47809. side: {
  47810. height: math.unit(8.7, "feet"),
  47811. name: "Side",
  47812. image: {
  47813. source: "./media/characters/flicker-wisp/side.svg",
  47814. extra: 1841/1642,
  47815. bottom: 336/2177
  47816. },
  47817. default: true
  47818. },
  47819. maw: {
  47820. height: math.unit(3.35, "feet"),
  47821. name: "Maw",
  47822. image: {
  47823. source: "./media/characters/flicker-wisp/maw.svg",
  47824. extra: 2338/1506,
  47825. bottom: 0/2338
  47826. }
  47827. },
  47828. ovipositor: {
  47829. height: math.unit(4.95, "feet"),
  47830. name: "Ovipositor",
  47831. image: {
  47832. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47833. }
  47834. },
  47835. egg: {
  47836. height: math.unit(0.385, "feet"),
  47837. weight: math.unit(2, "lb"),
  47838. name: "Egg",
  47839. image: {
  47840. source: "./media/characters/flicker-wisp/egg.svg"
  47841. }
  47842. },
  47843. },
  47844. [
  47845. {
  47846. name: "Normal",
  47847. height: math.unit(8.7, "feet"),
  47848. default: true
  47849. },
  47850. ]
  47851. ))
  47852. characterMakers.push(() => makeCharacter(
  47853. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47854. {
  47855. side: {
  47856. height: math.unit(11, "feet"),
  47857. name: "Side",
  47858. image: {
  47859. source: "./media/characters/faefnul/side.svg",
  47860. extra: 1100/1007,
  47861. bottom: 0/1100
  47862. }
  47863. },
  47864. },
  47865. [
  47866. {
  47867. name: "Normal",
  47868. height: math.unit(11, "feet"),
  47869. default: true
  47870. },
  47871. ]
  47872. ))
  47873. characterMakers.push(() => makeCharacter(
  47874. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47875. {
  47876. front: {
  47877. height: math.unit(6 + 2/12, "feet"),
  47878. name: "Front",
  47879. image: {
  47880. source: "./media/characters/shady/front.svg",
  47881. extra: 502/461,
  47882. bottom: 9/511
  47883. }
  47884. },
  47885. kneeling: {
  47886. height: math.unit(4.6, "feet"),
  47887. name: "Kneeling",
  47888. image: {
  47889. source: "./media/characters/shady/kneeling.svg",
  47890. extra: 1328/1219,
  47891. bottom: 117/1445
  47892. }
  47893. },
  47894. maw: {
  47895. height: math.unit(2, "feet"),
  47896. name: "Maw",
  47897. image: {
  47898. source: "./media/characters/shady/maw.svg"
  47899. }
  47900. },
  47901. },
  47902. [
  47903. {
  47904. name: "Nano",
  47905. height: math.unit(1, "mm")
  47906. },
  47907. {
  47908. name: "Micro",
  47909. height: math.unit(12, "mm")
  47910. },
  47911. {
  47912. name: "Tiny",
  47913. height: math.unit(3, "inches")
  47914. },
  47915. {
  47916. name: "Normal",
  47917. height: math.unit(6 + 2/12, "feet"),
  47918. default: true
  47919. },
  47920. {
  47921. name: "Big",
  47922. height: math.unit(15, "feet")
  47923. },
  47924. {
  47925. name: "Macro",
  47926. height: math.unit(150, "feet")
  47927. },
  47928. {
  47929. name: "Titanic",
  47930. height: math.unit(500, "feet")
  47931. },
  47932. ]
  47933. ))
  47934. characterMakers.push(() => makeCharacter(
  47935. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47936. {
  47937. front: {
  47938. height: math.unit(12, "feet"),
  47939. name: "Front",
  47940. image: {
  47941. source: "./media/characters/fenrir/front.svg",
  47942. extra: 968/875,
  47943. bottom: 22/990
  47944. }
  47945. },
  47946. },
  47947. [
  47948. {
  47949. name: "Big",
  47950. height: math.unit(12, "feet"),
  47951. default: true
  47952. },
  47953. ]
  47954. ))
  47955. characterMakers.push(() => makeCharacter(
  47956. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47957. {
  47958. front: {
  47959. height: math.unit(5 + 4/12, "feet"),
  47960. name: "Front",
  47961. image: {
  47962. source: "./media/characters/makar/front.svg",
  47963. extra: 1181/1112,
  47964. bottom: 78/1259
  47965. }
  47966. },
  47967. },
  47968. [
  47969. {
  47970. name: "Normal",
  47971. height: math.unit(5 + 4/12, "feet"),
  47972. default: true
  47973. },
  47974. ]
  47975. ))
  47976. characterMakers.push(() => makeCharacter(
  47977. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47978. {
  47979. front: {
  47980. height: math.unit(5 + 7/12, "feet"),
  47981. name: "Front",
  47982. image: {
  47983. source: "./media/characters/callow/front.svg",
  47984. extra: 1482/1304,
  47985. bottom: 23/1505
  47986. }
  47987. },
  47988. back: {
  47989. height: math.unit(5 + 7/12, "feet"),
  47990. name: "Back",
  47991. image: {
  47992. source: "./media/characters/callow/back.svg",
  47993. extra: 1484/1296,
  47994. bottom: 25/1509
  47995. }
  47996. },
  47997. },
  47998. [
  47999. {
  48000. name: "Micro",
  48001. height: math.unit(3, "inches"),
  48002. default: true
  48003. },
  48004. {
  48005. name: "Normal",
  48006. height: math.unit(5 + 7/12, "feet")
  48007. },
  48008. ]
  48009. ))
  48010. characterMakers.push(() => makeCharacter(
  48011. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48012. {
  48013. front: {
  48014. height: math.unit(6 + 2/12, "feet"),
  48015. name: "Front",
  48016. image: {
  48017. source: "./media/characters/natel/front.svg",
  48018. extra: 1833/1692,
  48019. bottom: 166/1999
  48020. }
  48021. },
  48022. },
  48023. [
  48024. {
  48025. name: "Normal",
  48026. height: math.unit(6 + 2/12, "feet"),
  48027. default: true
  48028. },
  48029. ]
  48030. ))
  48031. characterMakers.push(() => makeCharacter(
  48032. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48033. {
  48034. front: {
  48035. height: math.unit(1.75, "meters"),
  48036. name: "Front",
  48037. image: {
  48038. source: "./media/characters/misu/front.svg",
  48039. extra: 1690/1558,
  48040. bottom: 234/1924
  48041. }
  48042. },
  48043. back: {
  48044. height: math.unit(1.75, "meters"),
  48045. name: "Back",
  48046. image: {
  48047. source: "./media/characters/misu/back.svg",
  48048. extra: 1762/1618,
  48049. bottom: 146/1908
  48050. }
  48051. },
  48052. frontNude: {
  48053. height: math.unit(1.75, "meters"),
  48054. name: "Front (Nude)",
  48055. image: {
  48056. source: "./media/characters/misu/front-nude.svg",
  48057. extra: 1690/1558,
  48058. bottom: 234/1924
  48059. }
  48060. },
  48061. backNude: {
  48062. height: math.unit(1.75, "meters"),
  48063. name: "Back (Nude)",
  48064. image: {
  48065. source: "./media/characters/misu/back-nude.svg",
  48066. extra: 1762/1618,
  48067. bottom: 146/1908
  48068. }
  48069. },
  48070. frontErect: {
  48071. height: math.unit(1.75, "meters"),
  48072. name: "Front (Erect)",
  48073. image: {
  48074. source: "./media/characters/misu/front-erect.svg",
  48075. extra: 1690/1558,
  48076. bottom: 234/1924
  48077. }
  48078. },
  48079. maw: {
  48080. height: math.unit(0.47, "meters"),
  48081. name: "Maw",
  48082. image: {
  48083. source: "./media/characters/misu/maw.svg"
  48084. }
  48085. },
  48086. head: {
  48087. height: math.unit(0.35, "meters"),
  48088. name: "Head",
  48089. image: {
  48090. source: "./media/characters/misu/head.svg"
  48091. }
  48092. },
  48093. rear: {
  48094. height: math.unit(0.47, "meters"),
  48095. name: "Rear",
  48096. image: {
  48097. source: "./media/characters/misu/rear.svg"
  48098. }
  48099. },
  48100. },
  48101. [
  48102. {
  48103. name: "Normal",
  48104. height: math.unit(1.75, "meters")
  48105. },
  48106. {
  48107. name: "Not good for the people",
  48108. height: math.unit(42, "meters")
  48109. },
  48110. {
  48111. name: "Not good for the neighborhood",
  48112. height: math.unit(135, "meters")
  48113. },
  48114. {
  48115. name: "Bit bigger problem",
  48116. height: math.unit(380, "meters"),
  48117. default: true
  48118. },
  48119. {
  48120. name: "Not good for the city",
  48121. height: math.unit(1.5, "km")
  48122. },
  48123. {
  48124. name: "Not good for the county",
  48125. height: math.unit(5.5, "km")
  48126. },
  48127. {
  48128. name: "Not good for the state",
  48129. height: math.unit(25, "km")
  48130. },
  48131. {
  48132. name: "Not good for the country",
  48133. height: math.unit(125, "km")
  48134. },
  48135. {
  48136. name: "Not good for the continent",
  48137. height: math.unit(2100, "km")
  48138. },
  48139. {
  48140. name: "Not good for the planet",
  48141. height: math.unit(35000, "km")
  48142. },
  48143. {
  48144. name: "Just no",
  48145. height: math.unit(8.5e18, "km")
  48146. },
  48147. ]
  48148. ))
  48149. characterMakers.push(() => makeCharacter(
  48150. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48151. {
  48152. front: {
  48153. height: math.unit(6.5, "feet"),
  48154. name: "Front",
  48155. image: {
  48156. source: "./media/characters/poppy/front.svg",
  48157. extra: 1878/1812,
  48158. bottom: 43/1921
  48159. }
  48160. },
  48161. feet: {
  48162. height: math.unit(1.06, "feet"),
  48163. name: "Feet",
  48164. image: {
  48165. source: "./media/characters/poppy/feet.svg",
  48166. extra: 1083/1083,
  48167. bottom: 87/1170
  48168. }
  48169. },
  48170. },
  48171. [
  48172. {
  48173. name: "Human",
  48174. height: math.unit(6.5, "feet")
  48175. },
  48176. {
  48177. name: "Default",
  48178. height: math.unit(300, "feet"),
  48179. default: true
  48180. },
  48181. {
  48182. name: "Huge",
  48183. height: math.unit(850, "feet")
  48184. },
  48185. {
  48186. name: "Mega",
  48187. height: math.unit(8000, "feet")
  48188. },
  48189. {
  48190. name: "Giga",
  48191. height: math.unit(300, "miles")
  48192. },
  48193. ]
  48194. ))
  48195. characterMakers.push(() => makeCharacter(
  48196. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48197. {
  48198. bipedal: {
  48199. height: math.unit(7, "feet"),
  48200. name: "Bipedal",
  48201. image: {
  48202. source: "./media/characters/zener/bipedal.svg",
  48203. extra: 874/805,
  48204. bottom: 109/983
  48205. }
  48206. },
  48207. quadrupedal: {
  48208. height: math.unit(4.64, "feet"),
  48209. name: "Quadrupedal",
  48210. image: {
  48211. source: "./media/characters/zener/quadrupedal.svg",
  48212. extra: 638/507,
  48213. bottom: 190/828
  48214. }
  48215. },
  48216. cock: {
  48217. height: math.unit(18, "inches"),
  48218. name: "Cock",
  48219. image: {
  48220. source: "./media/characters/zener/cock.svg"
  48221. }
  48222. },
  48223. },
  48224. [
  48225. {
  48226. name: "Normal",
  48227. height: math.unit(7, "feet"),
  48228. default: true
  48229. },
  48230. ]
  48231. ))
  48232. characterMakers.push(() => makeCharacter(
  48233. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48234. {
  48235. nude: {
  48236. height: math.unit(5 + 6/12, "feet"),
  48237. name: "Nude",
  48238. image: {
  48239. source: "./media/characters/charlie-dog/nude.svg",
  48240. extra: 768/734,
  48241. bottom: 26/794
  48242. }
  48243. },
  48244. dressed: {
  48245. height: math.unit(5 + 6/12, "feet"),
  48246. name: "Dressed",
  48247. image: {
  48248. source: "./media/characters/charlie-dog/dressed.svg",
  48249. extra: 768/734,
  48250. bottom: 26/794
  48251. }
  48252. },
  48253. },
  48254. [
  48255. {
  48256. name: "Normal",
  48257. height: math.unit(5 + 6/12, "feet"),
  48258. default: true
  48259. },
  48260. ]
  48261. ))
  48262. characterMakers.push(() => makeCharacter(
  48263. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48264. {
  48265. front: {
  48266. height: math.unit(6 + 4/12, "feet"),
  48267. name: "Front",
  48268. image: {
  48269. source: "./media/characters/ir'istrasz/front.svg",
  48270. extra: 1014/977,
  48271. bottom: 65/1079
  48272. }
  48273. },
  48274. back: {
  48275. height: math.unit(6 + 4/12, "feet"),
  48276. name: "Back",
  48277. image: {
  48278. source: "./media/characters/ir'istrasz/back.svg",
  48279. extra: 1024/992,
  48280. bottom: 34/1058
  48281. }
  48282. },
  48283. },
  48284. [
  48285. {
  48286. name: "Normal",
  48287. height: math.unit(6 + 4/12, "feet"),
  48288. default: true
  48289. },
  48290. ]
  48291. ))
  48292. characterMakers.push(() => makeCharacter(
  48293. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48294. {
  48295. front: {
  48296. height: math.unit(5 + 8/12, "feet"),
  48297. name: "Front",
  48298. image: {
  48299. source: "./media/characters/dee-ditto/front.svg",
  48300. extra: 1874/1785,
  48301. bottom: 68/1942
  48302. }
  48303. },
  48304. back: {
  48305. height: math.unit(5 + 8/12, "feet"),
  48306. name: "Back",
  48307. image: {
  48308. source: "./media/characters/dee-ditto/back.svg",
  48309. extra: 1870/1783,
  48310. bottom: 77/1947
  48311. }
  48312. },
  48313. },
  48314. [
  48315. {
  48316. name: "Normal",
  48317. height: math.unit(5 + 8/12, "feet"),
  48318. default: true
  48319. },
  48320. ]
  48321. ))
  48322. characterMakers.push(() => makeCharacter(
  48323. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48324. {
  48325. front: {
  48326. height: math.unit(7 + 6/12, "feet"),
  48327. name: "Front",
  48328. image: {
  48329. source: "./media/characters/fey/front.svg",
  48330. extra: 995/979,
  48331. bottom: 30/1025
  48332. }
  48333. },
  48334. back: {
  48335. height: math.unit(7 + 6/12, "feet"),
  48336. name: "Back",
  48337. image: {
  48338. source: "./media/characters/fey/back.svg",
  48339. extra: 1079/1008,
  48340. bottom: 5/1084
  48341. }
  48342. },
  48343. dressed: {
  48344. height: math.unit(7 + 6/12, "feet"),
  48345. name: "Dressed",
  48346. image: {
  48347. source: "./media/characters/fey/dressed.svg",
  48348. extra: 995/979,
  48349. bottom: 30/1025
  48350. }
  48351. },
  48352. },
  48353. [
  48354. {
  48355. name: "Normal",
  48356. height: math.unit(7 + 6/12, "feet"),
  48357. default: true
  48358. },
  48359. ]
  48360. ))
  48361. characterMakers.push(() => makeCharacter(
  48362. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48363. {
  48364. standing: {
  48365. height: math.unit(17, "feet"),
  48366. name: "Standing",
  48367. image: {
  48368. source: "./media/characters/aster/standing.svg",
  48369. extra: 1798/1598,
  48370. bottom: 117/1915
  48371. }
  48372. },
  48373. },
  48374. [
  48375. {
  48376. name: "Normal",
  48377. height: math.unit(17, "feet"),
  48378. default: true
  48379. },
  48380. {
  48381. name: "Homewrecker",
  48382. height: math.unit(95, "feet")
  48383. },
  48384. {
  48385. name: "Planet Devourer",
  48386. height: math.unit(1008000, "miles")
  48387. },
  48388. ]
  48389. ))
  48390. characterMakers.push(() => makeCharacter(
  48391. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48392. {
  48393. front: {
  48394. height: math.unit(6 + 5/12, "feet"),
  48395. weight: math.unit(265, "lb"),
  48396. name: "Front",
  48397. image: {
  48398. source: "./media/characters/devon-childs/front.svg",
  48399. extra: 1795/1721,
  48400. bottom: 41/1836
  48401. }
  48402. },
  48403. side: {
  48404. height: math.unit(6 + 5/12, "feet"),
  48405. weight: math.unit(265, "lb"),
  48406. name: "Side",
  48407. image: {
  48408. source: "./media/characters/devon-childs/side.svg",
  48409. extra: 1812/1738,
  48410. bottom: 30/1842
  48411. }
  48412. },
  48413. back: {
  48414. height: math.unit(6 + 5/12, "feet"),
  48415. weight: math.unit(265, "lb"),
  48416. name: "Back",
  48417. image: {
  48418. source: "./media/characters/devon-childs/back.svg",
  48419. extra: 1808/1735,
  48420. bottom: 23/1831
  48421. }
  48422. },
  48423. hand: {
  48424. height: math.unit(1.464, "feet"),
  48425. name: "Hand",
  48426. image: {
  48427. source: "./media/characters/devon-childs/hand.svg"
  48428. }
  48429. },
  48430. foot: {
  48431. height: math.unit(1.6, "feet"),
  48432. name: "Foot",
  48433. image: {
  48434. source: "./media/characters/devon-childs/foot.svg"
  48435. }
  48436. },
  48437. },
  48438. [
  48439. {
  48440. name: "Micro",
  48441. height: math.unit(7, "cm")
  48442. },
  48443. {
  48444. name: "Normal",
  48445. height: math.unit(6 + 5/12, "feet"),
  48446. default: true
  48447. },
  48448. {
  48449. name: "Macro",
  48450. height: math.unit(154, "feet")
  48451. },
  48452. ]
  48453. ))
  48454. characterMakers.push(() => makeCharacter(
  48455. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48456. {
  48457. front: {
  48458. height: math.unit(6, "feet"),
  48459. weight: math.unit(180, "lb"),
  48460. name: "Front",
  48461. image: {
  48462. source: "./media/characters/lydemox-vir/front.svg",
  48463. extra: 1632/1435,
  48464. bottom: 58/1690
  48465. }
  48466. },
  48467. frontSFW: {
  48468. height: math.unit(6, "feet"),
  48469. weight: math.unit(180, "lb"),
  48470. name: "Front (SFW)",
  48471. image: {
  48472. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48473. extra: 1632/1435,
  48474. bottom: 58/1690
  48475. }
  48476. },
  48477. back: {
  48478. height: math.unit(6, "feet"),
  48479. weight: math.unit(180, "lb"),
  48480. name: "Back",
  48481. image: {
  48482. source: "./media/characters/lydemox-vir/back.svg",
  48483. extra: 1593/1408,
  48484. bottom: 31/1624
  48485. }
  48486. },
  48487. paw: {
  48488. height: math.unit(1.85, "feet"),
  48489. name: "Paw",
  48490. image: {
  48491. source: "./media/characters/lydemox-vir/paw.svg"
  48492. }
  48493. },
  48494. dick: {
  48495. height: math.unit(1.8, "feet"),
  48496. name: "Dick",
  48497. image: {
  48498. source: "./media/characters/lydemox-vir/dick.svg"
  48499. }
  48500. },
  48501. },
  48502. [
  48503. {
  48504. name: "Macro",
  48505. height: math.unit(100, "feet"),
  48506. default: true
  48507. },
  48508. {
  48509. name: "Teramacro",
  48510. height: math.unit(1, "earth")
  48511. },
  48512. {
  48513. name: "Planetary",
  48514. height: math.unit(20, "earths")
  48515. },
  48516. ]
  48517. ))
  48518. characterMakers.push(() => makeCharacter(
  48519. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48520. {
  48521. front: {
  48522. height: math.unit(15 + 8/12, "feet"),
  48523. weight: math.unit(1237, "kg"),
  48524. name: "Front",
  48525. image: {
  48526. source: "./media/characters/mia/front.svg",
  48527. extra: 1573/1446,
  48528. bottom: 58/1631
  48529. }
  48530. },
  48531. },
  48532. [
  48533. {
  48534. name: "Small",
  48535. height: math.unit(9 + 5/12, "feet")
  48536. },
  48537. {
  48538. name: "Normal",
  48539. height: math.unit(15 + 8/12, "feet"),
  48540. default: true
  48541. },
  48542. ]
  48543. ))
  48544. characterMakers.push(() => makeCharacter(
  48545. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48546. {
  48547. front: {
  48548. height: math.unit(10 + 6/12, "feet"),
  48549. weight: math.unit(1.3, "tons"),
  48550. name: "Front",
  48551. image: {
  48552. source: "./media/characters/mr-graves/front.svg",
  48553. extra: 1779/1695,
  48554. bottom: 198/1977
  48555. }
  48556. },
  48557. },
  48558. [
  48559. {
  48560. name: "Normal",
  48561. height: math.unit(10 + 6 /12, "feet"),
  48562. default: true
  48563. },
  48564. ]
  48565. ))
  48566. characterMakers.push(() => makeCharacter(
  48567. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48568. {
  48569. dressedFront: {
  48570. height: math.unit(5 + 8/12, "feet"),
  48571. weight: math.unit(125, "lb"),
  48572. name: "Dressed (Front)",
  48573. image: {
  48574. source: "./media/characters/jess/dressed-front.svg",
  48575. extra: 1176/1152,
  48576. bottom: 42/1218
  48577. }
  48578. },
  48579. dressedSide: {
  48580. height: math.unit(5 + 8/12, "feet"),
  48581. weight: math.unit(125, "lb"),
  48582. name: "Dressed (Side)",
  48583. image: {
  48584. source: "./media/characters/jess/dressed-side.svg",
  48585. extra: 1204/1190,
  48586. bottom: 6/1210
  48587. }
  48588. },
  48589. nudeFront: {
  48590. height: math.unit(5 + 8/12, "feet"),
  48591. weight: math.unit(125, "lb"),
  48592. name: "Nude (Front)",
  48593. image: {
  48594. source: "./media/characters/jess/nude-front.svg",
  48595. extra: 1176/1152,
  48596. bottom: 42/1218
  48597. }
  48598. },
  48599. nudeSide: {
  48600. height: math.unit(5 + 8/12, "feet"),
  48601. weight: math.unit(125, "lb"),
  48602. name: "Nude (Side)",
  48603. image: {
  48604. source: "./media/characters/jess/nude-side.svg",
  48605. extra: 1204/1190,
  48606. bottom: 6/1210
  48607. }
  48608. },
  48609. organsFront: {
  48610. height: math.unit(2.83799342105, "feet"),
  48611. name: "Organs (Front)",
  48612. image: {
  48613. source: "./media/characters/jess/organs-front.svg"
  48614. }
  48615. },
  48616. organsSide: {
  48617. height: math.unit(2.64225290474, "feet"),
  48618. name: "Organs (Side)",
  48619. image: {
  48620. source: "./media/characters/jess/organs-side.svg"
  48621. }
  48622. },
  48623. digestiveTractFront: {
  48624. height: math.unit(2.8106580871, "feet"),
  48625. name: "Digestive Tract (Front)",
  48626. image: {
  48627. source: "./media/characters/jess/digestive-tract-front.svg"
  48628. }
  48629. },
  48630. digestiveTractSide: {
  48631. height: math.unit(2.54365045014, "feet"),
  48632. name: "Digestive Tract (Side)",
  48633. image: {
  48634. source: "./media/characters/jess/digestive-tract-side.svg"
  48635. }
  48636. },
  48637. respiratorySystemFront: {
  48638. height: math.unit(1.11196233456, "feet"),
  48639. name: "Respiratory System (Front)",
  48640. image: {
  48641. source: "./media/characters/jess/respiratory-system-front.svg"
  48642. }
  48643. },
  48644. respiratorySystemSide: {
  48645. height: math.unit(0.89327966297, "feet"),
  48646. name: "Respiratory System (Side)",
  48647. image: {
  48648. source: "./media/characters/jess/respiratory-system-side.svg"
  48649. }
  48650. },
  48651. urinaryTractFront: {
  48652. height: math.unit(1.16126356186, "feet"),
  48653. name: "Urinary Tract (Front)",
  48654. image: {
  48655. source: "./media/characters/jess/urinary-tract-front.svg"
  48656. }
  48657. },
  48658. urinaryTractSide: {
  48659. height: math.unit(1.20910039627, "feet"),
  48660. name: "Urinary Tract (Side)",
  48661. image: {
  48662. source: "./media/characters/jess/urinary-tract-side.svg"
  48663. }
  48664. },
  48665. reproductiveOrgansFront: {
  48666. height: math.unit(0.48422591566, "feet"),
  48667. name: "Reproductive Organs (Front)",
  48668. image: {
  48669. source: "./media/characters/jess/reproductive-organs-front.svg"
  48670. }
  48671. },
  48672. reproductiveOrgansSide: {
  48673. height: math.unit(0.61553314481, "feet"),
  48674. name: "Reproductive Organs (Side)",
  48675. image: {
  48676. source: "./media/characters/jess/reproductive-organs-side.svg"
  48677. }
  48678. },
  48679. breastsFront: {
  48680. height: math.unit(0.47690395121, "feet"),
  48681. name: "Breasts (Front)",
  48682. image: {
  48683. source: "./media/characters/jess/breasts-front.svg"
  48684. }
  48685. },
  48686. breastsSide: {
  48687. height: math.unit(0.30556998307, "feet"),
  48688. name: "Breasts (Side)",
  48689. image: {
  48690. source: "./media/characters/jess/breasts-side.svg"
  48691. }
  48692. },
  48693. heartFront: {
  48694. height: math.unit(0.53011022622, "feet"),
  48695. name: "Heart (Front)",
  48696. image: {
  48697. source: "./media/characters/jess/heart-front.svg"
  48698. }
  48699. },
  48700. heartSide: {
  48701. height: math.unit(0.51790695213, "feet"),
  48702. name: "Heart (Side)",
  48703. image: {
  48704. source: "./media/characters/jess/heart-side.svg"
  48705. }
  48706. },
  48707. earsAndNoseFront: {
  48708. height: math.unit(0.29385483995, "feet"),
  48709. name: "Ears and Nose (Front)",
  48710. image: {
  48711. source: "./media/characters/jess/ears-and-nose-front.svg"
  48712. }
  48713. },
  48714. earsAndNoseSide: {
  48715. height: math.unit(0.18109658741, "feet"),
  48716. name: "Ears and Nose (Side)",
  48717. image: {
  48718. source: "./media/characters/jess/ears-and-nose-side.svg"
  48719. }
  48720. },
  48721. },
  48722. [
  48723. {
  48724. name: "Normal",
  48725. height: math.unit(5 + 8/12, "feet"),
  48726. default: true
  48727. },
  48728. ]
  48729. ))
  48730. characterMakers.push(() => makeCharacter(
  48731. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48732. {
  48733. front: {
  48734. height: math.unit(6, "feet"),
  48735. weight: math.unit(6.64467e-7, "grams"),
  48736. name: "Front",
  48737. image: {
  48738. source: "./media/characters/wimpering/front.svg",
  48739. extra: 597/587,
  48740. bottom: 34/631
  48741. }
  48742. },
  48743. },
  48744. [
  48745. {
  48746. name: "Micro",
  48747. height: math.unit(0.4, "mm"),
  48748. default: true
  48749. },
  48750. ]
  48751. ))
  48752. characterMakers.push(() => makeCharacter(
  48753. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48754. {
  48755. front: {
  48756. height: math.unit(5 + 2/12, "feet"),
  48757. weight: math.unit(110, "lb"),
  48758. name: "Front",
  48759. image: {
  48760. source: "./media/characters/keltre/front.svg",
  48761. extra: 1099/1057,
  48762. bottom: 22/1121
  48763. }
  48764. },
  48765. back: {
  48766. height: math.unit(5 + 2/12, "feet"),
  48767. weight: math.unit(110, "lb"),
  48768. name: "Back",
  48769. image: {
  48770. source: "./media/characters/keltre/back.svg",
  48771. extra: 1095/1053,
  48772. bottom: 17/1112
  48773. }
  48774. },
  48775. dressed: {
  48776. height: math.unit(5 + 2/12, "feet"),
  48777. weight: math.unit(110, "lb"),
  48778. name: "Dressed",
  48779. image: {
  48780. source: "./media/characters/keltre/dressed.svg",
  48781. extra: 1099/1057,
  48782. bottom: 22/1121
  48783. }
  48784. },
  48785. winter: {
  48786. height: math.unit(5 + 2/12, "feet"),
  48787. weight: math.unit(110, "lb"),
  48788. name: "Winter",
  48789. image: {
  48790. source: "./media/characters/keltre/winter.svg",
  48791. extra: 1099/1057,
  48792. bottom: 22/1121
  48793. }
  48794. },
  48795. head: {
  48796. height: math.unit(1.61 * 0.86, "feet"),
  48797. name: "Head",
  48798. image: {
  48799. source: "./media/characters/keltre/head.svg",
  48800. extra: 534/421,
  48801. bottom: 0/534
  48802. }
  48803. },
  48804. hand: {
  48805. height: math.unit(1.3 * 0.86, "feet"),
  48806. name: "Hand",
  48807. image: {
  48808. source: "./media/characters/keltre/hand.svg"
  48809. }
  48810. },
  48811. foot: {
  48812. height: math.unit(1.8 * 0.86, "feet"),
  48813. name: "Foot",
  48814. image: {
  48815. source: "./media/characters/keltre/foot.svg"
  48816. }
  48817. },
  48818. },
  48819. [
  48820. {
  48821. name: "Fine",
  48822. height: math.unit(1, "inch")
  48823. },
  48824. {
  48825. name: "Dimnutive",
  48826. height: math.unit(4, "inches")
  48827. },
  48828. {
  48829. name: "Tiny",
  48830. height: math.unit(1, "foot")
  48831. },
  48832. {
  48833. name: "Small",
  48834. height: math.unit(3, "feet")
  48835. },
  48836. {
  48837. name: "Normal",
  48838. height: math.unit(5 + 2/12, "feet"),
  48839. default: true
  48840. },
  48841. ]
  48842. ))
  48843. characterMakers.push(() => makeCharacter(
  48844. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48845. {
  48846. front: {
  48847. height: math.unit(6 + 2/12, "feet"),
  48848. name: "Front",
  48849. image: {
  48850. source: "./media/characters/nox/front.svg",
  48851. extra: 1917/1830,
  48852. bottom: 74/1991
  48853. }
  48854. },
  48855. back: {
  48856. height: math.unit(6 + 2/12, "feet"),
  48857. name: "Back",
  48858. image: {
  48859. source: "./media/characters/nox/back.svg",
  48860. extra: 1896/1815,
  48861. bottom: 21/1917
  48862. }
  48863. },
  48864. head: {
  48865. height: math.unit(1.1, "feet"),
  48866. name: "Head",
  48867. image: {
  48868. source: "./media/characters/nox/head.svg",
  48869. extra: 874/704,
  48870. bottom: 0/874
  48871. }
  48872. },
  48873. tattoo: {
  48874. height: math.unit(0.729, "feet"),
  48875. name: "Tattoo",
  48876. image: {
  48877. source: "./media/characters/nox/tattoo.svg"
  48878. }
  48879. },
  48880. },
  48881. [
  48882. {
  48883. name: "Normal",
  48884. height: math.unit(6 + 2/12, "feet")
  48885. },
  48886. {
  48887. name: "Gigamacro",
  48888. height: math.unit(2, "earths"),
  48889. default: true
  48890. },
  48891. {
  48892. name: "Cosmic",
  48893. height: math.unit(867, "yottameters")
  48894. },
  48895. ]
  48896. ))
  48897. characterMakers.push(() => makeCharacter(
  48898. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48899. {
  48900. front: {
  48901. height: math.unit(6, "feet"),
  48902. weight: math.unit(150, "lb"),
  48903. name: "Front",
  48904. image: {
  48905. source: "./media/characters/caspian/front.svg",
  48906. extra: 1443/1359,
  48907. bottom: 0/1443
  48908. }
  48909. },
  48910. back: {
  48911. height: math.unit(6, "feet"),
  48912. weight: math.unit(150, "lb"),
  48913. name: "Back",
  48914. image: {
  48915. source: "./media/characters/caspian/back.svg",
  48916. extra: 1379/1309,
  48917. bottom: 0/1379
  48918. }
  48919. },
  48920. head: {
  48921. height: math.unit(0.9, "feet"),
  48922. name: "Head",
  48923. image: {
  48924. source: "./media/characters/caspian/head.svg",
  48925. extra: 692/492,
  48926. bottom: 0/692
  48927. }
  48928. },
  48929. headAlt: {
  48930. height: math.unit(0.95, "feet"),
  48931. name: "Head (Alt)",
  48932. image: {
  48933. source: "./media/characters/caspian/head-alt.svg",
  48934. extra: 668/508,
  48935. bottom: 0/668
  48936. }
  48937. },
  48938. hand: {
  48939. height: math.unit(0.8, "feet"),
  48940. name: "Hand",
  48941. image: {
  48942. source: "./media/characters/caspian/hand.svg"
  48943. }
  48944. },
  48945. paw: {
  48946. height: math.unit(0.95, "feet"),
  48947. name: "Paw",
  48948. image: {
  48949. source: "./media/characters/caspian/paw.svg"
  48950. }
  48951. },
  48952. },
  48953. [
  48954. {
  48955. name: "Normal",
  48956. height: math.unit(162, "feet"),
  48957. default: true
  48958. },
  48959. ]
  48960. ))
  48961. characterMakers.push(() => makeCharacter(
  48962. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48963. {
  48964. front: {
  48965. height: math.unit(6, "feet"),
  48966. name: "Front",
  48967. image: {
  48968. source: "./media/characters/myra-aisling/front.svg",
  48969. extra: 1268/1166,
  48970. bottom: 73/1341
  48971. }
  48972. },
  48973. back: {
  48974. height: math.unit(6, "feet"),
  48975. name: "Back",
  48976. image: {
  48977. source: "./media/characters/myra-aisling/back.svg",
  48978. extra: 1249/1149,
  48979. bottom: 79/1328
  48980. }
  48981. },
  48982. dressed: {
  48983. height: math.unit(6, "feet"),
  48984. name: "Dressed",
  48985. image: {
  48986. source: "./media/characters/myra-aisling/dressed.svg",
  48987. extra: 1290/1189,
  48988. bottom: 47/1337
  48989. }
  48990. },
  48991. hand: {
  48992. height: math.unit(1.1, "feet"),
  48993. name: "Hand",
  48994. image: {
  48995. source: "./media/characters/myra-aisling/hand.svg"
  48996. }
  48997. },
  48998. paw: {
  48999. height: math.unit(1.23, "feet"),
  49000. name: "Paw",
  49001. image: {
  49002. source: "./media/characters/myra-aisling/paw.svg"
  49003. }
  49004. },
  49005. },
  49006. [
  49007. {
  49008. name: "Normal",
  49009. height: math.unit(160, "feet"),
  49010. default: true
  49011. },
  49012. ]
  49013. ))
  49014. characterMakers.push(() => makeCharacter(
  49015. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49016. {
  49017. front: {
  49018. height: math.unit(6, "feet"),
  49019. name: "Front",
  49020. image: {
  49021. source: "./media/characters/tenley-sidero/front.svg",
  49022. extra: 1365/1276,
  49023. bottom: 47/1412
  49024. }
  49025. },
  49026. back: {
  49027. height: math.unit(6, "feet"),
  49028. name: "Back",
  49029. image: {
  49030. source: "./media/characters/tenley-sidero/back.svg",
  49031. extra: 1383/1283,
  49032. bottom: 35/1418
  49033. }
  49034. },
  49035. dressed: {
  49036. height: math.unit(6, "feet"),
  49037. name: "Dressed",
  49038. image: {
  49039. source: "./media/characters/tenley-sidero/dressed.svg",
  49040. extra: 1364/1275,
  49041. bottom: 42/1406
  49042. }
  49043. },
  49044. head: {
  49045. height: math.unit(1.47, "feet"),
  49046. name: "Head",
  49047. image: {
  49048. source: "./media/characters/tenley-sidero/head.svg",
  49049. extra: 610/490,
  49050. bottom: 0/610
  49051. }
  49052. },
  49053. },
  49054. [
  49055. {
  49056. name: "Normal",
  49057. height: math.unit(154, "feet"),
  49058. default: true
  49059. },
  49060. ]
  49061. ))
  49062. characterMakers.push(() => makeCharacter(
  49063. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49064. {
  49065. front: {
  49066. height: math.unit(5, "inches"),
  49067. name: "Front",
  49068. image: {
  49069. source: "./media/characters/mallory/front.svg",
  49070. extra: 1919/1678,
  49071. bottom: 29/1948
  49072. }
  49073. },
  49074. hand: {
  49075. height: math.unit(0.73, "inches"),
  49076. name: "Hand",
  49077. image: {
  49078. source: "./media/characters/mallory/hand.svg"
  49079. }
  49080. },
  49081. paw: {
  49082. height: math.unit(0.68, "inches"),
  49083. name: "Paw",
  49084. image: {
  49085. source: "./media/characters/mallory/paw.svg"
  49086. }
  49087. },
  49088. },
  49089. [
  49090. {
  49091. name: "Small",
  49092. height: math.unit(5, "inches"),
  49093. default: true
  49094. },
  49095. ]
  49096. ))
  49097. characterMakers.push(() => makeCharacter(
  49098. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49099. {
  49100. naked: {
  49101. height: math.unit(6, "feet"),
  49102. name: "Naked",
  49103. image: {
  49104. source: "./media/characters/mab/naked.svg",
  49105. extra: 1855/1757,
  49106. bottom: 208/2063
  49107. }
  49108. },
  49109. outside: {
  49110. height: math.unit(6, "feet"),
  49111. name: "Outside",
  49112. image: {
  49113. source: "./media/characters/mab/outside.svg",
  49114. extra: 1855/1757,
  49115. bottom: 208/2063
  49116. }
  49117. },
  49118. party: {
  49119. height: math.unit(6, "feet"),
  49120. name: "Party",
  49121. image: {
  49122. source: "./media/characters/mab/party.svg",
  49123. extra: 1855/1757,
  49124. bottom: 208/2063
  49125. }
  49126. },
  49127. },
  49128. [
  49129. {
  49130. name: "Normal",
  49131. height: math.unit(165, "feet"),
  49132. default: true
  49133. },
  49134. ]
  49135. ))
  49136. characterMakers.push(() => makeCharacter(
  49137. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49138. {
  49139. front: {
  49140. height: math.unit(12, "feet"),
  49141. weight: math.unit(4000, "lb"),
  49142. name: "Front",
  49143. image: {
  49144. source: "./media/characters/winter/front.svg",
  49145. extra: 1286/943,
  49146. bottom: 112/1398
  49147. }
  49148. },
  49149. frontNsfw: {
  49150. height: math.unit(12, "feet"),
  49151. weight: math.unit(4000, "lb"),
  49152. name: "Front (NSFW)",
  49153. image: {
  49154. source: "./media/characters/winter/front-nsfw.svg",
  49155. extra: 1286/943,
  49156. bottom: 112/1398
  49157. }
  49158. },
  49159. dick: {
  49160. height: math.unit(3.79, "feet"),
  49161. name: "Dick",
  49162. image: {
  49163. source: "./media/characters/winter/dick.svg"
  49164. }
  49165. },
  49166. },
  49167. [
  49168. {
  49169. name: "Big",
  49170. height: math.unit(12, "feet"),
  49171. default: true
  49172. },
  49173. ]
  49174. ))
  49175. characterMakers.push(() => makeCharacter(
  49176. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49177. {
  49178. front: {
  49179. height: math.unit(4.1, "inches"),
  49180. name: "Front",
  49181. image: {
  49182. source: "./media/characters/alto/front.svg",
  49183. extra: 736/627,
  49184. bottom: 90/826
  49185. }
  49186. },
  49187. },
  49188. [
  49189. {
  49190. name: "Normal",
  49191. height: math.unit(4.1, "inches"),
  49192. default: true
  49193. },
  49194. ]
  49195. ))
  49196. characterMakers.push(() => makeCharacter(
  49197. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49198. {
  49199. sitting: {
  49200. height: math.unit(3, "feet"),
  49201. name: "Sitting",
  49202. image: {
  49203. source: "./media/characters/ratstrid-v/sitting.svg",
  49204. extra: 355/310,
  49205. bottom: 136/491
  49206. }
  49207. },
  49208. },
  49209. [
  49210. {
  49211. name: "Normal",
  49212. height: math.unit(3, "feet"),
  49213. default: true
  49214. },
  49215. ]
  49216. ))
  49217. characterMakers.push(() => makeCharacter(
  49218. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49219. {
  49220. back: {
  49221. height: math.unit(6, "feet"),
  49222. weight: math.unit(350, "lb"),
  49223. name: "Back",
  49224. image: {
  49225. source: "./media/characters/siz/back.svg",
  49226. extra: 1449/1274,
  49227. bottom: 13/1462
  49228. }
  49229. },
  49230. },
  49231. [
  49232. {
  49233. name: "Over-Overcompressed",
  49234. height: math.unit(8, "feet")
  49235. },
  49236. {
  49237. name: "Overcompressed",
  49238. height: math.unit(32, "feet")
  49239. },
  49240. {
  49241. name: "Compressed",
  49242. height: math.unit(128, "feet"),
  49243. default: true
  49244. },
  49245. {
  49246. name: "Half-Compressed",
  49247. height: math.unit(512, "feet")
  49248. },
  49249. {
  49250. name: "Quarter-Compressed",
  49251. height: math.unit(2048, "feet")
  49252. },
  49253. {
  49254. name: "Uncompressed?",
  49255. height: math.unit(8192, "feet")
  49256. },
  49257. ]
  49258. ))
  49259. characterMakers.push(() => makeCharacter(
  49260. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49261. {
  49262. front: {
  49263. height: math.unit(5 + 9/12, "feet"),
  49264. weight: math.unit(150, "lb"),
  49265. name: "Front",
  49266. image: {
  49267. source: "./media/characters/ven/front.svg",
  49268. extra: 1372/1320,
  49269. bottom: 73/1445
  49270. }
  49271. },
  49272. side: {
  49273. height: math.unit(5 + 9/12, "feet"),
  49274. weight: math.unit(1150, "lb"),
  49275. name: "Side",
  49276. image: {
  49277. source: "./media/characters/ven/side.svg",
  49278. extra: 1119/1070,
  49279. bottom: 42/1161
  49280. },
  49281. default: true
  49282. },
  49283. },
  49284. [
  49285. {
  49286. name: "Normal",
  49287. height: math.unit(5 + 9/12, "feet"),
  49288. default: true
  49289. },
  49290. ]
  49291. ))
  49292. characterMakers.push(() => makeCharacter(
  49293. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49294. {
  49295. front: {
  49296. height: math.unit(12, "feet"),
  49297. weight: math.unit(1000, "kg"),
  49298. name: "Front",
  49299. image: {
  49300. source: "./media/characters/maple/front.svg",
  49301. extra: 1193/1081,
  49302. bottom: 22/1215
  49303. }
  49304. },
  49305. },
  49306. [
  49307. {
  49308. name: "Compressed",
  49309. height: math.unit(7, "feet")
  49310. },
  49311. {
  49312. name: "Normal",
  49313. height: math.unit(12, "feet"),
  49314. default: true
  49315. },
  49316. ]
  49317. ))
  49318. characterMakers.push(() => makeCharacter(
  49319. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49320. {
  49321. front: {
  49322. height: math.unit(9, "feet"),
  49323. weight: math.unit(1500, "lb"),
  49324. name: "Front",
  49325. image: {
  49326. source: "./media/characters/nora/front.svg",
  49327. extra: 1348/1286,
  49328. bottom: 218/1566
  49329. }
  49330. },
  49331. erect: {
  49332. height: math.unit(9, "feet"),
  49333. weight: math.unit(11500, "lb"),
  49334. name: "Erect",
  49335. image: {
  49336. source: "./media/characters/nora/erect.svg",
  49337. extra: 1488/1433,
  49338. bottom: 133/1621
  49339. }
  49340. },
  49341. },
  49342. [
  49343. {
  49344. name: "Normal",
  49345. height: math.unit(9, "feet"),
  49346. default: true
  49347. },
  49348. ]
  49349. ))
  49350. characterMakers.push(() => makeCharacter(
  49351. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49352. {
  49353. front: {
  49354. height: math.unit(25, "feet"),
  49355. weight: math.unit(27500, "lb"),
  49356. name: "Front",
  49357. image: {
  49358. source: "./media/characters/north-caudin/front.svg",
  49359. extra: 1184/1082,
  49360. bottom: 23/1207
  49361. }
  49362. },
  49363. },
  49364. [
  49365. {
  49366. name: "Compressed",
  49367. height: math.unit(10, "feet")
  49368. },
  49369. {
  49370. name: "Normal",
  49371. height: math.unit(25, "feet"),
  49372. default: true
  49373. },
  49374. ]
  49375. ))
  49376. characterMakers.push(() => makeCharacter(
  49377. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49378. {
  49379. front: {
  49380. height: math.unit(9, "feet"),
  49381. weight: math.unit(1250, "lb"),
  49382. name: "Front",
  49383. image: {
  49384. source: "./media/characters/merrian/front.svg",
  49385. extra: 2393/2304,
  49386. bottom: 40/2433
  49387. }
  49388. },
  49389. },
  49390. [
  49391. {
  49392. name: "Normal",
  49393. height: math.unit(9, "feet"),
  49394. default: true
  49395. },
  49396. ]
  49397. ))
  49398. characterMakers.push(() => makeCharacter(
  49399. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49400. {
  49401. front: {
  49402. height: math.unit(9, "feet"),
  49403. weight: math.unit(1000, "lb"),
  49404. name: "Front",
  49405. image: {
  49406. source: "./media/characters/hazel/front.svg",
  49407. extra: 2351/2298,
  49408. bottom: 38/2389
  49409. }
  49410. },
  49411. },
  49412. [
  49413. {
  49414. name: "Normal",
  49415. height: math.unit(9, "feet"),
  49416. default: true
  49417. },
  49418. ]
  49419. ))
  49420. characterMakers.push(() => makeCharacter(
  49421. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49422. {
  49423. front: {
  49424. height: math.unit(13, "feet"),
  49425. weight: math.unit(3200, "lb"),
  49426. name: "Front",
  49427. image: {
  49428. source: "./media/characters/emma/front.svg",
  49429. extra: 2263/2029,
  49430. bottom: 68/2331
  49431. }
  49432. },
  49433. },
  49434. [
  49435. {
  49436. name: "Normal",
  49437. height: math.unit(13, "feet"),
  49438. default: true
  49439. },
  49440. ]
  49441. ))
  49442. characterMakers.push(() => makeCharacter(
  49443. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49444. {
  49445. front: {
  49446. height: math.unit(11 + 9/12, "feet"),
  49447. weight: math.unit(2500, "lb"),
  49448. name: "Front",
  49449. image: {
  49450. source: "./media/characters/ilumina/front.svg",
  49451. extra: 2248/2209,
  49452. bottom: 164/2412
  49453. }
  49454. },
  49455. },
  49456. [
  49457. {
  49458. name: "Normal",
  49459. height: math.unit(11 + 9/12, "feet"),
  49460. default: true
  49461. },
  49462. ]
  49463. ))
  49464. characterMakers.push(() => makeCharacter(
  49465. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49466. {
  49467. front: {
  49468. height: math.unit(8 + 10/12, "feet"),
  49469. weight: math.unit(1350, "lb"),
  49470. name: "Front",
  49471. image: {
  49472. source: "./media/characters/moonshine/front.svg",
  49473. extra: 2395/2288,
  49474. bottom: 40/2435
  49475. }
  49476. },
  49477. },
  49478. [
  49479. {
  49480. name: "Normal",
  49481. height: math.unit(8 + 10/12, "feet"),
  49482. default: true
  49483. },
  49484. ]
  49485. ))
  49486. characterMakers.push(() => makeCharacter(
  49487. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49488. {
  49489. front: {
  49490. height: math.unit(14, "feet"),
  49491. weight: math.unit(3400, "lb"),
  49492. name: "Front",
  49493. image: {
  49494. source: "./media/characters/aletia/front.svg",
  49495. extra: 1185/1052,
  49496. bottom: 21/1206
  49497. }
  49498. },
  49499. },
  49500. [
  49501. {
  49502. name: "Compressed",
  49503. height: math.unit(8, "feet")
  49504. },
  49505. {
  49506. name: "Normal",
  49507. height: math.unit(14, "feet"),
  49508. default: true
  49509. },
  49510. ]
  49511. ))
  49512. characterMakers.push(() => makeCharacter(
  49513. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49514. {
  49515. front: {
  49516. height: math.unit(17, "feet"),
  49517. weight: math.unit(6500, "lb"),
  49518. name: "Front",
  49519. image: {
  49520. source: "./media/characters/deidra/front.svg",
  49521. extra: 1201/1081,
  49522. bottom: 16/1217
  49523. }
  49524. },
  49525. },
  49526. [
  49527. {
  49528. name: "Compressed",
  49529. height: math.unit(9 + 6/12, "feet")
  49530. },
  49531. {
  49532. name: "Normal",
  49533. height: math.unit(17, "feet"),
  49534. default: true
  49535. },
  49536. ]
  49537. ))
  49538. characterMakers.push(() => makeCharacter(
  49539. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49540. {
  49541. front: {
  49542. height: math.unit(7 + 4/12, "feet"),
  49543. weight: math.unit(280, "lb"),
  49544. name: "Front",
  49545. image: {
  49546. source: "./media/characters/freki-yrmori/front.svg",
  49547. extra: 1286/1182,
  49548. bottom: 29/1315
  49549. }
  49550. },
  49551. maw: {
  49552. height: math.unit(0.9, "feet"),
  49553. name: "Maw",
  49554. image: {
  49555. source: "./media/characters/freki-yrmori/maw.svg"
  49556. }
  49557. },
  49558. },
  49559. [
  49560. {
  49561. name: "Normal",
  49562. height: math.unit(7 + 4/12, "feet"),
  49563. default: true
  49564. },
  49565. {
  49566. name: "Macro",
  49567. height: math.unit(38.5, "meters")
  49568. },
  49569. ]
  49570. ))
  49571. characterMakers.push(() => makeCharacter(
  49572. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49573. {
  49574. side: {
  49575. height: math.unit(47.2, "meters"),
  49576. weight: math.unit(10000, "tons"),
  49577. name: "Side",
  49578. image: {
  49579. source: "./media/characters/aetherios/side.svg",
  49580. extra: 2363/642,
  49581. bottom: 221/2584
  49582. }
  49583. },
  49584. top: {
  49585. height: math.unit(240, "meters"),
  49586. weight: math.unit(10000, "tons"),
  49587. name: "Top",
  49588. image: {
  49589. source: "./media/characters/aetherios/top.svg"
  49590. }
  49591. },
  49592. bottom: {
  49593. height: math.unit(240, "meters"),
  49594. weight: math.unit(10000, "tons"),
  49595. name: "Bottom",
  49596. image: {
  49597. source: "./media/characters/aetherios/bottom.svg"
  49598. }
  49599. },
  49600. head: {
  49601. height: math.unit(38.6, "meters"),
  49602. name: "Head",
  49603. image: {
  49604. source: "./media/characters/aetherios/head.svg",
  49605. extra: 1335/1112,
  49606. bottom: 0/1335
  49607. }
  49608. },
  49609. front: {
  49610. height: math.unit(29, "meters"),
  49611. name: "Front",
  49612. image: {
  49613. source: "./media/characters/aetherios/front.svg",
  49614. extra: 1266/953,
  49615. bottom: 158/1424
  49616. }
  49617. },
  49618. maw: {
  49619. height: math.unit(16.37, "meters"),
  49620. name: "Maw",
  49621. image: {
  49622. source: "./media/characters/aetherios/maw.svg",
  49623. extra: 748/637,
  49624. bottom: 0/748
  49625. },
  49626. extraAttributes: {
  49627. preyCapacity: {
  49628. name: "Capacity",
  49629. power: 3,
  49630. type: "volume",
  49631. base: math.unit(1000, "people")
  49632. },
  49633. tongueSize: {
  49634. name: "Tongue Size",
  49635. power: 2,
  49636. type: "area",
  49637. base: math.unit(21, "m^2")
  49638. }
  49639. }
  49640. },
  49641. forepaw: {
  49642. height: math.unit(18, "meters"),
  49643. name: "Forepaw",
  49644. image: {
  49645. source: "./media/characters/aetherios/forepaw.svg"
  49646. }
  49647. },
  49648. hindpaw: {
  49649. height: math.unit(23, "meters"),
  49650. name: "Hindpaw",
  49651. image: {
  49652. source: "./media/characters/aetherios/hindpaw.svg"
  49653. }
  49654. },
  49655. genitals: {
  49656. height: math.unit(42, "meters"),
  49657. name: "Genitals",
  49658. image: {
  49659. source: "./media/characters/aetherios/genitals.svg"
  49660. }
  49661. },
  49662. },
  49663. [
  49664. {
  49665. name: "Normal",
  49666. height: math.unit(47.2, "meters"),
  49667. default: true
  49668. },
  49669. {
  49670. name: "Macro",
  49671. height: math.unit(160, "meters")
  49672. },
  49673. {
  49674. name: "Mega",
  49675. height: math.unit(1.87, "km")
  49676. },
  49677. {
  49678. name: "Giga",
  49679. height: math.unit(40000, "km")
  49680. },
  49681. {
  49682. name: "Stellar",
  49683. height: math.unit(158000000, "km")
  49684. },
  49685. {
  49686. name: "Cosmic",
  49687. height: math.unit(9.46e12, "km")
  49688. },
  49689. ]
  49690. ))
  49691. characterMakers.push(() => makeCharacter(
  49692. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49693. {
  49694. front: {
  49695. height: math.unit(5 + 4/12, "feet"),
  49696. weight: math.unit(80, "lb"),
  49697. name: "Front",
  49698. image: {
  49699. source: "./media/characters/mizu-gieeg/front.svg",
  49700. extra: 850/709,
  49701. bottom: 52/902
  49702. }
  49703. },
  49704. back: {
  49705. height: math.unit(5 + 4/12, "feet"),
  49706. weight: math.unit(80, "lb"),
  49707. name: "Back",
  49708. image: {
  49709. source: "./media/characters/mizu-gieeg/back.svg",
  49710. extra: 882/745,
  49711. bottom: 25/907
  49712. }
  49713. },
  49714. },
  49715. [
  49716. {
  49717. name: "Normal",
  49718. height: math.unit(5 + 4/12, "feet"),
  49719. default: true
  49720. },
  49721. ]
  49722. ))
  49723. characterMakers.push(() => makeCharacter(
  49724. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49725. {
  49726. front: {
  49727. height: math.unit(6, "feet"),
  49728. name: "Front",
  49729. image: {
  49730. source: "./media/characters/roselle-st-papier/front.svg",
  49731. extra: 1430/1280,
  49732. bottom: 37/1467
  49733. }
  49734. },
  49735. back: {
  49736. height: math.unit(6, "feet"),
  49737. name: "Back",
  49738. image: {
  49739. source: "./media/characters/roselle-st-papier/back.svg",
  49740. extra: 1491/1296,
  49741. bottom: 23/1514
  49742. }
  49743. },
  49744. ear: {
  49745. height: math.unit(1.26, "feet"),
  49746. name: "Ear",
  49747. image: {
  49748. source: "./media/characters/roselle-st-papier/ear.svg"
  49749. }
  49750. },
  49751. },
  49752. [
  49753. {
  49754. name: "Normal",
  49755. height: math.unit(150, "feet"),
  49756. default: true
  49757. },
  49758. ]
  49759. ))
  49760. characterMakers.push(() => makeCharacter(
  49761. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49762. {
  49763. front: {
  49764. height: math.unit(1, "inches"),
  49765. name: "Front",
  49766. image: {
  49767. source: "./media/characters/valargent/front.svg",
  49768. extra: 1825/1694,
  49769. bottom: 62/1887
  49770. }
  49771. },
  49772. back: {
  49773. height: math.unit(1, "inches"),
  49774. name: "Back",
  49775. image: {
  49776. source: "./media/characters/valargent/back.svg",
  49777. extra: 1775/1682,
  49778. bottom: 88/1863
  49779. }
  49780. },
  49781. },
  49782. [
  49783. {
  49784. name: "Micro",
  49785. height: math.unit(1, "inch"),
  49786. default: true
  49787. },
  49788. ]
  49789. ))
  49790. characterMakers.push(() => makeCharacter(
  49791. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49792. {
  49793. front: {
  49794. height: math.unit(3.4, "meters"),
  49795. name: "Front",
  49796. image: {
  49797. source: "./media/characters/zarina/front.svg",
  49798. extra: 1733/1425,
  49799. bottom: 93/1826
  49800. }
  49801. },
  49802. squatting: {
  49803. height: math.unit(2.14, "meters"),
  49804. name: "Squatting",
  49805. image: {
  49806. source: "./media/characters/zarina/squatting.svg",
  49807. extra: 1073/788,
  49808. bottom: 63/1136
  49809. }
  49810. },
  49811. back: {
  49812. height: math.unit(2.14, "meters"),
  49813. name: "Back",
  49814. image: {
  49815. source: "./media/characters/zarina/back.svg",
  49816. extra: 1128/885,
  49817. bottom: 0/1128
  49818. }
  49819. },
  49820. },
  49821. [
  49822. {
  49823. name: "Normal",
  49824. height: math.unit(3.4, "meters"),
  49825. default: true
  49826. },
  49827. {
  49828. name: "Big",
  49829. height: math.unit(5, "meters")
  49830. },
  49831. {
  49832. name: "Macro",
  49833. height: math.unit(110, "meters")
  49834. },
  49835. ]
  49836. ))
  49837. characterMakers.push(() => makeCharacter(
  49838. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  49839. {
  49840. front: {
  49841. height: math.unit(7, "feet"),
  49842. name: "Front",
  49843. image: {
  49844. source: "./media/characters/ventus-astro-fox/front.svg",
  49845. extra: 1792/1623,
  49846. bottom: 28/1820
  49847. }
  49848. },
  49849. back: {
  49850. height: math.unit(7, "feet"),
  49851. name: "Back",
  49852. image: {
  49853. source: "./media/characters/ventus-astro-fox/back.svg",
  49854. extra: 1789/1620,
  49855. bottom: 31/1820
  49856. }
  49857. },
  49858. outfit: {
  49859. height: math.unit(7, "feet"),
  49860. name: "Outfit",
  49861. image: {
  49862. source: "./media/characters/ventus-astro-fox/outfit.svg",
  49863. extra: 1054/925,
  49864. bottom: 15/1069
  49865. }
  49866. },
  49867. head: {
  49868. height: math.unit(1.12, "feet"),
  49869. name: "Head",
  49870. image: {
  49871. source: "./media/characters/ventus-astro-fox/head.svg",
  49872. extra: 866/504,
  49873. bottom: 0/866
  49874. }
  49875. },
  49876. hand: {
  49877. height: math.unit(1, "feet"),
  49878. name: "Hand",
  49879. image: {
  49880. source: "./media/characters/ventus-astro-fox/hand.svg"
  49881. }
  49882. },
  49883. paw: {
  49884. height: math.unit(1.5, "feet"),
  49885. name: "Paw",
  49886. image: {
  49887. source: "./media/characters/ventus-astro-fox/paw.svg"
  49888. }
  49889. },
  49890. },
  49891. [
  49892. {
  49893. name: "Normal",
  49894. height: math.unit(7, "feet"),
  49895. default: true
  49896. },
  49897. {
  49898. name: "Macro",
  49899. height: math.unit(200, "feet")
  49900. },
  49901. {
  49902. name: "Cosmic",
  49903. height: math.unit(3, "universes")
  49904. },
  49905. ]
  49906. ))
  49907. characterMakers.push(() => makeCharacter(
  49908. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  49909. {
  49910. front: {
  49911. height: math.unit(3, "meters"),
  49912. weight: math.unit(7000, "lb"),
  49913. name: "Front",
  49914. image: {
  49915. source: "./media/characters/core-t/front.svg",
  49916. extra: 5729/4941,
  49917. bottom: 1129/6858
  49918. }
  49919. },
  49920. },
  49921. [
  49922. {
  49923. name: "Big",
  49924. height: math.unit(3, "meters"),
  49925. default: true
  49926. },
  49927. ]
  49928. ))
  49929. characterMakers.push(() => makeCharacter(
  49930. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  49931. {
  49932. normal: {
  49933. height: math.unit(6 + 6/12, "feet"),
  49934. weight: math.unit(275, "lb"),
  49935. name: "Front",
  49936. image: {
  49937. source: "./media/characters/cadbunny/normal.svg",
  49938. extra: 1129/947,
  49939. bottom: 93/1222
  49940. },
  49941. default: true,
  49942. form: "normal"
  49943. },
  49944. gigantamax: {
  49945. height: math.unit(26, "feet"),
  49946. weight: math.unit(16000, "lb"),
  49947. name: "Front",
  49948. image: {
  49949. source: "./media/characters/cadbunny/gigantamax.svg",
  49950. extra: 1133/944,
  49951. bottom: 90/1223
  49952. },
  49953. default: true,
  49954. form: "gigantamax"
  49955. },
  49956. },
  49957. [
  49958. {
  49959. name: "Normal",
  49960. height: math.unit(6 + 6/12, "feet"),
  49961. default: true,
  49962. form: "normal"
  49963. },
  49964. {
  49965. name: "Small",
  49966. height: math.unit(26, "feet"),
  49967. default: true,
  49968. form: "gigantamax"
  49969. },
  49970. {
  49971. name: "Large",
  49972. height: math.unit(78, "feet"),
  49973. form: "gigantamax"
  49974. },
  49975. ],
  49976. {
  49977. "normal": {
  49978. name: "Normal",
  49979. default: true
  49980. },
  49981. "gigantamax": {
  49982. name: "Gigantamax"
  49983. }
  49984. }
  49985. ))
  49986. characterMakers.push(() => makeCharacter(
  49987. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  49988. {
  49989. anthroFront: {
  49990. height: math.unit(8, "feet"),
  49991. weight: math.unit(300, "lb"),
  49992. name: "Front",
  49993. image: {
  49994. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  49995. extra: 1272/1176,
  49996. bottom: 53/1325
  49997. },
  49998. form: "anthro",
  49999. default: true
  50000. },
  50001. feralSide: {
  50002. height: math.unit(4, "feet"),
  50003. weight: math.unit(250, "lb"),
  50004. name: "Side",
  50005. image: {
  50006. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50007. extra: 731/621,
  50008. bottom: 0/731
  50009. },
  50010. form: "feral",
  50011. default: true
  50012. },
  50013. },
  50014. [
  50015. {
  50016. name: "Regular",
  50017. height: math.unit(8, "feet"),
  50018. form: "anthro"
  50019. },
  50020. {
  50021. name: "Macro",
  50022. height: math.unit(250, "feet"),
  50023. form: "anthro",
  50024. default: true
  50025. },
  50026. {
  50027. name: "Regular",
  50028. height: math.unit(4, "feet"),
  50029. form: "feral"
  50030. },
  50031. {
  50032. name: "Macro",
  50033. height: math.unit(125, "feet"),
  50034. form: "feral",
  50035. default: true
  50036. },
  50037. ],
  50038. {
  50039. "anthro": {
  50040. name: "Anthro",
  50041. default: true
  50042. },
  50043. "feral": {
  50044. name: "Feral",
  50045. },
  50046. }
  50047. ))
  50048. //characters
  50049. function makeCharacters() {
  50050. const results = [];
  50051. characterMakers.forEach(character => {
  50052. results.push(character());
  50053. });
  50054. return results;
  50055. }